rroonga 4.0.8-x86-mingw32 → 5.0.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (573) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +2 -2
  3. data/doc/text/news.textile +19 -0
  4. data/ext/groonga/rb-grn-exception.c +35 -1
  5. data/ext/groonga/rb-grn-normalizer.c +37 -7
  6. data/ext/groonga/rb-grn-table.c +106 -35
  7. data/ext/groonga/rb-grn.h +3 -2
  8. data/lib/1.9/groonga.so +0 -0
  9. data/lib/2.0/groonga.so +0 -0
  10. data/lib/2.1/groonga.so +0 -0
  11. data/lib/groonga/record.rb +45 -1
  12. data/rroonga-build.rb +6 -5
  13. data/test/groonga-test-utils.rb +9 -0
  14. data/test/test-array.rb +11 -0
  15. data/test/test-exception.rb +3 -1
  16. data/test/test-normalizer.rb +28 -0
  17. data/test/test-record.rb +34 -0
  18. data/test/test-table-group.rb +366 -0
  19. data/test/test-table.rb +0 -182
  20. data/vendor/local/bin/grndb.exe +0 -0
  21. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  22. data/vendor/local/bin/groonga.exe +0 -0
  23. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  24. data/vendor/local/bin/libgroonga-0.dll +0 -0
  25. data/vendor/local/bin/libmecab-1.dll +0 -0
  26. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  27. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  28. data/vendor/local/bin/libonig-5.dll +0 -0
  29. data/vendor/local/bin/libstdc++-6.dll +0 -0
  30. data/vendor/local/bin/lz4.exe +0 -0
  31. data/vendor/local/bin/lz4c.exe +0 -0
  32. data/vendor/local/bin/lz4cat +0 -0
  33. data/vendor/local/bin/mecab-config +2 -2
  34. data/vendor/local/bin/mecab.exe +0 -0
  35. data/vendor/local/bin/onig-config +1 -1
  36. data/vendor/local/bin/zlib1.dll +0 -0
  37. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  38. data/vendor/local/include/groonga/groonga.h +2 -1
  39. data/vendor/local/include/groonga/groonga/command.h +79 -0
  40. data/vendor/local/include/groonga/groonga/groonga.h +32 -74
  41. data/vendor/local/include/groonga/groonga/output.h +108 -0
  42. data/vendor/local/include/groonga/groonga/plugin.h +18 -3
  43. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  44. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  45. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  46. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +3 -3
  47. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  48. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  49. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  50. data/vendor/local/lib/groonga/plugins/ruby/eval.la +3 -3
  51. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  52. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  53. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  54. data/vendor/local/lib/groonga/plugins/ruby/load.la +3 -3
  55. data/vendor/local/lib/groonga/plugins/sharding.rb +3 -0
  56. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +157 -0
  57. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +170 -0
  58. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +50 -0
  59. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  60. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  61. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  62. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
  63. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  64. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  65. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  66. data/vendor/local/lib/groonga/plugins/table/table.la +3 -3
  67. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  68. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  69. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  70. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +3 -3
  71. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  72. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  73. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  74. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
  75. data/vendor/local/lib/groonga/scripts/ruby/command.rb +35 -0
  76. data/vendor/local/lib/groonga/scripts/ruby/{command → command_line}/grndb.rb +1 -1
  77. data/vendor/local/lib/groonga/scripts/ruby/context.rb +29 -8
  78. data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +166 -76
  79. data/vendor/local/lib/groonga/scripts/ruby/database.rb +16 -4
  80. data/vendor/local/lib/groonga/scripts/ruby/error.rb +16 -0
  81. data/vendor/local/lib/groonga/scripts/ruby/index_cursor.rb +18 -0
  82. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +10 -0
  83. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +5 -1
  84. data/vendor/local/lib/groonga/scripts/ruby/plugin_loader.rb +14 -0
  85. data/vendor/local/lib/groonga/scripts/ruby/require.rb +1 -1
  86. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +3 -3
  87. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +4 -2
  88. data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +15 -0
  89. data/vendor/local/lib/groonga/scripts/ruby/writer.rb +21 -0
  90. data/vendor/local/lib/libgroonga.a +0 -0
  91. data/vendor/local/lib/libgroonga.dll.a +0 -0
  92. data/vendor/local/lib/libgroonga.la +3 -3
  93. data/vendor/local/lib/liblz4.a +0 -0
  94. data/vendor/local/lib/liblz4.dll +0 -0
  95. data/vendor/local/lib/liblz4.dll.1 +0 -0
  96. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  97. data/vendor/local/lib/libmecab.a +0 -0
  98. data/vendor/local/lib/libmecab.dll.a +0 -0
  99. data/vendor/local/lib/libmecab.la +2 -2
  100. data/vendor/local/lib/libmsgpack.a +0 -0
  101. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  102. data/vendor/local/lib/libmsgpack.la +2 -2
  103. data/vendor/local/lib/libmsgpackc.a +0 -0
  104. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  105. data/vendor/local/lib/libmsgpackc.la +2 -2
  106. data/vendor/local/lib/libonig.a +0 -0
  107. data/vendor/local/lib/libonig.dll.a +0 -0
  108. data/vendor/local/lib/libonig.la +2 -2
  109. data/vendor/local/lib/libz.a +0 -0
  110. data/vendor/local/lib/libz.dll.a +0 -0
  111. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  112. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  113. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  114. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  115. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  116. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  117. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  118. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  119. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  120. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  121. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  122. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  123. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  124. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  125. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
  126. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  127. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +5 -5
  128. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  129. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  130. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +4 -4
  131. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  132. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +16 -570
  133. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +5 -4
  134. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
  135. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +686 -0
  136. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +0 -1
  137. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +3 -1
  138. data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +12 -4
  139. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/index.txt +19 -0
  140. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/pseudo.txt +2 -2
  141. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/scalar.txt +19 -0
  142. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +734 -29
  143. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +2 -1
  144. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
  145. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
  146. data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +25 -23
  147. data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +1 -1
  148. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
  149. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +26 -1
  150. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  151. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  152. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  153. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
  154. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -2
  155. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  156. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  157. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  158. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
  159. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  160. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  161. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  162. data/vendor/local/share/doc/groonga/en/html/characteristic.html +20 -18
  163. data/vendor/local/share/doc/groonga/en/html/client.html +20 -18
  164. data/vendor/local/share/doc/groonga/en/html/community.html +20 -18
  165. data/vendor/local/share/doc/groonga/en/html/contribution.html +21 -19
  166. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +20 -18
  167. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +20 -18
  168. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +20 -18
  169. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +20 -18
  170. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +20 -18
  171. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -18
  172. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +20 -18
  173. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -18
  174. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +20 -18
  175. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +20 -18
  176. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +27 -25
  177. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +20 -18
  178. data/vendor/local/share/doc/groonga/en/html/development.html +20 -18
  179. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +27 -25
  180. data/vendor/local/share/doc/groonga/en/html/genindex.html +13 -13
  181. data/vendor/local/share/doc/groonga/en/html/index.html +86 -78
  182. data/vendor/local/share/doc/groonga/en/html/install.html +36 -34
  183. data/vendor/local/share/doc/groonga/en/html/install/centos.html +31 -29
  184. data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -25
  185. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -26
  186. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +33 -30
  187. data/vendor/local/share/doc/groonga/en/html/install/others.html +90 -88
  188. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +25 -23
  189. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +28 -26
  190. data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -31
  191. data/vendor/local/share/doc/groonga/en/html/limitations.html +20 -18
  192. data/vendor/local/share/doc/groonga/en/html/news.html +99 -641
  193. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +20 -18
  194. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -19
  195. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +20 -18
  196. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +35 -33
  197. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +30 -28
  198. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +103 -100
  199. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +72 -70
  200. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +873 -0
  201. data/vendor/local/share/doc/groonga/en/html/news/senna.html +20 -18
  202. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  203. data/vendor/local/share/doc/groonga/en/html/reference.html +83 -75
  204. data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -38
  205. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +34 -32
  206. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +46 -44
  207. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +68 -66
  208. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +30 -28
  209. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +27 -25
  210. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +66 -62
  211. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +36 -34
  212. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +31 -29
  213. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +67 -65
  214. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +29 -27
  215. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +32 -30
  216. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +30 -28
  217. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +29 -27
  218. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +29 -27
  219. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +28 -26
  220. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +77 -75
  221. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +32 -30
  222. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +27 -25
  223. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +63 -61
  224. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +52 -50
  225. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +28 -26
  226. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -23
  227. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +43 -41
  228. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +20 -18
  229. data/vendor/local/share/doc/groonga/en/html/reference/column.html +35 -33
  230. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +152 -0
  231. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +56 -29
  232. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +152 -0
  233. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +121 -94
  234. data/vendor/local/share/doc/groonga/en/html/reference/command.html +55 -53
  235. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +20 -18
  236. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +56 -54
  237. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -23
  238. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +97 -95
  239. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +41 -39
  240. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +46 -44
  241. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +26 -24
  242. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +42 -40
  243. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +74 -72
  244. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +27 -25
  245. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -42
  246. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +40 -38
  247. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +27 -25
  248. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +36 -34
  249. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +25 -23
  250. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -41
  251. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +34 -32
  252. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +26 -24
  253. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +27 -25
  254. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +25 -23
  255. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +62 -60
  256. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +32 -30
  257. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +24 -22
  258. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +24 -22
  259. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +37 -35
  260. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +54 -52
  261. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -36
  262. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -36
  263. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3069 -567
  264. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +24 -22
  265. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +27 -25
  266. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +66 -64
  267. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +123 -121
  268. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +36 -34
  269. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +26 -24
  270. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +46 -44
  271. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +82 -80
  272. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +32 -30
  273. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +39 -37
  274. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +22 -20
  275. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +38 -36
  276. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +24 -22
  277. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +29 -27
  278. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +76 -74
  279. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +20 -18
  280. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
  281. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +45 -43
  282. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +37 -35
  283. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +58 -56
  284. data/vendor/local/share/doc/groonga/en/html/reference/function.html +21 -19
  285. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +43 -41
  286. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +22 -20
  287. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +82 -80
  288. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +33 -31
  289. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +23 -21
  290. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +54 -52
  291. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +42 -40
  292. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -29
  293. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +20 -18
  294. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +20 -18
  295. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +49 -47
  296. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +21 -19
  297. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +45 -43
  298. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +42 -40
  299. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +27 -25
  300. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +219 -216
  301. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +430 -381
  302. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +22 -20
  303. data/vendor/local/share/doc/groonga/en/html/reference/log.html +23 -21
  304. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +52 -50
  305. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +20 -18
  306. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +20 -18
  307. data/vendor/local/share/doc/groonga/en/html/reference/output.html +35 -33
  308. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -18
  309. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +58 -56
  310. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
  311. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +46 -41
  312. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +20 -18
  313. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +20 -18
  314. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +20 -18
  315. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +55 -53
  316. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +39 -37
  317. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +20 -18
  318. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +30 -28
  319. data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -36
  320. data/vendor/local/share/doc/groonga/en/html/search.html +12 -12
  321. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  322. data/vendor/local/share/doc/groonga/en/html/server.html +20 -18
  323. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +20 -18
  324. data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
  325. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -32
  326. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -18
  327. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +20 -18
  328. data/vendor/local/share/doc/groonga/en/html/server/package.html +34 -32
  329. data/vendor/local/share/doc/groonga/en/html/spec.html +20 -18
  330. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +128 -126
  331. data/vendor/local/share/doc/groonga/en/html/spec/search.html +20 -18
  332. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +20 -18
  333. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
  334. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
  335. data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -19
  336. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +20 -18
  337. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +34 -32
  338. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +23 -21
  339. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +20 -18
  340. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +20 -18
  341. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +24 -22
  342. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +53 -51
  343. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -18
  344. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +21 -19
  345. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +23 -21
  346. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
  347. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  348. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  349. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
  350. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  351. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +5 -5
  352. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  353. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  354. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +4 -4
  355. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  356. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +16 -570
  357. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +5 -4
  358. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
  359. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +686 -0
  360. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +0 -1
  361. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +3 -1
  362. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +12 -4
  363. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/index.txt +19 -0
  364. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/pseudo.txt +2 -2
  365. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/scalar.txt +19 -0
  366. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +734 -29
  367. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +2 -1
  368. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
  369. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
  370. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +25 -23
  371. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +1 -1
  372. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
  373. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +26 -1
  374. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  375. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  376. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  377. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
  378. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -2
  379. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  380. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  381. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  382. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
  383. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  384. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  385. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  386. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +20 -18
  387. data/vendor/local/share/doc/groonga/ja/html/client.html +20 -18
  388. data/vendor/local/share/doc/groonga/ja/html/community.html +20 -18
  389. data/vendor/local/share/doc/groonga/ja/html/contribution.html +21 -19
  390. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +20 -18
  391. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +20 -18
  392. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +20 -18
  393. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +20 -18
  394. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +23 -21
  395. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -18
  396. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +20 -18
  397. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -18
  398. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +20 -18
  399. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +21 -19
  400. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -25
  401. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +20 -18
  402. data/vendor/local/share/doc/groonga/ja/html/development.html +20 -18
  403. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -21
  404. data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
  405. data/vendor/local/share/doc/groonga/ja/html/index.html +88 -80
  406. data/vendor/local/share/doc/groonga/ja/html/install.html +36 -34
  407. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +40 -38
  408. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +30 -29
  409. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +31 -29
  410. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +31 -29
  411. data/vendor/local/share/doc/groonga/ja/html/install/others.html +81 -79
  412. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +24 -22
  413. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +31 -30
  414. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +32 -30
  415. data/vendor/local/share/doc/groonga/ja/html/limitations.html +20 -18
  416. data/vendor/local/share/doc/groonga/ja/html/news.html +85 -677
  417. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +20 -18
  418. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -19
  419. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +20 -18
  420. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +36 -34
  421. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +30 -28
  422. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +94 -92
  423. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +62 -60
  424. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +911 -0
  425. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +20 -18
  426. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  427. data/vendor/local/share/doc/groonga/ja/html/reference.html +85 -77
  428. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -38
  429. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +34 -32
  430. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +42 -40
  431. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +70 -68
  432. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +30 -28
  433. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +27 -25
  434. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +62 -60
  435. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +42 -40
  436. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +31 -29
  437. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +62 -60
  438. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +29 -27
  439. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +32 -30
  440. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +30 -28
  441. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +29 -27
  442. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +29 -27
  443. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +28 -26
  444. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +78 -76
  445. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +32 -30
  446. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +27 -25
  447. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +63 -61
  448. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +52 -50
  449. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +28 -26
  450. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -23
  451. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +43 -41
  452. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +20 -18
  453. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +35 -33
  454. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +153 -0
  455. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +56 -29
  456. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +153 -0
  457. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +111 -84
  458. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
  459. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +20 -18
  460. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +50 -48
  461. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +27 -25
  462. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +100 -98
  463. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +38 -36
  464. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +46 -44
  465. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +26 -24
  466. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +42 -40
  467. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +66 -64
  468. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +27 -25
  469. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -39
  470. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +40 -38
  471. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +27 -25
  472. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +35 -33
  473. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +25 -23
  474. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +36 -34
  475. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +38 -37
  476. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +26 -24
  477. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +27 -25
  478. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +25 -23
  479. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +57 -55
  480. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +32 -30
  481. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +24 -22
  482. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +24 -22
  483. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +34 -32
  484. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +59 -57
  485. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +38 -36
  486. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +38 -36
  487. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2832 -427
  488. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +24 -22
  489. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +25 -23
  490. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +64 -62
  491. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +99 -97
  492. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +36 -34
  493. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +26 -24
  494. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +41 -39
  495. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +67 -65
  496. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +32 -30
  497. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +40 -39
  498. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +22 -20
  499. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +50 -45
  500. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +24 -22
  501. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +29 -27
  502. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +64 -62
  503. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +20 -18
  504. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
  505. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +45 -43
  506. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +37 -35
  507. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +58 -56
  508. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +21 -19
  509. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +43 -41
  510. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +22 -20
  511. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +70 -68
  512. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +33 -31
  513. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +23 -21
  514. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -42
  515. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +33 -31
  516. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +31 -29
  517. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +20 -18
  518. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +20 -18
  519. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +42 -40
  520. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +21 -19
  521. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +31 -29
  522. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -32
  523. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +24 -22
  524. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +119 -117
  525. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +341 -301
  526. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -19
  527. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -21
  528. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +46 -44
  529. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +20 -18
  530. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +20 -18
  531. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +31 -29
  532. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -18
  533. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +37 -35
  534. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
  535. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +35 -43
  536. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +20 -18
  537. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +20 -18
  538. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +20 -18
  539. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +45 -43
  540. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +36 -34
  541. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +20 -18
  542. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +30 -28
  543. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -36
  544. data/vendor/local/share/doc/groonga/ja/html/search.html +12 -12
  545. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  546. data/vendor/local/share/doc/groonga/ja/html/server.html +20 -18
  547. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +20 -18
  548. data/vendor/local/share/doc/groonga/ja/html/server/http.html +22 -20
  549. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -26
  550. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -18
  551. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +20 -18
  552. data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -33
  553. data/vendor/local/share/doc/groonga/ja/html/spec.html +20 -18
  554. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +127 -125
  555. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +20 -18
  556. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +20 -18
  557. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
  558. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
  559. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -19
  560. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +25 -23
  561. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +33 -31
  562. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +20 -18
  563. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +21 -19
  564. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +20 -18
  565. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +27 -25
  566. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +50 -48
  567. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -19
  568. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +21 -19
  569. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +23 -21
  570. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
  571. data/vendor/local/share/man/ja/man1/groonga.1 +6711 -3135
  572. data/vendor/local/share/man/man1/groonga.1 +7192 -3297
  573. metadata +33 -4
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.4. データ型 &mdash; Groonga v4.0.8-168-gae696d7 documentation</title>
10
+ <title>7.4. データ型 &mdash; Groonga v5.0.0 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,12 +25,12 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.8-168-gae696d7 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.0 documentation" href="../index.html" />
29
29
  <link rel="up" title="7. Reference manual" href="../reference.html" />
30
30
  <link rel="next" title="7.5. Tables" href="tables.html" />
31
31
  <link rel="prev" title="7.3.39. truncate" href="commands/truncate.html" />
32
32
  </head>
33
- <body>
33
+ <body role="document">
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="../index.html">
@@ -48,7 +48,7 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related">
51
+ <div class="related" role="navigation" aria-label="related navigation">
52
52
  <h3>Navigation</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="commands/truncate.html" title="7.3.39. truncate"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
64
64
  <li><a href="../reference.html" accesskey="U">7. Reference manual</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,7 +68,7 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body">
71
+ <div class="body" role="main">
72
72
 
73
73
  <div class="section" id="id1">
74
74
  <h1>7.4. データ型<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
@@ -87,65 +87,65 @@
87
87
  <div class="section" id="id4">
88
88
  <h2>7.4.3. 組込型<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
89
89
  <p>以下の型が組込型としてあらかじめ定義されています。</p>
90
- <p><tt class="docutils literal"><span class="pre">Object</span></tt></p>
90
+ <p><code class="docutils literal"><span class="pre">Object</span></code></p>
91
91
  <blockquote>
92
92
  <div>任意のテーブルに属する全てのレコードです。 <a class="footnote-reference" href="#id9" id="id5">[1]</a></div></blockquote>
93
- <p><tt class="docutils literal"><span class="pre">Bool</span></tt></p>
93
+ <p><code class="docutils literal"><span class="pre">Bool</span></code></p>
94
94
  <blockquote>
95
95
  <div><p>ブーリアン型やブール型などと呼ばれる型であり、真偽値を表します。取り得る値はtrueとfalseです。(デフォルト値: false)</p>
96
96
  <p><a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、false、0、空文字列のいずれかを指定するとfalseになり、それ以外を指定するとtrueになります。</p>
97
97
  </div></blockquote>
98
- <p><tt class="docutils literal"><span class="pre">Int8</span></tt></p>
98
+ <p><code class="docutils literal"><span class="pre">Int8</span></code></p>
99
99
  <blockquote>
100
100
  <div>8bit符号付き整数であり、-128以上127以下の整数を表します。(デフォルト値: 0)</div></blockquote>
101
- <p><tt class="docutils literal"><span class="pre">UInt8</span></tt></p>
101
+ <p><code class="docutils literal"><span class="pre">UInt8</span></code></p>
102
102
  <blockquote>
103
103
  <div>8bit符号なし整数であり、0以上255以下の整数を表します。(デフォルト値: 0)</div></blockquote>
104
- <p><tt class="docutils literal"><span class="pre">Int16</span></tt></p>
104
+ <p><code class="docutils literal"><span class="pre">Int16</span></code></p>
105
105
  <blockquote>
106
106
  <div>16bit符号付き整数であり、-32,768以上32,767以下の整数を表します。(デフォルト値: 0)</div></blockquote>
107
- <p><tt class="docutils literal"><span class="pre">UInt16</span></tt></p>
107
+ <p><code class="docutils literal"><span class="pre">UInt16</span></code></p>
108
108
  <blockquote>
109
109
  <div>16bit符号なし整数であり、0以上65,535以下の整数を表します。(デフォルト値: 0)</div></blockquote>
110
- <p><tt class="docutils literal"><span class="pre">Int32</span></tt></p>
110
+ <p><code class="docutils literal"><span class="pre">Int32</span></code></p>
111
111
  <blockquote>
112
112
  <div>32bit符号付き整数であり、-2,147,483,648以上2,147,483,647以下の整数を表します。(デフォルト値: 0)</div></blockquote>
113
- <p><tt class="docutils literal"><span class="pre">UInt32</span></tt></p>
113
+ <p><code class="docutils literal"><span class="pre">UInt32</span></code></p>
114
114
  <blockquote>
115
115
  <div>32bit符号なし整数であり、0以上4,294,967,295以下の整数を表します。(デフォルト値: 0)</div></blockquote>
116
- <p><tt class="docutils literal"><span class="pre">Int64</span></tt></p>
116
+ <p><code class="docutils literal"><span class="pre">Int64</span></code></p>
117
117
  <blockquote>
118
118
  <div>64bit符号付き整数であり、-9,223,372,036,854,775,808以上9,223,372,036,854,775,807以下の整数を表します。(デフォルト値: 0)</div></blockquote>
119
- <p><tt class="docutils literal"><span class="pre">UInt64</span></tt></p>
119
+ <p><code class="docutils literal"><span class="pre">UInt64</span></code></p>
120
120
  <blockquote>
121
121
  <div>64bit符号なし整数であり、0以上18,446,744,073,709,551,615以下の整数を表します。(デフォルト値: 0)</div></blockquote>
122
- <p><tt class="docutils literal"><span class="pre">Float</span></tt></p>
122
+ <p><code class="docutils literal"><span class="pre">Float</span></code></p>
123
123
  <blockquote>
124
124
  <div><p>IEEE 754形式の倍精度浮動小数点数であり、実数を表します。(デフォルト値: 0.0)</p>
125
125
  <p>IEEE 754形式の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/IEEE_754">IEEE 754 - Wikipedia</a> や <a class="reference external" href="http://grouper.ieee.org/groups/754/">IEEE 754: Standard for Binary Floating-Point</a> を参照してください。</p>
126
126
  </div></blockquote>
127
- <p><tt class="docutils literal"><span class="pre">Time</span></tt></p>
127
+ <p><code class="docutils literal"><span class="pre">Time</span></code></p>
128
128
  <blockquote>
129
129
  <div><p>日時を表す型であり、1970年1月1日0時0分0秒からの経過時間を、マイクロ秒単位で64bit符号付き整数により表現します。(デフォルト値: 0)</p>
130
130
  <p><a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、1970年1月1日0時0分0秒からの経過秒数を指定します。秒単位より詳細な日時を指定するには、小数を使います。</p>
131
131
  </div></blockquote>
132
- <p><tt class="docutils literal"><span class="pre">ShortText</span></tt></p>
132
+ <p><code class="docutils literal"><span class="pre">ShortText</span></code></p>
133
133
  <blockquote>
134
134
  <div>4,095バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
135
- <p><tt class="docutils literal"><span class="pre">Text</span></tt></p>
135
+ <p><code class="docutils literal"><span class="pre">Text</span></code></p>
136
136
  <blockquote>
137
137
  <div>65,535バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
138
- <p><tt class="docutils literal"><span class="pre">LongText</span></tt></p>
138
+ <p><code class="docutils literal"><span class="pre">LongText</span></code></p>
139
139
  <blockquote>
140
140
  <div>2,147,483,647バイト以下の文字列を表します。(デフォルト値: &quot;&quot;)</div></blockquote>
141
- <p><tt class="docutils literal"><span class="pre">TokyoGeoPoint</span></tt></p>
141
+ <p><code class="docutils literal"><span class="pre">TokyoGeoPoint</span></code></p>
142
142
  <blockquote>
143
143
  <div><p>旧日本測地系による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
144
144
  <p>度分秒形式でx度y分z秒となる経度・緯度は、(((x * 60) + y) * 60 + z) * 1000という計算式でミリ秒単位へと変換されます。
145
145
  <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドで値を格納するときは、&quot;ミリ秒単位の経度xミリ秒単位の緯度&quot; もしくは &quot;経度の小数表記x緯度の小数表記&quot; という文字列表現を使って指定します。経度と緯度の区切りとしては、'x' のほかに ',' を使うことができます。</p>
146
146
  <p>測地系の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/%E6%B8%AC%E5%9C%B0%E7%B3%BB">測地系 - Wikipedia</a> を参照してください。</p>
147
147
  </div></blockquote>
148
- <p><tt class="docutils literal"><span class="pre">WGS84GeoPoint</span></tt></p>
148
+ <p><code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code></p>
149
149
  <blockquote>
150
150
  <div><p>世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
151
151
  <p>度分秒形式からミリ秒形式への変換方法や <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドにおける指定方法はTokyoGeoPointと同じです。</p>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
  </div>
178
178
  </div>
179
- <div class="sphinxsidebar">
179
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
180
180
  <div class="sphinxsidebarwrapper">
181
181
  <h3><a href="../index.html">Table Of Contents</a></h3>
182
182
  <ul>
@@ -195,16 +195,18 @@
195
195
 
196
196
  <h4>Previous topic</h4>
197
197
  <p class="topless"><a href="commands/truncate.html"
198
- title="previous chapter">7.3.39. <tt class="docutils literal"><span class="pre">truncate</span></tt></a></p>
198
+ title="previous chapter">7.3.39. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
199
199
  <h4>Next topic</h4>
200
200
  <p class="topless"><a href="tables.html"
201
201
  title="next chapter">7.5. Tables</a></p>
202
- <h3>This Page</h3>
203
- <ul class="this-page-menu">
204
- <li><a href="../_sources/reference/types.txt"
205
- rel="nofollow">Show Source</a></li>
206
- </ul>
207
- <div id="searchbox" style="display: none">
202
+ <div role="note" aria-label="source link">
203
+ <h3>This Page</h3>
204
+ <ul class="this-page-menu">
205
+ <li><a href="../_sources/reference/types.txt"
206
+ rel="nofollow">Show Source</a></li>
207
+ </ul>
208
+ </div>
209
+ <div id="searchbox" style="display: none" role="search">
208
210
  <h3>Quick search</h3>
209
211
  <form class="search" action="../search.html" method="get">
210
212
  <input type="text" name="q" />
@@ -221,7 +223,7 @@
221
223
  </div>
222
224
  <div class="clearer"></div>
223
225
  </div>
224
- <div class="related">
226
+ <div class="related" role="navigation" aria-label="related navigation">
225
227
  <h3>Navigation</h3>
226
228
  <ul>
227
229
  <li class="right" style="margin-right: 10px">
@@ -233,12 +235,12 @@
233
235
  <li class="right" >
234
236
  <a href="commands/truncate.html" title="7.3.39. truncate"
235
237
  >previous</a> |</li>
236
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
238
+ <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
237
239
  <li><a href="../reference.html" >7. Reference manual</a> &raquo;</li>
238
240
  </ul>
239
241
  </div>
240
- <div class="footer">
241
- &copy; Copyright 2009-2014, Brazil, Inc.
242
+ <div class="footer" role="contentinfo">
243
+ &copy; Copyright 2009-2015, Brazil, Inc.
242
244
  </div>
243
245
  </body>
244
246
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>Search &mdash; Groonga v4.0.8-168-gae696d7 documentation</title>
10
+ <title>Search &mdash; Groonga v5.0.0 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/searchtools.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v4.0.8-168-gae696d7 documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.0 documentation" href="index.html" />
30
30
  <script type="text/javascript">
31
31
  jQuery(function() { Search.loadIndex("searchindex.js"); });
32
32
  </script>
@@ -35,7 +35,7 @@
35
35
 
36
36
 
37
37
  </head>
38
- <body>
38
+ <body role="document">
39
39
  <div class="header">
40
40
  <h1 class="title">
41
41
  <a id="top-link" href="index.html">
@@ -53,20 +53,20 @@
53
53
  </div>
54
54
 
55
55
 
56
- <div class="related">
56
+ <div class="related" role="navigation" aria-label="related navigation">
57
57
  <h3>Navigation</h3>
58
58
  <ul>
59
59
  <li class="right" style="margin-right: 10px">
60
60
  <a href="genindex.html" title="General Index"
61
61
  accesskey="I">index</a></li>
62
- <li><a href="index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
66
66
  <div class="document">
67
67
  <div class="documentwrapper">
68
68
  <div class="bodywrapper">
69
- <div class="body">
69
+ <div class="body" role="main">
70
70
 
71
71
  <h1 id="search-documentation">Search</h1>
72
72
  <div id="fallback" class="admonition warning">
@@ -95,23 +95,23 @@
95
95
  </div>
96
96
  </div>
97
97
  </div>
98
- <div class="sphinxsidebar">
98
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
99
99
  <div class="sphinxsidebarwrapper">
100
100
  </div>
101
101
  </div>
102
102
  <div class="clearer"></div>
103
103
  </div>
104
- <div class="related">
104
+ <div class="related" role="navigation" aria-label="related navigation">
105
105
  <h3>Navigation</h3>
106
106
  <ul>
107
107
  <li class="right" style="margin-right: 10px">
108
108
  <a href="genindex.html" title="General Index"
109
109
  >index</a></li>
110
- <li><a href="index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
110
+ <li><a href="index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
111
111
  </ul>
112
112
  </div>
113
- <div class="footer">
114
- &copy; Copyright 2009-2014, Brazil, Inc.
113
+ <div class="footer" role="contentinfo">
114
+ &copy; Copyright 2009-2015, Brazil, Inc.
115
115
  </div>
116
116
  </body>
117
117
  </html>
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{localstatedir:[],four:[126,86,3,138],"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":140,profil:170,"\u811a\u6ce8":[29,40,162,65],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":156,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":130,your_db:23,column_cr:[],"\u65e5\u672c\u4eba":164,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":140,digit:[138,70,16,59],thread_tabl:156,command_vers:[10,3,4,150,27,42,74,101,8,31,94],"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":57,"takashi\u3055\u3093\u304c\u5831\u544a":23,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":133,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":143,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":100,"groonga\u306f\u5217\u6307\u5411\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u9ad8\u901f\u3067\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb\u306a\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3067\u3059":89,grn_plugin_win32_base_dir:35,drilldown_output_column:[],asami:116,"\u697d\u3057\u3044billiard":[64,134],accuml:116,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":140,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":105,grn_oper:[105,50,76,113,102],"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":66,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":140,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":156,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":32,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":47,grn_socket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":57,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":89,grn_table_cursor_next:[57,143],here:[35,84,2,132,86,87,62,42,43,41,82,93,8,95,9,137,138,98,118,48,15,100,68,139,77,142,12,52,107,53,16,55,18,155,58,59,152,44,127,150,169,67,158,160,88,71,101,163,164,73,175,75,121,122,123,168,124,27,172,33,174,129,111,76,109],onga:27,china:[68,121],grn_enc_utf8:[57,114],ful:82,"\u4e0e\u3048":64,latitude_in_msec:139,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":125,"\u7a7a\u767d\u3084":89,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":89,match_column:[],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":156,engi:[142,164],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":165,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":23,substr:[168,139],unix:174,txt:[79,111],unit:[68,139,26,27,158,160],music:[39,138],until:[35,106,52,17,129,70,111],"\u30d6\u30ed\u30b0":[],grn_op_push:63,relax:129,relat:[],error_messag:126,notic:[5,7,8],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":140,thread_title_column:156,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":140,"byte\u9577":[105,72,113],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":146,"akio\u3055\u3093\u304c\u5831\u544a":143,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":72,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":115,grn_obj_reinit:72,cirit:8,no_such_device_or_address:160,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":156,want:[131,82,3,83,41,43,137,8,96,174,153,100,68,79,12,52,16,62,154,169,160,70,71,163,164,120,168,121,122,124,141,81],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":31,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":105,"\u30b3\u30de\u30f3\u30c9\u306f":31,type1:142,type2:142,"groonga_github_com_path\u306bgroonga":140,grn_filename_too_long:2,turn:8,grn_read_only_file_system:2,travel:170,grn_geo_point:102,grn_input_output_error:2,yum:[6,153,120,140,18],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":72,message_pack_install_prefix:[],groonga_clone_dir:140,moritar:71,wrong:[116,6,157,16,55,70,23],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":75,"\u63d0\u6848\u3092\u884c\u3046":143,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":136,wing:[6,116],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":156,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":114,vari:[35,60],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":100,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[57,105],hidden:30,fin:47,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":63,rectangl:[],stop_word:[152,41],"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":140,dcmake_install_prefix:93,cancel_request_is_accepted_or_not:95,timeout:[72,17,116],debug:[82,5,7,8,138,70],"obj\u3092lock\u3057\u307e\u3059":72,last_modifi:170,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":64,"akio\u3055\u3093\u304c\u63d0\u6848":143,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":156,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":143,grn_table_s:[105,63],grooon:122,moritapo:39,gregex:116,grn_no_such_device_or_address:2,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":156,input_typ:52,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":140,"\u79d2":72,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,ringtail:116,"\u307e\u308d\u3086\u304d":133,libedit:[6,23,174,153],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":40,atv:[67,3,121],pagin:3,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":135,resource_busi:160,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":10,mingw:140,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":57,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":140,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":89,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":140,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":105,master:[111,8,73],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":100,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":57,listen:[6,8,48,94],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,162],kinjir:39,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":140,"\u50241":[31,89],tree:70,second:[100,68,3,168,11,170,87,126,67,95,138,71,48,139],project:[0,131,139,140,30,96,70,80,73],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":105,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":156,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":89,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":156,boston:170,"db_api\u306f":63,parenthes:3,"\u3050\u308b\u3093\u304c\u6b21\u90ce":39,increment:123,incompat:[6,70,116],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":140,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":64,"0\u306e\u79d2\u8868\u8a18":64,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":140,simplifi:116,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"10041\u756a":89,object:[],microsecond:[11,138],letter:175,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":156,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":56,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":156,camp:170,incompatible_file_format:160,index_blog:71,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":140,expornenti:139,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":134,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,nterm:117,daemoinz:6,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,grnslap:[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":89,restaur:30,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":10,"2byte":[2,160],grn_obj_set_element_info:36,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u306f\u306a\u304f":1,serv:[11,70,140],source_file_nam:126,createrepo:140,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":40,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],ever:116,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":64,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":40,unexpectedli:116,etim:166,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":40,"description\u306b":134,result:[],respons:[15,2,122,30,116,6,160,95,23,70,48],fail:[35,15,3,168,116,6,17,9,23,70,59],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":72,best:30,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":31,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":63,wikipedia:40,figur:84,score:[],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":10,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":156,extend:[70,71,83],shidara:23,extens:4,pat_kei:86,accident:116,grn_plugin_realloc:35,column_scalar:[83,87,41,42,101,118,100,68,139,106,107,53,146,39,152,64,150,66,169,158,88,71,168,121,170,27,127,129],logic:[],countri:[158,94,121],login:129,"808\u4ee5\u4e0a9":40,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":134,"2nd":100,"\u95a2\u6570":165,grn_table_cursor_get_valu:57,assum:[47,95,14],summar:121,duplic:70,grn_search_optarg:50,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":133,"\u306e\u307b\u304b\u306b":40,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":10,"takashi\u3055\u3093":23,salamand:[70,116],res_column:156,"\u30ab\u30f3\u30de":146,worker:[8,116],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,dave:88,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":64,grn_table_delet:105,"\u6bb5\u843d\u60c5\u5831":113,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":1,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,sen_index_norm:37,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":162,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":10,cache_hit_r:[94,74,3,4,8],arg_list_too_long:160,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":74,grn_resource_busi:2,simil:139,split:[23,139,86],big:[70,8],"\u6570\u304c\u5927\u304d\u3044\u307b\u3069\u591a\u304f\u306e\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":89,documents_content_index:[107,27],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":156,refin:[30,116],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":74,tune:[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":140,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[64,134],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":63,out_gqtp:156,users_memo:107,gzip:[],unchang:35,sleepi:106,hai:63,easi:[30,163,94,48,147],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":156,had:111,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],hat:174,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":63,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":140,koji:6,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":64,command_nam:94,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":156,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":140,measur:[23,30],specif:[],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":66,filename_too_long:160,"\u30d4\u30ea\u30aa\u30c9":66,sebastian:70,underli:30,grn_obj_table_hash_kei:[57,105],right:[],groogna:[6,104,100,93,168],kouhei:116,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":54,bottom:102,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":112,"146566000x":[170,68],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":140,ichii:23,condit:[],yoku:[70,116],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":156,grn_builtin_typ:[56,72],grn_cursor_descend:57,grn_log_path:6,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":113,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":125,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":40,nginxhttpstubstatusmodul:70,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":21,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":100,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":63,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":40,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":63,suffici:35,support:[],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":61,avail:[],width:[23,175],joseph:133,call:[],inv_res_column:156,"\u3086\u304d\u3072\u308d":133,"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":1,rid_max:112,"135960000x":68,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":105,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":10,replied_us:170,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":115,later:[101,3,150,116,42,6,169,70,23,175],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":105,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":31,exist:[52,95,3,75,11,88,116,6,67,173,94,55,18,70,71,139,58,131,8],"object\u578b\u306fv1":40,column_name1:52,column_name2:52,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":97,grn_search:[],role:[107,30],notif:[138,116],intend:[6,70,71,168,169],moero:39,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":140,grn_ptr_value_at:76,intens:8,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":143,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":113,grn_ii_buffer_open:78,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":50,exce:[6,116],time:[],push:111,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":97,chain:169,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[167,29,103,162,61],grn_obj_get_hook:85,netbsd:116,millisecond:[11,122,67,17,139],decid:163,hold:[11,91],"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":143,decim:[11,139],downtim:[],"257662232kbyte":156,score_adjust_express:100,lru:109,exact:[74,86,100,63,59],"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":21,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":165,grn_plugin_mutex_lock:35,prevent:116,"\u8ad6\u7406\u548c":63,grn_table_group_result:105,index_point:39,sign:[],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":166,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":10,grn_broken_pip:2,takashi:158,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":72,current:[52,3,75,84,111,170,14,15,53,8,23,109,98,59],"\u3053\u308c\u306b\u3088\u308a":140,boost:164,"encoding\u306e\u5024\u304c":23,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":72,"0\u4ee5\u4e0a4":40,address:[6,23,89,94,122],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":63,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],throughput:[23,48],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],commonli:30,ipa:153,pentium:156,prefer:122,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[36,75,56,89,105,72,156,113],"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":23,instal:[],"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":105,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":89,value2:[52,139],value1:[52,8,139],peopl:30,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":156,enhanc:37,visual:[126,30,116,6,93,70,23],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":40,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":57,"windows\u7cfb":140,genki:116,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":40,improper_link:160,recycl:70,"takahiro\u3055\u3093":143,index_titl:71,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":57,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":10,chroot:140,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":156,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":165,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":133,"grnslap\u306f":166,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":156,date:[],data:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":113,stdin:104,cannot:[],int64:[70,40,116],grn_plugin_charlen:35,i686:156,grn_ja_skip_same_value_put:116,"\u30e6\u30fc\u30b6\u540d":156,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":112,implemnt:177,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":115,instantli:[30,27],grn_obj_init:72,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":176,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":140,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,revers:[],separ:[52,100,82,3,4,121,142,87,124,41,6,160,139,98,163,168],"_dataset":[58,172],operation_not_permit:160,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":72,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":140,compil:[23,174,116,70],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":105,grn_obj_path:[72,116],gtar:20,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":140,blt:146,internet:[30,147],formula:[154,68],"\u6700\u5f8c\u306e":156,million:60,"\u6700\u5f8c\u306b":64,mime:48,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":21,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":105,"byte":[35,113,123,27,14,6,105,160,116,56,23,72,76,47],dest_key_s:105,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":36,grn_op_adjust:[50,63],brasil:68,"\u30b9\u30fc\u30d7":134,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":10,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":85,oper:[],grn_logger_reopen:6,onc:[100,121,170,6,70,23,71,175],beijin:68,reopen:23,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":64,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":23,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":64,open:[],grn_obj_get_element_info:36,convens:6,convent:6,return_cod:[126,138],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":64,citi:[84,68,170],groonga1:10,conveni:[30,173,23,174,164,177],"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":140,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":57,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":72,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":156,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":72,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":31,set_port:156,grn_obj_get_info:36,fumiyasu:23,grn_ctx_set_output_typ:14,"\u307e\u305fgroonga":156,column_list:[],"\u90fd":[64,134],sai:[3,139],san:68,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":167,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,argument:[35,68,3,139,169,150,27,42,14,6,107,101,94,116,70,23,71],sae:[142,16],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,drilldown_limit:[],uuuuuu:139,note:[35,3,6,8,95,23,137,48,153,100,101,139,11,59,62,154,116,158,70,121,122,30,129,94],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,take:[131,44,3,55,87,127,53,95,155,118],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":54,"\u30cb\u30db\u30f3\u30b8\u30f3":164,noth:[157,98,8,55,164],grn1:71,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":32,grn3:71,grn2:71,buffer:[78,116,117,71,72,76],"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":7,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":97,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":100,"\u30b5\u30fc\u30d0":89,max_valu:129,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":65,do_gqpt:156,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":162,"\u4ef6\u6570":100,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":156,grn_lzo_error:2,"obj\u306f":72,xml:[],slow:[86,8],"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":61,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":14,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":31,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":31,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":156,grn_obj_append:72,"dump\u30b3\u30de\u30f3\u30c9":1,grn_invalid_seek:2,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,grn_ii_buffer_clos:78,requir:[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":100,aptitud:165,privileg:[94,116],where:[11,2,174],"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":57,"\u7a7a\u767d":89,"namebuf\u306e\u30b5\u30a4\u30ba":[72,113],"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":105,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u30b3\u30ed\u30f3":66,mani:[131,3,86,8,23,174,48,100,77,11,111,116,157,70,121,30,27,172,129,80,59,177],"\u30ed\u30b0\u51fa\u529b":7,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":117,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":143,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":10,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":10,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":36,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":85,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":47,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":140,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":36,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":89,score_adjust_expression2:100,score_adjust_expression1:100,msg_id:140,resolut:[],former:[175,163],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":89,ctrl:[3,94],ivh:[153,120],anim:39,set_host:156,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":105,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[29,162],ascii:[168,139],hash_tag:170,binari:[],grn_proc_creat:47,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,utf8:[114,174,89],cmake:[6,174,93,116],grn_operation_not_support:2,"146710080x":170,"768\u4ee5\u4e0a32":40,"\u5358\u72ec\u306e\u5024":113,wiedenroth:70,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":156,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":166,grn_hook_select:85,"\u6771\u4eac\u90fd":[64,134],rest:[35,163],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":156,"\u30cb\u30db\u30f3":164,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":105,haystack:63,ruby1:140,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":156,"4096byte":[60,86],around:[84,27],"10043\u756a":89,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":134,res1:105,bookmark_index:77,world:[70,40,67,116],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":10,intel:156,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":72,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":10,integ:[],manag:[174,75,123,86,27,14,30,95,94,55,18,73,163,48,8],yyyi:[138,139],"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":72,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":75,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":140,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":75,grn_obj_is_builtin:[23,72],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":140,edict2grn:70,definit:[100,68,168,169,150,27,42,6,107,158,88,101,139],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":47,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":140,reference_column:70,ddl:[70,156],refer:[],power:100,"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":64,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":40,"\u30d3\u30eb\u30c9\u6642\u306etip":[],grn_get_default_command_vers:108,starttim:[94,74,3,4,8],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":89,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":134,neighbor:30,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":140,"flags\u306b\u306f":105,match_escalation_threshold:[],cflag:[20,140],"\u306b\u3042\u308b":72,agaist:6,charli:170,hex:[39,139],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":10,grn_proc_func:[35,47,14],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,bundl:[6,70,111,116,107],htpasswd:[8,48],no_kei:86,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":89,categor:[100,82,41],pull:[],"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":66,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":63,grn_ctx_get:[113,14],preconfigur:[141,120,12,131,153],reqular:122,gone:39,type_of_the_column:169,uid:140,creat:[],"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":89,certain:67,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":143,grn_id_nil:[57,105,76],googl:[157,100,168],grn_select:100,grn_ctx_open:[23,14],shimomura:6,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":140,writabl:70,"\u4e00\u65b9":64,item_dataset:[172,43],"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":165,vocabulari:3,geodet:[40,67],"debug\u3092\u8ffd\u52a0":143,nagano:70,queryexpandertsv:[],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":140,cpu:[],senna:[],"\u6539\u826f":[],illustr:121,pluggabl:30,"\u521d\u671f\u5316\u3059\u308b":14,scr:156,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],grn_obj_set_info:36,too_small_offset:160,tail:[160,140],kosuk:116,webclip:101,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],introduc:[70,80,8],candid:[122,142,164],too_many_open_fil:160,"4\u30ea\u30ea\u30fc\u30b9":[],"0\u30ea\u30ea\u30fc\u30b9":[],"yum\u306e\u5834\u5408":140,adjust:[],small:[168,86,116,170,70,59,139],"flags\u306b":[105,113],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,past:6,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":63,pass:[68,3,75,140,168,107,8,95,23,104,94],lexicon_t:156,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":140,section:[35,46,82,78,87,41,43,93,8,95,137,174,118,45,153,100,68,77,12,52,53,16,109,55,124,59,151,62,113,127,20,116,160,171,70,71,163,164,73,120,168,121,149,25,26,141,128,170,129,80,111,81],"log_put\u306f":7,"debian\u7cfb":140,"files\u306e\u5b9f\u884c":[],delet:[],"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":140,coremodul:8,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":10,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":134,hash:[],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":140,table_renam:104,jennif:133,sender:[122,58],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":14,social:39,action:116,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":85,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,"\u6b21\u306bgroonga\u306etest":140,no_such_process:160,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":134,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":75,grn_plugin_mutex_unlock:35,define_selector:[],select:[],"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":156,mecab:[153,120,37,140,30,12,116,6,141,70,23,174,81],mori:146,morn:106,mecab_new2:6,"lucid\u304b\u3089":143,more:[35,3,133,86,87,6,8,132,174,48,100,139,77,11,142,14,106,107,16,55,58,59,60,152,116,157,160,70,163,168,169,30,27,170,129],yokoyama:[70,116],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":63,uint8:[40,143,87,116],"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":140,function_nam:126,nomal:[6,100,8],cach:[],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":63,uint64:[70,40,116],"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":66,endpoint:[122,58],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":10,learn:[],"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":31,prompt:[6,93,3,4],scan:[165,150,168,42,139],accept:[68,3,83,122,123,88,30,6,67,94,95,70,23,71,170,118,48],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":23,groonga_cache_limit:[],exmapl:[168,139],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":156,"search\u3092\u884c\u3044":[57,105],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[10,165],simpl:[],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":156,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":133,referenc:[6,158,116,121,59],grn_obj_get_rang:72,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":162,conditin:168,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":14,"\u521d\u671f\u5316\u6e08\u307f\u306e":75,m64:20,tokenbigram:[82,3,83,86,89,41,42,97,100,139,106,107,16,155,59,152,64,150,169,71,168,170,27,129,33],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:150,grn_obj_key_int:56,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":117,sysctl:[154,129,81],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":140,i386:[23,120,140],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[74,89],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,grn_query_expander_tsv_synonyms_fil:163,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":105,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":143,sauci:[70,116],grn_cursor_rk:57,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":36,"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":89,grn_bulk:76,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":113,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":115,"drilldown_limit\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":100,inada:116,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":140,authent:[],"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":57,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":140,found:[100,102,116,6,157,105,93,174],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":85,with_posit:[106,152,3,83,169,64,170,87,100,27,42,66,107,129,71,139,150,168],procedur:[6,116],realli:[139,100,83,168],ftp:156,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":140,ftb:37,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":89,grn_column_index_upd:113,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":14,grn_user_data:[],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":40,grn_table_hash_kei:[105,102],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":72,clumn:129,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":156,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":65,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":134,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":10,major:128,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":133,n_result:105,grn_ctx_use_ql:70,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[57,105,72,113],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":143,file_corrupt:160,"org\u304c\u30db\u30b9\u30c8\u3092":140,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":113,relationship:[],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":140,dpkg:140,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":140,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":143,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":31,"\u307e\u305f\u540c\u6642\u306b":156,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":85,reus:86,grn_ctx_set_match_escalation_threshold:21,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":136,comput:[35,139,43,6,16,129,164],toybox:11,grn_hook_entri:85,"\u95a2\u6570\u306e\u8ffd\u52a0":1,packag:[],gted:111,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":89,documenataion:126,self:156,also:[],"keybuf\u306e\u30b5\u30a4\u30ba":105,"\u8a18\u53f7":[64,89],"sortby\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b\u6607\u964d\u9806\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":100,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":72,lexcon:3,plai:[30,83],"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":140,table_pat_kei:[],cover:[30,27],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":156,umemoto:23,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,ext:82,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":89,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[105,72,113],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":146,microsoft:93,"\u3057\u304b\u3057":[64,40,134],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":134,cache_limit:[],escape_charact:76,session:[122,160],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":156,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,columnn:6,"\u50242":[31,89],solut:[],"\u304c\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570\u3092\u8d85\u3048\u306a\u3044\u7bc4\u56f2\u3067\u30ec\u30b3\u30fc\u30c9\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,factor:[70,100],"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":64,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":140,"\u826f\u3044\u306e\u304b":115,"8\u307e\u3067\u306e\u6570\u5024\u304c\u6307\u5b9a\u53ef\u80fd\u3067":89,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:105,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":133,column1:[100,63,139,116,6,70],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":63,column2:[100,63,139,116,6,70],set:[],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[156,89],showen:2,startup:6,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":143,see:[],"\u306e2\u5358\u8a9e\u6271\u3044":134,sec:17,sea:[82,164],juman:153,grn_column_name_scor:113,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":74,mutex:[35,116],"chroot\u74b0\u5883\u306e":140,javascript:[],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":97,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":143,bodi:[],last:[6,82,14],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":57,"\u7d9a\u3044\u3066":64,whole:116,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":156,load:[],"256kib":129,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":136,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":57,"5367431640625e":4,devic:30,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":64,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":54,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":63,nonexist:[70,100],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":57,shinya:6,funa:70,func:[35,47,14],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],oldvalu:113,grn_column_name_nsubrecs_len:113,error:[],rep_gqpt:156,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":166,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":156,user_data:[35,47],grn_table_at:[143,105,72,104],needleess:6,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":14,obsolet:131,n_builtin_type_nam:75,nanosecond:[126,138],x64:[93,140],grn_result_too_larg:2,shorter:106,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":166,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":165,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":10,alert:[5,70,7,8,138],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":134,grn_db_create_optarg:75,stack:116,recent:109,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":54,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":117,person:[],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":117,do_gqtp:156,construct:[],mysql:[153,100,37,77,30,150,12,124,27,42,141,157,70,175,163,120],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":105,parenth:52,grn_tokenizer_error:2,input:[126,3,116,43,52,157,16,94,23,98,164],format:[],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":40,"\u5f15\u6570\u540d":[31,89],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":64,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":40,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":89,encount:[153,120,12,141,93,128],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":57,sampl:[],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":85,port_numb:94,benefit:131,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":63,"56058502197266e":4,machin:70,keyword_cont:76,"aramaki\u3055\u3093":143,"ongaeshi\u3055\u3093\u304c\u5831\u544a":143,wget:[153,120,20,12,141,174],"gqtp\u306e\u5834\u5408":89,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":105,grn_expr_pars:76,grn_cursor_lt:57,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":64,"\u884c\u3059\u308b":140,repair:104,"\u5f15\u6570\u3068\u3057\u3066":63,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":40,pcre:[6,8],span:[150,101,27,42],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":105,line_numb:126,submit:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":57,suit:[70,27,30],"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[168,121,11,6,94,70,139],line:[],int8:[11,70,40,143,116],"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":156,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":140,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":10,element1:[139,77],element2:[139,77],element3:77,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":140,parser:168,"char":[35,75,56,114,14,105,70,72,76,47,113],sholud:174,taro:39,invalid:[35,100,122,114,116,6,70,23,59],"grn_op_and\u306f":63,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":72,lucid:[143,116],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":134,wrongli:23,ago:164,algorithm:[23,68,109],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":165,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":63,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":140,fresh:106,hello:[106,152,139,41],code:[],partial:[157,63,160,164],"\u7a7a\u306e\u5834\u5408":[32,99],send:[],table_list:[],"\u30ab\u30e9\u30e0\u540d1":100,sent:48,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":156,"\u30d9\u30af\u30bf\u306e\u5024\u3092":143,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":105,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":50,tri:[170,17],"\u30ab\u30e9\u30e0\u540dn":100,grn_no_such_file_or_directori:2,"try":[80,71,177,17,170],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":140,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":143,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":148,video:39,odd:139,"1\u5358\u8a9e\u6271\u3044":134,rurema:70,cenos6:6,let:[],ubuntu:[],layout:140,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":72,thatn:100,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":47,greas:11,ctx:[35,36,63,112,75,72,85,78,14,15,21,105,102,56,57,50,76,47,110,113],"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":10,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":57,menu:93,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":57,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":140,location_str:170,"200byte":27,firefox:111,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":140,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,zip:[],rid_min:112,doubl:[52,100,82,3,168,86,124,116,6,70,23,139,59],upgrad:[],next:[39,102,3,30,70,47],doubt:121,"http\u306e\u5834\u5408":89,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":100,src:[11,141],socket_is_already_connect:160,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":63,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":156,drill:170,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":143,process:[],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":134,high:[30,100,147,77],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":105,"column\u306e\u5024\u304c":63,"128515259x503187188":[39,67],defalt:143,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":140,surfac:84,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,alloc:[],essenti:[141,12,8],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":143,seriou:6,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":156,element:[126,2,3,77,11,27,116,6,70],issu:[],"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,allow:[3,30,27,6,141,94,58],posted_bi:170,"centos\u306e\u5834\u5408":140,movi:39,move:[6,79,93,23],lz4:[],sen_sel_term_extract:37,comma:[11,52,3,139,121],"\u529b":[7,130],yamaguchi:23,perfect:30,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":117,hobbi:138,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":63,"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[],murakami:[70,116],python:[140,18],kisk:6,billiard:[64,134],lzo:[6,23,66,116,70],highlight_ful:[],"\u3053\u308c\u306b\u5bfe\u3057\u3066":134,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":140,grn_file_too_larg:2,bump:[70,116],meta:[6,87],"static":[23,3,70],grn_too_many_symbolic_link:2,"table\u306ecolumn":105,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[74,135,5,65,66,117,7,144,146,148,176,97,32,130,99],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":143,builtin_type_nam:75,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],log:[],"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":165,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":140,could:[6,11],length:[6,35,11],outsid:70,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":165,softwar:[],"\u5f15\u6570\u540d1":[31,89],"\u5f15\u6570\u540d2":[31,89],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":21,index_messag:71,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":105,vector_column:[116,164],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":117,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":117,"\u30cb\u30db\u30f3\u30b4":164,licens:[6,70,37,140],system:[100,168,20,30,40,12,27,116,106,11,67,8,129,70,23,174,139],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":10,hash_kei:86,grn_table_get_kei:105,termin:[],articles2:71,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":134,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":99,itagaki:143,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":64,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":125,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":103,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":140,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":162,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":134,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":14,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":100,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":140,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":115,satoshi:70,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":143,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":143,highlight_html:[],thesauru:100,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":47,oracl:[],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":125,segment:[6,70,117],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":156,latin1:[6,174],grn_cursor_by_kei:57,"\u3067\u3059\u306d":115,brew:[81,18],grn_column_name_score_len:113,fact:[39,100],"\u62e1\u5f35\u5b50\u306f":156,dbm:[30,27],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[105,72,113],"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":75,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":140,nois:16,freq2:43,freq1:43,freq0:43,jan:170,articles_cont:71,"\u30b3\u30e1\u30f3\u30c8\u884c":156,familiar:121,"\u30b7\u30a7\u30eb\u4e0a":156,"2\u884c\u76ee":156,jiro:39,db1:48,db2:48,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":57,"\u51e6\u7406\u958b\u59cb\u6642\u9593":100,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":10,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":89,"hat\u7cfb":140,candidate_1:122,"\u4e8c":164,candidate_2:122,"\u4e16\u754c\u6e2c\u5730\u7cfb":40,column_renam:[],"\u99c4\u76ee\u306a\u4f8b":115,grn_obj_lock:72,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":1,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":140,"\u3066\u3057\u307e\u3044\u307e\u3059":115,candidate_n:122,memri:129,encodiong:139,grn_plugin_expr_var_init:[35,70],max_command_vers:[94,74,3,4,8],grn_obj_user_data:110,etc:[131,3,140,11,154,6,141,8,129,80,163,48],tld:121,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[56,105,50],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":64,grn_type_cr:56,zenigata:39,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":134,grn_ii_buff:78,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":47,quotat:[82,124],"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":143,insuffici:11,immedi:[30,8,95],invalid_seek:160,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":103,grn_cache_clos:15,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":97,spain:68,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":143,tokenkytea:6,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":156,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":74,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":156,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":105,cve:70,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":54,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":47,site:[39,3,121,11,127,67,94,146,147,70,71],archiv:[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":143,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":74,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":57,output_column:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":136,spell:[163,83],expans:[],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":72,"dist\u3067\u751f\u6210\u3057\u305ftar":140,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":143,php:[6,70,140],expand:[],off:[23,8,70],dinam:147,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":100,exampl:[],command:[],ecmascript:[6,100,147,116,139],"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":144,akira:70,prepend:[139,8,168],web:[39,100,168,142,43,16,8,174],uncontinu:6,end_of_data:160,combind:168,"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":31,broken_pip:160,"185428000x":68,dest:[11,166,89],five:[126,3,88],"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":143,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":117,"\u3053\u306e\u3088\u3046\u306bn":64,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":133,rep_gqtp:156,resiz:35,grn_plugin_regist:[35,136],interact:[3,94],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":89,daylight:70,grn_cas_error:2,avoid:[],"0\u4ee5\u4e0a65":40,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":57,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":31,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":23,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":140,iwai:[6,104,116],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":135,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":64,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":72,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":156,merg:[6,30,111],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":89,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":140,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":40,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":176,"function":[],cutter_debug:165,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":74,"\u691c\u7d22\u4f8b4":[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":143,"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b1":[],sigstop:116,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":143,count:[39,100,170,30],grn_table_cursor_delet:57,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":40,otherwis:[35,66,3,139,127,15,107,53,158,169,95,88,118,72,73],problem:[15,168,11,116,6,8,129,23,139],yuki:[23,70],"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":140,bigram:[],"int":[35,15,102,112,4,85,78,14,6,21,105,17,113,56,57,72,76,47,75],updated_at:64,jessi:[70,116],"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":64,againt:100,inc:70,grn_obj_key_norm:105,"init\u76f4\u5f8c\u306e\u72b6\u614b":14,varieti:39,assgin:139,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":125,francisco:68,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":63,"class":[150,101,27,42],"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":117,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":117,quetzal:6,document_version_ful:140,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":89,rule:[70,82,48],dbmss:30,"scr\u3067\u3059":156,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":134,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":89,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":40,lgpl:37,"const":[35,75,56,114,104,14,105,57,72,76,47,113],"localstatedir\u3092\u4f7f\u7528":143,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":105,spec:[6,23,116],"\u524d\u63d0\u6761\u4ef6":[],secsion:126,editrc:23,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":57,"status\u30b3\u30de\u30f3\u30c9":1,"\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570":100,grn_cache_set_max_n_entri:15,upload:140,msyql:77,unmanag:117,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":10,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":105,entries_local_nam:146,"4byte":160,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":140,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":105,zunda:23,"\u547c\u51fa\u5074\u3067\u6e96\u5099":36,"groonga_github_com_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":140,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":89,lock_clear:[],"\u7de8\u96c6\u8ddd\u96e2":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":113,"obj\u3092unlock\u3057\u307e\u3059":72,aki:70,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":156,"\u9759\u7684\u89e3\u6790":[],"\u3092\u8ffd\u52a0":[23,143],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":23,request_cancel:[],total:[],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":89,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":144,column_remov:[],kytea:[6,82,116,174],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":156,word:[152,170,132,168,169,30,100,91,6,157,16,147,70,43,163,164,139],work:[],era:30,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"16gb":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":156,geo_in_rectangl:[],indic:[68,82,3,116,138],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":156,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":40,basebal:[39,71],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":105,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u540d\u524d":[],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":140,mxcl:140,pseudo_column:[],"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":97,recogn:30,"builtin_type_names\u306b\u306f":75,after:[3,86,42,6,93,94,70,174,102,139,11,17,18,111,39,152,150,116,23,122,129,175,8],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":134,lat:156,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":72,grn_is_a_directori:2,averag:70,"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":40,n_queri:[94,74,3,4,8],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":143,confiugr:129,opaqu:[15,160],localnam:146,grn_fals:72,too_large_offset:160,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":31,wgs84geopoint:[39,68,121,11,170,40,67,102,94,23],order:[84,100,3,168,121,30,116,6,67,160],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":64,offici:[23,120,153,140,107],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":112,"3\u30ea\u30ea\u30fc\u30b9":[],grn_default_query_logger_set_path:6,flexibl:[107,147,30],"web\u7ba1\u7406\u753b\u9762":1,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":63,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":140,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:113,them:[153,66,100,68,3,168,77,141,79,111,12,120,52,11,67,17,129,126,174,76,94],thei:[82,4,86,42,43,8,9,138,174,48,52,100,139,77,106,16,147,20,150,157,163,164,168,169,124,27,129],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":54,fragment:32,comment_index:170,"break":[6,23,55],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":64,jinja2:140,deatil:100,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":156,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":134,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],ruby_load:[],serach:16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":165,owner:[8,116],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":143,network:[6,39,160,48],morpholog:[30,174,139],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":85,palal:140,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,standard:[52,40,3,8,94],expnas:163,sequence_dataset:172,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":100,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":125,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":156,regress:[70,116],grn_qlog_path:6,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":156,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":143,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":165,independ:30,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,162],"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":140,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":72,power8:70,grn_proc_set_selector:70,john:[158,133],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":140,grn_obj_with_sect:113,tokenfilterstem:[],latitude_in_degreexlongitude_in_degre:139,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":103,target:[82,3,42,6,93,95,70,174,48,52,100,102,77,11,15,107,18,59,113,150,23,71,72,168,75,27,127,76],provid:[131,3,4,86,87,43,6,8,48,153,68,12,14,107,16,46,157,70,163,164,73,120,121,122,30,25,141,173,177,94],minut:[139,170,67,16,138,164],manner:[100,3],grn_text_valu:76,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":75,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":1,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":[],latter:[175,163],indexbuf:113,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":54,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":115,usernam:[39,93],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":165,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":31,gronnga:157,excut:116,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":115,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":117,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":54,identifi:158,"column\u306f":113,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":64,latenc:156,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":140,liblzo2:[141,12],keyword2:[6,150],keyword1:[6,150],grn_obj_key_with_si:105,optimum:8,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],awar:35,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":146,suffixsearchterm:[168,139],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":115,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,"table\u304c":105,accord:[11,68],old_release_d:140,res_tabl:156,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":134,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":105,address_is_in_us:160,ill:134,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":146,grn_obj_check:72,grn_ptr_init:76,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":97,com:[100,175,3,140,121,11,67,94,96,111,73],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":176,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":140,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":10,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":156,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":47,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":140,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[154,174,94,83],"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":140,uint16:[40,116],snippet3:27,enginen:164,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":156,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":105,inhibit:104,grn_ctx_db:14,gnu:[],properti:[138,12],sourceforg:[140,22],grn_obj_prepend:72,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":117,aio:116,"\u5165\u529b":[5,97,176,99],cond:116,conf:[154,131,8,129],"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":117,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":165,grn_cach:[],perform:[],"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":40,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":21,warri:128,descend:[142,100],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":143,"\u6771\u4eac":[64,134],unsupported_command_vers:160,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":14,hana:39,hang:116,hand:[169,11,30,107,8,71],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,blog_bodi:64,o_binari:6,contact:111,thi:[35,46,82,3,4,168,124,87,41,42,43,6,93,45,95,70,137,138,98,118,48,83,52,100,68,139,77,11,12,14,15,107,53,16,109,55,18,149,59,151,62,113,127,20,154,150,116,66,169,67,94,160,171,88,23,71,72,163,164,73,120,170,75,121,122,30,25,26,27,172,126,141,128,153,174,129,80,81,8],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":140,"_score":[39,100,68,3,113,77,64,142,116,43,6,107,67,16,54,170,23,71,164,139],no_such_devic:160,"table_list\u306f":97,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":134,grn_default_logger_set_path:6,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"\u8ad6\u7406\u7a4d":63,grn_ctx_per_db:[23,14],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u306ebase_version\u306e\u66f4\u65b0":140,scan_build:165,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":97,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":140,night:[106,83],grn_column_name_id_len:113,grn_plugin_command_cr:[35,70],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":56,famili:[82,139],"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":176,tokenbigramsplitsymbolalphadigit:[64,107,16,33,155],grn_obj_renam:72,tasuku:37,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":134,grn_text_len:76,grn_pvector:76,shift_ji:174,grn_inappropriate_i_o_control_oper:2,repositori:[],post:[],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":156,obj:[36,72,75,85,117,50,76,47,110,113],comment2:71,"\u691c\u7d22\u4f8b3":[],"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":166,zxvf:140,"\u3068\u306a\u308a":64,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":115,"float":[],bound:70,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":134,grn_ctx:[],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":14,coverag:165,accordingli:8,wai:[0,170,4,121,77,30,116,80,6,107,8,147,70,71,58,83],"hiroshi\u3055\u3093":143,conbin:[100,147],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":29,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":113,event_dataset:[58,172],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":140,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":64,"true":[1,135,3,83,5,87,62,42,127,41,7,95,9,137,101,118,99,106,100,68,139,77,11,176,52,107,53,144,133,59,39,152,150,65,116,66,169,67,158,88,70,71,162,168,121,170,27,29,175],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":89,"\u4e00\u822c\u7684\u306b\u306f":72,maximum:[60,100,3,139,11,123,88,160,154],inaccur:6,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:6,mte:37,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[74,135,5,65,66,117,7,144,146,148,176,97,32,130,99],fedoraproject:120,score1:63,score2:63,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":156,expresss:147,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":89,test:[153,120,3,140,11,170,12,156,6,141,93,8,128,70,71,165,94],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":143,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,insensit:100,scorer:[],outdat:70,tajima:6,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":14,concept:70,masaharu:[6,104,116],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":115,global:[],"s3ki\u3055\u3093":143,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":115,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,hubeni:68,value_typ:[],"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":156,graph:30,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":5,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":133,takiuchi:116,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":89,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":63,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":133,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":36,octob:70,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":146,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":66,administr:[],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":72,mitani:70,grn_obj_unlink:72,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":140,"4gbyte":60,upper:[23,70,3,59],version:[],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":10,akihabara:67,"groonga\u3084mysql\u306erpm":140,cost:106,admin_html:[23,89],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":110,appear:[100,82,3,168,30,27,2,163,139],"\u7def\u5ea6\u306f":40,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":115,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,gener:[],satisfi:[52,116],minagawa:[70,116],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":156,redmin:70,table_hash_kei:[],trial:30,"\u305d\u306e\u969b":140,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":89,behav:[122,68],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":10,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":162,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":57,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":115,"\u691c\u7d22\u7d50\u679c":100,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":165,output_typ:[31,4],should:[35,6,93,153,100,77,12,52,16,18,59,160,118,163,73,120,168,123,141,128,175,76],mobil:30,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":143,httpd:[],"\u30b0\u30eb\u30fc\u30d7\u5316\u306e\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":100,grn_dat:23,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":72,"648\u4ee5\u4e0a2":40,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],key_typ:[],furigana:142,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":140,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":64,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":165,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":140,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":72,nfkc:175,grn_table_sort_kei:105,grn_illegal_byte_sequ:2,can:[2,3,4,6,82,8,9,68,11,12,14,15,16,17,18,169,23,25,27,30,76,35,84,41,42,43,48,153,174,52,53,55,59,39,62,66,67,70,71,73,75,141,160,0,86,87,89,91,93,94,95,98,100,101,77,163,81,106,107,111,150,116,118,120,121,123,124,126,129,131,133,137,138,139,142,147,149,152,154,157,109,88,104,164,168,170,173,175],clearlock:[],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":23,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":105,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,topic:[],"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":89,occur:[66,102,83,142,126,116,14,6,53,129,70,163],"\u30c6\u30b9\u30c8\u306f":165,multipl:[],mpaa:88,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[94,74,3,4,8],write:[100,170,168,104,89,91,127,18,69,70,71,174,33,139],grn_table_select:[],"\u6a19\u6e96\u5165\u529b":[74,135,65,66,117,144,146,148,32],flanc:68,grn_cursor_ascend:57,"\u5b9f\u969b\u306b\u306f":100,product:8,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":117,southern:6,uint:6,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":63,"rb\u3092\u8ffd\u52a0":143,grn_too_many_open_files_in_system:2,favorit:[],grn_plugin_log:35,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":10,grn_operation_would_block:2,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":117,approv:70,increas:[100,82,77,30,155,68,44,137,129],tagger:30,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":140,still:[79,116,53,95,70,111],ieee:40,dynam:[104,30,3,8],window:[],"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":63,non:[126,100,168,116,6,55,139],loaded_valu:62,recal:[30,147],rake:140,col2:72,col3:72,col1:72,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":105,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":36,half:175,alisa:107,now:[],discuss:[0,22],nor:100,introduct:[],drop:[6,23,116,70],"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":97,"\uff4d\uff59\uff53\uff51\uff4c":[150,42],januari:[122,139],grn_encod:[],domain:[],replai:8,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":140,"takahiro\u3055\u3093\u304c\u5831\u544a":143,significantli:30,year:[138,170,139,88],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":140,shown:3,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":113,space:[35,100,82,3,168,77,30,124,116,43,52,23],acccess:131,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":156,"\u307e\u305f\u901a\u5e38\u306f":40,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":140,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":40,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":14,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":113,grn_db_kei:104,care:[87,168,100,164,111],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":140,couldn:6,arnaud:23,ohzeki:70,"175904000x8464000":68,british:83,grn_ctx_get_match_escalation_threshold:21,directli:170,with_check:[70,124],yourself:128,column_n:169,size:[],silent:73,bookmark:77,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":140,friend:[39,80],column_3:169,column_2:169,column_1:169,kenichi:[23,143],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":10,grn_geo_cursor_next:102,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":40,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":63,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":72,than:[],n_keyword:76,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":134,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5dee\u5206\u3092":156,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":40,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":47,browser:[174,94,111],fork:111,grn_column_trunc:[70,113],allow_column:[100,168],with_weight:[66,70,87,77],"txt\u306e\u5185\u5bb9":140,recover:[75,55],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":72,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":97,"\u3059\u308b\u3068":165,begin:166,"6813819x139":[11,67],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":89,price:11,renam:[3,86,116,6,53,23],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\u3068\u308a\u3068\u3093":[168,139],"6909211x139":67,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":115,host_name_or_ip_address:94,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":117,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"\u3053\u306e\u3068\u304d":134,concurr:138,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":105,pakcag:153,onli:[35,84,131,2,3,86,42,6,82,93,8,95,137,98,118,48,52,100,101,139,127,11,142,12,15,107,55,59,153,150,106,169,67,158,109,88,70,71,163,73,120,175,168,30,27,141,128,111],"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":64,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":63,"\u3050\u308b\u3093\u304c":[168,139],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":143,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":5,overwritten:67,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"128mb":6,allow_pragma:100,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":10,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":162,error_loc:126,"configure\u306e":23,ggdb3:140,sport:39,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":54,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[126,129,100,168,139],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":117,between:[],"import":[15,100,82,168,140,77,30,26,116,14,6,8,174,23,91,163,48,59],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":140,pthread_:116,"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":64,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":75,instroduc:116,nearbi:30,"\u305f\u3068\u3048\u3070":134,tutori:[],grn_encoding_pars:114,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":140,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":140,grn_too_many_link:2,exploit:30,"debian\u7cfb\u3082\u3057\u304f\u306fr":140,invers:70,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[36,72],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":166,emphas:101,rubi:[62,37,77,30,150,42,6,147,137,70,73],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":117,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":89,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":72,"edge\u306fctx\u3092\u542b\u3080":125,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":14,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":14,grn_resource_temporarily_unavail:2,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":140,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,nnede:129,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":66,develop:[],"ueno\u3055\u3093\u304c\u5831\u544a":136,media:70,epoch:[11,170],document:[],do_loc:156,finish:[138,95],"\u5225\u9014deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u6700\u65b0\u7248\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":140,someon:170,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":117,eito:116,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":63,repoforg:[6,120],theater:83,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":105,appveyor:70,"key_type\u306bt":105,"_post":140,touch:129,speed:[23,157,86],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":89,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":40,isssu:116,mmap:[],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":23,"\u30ad\u30fc":89,grn_plugin_proc_get_var:[35,70],real:[30,27,129],swig:37,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":156,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":89,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":100,invalid_argu:160,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":14,cascad:[],output:[],unsplit:[100,63],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":105,index_friend:39,"\u51e6\u7406\u6642\u9593":100,"146249000x":170,refresh:39,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[135,5,65,7,144,176,99],name2:139,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":85,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,"\u306e\u5834\u5408\u306f":115,tomoatsu:[6,143],unicod:175,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":156,grn_bad_file_descriptor:2,comparison:[],central:170,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":89,degre:[11,23,67,139,77],backup:[75,146],processor:[153,141,120,12,30],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[133,140,64,134,156,146],"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":143,your:[],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":166,ngx_http_proxy_modul:8,area:30,aren:[84,100,168,86,27,6,8,129,70,48,59],start:[],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":40,lot:116,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":156,submiss:[142,16,164,43],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":162,ealier:6,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":100,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":156,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":57,grn_not_socket:2,"default":[],"\u6a19\u6e96\u5165":[7,130],"\u3068\u5171\u306b":113,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":64,multibyt:23,data_set_nam:142,grn_obj_unlock:72,value_1:[3,94],value_2:[3,94],valid:[3,11,86,116,43,6,70,23],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":85,grn_obj_add_hook:85,you:[2,3,4,6,82,8,9,68,79,12,14,15,17,18,169,23,26,27,30,76,35,84,11,41,42,43,48,153,174,52,53,55,58,59,39,62,66,67,70,71,73,75,141,80,81,0,83,86,87,89,22,93,94,95,96,98,100,101,77,104,107,109,111,113,150,116,118,120,121,122,123,124,126,127,128,129,131,133,137,139,142,147,149,151,152,154,158,160,88,163,164,168,170,172,173,175],string2:103,string1:103,poor:163,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":57,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":72,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":57,reduc:[131,83,86,116,6,16,30,48],"n_builtin_type_names\u306b\u306f":75,naoya:[70,116],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":117,"\u3092\u683c\u7d0d\u3057\u307e\u3059":113,drilldown_offset:[],month:[39,170,139,138],"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":72,articl:71,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":66,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":156,zlib_error:160,mechan:[6,8,48],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":10,veri:[52,100,168,39,86,150,27,42,6,30,126,164,48,139],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":113,patsuffix:133,atsushi:70,query_flag:[],masafumi:[70,116],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":63,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":117,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":36,groonga_dir:140,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":134,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":156,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":140,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":105,learner:[],"\u95a2\u6570\u306f":[29,103,63,162,61],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":117,naoina:[6,116],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":156,too_many_symbolic_link:160,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":166,snippet1:27,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":57,snippet2:27,ultra:39,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":85,amount:6,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":57,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":165,score_1:122,score_2:122,hoge:[89,103],normallexicon:175,"1024r":140,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":140,"\u30c8\u30e2\u3061\u3083\u3093":39,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":72,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":140,bash:174,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":134,fulltext:[153,84,100,82,168,107,86,150,12,25,42,27,141,139,71,175,120,131,59],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:23,score_n:122,cutter_dir:140,histori:23,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":100,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":75,grn_db_int:72,phrase:[],"0mq":116,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":110,anoth:[6,163,100,76,30],spreadsheet:163,snippet:[6,37,27,116],grn_expr_syntax_escap:76,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":140,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":113,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":140,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":89,unlink:76,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":31,grn_obj_compress_lzo:113,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":133,grn_table_group:105,egg:71,narwhal:23,logrot:[6,70],"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":140,help:[],grn_proc_funct:35,soon:[84,27,48],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":166,paramet:[],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":143,systemd:6,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":140,"\u5024\u306e\u7bc4\u56f2\u306f1":54,shimada:6,comments_cont:71,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":64,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":63,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,range_error:160,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":57,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":105,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":100,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":140,fulli:[6,8],yito:[6,116],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":40,heavi:100,grn_column_nam:113,"\u30b9\u30ec\u30c3\u30c9\u6570":156,"\u30d5\u30a1\u30a4\u30eb":140,todo:[],event:48,"\u3080\u308b\u3093\u304c":[168,139],"http\u30b5\u30fc\u30d0\u30fc":[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":140,proxy_pass:8,publish:[70,140],"\u691c\u7d22\u5bfe\u8c61\u306e":64,trusti:[70,12,140],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":66,"shutdown\u306f":130,textil:140,"1\u30ea\u30ea\u30fc\u30b9":[],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":10,pub:[120,140],asc:140,reason:[100,121,154,131,6,55,164,48,59],base:[131,82,42,43,6,94,95,174,153,102,139,12,16,58,111,150,116,70,164,120,168,122,30,27,141,170,177,8],grn_ctx_fin:[6,14],put:[70,168,129,111],"groonga\u53ca\u3073groonga":156,rect:[6,68,162],basi:3,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":156,assign:[],grn_obj_get_valu:[23,72],"\u4fee\u6b63":[],"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":10,placehold:116,miss:[6,23,163,116,70],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":105,conditional_probability_threshold:[23,142],station:[84,67,170],zeromq:174,schema:[100,68,168,107,150,27,42,106,16,158,172,169,88,129,71,101,139],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":143,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":134,"max\u3068common":57,grep:[141,120,12,153],jqueri:70,"\u4efb\u610f\u306edb\u540d":156,str:76,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":72,"windows\u5411\u3051":140,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"null":[],"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":105,option:[],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":117,lib:[131,143,116,8,55,9],"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":140,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,elapsed_tim:[126,138],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":162,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":165,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":10,grn_snip:[6,70],tokenbigramsplitsymbol:[64,155,33],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":165,grn_proc_get_typ:70,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":105,clear:[113,140,6,127,70,23,72],grn_too_many_open_fil:2,clean:[165,140],newvalu:113,weight_in_weight_vector:77,usual:[11,71,58,14],grn_ctx_t:2,pretti:70,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":140,wanab:116,yml:73,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":10,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":143,grn_connection_refus:2,max_siz:57,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":165,"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":156,grn_get_default_encod:114,grn_obj_compress_zlib:113,similar_search:[6,142],"\u68ee\u7530":39,"\u82b1\u5b50":39,grn_hook_get:85,doc_bodi:83,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":140,grn_obj_is_lock:72,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":64,resource_deadlock_avoid:160,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":66,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":156,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":165,isob:116,numer:[],no_locks_avail:160,both:[3,86,93,132,48,153,100,139,77,12,106,66,67,160,164,120,168,30,27,126,141,128,170],grn_range_error:2,geopoint:[],"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[5,89],condition2:139,condition1:139,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":143,jeff:133,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":105,"000x":111,too_small_limit:160,header:[],"\u623b\u308a\u5024\u3067\u3042\u308b":112,linux:[],tokenbigramignoreblanksplitsymbol:[64,155,33],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":156,stamp:[138,16,164,43],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":63,"null\u306a\u3089temporari":75,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":113,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":99,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":99,grn_table_sort_desc:105,geo_in_circl:[],"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,162],grn_table_cursor_get_kei:57,coordin:[11,68],unpatch:37,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":162,"while":[106,82,30,116,6,127,53],"\u691c\u7d22":[],"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":89,grn_zlib_error:2,grn_column_name_value_len:113,loop:[6,70],pack:[],"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":156,readi:[100,139,6,18,174,168],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":108,fedora:[],belong:[132,121],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":31,grand:170,octal:139,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":72,src_kei:105,imagin:[100,121],optim:70,grn_set_default_match_escalation_threshold:21,temporari:[],user:[],"takuto\u3055\u3093\u304c\u5831\u544a":143,bob:[100,168,170,107,53,8,88,118,48],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":89,input_output_error:160,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":166,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":105,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":105,"koi8r\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":89,nise_nab:70,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":64,recurs:[100,140,127,8,96,163],"56880000x":68,nginx:[],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":105,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":115,address_is_not_avail:160,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":117,grn_table_sort:105,signal:70,resolv:[6,23,32,77],elaps:[139,122,126,138,23,4],"32bit":116,popular:[100,77],update_buffer_s:78,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":105,creation:[23,3,116],grn_obj_db:75,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":32,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":156,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[5,7],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":31,entry_bodi:66,run:[],stem:[70,152,12,141],step:[3,11,43,93,174,111],"\u3082\u3057test":156,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u305d\u3053\u3067":64,grn_no_memory_avail:2,idf:70,"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":112,block:[11,8,116,59],libzmq:[141,12],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[63,76],within:[170,67,16,164],ensur:16,grn_obj_key_uint:56,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":140,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":64,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":156,askmonti:70,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":105,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":134,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":23,pangolin:[6,12,140],tokenbigramignoreblanksplitalpha:33,hereaft:30,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":140,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":105,info:[5,7,8],utc:[126,139],"0xc7":160,utf:[37,4,122,116,175,6,174,139],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":10,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":156,munin:[],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":63,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":156,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":156,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":140,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":114,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":105,doesn:[35,84,82,83,86,87,6,8,95,174,48,100,139,106,53,16,17,59,152,116,88,70,163,164,168,27,126,129,175,177],repres:[39,83,11,89,147,76,139],"homebrew\u306e\u66f4\u65b0":[],before_instal:73,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":140,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":72,pronounc:147,titl:[39,100,3,168,121,103,11,116,127,94,169,140,71,139],grn_obj_fin:76,accross:6,grn_ctx_close:[23,70,14],orangain:116,sigcont:116,ooo:86,draw:39,"groonga\u5358\u4f53\u3067test":156,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":143,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":72,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":115,eval:137,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":140,kawaji:6,hash_index:170,"\u51fa\u529b\u3092\u884c\u3046\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":10,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[165,140],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"146741340x":170,ruby_script:137,friendli:6,nippon:164,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":156,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":134,"\u5185\u90e8\u7684\u306a\u5909\u66f4":140,button:[6,116,111],definion:139,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":89,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":133,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":57,download:[153,120,140,20,12,141,93,174,81],grn_obj_decr:72,onigmo:70,experiment:[15,62,75,150,124,27,42,116,6,95,55,70,137,23,104],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":140,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":75,becom:[11,68,37,30],accessor:105,convert:[2,11,86,170,70,175],convers:[23,8],blogroonga:[],"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":156,chang:[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":54,danger:[127,53,75,48,113],grn_plugin_mutex_clos:35,"boolean":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":99,query_expand:[],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,query_expans:[],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[135,65],remaind:139,benchmark:[],about:[],"23t02":139,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":140,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":143,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":105,"shibuya\u3055\u3093":143,retriev:[30,100],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":140,min_siz:57,meet:[70,67,170],mitsuhiro:143,control:[],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":162,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":140,sudo:[153,120,140,20,154,12,131,6,141,94,18,129,174,165,81],directory_not_empti:160,grn_domain_error:2,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":66,tokendelimit:[155,82,33,43],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":143,narg:76,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":113,"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":140,int16:[40,143,116],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":105,decrib:8,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":134,rakutan:71,otehr:59,normalizernfkc51:[],table_token:[],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[72,113],syntax_error:160,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":63,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":72,sysconfig:131,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":143,"\u3053\u306e\u5834\u5408":57,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[105,72,113],grn_plugin_proc_alloc:35,read_only_file_system:160,grn_ctx_set_command_vers:14,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":66,handl:[2,11,86,116,129,8,154,70],auto:[6,70,142],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":32,succeeded_or_not:[127,53,158,118],"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":140,parameter1:8,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":140,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":156,column_information1:87,column_information2:87,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":64,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":1,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":74,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":156,chunk:[154,129,117],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":165,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":156,special:[111,100,2,3,168,150,27,42,116,126,82,94,174,76,17],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":156,"\u51fa\u529b\u5bfe\u8c61\u3068\u306a\u308b\u6700\u521d\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u756a\u53f7\u30920\u30d9\u30fc\u30b9\u3067\u6307\u5b9a\u3057\u307e\u3059":100,suitabl:[106,86,70,59],grn_geo_estimate_in_rectangl:[23,102],new_vers:140,"quit\u306f":148,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[57,113],manipul:147,grn_match_escal:[],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":156,latitude_in_msecxlongitude_in_msec:139,keep:[60,106,77,14,15,23],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":143,geometri:23,largetext:86,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":165,grn_cursor_by_id:57,"scorer\u306f":100,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":144,buf_siz:[105,72,113],"groonga\u30b3\u30de\u30f3\u30c9\u306b":143,mkdir:146,attach:[152,175,111],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":140,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[64,31,40,156],"final":[35,100,8,77],fuzzi:59,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":140,exactli:154,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"20km":170,"groonga\u306f":165,sequence_queri:172,extrct:139,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":140,concatin:[6,122,116],msec:[23,17],tabl:[],need:[82,3,4,86,42,43,6,93,8,95,9,70,98,118,48,83,100,174,139,77,14,15,16,18,59,20,154,67,160,23,71,163,164,73,120,175,168,122,30,124,27,126,129,111,76],border:[6,82,88],"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,grn_obj_search:50,"0x08":160,"0x04":160,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":143,"0x01":160,"0x02":160,"\u30ed\u30b0\u3092":140,ifexist:52,singl:[82,3,77,124,116,52,70],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":100,"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":162,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":140,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":72,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":64,kazuhiro:116,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":31,url:[23,146,48,70],uri:8,grn_table_upd:105,fontain:23,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":105,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":57,grn_index_cursor:[],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":166,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":112,ssssss:138,object_corrupt:160,"146867000x":170,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":140,launchpad:[70,12],"\u3053\u308c\u306f":64,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[97,89],"\u3053\u308c\u3067":140,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":64,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":10,"drilldown\u6761\u4ef6\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u6bce\u306b\u3068\u308a\u307e\u3068\u3081\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":100,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":72,enabl:[],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":140,"masahiro\u3055\u3093":143,gram:[30,82,3,139],"output_columns\u304b\u3089_value\u3092\u524a\u9664":143,contain:[],kawada:70,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":64,orphan:116,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":63,latin:89,statu:[],correctli:[6,3],wibowo:116,tend:71,state:[6,68,160,158],grn_retry_max:2,all_record:6,kei:[],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":117,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":112,eclips:111,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":64,admin:[6,23,143,116,70],jersei:170,polici:116,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"po\u306e\u5b9f\u884c":[],"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":115,cutter_source_path:140,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u30b9\u30ad\u30fc\u30de\u3068\u7279\u5b9a\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30c7\u30fc\u30bf\u306e\u307f\u51fa\u529b":146,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":72,"\u5185\u8a33\u306f":64,"\u304c\u3042\u308a\u307e\u3059":[31,140],quit:[],addition:67,quiz:39,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,treat:[84,100,82,139,116,6,16,70,164],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[135,5,65,7,144,176,99],downcas:175,"\u65e5\u672c":164,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":100,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":97,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":105,delimit:[11,30,82,116,43],drildown:[],"12gb":154,glossari:73,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":23,longitude_in_msec:139,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":47,demo:39,redcloth:140,welcom:[100,168,79,170,22,139,80,111],grn_table_cursor_t:57,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":64,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":40,speaker:22,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":143,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":144,crch:82,entry_selector:144,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":64,nsubrecs_column:113,http:[],"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":64,effect:[6,52,170],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,rpmforg:120,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],grn_post:[102,112],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":148,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":64,undefin:11,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":72,lcov:165,distanc:[84,68,139,30,6,67],koi8r:[6,174],remove_blank:124,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":72,"log_reopen\u306f":176,bc009774:140,patricia:[],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":140,grn_ctx_get_command_vers:14,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":40,"\u3067\u533a\u5207\u308a\u307e\u3059":89,logger:6,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":50,int32:[3,40,43,6,118,100,68,139,77,142,107,53,16,39,64,116,67,88,70,71,164,168,121,170],ryoji:70,pikonyan:39,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":54,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":156,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":117,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":156,dat_kei:86,tomita:143,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":166,grn_file_corrupt:2,necessari:[23,3],"\u4e0b\u8a18":57,page:[],"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":143,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":156,use_offline_index:104,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[166,89],"436218z":139,out_http:156,home:[174,140],tatsuya:6,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":66,index_column:70,nihon:164,estim:[154,102],grn_obj_key_float:56,grn_obj_remov:[23,72],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":134,"10t13":[16,164,43],win64:93,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":1,usag:[],grn_geo:[],offset:[],"blog_body\u7d22\u5f15":64,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":156,due:[30,27],empti:[100,168,87,116,70,23],f10399c0:140,groonga_query_log_path:[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":136,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":89,museum:170,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":156,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":89,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":63,suzuki:6,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":134,gronga:[157,163],overflow:[11,23,116,70],ear:82,"string\u306b":63,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":63,displai:6,limit:[],"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":117,"\u611f\u8b1d":[],"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":134,evalu:[137,169,116,139],"\u521d\u671f\u5316\u3055\u308c\u305f":14,"aramaki\u3055\u3093\u304c\u5831\u544a":143,eric:88,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":72,blog1:71,blog2:71,new_valu:100,futur:[62,68,77,124,116,160,137,23,48],halfwidth:175,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":57,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,sphinx:[79,70,111,13,18],katagiri:116,table_remov:[],"\u3068\u540c\u3058\u610f\u5473":89,max_concurr:166,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":167,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":115,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],whose:[3,139],"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3057\u305f\u5404\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u305f\u306e\u3061\u306b":100,accur:[30,27],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":140,"0x20":168,escaped_queri:76,kentaro:116,swap:129,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,"void":[35,75,114,105,21,108,17,57,72,104],voic:175,is_anim:11,affect:[6,70,116],"\u306f\u7121\u52b9\u3067\u3042\u308a":57,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":143,demerit:86,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":89,correct:[],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":162,vector:[],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"10m":8,batch:6,"10z":139,"\u30b0\u30eb\u30fc\u30d7\u5316":54,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":156,even:[66,120,139,153,30,12,116,6,141,93,128,70,71,164],"\u3064\u307e\u308atest":140,neg:[35,100,2,14,6,17,47],spokesman:80,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"\u3050\u308b\u3093\u304c\u592a\u90ce":39,"new":[],net:[39,3,140,121,11,22,67,94],maverick:23,metadata:[6,137,62,170],"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":165,abov:[3,83,43,6,93,8,95,174,100,101,59,107,16,111,169,67,88,71,163,164,73,121,122,170,175],never:[142,174],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":156,met:169,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":89,grn_log_level:35,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":140,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":72,jame:133,sji:[174,37,89],serch:[142,16],yamada:70,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":100,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":166,grn_expr_exec:[76,14],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":156,"\u826f\u3044\u4f8b":115,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":40,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":64,concret:[39,71,121],overhead:[70,131],typo:[116,6,16,70,23,163,164],recommend:[153,100,3,168,131,12,120,126,141,93,94,128,129,70,48,139],"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":64,type:[],readm:[116,140],"\u554f\u984c\u306fgroonga":156,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":72,warp:70,warn:[100,5,116,6,7,8,138,70,104],"\u4ee5\u4e0b":156,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":64,setup:[111,116,73],"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":162,akio:[6,23,116],root:[31,89,8,116,94],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":89,give:[107,30],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":63,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":21,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:166,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],unsign:[],recov:[],log_level:[],quot:[82,3,168,124,116,52],updag:6,config:[1,89,6,93,23,174],grn_arg_list_too_long:2,sitedomain:[94,121],geoloc:[],"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":63,permission_deni:160,third:[11,87,100,139],grn_text_printf:70,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":64,romaji:164,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":115,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":140,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":75,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":65,washida:116,copyright:70,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":162,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":103,better:[70,71,100,30],persist:[],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":57,html_untag:[],"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":143,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":162,leaner:[70,58],"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":140,grn_exec_format_error:2,cache_previ:15,side:[6,30],mean:[35,84,2,3,87,6,82,8,95,138,174,100,98,139,77,11,142,17,154,116,169,67,102,70,163,164,168,121,127,129,175,76],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":14,enorm:39,blog_comment_index:169,grn_obj_compar:72,extract:[],"hiroshi\u3055\u3093\u304c\u5831\u544a":143,content:[35,87,8,23,48,100,101,139,106,107,39,152,116,169,160,70,71,168,170,27,126,129],rewrit:37,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":57,ncpu:81,lzo_error:160,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":143,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":14,iso:139,isn:[87,6,8,137,174,100,142,14,52,16,59,62,116,157,160,70,163,164,120,168,27,126,109],wgs84geoppoint:102,cpuinfo:[141,120,12,153],grn_snip_clos:70,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":64,hook:73,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":156,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":143,sometim:70,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":134,grn_cache_get_max_n_entri:15,iptabl:[94,48],"\u5358\u4f4d":[56,162],direct:[],"80ghz":156,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":115,mkostemp:70,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,fullfil:131,keyword:[],older:170,grn_expr_get_var_by_offset:76,modern:170,mind:60,mine:30,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":146,regular:[11,122,3,8],tradit:[70,30],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":156,don:[3,4,87,43,8,23,98,48,15,100,174,139,77,14,52,111,160,70,163,175,168,127,128,59,76,94],doc:[83,140,79,18,116,6,8,23,70,104,111],"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":64,doe:[100,3,168,77,11,30,116,6,169,8,55,142,131,139],logyyyymmddhhmmss:122,grn_not_enough_spac:2,dot:6,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":40,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":115,keybuf:105,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,syntax:[],"\u65e5\u672c\u8a9e":164,yoji:23,acquir:17,explain:[11,3],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":89,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":117,folder:93,custom:[],cosmo0920:[70,116],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":57,stop:[],grn_plugin_fin:35,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":140,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":10,attr_setpshar:116,bar:59,reload:163,bad:[70,116,30],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":36,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":65,veres:48,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":156,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":40,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":156,old_releas:140,"\u5b9f\u884c\u3067\u304d\u307e\u3059":140,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":134,subject:116,brazil:121,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":40,grn_function_not_impl:2,simplest:[123,174,30],illegal_byte_sequ:160,attribut:[82,101,44,124,155],nfkc51lexicon:175,threasd:89,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":89,"100x150":29,"\u534a\u5f84":162,str_ptr:35,"takuto\u3055\u3093":143,replied_to:170,key_length:160,"\u30af\u30a8\u30ea\u306e":64,string_liter:70,"\u6539\u884c\u6587\u5b57\u306f":89,against:[],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":165,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:6,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":89,"twitter\u7de8":[],grn_op_cal:63,grn_expr_var:[35,47],g721d5c7:74,grn_obj_clos:[70,63,112,72,14],three:[100,68,3,121,77,11,150,116,126,53,16,147,71,164],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":140,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":10,"1285858800\u306f2010":64,interest:[80,3],basic:[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":140,suppress:[6,70,104],"2\u30ea\u30ea\u30fc\u30b9":[],multithread:95,servic:[131,30,116,6,16,129,70,73],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":75,calcul:[84,68,122,170,116,6,67,137,70],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":140,seven:3,datail:100,theatr:83,"key\u3092\u8fd4\u3057\u307e\u3059":72,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":89,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":57,"\u691c\u7d22\u306e\u6319\u52d5":[],receiv:[122,30,160,14,8,58,111],make:[],column_list_head:87,"_kei":[3,83,87,41,43,6,8,101,118,48,133,100,68,139,77,11,142,52,53,16,54,146,39,152,113,116,169,67,158,88,70,71,72,164,168,121,170,126,129,175,94],zlib1g:[141,12],unicorn:12,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":63,"8byte":160,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":113,inherit:116,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":66,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":89,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":166,left:[],protocol:[],just:[],sigusr1:23,"\u6771\u4eac\u90fd\u6c11":[64,134],human:[87,59],"\u73fe\u5728\u306f":[166,156],yamamoto:70,yet:[84,62,139,30,100,116,137,23,48],languag:[],defrag:[],macport:[],"worker\u306f":125,save:[122,154,71,140,70],applic:[151,30,27,8,70,23,163,48],"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":134,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":140,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":140,nomral:[100,168],daemon:[],vdw:[67,3,121],manual:[],grn_obj_expir:72,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":99,mrubi:[137,70,62,116],unnecessari:129,cxxflag:[20,140],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,intern:[11,27,14,15,116,70,98,104],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":97,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":134,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":134,tracker:[],"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":63,localhost:[166,4,140,122,156,89,94,95,48,8],range_filt:[],new_release_d:140,compress:[],grn_cursor_gt:57,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":165,promot:116,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":10,postgresql:[30,27],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":140,"\u30c7\u30d5\u30a9\u30eb\u30c8":63,grn_between_too_many_index_match_ratio:70,grn_ctx_recv:70,commit:[70,111],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[166,89],meerkat:23,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":21,sphr:[68,162],down:[],"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":143,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":156,homepag:156,editor:111,fraction:[11,30,170],storategi:100,analysi:[30,174,139],"143660000x419009000":68,infom:14,tokenbigramignoreblanksplitsymbolalphadigit:[64,155],form:[100,3,168,122,170,116,8,147,23,175,94],forc:6,some:[82,22,6,95,138,174,153,77,107,17,149,111,60,152,116,70,168,123,172,126,173,30,129,59,76],"4e86e700":154,"txt\u306b\u307e\u3068\u3081\u307e\u3059":140,grroonga:157,"\u5426\u5b9a":63,auth_basic_user_fil:[8,48],"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":146,unrel:23,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":10,classif:121,featur:[],kwic:27,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":61,grn_obj:[],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":47,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":54,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":14,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":89,tokenbigramignoreblank:[64,155,33],excel:163,"defrag\u306f":32,matur:[131,173],escaped_charact:76,faction:170,fsf:6,pseudo:[52,100,168,121,116,6,67,70,139],"scr\u306e\u4e2d\u8eab\u304c":156,vmstat:154,ignor:[100,82,75,86,124,116,6,158,95,70,23,163,168],reply_to:71,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":54,n_entri:109,"152489000x":170,skip:[70,3,116],segv:116,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":32,depend:[],"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":165,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":66,marku:6,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":57,must:[35,3,87,43,94,95,132,102,174,48,15,100,101,139,11,142,52,53,55,58,59,113,154,169,158,160,70,164,168,75,122,127,129,76],query_str:[],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":23,string:[],"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":40,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":140,grn_obj_set_fin:47,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":140,form_1:3,iter:139,dic:153,item:[131,142,100,43,16,146,164,48,59],round:23,dir:156,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":105,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":140,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":143,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":156,shinoda:70,"\u30ed\u30b0\u30ec\u30d9\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":61,deriv:[131,58],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":40,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":134,wait:[35,17],box:100,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":54,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":10,grn_true:72,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":146,raccoon:39,"\u306e\u30ab\u30e9\u30e0":[32,99],grn_content_json:98,modul:[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":117,result_too_larg:160,univers:12,perl:8,nokubi:70,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":66,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":105,grn_proc_typ:47,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[23,143],too_many_link:160,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":143,apper:100,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":63,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":65,grn_plugin_proc_get_var_by_offset:[35,70],commands_column_list:87,tokyo:[67,68],"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":133,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":140,uniqu:[122,95],"\u30d2\u30c3\u30c8\u6570":100,ull:82,"256kb":154,predict:[86,59],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":47,"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":115,libmemcach:165,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":134,normalizs:59,map:[138,23,164,129,154],groo:[122,100],max:[],mac:[],clang:[6,70,116,165],assigend:168,mai:[151,86,87,6,8,95,23,137,174,48,142,15,53,55,59,60,39,62,113,116,70,71,163,75,30,124,126,127,129],underscor:59,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":40,table_dat_kei:[],grn_expr_get_keyword:76,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":134,fluent:96,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":166,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":31,talk:[116,22,140],"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":64,pointer:35,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":63,entiti:30,group:[],monitor:[141,120,12,116,153],"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,"\u5b9f\u9a13\u7684":[],main:141,resource_temporarily_unavail:160,initi:[6,23,35,122,14],lunch:30,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":1,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":140,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":140,"\u5fa9\u53f7\u3057\u305f\u9375":140,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":72,massachusett:170,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":140,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":156,"\u3053\u306e\u7d50\u679c\u306f":156,gzip_typ:48,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":143,continu:[82,89,116,6,16,70,73],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":140,unlock:35,nroonga:[107,71,73],"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":165,"3rd":[100,116],compress_lzo:66,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":10,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":156,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":140,uint32:[3,83,40,6,94,97,118,133,100,139,77,106,53,87,59,39,152,64,116,169,67,158,88,70,71,168,121,126,129,175],"\u624b\u7d9a\u304d":47,earlier:[23,118,175],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":176,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":56,debootstrap:140,org:[3,93,8,174,153,101,140,77,11,12,146,111,39,20,156,67,94,70,120,121,141,81],prefix_search:[23,142],"128487316x502920929":[39,67],grn_table_renam:105,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":14,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":115,"marverick\u306b\u5909\u66f4":143,frequenc:[70,142,91],"grn_op_adjust\u306f":63,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":97,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":31,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":134,first:[35,131,3,83,87,42,93,8,95,23,174,48,100,139,11,14,111,39,150,116,70,71,163,168,122,170,27,126,59],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":140,key_norm:[106,100,175,3,83,64,170,168,27,6,107,129,71,139,59],"long":[55,78,116,95,21,59],crit:[5,7],grn_geo_cursor_open_in_rectangl:102,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":64,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":54,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":23,memo:[107,152],key_siz:105,broadcast:170,"value\u304c\u5c5e\u3059\u308b\u578b":97,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":105,proxy_cache_valid:8,patprefix:133,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":40,longitudexlatitud:116,yoshioka:6,libgroonga:[151,3],grn_db_touch:[143,75],were:[68,3],zsh:174,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:174,grn_invalid_format:2,properli:[6,94,168],katakana:[142,175,164],squar:68,timeuot:17,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":156,"256gbyte":60,normal:[],beta:37,pair:[11,43,157,16,163,164],grn_content_tsv:98,synonym:[100,163,83],"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[32,99],"\u539f\u56e0":[],shop:[106,134],lexicon:[],newer:70,"\u3092\u516c\u958b":143,show:[84,1,2,3,4,42,6,94,23,101,98,100,68,139,11,52,107,39,150,116,169,67,158,160,88,70,168,121,30,124,27,126,170,174],"\u62c5\u5f53\u8005":140,threshold:[],"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":63,black:[84,175],"\u30c6\u30fc\u30d6\u30eb\u540d":[97,32,99],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":64,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":31,tamano:70,variou:[],get:[],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":143,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":156,"column_create\u306f":66,tokyogeopoint:[68,40,29,67,102,23,162],median:70,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[],wiki:8,kernel:[6,129],"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":64,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":23,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":40,sear:164,enci:156,masahiro:[70,143,116],japan:[67,158,94,121],infinit:[6,23,70,59],enumer:3,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":115,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":105,label:116,enough:[30,154,71,70],across:68,parent:8,unknown_error:160,column_vector:[39,100,77,11,170,87,116,66,169,158,70],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":176,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[31,89],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u7b56\u65b9\u6cd51":[],recrod:100,"\u3088\u3063\u3066":40,"\u5206\u5272":134,grn_expr_clos:76,nogpgcheck:6,"\u3060\u3068\u539f\u56e0\u306f":115,grn_cache_open:15,among:[],grn_obj_delete_hook:85,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":156,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":156,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":134,inappropriate_i_o_control_oper:160,cancel:[123,95,70],grn_proc:[],"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":140,gnupg2:140,mark:[152,170,131,70,175,104,59],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":10,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":78,grn_too_small_offset:2,grn_init:[6,138],senboku:116,i18n:[],those:[100,68,3,4,157,20,86,147,168,27,43,11,175,30,139,174,104,48,111],sound:[16,175],hdd:156,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"8\u306b\u5bfe\u5fdc":143,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":89,advantag:[30,131,27],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":156,brasillia:68,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":156,"1\u3068command":10,pat:[6,104],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],same:[3,8,95,9,48,100,139,77,11,14,52,107,16,17,116,67,71,168,123,126,175,76],speech:30,pai:100,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":134,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":140,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,grn_command_version_st:108,grn_table_dat_kei:105,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":40,montywi:104,grn_address_is_not_avail:2,macro:[23,116,70],markup:79,"drilldown\u7d50\u679c":100,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":14,argument2:139,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":140,argument1:139,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":72,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":166,document_vers:140,execut:[],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":89,monei:39,mcdonald:84,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":112,"root\u306b\u5909\u66f4":143,enable_tokenized_delimit:82,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":72,"\u697d\u3057":[64,134],value_column:113,grn_table_delete_by_id:105,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":105,evaluated_valu:137,either:[0,100,139,116,88,71,168],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f7f\u7528\u3059\u308b\u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u65b9\u5f0f\u3092\u6307\u5b9a\u3057\u307e\u3059":89,rinse_1:140,quantal:6,operation_not_support:160,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":140,ascend:[84,67,3,100,121],testdb:[156,58],"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":105,confirm:[],table_no_kei:[],valuebuf:36,str_length:35,"\u30cb\u30c3\u30dd\u30f3":164,event_typ:172,broken:[75,116,6,127,55,23,113],regexp:70,"128452975x503157902":[11,39,67,94],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":89,"_set_valu":104,"x\u306e\u304a\u77e5\u3089\u305b":[],"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":143,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":140,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":140,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":40,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":57,strip:101,"tomita\u3055\u3093\u304c\u5831\u544a":143,yyi:111,drilldown:[],grn_ctx_batch_mod:70,complianc:8,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":156,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":31,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":72,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":140,arugment1:139,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":156,possibl:23,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":140,embed:[30,163,8,42,27],"1_all":140,grn_operation_not_permit:2,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,file:[],logo:6,fill:[122,139],again:[106,70,8,17],field:87,location_in_groonga:126,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":156,architectur:[70,140,30],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":66,sequenc:[168,123,116,43,142,16,160,138,23,164,139],goo:[168,139],"6gib":129,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":[],"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":105,escal:[],unload:6,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":40,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":74,"x\u3067\u306frealloc":143,descript:[44,160,168,122,170,87,134,124,116,6,82,8,155,70,139,164,59],escap:[],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":143,sergei:70,forget:77,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[104,168],suno:70,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],file_too_larg:160,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":85,libmsgpack:[141,12],"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":100,objnam:[32,99],grn_op_and:[50,63],grn_op_or:[50,63],fals:[1,168,140,127,11,40,116,66,107,53,158,169,95,88,70,118,139,150,133],"\u3053\u3053\u3067\u3082":64,offlin:[],util:8,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":143,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":10,sub_filt:[],hottolink:37,grn_hook_set:85,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":117,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":89,puropos:82,"\u305d\u308c\u3092\u65e7ji":57,zero:[152,132,77,11,100,160,175,163],further:11,"\u3053\u3053\u3067\u306f":64,aba:[67,3,121],"drilldown_offset\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":100,grn_info_typ:36,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":115,fffe:82,tokenbigramignoreblanksplitalphadigit:33,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":117,"public":[70,140],"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":89,grn_table_pat_kei:105,valu:[],grn_table_setoper:105,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":176,narrow:[],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u95a2\u4fc2\u5f0f\u306f":63,commands_table_cr:97,transit:131,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":57,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":57,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":162,establish:[3,94],distinct:[60,122],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":140,regist:[],libev:[174,141,12,104],"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":40,"check\u30b3\u30de\u30f3\u30c9\u306f":117,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":156,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":66,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":57,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":165,jsonp:122,desin:131,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":143,none:[100,82,124,160,89,41,172,127,8,71,174,59],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":166,hour:[138,170,17,139],dev:[140,12,116,22,6,141,70,23,165],grn_set_default_encod:114,"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":1,remain:[138,116],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":143,deb:[140,12,116,6,141,70,23],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":64,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":140,share:[15,75,39,30,89,116,22,6,8,113,23,71,174,17],shard:86,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":57,minimum:[35,153,120,139,12,141],"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],strlen:35,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":113,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":134,secur:[],"\u691c\u7d22\u7d50\u679c1":100,"13\u7528rpm\u306e\u63d0\u4f9b":143,needl:63,grn_command_vers:[],number2:139,number1:139,mariadb:[70,116],associ:[35,39,100,3,11,52,158,23],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":140,kuriyama:70,"\u691c\u7d22\u7d50\u679cn":100,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":148,hypertext:[],no_buff:160,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":64,through:[30,8],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":72,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":54,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":105,good:[152,82,168,30,100,106,41,139,71,174,111],timestamp:170,"tokenmecab\u3067\u306f":64,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":140,grn_get_lock_timeout:17,grn_obj_vector:[72,76],"_valu":[70,54,113,116],rank:[70,3],"db\u3068\u306a\u308a\u307e\u3059":75,comamnd:48,micro:[],name_2:[3,94],name_1:[3,94],hard:129,idea:100,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,connect:[6,173,3,94],rlimit_nofil:[138,116],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":140,flower:11,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":140,"release\u306e\u5b9f\u884c":[],print:[70,94],name_s:[35,113,56,14,105,72,76,47],hemispher:6,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":63,entries_content_index:[129,100,168,139],database_path:[],"975mbyte":156,omit:[100,82,3,4,86,126,127,68,9,23,164],"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":140,grntest:[6,23,143,140,96],"tokenmecab\u306e\u5834\u5408":64,tritonn:[100,168,139],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":105,suggest_prepar:[142,16,164,43],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":115,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":89,done:[15,70,100,8,17],stack_over_flow:160,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":40,stabl:[70,10,142],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[105,72],"indexbuf\u306e\u30b5\u30a4\u30ba":113,"com\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":140,"5th":100,least:[168,154,6,169,109,129],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":146,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":64,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":64,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:23,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":63,pari:68,selector:6,part:[3,11,30,27,126,170,174],pars:[70,114,76,147],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":105,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth\u304c\u5fc5\u8981\u3067\u3059":140,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":31,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":115,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":156,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":134,"\u30c6\u30fc\u30d6\u30eb":99,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":63,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":64,consol:8,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":65,built:[],build:[],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":140,distribut:[153,120,140,12,6,141,93,128,70,174],"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],previou:[131,121,11,116,6,70,71],chart:23,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":61,most:[100,102,3,77,11,26,14,70,48],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":72,myisam:30,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],groonga_log_level:[],grn_plugin_mutex:35,cas_error:160,roughli:11,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":134,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":165,carefulli:77,"bom\u4ed8\u304dutf":143,find:[152,175,3,30,150,105,27,42,43,142,53,16,93,18,80,174,164,111],grn_no_such_process:2,grn_index_cursor_open:112,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":75,grn_logger:6,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":31,unus:70,grn_in_values_too_many_index_match_ratio:70,grn_obj_defrag:72,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":166,commands_column_renam:53,restart:[],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":156,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":64,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":156,map_hugetlb:23,common:[100,168,86,12,6,105,147,57,23,71,139,59],table_cr:[],grn_api:76,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":105,grn_interrupted_function_cal:[2,95],"status\u30b3\u30de\u30f3\u30c9\u306f":74,lion:6,"\u521d\u671f\u5024\u306f10\u3067\u3059":166,reserv:66,blog_cont:169,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":156,"\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":100,gemfil:6,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":156,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":165,network_is_down:160,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":64,is_stop_word:[70,152,41],point:[],hideki:[70,116],shutdown:[],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":64,weight_in_match_column:77,indexblog2:71,secret:140,indexblog1:71,"\u4ee5\u4e0b\u3067":64,gat:[67,3,121],understand:[100,3],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":10,bill:[64,134],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":134,opear:139,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":117,anonym:86,gb87d9f8:4,everyon:94,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":156,"\u6c11":134,itself:[82,168,77,116,70,163],cento:[],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3059\u308b\u6642\u306e\u307f\u6709\u52b9\u3067\u3059":89,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":140,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":134,"\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":100,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":63,res2:105,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":64,inv_thread_column:156,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":146,keyr:[6,141],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":176,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":64,task:[6,30],sortbi:[],entri:[135,85,42,99,15,100,139,52,144,146,150,65,116,66,169,158,109,71,168,170,127,129,32],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":54,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":156,spend:[168,139],"build\u3092\u7528\u3044\u3066":165,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":61,shape:84,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":156,"\u3053\u306e\u64cd\u4f5c\u306f":105,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":146,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":63,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":140,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":31,bin:[174,93,18],key_column:113,kashihara:70,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,tokendelimitnul:[155,33],"\u6c38\u7d9a\u7684\u306a":72,bit:[153,120,168,141,20,12,156,11,93,128,139,73],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":40,semi:[23,59],groogna_default_command_vers:48,in_valu:[],followe:170,often:88,grn_ctx_set_fin:14,back:8,grn_plugin_init:35,sizeof:76,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":105,scale:[30,48],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":156,per:[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":100,newark:170,substitut:[107,100,111,168,73],larg:[168,11,86,6,55,30,129,139,48,59],"\u304c\u8fd4\u3055\u308c\u307e\u3059":72,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":99,reproduc:116,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:70,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":117,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":136,grn_default_logger_get_path:6,grn_expr_compil:76,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":99,"\u30c6\u30fc\u30d6\u30ebterm\u306b":66,nsi:140,grn_db_recov:[70,75],"\u6a19\u6e96":[5,97,176,99],pair_dataset:[172,43],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":40,includ:[62,82,3,139,79,87,100,124,27,116,126,127,53,88,9,137,70,163,120,48],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":29,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":165,str_size:76,translat:[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],concaten:71,default_command_vers:[94,74,3,4,8],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":105,soundkitchen:[6,23],grn_tabl:[],no_space_left_on_devic:160,curl:[174,4,122,6,8,95,81,48,73],"\u305d\u308c\u305e\u308c\u306b\u3064\u3044\u3066\u7d50\u679c\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u307e\u3059":100,"\u90fd\u6c11":[64,134],sequenti:70,"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":63,grn_content_msgpack:98,grn_no_locks_avail:2,"\u30c7\u30fc\u30bf\u578b":[],libwinpthread:70,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":140,grn_column_renam:113,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":100,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":156,"\u3053\u306e\u4f5c\u696d\u306f":140,"tokenbigram\u306a\u3069":64,ellip:[68,162],grn_bulk_vsiz:76,"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,getaddrinfo:6,jason:133,"\u5f62\u5f0f1":[31,89],"\u5f62\u5f0f2":[31,89],"\u308d\u3086\u304d":133,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":113,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":140,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":140,grn_db:[],becam:[70,131],exit:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":74,fatal:70,db_path:[94,31,3,4,8],comment_cont:169,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":140,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":40,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,geograph:[11,68],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":7,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":40,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[32,99],"groonga\u30b3\u30de\u30f3\u30c9\u304bc\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u901a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":89,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":140,"0x0":[11,40,104],object1:139,object2:139,leakag:83,carlo:[53,118],append:[6,76],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":134,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,access:[],"32gib":129,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":166,interrupted_function_cal:160,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":72,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":143,vertic:59,sinc:[106,131,68,113,153,11,170,89,139,6,138,126,118,59,99],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":117,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":167,grn_resource_deadlock_avoid:[2,72],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":89,groonga_github_com_path:140,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":140,ii_buff:78,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":143,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":140,set_token_filt:70,grn_content_typ:[],name1:139,account:[70,22],"146607190x":170,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":10,alic:[100,168,170,107,53,8,88,118,48],obvious:11,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":140,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":134,fetch:[70,71,43],abcd:124,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":143,commnad:[10,93],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":47,onlin:[],users_loc:170,grn_ii_buffer_commit:78,gcc:[153,120,20,116,6,23,174],groonga_n_record:116,afr:[67,3,121],"\u30b3\u30de\u30f3\u30c9":[],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":66,inst:116,physic:117,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":57,bind:[151,37,150,89,42,6,147,23,73],correspond:[142,43,157,16,72,164],"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":72,grn_geo_select_in_circl:23,"\u6df1\u523b":64,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":143,hiroshi:[23,70],replies2:71,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,meter:[67,68],report:[],effici:[30,71,77],"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":105,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":97,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":162,euc:[89,116],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":156,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":105,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":63,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":89,nvar:47,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":105,dai:[106,138,139,170],dat:[6,104,116],mention:169,rubygem:6,"8\u30ea\u30ea\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":156,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":140,grn_table_lcp_search:105,"tomotaka_ito\u3055\u3093":23,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":64,column_index:[39,152,3,83,77,64,170,87,100,27,42,106,66,107,169,88,129,71,139,150,168],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":32,"\u306e\u66f4\u65b0":[],normalizerauto:[],"\u3067\u3042\u308c\u3070":156,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":72,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":140,stub:70,rel:[23,100,70],"\u30ab\u30ec\u30fc":134,red:[],clarifi:70,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":64,frank:88,standalon:58,test_loc:156,releas:[],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":89,groonga_log_path:[],"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":143,tokenizer_error:160,natti:23,messag:[],"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":64,monkei:11,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":140,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":156,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[94,74,3,4,8],ipad:153,"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":89,structur:[30,86,39,126,70],charact:[35,175,82,3,168,163,30,89,27,42,116,6,16,138,124,70,23,139,76,150,59],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":133,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":117,have:[84,131,2,3,177,87,43,8,132,174,48,52,100,98,139,79,142,106,16,111,152,163,168,175,75,30,126,11,129,59,94],close:[52,86,150],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":89,min:[],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":156,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":113,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":140,mix:[142,77],builtin:68,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":72,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":134,gurun:147,bottom_right:[23,29],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":32,"\u6e2c\u5730\u7cfb":40,"takahiro\u3055\u3093\u304c\u63d0\u6848":143,mail_column:156,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":63,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":165,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":134,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":64,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":100,"grn_bool\u578b\u3092\u8ffd\u52a0":143,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":66,elfr:6,grn_plugin_malloc:35,grn_ii_buffer_append:78,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":64,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":133,escaped_str:76,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":75,integr:[6,11,116,73],"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":140,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,your_new_db:23,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":64,pattern:[126,30,139],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":165,progress:138,superior:[30,27],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":156,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":56,plugin:[],shorttext:[3,83,86,40,89,41,42,43,94,97,102,118,133,100,68,139,77,11,142,106,107,53,16,146,87,59,39,152,64,150,156,66,169,67,158,88,70,71,101,164,168,121,170,27,126,127,129,175],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":89,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":117,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":108,equat:68,grn_permission_deni:2,comment:[],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":85,log_repoen:6,test_str:165,"hook\u306e\u5b9f\u884c\u9806\u4f4d":85,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":89,json:[],grn_obj_table_no_kei:[57,105],grn_table_group_flag:105,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":165,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":89,"\u4f8b\u3048\u3070":[133,64,156,134,89,72],bulk:76,multi:[],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":40,plain:101,defin:[3,139,172,106,160,163],buildabl:23,replies_cont:71,howev:30,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":165,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],almost:[23,129,154],caplit:[70,116],grn_plugin_mutex_open:35,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":156,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":140,too_many_open_files_in_system:160,japanes:[0,168,30,22,6,70,139,164,111],"pc\u306bgroonga":136,auth_bas:[8,48],utop:[12,140],optarg:[50,75],hostnam:[156,89,6,8,31,94],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":66,column_nam:52,grn_column_name_key_len:113,document_index:[150,42],"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":140,center:[30,162],builder:78,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":7,choos:[11,52,8,70],error_cod:35,update_not_allow:160,"1byte":160,latest:[],unari:116,"5\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":165,takayuki:23,gmo:70,"30ac":175,lake:84,add:[],successor:139,grn_ctx_at:[6,14],match:[],"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":117,grn_obj_table_pat_kei:[57,105],"\u3067\u306f\u306a\u304ffree":143,grn_obj_path_by_id:[72,104],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":75,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":72,substit:100,"\u8ffd\u52a0\u306e\u5c5e":66,qwik:146,insert:[6,3,27],like:[],success:[],grn_obj_id:72,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":72,"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":40,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":143,"com\u304cedge\u3092\u4f5c\u308b":125,socket_is_already_shutdown:160,soft:129,snippet_html:[],normalizer_list:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":146,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,specfi:102,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":75,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":146,proper:[126,70,170],grn_column_cr:113,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":156,tmp:[3,140,122,142,87,89,116,53,94,97,163,48],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":156,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u5f62\u5f0f":31,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":64,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":64,"repositories\u914d\u4e0b\u306b":140,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":64,host:[23,156,94,73],although:8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":140,"\u30c0\u30e1\u30fc\u30b8":64,sbin:81,actual:[11,70,3,8,116],socket:6,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":14,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":113,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":156,"mooz\u3055\u3093\u304c\u4fee\u6b63":23,lifecycl:73,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[],tomo:39,discard:116,groonga_path:156,"\u51fa\u529b\u3059\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":100,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":63,dataset:[],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":64,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":140,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":140,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":64,ayumu:70,conbind:168,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":100,rch:82,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":10,hatak:70,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":54,glib:116,unexpect:[6,70],"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":40,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":113,uninstal:6,bug:[],grn_obj_set:72,binlib:140,"point\u578b\u306e\u5024":[29,162],quickli:106,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,epel:[6,120],"shimada\u3055\u3093":143,colum:[129,71],dure:[6,3],pid:[23,1,174,89],saer:[142,16],grn_too_small_limit:2,implement:[62,37,139,86,100,6,68,8,70,137,23,177,111],pip:18,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":148,probabl:142,"\u305f\u3060\u3057":[57,31,134,54,89],detail:[35,131,82,3,87,6,8,9,138,174,153,100,77,11,12,107,111,41,156,116,67,70,120,121,123,141,173,30,129,80,59],virtual:116,comment_nam:169,grn_expr_create_for_queri:63,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":156,is_a_directori:160,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[57,112],grn_obj_flag:[35,56,105,76,113],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":130,represent:[114,111,76,77],"drilldown_offset\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":100,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":63,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":64,grn_type:[],"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":140,tweet:[106,22],umask:70,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":10,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":64,under:[122,8,70,174,58,48],everi:121,risk:70,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":89,"24byte":160,grn_encoding_to_str:114,not_a_directori:160,x86_64:[120,140],zlib:[],naiv:121,not_enough_spac:160,"push\u3057\u3066groonga":140,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":113,aim:116,hide:116,introspect:6,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":72,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":63,"82pre":37,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,grn_tokenizer_query_open:6,studio:[6,93,116],path:[],"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":143,httprewritemodul:8,"\u95a2\u4fc2\u5f0f":[],functin:139,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":105,precis:[126,3,140,30,12,6,164],"\u306e3\u30d5\u30e9\u30b0\u306f":57,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":136,orilldown:121,portabl:[23,8,116],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":63,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":72,describ:[35,0,82,3,84,124,87,41,43,93,45,95,137,174,118,153,100,101,139,77,12,52,53,16,109,55,18,149,59,151,62,20,46,171,169,160,70,71,163,164,73,120,175,168,127,170,25,26,126,141,128,129,80,111,81],noarch:[153,120],"groonga\u306e\u7d44\u8fbc\u578b\u304b":66,namebuf:[72,113],autogen:[6,140,111],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":40,"msg\u306fcom\u306b\u3088\u3063\u3066":125,chracter:[175,27,59],"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":63,"grn_op_but\u306f":63,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":40,join:22,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":134,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":162,overrid:174,enourm:43,end:[166,139,68,4,168],eng:[142,164],hiragana:[164,168,139],env:163,rroonga:[169,150,116,42,15,107,147,70,71,73],grn_content_non:98,tablenam:10,grn_set_default_command_vers:108,befor:[100,3,77,11,104,6,157,16,8,9,174,163,164,109],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":10,parallel:30,exclud:[6,52,88,116,70],environ:[120,104,116,93,8,128,70,23,174,163,73],enter:[3,94,116],composit:175,over:[154,150,116,6,94,30],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,becaus:[131,3,4,86,43,6,8,9,48,83,153,100,139,11,106,107,53,16,59,39,152,66,157,160,88,70,71,163,164,168,169,122,30,27,126,129,175,177],london:68,gqtp:[],"\u304bwgs84geopoint":[29,162],digest:48,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":112,tokenizer_list:[],"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":10,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":134,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":143,oneir:[23,116],"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":63,choic:30,grn_pat_at:143,each:[],searc:164,colleagu:80,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"groonga\u306e\u30ab\u30e9\u30e0\u306f":40,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":57,msgpack:[4,48,160],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":10,newli:[106,30,27,15,70,118],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":103,got:[70,116],"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":31,"\u69cb\u9020\u4f53\u306e\u914d\u5217":47,"offset\u306f":105,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":31,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":117,filter:[],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":140,"16gib":129,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":156,score_column:113,onto:129,rand:[],rang:[],"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":57,edit_dist:[],restrict:[6,94,48,116],alreadi:[35,106,82,3,52,17,129,71,58],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":72,primari:[],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":115,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":72,top:[102,121],mercuri:140,too:[11,139,71,116,77],tom:107,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":140,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"path\u3092":143,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":117,tood:35,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":[100,146],tool:[],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":97,user_ag:88,wareohji:6,grn_obj_set_valu:[57,72],ga54c5f8:156,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":140,expr:76,obata:[23,143,116],"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,thu:[83,30,172,91,67,70,71,58,168],rab:[67,3,121],ran:164,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":97,ram:156,raw:[116,73],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":64,with_sect:[66,70,71,87,170],unresolv:23,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":134,hanako:158,bad_file_descriptor:160,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":140,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[105,113],travi:[],though:[30,116,6,70,71,164],"\u3044\u307e\u3059":115,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":156,bsd:[23,174,70],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":105,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":63,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":140,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":156,mininum:131,flow:[],abbrev:68,radix:139,"0\u30d9\u30fc\u30b9\u3067":[57,105],abl:27,random:67,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":10,pkg:[120,20,143,6,23,174],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":146,"\u3067\u4f5c\u6210\u3057\u305f":14,"\u3082\u3057\u304f\u306f":[57,40,105],absolut:9,top_left_point:102,configur:[],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":140,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":72,"\u542b\u3081\u308b\u3082\u306e":140,item_queri:[142,16,164,172,43],label1:70,watch:140,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":89,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":66,normalized_text:124,reconstruct:70,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":74,method:[3,8,116],twice:[100,168],hendro:116,contrast:[30,70,3,8,107],"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":143,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":166,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":100,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":21,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":133,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":140,nul:[35,23],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":63,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":57,grn_plugin_error:35,databas:[],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":156,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":72,algolithm:147,"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u3068\u308a\u307e\u3068\u3081\u3066":100,approach:68,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":89,weak:[30,27],grn_invalid_argu:[57,105,2,72],fault:6,"4gib":[86,160],"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":40,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":140,trust:140,id_column:113,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":89,evalud:137,been:[53,140],"\u3072\u308d\u3042\u304d":133,accumul:100,geo_distance2:[23,68],geo_distance3:[23,68],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":140,tokenmecab:[6,64,155],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":105,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,xxx:[70,89,116,139],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":113,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":156,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":134,"grn_op_or\u306f":63,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[105,113],suggest:[],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":143,complex:[6,100,116,139],unix_time_when_command_is_start:126,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,niku:70,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":47,complet:[],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":105,sen_index_delimit:37,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[31,89],quotient:139,"groonga\u306b\u306fhtml":31,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":140,via:[6,111,2,43],"\u5024":89,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":125,els:70,grn_column_name_valu:113,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":31,ceekz:116,"groonga\u306epackag":140,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":63,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,"mooz\u3055\u3093":23,unstabl:104,poedit:111,el5:120,escaps:[150,27,42],"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":113,log_reopen:[],"\u7d44\u8fbc\u95a2\u6570\u306f":[167,29,103,162,61],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":143,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":1,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,line_cont:126,grn_op_but:63,core:[],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":63,surround:[6,150,27,42],dinner:30,ppa:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":36,"\u578b":56,encod:[],two:[0,84,131,82,3,87,43,8,138,48,153,100,68,12,14,107,16,58,59,39,116,66,169,67,70,71,120,168,121,170,124,27,126,141,175,76,177],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":23,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":14,version4:10,git:[96,140,111],version1:10,version2:10,version3:10,"\u30d0\u30fc\u30b8\u30e7\u30f3":140,"256gib":60,head:[166,70,100,8,160],medium:[153,120,170,12,141,93,128],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":40,removep:72,drilldown_sortbi:[],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":140,deafult:23,autoconf:23,grn_expr_syntax_escape_queri:76,trie:[],decrypt:140,bad_address:160,variabl:[35,139,20,104,87,116,6,11,160,23,70,163],check:[],ongaeshi:[6,116],"clearlock\u306f":99,successfulli:[35,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":117,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":63,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":89,when:[3,6,8,9,70,100,68,77,142,52,107,18,59,39,113,116,66,169,101,23,164,168,75,122,30,126,170,80,175,94],groonga_dist:6,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":133,tid:112,saerch:[142,16],node:[6,120,73],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,grn_op_and_not:50,"\u5217\u6307\u5411\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":89,sql:121,faster:[23,174,116,70],top_left:[23,29],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":54,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":134,backward:[6,70,118,48],grn_obj_table_dat_kei:23,"6\u30ea\u30ea\u30fc\u30b9":[],"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":100,focus:3,llt:82,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":162,row:[30,27],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":66,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":140,readabl:[70,104],"\u554f\u984c\u3042\u308a":23,jumand:153,sourc:[],"\u306b\u8a2d\u5b9a\u3059\u308b":140,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":156,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":112,"6elz":70,"\u3092\u8fd4\u3057\u307e\u3059":[57,85,105,72],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":54,level:[35,121,5,89,116,6,7,8,138,70,58,160],brother:168,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":113,slower:[68,121],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":117,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":40,port:[131,37,4,122,156,89,116,94,70,31,81,48,8],repli:[170,71],"sh\u306e\u307f\u306a\u3089\u305a":165,ken:39,grn_expr_append_const:[63,76],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":166,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":74,connection_refus:160,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":140,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":72,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":140,normalizeauto:150,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":100,"benchmark\u304c\u52d5\u4f5c\u3057":156,"1st":[100,88],grn_table_cursor_clos:57,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":103,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":66,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":10,grn_obj_clear_lock:[23,72],file_exist:160,memori:[],todai:30,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":156,criteria:3,capit:3,target_charact:76,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":143,proxy_cache_path:8,entries_key_index:[129,100,168,139],lc_messag:111,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":162,purpos:[107,3,94,116,77],collaps:6,backslash:[76,116,168],critic:[6,35,174,138],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[],satoh:23,alwai:[160,168,30,87,126,142,8,129,70,164,139],grn_table_update_by_id:105,grn_plugin_isspac:35,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":134,clone:[],"4th":100,"0\u4ee5\u4e0a18":40,repeat:[30,111],key_with_si:[133,139,168,59],"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":143,ueno:[6,23],inform:[],combin:[],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":64,midnight:139,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,mainli:[70,170],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":85,platform:[],meridian:68,cutter:[165,140],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":140,"\u6b21\u306b":63,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[144,89],"output_type\u306b\u306fjson":31,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":72,term:[],name:[],"\u65e5\u3005":115,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":57,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":63,no_memory_avail:160,request_id:[123,95],osanai:70,grn_itoh:23,grn_bool:72,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":143,end_tagn:150,"base_version\u306ftar":140,"groonga_clone_dir\u306b\u3066autogen":140,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":14,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":66,compress_zlib:66,migrat:[70,100,168,139],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":63,ruby19:[6,140],"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":14,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":89,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":156,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":140,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":100,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":72,place:[170,174,22],sho:[70,116],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":97,origin:[],"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":64,redhat:[23,174],arrai:[],string_siz:76,given:[6,39,116,107],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":140,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":23,domain_error:160,circl:[84,30],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":40,white:[3,168],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":112,grn_table_add:105,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":165,copi:[6,35,53],specifi:[],"\u30d1\u30a4\u30d7":66,github:[0,66,175,140,116,6,70,96,23,111,73],enclos:[52,3],pragma:100,calro:88,wide:[23,174,3,30],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":72,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":143,grn_table_cursor:[],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":54,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,posix:139,posit:[35,100,2,3,102,77,87,41,82,70],grn_column_index:113,seri:3,kazuhiko:[6,70],local_nam:146,ann:140,ani:[62,82,168,169,30,150,100,124,27,42,52,107,8,142,137,174,163,120,48,41],grn_unsupported_command_vers:2,grn_obj_set_mask:72,n_kei:105,operation_timeout:160,moreov:67,spheric:68,"\u306b\u306a\u308a\u307e\u3059":14,sure:3,multipli:139,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":165,geoindex:[],time_column:156,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":63,"com\u306f1\u30b9\u30ec\u30c3\u30c9":125,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":89,grn_table_cursor_set_valu:57,permiss:[70,174],sitecountri:[94,121],explicitli:[],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[64,134],written:[70,118,18,170,9],analyz:[6,23,8,30],grn_obj_column_vector:113,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u3092\u6307\u5b9a\u3057":[57,32,99],"45ea3034":138,ssh:140,takatsugu:70,"\u8a73\u7d30\u306f":[64,31,165],pipermail:70,reveal:30,"\u542b\u3081\u306a\u3044\u3082\u306e":140,tokenfilterstopword:[],grn_geo_select_in_rectangl:[23,102],"shibuya\u3055\u3093\u304c\u5831\u544a":143,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":140,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":72,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":105,"ongaeshi\u3055\u3093":143,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":40,"\u8b66\u544a\u3092\u9664\u53bb":143,detect:[6,23,82,8,174],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":115,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":140,dest_kei:105,grn_db_register_by_nam:136,"59\u74b0\u5883\u306b\u304a\u3044\u3066":23,come:[84,170],"\u63a5\u7d9a\u3059\u308bgroonga":156,region:[84,67],quiet:160,reference_vector_column:116,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":64,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":64,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":54,color:175,whombx:116,period:[],pole:68,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":143,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"ueno\u3055\u3093":[143,136],lexicon2:71,item_exampl:164,log_put:[],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":140,frequency_threshold:[23,142,16,164,43],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":143,"s3ki\u3055\u3093\u304c\u5831\u544a":143,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[72,113],not_socket:160,grn_command_version_max:108,"case":[],"\u3042\u308a\u307e\u305b\u3093":[74,97,176,130,148],cast:[],grn_db_open:75,out_loc:156,favorited_bi:170,grn_expr_alloc:76,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":63,"define_selector\u306f":144,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":105,query_s:76,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":140,saerc:[142,16],"4\u884c\u76ee":156,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":113,author:8,alphabet:[82,70,16,59],users_index:170,grn_get_default_match_escalation_threshold:21,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":63,html:[],"\u8a9e":117,messagepack:[],status:[2,160],nest:[],"com\u306edoc":140,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":89,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":100,"_nsubrec":[39,100,113,121,170,54,70],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":57,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,105,162],sed:[6,23],overcommit_memori:[],without:[],model:160,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":143,"\u3067\u78ba\u4fdd\u3057\u305f":14,"groonga\u3092build\u3059\u308b\u969b\u306b":74,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":57,rose:11,except:[153,84,62,82,168,77,86,100,27,129,6,8,70,137,23,59],blog:[],"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":143,vulner:70,hino:116,grn_logger_info:6,grn_obj_nam:72,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":89,grn_table_cursor_open:[57,143],realtim:[142,43],with_typ:124,madrid:68,grn_rc:[35,36,72,75,85,78,114,105,14,15,21,108,102,17,57,50,76,47,113],unrecover:75,rsync:140,easili:70,grn_cache_current_set:15,freed:[15,70],garbag:[23,116,117,70],inspect:[70,116],tokenbigramsplitsymbolalpha:[64,155,100,82,33],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[72,113],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":75,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":143,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":10,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":140,tokentrigram:[155,82,33],consid:[39,131,83,71,48,59],libmecab:[141,12,140],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":117,rescord:147,strict:70,interfac:[6,122,3,4],chracterist:86,regard:[116,168],jun:70,grn_obj_key_var_s:56,untag:101,longer:[37,14],notat:[6,116,139],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":72,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":10,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":89,grn_expr_creat:76,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":140,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":143,strongli:[153,120,12,141,93,128],"a\u3092\u6307\u5b9a\u3057\u3066tabl":105,user_column:156,grn_db_text:76,grn_index_cursor_next:[112,116],gettext:[111,18],orient:[11,30,27],oneself:70,remove_tokenized_delimit:124,event_queri:[142,172,58,16,43,164],allow_upd:[100,168],comments_loc:170,hmm:170,directori:[35,122,116,6,8,70,23,174,163,58,111],potenti:116,"\u30c7\u30fc\u30e2\u30f3":89,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":14,all:[82,3,83,86,87,62,43,6,8,9,137,138,70,174,170,48,52,100,102,139,77,106,53,147,59,152,113,41,160,88,23,118,164,175,168,123,127,30,129,111,109],grn_table_column:105,dist:140,"ctx_new\u3068\u3044\u3046queue\u306b":125,scalar:[87,132,77],follow:[],disk:[71,59],ptr:[35,143],item_:142,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":143,init:[6,70,174,47,116],program:[122,87,116,6,173,8,58],"\u95be\u5024\u3092\u8d8a\u3048\u308b":64,neglig:70,liter:[],"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":64,libgcc_s_sjlj:70,rand_max:61,systemctl:131,failur:[6,70,17,140],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":54,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":57,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":89,longtext:[40,102],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":140,"\u304a\u3088\u3073":140,"help\u3067\u51fa\u529b\u3055\u308c\u308b":23,yappo:[70,37,116],tex:82,rate:[116,88],design:[6,11,100],sug:157,what:[142,76,83,169],sub:[30,140],sum:100,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,libstemm:70,themselv:[163,111],noraml:82,bottom_right_point:102,behaviour:116,shouldn:70,solari:[],cutter_check_leak:165,n_var:35,grn_ctx_init:[23,14],serihiro:6,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":176,memcach:[],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":40,matsuu:143,grn_bad_address:2,grn_ctx_get_output_typ:14,gtihub:23,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":115,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":64,tokenunigram:[155,33],"\u30ea\u30ea\u30fc\u30b9\u65e5":140,deprec:[100,10,89,116,6,68,70,23,99,59],ocelot:[23,116],suddenli:116,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[23,143],"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":140,"\u4ee5\u964d\u3092\u7121\u8996":143,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":143,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":40,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":144,grn_syntax_error:2,src_key_siz:105,flag:[],"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":50,known:[3,139,30,27,116,94],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":85,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":40,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":89,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":99,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":156,tahr:[70,12],grndb:[],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,cours:121,newlin:[23,104],divid:[11,30,139],rather:[106,87,100,77],rep_loc:156,divis:[],cmp0014:70,resourc:[106,70],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[32,99],"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":162,overcommit:129,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":113,"\u6307\u5b9a\u3059\u308b":75,resours:15,"request\u3092\u9001\u308a\u307e\u3059":140,"short":[8,77],geo_dist:[],caus:[168,11,116,6,70,23,139,59],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":72,mailarch:140,yahppo:116,grn_table_trunc:[23,105],logal:73,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":105,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":143,style:70,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":14,"7\u30ea\u30ea\u30fc\u30b9":[],soccer:39,"return":[],normalzi:150,grn_table_sort_asc:105,number:[],"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,ff9e:175,innodb:30,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":130,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":135,friendship:39,truncat:[],"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,grn_text_vprintf:70,weight:[],needless:[6,104,116],yoshida:116,expect:[11,70],"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":105,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":72,socket_is_not_connect:160,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,footnot:[68,3],"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":162,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":23,advanc:[],differ:[0,100,68,4,122,11,168,6,107,67,70,71,139,48,59],content_type_len:6,thread:[35,113,122,30,89,116,14,127,138,48,75],"\u306exml\u51fa\u529b\u5bfe\u5fdc":143,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":63,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":105,grn_selector_func:70,"apt\u306e\u5834\u5408":140,notifi:95,feel:70,groonga_database_auto_cr:[],blank:175,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":156,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":134,gpl:37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":143,script:[],goronga:93,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":140,gpg:140,exclude_t:116,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":165,grn_column_name_id:113,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":134,statement:139,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":140,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":36,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":140,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[72,113],kind:[30,67,3,83,121],remot:[],remov:[152,75,20,116,6,11,158,8,9,23,70,72,104,41],rep_http:156,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":156,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":165,well:[30,116,27,94,174,8],ruby_ev:[],expir:[8,109],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":156,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":40,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":143,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":89,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":1,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":167,operation_would_block:160,park:170,function_not_impl:160,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":54,reach:129,keyword_s:76,"\u30e1\u30fc\u30c8\u30eb":162,grn_obj_incr:72,latitude_in_degre:139,"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":105,grn_column_name_kei:113,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":162,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[135,5,65,7,144,176,99],penalti:116,firewood:[6,116],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":14,underflow:11,grn_plugin_fre:35,hit:[100,116,147],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":40,pair_queri:[142,16,164,172,43],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":105,obtain:35,longest:[23,105,139],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":31,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":64,grn_column_name_nsubrec:113,grn_obj_persist:[105,113],"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":134,grn_success:[35,100,2,75,14,15,17,138,76,113],armhf:70,"\u6570\u5024":134,"\u30b3\u30df\u30c3\u30c8":140,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],art:[170,139],dump:[],highight_ful:150,arc:82,tobbi:107,grn_obj_with_weight:113,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":113,grn_table_differ:105,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":143,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],korea:121,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":64,succeed:[2,3,66,127,158,118,174],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":143,solv:11,solr:139,socket_not_initi:160,grn_table_get:[105,104],threashold:[64,143],"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":40,context:[27,14,15,169,8,23,72,76],"1x139":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":113,grn_table_sort_flag:105,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":89,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":10,additional_configure_opt:116,"\u5f93\u3063\u3066":100,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":140,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":40,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":162,conifugr:73,grn_file_exist:2,beforehand:153,close_tag1:150,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":156,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":125,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":156,nakai:116,behavior:[6,70,88,107],input_file_nam:126,xvzf:[153,120,20,12,141,174,81],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":64,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":156,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":140,rid:78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":156,minim:[8,88],grn_obj_column:72,grn_column_t:113,"\u5065\u4f5c":39,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":143,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":40,higher:[142,100],"\u975e\u4e92\u63db":23,x86:[23,93],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":117,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":156,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":134,lower:[100,82,3,59],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":156,searchabl:106,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":105,propos:[157,100],table_:[86,59],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":61,"3\u884c\u76ee":156,northern:6,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":63,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":72,grn_plugin_get_system_plugins_dir:23,table2:105,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,gem1:140,table1:105,docutil:140,retry_max:160,collect:[126,30,170],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":105,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":140,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":63,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":10,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":10,invalid_format:160,"log\u3067\u3059":89,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[36,75,85,72,47,110,113],blog_titl:3,retri:17,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":140,leftmost:139,proc:[35,153,100,85,12,116,141,120,47,110],form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":[],squeez:[116,140],maximium:100,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":57,brooklyn:170,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":14,dialog:116,lager:116,grn_cache_current_get:15,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":176,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":165,shimoda:143,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":140,question:71,live:[170,59],fast:[39,100,82,3,168,84,86,132,27,42,52,68,101,30,126,71,139,177,150,48,59],adjac:168,arithmet:[],"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":156,grn_proc_get_info:47,wno:23,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u554f\u984c\u3092\u4fee\u6b63":143,aramaki:23,piro:70,consist:[70,160,3,168,43],"benchmark\u306f":156,caller:47,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":100,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":89,test_text_otoj:165,highlight:[150,42],radious_or_point:162,vojtovich:70,"\u3059\u308b\u3068groonga":140,horikoshi:23,unauthent:[6,141],grn_expr_append_const_int:76,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":134,grn_socket_not_initi:2,"\u540c\u3058\u3067\u3059":156,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":143,weight3:77,weight2:[6,100,77],weight1:[6,100,77],comments2:71,grn:[8,146],gro:[122,27],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":134,nice:106,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":156,grn_expr_add_var:76,"\u540c\u6642\u306b":125,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":140,konishi:116,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":135,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":136,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":140,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":89,xcode:81,"\u7e70\u308a\u8fd4\u3057\u6570":156,mainstream:30,w64:140,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":63,"grn_expr\u306f":63,relev:[30,3],ranguba:[70,77],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":140,prepar:[],pleas:[0,131,3,75,22,70,80,174,111],smaller:[68,77,30,106,138,59],"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":140,compat:[153,120,12,124,141,8,70,118,175,48],compar:[100,168,30,27,6,70],mainlin:70,jekyl:140,grn_info:[],"314e":139,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":156,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":40,larger:[100,77,86,27,43,160,129,58],larget:95,"_name":59,mitsuo:116,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":31,typic:100,appli:[],approxim:[6,23,68],motoi:116,apt:[140,12,6,141,18,73],api:[],from:[],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":64,usa:121,few:[48,177],usr:[89,8,9,174,165,81],sort:[],grn_db_creat:75,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,tokenbigramignoreblanksplitsymbolalpha:[64,155],memos_cont:152,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":143,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":115,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":54,annot:116,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":165,endian:70,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":105,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":72,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":40,grn_column:[],tar:[153,120,140,20,12,141,174,81],tag:[],tab:[98,163,4,160],"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":140,grn_set_lock_timeout:17,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":85,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":40,six:[138,3],"100x100":162,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":97,sid:[23,117,70],instead:[84,131,83,86,89,42,6,93,94,23,174,99,153,100,68,139,147,59,150,116,70,73,168,27,128,175,8],express:[],"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":140,"load\u30b3\u30de\u30f3\u30c9":1,attent:100,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":63,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":143,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":166,light:53,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":97,"1\u884c\u76ee":156,freebsd:[],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":165,"\u4eac\u90fd":[64,134],location_in_input:126,ouput:116,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":156,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"log_level\u306f":5,condtion:168,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":14,"homebrew\u3078pul":140,bye:[41,139,152,100,168],"\u4f8b":[],crash:[116,6,127,53,70,23],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":10,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":140,keys_zon:8,"\u884c":165,devel:[153,120],shinjyuku:67,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":140,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":165,edit:[],grn_socket_is_already_connect:2,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":156,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":140,our:[22,111],grn_obj_column_index:[112,113],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":156,"gz\u306eversion\u304a\u3088\u3073vers":140,out:[153,120,169,12,141,93,128,96,70,71],longitude_in_degre:139,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":143,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":140,dcb314:70,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":125,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":64,grn_ctx_send:[15,98,14],"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":140,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":64,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,york:[170,68],dictionari:[6,143,175,116,153],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,lte:82,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":140,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":72,"\u8aac\u660e":[],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":143,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"request\u3092\u9001\u308a\u307e\u3057\u305f":140,tetsuharu:70,prioriti:[30,164],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,grn_obj_get:72,unknown:[114,104],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":54,"akio\u3055\u3093":143,grn_dat_repair:104,shell:[174,168],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":32,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":66,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":57,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":156,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":143,"\u3092\u4f5c\u6210\u3057\u307e\u3059":66,emac:111,no_such_file_or_directori:160,exec_format_error:160,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":115,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":40,"4097byte":86,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":89,"shimada\u3055\u3093\u304c\u5831\u544a":143,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":72,which:[35,131,82,3,83,89,41,6,94,137,101,133,153,100,68,139,11,107,58,39,62,116,169,67,158,70,71,164,168,121,122,30,124,173,170],grn_obj_delete_by_id:[23,72],"\u30db\u30b9\u30c8\u540d\u3068":156,who:[],"\u7d44\u8fbc\u578b":[],default_token:[],why:[100,116,131],"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":57,determin:[100,3,147],"_id":[3,83,43,94,118,133,100,139,77,142,106,53,16,54,146,39,152,113,64,67,158,88,70,71,72,164,168,121,126,175],someth:70,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":57,word1:[6,100,168,139],word2:[6,100,168,139],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":140,your_github_account:111,practic:[11,70,30],grn_obj_with_posit:113,daiki:[6,23,143,136],local:[139,140,30,8,18,174,111],"150x100":29,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":134,grn_ctx_use:14,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":134,subrecord:116,grn_cursor_prefix:57,candidate2:142,candidate1:142,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":156,view:[],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":140,knowledg:30,"1073741824\u306e\u6574\u6570\u3067":54,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":89,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"10t22":16,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":57,index_tag:39,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":156,entranc:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":144,dll:[6,23,35,70],"v1\u306e\u5024\u306e\u4e2d\u306b":63,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":115,yaman:[70,116],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":162,elimin:116,job:156,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":40,homebrew:[],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":115,addit:[],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":166,april:140,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":140,hyphen:[3,59],"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":143,respect:[6,11,67,170],rpm:[153,120,140,116,6,70,23,104],target_nam:[],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":23,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":40,mike:158,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":115,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,162],roonga:157,"\u30c6\u30fc\u30d6\u30ebentry\u306b":66,"21th":116,cursor:[23,102],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":54,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":64,customiz:27,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":40,"\u3072\u308d\u3086\u304d":133,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":140,avg:166,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":143,grn_expr_append_op:[63,76],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":156,"\u6ce8\u610f":105,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":143,difficult:30,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":64,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":134,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[64,134],"0x10":160,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":115,english:[0,100,18,116,22,70,23,164,111],grn_content_xml:98,uzulla:23,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":74,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":140,do_http:156,users_nam:107,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":89,"\u3082\u3057groonga":156,euc_jp:174,"key\u306b\u306f":105,amd64:140,other:[],"\u30ab\u30e9\u30e0\u578b1":100,"\u307e\u305f\u306f":156,"table\u306fcolumn\u3068\u306f\u5225\u306b":105,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":72,know:[39,121,55,170],press:111,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u30ab\u30e9\u30e0\u578bn":100,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f10\u3067\u3059":100,earch:82,incres:70,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,exceed:154,no_child_process:160,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[23,70,116,18],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":64,column_inform:87,lead:[100,3,27],grn_obj_get_nhook:85,leak:[66,143,116,6,70,23],lear:43,grn_address_is_in_us:2,time_stamp:138,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":113,investig:[154,116,121],acronym:160,tanab:116,rare:116,"\u305d\u308c\u305e\u308c":165,kanako:116,disabl:[66,100,143,168,122,138,18,116,6,8,70,23,174,104,164],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],own:[6,11,76,139,30],grn_operation_timeout:2,"\u6570\u5b57":156,grn_ii:[],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":89,grn_id:[35,36,112,113,78,14,105,57,72,76],yuya:70,automat:[39,3,168,86,8,55,9,139,111],automak:143,grn_expr_append_const_str:76,grn_default_query_logger_get_path:6,"145508000x":68,transfer:[],grn_command_version_min:108,appl:175,replac:[70,58,172,83],"var":[35,131,63,87,89,8,55,174,47],"\u30ad\u30fc\u304c":89,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":140,"\u4ee5\u5916\u306e\u5834\u5408\u306f":100,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":63,"\u73fe\u5728":176,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":89,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":66,kana:[142,16,164,172,43],palallel:140,made:[6,23,3],whether:[100,2,75,169,11,154,147,88,6,107,68,8,55,142,70,118,72,168],troubl:111,record:[],below:[52,96,53,168],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":72,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[74,135,5,65,66,117,7,144,146,148,176,97,32,130,99],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":108,ff76:175,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":36,"\u3067\u306f\u6607\u9806":105,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":140,makecach:[6,120],"fork\u3059\u308b\u70b9\u304c\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3068\u7570\u306a\u308b":89,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":140,book:139,bool:[152,168,11,40,116,41,133],"command_version\u3092\u8fd4\u3057\u307e\u3059":14,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":89,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":97,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":72,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":100,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":10,debian:[],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":85,emerg:[5,138,7,8],allow_leading_not:100},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","characteristic","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","reference/command/request_id","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/tuning","reference/commands/shutdown","server/package","reference/column","tutorial/patricia_trie","spec/search","reference/commands/table_remove","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/functions/geo_in_circle","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. Return code","4.1. Basic operations","7.2. Output","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013/01/29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.18.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.18.2. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.14.3. Correction","7.18.1. Global configurations","12.2.1. Introduction","8. Specification","2.7. Oracle Solaris","7.18.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","Release 1.2.9 - 2011/12/29","7.10. Query expanders","7.18. API","7.3. Command","7.12.13. snippet_html","5. Server","7.12.5. geo_in_rectangle","1. Characteristics of Groonga","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. Tokenizers","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.18.23. Plugin","7.18.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. Reference manual","4.6. Tag search and reverse resolution of reference relationships","7.4. \u30c7\u30fc\u30bf\u578b","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.12.7. highlight_html","7.14.4. Suggestion","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.14. Suggest","7.1. Executables","7.18.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.3.1. Comparison","Groonga documentation","7.18.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","\u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.18.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.18.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.12.12. rand","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. Various search conditions","7.12.3. geo_distance","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.18.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","11.1. Travis CI","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.18.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.18.9. grn_expr","Vector column","7.18.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. How to contribute to groonga","2.2. Mac OS X","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.13.1. Geolocation Search","7.18.11. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. Tables","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.12.1. between","7.1.3. groonga command","5.3.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.12.9. in_values","2.1. Windows","4.2. Remote access","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.18.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.12.8. html_untag","7.18.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.12.2. edit_distance","Release 1.3.0 - 2012/01/29","7.18.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.15. Indexing","7.12.11. query","7.18.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.18.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.18.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.18.3. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.18.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","Release 3.1.2 - 2014/01/29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.2. GQTP","2.5. CentOS","4.5. Drilldown","7.1.8. groonga-suggest-httpd","7.3.3. Request ID","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.17. Tuning","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.6. Column","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.16. Log","7.11.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.11. grn_expr","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.12. Function","7.12.6. highlight_full","11. Development","7.9. Token filters","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.1. Introduction","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.3.2. groonga","7.12.4. geo_in_circle","7.10.1. QueryExpanderTSV","7.14.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.1.2. grnslap","7.12.10. now","7.11.1. Query syntax","7.12.14. sub_filter","4.10. Let's create micro-blog","7.13. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.3. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[21,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[89,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[72,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[21,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[75,1,1,"c.grn_db_create"],grn_plugin_charlen:[35,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[85,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[72,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[57,1,1,"c.grn_table_cursor_close"],"-P":[166,0,1,"cmdoption-P"],grn_table_cursor_set_value:[57,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[76,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[156,0,1,"cmdoption--log-output-dir"],"-d":[58,0,1,"cmdoption-d"],"-a":[89,0,1,"cmdoption-a"],"-c":[89,0,1,"cmdoption-c"],grn_obj_set_info:[36,1,1,"c.grn_obj_set_info"],"-m":[166,0,1,"cmdoption-m"],"-l":[58,0,1,"cmdoption-l"],"--disable-max-fd-check":[122,0,1,"cmdoption--disable-max-fd-check"],"-i":[156,0,1,"cmdoption-i"],"-h":[89,0,1,"cmdoption-h"],grn_db:[75,2,1,"c.grn_db"],"-t":[122,0,1,"cmdoption-t"],grn_command_version:[108,2,1,"c.grn_command_version"],grn_obj_set_element_info:[36,1,1,"c.grn_obj_set_element_info"],"-p":[122,0,1,"cmdoption-p"],"-s":[58,0,1,"cmdoption-s"],"-r":[58,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[35,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[14,1,1,"c.grn_ctx_at"],"--bind-address":[89,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[108,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[89,0,1,"cmdoption--config-path"],grn_table_size:[105,1,1,"c.grn_table_size"],"--query-log-path":[89,0,1,"cmdoption--query-log-path"],grn_ctx_use:[14,1,1,"c.grn_ctx_use"],grn_obj_defrag:[72,1,1,"c.grn_obj_defrag"],db:[156,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[17,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[57,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[114,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[72,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[78,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[72,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[102,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[105,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[113,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[72,1,1,"c.grn_obj_unlink"],grn_obj_id:[72,1,1,"c.grn_obj_id"],grn_obj_set_value:[72,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[35,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[114,2,1,"c.grn_encoding"],grn_proc_create:[47,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[35,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[113,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[58,0,1,"cmdoption--log-base-path"],"--dir":[156,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[72,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[105,2,1,"c.grn_table_group_result"],grn_expr_close:[76,1,1,"c.grn_expr_close"],grn_obj_path:[72,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[15,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[75,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[102,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[72,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[105,1,1,"c.grn_table_lcp_search"],grn_table_create:[105,1,1,"c.grn_table_create"],grn_table_cursor_get_value:[57,1,1,"c.grn_table_cursor_get_value"],"--address":[89,0,1,"cmdoption--address"],"--daemon":[58,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[72,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[105,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[14,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[89,0,1,"cmdoption--pid-path"],"--encoding":[89,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[14,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[15,2,1,"c.grn_cache"],grn_table_delete_by_id:[105,1,1,"c.grn_table_delete_by_id"],grn_content_type:[98,2,1,"c.grn_content_type"],grn_plugin_mutex:[35,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[76,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[78,2,1,"c.grn_ii_buffer"],"--host":[156,0,1,"cmdoption--host"],grn_ctx_get_output_type:[14,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[47,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[15,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[110,1,1,"c.grn_obj_user_data"],grn_obj_lock:[72,1,1,"c.grn_obj_lock"],grn_obj_name:[72,1,1,"c.grn_obj_name"],"--log-path":[58,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[113,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[89,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[72,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[76,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[35,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[72,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[57,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[76,1,1,"c.grn_expr_alloc"],grn_expr_compile:[76,1,1,"c.grn_expr_compile"],grn_user_data:[110,2,1,"c.grn_user_data"],grn_obj_get_range:[72,1,1,"c.grn_obj_get_range"],grn_table_get:[105,1,1,"c.grn_table_get"],grn_ctx_fin:[14,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[102,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[89,0,1,"cmdoption--max-threads"],grn_ctx_init:[14,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[78,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[72,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[105,2,1,"c.grn_table_sort_key"],grn_obj_rename:[72,1,1,"c.grn_obj_rename"],grn_table_group_flags:[105,2,1,"c.grn_table_group_flags"],grn_obj_check:[72,1,1,"c.grn_obj_check"],grn_table_at:[105,1,1,"c.grn_table_at"],grn_column_name:[113,1,1,"c.grn_column_name"],grn_table_difference:[105,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[122,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[35,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[15,1,1,"c.grn_cache_close"],grn_obj_close:[72,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[113,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[105,1,1,"c.grn_table_truncate"],grn_obj_get_value:[72,1,1,"c.grn_obj_get_value"],grn_cache_open:[15,1,1,"c.grn_cache_open"],"--server-id":[89,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[85,1,1,"c.grn_obj_delete_hook"],"-n":[89,0,1,"cmdoption-n"],"--port":[122,0,1,"cmdoption--port"],grn_ii:[78,2,1,"c.grn_ii"],"--ftp":[156,0,1,"cmdoption--ftp"],grn_obj_is_locked:[72,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[76,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[35,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[58,0,1,"cmdoption--log-level"],grn_table_rename:[105,1,1,"c.grn_table_rename"],GRN_COLUMN_NAME_NSUBRECS:[113,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[35,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[108,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[35,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[36,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[50,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[76,1,1,"c.grn_expr_append_const_str"],script:[156,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[35,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[108,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[76,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[35,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[85,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[35,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[112,1,1,"c.grn_index_cursor_open"],grn_proc_func:[47,2,1,"c.grn_proc_func"],grn_db_create_optarg:[75,2,1,"c.grn_db_create_optarg"],grn_column_table:[113,1,1,"c.grn_column_table"],grn_table_add:[105,1,1,"c.grn_table_add"],grn_obj_unlock:[72,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[15,1,1,"c.grn_cache_set_max_n_entries"],grn_proc_type:[47,2,1,"c.grn_proc_type"],grn_proc_get_info:[47,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[72,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[14,1,1,"c.grn_ctx_close"],grn_ctx:[14,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[113,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[113,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[113,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[57,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[72,1,1,"c.grn_obj_get_values"],grn_column_rename:[113,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[72,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[36,1,1,"c.grn_obj_get_info"],grn_ctx_db:[14,1,1,"c.grn_ctx_db"],"--protocol":[156,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[35,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[57,2,1,"c.grn_table_cursor"],grn_ctx_get:[14,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[21,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[75,1,1,"c.grn_db_open"],grn_column_index:[113,1,1,"c.grn_column_index"],"--n-threads":[122,0,1,"cmdoption--n-threads"],"--help":[89,0,1,"cmdoption--help"],"--groonga":[156,0,1,"cmdoption--groonga"],grn_table_setoperation:[105,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[113,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[72,3,1,"c.GRN_OBJ_SET"],"--document-root":[89,0,1,"cmdoption--document-root"],grn_info_type:[36,2,1,"c.grn_info_type"],grn_column_truncate:[113,1,1,"c.grn_column_truncate"],grn_obj:[72,2,1,"c.grn_obj"],grn_obj_remove:[72,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[35,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[72,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[76,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[76,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[78,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[102,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[17,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[78,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[50,1,1,"c.grn_obj_search"],"--send-endpoint":[58,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[105,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[85,2,1,"c.grn_hook_entry"],grn_expr_append_op:[76,1,1,"c.grn_expr_append_op"],grn_geo_point:[102,2,1,"c.grn_geo_point"],grn_table_cursor_table:[57,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[112,1,1,"c.grn_index_cursor_next"],grn_table_delete:[105,1,1,"c.grn_table_delete"],dest:[89,0,1,"cmdoption-arg-dest"],grn_ctx_open:[14,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[35,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[113,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[72,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[14,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[89,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[57,1,1,"c.grn_table_cursor_delete"],grn_type_create:[56,1,1,"c.grn_type_create"],grn_obj_path_by_id:[72,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[35,1,1,"c.grn_plugin_command_create"],grn_db_recover:[75,1,1,"c.grn_db_recover"],grn_builtin_type:[56,2,1,"c.grn_builtin_type"],grn_table_get_key:[105,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[72,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[21,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[15,1,1,"c.grn_cache_current_get"],grn_expr_create:[76,1,1,"c.grn_expr_create"],grn_get_default_command_version:[108,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[76,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[114,1,1,"c.grn_encoding_parse"],grn_column_create:[113,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[14,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[105,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[85,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[114,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[108,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[35,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[114,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[58,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[113,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[105,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[35,1,1,"c.GRN_PLUGIN_FIN"],command:[89,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[35,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[35,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[75,1,1,"c.grn_db_touch"],grn_table_update:[105,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[75,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[75,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,143],code:2,senna:37,"\u6539\u826f":[23,1,143,136],"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":140,queri:[100,83,30,168,107,8,138,24,94],global:17,localstatedir:174,"4\u30ea\u30ea\u30fc\u30b9":143,prefix:[63,139,133,174,164,48,168],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":140,follow:170,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":140,keywordn:150,value_typ:59,"\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9":89,depend:[174,18],grn_type:56,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":140,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":140,drilldown_offset:100,specif:[170,71,8,19],send:[94,111],column_cr:66,column_or_valu:88,table_list:97,downtim:48,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[156,34],query_str:107,"\u524d\u63d0\u6761\u4ef6":140,grn_command_vers:108,sourc:[153,120,12,141,93,174,81],string:[11,41,82,124,139],groonga:[49,131,37,140,172,122,30,125,89,90,8,161,31,80,111,58,156,94],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":140,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":140,offlin:106,facebook:22,"\u30b5\u30f3\u30d7\u30eb":[166,156],syntax:[82,5,87,41,42,7,135,95,9,137,97,99,100,68,139,142,176,52,107,53,144,55,155,148,59,62,44,146,150,65,66,117,67,158,109,88,69,118,74,168,169,124,27,127,92,101,32,130],brows:8,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":40,administr:[8,94],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":40,sub_filt:169,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":140,list:[0,2,22],vector:[11,77],drilldown_output_column:100,"\u30aa\u30d7\u30b7\u30e7\u30f3":[166,156,89],direct:8,sign:139,aggreg:30,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":134,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":134,index:[60,39,3,30,106,71,59],xor:139,learner:58,"files\u306e\u5b9f\u884c":140,delet:158,version:48,"new":[70,37,111],grn_info:36,full:[3,168,30,91,67,71],hash:170,gener:[111,18],learn:[122,58,157,16,43,164],lock_clear:127,bodi:126,let:170,solari:20,ubuntu:12,path:[62,174,48],valu:[82,5,87,41,42,7,135,95,9,137,97,99,68,142,176,52,107,53,144,146,155,148,59,62,44,150,65,66,117,158,109,88,69,118,74,169,122,170,124,27,127,92,101,32,130],"\u95a2\u4fc2\u5f0f":63,table_hash_kei:86,search:[39,100,3,83,84,30,77,43,67,16,170,133,139,71,91,164,168],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":140,shift:139,blogroonga:140,memcach:94,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":140,chang:37,narrow:67,"\u9759\u7684\u89e3\u6790":165,"twitter\u7de8":115,"windows\u5411\u3051\u306e\u5834\u5408":140,match_column:[107,71,100],appli:77,modul:8,phrase:168,"debian\u7cfb\u306e\u5834\u5408":140,api:[79,25],grn_db:75,request_cancel:95,instal:[163,174,93,128,18],total:100,define_selector:144,select:100,httpd:[122,131,8,90,58],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":125,from:[153,120,12,141,93,174,58,81],zip:93,commun:22,query_expand:[107,100],regist:9,upgrad:48,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":64,column_remov:65,call:139,"\u30c6\u30b9\u30c8\u65b9\u6cd5":165,key_typ:59,scope:169,query_expans:100,"\u30d6\u30ed\u30b0":140,sort:[67,3,121],token_filt:[82,59],relat:[71,100,8,58],benchmark:156,flag:[41,82,124,160,59],grn_content_typ:98,cach:[100,8],"\u4f7f\u3044\u65b9":156,prepar:83,work:[111,16,164,43],tag:[39,170,59],clearlock:99,"\u7279\u6b8a\u547d\u4ee4":156,control:139,grn_column:113,geo_in_rectangl:29,process:[129,138],lock:30,topic:13,sphere:68,liter:139,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":115,groonga_cache_limit:8,grndb:55,onlin:106,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":140,unsign:139,filter:[152,100],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":133,multipl:[71,139,121],secur:94,"\u540d\u524d":[166,61,167,103,156,40,89,29,54,31,162],pseudo_column:54,divis:139,grn_table_select:63,open_tagn:150,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":165,simpl:100,updat:[30,111,164,140,18],message_pack_install_prefix:174,"\u7406\u7531":115,max:[129,109,88],clone:111,geoloc:[84,170],mac:81,date:11,log_level:5,data:[168,11,170,164,43,8,139,58,59],table_dat_kei:86,alloc:154,"\u66f8\u5f0f":[166,61,167,103,156,89,29,31,162],not_equ:63,"\u691c\u7d22\u306e\u6319\u52d5":134,explicit:168,issu:[0,94],callback:63,combin:168,normalizernfkc51:175,freebsd:129,suggest:[122,142,172,43,157,45,58],table_token:41,origin:139,adjust:100,help:174,rand:61,hypertext:94,lz4:174,"3\u30ea\u30ea\u30fc\u30b9":143,gqtp:[131,160,94,119],paramet:[82,5,87,41,42,7,135,101,95,137,97,118,99,100,68,142,52,107,53,144,146,176,148,58,59,62,150,65,66,117,158,109,88,71,74,169,122,124,127,92,129,32,130],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":140,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":140,group:[168,139],thank:[6,23,104,116,70],how:[0,77,123,43,106,16,94,154,80,13,164,111],fix:[6,23,37,116,70],"\u5b9f\u9a13\u7684":23,platform:174,window:93,restart:131,persist:86,tsv:[126,163],mail:[0,22],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":165,"\u4f8b\u3048\u3070redmin":115,grn_hook:85,html_untag:101,"return":[82,5,87,41,42,2,135,95,9,137,97,99,68,142,176,52,107,53,144,146,155,148,59,62,44,92,150,65,66,117,158,109,88,69,118,74,169,122,124,27,127,7,101,32,130],greater:[63,168,139],worker_process:8,rectangl:68,"8\u30ea\u30ea\u30fc\u30b9":143,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":165,"\u8fd4\u5024":[61,100,167,103,29,31,162],now:167,highlight_ful:150,introduct:[157,18],term:139,name:[53,71,172,59],table_no_kei:86,edit:111,revers:[39,8],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":134,authent:48,kern:129,micro:170,token:[30,152,82,33],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":159,each:71,ruby_load:62,"\u30b3\u30de\u30f3\u30c9":[31,89],"benchmark\u5b9f\u884c\u7d50\u679c":156,grn_encod:114,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":165,domain:121,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":10,weight:[71,77],"0\u30ea\u30ea\u30fc\u30b9":[23,143,136],normalizerauto:175,http:[131,177,4,48,94],todo:[107,27],"http\u30b5\u30fc\u30d0\u30fc":31,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":115,groonga_query_log_path:8,db_api:63,query_flag:100,"release\u306e\u5b9f\u884c":140,normalizer_nam:150,"\u5bfe\u5fdc":115,correct:[157,16],red:140,nofil:129,"1\u30ea\u30ea\u30fc\u30b9":[23,143],shut:8,proxi:8,advanc:100,free:30,grn_user_data:110,substitution_t:107,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":140,releas:[6,23,104,116,70],database_path:[122,58],grn_match_escal:21,launch:122,recov:55,synopsti:172,assign:[123,168,139],oper:[171,3,139],softwar:18,rang:[3,59],groonga_log_path:8,suffix:[63,168,139],"7\u30ea\u30ea\u30fc\u30b9":[1,143],"\u8aac\u660e":[166,61,167,103,156,40,89,29,54,31,162],arrai:139,number:[129,100,174],edit_dist:103,groonga_database_auto_cr:8,max_map_count:129,open:129,primari:133,size:160,script:[137,139],"\u4fee\u6b63":[23,1,143,136],messag:174,tune:129,termin:94,store:[30,59],option:[41,68,122,124,172,107,82,58],relationship:39,travi:73,tool:[174,8,94],specifi:[68,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":10,tokenfilterstem:152,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":63,than:[168,139],geo_dist:68,keyword:170,remot:94,"grntest\u306e\u6e96\u5099":140,grn_table_cursor:57,exampl:[36,85,78,50,47,102,108,14,15,105,56,21,110,112,113,154,114,57,160,72,73,75,172,76],column_list:87,grn_expr:[63,76,147],latitud:[11,30],favorit:170,ruby_ev:137,tabl:[60,100,3,86,87,41,53,170,71,58,59],"null":139,packag:[174,131,12],bitwis:139,drilldown_limit:100,built:175,min:88,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":63,also:[82,5,86,87,62,42,41,2,95,137,99,100,142,176,52,107,144,147,155,59,152,44,150,169,158,160,69,163,123,124,27,172,126,7,175,109],point2:68,without:48,build:[153,120,12,141,93,174,81],highlight_html:42,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":165,mroonga:30,normal:[77,82,124,175,59],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[143,136],object:139,oracl:20,statu:[74,160,172],"\u7d44\u8fbc\u578b":40,default_token:59,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":140,groonga_log_level:8,geoindex:170,table_pat_kei:86,request:[122,123,8,111],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":63,left:139,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":134,"\u539f\u56e0":64,lexicon:[91,3,59],cache_limit:109,text:[3,168,30,91,67,71],grn_index_cursor:112,greater_equ:63,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":140,threshold:174,xml:126,access:[94,48],explicitli:68,locat:[39,67,68,163,30],execut:46,ellipsoid:68,grnslap:166,configur:[17,8,18,174,48,73],solut:154,max_bord:88,use_html_escap:150,"benchmark\u547d\u4ee4":156,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":64,contribut:[80,13],variou:[11,67],get:[122,3],express:168,stop:131,cannot:154,wheezi:141,report:0,geo:[39,139,30],requir:[100,68,122,87,124,41,107,53,82,95,101,118],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":10,enabl:18,query_typ:160,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":115,patch:111,new_nam:53,tokenfilterstopword:152,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":176,contain:63,table_cr:59,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":165,summari:[35,36,2,5,86,87,62,42,41,92,135,8,95,9,137,97,98,150,47,99,52,100,50,102,77,142,105,108,14,15,85,53,144,17,82,78,57,148,58,158,59,169,152,44,112,55,56,114,155,65,66,21,68,109,88,69,118,72,163,107,74,113,175,75,117,122,123,101,124,27,126,127,7,146,110,129,32,176,130],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":140,set:[122,8],modulo:139,dump:146,see:[82,5,86,87,62,42,41,2,95,137,99,100,142,176,52,107,144,147,155,59,152,44,150,169,158,160,69,163,123,124,27,172,126,7,175,109],result:[3,121],arg:63,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":165,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":115,databas:[3,48],column_renam:53,less_equ:63,score:100,between:88,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":140,kei:133,numer:11,javascript:67,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":140,"\u5bfe\u7b56\u65b9\u6cd52":64,"\u5bfe\u7b56\u65b9\u6cd51":64,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":156,homebrew:81,addit:[175,139,91],instant:30,plugin:[35,174],geopoint:170,equal:[63,168,139],against:71,facet:100,tutori:145,logic:[168,139],improv:[37,116,6,70,23,104],"po\u306e\u5b9f\u884c":140,load:[52,170,3,8,77],among:71,point:139,overview:[11,30],period:37,header:[126,160],close_tagn:150,shutdown:130,linux:[141,129],grn_proc:47,quit:148,"\u5236\u9650\u4e8b\u9805":156,target_nam:[127,118],invert:30,"version\u30d1\u30e9\u30e1\u30fc\u30bf":10,add:111,json:[52,126],basic:[3,139],"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":165,log_put:7,resolut:39,"2\u30ea\u30ea\u30fc\u30b9":143,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":140,hashtag:170,i18n:111,in_valu:92,"case":126,drildown:121,multi:48,gnu:141,zlib:174,cast:51,"\u691c\u7d22":134,error:[126,154],pack:174,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":165,"\u6982\u8981":10,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":140,"\u5f15\u6570":[166,61,103,89,156,29,162],filter_str:169,archiv:12,cento:120,synopsi:[122,8,58],develop:151,fedora:153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":140,grn_cach:15,perform:[8,48],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":140,make:[174,140],who:170,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":165,binari:94,html:[101,111,18],output_column:100,document:[49,13,18],messagepack:126,complet:[157,164],proxy_cach:8,expans:83,nest:71,temporari:86,user:170,engin:30,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":125,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":140,expand:24,desctipion:172,sortbi:100,overcommit_memori:129,person:12,client:[173,94],command:[10,3,4,122,89,26,94,55,48],gzip:48,latest:140,comment:170,construct:106,protocol:[94,160],just:77,less:[63,168,139],min_bord:88,"5\u30ea\u30ea\u30fc\u30b9":143,languag:111,approximate_typ:68,point1:68,mmap:154,defrag:32,patricia:133,blog:170,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":165,macport:81,geo_in_circl:162,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":140,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":140,match:[174,168,139],format:[52,163,126,3,138],read:[30,164],nginx:8,"\u95be\u5024\u3092\u3042\u3052\u308b":64,characterist:[86,30],truncat:118,daemon:94,like:67,success:126,maxfileperproc:129,manual:38,integ:139,server:[30,131,94,28],"boolean":[11,139],cascad:158,output:[126,100,3,4,111],snippet_html:27,normalizer_list:44,old:70,twitter:22,log_reopen:176,sampl:[168,139],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":165,librari:[30,174],confirm:111,avoid:154,per:129,tracker:0,exit:172,condit:[67,100,168],refer:[35,36,38,85,78,98,47,50,77,11,108,14,15,105,17,21,110,39,112,113,56,114,57,102,72,75,76],core:48,range_filt:69,run:[94,18],compress:48,view:3,usag:[82,4,5,87,41,42,92,135,8,95,9,137,97,99,100,68,77,142,176,52,107,53,144,55,155,148,58,59,62,44,146,150,65,66,117,158,109,88,69,118,101,163,74,169,122,124,27,127,7,129,32,130],tokenizer_list:155,"\u30d3\u30eb\u30c9\u6642\u306etip":140,"\u7591\u4f3c\u30ab\u30e9\u30e0":54,repositori:[96,111],offset:100,post:[170,8,48],subtract:139,comparison:[139,48],about:91,column:[60,68,3,168,121,77,30,150,42,132,71],memori:[154,129],page:100,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":115,"x\u306e\u304a\u77e5\u3089\u305b":[1,143,136],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":165,ppa:12,match_escalation_threshold:100,grn_ii:78,"\u4f8b":[61,167,103,64,89,29,162],"float":139,encod:174,dataset:172,down:[67,8],grn_ctx:14,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":63,storag:30,your:111,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":40,log:[138,174,58,48],transfer:94,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":156,support:84,"\u5909\u66f4":143,submit:0,custom:48,avail:[152,8],start:131,arithmet:139,"\u306e\u66f4\u65b0":140,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":10,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":140,"function":[149,139],"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":140,"\u691c\u7d22\u4f8b4":63,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":63,"\u691c\u7d22\u4f8b2":63,"\u691c\u7d22\u4f8b1":63,translat:111,drilldown_sortbi:100,line:[122,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":140,pull:111,munin:174,type:[11,170],record:[86,100,3],limit:[60,100,121,77,86,163],inform:[67,91],similar:[16,139,63],grn_tabl:105,"\u611f\u8b1d":[23,1,143,136],featur:84,bigram:170,creat:[3,77,170,172,71,59],trie:133,flow:111,grn_obj:72,groonga_databas:8,mode:[41,82,63],"homebrew\u306e\u66f4\u65b0":140,right:139,file:[172,129,163,58,48,111],check:[117,55],sharabl:30,extract:[139,43],grn_search:50,"default":[174,10],other:174,"\u30c7\u30fc\u30bf\u578b":40,grn_geo:102,"hat\u7cfb\u306e\u5834\u5408":140,scorer:[67,100],cooccurr:[16,164,43],drilldown:[100,121],debian:141,longitud:[11,30],groonga_base_path:8,escal:174,"\u691c\u7d22\u4f8b3":63,table_remov:135,queryexpandertsv:163,time:[11,170,139],escap:168,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":140,cpu:48}})
1
+ Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_type","reference/api/grn_user_data","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_tokenize","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[113,0,1,"cmdoption--address"],"--bind-address":[113,0,1,"cmdoption--bind-address"],"--cache-limit":[113,0,1,"cmdoption--cache-limit"],"--config-path":[113,0,1,"cmdoption--config-path"],"--daemon":[119,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[113,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[114,0,1,"cmdoption--dir"],"--disable-max-fd-check":[118,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[113,0,1,"cmdoption--document-root"],"--encoding":[113,0,1,"cmdoption--encoding"],"--ftp":[114,0,1,"cmdoption--ftp"],"--groonga":[114,0,1,"cmdoption--groonga"],"--help":[113,0,1,"cmdoption--help"],"--host":[114,0,1,"cmdoption--host"],"--log-base-path":[119,0,1,"cmdoption--log-base-path"],"--log-level":[119,0,1,"cmdoption--log-level"],"--log-output-dir":[114,0,1,"cmdoption--log-output-dir"],"--log-path":[119,0,1,"cmdoption--log-path"],"--max-threads":[113,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[118,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[118,0,1,"cmdoption--n-threads"],"--pid-path":[113,0,1,"cmdoption--pid-path"],"--port":[118,0,1,"cmdoption--port"],"--protocol":[114,0,1,"cmdoption--protocol"],"--query-log-path":[113,0,1,"cmdoption--query-log-path"],"--receive-endpoint":[119,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[119,0,1,"cmdoption--send-endpoint"],"--server-id":[113,0,1,"cmdoption--server-id"],"-P":[112,0,1,"cmdoption-P"],"-a":[113,0,1,"cmdoption-a"],"-c":[113,0,1,"cmdoption-c"],"-d":[119,0,1,"cmdoption-d"],"-e":[113,0,1,"cmdoption-e"],"-h":[113,0,1,"cmdoption-h"],"-i":[114,0,1,"cmdoption-i"],"-l":[119,0,1,"cmdoption-l"],"-m":[112,0,1,"cmdoption-m"],"-n":[113,0,1,"cmdoption-n"],"-p":[118,0,1,"cmdoption-p"],"-r":[119,0,1,"cmdoption-r"],"-s":[119,0,1,"cmdoption-s"],"-t":[118,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[43,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[43,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[43,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[43,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[43,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[43,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[44,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[44,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[44,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[56,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[56,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[56,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[56,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[56,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[56,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[56,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[56,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[56,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[56,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[63,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[63,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[63,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[63,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[63,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[63,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[63,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[63,1,1,"c.GRN_PLUGIN_REGISTER"],command:[113,0,1,"cmdoption-arg-command"],db:[114,0,1,"cmdoption-arg-db"],dest:[113,0,1,"cmdoption-arg-dest"],grn_builtin_type:[61,2,1,"c.grn_builtin_type"],grn_cache:[42,2,1,"c.grn_cache"],grn_cache_close:[42,1,1,"c.grn_cache_close"],grn_cache_current_get:[42,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[42,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[42,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[42,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[42,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[43,1,1,"c.grn_column_create"],grn_column_index:[43,1,1,"c.grn_column_index"],grn_column_index_update:[43,1,1,"c.grn_column_index_update"],grn_column_name:[43,1,1,"c.grn_column_name"],grn_column_rename:[43,1,1,"c.grn_column_rename"],grn_column_table:[43,1,1,"c.grn_column_table"],grn_column_truncate:[43,1,1,"c.grn_column_truncate"],grn_command_version:[44,2,1,"c.grn_command_version"],grn_content_type:[45,2,1,"c.grn_content_type"],grn_ctx:[46,2,1,"c.grn_ctx"],grn_ctx_at:[46,1,1,"c.grn_ctx_at"],grn_ctx_close:[46,1,1,"c.grn_ctx_close"],grn_ctx_db:[46,1,1,"c.grn_ctx_db"],grn_ctx_fin:[46,1,1,"c.grn_ctx_fin"],grn_ctx_get:[46,1,1,"c.grn_ctx_get"],grn_ctx_get_command_version:[46,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[55,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[46,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[46,1,1,"c.grn_ctx_init"],grn_ctx_open:[46,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[46,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[46,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[55,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[46,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[46,1,1,"c.grn_ctx_use"],grn_db:[47,2,1,"c.grn_db"],grn_db_create:[47,1,1,"c.grn_db_create"],grn_db_create_optarg:[47,2,1,"c.grn_db_create_optarg"],grn_db_open:[47,1,1,"c.grn_db_open"],grn_db_recover:[47,1,1,"c.grn_db_recover"],grn_db_touch:[47,1,1,"c.grn_db_touch"],grn_encoding:[48,2,1,"c.grn_encoding"],grn_encoding_parse:[48,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[48,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[49,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[49,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[49,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[49,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[49,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[49,1,1,"c.grn_expr_append_op"],grn_expr_close:[49,1,1,"c.grn_expr_close"],grn_expr_compile:[49,1,1,"c.grn_expr_compile"],grn_expr_create:[49,1,1,"c.grn_expr_create"],grn_expr_exec:[49,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[49,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[49,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[49,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[49,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_cursor_next:[50,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[50,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[50,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[50,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[50,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[44,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[48,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[55,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[41,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[51,2,1,"c.grn_hook_entry"],grn_ii:[52,2,1,"c.grn_ii"],grn_ii_buffer:[52,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[52,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[52,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[52,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[52,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[53,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[53,1,1,"c.grn_index_cursor_open"],grn_info_type:[54,2,1,"c.grn_info_type"],grn_obj:[56,2,1,"c.grn_obj"],grn_obj_add_hook:[51,1,1,"c.grn_obj_add_hook"],grn_obj_check:[56,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[56,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[56,1,1,"c.grn_obj_close"],grn_obj_column:[56,1,1,"c.grn_obj_column"],grn_obj_db:[47,1,1,"c.grn_obj_db"],grn_obj_defrag:[56,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[56,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[51,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[56,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[54,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[51,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[54,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[51,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[56,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[56,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[56,1,1,"c.grn_obj_get_values"],grn_obj_id:[56,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[56,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[56,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[56,1,1,"c.grn_obj_lock"],grn_obj_name:[56,1,1,"c.grn_obj_name"],grn_obj_path:[56,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[56,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[56,1,1,"c.grn_obj_reinit"],grn_obj_remove:[56,1,1,"c.grn_obj_remove"],grn_obj_rename:[56,1,1,"c.grn_obj_rename"],grn_obj_search:[58,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[54,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[57,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[54,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[56,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[56,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[56,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[62,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[63,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[63,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[63,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[63,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[63,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[63,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[63,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[63,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[63,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[63,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[63,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[63,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[63,1,1,"c.grn_plugin_win32_base_dir"],grn_proc_create:[57,1,1,"c.grn_proc_create"],grn_proc_func:[57,2,1,"c.grn_proc_func"],grn_proc_get_info:[57,1,1,"c.grn_proc_get_info"],grn_proc_type:[57,2,1,"c.grn_proc_type"],grn_search_optarg:[58,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[44,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[48,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[55,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[41,1,1,"c.grn_set_lock_timeout"],grn_table_add:[59,1,1,"c.grn_table_add"],grn_table_at:[59,1,1,"c.grn_table_at"],grn_table_columns:[59,1,1,"c.grn_table_columns"],grn_table_create:[59,1,1,"c.grn_table_create"],grn_table_cursor:[60,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[60,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[60,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[60,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[60,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[60,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[60,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[60,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[60,1,1,"c.grn_table_cursor_table"],grn_table_delete:[59,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[59,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[59,1,1,"c.grn_table_difference"],grn_table_get:[59,1,1,"c.grn_table_get"],grn_table_get_key:[59,1,1,"c.grn_table_get_key"],grn_table_group:[59,1,1,"c.grn_table_group"],grn_table_group_flags:[59,2,1,"c.grn_table_group_flags"],grn_table_group_result:[59,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[59,1,1,"c.grn_table_lcp_search"],grn_table_rename:[59,1,1,"c.grn_table_rename"],grn_table_setoperation:[59,1,1,"c.grn_table_setoperation"],grn_table_size:[59,1,1,"c.grn_table_size"],grn_table_sort:[59,1,1,"c.grn_table_sort"],grn_table_sort_flags:[59,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[59,2,1,"c.grn_table_sort_key"],grn_table_truncate:[59,1,1,"c.grn_table_truncate"],grn_table_update:[59,1,1,"c.grn_table_update"],grn_table_update_by_id:[59,1,1,"c.grn_table_update_by_id"],grn_type_create:[61,1,1,"c.grn_type_create"],grn_user_data:[62,2,1,"c.grn_user_data"],script:[114,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[47,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[47,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"000x":13,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"0\u306e\u79d2\u8868\u8a18":167,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":51,"0\u30d9\u30fc\u30b9\u3067":[59,60],"0\u30ea\u30ea\u30fc\u30b9":29,"0\u4ee5\u4e0a18":155,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"0\u4ee5\u4e0a4":155,"0\u4ee5\u4e0a65":155,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":113,"0mq":36,"0x0":[34,155,170],"0x01":164,"0x02":164,"0x04":164,"0x08":164,"0x10":164,"0x20":136,"0xc7":164,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":155,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":112,"10041\u756a":113,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":113,"10043\u756a":113,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":167,"100x100":124,"100x150":125,"1024r":8,"1073741824\u306e\u6574\u6570\u3067":67,"10m":115,"10t13":[147,148,150],"10t22":148,"10z":137,"128452975x503157902":[170,172,177,180],"128487316x502920929":[172,180],"128515259x503187188":[172,180],"1285858800\u306f2010":167,"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"128mb":35,"12gb":168,"135960000x":123,"13\u7528rpm\u306e\u63d0\u4f9b":31,"143660000x419009000":123,"145508000x":123,"146249000x":176,"146566000x":[123,176],"146607190x":176,"146710080x":176,"146741340x":176,"146867000x":176,"150x100":125,"152489000x":176,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":76,"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"16gb":168,"16gib":154,"175904000x8464000":123,"185428000x":123,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":155,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":99,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":71,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":60,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":33,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":71,"1\u3068command":71,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":51,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":114,"1\u30ea\u30ea\u30fc\u30b9":29,"1\u5358\u8a9e\u6271\u3044":165,"1\u884c\u76ee":114,"1_all":8,"1byte":164,"1st":121,"1x139":170,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"200byte":133,"20km":176,"21th":36,"23t02":137,"24byte":164,"256gbyte":28,"256gib":28,"256kb":168,"256kib":154,"257662232kbyte":114,"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":155,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":8,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":71,"2\u30ea\u30ea\u30fc\u30b9":29,"2\u884c\u76ee":114,"2byte":[74,164],"2nd":99,"2rd":99,"2st":99,"30ac":140,"314e":137,"32bit":36,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"32gib":154,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":165,"3\u30ea\u30ea\u30fc\u30b9":29,"3\u884c\u76ee":114,"3rd":[36,99],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"4096byte":[28,151],"4097byte":151,"436218z":137,"44001770019531e":143,"45ea3034":139,"4\u30ea\u30ea\u30fc\u30b9":29,"4\u884c\u76ee":114,"4byte":164,"4e86e700":168,"4gbyte":28,"4gib":[151,164],"4th":99,"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"5367431640625e":143,"56058502197266e":143,"56880000x":123,"59\u74b0\u5883\u306b\u304a\u3044\u3066":33,"5\u30ea\u30ea\u30fc\u30b9":29,"5th":99,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"648\u4ee5\u4e0a2":155,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"6813819x139":[170,180],"6909211x139":180,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":8,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":8,"6\u30ea\u30ea\u30fc\u30b9":29,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":10,"6elz":37,"6gib":154,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":155,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":155,"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"768\u4ee5\u4e0a32":155,"7\u30ea\u30ea\u30fc\u30b9":29,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"808\u4ee5\u4e0a9":155,"80ghz":114,"82pre":38,"8\u306b\u5bfe\u5fdc":31,"8\u307e\u3067\u306e\u6570\u5024\u304c\u6307\u5b9a\u53ef\u80fd\u3067":113,"8\u30ea\u30ea\u30fc\u30b9":[8,29],"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"8byte":164,"93933868408203e":143,"975mbyte":114,"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":8,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":8,"\u3042\u308a\u307e\u305b\u3093":[90,93,100,101,104],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":124,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[124,125],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":7,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":71,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":6,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":6,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":71,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":7,"\u3044\u307e\u3059":6,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":31,"\u304a\u3070\u305f\u3055\u3093":30,"\u304a\u3088\u3073":8,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":53,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":113,"\u304bwgs84geopoint":[124,125],"\u304c\u3042\u308a\u307e\u3059":[8,116],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":31,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":165,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":132,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":124,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":59,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":59,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":59,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[43,59],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u304c\u8fd4\u3055\u308c\u307e\u3059":56,"\u3050\u308b\u3093\u304c":[136,137],"\u3050\u308b\u3093\u304c\u592a\u90ce":172,"\u3050\u308b\u3093\u304c\u6b21\u90ce":172,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":6,"\u3053\u3053\u3067\u306f":167,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":8,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":167,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":8,"\u3053\u3053\u3067\u3082":167,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":6,"\u3053\u306e\u3068\u304d":165,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":167,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":167,"\u3053\u306e\u3088\u3046\u306bn":167,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":167,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":114,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":114,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":165,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":167,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":8,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":113,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":114,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":99,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":8,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":113,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":7,"\u3053\u306e\u4f5c\u696d\u306f":8,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":8,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":8,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":114,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":167,"\u3053\u306e\u5834\u5408":60,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":167,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":167,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":167,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":167,"\u3053\u306e\u64cd\u4f5c\u306f":59,"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":167,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":165,"\u3053\u306e\u7d50\u679c\u306f":114,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":165,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":124,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":8,"\u3053\u308c\u3067":8,"\u3053\u308c\u306b\u3088\u308a":8,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":8,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":8,"\u3053\u308c\u306b\u5bfe\u3057\u3066":165,"\u3053\u308c\u306f":167,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":67,"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":116,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":7,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":8,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":114,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":71,"\u3057\u304b\u3057":[155,165,167],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":8,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":6,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":165,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":8,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":114,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":71,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":114,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":10,"\u3059\u308b\u3068":10,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":31,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":6,"\u3059\u308b\u3068groonga":8,"\u305d\u3053\u3067":167,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":8,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u305d\u306e\u305f\u3081":[8,85,114,165,167,178],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":8,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":155,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":155,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":155,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":71,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":8,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":8,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":114,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":51,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":8,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":71,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":113,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":71,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":71,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":60,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":7,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":6,"\u305d\u306e\u969b":8,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":59,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":59,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":56,"\u305d\u308c\u305e\u308c":10,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":113,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":165,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":165,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":7,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":165,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":56,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":167,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":165,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":56,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":56,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":7,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":112,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":112,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"\u305d\u308c\u3092\u65e7ji":60,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":101,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":61,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":155,"\u305f\u3060\u3057":[60,67,113,116,165],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":30,"\u305f\u3068\u3048\u3070":165,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":71,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":167,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":167,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":8,"\u3060\u3068\u539f\u56e0\u306f":6,"\u3064\u307e\u308atest":8,"\u3066\u3057\u307e\u3044\u307e\u3059":6,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":167,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":7,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":7,"\u3067\u3042\u308c\u3070":114,"\u3067\u3059\u306d":6,"\u3067\u306f\u306a\u304ffree":31,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":8,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":167,"\u3067\u306f\u6607\u9806":59,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":59,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":46,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":167,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":113,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":167,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":167,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":31,"\u3067\u4f5c\u6210\u3057\u305f":46,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":113,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u3067\u533a\u5207\u308a\u307e\u3059":113,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":67,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":78,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":114,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":31,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":60,"\u3067\u78ba\u4fdd\u3057\u305f":46,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":46,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":46,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":56,"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":31,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":165,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":165,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":167,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":114,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":114,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":114,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":114,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":6,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":165,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":155,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":165,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":114,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":8,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":8,"\u3068\u306a\u308a":167,"\u3068\u308a\u3068\u3093":[136,137],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":114,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":167,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":167,"\u3068\u5171\u306b":43,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":56,"\u3068\u540c\u3058\u610f\u5473":113,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":30,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":124,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":8,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":6,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":6,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":165,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":114,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":56,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":56,"\u306b\u3042\u308b":56,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":60,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":60,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":8,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":8,"\u306b\u306a\u308a\u307e\u3059":46,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":76,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":104,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":46,"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":116,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":155,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":116,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":165,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":167,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":167,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":113,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":114,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":114,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":113,"\u306b\u8a2d\u5b9a\u3059\u308b":8,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":114,"\u306e2\u5358\u8a9e\u6271\u3044":165,"\u306e3\u30d5\u30e9\u30b0\u306f":60,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[58,59,61],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[59,124,125],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":113,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u306e\u307b\u304b\u306b":155,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":60,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":113,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":113,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u306e\u30ab\u30e9\u30e0":[77,83],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[31,33],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":83,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":77,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":31,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":31,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":113,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":6,"\u306e\u5834\u5408\u306f":6,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":61,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":31,"\u306e\u66f4\u65b0":3,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":113,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":57,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":132,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":132,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":104,"\u306ebase_version\u306e\u66f4\u65b0":8,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":31,"\u306exml\u51fa\u529b\u5bfe\u5fdc":31,"\u306f\u306a\u304f":30,"\u306f\u7121\u52b9\u3067\u3042\u308a":60,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[59,60],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":56,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":167,"\u3072\u308d\u3042\u304d":178,"\u3072\u308d\u3086\u304d":178,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":8,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":43,"\u307e\u305f\u306f":114,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":113,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":113,"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":114,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":46,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":114,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":114,"\u307e\u305f\u540c\u6642\u306b":114,"\u307e\u305f\u901a\u5e38\u306f":155,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":59,"\u307e\u305fgroonga":114,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":101,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":71,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":6,"\u307e\u308d\u3086\u304d":178,"\u3080\u308b\u3093\u304c":[136,137],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u3082\u3057\u304f\u306f":[59,60,155],"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":114,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":114,"\u3082\u3057groonga":114,"\u3082\u3057test":114,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":178,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":71,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":6,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":8,"\u3086\u304d\u3072\u308d":178,"\u3088\u3063\u3066":155,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":124,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":114,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u308d\u3086\u304d":178,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":10,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":10,"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":85,"\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":31,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":53,"\u3092\u516c\u958b":31,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":8,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[114,116,155,167],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":78,"\u3092\u6307\u5b9a\u3057":[60,77,83],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":60,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":7,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":60,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":60,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":60,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":60,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":60,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":59,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,47,54,56,59,61,113,114],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[43,60],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":56,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":60,"\u3092\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":10,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":56,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":124,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u3092\u8a08\u7b97\u3059\u308b":30,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":6,"\u3092\u8fd4\u3057\u307e\u3059":[51,56,59,60],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":30,"\u3092\u8ffd\u52a0":[31,33],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":57,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":61,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":8,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":31,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":112,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":56,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":8,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[165,167],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":167,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":78,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":8,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":31,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":31,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":8,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":114,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":114,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":80,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":76,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":33,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":76,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":77,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":8,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[113,116],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":113,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":55,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":55,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[77,80,82,88,89,90,105],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[77,80,82,88,89,90,105],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":56,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":31,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":77,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":77,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":83,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":76,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":46,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":46,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":178,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":99,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":99,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":178,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":30,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":33,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":10,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":3,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":10,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":10,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":105,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":155,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":78,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":78,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u30ab\u30e9\u30e0\u540d1":99,"\u30ab\u30e9\u30e0\u540d\u306f":78,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":56,"\u30ab\u30e9\u30e0\u540dn":99,"\u30ab\u30e9\u30e0\u578b1":99,"\u30ab\u30e9\u30e0\u578bn":99,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":43,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\u30ab\u30ec\u30fc":165,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30ab\u30f3\u30de":85,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":99,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":99,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":30,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ad\u30fc":113,"\u30ad\u30fc\u304c":113,"\u30ad\u30fc\u30ef\u30fc\u30c9":32,"\u30af\u30a8\u30ea\u306e":167,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[3,4],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[3,4],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":7,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":99,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":30,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":93,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":31,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30b0\u30eb\u30fc\u30d7\u5316":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":67,"\u30b3\u30de\u30f3\u30c9":35,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":31,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":165,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":31,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":30,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":155,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":155,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":31,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":31,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":7,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":116,"\u30b3\u30de\u30f3\u30c9\u306f":116,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":113,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":116,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":31,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[18,37,39,46,70],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":71,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":113,"\u30b3\u30de\u30f3\u30c9\u540d":[113,116],"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":113,"\u30b3\u30df\u30c3\u30c8":8,"\u30b3\u30e1\u30f3\u30c8\u884c":114,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":31,"\u30b3\u30ed\u30f3":78,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":8,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":31,"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":71,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":32,"\u30b5\u30fc\u30d0":113,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":114,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":114,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":113,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":114,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":114,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":113,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":114,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":100,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":113,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30b7\u30a7\u30eb\u4e0a":114,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":113,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":33,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":114,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":113,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":113,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":116,"\u30b9\u30ec\u30c3\u30c9\u6570":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":114,"\u30b9\u30fc\u30d7":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":93,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":114,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":114,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":8,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":10,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":99,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":8,"\u30c0\u30e1\u30fc\u30b8":167,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":76,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":76,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":33,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":8,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":31,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":10,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":10,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":31,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":10,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":10,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":3,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":10,"\u30c6\u30b9\u30c8\u306f":10,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[3,4],"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":3,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":167,"\u30c6\u30fc\u30d6\u30eb":77,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":80,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":104,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":78,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":155,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":155,"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":105,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":67,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":104,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":60,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":60,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":104,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u540d":[77,83,104],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":104,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":155,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":104,"\u30c6\u30fc\u30d6\u30ebentry\u306b":78,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":82,"\u30c6\u30fc\u30d6\u30ebterm\u306b":78,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":76,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":30,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":8,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":76,"\u30c7\u30d5\u30a9\u30eb\u30c8":7,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[113,114],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":71,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":90,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":30,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":44,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":44,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":155,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[112,113],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":30,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":178,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":77,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":83,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":114,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f7f\u7528\u3059\u308b\u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u65b9\u5f0f\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":7,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u30b9\u30ad\u30fc\u30de\u3068\u7279\u5b9a\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30c7\u30fc\u30bf\u306e\u307f\u51fa\u529b":85,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u30c7\u30fc\u30bf\u578b":[18,39,103,123],"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":30,"\u30c7\u30fc\u30e2\u30f3":113,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30c8\u30e2\u3061\u3083\u3093":172,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[18,31],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[18,166],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":8,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":8,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":31,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":99,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":99,"\u30cb\u30c3\u30dd\u30f3":147,"\u30cb\u30db\u30f3":147,"\u30cb\u30db\u30f3\u30b4":147,"\u30cb\u30db\u30f3\u30b8\u30f3":147,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":113,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":76,"\u30d0\u30fc\u30b8\u30e7\u30f3":8,"\u30d0\u30fc\u30b8\u30e7\u30f30":29,"\u30d0\u30fc\u30b8\u30e7\u30f31":29,"\u30d1\u30a4\u30d7":78,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":116,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":31,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":31,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":33,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":3,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":112,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":7,"\u30d2\u30c3\u30c8\u6570":99,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":8,"\u30d3\u30eb\u30c9\u6642\u306etip":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":8,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":8,"\u30d4\u30ea\u30aa\u30c9":78,"\u30d5\u30a1\u30a4\u30eb":8,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":33,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":76,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":30,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":83,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":83,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":56,"\u30d6\u30ed\u30b0":3,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":155,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":31,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":32,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":10,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":8,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":71,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":71,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":113,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":113,"\u30d9\u30af\u30bf\u306e\u5024\u3092":31,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":30,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":8,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u30db\u30b9\u30c8\u540d\u3068":114,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[112,113],"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":155,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":56,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":80,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":155,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":31,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":30,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[31,33],"\u30e1\u30fc\u30c8\u30eb":124,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":7,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":155,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":8,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[3,4],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":6,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":6,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":6,"\u30e6\u30fc\u30b6\u540d":114,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":99,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":6,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":6,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":3,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":8,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":3,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":8,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[3,4],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u65e5":8,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":3,"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":8,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":31,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":7,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":7,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":30,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":33,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":32,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":89,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":90,"\u30ed\u30b0\u3092":8,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":8,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":31,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":90,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":114,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":114,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":90,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":90,"\u30ed\u30b0\u30ec\u30d9\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ed\u30b0\u51fa\u529b":89,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":113,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":88,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[88,113],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":77,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":113,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":83,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":155,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":165,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":43,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":178,"\u4e00\u65b9":167,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":56,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":56,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":56,"\u4e00\u822c\u7684\u306b\u306f":56,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":114,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":8,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":167,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":114,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":8,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":31,"\u4e0b\u8a18":60,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":76,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":101,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":30,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"\u4e0e\u3048":167,"\u4e16\u754c\u6e2c\u5730\u7cfb":155,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[124,125],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":7,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":85,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":76,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":101,"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":31,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":155,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":178,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[18,169],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":67,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":155,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":155,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":155,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":104,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":67,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":132,"\u4e8c":147,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":71,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":8,"\u4eac\u90fd":[165,167],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":90,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":71,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":116,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":80,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":8,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":114,"\u4ee5\u4e0b":114,"\u4ee5\u4e0b\u3067":167,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":7,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":7,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":165,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":99,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":85,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":165,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":167,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":167,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":113,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[8,10],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":56,"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":155,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":8,"\u4ee5\u5916\u306e\u5834\u5408\u306f":99,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":8,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":113,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":113,"\u4ee5\u964d\u3092\u7121\u8996":31,"\u4ef6\u6570":99,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":155,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":113,"\u4efb\u610f\u306edb\u540d":114,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":33,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":33,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":114,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":8,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":47,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":113,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":8,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":78,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":78,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":46,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":71,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":71,"\u4f8b":[8,18,30,56],"\u4f8b\u3048\u3070":[56,113,114,165,167,178],"\u4fee\u6b63":29,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":71,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":167,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"\u5024":113,"\u50241":[113,116],"\u50242":[113,116],"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":56,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":113,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u5024\u306e\u7bc4\u56f2\u306f1":67,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":56,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":116,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[54,56],"\u5065\u4f5c":172,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":7,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":178,"\u5165\u529b":[77,88,90,104],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":114,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":114,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":82,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":60,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":167,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5185\u8a33\u306f":167,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":59,"\u5185\u90e8\u7684\u306a\u5909\u66f4":8,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":124,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":6,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":167,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":99,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":51,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":67,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":99,"\u51e6\u7406\u6642\u9593":99,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":114,"\u51e6\u7406\u958b\u59cb\u6642\u9593":99,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":114,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":114,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":85,"\u5206\u5272":165,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":10,"\u5217\u6307\u5411\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":113,"\u521d\u671f\u5024\u306f10\u3067\u3059":112,"\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u521d\u671f\u5316\u3059\u308b":46,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u521d\u671f\u5316\u6e08\u307f\u306e":47,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u5225\u9014deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u6700\u65b0\u7248\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":8,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":167,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":6,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":67,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":31,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":31,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,105],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":80,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":8,"\u524d\u63d0\u6761\u4ef6":3,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":30,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":167,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u529b":[89,100],"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":71,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":8,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":85,"\u534a\u5f84":124,"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":60,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u5358\u4f4d":[61,124],"\u5358\u72ec\u306e\u5024":43,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":124,"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":178,"\u539f\u56e0":[18,166],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":8,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":8,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":114,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":6,"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":155,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":56,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":56,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":56,"\u53f3\u4e0a":30,"\u53f3\u4e0b":30,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":31,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":114,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":114,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":7,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":114,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":76,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":99,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":114,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":76,"\u540c\u3058\u3067\u3059":114,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":71,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":167,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[18,166],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":71,"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":78,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":114,"\u540c\u6642\u306b":5,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":60,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":33,"\u540d\u524d":[18,39],"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[43,56],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":56,"\u5426\u5b9a":7,"\u542b\u3081\u306a\u3044\u3082\u306e":8,"\u542b\u3081\u308b\u3082\u306e":8,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":54,"\u547c\u51fa\u5074\u3067\u6e96\u5099":54,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[43,56,59],"\u554f\u984c\u3042\u308a":33,"\u554f\u984c\u306fgroonga":114,"\u554f\u984c\u3092\u4fee\u6b63":31,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":8,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":6,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u578b":61,"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[18,39],"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":43,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":53,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":59,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":178,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":8,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":57,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":8,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":44,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":59,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":3,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":112,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":59,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":85,"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":30,"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":59,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":59,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":59,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":167,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":113,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":67,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":78,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":43,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":46,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":155,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":112,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5b9f\u884c\u3067\u304d\u307e\u3059":8,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":59,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":51,"\u5b9f\u884c\u4f8b":[10,71],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":7,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":114,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u5b9f\u9a13\u7684":29,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":56,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":59,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[56,59],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":59,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":59,"\u5bfe\u7b56\u65b9\u6cd51":[18,166],"\u5bfe\u7b56\u65b9\u6cd52":[18,166],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[77,83],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[77,83],"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":112,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":60,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56,59],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":59,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[53,60],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,47,51,54,56,57,62],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56,59,60],"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":155,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u5de6\u4e0a":30,"\u5de6\u4e0b":30,"\u5dee\u5206\u3092":114,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":155,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":155,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":124,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":125,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":71,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":114,"\u5f15\u6570\u3068\u3057\u3066":7,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":116,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":7,"\u5f15\u6570\u540d":[113,116],"\u5f15\u6570\u540d1":[113,116],"\u5f15\u6570\u540d2":[113,116],"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":113,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":56,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":71,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":56,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":56,"\u5f62\u5f0f":116,"\u5f62\u5f0f1":[113,116],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":113,"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":116,"\u5f62\u5f0f2":[113,116],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":113,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":178,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"\u5f93\u3063\u3066":99,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":7,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":7,"\u5fa9\u53f7\u3057\u305f\u9375":8,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":8,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":7,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":30,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":78,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":104,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":104,"\u611f\u8b1d":29,"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[77,80,82,88,89,90,105],"\u623b\u308a\u5024\u3067\u3042\u308b":53,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":53,"\u624b\u7d9a\u304d":57,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u62c5\u5f53\u8005":8,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":114,"\u62e1\u5f35\u5b50\u306f":114,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":114,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":114,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":76,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":122,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":122,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":31,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":30,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":7,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":114,"\u6307\u5b9a\u3059\u308b":47,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":124,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":114,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":100,"\u63a5\u7d9a\u3059\u308bgroonga":114,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":114,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":114,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u63d0\u6848\u3092\u884c\u3046":31,"\u6539\u826f":29,"\u6539\u884c\u6587\u5b57\u306f":113,"\u6570\u304c\u5927\u304d\u3044\u307b\u3069\u591a\u304f\u306e\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":113,"\u6570\u5024":165,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":30,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":124,"\u6570\u5b57":114,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":167,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":99,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":113,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":56,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":59,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":6,"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":113,"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3059\u308b\u6642\u306e\u307f\u6709\u52b9\u3067\u3059":113,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":90,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":47,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":59,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":8,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":90,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":47,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":59,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":59,"\u65e5\u3005":6,"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":155,"\u65e5\u672c":147,"\u65e5\u672c\u4eba":147,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[124,125],"\u65e5\u672c\u8a9e":147,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":8,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":155,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":31,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":71,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":6,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":30,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u6700\u5f8c\u306b":167,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":8,"\u6700\u5f8c\u306e":114,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":47,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":99,"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":167,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":7,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":7,"\u6771\u4eac":[165,167],"\u6771\u4eac\u90fd":[165,167],"\u6771\u4eac\u90fd\u6c11":[165,167],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":167,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":59,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":155,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u68ee\u7530":172,"\u691c\u7d22":[18,31,35,99,163],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":7,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":46,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":18,"\u691c\u7d22\u306e\u6319\u52d5":18,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":165,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":167,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":55,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":55,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":165,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":165,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":82,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":167,"\u691c\u7d22\u4f8b1":3,"\u691c\u7d22\u4f8b2":3,"\u691c\u7d22\u4f8b3":3,"\u691c\u7d22\u4f8b4":3,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":99,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":51,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":67,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":7,"\u691c\u7d22\u5bfe\u8c61\u306e":167,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":7,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":165,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":178,"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":99,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":155,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[82,113],"\u691c\u7d22\u7d50\u679c":99,"\u691c\u7d22\u7d50\u679c1":99,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":165,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":99,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":99,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":7,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":7,"\u691c\u7d22\u7d50\u679cn":99,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":124,"\u697d\u3057":[165,167],"\u697d\u3057\u3044billiard":[165,167],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":46,"\u69cb\u9020\u4f53\u306e\u914d\u5217":57,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":53,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":3,"\u6a19\u6e96":[77,88,90,104],"\u6a19\u6e96\u5165":[89,100],"\u6a19\u6e96\u5165\u529b":[76,78,80,82,83,85,93,101,105],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":113,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":113,"\u6b21\u306b":7,"\u6b21\u306bgroonga\u306etest":8,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":71,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":8,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":8,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":8,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":101,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":71,"\u6bb5\u843d\u60c5\u5831":43,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u6c11":165,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":6,"\u6c38\u7d9a\u7684\u306a":56,"\u6ce8\u610f":59,"\u6df1\u523b":167,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":7,"\u6e2c\u5730\u7cfb":155,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":155,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":7,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":56,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":8,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":52,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":10,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":8,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":116,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":114,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":76,"\u73fe\u5728":90,"\u73fe\u5728\u306f":[112,114],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":8,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":114,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":114,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":57,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":130,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":130,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":71,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":10,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":10,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":8,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":76,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":8,"\u7591\u4f3c\u30ab\u30e9\u30e0":67,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":132,"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":155,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":8,"\u79d2":56,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":155,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"\u7a7a\u306e\u5834\u5408":[77,83],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":155,"\u7a7a\u767d":113,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":167,"\u7a7a\u767d\u3084":113,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":116,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":56,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":167,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":167,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":47,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"\u7d44\u8fbc\u578b":[18,39],"\u7d44\u8fbc\u95a2\u6570\u306f":[122,124,125,130,132],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":155,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":155,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":155,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":56,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":59,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u7d9a\u3044\u3066":167,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":99,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth\u304c\u5fc5\u8981\u3067\u3059":8,"\u7de8\u96c6\u8ddd\u96e2":30,"\u7def\u5ea6\u306f":155,"\u7e70\u308a\u8fd4\u3057\u6570":114,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":114,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":114,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":8,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":8,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":8,"\u811a\u6ce8":[80,124,125,155],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":6,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":114,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":114,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":114,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":67,"\u826f\u3044\u306e\u304b":6,"\u826f\u3044\u4f8b":6,"\u82b1\u5b50":172,"\u884c":10,"\u884c\u3059\u308b":8,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":114,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":116,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":6,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":59,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":8,"\u8a18\u53f7":[113,167],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":31,"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":165,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[88,89],"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":113,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":30,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":30,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":56,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":60,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":114,"\u8a73\u7d30\u306f":[10,116,167],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u8a9e":76,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":8,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":124,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":124,"\u8aac\u660e":[18,39],"\u8ad6\u7406\u548c":7,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":7,"\u8ad6\u7406\u7a4d":7,"\u8b66\u544a\u3092\u9664\u53bb":31,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":71,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":31,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":124,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":43,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":31,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":76,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u306e\u5c5e":78,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":8,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":113,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":113,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":8,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":67,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":167,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":167,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":167,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":6,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":165,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":165,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":165,"\u90fd":[165,167],"\u90fd\u6c11":[165,167],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":47,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":47,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":8,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":83,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":77,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":31,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[77,83],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":6,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":33,"\u95a2\u4fc2\u5f0f":3,"\u95a2\u4fc2\u5f0f\u306f":7,"\u95a2\u6570":10,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":57,"\u95a2\u6570\u304c\u5f15\u6570\u3092":30,"\u95a2\u6570\u306e\u8ffd\u52a0":30,"\u95a2\u6570\u306f":[7,122,124,125,132],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":130,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":7,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":165,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u95be\u5024\u3092\u3042\u3052\u308b":[18,166],"\u95be\u5024\u3092\u8d8a\u3048\u308b":167,"\u9759\u7684\u89e3\u6790":3,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":165,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":165,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[165,167],"\u975e\u4e92\u63db":33,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":8,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":113,"\u99c4\u76ee\u306a\u4f8b":6,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":7,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":5,"\uff4d\uff59\uff53\uff51\uff4c":[126,127],"_avg":99,"_dataset":[117,119],"_id":[37,43,56,67,69,72,81,84,85,99,102,109,121,136,137,138,140,147,148,150,152,167,171,172,173,175,177,178,179,180],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":67,"_kei":[35,36,37,43,56,67,69,72,79,81,84,85,86,99,102,106,109,115,121,123,128,134,136,137,140,147,148,150,152,154,159,170,171,172,173,175,176,177,178,179,180],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":30,"_max":99,"_min":99,"_name":103,"_nsubrec":[37,43,67,99,171,172,176],"_post":8,"_score":[33,35,36,43,67,69,99,102,123,131,137,147,148,150,167,172,173,175,176,180],"_set_valu":34,"_sum":99,"_valu":[36,37,43,67,99],"a\u3092\u6307\u5b9a\u3057\u3066tabl":59,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":113,"akio\u3055\u3093":31,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":31,"akio\u3055\u3093\u304c\u5831\u544a":31,"akio\u3055\u3093\u304c\u63d0\u6848":31,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":8,"apt\u306e\u5834\u5408":8,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"aramaki\u3055\u3093":31,"aramaki\u3055\u3093\u304c\u5831\u544a":31,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":8,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":7,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":59,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":59,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":8,"base_version\u306ftar":8,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":114,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":114,"benchmark\u304c\u52d5\u4f5c\u3057":114,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":114,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":114,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":114,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":114,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":114,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":114,"benchmark\u306f":114,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":114,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":114,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":114,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":114,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":114,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":114,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":114,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":114,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":114,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":114,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":114,"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":165,"blog_body\u7d22\u5f15":167,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":8,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":167,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"bom\u4ed8\u304dutf":31,"boolean":[18,36,38,136],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":10,"break":[33,35,37,111],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":43,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":43,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":56,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":8,"build\u3092\u7528\u3044\u3066":10,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":8,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":47,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"builtin_type_names\u306b\u306f":47,"byte":[33,35,36,37,43,46,49,56,57,59,61,63,73,99,133,164],"byte\u9577":[43,56,59],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":7,"case":[24,33,36,37,42,46,47,63,69],"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":124,"centos\u306e\u5834\u5408":8,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"char":[37,43,46,47,48,49,56,57,59,61,63],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":10,"check\u30b3\u30de\u30f3\u30c9\u306f":76,"chroot\u74b0\u5883\u306e":8,"class":[126,127,128,133],"clearlock\u306f":77,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":8,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":8,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":8,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":7,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":43,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":43,"column\u306e\u5024\u304c":7,"column\u306f":43,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":43,"column_create\u306f":78,"column_list\u30b3\u30de\u30f3\u30c9":30,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":80,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":5,"com\u304cedge\u3092\u4f5c\u308b":5,"com\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":8,"com\u306edoc":8,"com\u306f1\u30b9\u30ec\u30c3\u30c9":5,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":46,"command_version\u3092\u8fd4\u3057\u307e\u3059":46,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":8,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":31,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":71,"configure\u306e":33,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":10,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":101,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":8,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":3,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":3,"const":[34,43,46,47,48,49,56,57,59,60,61,63],"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":101,"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":10,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":46,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":43,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":56,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":59,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":46,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":46,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":46,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":46,"ctx_new\u3068\u3044\u3046queue\u306b":5,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":60,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":60,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":53,"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":60,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":10,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":10,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":8,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":10,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":3,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":8,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":8,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":32,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":56,"db\u3068\u306a\u308a\u307e\u3059":47,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":113,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[104,113],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":104,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":113,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":59,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":47,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":56,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":46,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":46,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"db_api\u306f":7,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":7,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":167,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":10,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":33,"debian\u7cfb":8,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":8,"debian\u7cfb\u3082\u3057\u304f\u306fr":8,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"debug\u3092\u8ffd\u52a0":31,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":31,"default":[0,14,19],"define_selector\u306f":82,"defrag\u306f":83,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"delete\u30b3\u30de\u30f3\u30c9":30,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":56,"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":71,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":71,"description\u306b":165,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":71,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":114,"dist\u3067\u751f\u6210\u3057\u305ftar":8,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":8,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":8,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":8,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":31,"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u7d50\u679c":99,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":99,"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":85,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":85,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":85,"dump\u30b3\u30de\u30f3\u30c9":30,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":5,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":5,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":5,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":5,"edge\u306fctx\u3092\u542b\u3080":5,"encoding\u306e\u5024\u304c":33,"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":78,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"export":[14,33,36,37],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":56,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":62,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":57,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":31,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":31,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":31,"files\u306e\u5b9f\u884c":3,"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":8,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":31,"final":[63,69,99,115],"flags\u306b":[43,59],"flags\u306b\u306f":59,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":78,"float":[35,72,99,123],"fork\u3059\u308b\u70b9\u304c\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3068\u7570\u306a\u308b":113,"function":[0,8,10,18,35,36,37,38,39,46,63,72,115,118],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":8,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":10,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":10,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":31,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":30,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":31,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":112,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":116,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":8,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":3,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":112,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":112,"gqtp\u306e\u5834\u5408":113,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":165,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":167,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":167,"grn_bool\u578b\u3092\u8ffd\u52a0":31,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":7,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":3,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":7,"grn_expr\u306f":7,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":7,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"grn_op_adjust\u306f":7,"grn_op_and\u306f":7,"grn_op_but\u306f":7,"grn_op_or\u306f":7,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":7,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":99,"grnslap\u306f":112,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":31,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":31,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":8,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":8,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":8,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":8,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":8,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":155,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":30,"groonga\u306b\u306fhtml":116,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":3,"groonga\u306e\u30ab\u30e9\u30e0\u306f":155,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":8,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":155,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":67,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":7,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":113,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":10,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":8,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":31,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":8,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":8,"groonga\u306e\u7d44\u8fbc\u578b\u304b":78,"groonga\u306epackag":8,"groonga\u306f":10,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":7,"groonga\u306f\u5217\u6307\u5411\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u9ad8\u901f\u3067\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb\u306a\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3067\u3059":113,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[165,167],"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":167,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":7,"groonga\u3084mysql\u306erpm":8,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":6,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":6,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":114,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":8,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":8,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":71,"groonga\u3092build\u3059\u308b\u969b\u306b":101,"groonga\u30b3\u30de\u30f3\u30c9\u304bc\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u901a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":114,"groonga\u30b3\u30de\u30f3\u30c9\u306b":31,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":113,"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":113,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":116,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":31,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":114,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":7,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":7,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":7,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":71,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":8,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":101,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":101,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":93,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":113,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":112,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":101,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[101,113],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":101,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":112,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":76,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":71,"groonga\u5358\u4f53\u3067test":114,"groonga\u53ca\u3073groonga":114,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":71,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":114,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":112,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":114,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":76,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":77,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":78,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":80,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":85,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":88,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":90,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":93,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":100,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":101,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":104,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":122,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":124,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":125,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":130,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":132,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":3,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":6,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_clone_dir\u306b\u3066autogen":8,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":8,"groonga_github_com_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":8,"groonga_github_com_path\u306bgroonga":8,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":32,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":8,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":8,"gz\u306eversion\u304a\u3088\u3073vers":8,"hat\u7cfb":8,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":8,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"help\u3067\u51fa\u529b\u3055\u308c\u308b":33,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":10,"hiroshi\u3055\u3093":31,"hiroshi\u3055\u3093\u304c\u5831\u544a":31,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":33,"homebrew\u306e\u66f4\u65b0":3,"homebrew\u3078pul":8,"hook\u306e\u5b9f\u884c\u9806\u4f4d":51,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":51,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":114,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":8,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":113,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":112,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":31,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":116,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":116,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"http\u306e\u5834\u5408":113,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":116,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":113,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"http\u30b5\u30fc\u30d0\u30fc":[18,37,39,110,115],"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":116,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":31,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":56,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":46,"import":[0,8,24,33,35,36,42,46,69,70,99,103,107,115,136,145,159,174],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":43,"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":53,"indexbuf\u306e\u30b5\u30a4\u30ba":43,"init\u76f4\u5f8c\u306e\u72b6\u614b":46,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":112,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":114,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":8,"int":[35,41,42,43,46,47,49,50,51,52,53,55,56,57,59,60,61,63,143],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":114,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":116,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":8,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":31,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":33,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":60,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"key\u306b\u306f":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":59,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":59,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":60,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":59,"key\u3092\u8fd4\u3057\u307e\u3059":56,"key_type\u306bt":59,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":165,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":165,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":178,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":59,"keybuf\u306e\u30b5\u30a4\u30ba":59,"koi8r\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":8,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":33,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":31,"libedit\u5bfe\u5fdc":30,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":10,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"load\u30b3\u30de\u30f3\u30c9":30,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":8,"localstatedir\u3092\u4f7f\u7528":31,"log\u3067\u3059":113,"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":114,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":71,"log_level\u306f":88,"log_put\u306f":89,"log_reopen\u306f":90,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":90,"long":[36,37,52,55,96,103,111],"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":155,"lucid\u304b\u3089":31,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":8,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":31,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":33,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"man\u3092\u8ffd\u52a0":30,"marverick\u306b\u5909\u66f4":31,"masahiro\u3055\u3093":31,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":167,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":60,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":60,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":60,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":60,"max\u3068common":60,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":60,"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":60,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":30,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":31,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":33,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":10,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":60,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":60,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":60,"mooz\u3055\u3093":33,"mooz\u3055\u3093\u304c\u4fee\u6b63":33,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":56,"msg\u306fcom\u306b\u3088\u3063\u3066":5,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":5,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":59,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":30,"n_builtin_type_names\u306b\u306f":47,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":56,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":46,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":57,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":61,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":56,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":43,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[43,56,59],"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":59,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[43,56],"namebuf\u306e\u30b5\u30a4\u30ba":[43,56],"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":31,"new":[0,3,8],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":43,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":30,"null":[7,33,35,36,37,42,46,49,50,57,63,75,87,98,99,103,104,107,126,127,128,133],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":59,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[43,59],"null\u306a\u3089temporari":47,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":60,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":60,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":46,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":30,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":47,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":59,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":51,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":51,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":51,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":51,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":56,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":56,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":56,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":56,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":56,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":56,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":47,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":54,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":56,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":54,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":56,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":54,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":54,"obj\u306f":56,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":56,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":56,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":56,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":58,"obj\u3092lock\u3057\u307e\u3059":56,"obj\u3092unlock\u3057\u307e\u3059":56,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":56,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":62,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":51,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":51,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":51,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":57,"object\u578b\u306fv1":155,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":51,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":56,"offset\u306f":59,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":59,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":8,"ongaeshi\u3055\u3093":31,"ongaeshi\u3055\u3093\u304c\u5831\u544a":31,"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":58,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":43,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":114,"org\u304c\u30db\u30b9\u30c8\u3092":8,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":8,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":114,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":114,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":114,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":8,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":8,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":8,"output_columns\u304b\u3089_value\u3092\u524a\u9664":31,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":99,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"output_type\u306b\u306fjson":116,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":116,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":85,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":8,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":7,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":60,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":114,"path\u3092":31,"pc\u306bgroonga":32,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":30,"po\u306e\u5b9f\u884c":3,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":8,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":8,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":3,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":8,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[124,125],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":124,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":125,"point\u578b\u306e\u5024":[124,125],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[124,125],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":59,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":116,"public":[8,37],"push\u3057\u3066groonga":8,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":32,"quit\u306f":93,"rb\u3092\u8ffd\u52a0":31,"release\u306e\u5b9f\u884c":3,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":8,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":8,"repositories\u914d\u4e0b\u306b":8,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"request\u3092\u9001\u308a\u307e\u3057\u305f":8,"request\u3092\u9001\u308a\u307e\u3059":8,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":59,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":7,"return":[18,33,35,36,37,39,41,42,43,46,47,48,49,50,56,59,63,70,72],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":53,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":8,"root\u306b\u5909\u66f4":31,"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":116,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":113,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":8,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":8,"s3ki\u3055\u3093":31,"s3ki\u3055\u3093\u304c\u5831\u544a":31,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":10,"scorer\u306f":99,"scr\u3067\u3059":114,"scr\u306e\u4e2d\u8eab\u304c":114,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":114,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[122,124,125,130,132],"search\u3092\u884c\u3044":[59,60],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":60,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":43,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":43,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":114,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":30,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":71,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":31,"select\u30b3\u30de\u30f3\u30c9":30,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":114,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":114,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":8,"sh\u306e\u307f\u306a\u3089\u305a":10,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":10,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":8,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":10,"shibuya\u3055\u3093":31,"shibuya\u3055\u3093\u304c\u5831\u544a":31,"shimada\u3055\u3093":31,"shimada\u3055\u3093\u304c\u5831\u544a":31,"short":[69,115],"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":155,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":78,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":31,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"shutdown\u306f":100,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":33,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":59,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":59,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":8,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":10,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"static":[33,37,173],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":114,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":31,"status\u30b3\u30de\u30f3\u30c9":30,"status\u30b3\u30de\u30f3\u30c9\u306f":101,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":122,"string\u306b":7,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":33,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":33,"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":59,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":59,"table\u304c":59,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":43,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":59,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":60,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":59,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":59,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":59,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":59,"table\u306ecolumn":59,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":7,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":7,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":7,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":59,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":59,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":59,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":59,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":59,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":59,"table\u306fcolumn\u3068\u306f\u5225\u306b":59,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":59,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":178,"table_list\u306f":104,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":105,"takahiro\u3055\u3093":31,"takahiro\u3055\u3093\u304c\u5831\u544a":31,"takahiro\u3055\u3093\u304c\u63d0\u6848":31,"takashi\u3055\u3093":33,"takashi\u3055\u3093\u304c\u5831\u544a":33,"takuto\u3055\u3093":31,"takuto\u3055\u3093\u304c\u5831\u544a":31,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":114,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":155,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":8,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":53,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":167,"tokenbigram\u306a\u3069":167,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":167,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":165,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":165,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":167,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":165,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":167,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":167,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":32,"tokenmecab\u3067\u306f":167,"tokenmecab\u306e\u5834\u5408":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":167,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":31,"tomita\u3055\u3093\u304c\u5831\u544a":31,"tomotaka_ito\u3055\u3093":33,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":33,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":125,"true":[30,36,37,69,77,78,79,80,81,82,84,86,87,88,89,90,95,96,97,98,99,103,105,106,109,121,123,124,125,126,127,128,131,133,134,136,137,138,140,152,170,171,172,173,175,176,178,179,180],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":33,"try":[3,41,158,175,176],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":6,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":6,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":3,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":6,"twitter\u7de8":3,"txt\u306b\u307e\u3068\u3081\u307e\u3059":8,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":8,"txt\u306e\u5185\u5bb9":8,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":54,"ueno\u3055\u3093":[31,32],"ueno\u3055\u3093\u304c\u5831\u544a":32,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":31,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":31,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":10,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":30,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":57,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u306e\u4e2d\u306b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":7,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":7,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":7,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":7,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":10,"value\u304c\u5c5e\u3059\u308b\u578b":104,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":56,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"var":[7,24,57,63,79,111,113,115,162],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":71,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":8,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":71,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":31,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"void":[34,41,44,47,48,55,56,59,60,63],"web\u7ba1\u7406\u753b\u9762":30,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":33,"while":[0,35,36,81,87,107,138],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":33,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":114,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"windows\u5411\u3051":8,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"windows\u7cfb":8,"worker\u306f":5,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":5,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":5,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":8,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":8,"x\u3067\u306frealloc":31,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"x\u306e\u304a\u77e5\u3089\u305b":29,"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":116,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":8,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":8,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":8,"yum\u306e\u5834\u5408":8,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":8,aba:[171,173,180],abbrev:123,abcd:91,abl:133,abort:37,about:[2,13,14,15,16,17,18,19,20,21,22,23,24,25,26,29,33,34,35,36,37,41,63,69,70,72,73,74,75,78,79,81,84,87,91,92,96,97,98,99,102,106,107,108,109,115,120,123,131,134,136,137,139,142,145,147,148,150,154,159,168,169],abov:[13,17,24,27,35,96,99,103,115,118,121,128,131,134,140,145,147,148,150,171,173,175,176,179,180],absolut:95,acccess:162,accept:[0,33,35,37,73,96,109,118,121,123,137,159,173,175,176,177,179,180],access:[0,13,18,33,35,36,37,41,43,81,99,115,147,148,150,154,158],accessor:59,accident:36,accord:[123,170],accordingli:115,account:[2,37],accross:35,accuml:36,accumul:99,accur:[0,133],acquir:41,acronym:164,across:123,action:36,actual:[36,37,115,170,173],add:3,addit:[0,18,20,21,22,26,39,91,99,107],addition:180,additional_configure_opt:36,address:[33,35,113,118,177],address_is_in_us:164,address_is_not_avail:164,adjac:136,adjust:[36,37,69],admin:[31,33,35,36,37],admin_html:[33,113],administr:[18,35,37],advanc:[29,38,97,98],advantag:[0,133,162],affect:[35,36,37],afr:[171,173,180],after:[13,14,24,27,33,35,36,37,41,50,115,118,126,127,137,140,151,152,154,170,172,173,177],again:[37,41,115,138],against:[0,18,35,37,43,47,49,69,99,109,136,137,147,148,150,169,172],againt:99,agaist:35,ago:147,aim:36,aio:36,aki:37,akihabara:180,akinori:29,akio:[33,35,36],akira:37,alert:[37,88,89,115,139],algolithm:135,algorithm:[33,75,123],alic:[81,99,109,115,121,131,136,159,176],alisa:131,all:[0,13,24,33,35,37,43,50,69,73,75,79,81,86,87,95,97,98,99,103,106,107,109,115,121,135,136,137,138,139,140,147,150,151,152,154,159,164,173,176,179],all_record:35,alloc:[18,35,37,42,46,49,63,99,101,166],alloc_count:[101,115,143,173,177],allow:[0,21,35,119,133,173,177],allow_column:[99,136],allow_leading_not:99,allow_pragma:99,allow_upd:[99,136],almost:[33,99,154,168],alphabet:[37,99,103,107,148],alreadi:[37,41,63,86,107,119,138,154,173,175],also:[0,3,13,18,35,39,69],although:115,alwai:[0,37,72,79,99,102,115,136,137,147,154,164],amazon:99,amd64:8,among:[18,35,169,170,172],amount:35,analysi:[0,24,137],analyz:[0,33,35,115],ani:[0,20,24,86,91,97,98,99,102,106,107,115,126,127,131,133,134,136,145,159],anim:172,ann:8,annot:36,anonym:151,anoth:[0,35,49,99,145],api:[1,3,11],appear:[0,37,74,99,107,133,136,137,145,173],append:[35,49],apper:99,appl:140,appli:[38,49],applic:[0,16,33,37,115,133,137,145,159],approach:123,approv:37,approxim:[33,35,123],appveyor:37,april:8,apt:[8,14,17,21,26,35],aptitud:10,aramaki:33,arc:107,architectur:[0,8,37],archiv:[8,13,18,19,24],area:0,aren:[35,37,99,103,115,133,136,142,151,154,159],arg_list_too_long:164,argument1:137,argument2:137,argument:[33,35,36,37,46,63,123,126,127,128,131,133,134,137,173,175,177],arithmet:36,armhf:37,arnaud:33,around:[133,142],arrai:[33,35,37,69,72,76,79,91,92,99,103,107,108,133,136],arrang:173,art:[137,176],articl:175,articles2:175,articles_cont:175,arugment1:137,asami:36,asc:8,ascend:[99,142,171,173,180],ascii:[136,137],askmonti:37,assgin:137,assigend:136,assign:36,associ:[33,63,84,86,99,170,172,173],assum:[46,57,96],atsushi:37,attach:[13,140,152],attent:99,attr_setpshar:36,attribut:[91,92,107,108,128],atv:[171,173,180],auth_bas:[115,159],auth_basic_user_fil:[115,159],authent:158,author:115,auto:[35,37,102],autoconf:33,autogen:[8,13,35],automak:31,automat:[13,95,111,115,136,137,151,172,173],avail:[0,13,18,24,36,38,39,45,63,72,79,91,99,102,103,107,111],averag:[37,99],avg:[37,99,112],avoid:[18,36,37,99,166],awar:63,ayumu:37,back:[115,137],backslash:[36,49,136],backup:[47,85],backward:[35,37,109,159],bad:[0,36,37],bad_address:164,bad_file_descriptor:164,bar:103,base:[0,13,20,21,22,24,26,35,36,37,50,96,99,107,115,118,119,126,127,133,136,137,147,148,150,158,162,176,177],basebal:[172,175],bash:24,basi:173,basic:[0,18,35,37,99],batch:35,bc009774:8,becam:[37,162],becaus:[0,22,35,37,72,78,81,95,99,103,115,118,121,131,133,134,136,137,138,140,143,145,147,148,149,150,151,152,154,158,159,162,164,170,172,173,175,179],becom:[0,38,123,170],been:[8,81],befor:[24,34,35,69,75,95,99,115,145,147,148,149,170,173],before_instal:17,beforehand:22,begin:112,behav:[118,123],behavior:[35,37,121,131],behaviour:36,beijin:123,belong:[65,171],below:[9,81,86,136],benchmark:[18,35,36,37,39,110],benefit:162,bernard:29,best:0,beta:38,better:[0,37,99,137,175],between:[18,33,35,36,37,39,56,81,99,103,119,120],big:[37,115],bigram:[114,117,167],bill:[165,167],billiard:[165,167],bin:[14,24,27],binari:[0,1,18,27,35,36,37,72,115,137,143,155,159,169],bind:[16,17,33,35,38,113,126,127,135],binlib:8,bit:[17,19,20,21,22,25,26,27,99,114,136,137,170],black:[140,142],blank:140,block:[36,103,115,137,170],blog1:175,blog2:175,blog:[8,18,99,134,136,137,138,167,169,175],blog_bodi:167,blog_comment_index:134,blog_cont:134,blog_titl:173,blogroonga:3,blt:85,bob:[81,99,109,115,121,131,136,159,176],bodi:36,book:137,bookmark:69,bookmark_index:69,bool:[36,106,136,152,155,170,178],boost:147,border:[35,107,121],boston:176,both:[0,19,20,21,22,26,27,65,69,72,78,99,133,136,137,138,147,151,159,164,173,176,180],bottom:50,bottom_right:[33,125],bottom_right_point:50,bound:37,box:99,brasil:123,brasillia:123,brazil:171,brew:[14,23],bring:173,british:179,broadcast:176,broken:[33,35,36,37,43,47,87,111],broken_pip:164,brooklyn:176,brother:136,browser:[13,24,177],bsd:[24,33,37],buf_siz:[43,56,59],buffer:[36,49,52,56,76,175],bug:3,build:[0,8,10,14,17,18,19],buildabl:33,builder:52,built:[0,18,24,36,39,56,70,91,107,115,120,123],builtin:123,builtin_type_nam:47,bulk:49,bump:[29,36,37],bundl:[13,35,36,37,131],button:[13,35,36],bye:[99,106,136,137,152],cach:[0,30,35,36,42,56,75],cache_hit_r:[101,115,143,173,177],cache_limit:[18,39,70],cache_previ:42,calc_target:99,calc_typ:99,calcul:[35,36,37,97,99,118,123,142,176,180],call:[35,36,37,46,63,69,81,97,98,99,123,133,135],caller:57,calro:121,camp:176,can:[0,1,13,14,15,17,20,21,22,23,24,26,27,33,34,35,36,37,40,41,42,45,46,47,49,63,69,72,73,74,75,78,79,81,86,91,95,96,97,98,99,102,103,106,107,109,111,113,115,120,121,123,126,127,128,131,133,134,135,136,137,138,139,140,142,143,145,147,148,149,150,151,152,154,159,162,164,168,170,171,172,173,174,175,176,177,178,180],cancel:[37,73,96],cancel_request_is_accepted_or_not:96,candid:[102,118,147],candidate1:102,candidate2:102,candidate_1:118,candidate_2:118,candidate_n:118,cannot:[18,99,103,136,137,138,140,151,159,166],capit:173,caplit:[36,37],care:[13,79,99,136,147],carefulli:69,carlo:[81,109],cas_error:164,cascad:[36,37],cast:[33,34,35,36],categor:[99,106,107],caus:[33,35,36,37,103,136,137,170],ceekz:36,cenos6:35,center:[0,124],cento:[8,14,18,19],central:176,certain:180,cflag:[8,25],chain:134,chang:[0,14,24,33,34,35,36,37],charact:[0,33,35,36,37,49,63,91,99,103,107,113,126,127,133,136,137,139,140,145,148,173],charli:176,chart:33,check:[8,9,10,18,31,33,35,36,37,39,47,56,70,72,74],china:[123,171],choic:0,choos:[37,86,99,115,170],chracter:[103,133,140],chracterist:151,chroot:8,chunk:[76,154,168],circl:[0,142],cirit:115,citi:[123,142,176],clang:[10,29,35,36,37],clarifi:37,classif:171,clean:[8,10],clear:[8,33,35,37,43,56,87],clearlock:[18,35,37,39,70],click:99,clone:[3,8,9],close:[86,126,151],close_tag1:126,clumn:154,cmake:[24,27,29,35,36],cmp0014:37,code:[3,8,13,18,35,36,37,39,49,70,72],col1:56,col2:56,col3:56,collaps:35,colleagu:3,collect:[0,72,176],color:140,colum:[154,175],column1:[7,35,36,37,99,137],column2:[7,35,36,37,99,137],column_1:134,column_2:134,column_3:134,column_cr:[18,33,37,39,69,70],column_index:[37,69,78,79,99,121,126,127,131,133,134,136,137,138,152,154,167,172,173,175,176,179],column_inform:79,column_information1:79,column_information2:79,column_list:[18,31,33,35,37,39,70],column_list_head:79,column_n:134,column_nam:86,column_name1:86,column_name2:86,column_remov:[18,37,39,70],column_renam:[18,34,36,37,39,70],column_scalar:[78,79,81,84,85,87,99,106,109,121,123,126,127,128,131,133,134,136,137,138,152,154,167,171,172,175,176,179],column_vector:[36,37,69,78,79,84,99,134,170,172,176],columnn:35,com:[8,9,13,17,99,140,170,171,173,177,180],comamnd:159,combin:[0,35,37,99,103,121,131],combind:136,come:[142,176],comma:[86,137,170,171,173],command:[0,9,13,14,17,18,24,27,29,31,33,35,36,37,39,42,46,63,69],command_nam:177,command_vers:[71,101,115,116,126,127,128,133,143,173,177],commands_column_list:79,commands_column_renam:81,commands_table_cr:104,comment2:175,comment:[36,85,134,145,175],comment_cont:134,comment_index:176,comment_nam:134,comments2:175,comments_cont:175,comments_loc:176,commit:[13,37],commnad:[27,71],common:[26,33,35,59,60,99,103,135,136,137,151,175],commonli:0,compar:[0,35,37,99,133,136],comparison:[18,35],compat:[20,21,22,26,37,91,109,115,140,159],compil:[24,29,33,36,37],complet:[18,33,34,36,39,95,102,118,146],complex:[35,36,99,137],complianc:115,composit:140,compress:[24,33,35,36,37,78,158],compress_lzo:78,compress_zlib:78,comput:[35,63,137,147,148,150,154],conbin:[99,135],conbind:136,concaten:175,concatin:[35,36,118],concept:37,concret:[171,172,175],concurr:139,cond:36,condit:[18,28,35,36,49],conditin:136,condition1:137,condition2:137,conditional_probability_threshold:[33,102],condtion:136,conf:[115,154,162,168],config:[24,27,30,33,35,113],configur:[3,8,10,13],confirm:3,confiugr:154,conifugr:17,connect:[1,35,173,177],connection_refus:164,consid:[37,103,159,162,172,175,179],consist:[37,99,136,150,164,173],consol:115,construct:[18,35,36,37,39,137],consum:37,contact:13,contain:0,content:[33,36,37,63,72,79,99,115,128,131,133,134,136,137,138,152,154,159,164,172,175,176],content_type_len:35,context:[33,42,46,49,56,115,133,134],continu:[17,35,36,37,107,113,148],contrast:[0,37,115,131,173],control:[35,37,115,121,131,135],conveni:[0,1,24,33,147,158],convens:35,convent:35,convers:[33,115],convert:[37,74,137,140,151,170,176],coordin:[123,170],copi:[35,63,81],copyright:37,core:[0,24,114,115,118,158],coremodul:115,correct:[18,35,37,39,102,118,145,146,147],correctli:[35,173],correspond:[56,99,102,147,148,149,150],cosmo0920:[36,37],cost:138,could:[35,170],couldn:35,count:[0,99,172,176],countri:[84,171,177],cours:171,cover:[0,133],coverag:10,cpu:[24,114,115,118,158],cpuinfo:[20,21,22,26],crash:[33,35,36,37,81,87],crch:107,creat:[13,18,32,33,35,36,37,39,42,46,47,49,63],createrepo:8,creation:[33,36,173],creteria:173,crit:[88,89],criteria:173,critic:[24,35,63,139],ctrl:[173,177],ctx:[7,42,43,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],curl:[17,23,24,35,96,115,118,143,159],current:[13,33,42,45,46,47,75,81,86,103,115,142,173,176],cursor:[33,50],custom:[17,24,29,33,35,36,37,91,99,103,106,107,115,133,135,136,139,140,147,152,158],customiz:133,cutter:[8,10],cutter_check_leak:10,cutter_debug:10,cutter_dir:8,cutter_source_path:8,cve:37,cxxflag:[8,25],daemoinz:35,daemon:[35,36,37,115,118,119],dai:[137,138,139,176],daiki:[31,32,33,35],danger:[43,47,81,87,159],dash:24,dat:[34,35,36],dat_kei:151,data:[0,17,18,19,20,21,22,26,27,28,33,34,35,36,37,42,47,51,65,69,79,84,86,99,102],data_set_nam:102,databas:[0,16,18,24,33,35,36,37,42,47,56,59,79,81,86,87,92,95,103,104,108,111,115,117,118,119,133,135,136,137,140,151,154,158],database_path:111,datail:99,dataset:[18,36,39,102,110],date:[0,18,114,123,169],dave:121,daylight:37,db1:159,db2:159,db_path:[115,116,143,173,177],dbm:[0,133],dbmss:0,dcb314:37,dcmake_install_prefix:27,ddl:[37,114],deafult:33,deatil:99,deb:[8,21,26,33,35,36,37],debian:[14,18,19],debootstrap:8,debug:[37,88,89,107,115,139],decid:145,decim:[137,170],decrib:115,decrypt:8,defalt:31,default_command_vers:[101,115,143,173,177],default_token:99,defin:[117,137,138,145,147,164,173],define_selector:[18,39,70],definion:137,definit:[35,84,99,121,123,126,127,128,131,133,134,136,137],defrag:[18,33,36,39,70],degre:[33,69,137,170,180],delet:[14,18,30,31,33,35,36,37,39,56,70],delimit:[0,36,107,150,170],demerit:151,demo:172,depend:[0,3],deprec:[33,35,36,37,71,77,99,103,113,123],deriv:[119,162],descend:[99,102],describ:[3,13,14,15,16,17,19,20,21,22,23,24,25,26,27,37,40,63,69,70,72,75,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,120,128,134,136,137,140,141,142,145,146,147,148,150,154,164,173,175,176],descript:[35,36,37,79,91,92,99,103,107,108,115,118,136,137,147,164,165,176],design:[35,99,170],desin:162,dest:[112,113,170],dest_kei:59,dest_key_s:59,detail:[0,1,3,13,20,21,22,24,26,35,36,37,63,69,73,79,95,99,103,106,107,114,115,131,139,154,162,170,171,173,180],detect:[24,33,35,107,115],determin:[99,135,173],dev:[2,8,10,21,26,33,35,36,37],devel:[20,22],develop:[0,3],devic:0,dialog:36,dic:22,dictionari:[22,31,35,36,37,140],didn:37,differ:[15,35,37,99,103,118,123,131,136,137,143,159,170,175,180],difficult:0,digest:159,digit:[37,99,103,139,148],dinam:135,dinner:0,dir:114,direct:[35,36],directli:[137,176],directori:[13,24,29,33,35,36,37,63,115,118,119,145],directory_not_empti:164,disabl:[14,24,31,33,34,35,36,37,78,99,115,118,136,139,147],discard:36,discuss:[2,15],disk:[103,175],displai:35,dist:8,distanc:[0,35,123,137,142,180],distinct:[28,118],distribut:[8,19,20,21,22,24,26,27,35,37],divid:[0,137,170],divis:37,dll:[33,35,37,63],do_gqpt:114,do_gqtp:114,do_http:114,do_loc:114,doc:[8,12,13,14,29,33,34,35,36,37,115,179],doc_bodi:179,documenataion:72,document:[0,3,8],document_index:[126,127],document_vers:8,document_version_ful:8,documents_content_index:[131,133],docutil:8,doe:[0,35,36,69,99,102,111,115,134,136,137,162,170,173],doesn:[24,35,36,37,41,63,72,79,81,96,99,103,107,115,121,133,136,137,138,140,142,145,147,148,151,152,154,158,159,179],domain:[12,35,37,49,56,63,79,81,104,113],domain_error:164,don:[13,19,24,33,37,42,45,46,49,69,79,86,87,99,103,115,136,137,140,143,145,150,159,164,173,177],done:[37,41,42,99,115],dot:35,doubl:[33,35,36,37,86,91,99,103,107,136,137,151,173],doubt:171,down:[18,36,37],downcas:140,download:[8,20,21,22,23,24,25,26,27],downtim:158,dpkg:8,draw:172,drildown:[18,169],drill:176,drilldown:[18,33,36,37,67,82],drilldown_calc_target:37,drilldown_calc_typ:37,drilldown_limit:82,drilldown_offset:82,drilldown_output_column:[37,82],drilldown_result1:99,drilldown_result2:99,drilldown_sortbi:82,drilldown_xxx:99,drop:[33,35,36,37],due:[0,133],dump:[18,31,33,35,36,37,39,45,70],duplic:37,dure:[35,173],dynam:[0,34,115,173],each:[0,19,24,33,36,49,69,73,79,86,92,96,99,102,107,108,115,118,126,131,137,139,147,148,150,151,164,168,170,171,172,173,174],ealier:35,ear:107,earch:107,earlier:[33,109,140],easi:[0,37,135,145,159,177],easili:37,eclips:13,ecmascript:[35,36,99,135,137],edict2grn:37,edit:[3,8],edit_dist:[18,30,39,120],editor:13,editrc:33,effect:[35,86,176],effici:[0,69,175],egg:175,eight:173,either:[15,36,99,121,136,137,175],eito:36,el5:20,elaps:[33,72,118,137,139,143],elapsed_tim:[72,139],element1:[69,137],element2:[69,137],element3:69,element:[35,36,37,69,72,74,133,170,173],elfr:35,elimin:36,ellip:[123,124],els:37,emac:13,embed:[0,29,115,127,133,145],emerg:[88,89,115,139],emit:35,emphas:128,empti:[33,36,37,79,99,136],enabl:[3,8],enable_tokenized_delimit:107,enci:114,enclos:[86,173],encod:19,encodiong:137,encount:[19,20,21,22,26,27],end:[112,123,136,137,143],end_of_data:164,end_tagn:126,endian:37,endpoint:[118,119],eng:[102,147],engi:[102,147],enginen:147,english:[2,13,14,15,33,36,37,99,147],enhanc:38,enorm:172,enough:[0,37,168,175],enourm:150,ensur:148,enter:[36,173,177],entiti:0,entranc:173,entri:[36,42,51,75,77,78,80,82,83,84,85,86,87,99,105,126,127,134,136,137,154,175,176],entries_content_index:[99,136,137,154],entries_key_index:[99,136,137,154],entries_local_nam:85,entry_bodi:78,entry_selector:82,enumer:173,env:145,environ:[17,19,20,24,27,29,33,34,36,37,115,145],epel:[20,35],epoch:[170,176],equat:123,era:0,eric:121,errno:37,error:[0,18,19,20,21,22,24,26,27,33,34,35,36,37,42,43,46,47,49,50,63],error_cod:63,error_loc:72,error_messag:72,escal:19,escap:[35,36,37,49,126],escape_charact:49,escaped_charact:49,escaped_queri:49,escaped_str:49,escaps:[126,127,133],essenti:[21,26,115],establish:[173,177],estim:[50,168],etc:[3,8,21,35,115,145,154,159,162,168,170,173],etim:112,euc:[36,113],euc_jp:24,eval:97,evalu:[36,97,134,137],evaluated_valu:97,evalud:97,even:[0,19,20,21,22,26,27,35,36,37,78,137,147,175],event:159,event_dataset:[117,119],event_queri:[102,117,119,147,148,150],event_typ:117,ever:36,everi:171,everyon:177,evil:137,exact:[7,99,101,103,151],exactli:168,exampl:[0,3,16],exce:[35,36],exceed:168,excel:145,except:[22,33,35,37,69,97,98,99,103,107,115,133,136,142,151,154],exclud:[35,36,37,86,121],exclude_t:36,excut:36,exec_format_error:164,execut:[0,18,27,29,33,35,36,37,39,46,69,72,75,79,81,84,86,91,92,95,97,98,99,101,102,103,104,106,107,108,109],exist:[1,14,35,36,37,47,86,96,111,115,119,121,137,162,170,173,175,177,180],exit:[35,36,111],exmapl:[136,137],expand:[18,35,36,39,95,99],expans:[18,33,35,99,131,145,169],expect:[37,170],experiment:[29,33,34,35,36,37,42,47,91,96,97,98,111,126,127,133],expir:[75,115],explain:[170,173],explicitli:[14,35,115],exploit:0,expnas:145,expornenti:137,expr:49,express:[27,33,35,36,49,84,98,99,115,118,123,135],expresss:135,ext:107,extend:[37,175,179],extens:143,extract:[0,13,24,27,35,37,49,103,127,133,134],extrct:137,f10399c0:8,facet:99,fact:[99,172],faction:176,factor:[37,99],fail:[33,35,36,37,41,42,63,95,103,136,173],failur:[8,29,35,37,41],fals:[8,30,36,37,78,81,84,87,96,109,121,126,131,134,136,137,155,170,178],famili:[107,137],familiar:171,fast:[0,65,72,86,99,103,107,123,126,127,128,133,136,137,142,151,158,159,172,173,175],faster:[24,33,36,37],fatal:37,fault:35,favorit:13,favorited_bi:176,featur:[0,13,29,33,35,37,46,47,69,78,91,92,96,99,102,103,107,108,111,115,123,126,127,131,133,135,136,141],fedora:[8,14,18,19],fedoraproject:20,feel:37,fetch:[37,150,175],few:[99,158,159],ff76:140,ff9e:140,fffe:107,field:79,figur:142,file:[3,8],file_corrupt:164,file_exist:164,file_too_larg:164,filename_too_long:164,fill:[118,137],filter:[18,21,26,33,35,36,37,39,69,82,84,96],fin:57,find:[0,3,13,14,24,27,59,81,99,102,126,127,133,140,147,148,150,152,173],finish:[96,139],firefox:13,firewood:[35,36],first:[13,24,27,33,36,37,46,63,72,79,96,99,103,115,118,126,127,133,136,137,145,159,162,170,172,173,175,176,179],five:[72,121,173],flag:[33,34,35,37,43,46,49,53,56,59,60,61,63,69,76,78,79,81],flanc:123,flexibl:[0,131,135],flow:3,flower:170,fluent:9,focus:173,folder:27,follow:[2,13,14,17,24,27,28,33,35,36,37,43,63,69,72,79,81,86,91,92,99,102,103,107,108,115,117,118,119,123,126,127,131,133,134,136,137,139,142,143,145,147,148,149,150,154,159,164,168,170,171,172,173],followe:176,fontain:33,footnot:[123,173],forc:35,forget:69,fork:13,form:[33,36,99,115,118,135,136,140,173,176,177],form_1:173,form_2:173,format:[13,18,34,35,37,38,39,45,63,70],former:[140,145],formula:[123,168],found:[24,27,35,36,50,59,99,149],four:[72,139,151,173],fraction:[0,170,176],fragment:83,francisco:123,frank:121,freebsd:[18,29,39],freed:[37,42],freq0:150,freq1:150,freq2:150,frequenc:[37,102,174],frequency_threshold:[33,102,147,148,150],fresh:138,friend:[3,172],friendli:35,friendship:172,from:[0,18,19],fsf:35,ftb:38,ftp:114,ful:107,fullfil:162,fulli:[35,115],fulltext:[20,21,22,26,40,99,103,107,126,127,131,133,136,137,140,142,151,162,175],fumiyasu:33,funa:37,func:[46,57,63],functin:137,function_nam:72,function_not_impl:164,furigana:102,further:170,futur:[33,36,69,91,97,98,123,159,164],fuzzi:103,g721d5c7:101,ga54c5f8:114,garbag:[33,36,37,76],gat:[171,173,180],gb87d9f8:143,gcc:[20,22,24,25,33,35,36],gem1:8,gemfil:35,gener:3,genki:36,geo_dist:[18,33,35,36,39,120],geo_distance2:[33,123],geo_distance3:[33,123],geo_in_circl:[18,33,36,39,120],geo_in_rectangl:[18,30,31,33,36,39,120],geodet:[155,180],geograph:[123,170],geoindex:172,geoloc:[18,37,39,141],geometri:33,geopoint:123,get:[0,2,8,13,14,18,21,24,26,33,35,37,42,46,50,63,75,99,106,107],getaddrinfo:35,gettext:[13,14],ggdb3:8,git:[8,9,13],github:[8,9,13,15,17,29,33,35,36,37,78,140],give:[0,131],given:[35,36,131,172],glib:36,global:[18,35,36,39,40],glossari:17,gmo:37,gnu:[14,18,19],gnupg2:8,gone:172,goo:[136,137],good:[0,13,24,99,106,107,136,137,138,152,175],googl:[99,136,149],goronga:27,got:[36,37],gpg:8,gpl:38,gqtp:[0,1,18,20,21,22,26,35,36,37,74,112,114,156],gram:[0,107,137,173],grand:176,graph:0,greas:170,gregex:36,grep:[20,21,22,26],grn1:175,grn2:175,grn3:175,grn:[85,115],grn_address_is_in_us:74,grn_address_is_not_avail:74,grn_api:49,grn_arg_list_too_long:74,grn_bad_address:74,grn_bad_file_descriptor:74,grn_between_too_many_index_match_ratio:37,grn_bool:56,grn_broken_pip:74,grn_builtin_typ:[56,61],grn_bulk:49,grn_bulk_vsiz:49,grn_cach:[18,39,40],grn_cache_clos:42,grn_cache_current_get:42,grn_cache_current_set:42,grn_cache_get_max_n_entri:42,grn_cache_open:42,grn_cache_set_max_n_entri:42,grn_cas_error:74,grn_column:[18,39,40],grn_column_cr:43,grn_column_index:43,grn_column_index_upd:43,grn_column_nam:43,grn_column_name_id:43,grn_column_name_id_len:43,grn_column_name_kei:43,grn_column_name_key_len:43,grn_column_name_nsubrec:43,grn_column_name_nsubrecs_len:43,grn_column_name_scor:43,grn_column_name_score_len:43,grn_column_name_valu:43,grn_column_name_value_len:43,grn_column_renam:43,grn_column_t:43,grn_column_trunc:[37,43],grn_command_vers:[18,39,40],grn_command_version_max:44,grn_command_version_min:44,grn_command_version_st:44,grn_connection_refus:74,grn_content_json:45,grn_content_msgpack:45,grn_content_non:45,grn_content_tsv:45,grn_content_typ:[18,39,40],grn_content_xml:45,grn_ctx:[18,35,39,40,41,42,43],grn_ctx_at:[35,46],grn_ctx_batch_mod:37,grn_ctx_close:[33,37,46],grn_ctx_db:46,grn_ctx_fin:[35,46],grn_ctx_get:[43,46],grn_ctx_get_command_vers:46,grn_ctx_get_match_escalation_threshold:55,grn_ctx_get_output_typ:46,grn_ctx_init:[33,46],grn_ctx_open:[33,46],grn_ctx_per_db:[33,46],grn_ctx_recv:37,grn_ctx_send:[42,45,46],grn_ctx_set_command_vers:46,grn_ctx_set_fin:46,grn_ctx_set_match_escalation_threshold:55,grn_ctx_set_output_typ:46,grn_ctx_t:74,grn_ctx_use:46,grn_ctx_use_ql:37,grn_cursor_ascend:60,grn_cursor_by_id:60,grn_cursor_by_kei:60,grn_cursor_descend:60,grn_cursor_gt:60,grn_cursor_lt:60,grn_cursor_prefix:60,grn_cursor_rk:60,grn_dat:33,grn_dat_repair:34,grn_db:[18,34,39,40],grn_db_creat:47,grn_db_create_optarg:47,grn_db_int:56,grn_db_kei:34,grn_db_open:47,grn_db_recov:[37,47],grn_db_register_by_nam:32,grn_db_text:49,grn_db_touch:[31,47],grn_default_logger_get_path:35,grn_default_logger_set_path:35,grn_default_query_logger_get_path:35,grn_default_query_logger_set_path:35,grn_directory_not_empti:74,grn_domain_error:74,grn_enc_utf8:[48,60],grn_encod:[18,39,40],grn_encoding_pars:48,grn_encoding_to_str:48,grn_end_of_data:74,grn_exec_format_error:74,grn_expr_add_var:49,grn_expr_alloc:49,grn_expr_append_const:[7,49],grn_expr_append_const_int:49,grn_expr_append_const_str:49,grn_expr_append_obj:[7,49],grn_expr_append_op:[7,49],grn_expr_clos:49,grn_expr_compil:49,grn_expr_creat:49,grn_expr_create_for_queri:7,grn_expr_exec:[46,49],grn_expr_get_keyword:49,grn_expr_get_var_by_offset:49,grn_expr_pars:49,grn_expr_syntax_escap:49,grn_expr_syntax_escape_queri:49,grn_expr_var:[57,63],grn_fals:56,grn_file_corrupt:74,grn_file_exist:74,grn_file_too_larg:74,grn_filename_too_long:74,grn_function_not_impl:74,grn_geo:[18,39,40],grn_geo_cursor_next:50,grn_geo_cursor_open_in_rectangl:50,grn_geo_estimate_in_rectangl:[33,50],grn_geo_point:50,grn_geo_select_in_circl:33,grn_geo_select_in_rectangl:[33,50],grn_get_default_command_vers:44,grn_get_default_encod:48,grn_get_default_match_escalation_threshold:55,grn_get_lock_timeout:41,grn_hook:[18,39,40],grn_hook_entri:51,grn_hook_get:51,grn_hook_select:51,grn_hook_set:51,grn_id:[43,46,49,52,53,54,56,59,60,63],grn_id_nil:[49,59,60],grn_ii:[18,39,40],grn_ii_buff:52,grn_ii_buffer_append:52,grn_ii_buffer_clos:52,grn_ii_buffer_commit:52,grn_ii_buffer_open:52,grn_illegal_byte_sequ:74,grn_improper_link:74,grn_in_values_too_many_index_match_ratio:37,grn_inappropriate_i_o_control_oper:74,grn_incompatible_file_format:74,grn_index_cursor:[18,39,40],grn_index_cursor_next:[36,53],grn_index_cursor_open:53,grn_info:[18,39,40],grn_info_typ:54,grn_init:[35,139],grn_input_output_error:74,grn_interrupted_function_cal:[74,96],grn_invalid_argu:[56,59,60,74],grn_invalid_format:74,grn_invalid_seek:74,grn_io_vers:37,grn_is_a_directori:74,grn_itoh:33,grn_ja_skip_same_value_put:36,grn_log_level:63,grn_log_path:35,grn_logger:35,grn_logger_info:35,grn_logger_reopen:35,grn_lzo_error:74,grn_match_escal:[18,39,40],grn_network_is_down:74,grn_no_buff:74,grn_no_child_process:74,grn_no_locks_avail:74,grn_no_memory_avail:74,grn_no_space_left_on_devic:74,grn_no_such_devic:74,grn_no_such_device_or_address:74,grn_no_such_file_or_directori:74,grn_no_such_process:74,grn_not_a_directori:74,grn_not_enough_spac:74,grn_not_socket:74,grn_obj:[18,35,37,39,40,43,46,47,49,50,51,52,53,54],grn_obj_add_hook:51,grn_obj_append:56,grn_obj_check:56,grn_obj_clear_lock:[33,56],grn_obj_clos:[7,37,46,53,56],grn_obj_column:56,grn_obj_column_index:[43,53],grn_obj_column_scalar:43,grn_obj_column_vector:43,grn_obj_compar:56,grn_obj_compress_lzo:43,grn_obj_compress_zlib:43,grn_obj_db:47,grn_obj_decr:56,grn_obj_defrag:56,grn_obj_delete_by_id:[33,56],grn_obj_delete_hook:51,grn_obj_expir:56,grn_obj_fin:49,grn_obj_flag:[43,49,59,61,63],grn_obj_get:56,grn_obj_get_element_info:54,grn_obj_get_hook:51,grn_obj_get_info:54,grn_obj_get_nhook:51,grn_obj_get_rang:56,grn_obj_get_valu:[33,56],grn_obj_id:56,grn_obj_incr:56,grn_obj_init:56,grn_obj_is_builtin:[33,56],grn_obj_is_lock:56,grn_obj_key_float:61,grn_obj_key_int:61,grn_obj_key_norm:59,grn_obj_key_uint:61,grn_obj_key_var_s:61,grn_obj_key_with_si:59,grn_obj_lock:56,grn_obj_nam:56,grn_obj_path:[36,56],grn_obj_path_by_id:[34,56],grn_obj_persist:[43,59],grn_obj_prepend:56,grn_obj_reinit:56,grn_obj_remov:[33,56],grn_obj_renam:56,grn_obj_search:58,grn_obj_set:56,grn_obj_set_element_info:54,grn_obj_set_fin:57,grn_obj_set_info:54,grn_obj_set_mask:56,grn_obj_set_valu:[56,60],grn_obj_table_dat_kei:33,grn_obj_table_hash_kei:[59,60],grn_obj_table_no_kei:[59,60],grn_obj_table_pat_kei:[59,60],grn_obj_unlink:56,grn_obj_unlock:56,grn_obj_user_data:62,grn_obj_vector:[49,56],grn_obj_with_posit:43,grn_obj_with_sect:43,grn_obj_with_weight:43,grn_object_corrupt:74,grn_op_adjust:[7,58],grn_op_and:[7,58],grn_op_and_not:58,grn_op_but:7,grn_op_cal:7,grn_op_or:[7,58],grn_op_push:7,grn_oper:[43,49,50,58,59],grn_operation_not_permit:74,grn_operation_not_support:74,grn_operation_timeout:74,grn_operation_would_block:74,grn_pat_at:31,grn_permission_deni:74,grn_plugin_charlen:63,grn_plugin_command_cr:[37,63],grn_plugin_error:63,grn_plugin_expr_var_init:[37,63],grn_plugin_fin:63,grn_plugin_fre:63,grn_plugin_get_suffix:33,grn_plugin_get_system_plugins_dir:33,grn_plugin_init:63,grn_plugin_isspac:63,grn_plugin_log:63,grn_plugin_malloc:63,grn_plugin_mutex:63,grn_plugin_mutex_clos:63,grn_plugin_mutex_lock:63,grn_plugin_mutex_open:63,grn_plugin_mutex_unlock:63,grn_plugin_proc_alloc:63,grn_plugin_proc_get_var:[37,63],grn_plugin_proc_get_var_by_offset:[37,63],grn_plugin_realloc:63,grn_plugin_regist:[32,63],grn_plugin_win32_base_dir:63,grn_plugins_dir:29,grn_post:[50,53],grn_proc:[18,39,40],grn_proc_creat:57,grn_proc_func:[46,57,63],grn_proc_funct:63,grn_proc_get_info:57,grn_proc_get_typ:37,grn_proc_set_selector:37,grn_proc_typ:57,grn_ptr_init:49,grn_ptr_value_at:49,grn_pvector:49,grn_qlog_path:35,grn_queri:35,grn_query_expander_tsv_synonyms_fil:145,grn_range_error:74,grn_rc:[41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,58,59,60,63],grn_read_only_file_system:74,grn_resource_busi:74,grn_resource_deadlock_avoid:[56,74],grn_resource_temporarily_unavail:74,grn_result_too_larg:74,grn_retry_max:74,grn_search:[18,39,40],grn_search_optarg:58,grn_select:99,grn_selector_func:37,grn_set_default_command_vers:44,grn_set_default_encod:48,grn_set_default_match_escalation_threshold:55,grn_set_lock_timeout:41,grn_snip:[35,37],grn_snip_clos:37,grn_socket_is_already_connect:74,grn_socket_is_already_shutdown:74,grn_socket_is_not_connect:74,grn_socket_not_initi:74,grn_stack_over_flow:74,grn_success:[41,42,43,46,47,49,63,74,99,139],grn_syntax_error:74,grn_tabl:[18,39,40],grn_table_add:59,grn_table_at:[31,34,56,59],grn_table_column:59,grn_table_cr:59,grn_table_cursor:[18,39,40,53],grn_table_cursor_clos:60,grn_table_cursor_delet:60,grn_table_cursor_get_kei:60,grn_table_cursor_get_valu:60,grn_table_cursor_next:[31,60],grn_table_cursor_open:[31,60],grn_table_cursor_set_valu:60,grn_table_cursor_t:60,grn_table_dat_kei:59,grn_table_delet:59,grn_table_delete_by_id:59,grn_table_differ:59,grn_table_get:[34,59],grn_table_get_kei:59,grn_table_group:59,grn_table_group_flag:59,grn_table_group_result:59,grn_table_hash_kei:[50,59],grn_table_lcp_search:59,grn_table_pat_kei:59,grn_table_renam:59,grn_table_s:[7,59],grn_table_select:3,grn_table_setoper:59,grn_table_sort:59,grn_table_sort_asc:59,grn_table_sort_desc:59,grn_table_sort_flag:59,grn_table_sort_kei:59,grn_table_trunc:[33,59],grn_table_upd:59,grn_table_update_by_id:59,grn_text_len:49,grn_text_printf:37,grn_text_valu:49,grn_text_vprintf:37,grn_tokenizer_error:74,grn_tokenizer_query_open:35,grn_too_large_offset:74,grn_too_many_link:74,grn_too_many_open_fil:74,grn_too_many_open_files_in_system:74,grn_too_many_symbolic_link:74,grn_too_small_limit:74,grn_too_small_offset:74,grn_true:56,grn_type:[18,39,40],grn_type_cr:61,grn_unknown_error:74,grn_unsupported_command_vers:74,grn_update_not_allow:74,grn_user_data:[18,39,40,57],grn_zlib_error:74,grndb:[18,37,39,110],grnslap:[18,39,110],grntest:[8,9,31,33,35],gro:[118,133],gronga:[145,149],gronnga:149,groo:[99,118],groogna:[27,34,35,99,136],groogna_default_command_vers:159,groonga1:71,groonga_cache_limit:36,groonga_cli:137,groonga_clone_dir:8,groonga_database_auto_cr:[35,36],groonga_dir:8,groonga_dist:35,groonga_github_com_path:8,groonga_log_level:36,groonga_log_path:36,groonga_n_record:36,groonga_path:114,groonga_query_log_path:[36,37],groonga_vers:33,grooon:118,group:[0,35,36,37,99,134],grroonga:149,gtar:25,gted:13,gtihub:33,gurun:135,gzip:[24,35,158],gzip_typ:159,had:13,hai:7,half:140,halfwidth:140,hana:172,hanako:84,hand:[0,99,115,131,134,170,175],handl:[36,37,74,115,151,154,168,170],hang:36,hard:154,hash:[33,35,36,103,137,151],hash_index:176,hash_kei:151,hash_tag:176,hat:24,hatak:37,have:[0,12,13,24,37,45,47,65,72,74,79,86,99,102,103,115,136,137,138,140,142,145,148,150,152,154,158,159,162,170,173,177],haystack:7,hdd:114,head:[37,99,112,115,164],header:[25,29,35,36,37],heavi:99,hello:[99,106,137,138,152],help:[12,13,19],hemispher:35,hendro:36,here:[13,14,17,24,26,27,42,45,47,49,63,65,69,73,74,75,79,81,84,86,87,91,92,95,96,97,98,99,102,103,106,107,108,109,111,115,117,118,119,121,123,126,127,128,131,133,134,136,137,139,140,142,145,147,148,150,151,152,153,154,159,164,171,175,180],hereaft:0,hex:[137,172],hidden:0,hide:36,hideki:[36,37],high:[0,69,99,135],higher:[99,102],highight_ful:126,highlight:[126,127],highlight_ful:[18,37,39,120],highlight_html:[18,37,39,120,126],hino:36,hiragana:[136,137,147],hiroshi:[33,37],histori:33,hit:[36,99,135],hmm:176,hobbi:139,hoge:[113,122],hold:[170,174],home:[8,24],homebrew:[8,18,19],homepag:114,hook:17,horikoshi:33,host:[17,33,114,177],host_name_or_ip_address:177,hostnam:[35,113,114,115,116,177],hottolink:38,hour:[41,137,139,176],howev:0,html:[3,8],html_untag:[18,36,39,120],htpasswd:[115,159],http:[0,1,8,13,17,18,20,21,22,23,24,25,26,27,35,36,37,69,85,96,112,113,114,115,116,118,128,140],httpd:[8,18,20,21,22,26,33,34,35,36,37,39,42,96,110],httprewritemodul:115,hubeni:123,human:[79,103],hypertext:[18,169],hyphen:[103,173],i18n:[3,11],i386:[8,20,33],i686:114,ichii:33,id_column:43,idea:99,identifi:84,idf:37,ieee:155,ifexist:86,iff:173,ignor:[33,35,36,37,47,84,91,96,99,107,136,145,151],ii_buff:52,ill:165,illegal_byte_sequ:164,illustr:171,imagin:[99,171],immedi:[0,96,115],implement:[13,33,35,37,38,97,98,99,115,123,137,151,158],implemnt:158,improper_link:164,in_valu:[18,37,39,120],inaccur:35,inada:36,inappropriate_i_o_control_oper:164,inc:37,includ:[12,20,36,37,72,79,81,87,91,95,97,98,99,107,121,133,137,145,159,173],incompat:[29,35,36,37],incompatible_file_format:164,incorrect:37,increas:[0,69,92,97,99,107,108,123,154],increment:73,incres:37,independ:0,index_blog:175,index_column:37,index_friend:172,index_messag:175,index_point:172,index_tag:172,index_titl:175,indexblog1:175,indexblog2:175,indexbuf:43,indic:[36,107,123,139,173],infinit:[33,35,37,103],info:[88,89,115],infom:46,inform:[0,2,13,18,34,35,36,42,79,95,97,98,99,139,140,169,172],inherit:36,inhibit:34,init:[24,35,36,37,57],initi:[33,35,37,46,63,118],innodb:0,input:[33,36,45,72,86,99,137,147,148,149,150,173,177],input_file_nam:72,input_output_error:164,input_typ:86,insensit:99,insert:[35,133,173],inspect:[36,37],inst:36,instal:[0,3,8,10],instantli:[0,133],instead:[17,19,22,24,27,33,35,36,37,46,77,99,103,113,115,123,126,127,133,135,136,137,140,142,151,162,177,179],instroduc:36,insuffici:170,int16:[31,36,155],int32:[35,36,37,69,81,99,102,109,121,123,131,136,137,147,148,150,155,167,171,172,173,175,176,180],int64:[36,37,99,155],int8:[31,36,37,155,170],integ:[69,74,99],integr:[17,35,36,170],intel:114,intend:[35,37,134,136,175],intens:115,interact:[173,177],interest:[3,173],interfac:[35,118,143,173],intern:[34,36,37,42,45,46,133,170],internet:[0,135],interpret:[34,136],interrupted_function_cal:164,introduc:[3,37,115],introduct:[3,11],introspect:35,inv_res_column:114,inv_thread_column:114,invalid:[33,35,36,37,48,63,99,103,118],invalid_argu:164,invalid_format:164,invalid_seek:164,invers:37,investig:[36,168,171],ipa:22,ipad:22,iptabl:[159,177],is_a_directori:164,is_anim:170,is_stop_word:[37,106,152],isn:[20,24,35,36,37,46,72,75,79,86,97,98,99,102,103,115,133,136,145,147,148,149,164],iso:137,isob:36,isssu:36,issu:3,itagaki:31,item:[85,99,102,103,147,148,150,159,162],item_:102,item_dataset:[117,150],item_exampl:147,item_queri:[102,117,147,148,150],iter:137,itself:[36,37,69,107,136,145],ivh:[20,22],iwai:[34,35,36],jame:178,jan:176,januari:[118,137],japan:[84,147,171,177,180],japanes:[0,2,13,15,35,37,136,137,147],jason:178,javascript:[18,33,115,169,177],jeff:178,jekyl:8,jemalloc:37,jennif:178,jersei:176,jessi:[36,37],jinja2:8,jiro:172,job:114,john:[84,178],join:2,joseph:178,jqueri:37,json:[31,33,35,37,45,69],jsonp:118,juman:22,jumand:22,jun:37,just:[13,17,19,20,21,22,24,25,26,27,33,35,36,37,42,47,56],kana:[102,117,147,148,150],kanako:36,kashihara:37,katagiri:36,katakana:[102,140,147],kawada:37,kawaji:35,kazuhiko:[35,37],kazuhiro:36,keep:[28,33,42,46,69,138],kei:[0,8,18,28,34,35,36,37,56,59,60,69,84,86,96],ken:172,kenichi:[31,33],kentaro:36,kernel:[35,154],key_column:43,key_length:164,key_nam:99,key_norm:[35,99,103,131,133,136,137,138,140,154,167,173,175,176,179],key_siz:59,key_typ:59,key_with_si:[103,136,137,178],keyboard:99,keybuf:59,keyr:[21,35],keys_zon:115,keyword1:[35,126],keyword2:[35,126],keyword:[35,36,49,99,103,126,127,131,133,136,149,172,173,175],keyword_cont:49,keyword_s:49,kind:[0,171,173,179,180],kinjir:172,kisk:35,know:[99,111,171,172,176],knowledg:0,known:[0,36,133,137,173,177],koi8r:[24,35],koji:35,konishi:36,korea:171,kosuk:36,kouhei:36,kuriyama:37,kwic:133,kytea:[24,35,36,107],label1:[37,99],label2:99,label:[36,37],lager:36,lake:142,languag:[0,1,3],larg:[0,35,103,111,136,137,151,154,159,170],larger:[37,69,99,119,133,150,151,154,164],larget:96,largetext:151,last:[35,46,107],last_modifi:176,lat:114,latenc:114,later:[33,35,36,37,126,127,128,134,140,173],latest:[2,3],latin1:[24,35],latin:113,latitude_in_degre:137,latitude_in_degreexlongitude_in_degre:137,latitude_in_msec:137,latitude_in_msecxlongitude_in_msec:137,latter:[140,145],launchpad:[26,37],layout:8,lc_messag:13,lcov:10,lead:[99,133,173],leak:[31,33,35,36,37,78],leakag:179,leaner:[37,119],lear:150,learn:[36,99,102],learner:[18,37,39,110,117],least:[35,75,134,136,154,168],left:50,leftmost:137,length:[35,63,170],let:[18,69,99,123,138,169,170,172,173,175],letter:140,level:[35,36,37,63,88,89,113,115,119,139,164,171],lexcon:173,lexicon2:175,lexicon:18,lexicon_t:114,lgpl:38,lib:[31,36,95,111,115,162],libedit:[22,24,33,35],libev:[21,24,26,34],libgcc_s_sjlj:37,libgroonga:[16,173],liblzo2:[21,26],libmecab:[8,21,26],libmemcach:10,libmsgpack:[21,26],libstemm:37,libwinpthread:37,libzmq:[21,26],licens:[8,35,37,38],lifecycl:17,light:81,like:[2,18,24,37,43,69,79,81,99,102,115,123,134,135,136,137,142,147,159,169,171,176],limit:18,line:[10,13,14,17,24,27,33,35,37,46,72,113,115],line_cont:72,line_numb:72,link:[35,37,99,136,137,170,171,177],linux:[14,18,19],lion:35,listen:[35,115,159,177],liter:[33,35,36,126,127,133,136],live:[103,176],llt:107,load:[18,31,33,34,35,36,37,39],loaded_valu:98,local:[0,8,13,14,24,115,137],local_nam:85,localhost:[8,96,112,113,114,115,118,143,159,177],localnam:85,localstatedir:19,location_in_groonga:72,location_in_input:72,location_str:176,lock_clear:[18,37,39,70,77],log:[8,18,19],log_level:[18,39,70],log_put:[18,39,70,88],log_reopen:[18,39,70,88,89],log_repoen:35,logal:17,logger:35,logic:[35,99],logical_count:29,login:154,logo:35,logrot:[35,37],logyyyymmddhhmmss:118,london:123,longer:[38,46],longest:[33,59,137],longitude_in_degre:137,longitude_in_msec:137,longitudexlatitud:36,longtext:[50,155],look:74,loop:[35,37],lot:36,lower:[99,103,107,173],lru:75,lte:107,lucid:[31,36],lunch:0,lz4:19,lzo:[33,35,36,37,78],lzo_error:164,m64:25,mac:[18,19],machin:37,macport:[18,19],macro:[33,36,37],made:[33,35,173],madrid:123,mai:[0,16,24,28,33,35,36,37,42,43,47,72,79,81,87,91,96,97,98,102,103,111,115,137,145,151,154,159,172,175],mail_column:114,mailarch:8,main:21,mainli:[37,176],mainlin:37,mainstream:0,major:19,make:[0,3],makecach:[20,35],malloc:37,manag:[0,14,17,24,46,47,73,96,111,115,133,145,151,159,177],mani:[0,3,13,24,33,36,37,69,99,103,115,117,133,149,151,154,158,159,162,170,171,173],manipul:135,manner:[99,173],manual:[18,37],map:[33,139,147,154,168],map_hugetlb:33,mariadb:[36,37],mark:[34,37,103,140,152,162,176],marku:35,markup:12,masafumi:[36,37],masaharu:[34,35,36],masahiro:[31,36,37],massachusett:176,master:[13,17,115],match:19,match_column:[18,36,37,69,82],match_escalation_threshold:[24,31,46],matsuu:31,matur:[1,162],maverick:33,max:[33,35,36,37,42,60],max_command_vers:[101,115,143,173,177],max_concurr:112,max_siz:60,max_tp:112,max_valu:154,maximium:99,maximum:[28,73,99,121,137,164,168,170,173],mcdonald:142,mdev:29,mean:[24,35,36,37,41,45,49,50,63,69,74,79,87,96,99,102,107,115,134,136,137,139,140,142,145,147,154,168,170,171,173,180],measur:[0,33],mecab:[0,8,20,21,22,23,24,26,33,35,36,37,38],mecab_new2:35,mecab_strerror:37,mechan:[35,115,159],media:37,median:37,medium:[19,20,21,22,26,27,176],meerkat:33,meet:[37,176,180],memcach:[0,1,18,169],memo:[131,152],memo_index:37,memori:[18,19,20,21,22,26,27,31,33,35,36,37,42,46,63,78,103],memos_cont:152,memri:154,mention:134,menu:[27,99],mercuri:8,merg:[0,13,35],meridian:123,messag:[8,19],message_pack_install_prefix:19,messagepack:[24,33,34,35,45],met:134,meta:[35,79],metadata:[35,97,98,176],meter:[123,180],method:[36,115,147,173],micro:[18,137,169,170],microsecond:[139,170],microsoft:27,midnight:137,migrat:[37,99,136,137],mike:84,million:28,millisecond:[41,118,137,170,180],mime:159,min:[35,37,41,60,99,112,114],min_siz:60,minagawa:[36,37],mind:28,mine:0,mingw:8,minim:[115,121],minimum:[20,21,22,26,63,99,137],mininum:162,minut:[137,139,147,148,176,180],mismatch:37,miss:[33,35,36,37,145],mitani:37,mitsuhiro:31,mitsuo:36,mix:[69,102],mkdir:85,mkostemp:37,mmap:[18,36,166],mobil:0,model:[37,164],modern:176,modifi:[24,168,177,179],modul:[0,18,31,37],moero:172,monei:172,monitor:[20,21,22,26,36],monkei:170,month:[137,139,172,176],montywi:34,more:[0,24,28,35,36,37,46,63,65,69,79,99,102,103,111,115,119,131,133,134,136,137,138,145,148,149,151,152,154,159,164,170,173,176,178],moreov:180,mori:85,moritapo:172,moritar:175,morn:138,morpholog:[0,24,137],most:[37,46,50,69,70,99,159,170,173],motoi:36,move:[12,27,33,35],movi:172,mpaa:121,mrubi:[36,37,97,98],msec:[33,41],msg_id:8,msgpack:[143,159,164],msvc:29,msyql:69,mte:38,multi:[0,24,33,37,115,158],multibyt:33,multipl:[0,18,35,36,37,42,69,79,84,91,96,99,106,107,118,126,131,136],multipli:137,multithread:96,munin:[19,20,21,22],murakami:[36,37],museum:176,musha:29,music:[139,172],must:[24,37,42,43,47,49,50,63,65,79,81,84,86,87,96,99,102,103,111,118,119,128,134,136,137,147,150,154,159,164,168,170,173,177],mutex:[36,63],mxcl:8,myisam:0,mysql:[0,20,21,22,26,37,38,69,91,99,126,127,133,140,145,149],n_builtin_type_nam:47,n_entri:75,n_kei:59,n_keyword:49,n_like:[72,99,136,137,154],n_queri:[101,115,143,173,177],n_result:59,n_var:63,nagano:37,naiv:171,nakai:36,name1:137,name2:137,name:[0,13,18,33,34,35,36,37,43,46,47,48,49,56,57,59,61,63,72,76,78,79,80],name_1:[173,177],name_2:[173,177],name_s:[43,46,49,56,57,59,61,63],namebuf:[43,56],nanosecond:[72,139],naoina:[35,36],naoya:[36,37],narg:49,narrow:[18,36,37,99,169],narwhal:33,natti:33,ncpu:23,nearbi:0,necessari:[33,173],need:[0,13,14,17,20,24,25,27,33,35,37,42,45,46,49,69,72,91,95,96,99,103,107,109,115,118,127,133,136,137,140,143,145,147,148,150,151,154,159,164,168,173,175,179,180],needl:7,needleess:35,needless:[34,35,36],neg:[35,41,46,57,63,74,99],neglig:37,neighbor:0,nest:[18,35,36,37,169],nested_reference_column:99,net:[2,8,170,171,172,173,177,180],netbsd:36,network:[35,159,164,172],network_is_down:164,never:[24,102],new_release_d:8,new_valu:99,new_vers:8,newark:176,newer:37,newli:[0,37,42,109,133,138],newlin:[33,34],newvalu:43,next:[0,37,50,57,172,173],nfkc51lexicon:140,nfkc:140,nginx:[20,21,22,26,35,36,37],nginxhttpstubstatusmodul:37,ngx_http_proxy_modul:115,nice:138,night:[138,179],nihon:147,niku:37,nine:173,nippon:147,nise_nab:37,nnede:154,no_buff:164,no_child_process:164,no_kei:151,no_locks_avail:164,no_memory_avail:164,no_space_left_on_devic:164,no_such_devic:164,no_such_device_or_address:164,no_such_file_or_directori:164,no_such_process:164,noarch:[20,22],node:[17,20,35],nogpgcheck:35,nois:148,nokubi:37,nomal:[35,99,115],nomral:[99,136],non:[35,36,72,99,111,136,137],none:[24,87,91,99,103,106,107,113,115,117,164,175],nonexist:[37,99],nor:99,noraml:107,normal:[18,20,21,22,26,34,35,36,37,39,45,46],normalizeauto:126,normalized_text:91,normalizer_list:[18,37,39,70],normalizerauto:[91,92,99,103,104,106,107,126,127,131],normalizernfkc51:92,normalizs:103,normallexicon:140,normalzi:126,northern:35,not_a_directori:164,not_enough_spac:164,not_socket:164,notat:[35,36,137],note:[0,22,33,35,36,37,63,84,96,97,98,99,103,115,118,128,137,154,159,168,170,171,173,177],noth:[45,99,111,115,147,149],notic:[88,89,115],notif:[36,139],notifi:96,now:[13,14,18,22,24,34,37,39,69,78,95,97,98,120],nroonga:[17,131,175],nsi:8,nsubrecs_column:43,nterm:76,nul:[33,63],number1:137,number2:137,number:[0,19],numer:[18,136,137,169],nvar:57,o_binari:35,obata:[31,33,36],obj:[43,47,49,51,54,56,57,58,62,76],object1:137,object2:137,object:[33,35,37,42,46,47,56,59,63,65,69,81,83,87,91,92,107,108,133,135],object_corrupt:164,objnam:[77,83],obsolet:162,obtain:63,obvious:170,occur:[35,36,37,46,50,72,78,81,102,145,154,179],ocelot:[33,36],octal:137,octob:37,odd:137,off:[33,37,115],offici:[8,20,22,33,131],offlin:[18,34,35,36,37,39],offset:[35,49,50,51,56,59,60,63,82],often:121,ohzeki:37,old_releas:8,old_release_d:8,older:176,oldvalu:43,omit:[33,72,87,95,99,107,123,143,147,151,173],onc:[33,35,37,99,140,171,175,176],oneir:[33,36],oneself:37,onga:133,ongaeshi:[35,36],onigmo:[29,37],oniguruma:29,onli:[0,13,17,19,20,21,22,26,27,35,37,42,45,63,74,75,84,86,87,96,97,99,102,103,107,109,111,115,121,126,127,128,131,133,134,136,137,138,140,142,145,151,159,162,170,173,175,180],onlin:[18,39],onto:154,ooo:151,opaqu:[42,164],opear:137,open:[17,33,35,36,42,47,50,86,111,126,139,140],open_tag1:126,oper:[18,24,35,36,37,39,49,50,81,87,99,135],operation_not_permit:164,operation_not_support:164,operation_timeout:164,operation_would_block:164,optarg:[47,58],optim:37,optimum:115,option:[14,20,21,22,23,24,25,26,33,34,35,36,37,47,72,75,79],oracl:[18,19],orangain:36,order:[0,35,36,99,136,142,164,171,173,180],org:[8,13,20,21,22,23,24,25,26,27,37,69,85,114,115,128,170,171,172,173,177,180],orient:[0,133,170],origin:[1,13,36,37,45,72,85,99],orilldown:171,orphan:36,osanai:37,otehr:103,other:[0,3,13,18,19],otherwis:[17,42,56,63,78,81,84,87,96,109,121,131,134,137,173],ouput:36,our:[2,13],out:[9,19,20,21,22,26,27,37,134,175],out_gqtp:114,out_http:114,out_loc:114,outdat:37,output:3,output_column:[35,36,37,69,82],output_typ:[116,143],outsid:37,over:[0,35,36,37,126,168,177],overcommit:154,overcommit_memori:35,overflow:[33,36,37,170],overhead:[37,162],overrid:24,overwritten:180,own:[0,35,49,137,170],owner:[36,115],pack:19,packag:[8,13,18,19,20,21,22,23],page:[2,13,18,35,36],pagin:173,pai:99,pair:[99,145,147,148,149,150,170],pair_dataset:[117,150],pair_queri:[102,117,147,148,150],pakcag:22,palal:8,palallel:8,pangolin:[8,26,35],paragraph:173,parallel:0,paramet:[18,27,33,34,35,36,37,39,41,42,43,44,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,73],parameter1:115,parent:[99,115],parenth:86,parenthes:173,pari:123,park:176,pars:[37,48,49,135],parser:136,part:[0,24,72,133,170,173,176],partial:[7,147,149,164],pass:[8,33,34,47,96,115,123,131,136,137,173,177],past:35,pat:[34,35],pat_kei:151,path:[8,14,19],patprefix:178,patricia:[18,33,35,36,103,136,137,151,169,173],patsuffix:178,pattern:[0,72,137],pcre:[35,115],penalti:36,pentium:114,peopl:0,per:[0,33,35,115,118],perfect:0,perform:[0,33,36,37,99],period:29,perl:115,permiss:[24,37],permission_deni:164,persist:[18,39,59,79,81,103,104],person:[18,19],php:[8,35,37],phrase:35,physic:76,pid:[24,30,33,113],pikonyan:172,pip:14,pipermail:37,piro:37,pkg:[20,24,25,31,33,35],place:[2,24,176],placehold:36,plai:[0,179],plain:128,platform:[13,19],pleas:[2,3,13,15,24,37,47,162,173],pluggabl:0,plugin:[9,13,18,19,20,21,22],poedit:13,point:[0,33,34,36,50,63,69,81,96,118,123,124,125,136],pointer:63,pole:123,polici:36,poor:145,popular:[69,99],port:[23,36,37,38,113,114,115,116,118,143,159,162,177],port_numb:177,portabl:[33,36,115],posit:[37,50,63,69,74,79,99,106,107,173],posix:137,possibl:33,post:[8,35,36,37,50,99],posted_bi:176,postgresql:[0,133],potenti:36,power8:37,power:99,ppa:[18,19],practic:[0,37,170],pragma:99,precis:[0,8,26,35,72,147,173],preconfigur:[20,21,22,26,162],predict:[103,151],prefer:118,prefix_search:[33,102],prepar:[18,115,127,133,169],prepend:[115,136,137],press:13,pretti:37,prevent:36,previou:[35,36,37,162,170,171,175],price:170,primari:[18,86,169,170,171,172,173],print:[37,177],prioriti:[0,99,147],privileg:[36,177],probabl:102,problem:[33,35,36,42,115,136,137,154,170],proc:[20,21,22,26,36,51,57,62,63,99],procedur:[35,36],process:[0,13,18,19,20,21,22,26,27,33,35,36,37,39,43,47,70,72,74,81,87,95,103,115,136,137],processor:[0,20,21,22,26],product:115,profil:176,program:[1,35,36,79,115,118,119,137],progress:139,project:[0,3,8,9,15,17,37,137,162],promot:36,prompt:[27,35,143,173],pronounc:135,proper:[37,72,176],properli:[35,136,177],properti:[26,139],propos:[99,149],protocol:[0,1,18,20,21,22,26,35,37,74,113,114,115,116,143,159,162],provid:[0,1,17,20,21,22,26,35,37,40,46,79,110,115,118,123,131,143,145,147,148,149,150,151,158,159,162,171,173,177],proxy_cache_path:115,proxy_cache_valid:115,proxy_pass:115,pseudo:[18,35,36,37,39,43,65],pthread_:36,ptr:[31,63],pub:[8,20],publish:[8,37],pull:8,puropos:107,purpos:[36,69,131,173,177],push:13,put:[13,37,136,154],python:[8,14],quantal:35,query_expand:[36,95],query_expans:[33,36],query_flag:35,query_s:49,query_str:36,queryexpandertsv:[18,35,36,39,95,131,144],question:175,quetzal:35,quickli:138,quiet:164,quit:[8,18,39,70],quiz:172,quot:[36,86,91,107,136,137,173],quotat:[91,107],quotient:137,qwik:85,rab:[171,173,180],raccoon:172,radious_or_point:124,radix:137,rake:8,rakutan:175,ram:114,ran:147,rand:[18,39,120],rand_max:132,random:180,rang:[18,35,36,37,65,79,81,99],range_error:164,range_filt:[18,37,39,70],ranguba:[37,69],rank:[37,173],rare:36,rate:[36,121],rather:[69,79,99,138],raw:[17,36],rch:107,reach:154,read_only_file_system:164,readabl:[34,37],readi:[14,24,35,99,136,137],readm:[8,36],real:[0,133,154],realli:[99,136,137,179],realtim:[102,150],reason:[35,99,103,111,137,147,159,162,168,171],recal:[0,135],receiv:[0,13,46,115,118,119,137,164],recent:75,recogn:0,recommend:[19,20,21,22,26,27,37,72,99,136,137,154,159,162,173,177],reconstruct:37,record:[0,18,28,29,33,35,36,37,39,49,50,59,69,84,86],recov:47,recover:[47,111],recrod:99,rect:[35,123,124],rectangl:[0,33,35,50],recurs:[8,9,87,99,115,145],recycl:37,red:3,redcloth:8,redhat:[24,33],redmin:37,reduc:[0,35,36,148,151,159,162,179],ref:137,refer:[0,18,29,33,36,37],referenc:[35,36,84,99,103,171],reference_column:[37,99],reference_vector_column:36,refin:[0,36],refresh:172,regard:[36,136],regexp:37,region:[142,180],regist:[0,18,29,35,36,39,63,70,91],regress:[36,37],regular:[115,118,170,173],rel:[33,37,99],relat:[0,2,3,9,17,18,20,21,22,24,26,29,33,35,36,37,56],relationship:[18,35,81,169,170],relax:154,releas:[8,20,22,27],relev:[0,173],reload:145,remain:[36,139],remaind:137,rememb:99,remot:[18,169],remov:[25,33,34,35,36,37,47,56,84,95,106,115,152,170],remove_blank:91,remove_tokenized_delimit:91,removep:56,renam:[33,35,36,81,151,173],reopen:33,rep_gqpt:114,rep_gqtp:114,rep_http:114,rep_loc:114,repair:34,repeat:[0,13],replac:[37,117,119,137,179],replai:115,repli:[175,176],replied_to:176,replied_us:176,replies2:175,replies_cont:175,reply_to:175,repoforg:[20,35],report:3,repositori:[3,4,8],repres:[49,113,135,137,170,172,179],represent:[13,48,49,69],reproduc:36,request_cancel:[18,37,39,70,73],request_id:[73,96],requir:[0,20,21,22,24,25,26,27,33,35,36],reqular:118,res1:59,res2:59,res_column:114,res_tabl:114,rescord:135,reserv:78,resiz:63,resolut:[18,169],resolv:[33,35,69,83],resourc:[37,138],resource_busi:164,resource_deadlock_avoid:164,resource_temporarily_unavail:164,resours:42,respect:[35,170,176,180],respons:[0,33,35,36,37,42,74,96,118,159,164],rest:[63,145],restart:[95,145,154],restaur:0,restrict:[35,36,159,177],result:[0,7,13,18,33,34,35,36,37,59,72,91,96,97,98,99,111,118,119,123,131,133,134,137,138,140,143,145,147,148,150,151,169,170],result_too_larg:164,retri:41,retriev:[0,99,137],retry_max:164,return_cod:[72,139],reus:151,reveal:0,revers:[8,18],rewrit:38,rid:52,rid_max:53,rid_min:53,right:[37,50],ringtail:36,rinse_1:8,risk:37,rlimit_nofil:[36,139],role:[0,131],romaji:147,roonga:149,root:[36,113,115,116,177],rose:170,roughli:170,round:33,row:[0,133],rpm:[8,20,22,33,34,35,36,37],rpmforg:20,rroonga:[17,36,37,42,126,127,131,134,135,175],rsync:8,rubi:[0,17,35,37,38,69,97,98,126,127,135],ruby19:[8,35],ruby1:8,ruby_ev:[18,36,39,70],ruby_load:[18,36,39,70],ruby_script:97,rubygem:35,rule:[37,99,107,159],run:[3,8,10,13],rurema:37,ryoji:37,s10:37,sae:[102,148],saer:[102,148],saerc:[102,148],saerch:[102,148],sai:[137,173],salamand:[36,37],same:[36,41,46,49,69,72,73,86,95,96,99,115,131,136,137,140,148,159,170,173,175,180],sampl:[35,84,95,99,114,115,118,119,121,123,126,127,128,131,133,134],san:123,satisfi:[36,86],satoh:33,satoshi:37,sauci:[36,37],save:[8,37,118,168,175],sbin:23,scalar:[18,39,65],scale:[0,159],scan:[10,126,127,136,137],scan_build:10,schema:[84,99,117,121,123,126,127,128,131,133,134,136,137,138,148,154,175],score1:7,score2:7,score:[35,69,81],score_1:118,score_2:118,score_adjust_express:99,score_adjust_expression1:99,score_adjust_expression2:99,score_column:43,score_n:118,scorer:[18,82],scr:114,script:[18,24,29,35,36,37,39,49],sea:[107,147],sear:147,searc:147,search_result:99,searchabl:138,sebastian:37,sec:41,second:[72,79,96,99,123,136,137,139,159,170,173,175,176,180],secret:8,secsion:72,section:[3,13,16,17,19,20,21,22,23,24,25,26,27,36,37,40,43,52,63,69,70,75,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,115,120,123,136,141,145,146,147,148,150,154,164,171,175,176],secur:[18,29,37],sed:[33,35],see:[0,1,14,17,18,20,21,22,23,24,25,26,35,36,37,39,41,46,63,69],segment:[35,37,76],segv:36,select:[18,29,31,32,33,35,36,37,39,42,49,50,69,70,71,73,75,81,84,94,96],select_opt:137,selector:35,self:114,semi:[33,103],sen_index_delimit:38,sen_index_norm:38,sen_sel_term_extract:38,senboku:36,send:3,sender:[118,119],senna:29,sent:159,separ:[35,45,79,86,91,99,102,106,107,136,137,143,145,164,171,173],sequenc:[33,36,73,99,102,136,137,139,147,148,150,164],sequence_dataset:117,sequence_queri:117,sequenti:37,serach:148,serch:[102,148],sergei:37,seri:173,serihiro:35,seriou:[35,37],serv:[8,37,170],servic:[0,17,35,36,37,148,154,162],session:[118,164],set:[20,21,22,26,29,35,36,37,41,42,46,56,65,69,75,99,106],set_host:114,set_port:114,set_token_filt:37,setup:[13,17,36],seven:173,shape:142,shard:[29,151],share:[0,2,24,33,35,36,41,42,43,47,113,115,172,175],shell:[24,136],shidara:33,shift_ji:24,shimada:35,shimoda:31,shimomura:35,shinjyuku:180,shinoda:37,shinya:35,sho:[36,37],sholud:24,shop:[138,165],shorter:138,shorttext:[37,50,69,72,78,79,81,84,85,87,99,102,103,104,106,109,113,114,121,123,126,127,128,131,133,134,136,137,138,140,147,148,150,151,152,154,155,167,170,171,172,173,175,176,177,178,179,180],should:[14,17,19,20,21,22,26,27,35,49,63,69,73,86,99,103,109,136,137,140,145,148,164],shouldn:37,show:[0,24,30,33,35,36,37,45,72,74,84,86,91,99,121,123,126,127,128,131,133,134,136,137,142,143,164,170,171,172,173,176,177,180],showen:74,shown:[137,173],shuhei:37,shutdown:[18,39,70],sid:[33,37,76],side:[0,35,99],sigcont:36,sign:[8,35,74],signal:37,significantli:0,sigstop:36,sigusr1:33,silent:17,simil:137,similar_search:[35,102],simpl:[37,79,81,91,92],simplest:[0,24,73],simplifi:36,sinc:[22,35,43,72,77,103,109,113,123,137,138,139,162,170,176],singl:[36,37,69,86,91,99,107,173],site:[37,85,87,99,135,170,171,172,173,175,177,180],sitecountri:[171,177],sitedomain:[171,177],situat:99,six:[139,173],size:[19,20,21,22,26,27,28,33,35,36,37,43,49,61,63,73,76,79,103,115,133,151,154],sizeof:49,sji:[24,38,113],skip:[36,37,173],slash:137,sleepi:138,slow:[115,151],slower:[123,171],small:[36,37,103,136,137,151,176],smaller:[0,69,103,123,138,139],snippet1:133,snippet2:133,snippet3:133,snippet:[35,36,38,133],snippet_html:[18,35,36,37,39,120],soccer:172,social:172,socket:35,socket_is_already_connect:164,socket_is_already_shutdown:164,socket_is_not_connect:164,socket_not_initi:164,soft:154,softwar:3,solari:[18,19],solr:137,solut:[18,166],solv:170,some:[0,1,2,13,22,24,28,35,36,37,41,49,69,72,73,96,103,107,117,120,131,136,139,152,154],someon:176,someth:37,sometim:37,soon:[133,142,159],sort:[0,18,33,36,99,102,142,151,169],sortbi:[33,36,82],sound:[140,148],soundkitchen:[33,35],sourc:[8,12,13,14,17,18,19],source_file_nam:72,sourceforg:[2,8],southern:35,space:[0,33,36,63,69,86,91,99,107,136,150,173],spain:123,span:[126,127,128,133],speaker:2,spec:[33,35,36],specfi:50,special:[13,24,36,41,49,72,74,99,107,126,127,133,136,173,177],specif:[0,18,24,35,36,37,69,97,98,99,102],specifi:[0,13,18,23,24,34,35,36,37,46,47,50,57,63,65,69,72,75,78,79,81,83,84,86,87,91,95,96,97,98,99,102,103,106,107,109,115,117,118,119,121],speech:0,speed:[33,149,151],spell:[145,179],spend:[136,137],spheric:123,sphinx:[11,12,13,14,37],sphr:[123,124],spil:29,split:[33,137,151],spokesman:3,sport:172,spreadsheet:145,sql:[99,171],squar:123,squeez:[8,36],src:[21,170],src_kei:59,src_key_siz:59,ssh:8,ssssss:139,stabl:[37,71,102],stack:36,stack_over_flow:164,stage:37,stamp:[139,147,148,150],standalon:119,standard:[86,115,155,173,177],start:[13,27,33,35,36,37,63,72,81,99,118,123,136,137,138,139,143,145,147,149,159],starttim:[101,115,143,173,177],startup:35,state:[35,84,123,164],statement:137,station:[142,176,180],statu:[18,20,21,22,26,35,36,37,39,70,74,84],status:[74,164],stdin:34,stem:[21,26,37,152],step:[13,24,27,150,170,173],still:[12,13,36,37,81,96],stop:[33,35,36,37,81,99,115,152],stop_word:[106,152],storategi:99,str:49,str_length:63,str_ptr:63,str_size:49,stream:37,strerror:37,strict:37,string1:122,string2:122,string:[7,18,33,34,35,36,37,46,48,49,56,57,63,69,72,73,86],string_liter:37,string_siz:49,strip:128,strlen:63,strongli:[19,20,21,22,26,27],structur:[0,37,72,151,172],stub:37,studio:[27,35,36],style:37,sub1:99,sub:[0,8],sub_filt:[18,36,39,120],subject:36,submiss:[102,147,148,150],submit:3,subrecord:36,substit:99,substitut:[13,17,99,131,136,137],substr:[136,137],succeed:[24,74,78,84,87,109,173],succeeded_or_not:[81,84,87,109],success:[42,43,46,47,49,63],successfulli:[63,173],successor:137,suddenli:36,sudo:[8,10,14,20,21,22,23,24,25,26,35,154,162,168,177],suffici:63,suffixsearchterm:[136,137],sug:149,suggest:[18,24,31,32,33,34,35,36,37,39,70],suggest_prepar:[102,147,148,150],suit:[0,37,133],suitabl:[37,99,103,138,151],sum:[37,99],summar:171,summari:[18,36,39],suno:37,superior:[0,133],support:[0,1,13,17,24,26,29,33,34,35,36,37,38,63,86,96,97,98,99,103,107,115,119,131,133,136,137,138,140,141],suppress:[34,35,37],sure:173,surfac:142,surround:[35,126,127,133,137],suzuki:35,swap:154,swig:38,synonym:[99,145,179],syntax:[18,29,35,36,37,39,49,69],syntax_error:164,syscal:37,sysconfig:162,sysctl:[23,154,168],system:[0,24,25,26,29,33,36,37,99,115,133,136,137,138,154,155,170,180],systemctl:162,systemd:35,tab:[45,143,145,164],tabl:[7,18],table1:59,table2:59,table_:[103,151],table_cr:[18,35,37,39,69,70,79,81,84,85,87,99],table_dat_kei:[36,37,103,104,136,137],table_hash_kei:[69,84,85,87,99,103,104,121,123,128,131,137,138,140],table_list:[18,31,33,35,39,70],table_no_kei:[37,84,85,87,99,103,104,126,127,131,133,136,137,138],table_pat_kei:[36,69,79,81,85,99,103,104,106,109,113,126,127,131,133,134,136,137],table_remov:[18,35,36,39,70],table_renam:34,table_token:[18,39,70],tablenam:71,tag:[8,18,33,35,36,37,69,79,99],tagger:0,tahr:[26,37],tail:[8,164],tajima:35,takashi:84,takatsugu:37,takayuki:33,take:[79,81,87,92,96,108,109,111,162,173],takiuchi:36,talk:[2,8,36],tamano:37,tanab:36,tanuma:37,tar:[8,20,21,22,23,24,25,26],target:[14,24,27,33,35,37,42,43,47,49,50,56,69,86,87,96,99,103,107,126,127,131,133,136,159,170,173,175],target_charact:49,target_nam:37,taro:172,task:[0,35],tasuku:38,tatsuya:35,temporari:[18,35,39,123],tend:175,term:[0,28,35,36,37,76,78,99,106,113,126,127,131,133,136],termin:[35,46,49,57,63,115,173,176],test:[8,10,19,20,21,22,26,27,35,37,114,115,170,173,175,176,177],test_loc:114,test_str:10,test_text_otoj:10,testdb:[114,119],tetsuharu:37,tex:107,textil:8,than:[0,28,33,36,37,69,79,99,102,103,123,133,135],thatn:99,theater:179,theatr:179,thei:[24,25,69,86,91,95,99,107,115,126,127,133,134,135,136,137,138,139,143,145,147,148,149,150,151,154,159],them:[12,13,20,21,22,24,26,41,49,69,72,78,86,99,123,136,154,170,173,177,180],themselv:[13,145],thesauru:99,thi:[0,3,14,16,17,19,20,21,22,23,24,25,26,27,29,33,35,36,37,40,42,43,45,46,47,56,63,69,70,72,75,78,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,115,117,118,120,121,123,126,127,131,133,134,136,137,139,141,143,145,146,147,148,150,154,159,164,168,170,171,173,175,176,177,179,180],think:[99,137],third:[79,99,137,170],those:[0,13,24,25,34,99,123,133,135,136,137,140,143,149,150,151,159,170,173],though:[0,35,36,37,147,175],thread:[0,36,37,43,46,47,63,87,113,118,139,159],thread_tabl:114,thread_title_column:114,threasd:113,threashold:[31,167],three:[36,69,72,81,99,123,126,135,147,148,170,171,173,175],threshold:19,through:[0,115],throughput:[33,159],thu:[0,37,117,119,136,174,175,179,180],tid:53,time:[0,18,29,33,35,36,37,41,72,96,102,111,114,118,133,136],time_column:114,time_stamp:139,timeout:[36,41,56],timestamp:176,timeuot:41,titl:[8,36,37,87,99,122,134,136,137,170,171,172,173,175,177],tld:171,tmp:[8,36,79,81,102,104,113,118,145,159,173,177],tobbi:131,todai:0,todo:[43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,66,68,69,72,91,94,99,117,120,129],tokenbigram:[99,103,104,106,107,108,113,126,127,131,133,134,136,137,138,148,151,152,153,154,167,173,175,176,179],tokenbigramignoreblank:[108,153,167],tokenbigramignoreblanksplitalpha:153,tokenbigramignoreblanksplitalphadigit:153,tokenbigramignoreblanksplitsymbol:[108,153,167],tokenbigramignoreblanksplitsymbolalpha:[108,167],tokenbigramignoreblanksplitsymbolalphadigit:[108,167],tokenbigramsplitsymbol:[108,153,167],tokenbigramsplitsymbolalpha:[99,107,108,153,167],tokenbigramsplitsymbolalphadigit:[108,131,148,153,167],tokendelimit:[107,108,150,153],tokendelimitnul:[108,153],tokenfilterstem:[21,26,37],tokenfilterstopword:[37,106],tokenizer_error:164,tokenizer_list:[18,37,39,70],tokenkytea:35,tokenmecab:[35,108,167],tokentrigram:[107,108,153],tokenunigram:[108,153],tokyo:[123,180],tokyogeopoint:[33,50,123,124,125,155,180],tom:131,tomita:31,tomo:172,tomoatsu:[31,35],too:[36,69,99,137,170,175],too_large_offset:164,too_many_link:164,too_many_open_fil:164,too_many_open_files_in_system:164,too_many_symbolic_link:164,too_small_limit:164,too_small_offset:164,tood:63,tool:[11,13,14,17,18,19],top:[50,171],top_left:[33,125],top_left_point:50,topic:3,total:[28,35,76],touch:154,toybox:170,tracker:3,tradit:[0,37],transfer:[0,18,162,164,169],transit:162,translat:3,travel:176,travi:16,treat:[35,36,37,99,107,137,142,147,148],tree:37,tri:[41,176],trial:0,trie:[18,33,35,36,103,136,137,151,169,173],tritonn:[99,136,137],troubl:13,truncat:[18,33,36,37,39,43,70,87],trust:8,trusti:[8,26,37],tune:[18,36,39,69,99],turn:115,tutori:[18,35,37,63],tweet:[2,138],twice:[99,136],two:[15,20,21,22,26,36,37,46,49,72,78,79,91,99,103,107,115,119,123,131,133,134,136,139,140,142,148,150,158,159,162,171,172,173,175,176,180],txt:[12,13],type1:102,type2:102,type:[9,18,33,34,35,36,37,43,45,46,49,50,54,57,65,69,74,78,79,81,84,91,96,97,99,102,103,107,114,115,118,123,134,136,137,142,143,147,148,150,151,159,164,169],type_of_the_column:134,typic:99,typo:[33,35,36,37,145,147,148],ubuntu:[8,14,17,18,19],ueno:[33,35],uid:8,uint16:[36,155],uint32:[35,36,37,69,72,79,81,84,99,103,104,109,121,134,136,137,138,140,152,154,155,167,171,172,173,175,177,178,179,180],uint64:[36,37,155],uint8:[31,36,79,155],uint:35,ull:107,ultra:172,umask:37,umemoto:33,unari:36,unauthent:[21,35],unchang:63,uncontinu:35,undefin:170,under:[24,37,115,118,119,159],underflow:170,underli:0,underscor:103,understand:[37,99,173],unexpect:[35,37],unexpectedli:36,unicod:140,unicorn:26,uninstal:35,uniqu:[96,118],unit:[70,84,123,133,137,164],univers:26,unix:[24,37],unix_time_when_command_is_start:72,unknow:37,unknown:[34,48],unknown_error:164,unlink:49,unload:35,unlock:63,unmanag:76,unnecessari:154,unpatch:38,unrecover:47,unrel:33,unresolv:33,unsign:[37,42,43,49,52,56,57,59,60,61,63,74],unsplit:[7,99],unstabl:34,unsupported_command_vers:164,untag:128,until:[13,37,41,63,86,99,138,154],unus:37,updag:35,update_buffer_s:52,update_not_allow:164,updated_at:167,upgrad:[35,37,158],upload:8,upper:[33,37,103,173],uptim:[101,115,143,173,177],uri:115,url:[33,37,85,159],usa:171,usag:[0,18,36,37,39],use_offline_index:34,user:[3,24,27,35,36,37,72,73,79,81,84,85,96,99,109,114,115,118,121,127,131,133,134,136,137,139,147,148,149,150,154,159,172],user_ag:121,user_column:114,user_data:[57,63],user_input:137,usernam:[27,172],users_index:176,users_loc:176,users_memo:131,users_nam:131,usr:[10,23,24,95,113,115],usual:[46,119,170,175],utc:[72,137],utf8:[24,48,113],utf:[24,35,36,38,118,137,140,143],util:115,utop:[8,26],uuuuuu:137,uzulla:33,valid:[33,35,36,37,99,150,151,170,173],valu:[0,24,33,34,35,36,37,41,43,45,46,52,54,56,57,60,63,65,69,72,74],value1:[86,115,137],value2:[86,137],value_1:[173,177],value_2:[173,177],value_column:43,value_typ:59,valuebuf:54,vari:[28,63],variabl:[25,29,33,34,35,36,37,63,79,99,137,145,164,170],varieti:172,variou:[18,169],vdw:[171,173,180],vector:[18,33,35,36,37,39,65],vector_column:36,veres:159,veri:[0,35,72,86,99,126,127,133,136,137,147,151,159,172],version1:71,version2:71,version3:71,version4:71,version:[8,25,26,27,29,33,35,36,37,38,43,44,46,47,71,73,77,87,96,101,109,111,113,114,115,123,140,143,158],vertic:103,via:[13,35,74,150],video:172,view:[18,35,118,168,169],virtual:36,visual:[0,27,33,35,36,37,72],vmstat:168,vocabulari:173,voic:140,vojtovich:37,vulner:37,w64:8,wai:[0,3,15,35,36,37,69,115,119,131,135,143,171,175,176,179],wait:[41,63],wanab:36,want:[9,12,20,21,22,23,24,26,37,86,91,97,98,99,106,107,115,118,123,134,136,145,147,148,150,162,164,168,171,173,175,179],wareohji:35,warn:[34,35,36,37,88,89,99,115,139],warp:37,warri:19,washida:36,watch:8,weak:[0,133],web:[24,99,102,115,136,148,150,172],webclip:128,weight1:[35,69,99],weight2:[35,69,99],weight3:69,weight:[18,35,36,37],weight_in_match_column:69,weight_in_weight_vector:69,welcom:[2,3,12,13,99,136,137,176],well:[0,24,36,115,133,177],were:[123,173],wget:[20,21,22,24,25,26],wgs84geopoint:[33,50,123,155,170,171,172,176,177,180],wgs84geoppoint:50,what:[49,102,134,179],wheezi:[8,18,19],when:[0,3,14,29,33,35,36,37,43,47,69,72,78,86,95,99,102,103,115,118,123,128,131,134,136,140,147,172,173,176,177],where:[24,74,170],whether:[35,37,47,56,74,99,102,109,111,115,121,123,131,134,135,136,168,170],which:[0,1,22,35,36,37,63,84,91,97,98,99,106,107,113,118,119,123,128,131,134,136,137,147,162,170,171,172,173,175,176,177,178,179,180],white:[136,173],who:[36,172],whole:36,whombx:36,whose:[137,173],why:[36,99,162],wibowo:36,wide:[0,24,33,173],width:[33,140],wiedenroth:37,wiki:115,wikipedia:155,win64:27,window:[8,18,19],wing:[35,36],with_check:[37,91],with_posit:[78,79,99,126,127,131,133,134,136,137,138,152,154,167,173,175,176,179],with_sect:[37,78,79,175,176],with_typ:91,with_weight:[37,69,78,79],within:[147,148,176,180],without:[0,34,35,36,37,69,75,95,99,115,131,133,134,136,137,138,147,150,158],wno:33,word1:[35,99,136,137],word2:[35,99,136,137],word:[0,35,37,65,99,134,135,136,137,145,147,148,149,150,152,174,176],work:[0,3,8],workaround:37,worker:[36,115],world:[36,37,155,180],writabl:37,write:[14,24,34,37,87,94,99,113,136,137,153,174,175,176],written:[14,37,95,109,176],wrong:[33,35,36,37,111,148,149],wrongli:33,x64:[8,27],x86:[27,33],x86_64:[8,20],xcode:23,xml:[33,34,35,36,37,45],xvzf:[20,21,22,23,24,25,26],xxx:[36,37,113,137],yahppo:36,yamada:37,yamaguchi:33,yamamoto:37,yaman:[36,37],yappo:[36,37,38],year:[121,137,139,176],yet:[0,33,36,97,98,99,137,142,159],yito:[35,36],yml:17,yoji:33,yokoyama:[36,37],yoku:[36,37],york:[123,176],yoshida:36,yoshioka:35,you:[0,1,2,3,9,12,13,14,15,16,17,19,20,21,22,23,24,26,27,33,34,35,36,37,41,42,43,45,46,47,49,63,69,70,72,73,74,75,78,79,81,84,86,87,91,95,96,97,98,99,102,103,106,107,109,111,113,115,117,118,119,120,121,123,126,127,128,131,133,134,135,136,137,140,142,143,145,147,150,151,152,154,159,162,164,168,170,171,172,173,175,176,177,178,179,180],your:[0,3],your_db:33,your_github_account:13,your_new_db:33,yourself:19,yuki:[33,37],yum:[8,14,20,22,35],yuya:37,yyi:13,yyyi:[137,139],zenigata:172,zero:[65,69,99,140,145,152,164,170],zeromq:24,zip:[8,18,19],zlib1g:[21,26],zlib:19,zlib_error:164,zsh:24,zunda:33,zxvf:8},titles:["1. Characteristics of Groonga","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to avoid mmap Cannot allocate memory error","11. Development","11.1. Travis CI","12. How to contribute to groonga","12.1. How to report a bug","12.2. How to contribute in documentation topics","12.2.1. Introduction","12.2.2. I18N","12.2.3. C API","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","12.3.1. Repository","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","2. Install","2.1. Windows","2.2. Mac OS X","2.3. Debian GNU/Linux","2.4. Ubuntu","2.5. CentOS","2.6. Fedora","2.7. Oracle Solaris","2.8. Others","3. Community","4. Tutorial","4.1. Basic operations","4.10. Let's create micro-blog","4.11. Query expansion","4.2. Remote access","4.3. Various data types","4.4. Various search conditions","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.7. match_columns parameter","4.8. Prefix search with patricia trie","4.9. Additional information about lexicon for full text search","5. Server","5.1. Server packages","5.2. GQTP","5.3. HTTP","5.3.1. Comparison","5.3.2. groonga","5.3.3. groonga-httpd","6. Client","7. Reference manual","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. groonga command","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.11. grn_expr","7.11.1. Query syntax","7.11.2. Script syntax","7.12. Function","7.12.1. between","7.12.10. now","7.12.11. query","7.12.12. rand","7.12.13. snippet_html","7.12.14. sub_filter","7.12.2. edit_distance","7.12.3. geo_distance","7.12.4. geo_in_circle","7.12.5. geo_in_rectangle","7.12.6. highlight_full","7.12.7. highlight_html","7.12.8. html_untag","7.12.9. in_values","7.13. Operations","7.13.1. Geolocation Search","7.14. Suggest","7.14.1. Introduction","7.14.2. Completion","7.14.3. Correction","7.14.4. Suggestion","7.15. Indexing","7.16. Log","7.17. Tuning","7.18. API","7.18.1. Global configurations","7.18.10. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.18.11. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.18.12. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.18.13. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.18.14. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.18.15. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.18.16. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.18.17. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.18.18. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.18.19. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.18.2. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.18.20. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.18.21. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.18.22. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.18.23. Plugin","7.18.3. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.18.4. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.18.5. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.18.6. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.18.7. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.18.8. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.18.9. grn_expr","7.2. Output","7.3. Command","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.2. Output format","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.3. Request ID","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.3.4. Return code","7.3.5. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.4. \u30c7\u30fc\u30bf\u578b","7.5. Tables","7.6. Column","7.6.1. Scalar column","7.6.2. Vector column","7.6.3. Pseudo column","7.6.4. Index column","7.7. Normalizers","7.8. Tokenizers","7.9. Token filters","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","9. Limitations","Cast","Groonga documentation","News","News in Senna period","Release 1.2.9 - 2011/12/29","Release 1.3.0 - 2012/01/29","Release 2.1.2 - 2013/01/29","Release 3.1.2 - 2014/01/29","Release 4.1.1 - 2015-01-29","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[31,32,33],"1\u30ea\u30ea\u30fc\u30b9":[31,33],"2\u30ea\u30ea\u30fc\u30b9":31,"3\u30ea\u30ea\u30fc\u30b9":31,"4\u30ea\u30ea\u30fc\u30b9":31,"5\u30ea\u30ea\u30fc\u30b9":31,"6\u30ea\u30ea\u30fc\u30b9":[30,31],"7\u30ea\u30ea\u30fc\u30b9":[30,31],"8\u30ea\u30ea\u30fc\u30b9":31,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":6,"\u306e\u66f4\u65b0":8,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":6,"\u30aa\u30d7\u30b7\u30e7\u30f3":[112,113,114],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":10,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":7,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":7,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":7,"\u30b3\u30de\u30f3\u30c9":[113,116],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":71,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":114,"\u30b5\u30f3\u30d7\u30eb":[112,114],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":114,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":10,"\u30c6\u30b9\u30c8\u65b9\u6cd5":10,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":10,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":155,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":10,"\u30c7\u30fc\u30bf\u578b":155,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[114,166],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":167,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":8,"\u30d0\u30fc\u30b8\u30e7\u30f30":30,"\u30d0\u30fc\u30b8\u30e7\u30f31":[31,32],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":71,"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":8,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":8,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":8,"\u30d3\u30eb\u30c9\u6642\u306etip":8,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":8,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":8,"\u30d6\u30ed\u30b0":8,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":8,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":155,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":10,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":6,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":8,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":8,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":8,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":10,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":178,"\u4f7f\u3044\u65b9":114,"\u4f8b":[113,122,124,125,130,132,167],"\u4f8b\u3048\u3070redmin":6,"\u4fee\u6b63":[30,31,32,33],"\u5236\u9650\u4e8b\u9805":114,"\u524d\u63d0\u6761\u4ef6":8,"\u539f\u56e0":167,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":167,"\u540d\u524d":[67,112,113,114,116,122,124,125,130,132,155],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":155,"\u5909\u66f4":31,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":8,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":165,"\u5b9f\u9a13\u7684":33,"\u5bfe\u5fdc":6,"\u5bfe\u7b56\u65b9\u6cd51":167,"\u5bfe\u7b56\u65b9\u6cd52":167,"\u5f15\u6570":[112,113,114,122,124,125,132],"\u611f\u8b1d":[30,31,32,33],"\u6539\u826f":[30,31,32,33],"\u66f8\u5f0f":[112,113,114,116,122,124,125,130,132],"\u691c\u7d22":165,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":165,"\u691c\u7d22\u306e\u6319\u52d5":165,"\u691c\u7d22\u4f8b1":7,"\u691c\u7d22\u4f8b2":7,"\u691c\u7d22\u4f8b3":7,"\u691c\u7d22\u4f8b4":7,"\u6982\u8981":71,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":10,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":8,"\u7279\u6b8a\u547d\u4ee4":114,"\u7406\u7531":6,"\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9":113,"\u7d44\u8fbc\u578b":155,"\u8aac\u660e":[67,112,113,114,116,122,124,125,130,132,155],"\u8fd4\u5024":[99,116,122,124,125,130,132],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":5,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":6,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":165,"\u95a2\u4fc2\u5f0f":7,"\u95be\u5024\u3092\u3042\u3052\u308b":167,"\u9759\u7684\u89e3\u6790":10,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":165,"benchmark\u547d\u4ee4":114,"benchmark\u5b9f\u884c\u7d50\u679c":114,"boolean":[137,170],"case":72,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":71,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":8,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":8,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":8,"debian\u7cfb\u306e\u5834\u5408":8,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"default":[24,71],"files\u306e\u5b9f\u884c":8,"float":137,"function":[120,137],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":5,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":7,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":8,"grntest\u306e\u6e96\u5099":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":8,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":7,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":4,"hat\u7cfb\u306e\u5834\u5408":8,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"homebrew\u306e\u66f4\u65b0":8,"http\u30b5\u30fc\u30d0\u30fc":116,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":90,"new":[13,29,38],"null":137,"po\u306e\u5b9f\u884c":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":8,"release\u306e\u5b9f\u884c":8,"return":[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,118,121,123,126,127,128,129,131,133,134],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":6,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":8,"twitter\u7de8":6,"version\u30d1\u30e9\u30e1\u30fc\u30bf":71,"windows\u5411\u3051\u306e\u5834\u5408":8,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"x\u306e\u304a\u77e5\u3089\u305b":[30,31,32],about:174,access:[159,177],add:13,addit:[137,140,174],adjust:99,administr:[115,177],advanc:99,against:175,aggreg:0,alloc:168,also:[72,73,74,75,77,79,82,84,86,88,89,90,91,92,94,96,97,98,99,102,103,106,107,108,117,126,127,131,133,134,135,140,145,151,152,164],among:175,api:[12,40],appli:69,approximate_typ:123,archiv:26,arg:7,arithmet:137,arrai:137,assign:[73,136,137],authent:159,avail:[115,152],avoid:168,basic:[137,173],benchmark:114,between:121,bigram:176,binari:177,bitwis:137,blog:176,blogroonga:8,bodi:72,brows:115,bug:15,build:[20,21,22,23,24,26,27],built:140,cach:[99,115],cache_limit:75,call:137,callback:7,cannot:168,cascad:84,cast:64,cento:20,chang:38,characterist:[0,151],check:[76,111],clearlock:77,client:[1,177],clone:13,close_tagn:126,code:74,column:[0,28,65,66,67,68,69,123,126,127,136,171,173,175],column_cr:78,column_list:79,column_or_valu:121,column_remov:80,column_renam:81,combin:136,command:[70,71,111,113,118,143,159,173,177],comment:176,commun:2,comparison:[137,159],complet:[147,149],compress:159,condit:[99,136,180],configur:[14,17,24,41,115,159],confirm:13,construct:138,contain:7,contribut:[3,11],control:137,cooccurr:[147,148,150],core:159,correct:[148,149],cpu:159,creat:[69,103,117,173,175,176],custom:159,daemon:177,data:[103,115,119,136,137,147,150,170,176],databas:[159,173],database_path:[118,119],dataset:117,date:170,db_api:7,debian:21,default_token:103,define_selector:82,defrag:83,delet:84,depend:[14,24],desctipion:117,develop:16,direct:115,divis:137,document:[11,14,18],domain:171,down:[115,180],downtim:159,drildown:171,drilldown:[99,171],drilldown_calc_target:99,drilldown_calc_typ:99,drilldown_limit:99,drilldown_offset:99,drilldown_output_column:99,drilldown_sortbi:99,dump:85,each:175,edit:13,edit_dist:122,ellipsoid:123,enabl:14,encod:24,engin:0,equal:[7,136,137],error:[72,168],escal:24,escap:136,exampl:[17,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,117,164,168],execut:110,exit:117,expand:144,expans:179,explicit:136,explicitli:123,express:136,extract:[137,150],facebook:2,favorit:176,featur:142,fedora:22,file:[13,117,119,145,154,159],filter:[99,152],filter_str:134,fix:[29,33,35,36,37,38],flag:[91,103,106,107,164],flow:13,follow:176,format:[72,86,99,139,145,173],free:0,freebsd:154,from:[20,21,22,23,24,26,27,119],full:[0,136,173,174,175,180],gener:[13,14],geo:[0,137,172],geo_dist:123,geo_in_circl:124,geo_in_rectangl:125,geoindex:176,geoloc:[142,176],geopoint:176,get:[118,173],global:41,gnu:21,gqtp:[157,162,164,177],greater:[7,136,137],greater_equ:7,grn_cach:42,grn_column:43,grn_command_vers:44,grn_content_typ:45,grn_ctx:46,grn_db:47,grn_encod:48,grn_expr:[7,49,135],grn_geo:50,grn_hook:51,grn_ii:52,grn_index_cursor:53,grn_info:54,grn_match_escal:55,grn_obj:56,grn_proc:57,grn_search:58,grn_tabl:59,grn_table_cursor:60,grn_table_select:7,grn_type:61,grn_user_data:62,grndb:111,grnslap:112,groonga:[0,3,5,8,13,18,38,113,114,115,116,117,118,119,160,161,162,177],groonga_base_path:115,groonga_cache_limit:115,groonga_databas:115,groonga_database_auto_cr:115,groonga_log_level:115,groonga_log_path:115,groonga_query_log_path:115,group:[136,137],gzip:159,hash:176,hashtag:176,header:[72,164],help:24,highlight_ful:126,highlight_html:127,homebrew:23,how:[3,11,13,15,69,73,138,147,148,150,168,177],html:[13,14,128],html_untag:128,http:[143,158,159,162,177],httpd:[115,118,119,161,162],hypertext:177,i18n:13,improv:[29,33,34,35,36,37,38],in_valu:129,index:[0,28,66,103,138,172,173,175],inform:[174,180],instal:[14,19,24,27,145],instant:0,integ:137,introduct:[14,149],invert:0,issu:[15,177],javascript:180,json:[72,86],just:69,kei:[99,178],kern:154,key_typ:103,keyword:176,keywordn:126,label:99,languag:13,latest:8,latitud:[0,170],launch:118,learn:[118,119,147,148,149,150],learner:119,left:137,less:[7,136,137],less_equ:7,let:176,lexicon:[103,173,174],librari:[0,24],like:180,limit:[28,69,99,145,151,171],line:[118,143],linux:[21,154],list:[2,15,74],liter:137,load:[69,86,115,173,176],localstatedir:24,locat:[0,123,145,172,180],lock:0,lock_clear:87,log:[24,119,139,159],log_level:88,log_put:89,log_reopen:90,logic:[136,137],longitud:[0,170],lz4:24,mac:23,macport:23,mail:[2,15],make:[8,24],manual:39,match:[24,136,137],match_column:[99,131,175],match_escalation_threshold:99,max:[75,121,154],max_bord:121,max_map_count:154,maxfileperproc:154,memcach:177,memori:[154,168],messag:24,message_pack_install_prefix:24,messagepack:72,micro:176,min:121,min_bord:121,mmap:168,mode:[7,106,107],modul:115,modulo:137,mroonga:0,multi:159,multipl:[137,171,175],munin:24,name:[81,103,117,175],narrow:180,nest:175,new_nam:81,nginx:115,nofil:154,normal:[69,91,103,107,140],normalizer_list:92,normalizer_nam:126,normalizerauto:140,normalizernfkc51:140,not_equ:7,now:130,number:[24,99,154],numer:170,object:137,offlin:138,offset:99,old:29,onlin:138,open:154,open_tagn:126,oper:[137,141,173],option:[91,106,107,117,118,119,123,131],oracl:25,origin:137,other:24,output:[13,72,99,143,173],output_column:99,overcommit_memori:154,overview:[0,170],pack:24,packag:[24,26,162],page:99,paramet:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,96,97,98,99,100,101,102,103,104,105,106,107,109,118,119,121,123,126,127,128,129,131,134,154,175],patch:13,path:[24,98,159],patricia:178,per:154,perform:[115,159],period:38,persist:151,person:26,phrase:136,platform:24,plugin:[24,63],point1:123,point2:123,point:137,post:[115,159,176],ppa:26,prefix:[7,24,136,137,147,159,178],prepar:179,primari:178,process:[139,154],protocol:[164,177],proxi:115,proxy_cach:115,pseudo:67,pull:13,queri:[0,99,115,131,136,139,144,177,179],query_expand:[99,131],query_expans:99,query_flag:99,query_str:131,query_typ:164,queryexpandertsv:145,quit:93,rand:132,rang:[103,173],range_filt:94,read:[0,147],record:[99,151,173],recov:111,rectangl:123,red:8,refer:[39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,69,170,172],regist:95,relat:[99,115,119,175],relationship:172,releas:[29,33,34,35,36,37],remot:177,report:15,repositori:[9,13],request:[13,73,115,118],request_cancel:96,requir:[79,81,91,96,99,106,107,109,118,123,128,131],resolut:172,restart:162,result:[171,173],revers:[115,172],right:137,ruby_ev:97,ruby_load:98,run:[14,177],sampl:[136,137],scalar:68,scope:134,score:99,scorer:[99,180],script:[97,137],search:[0,69,99,136,137,142,147,148,150,172,173,174,175,176,178,179,180],secur:[137,177],see:[72,73,74,75,77,79,82,84,86,88,89,90,91,92,94,96,97,98,99,102,103,106,107,108,117,126,127,131,133,134,135,140,145,151,152,164],select:99,send:[13,177],senna:38,server:[0,156,162,177],set:[115,118],sharabl:0,shift:137,shut:115,shutdown:100,sign:137,similar:[7,137,148],simpl:99,size:164,snippet_html:133,softwar:14,solari:25,solut:168,sort:[171,173,180],sortbi:99,sourc:[20,21,22,23,24,26,27],specif:[115,163,175,176],specifi:[123,173],sphere:123,start:162,statu:[101,117,164],stop:162,storag:0,store:[0,103],string:[91,106,107,137,170],style:99,sub_filt:134,submit:15,substitution_t:131,subtract:137,success:72,suffix:[7,136,137],suggest:[102,117,118,119,146,149,150],summari:[41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,66,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,115,118,119,121,123,126,127,128,129,131,133,134,140,145,151,152,154],support:142,synopsi:[115,118,119],synopsti:117,syntax:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,121,123,126,127,128,129,131,133,134,136,137,180],tabl:[28,79,81,99,103,106,119,151,173,175,176],table_cr:103,table_dat_kei:151,table_hash_kei:151,table_list:104,table_no_kei:151,table_pat_kei:151,table_remov:105,table_token:106,tag:[103,172,176],target_nam:[87,109],temporari:151,term:137,termin:177,text:[0,136,173,174,175,180],than:[136,137],thank:[29,33,34,35,36,37],threshold:24,time:[137,170,176],todo:[131,133],token:[0,107,152,153],token_filt:[103,107],tokenfilterstem:152,tokenfilterstopword:152,tokenizer_list:108,tool:[24,115,177],topic:11,total:99,tracker:15,transfer:177,translat:13,travi:17,trie:178,truncat:109,tsv:[72,145],tune:154,tutori:169,twitter:2,type:[170,176],ubuntu:26,unsign:137,updat:[0,8,13,14,147],upgrad:159,usag:[66,68,69,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,115,118,119,121,123,126,127,128,129,131,133,134,143,145,154],use_html_escap:126,user:176,valu:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,118,121,123,126,127,128,129,131,133,134,176],value_typ:103,variou:[170,180],vector:[69,170],version:159,view:173,weight:[69,175],wheezi:21,who:176,window:27,without:159,work:[13,147,148,150],worker_process:115,xml:72,xor:137,your:13,zip:27,zlib:24}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. Server &mdash; Groonga v4.0.8-168-gae696d7 documentation</title>
10
+ <title>5. Server &mdash; Groonga v5.0.0 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,11 +25,11 @@
25
25
  <script type="text/javascript" src="_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.8-168-gae696d7 documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v5.0.0 documentation" href="index.html" />
29
29
  <link rel="next" title="5.1. Server packages" href="server/package.html" />
30
30
  <link rel="prev" title="4.11. Query expansion" href="tutorial/query_expansion.html" />
31
31
  </head>
32
- <body>
32
+ <body role="document">
33
33
  <div class="header">
34
34
  <h1 class="title">
35
35
  <a id="top-link" href="index.html">
@@ -47,7 +47,7 @@
47
47
  </div>
48
48
 
49
49
 
50
- <div class="related">
50
+ <div class="related" role="navigation" aria-label="related navigation">
51
51
  <h3>Navigation</h3>
52
52
  <ul>
53
53
  <li class="right" style="margin-right: 10px">
@@ -59,14 +59,14 @@
59
59
  <li class="right" >
60
60
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
61
61
  accesskey="P">previous</a> |</li>
62
- <li><a href="index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
66
66
  <div class="document">
67
67
  <div class="documentwrapper">
68
68
  <div class="bodywrapper">
69
- <div class="body">
69
+ <div class="body" role="main">
70
70
 
71
71
  <div class="section" id="server">
72
72
  <h1>5. Server<a class="headerlink" href="#server" title="Permalink to this headline">¶</a></h1>
@@ -93,7 +93,7 @@
93
93
  </div>
94
94
  </div>
95
95
  </div>
96
- <div class="sphinxsidebar">
96
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
97
97
  <div class="sphinxsidebarwrapper">
98
98
  <h4>Previous topic</h4>
99
99
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -101,12 +101,14 @@
101
101
  <h4>Next topic</h4>
102
102
  <p class="topless"><a href="server/package.html"
103
103
  title="next chapter">5.1. Server packages</a></p>
104
- <h3>This Page</h3>
105
- <ul class="this-page-menu">
106
- <li><a href="_sources/server.txt"
107
- rel="nofollow">Show Source</a></li>
108
- </ul>
109
- <div id="searchbox" style="display: none">
104
+ <div role="note" aria-label="source link">
105
+ <h3>This Page</h3>
106
+ <ul class="this-page-menu">
107
+ <li><a href="_sources/server.txt"
108
+ rel="nofollow">Show Source</a></li>
109
+ </ul>
110
+ </div>
111
+ <div id="searchbox" style="display: none" role="search">
110
112
  <h3>Quick search</h3>
111
113
  <form class="search" action="search.html" method="get">
112
114
  <input type="text" name="q" />
@@ -123,7 +125,7 @@
123
125
  </div>
124
126
  <div class="clearer"></div>
125
127
  </div>
126
- <div class="related">
128
+ <div class="related" role="navigation" aria-label="related navigation">
127
129
  <h3>Navigation</h3>
128
130
  <ul>
129
131
  <li class="right" style="margin-right: 10px">
@@ -135,11 +137,11 @@
135
137
  <li class="right" >
136
138
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
137
139
  >previous</a> |</li>
138
- <li><a href="index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
140
+ <li><a href="index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
139
141
  </ul>
140
142
  </div>
141
- <div class="footer">
142
- &copy; Copyright 2009-2014, Brazil, Inc.
143
+ <div class="footer" role="contentinfo">
144
+ &copy; Copyright 2009-2015, Brazil, Inc.
143
145
  </div>
144
146
  </body>
145
147
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. GQTP &mdash; Groonga v4.0.8-168-gae696d7 documentation</title>
10
+ <title>5.2. GQTP &mdash; Groonga v5.0.0 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '4.0.8-168-gae696d7',
18
+ VERSION: '5.0.0',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,12 +25,12 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.8-168-gae696d7 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.0 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.3. HTTP" href="http.html" />
31
31
  <link rel="prev" title="5.1. Server packages" href="package.html" />
32
32
  </head>
33
- <body>
33
+ <body role="document">
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="../index.html">
@@ -48,7 +48,7 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related">
51
+ <div class="related" role="navigation" aria-label="related navigation">
52
52
  <h3>Navigation</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="package.html" title="5.1. Server packages"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,7 +68,7 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body">
71
+ <div class="body" role="main">
72
72
 
73
73
  <div class="section" id="gqtp">
74
74
  <h1>5.2. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
@@ -80,7 +80,7 @@
80
80
  </div>
81
81
  </div>
82
82
  </div>
83
- <div class="sphinxsidebar">
83
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
84
84
  <div class="sphinxsidebarwrapper">
85
85
  <h4>Previous topic</h4>
86
86
  <p class="topless"><a href="package.html"
@@ -88,12 +88,14 @@
88
88
  <h4>Next topic</h4>
89
89
  <p class="topless"><a href="http.html"
90
90
  title="next chapter">5.3. HTTP</a></p>
91
- <h3>This Page</h3>
92
- <ul class="this-page-menu">
93
- <li><a href="../_sources/server/gqtp.txt"
94
- rel="nofollow">Show Source</a></li>
95
- </ul>
96
- <div id="searchbox" style="display: none">
91
+ <div role="note" aria-label="source link">
92
+ <h3>This Page</h3>
93
+ <ul class="this-page-menu">
94
+ <li><a href="../_sources/server/gqtp.txt"
95
+ rel="nofollow">Show Source</a></li>
96
+ </ul>
97
+ </div>
98
+ <div id="searchbox" style="display: none" role="search">
97
99
  <h3>Quick search</h3>
98
100
  <form class="search" action="../search.html" method="get">
99
101
  <input type="text" name="q" />
@@ -110,7 +112,7 @@
110
112
  </div>
111
113
  <div class="clearer"></div>
112
114
  </div>
113
- <div class="related">
115
+ <div class="related" role="navigation" aria-label="related navigation">
114
116
  <h3>Navigation</h3>
115
117
  <ul>
116
118
  <li class="right" style="margin-right: 10px">
@@ -122,12 +124,12 @@
122
124
  <li class="right" >
123
125
  <a href="package.html" title="5.1. Server packages"
124
126
  >previous</a> |</li>
125
- <li><a href="../index.html">Groonga v4.0.8-168-gae696d7 documentation</a> &raquo;</li>
127
+ <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
126
128
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
127
129
  </ul>
128
130
  </div>
129
- <div class="footer">
130
- &copy; Copyright 2009-2014, Brazil, Inc.
131
+ <div class="footer" role="contentinfo">
132
+ &copy; Copyright 2009-2015, Brazil, Inc.
131
133
  </div>
132
134
  </body>
133
135
  </html>