rroonga 5.0.4-x64-mingw32 → 5.0.5-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (750) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +2 -2
  3. data/example/measure-data-column-disk-usage.rb +124 -0
  4. data/example/measure-index-column-disk-usage.rb +81 -0
  5. data/example/measure-table-disk-usage.rb +100 -0
  6. data/ext/groonga/rb-grn-database.c +31 -0
  7. data/ext/groonga/rb-grn-double-array-trie.c +1 -8
  8. data/ext/groonga/rb-grn-logger.c +45 -0
  9. data/ext/groonga/rb-grn-object.c +29 -1
  10. data/ext/groonga/rb-grn-patricia-trie.c +1 -8
  11. data/ext/groonga/rb-grn-table-cursor.c +8 -3
  12. data/ext/groonga/rb-grn-table.c +10 -5
  13. data/ext/groonga/rb-grn-thread.c +160 -0
  14. data/ext/groonga/rb-grn-windows-event-logger.c +79 -0
  15. data/ext/groonga/rb-grn.h +3 -1
  16. data/ext/groonga/rb-groonga.c +3 -1
  17. data/lib/1.9/groonga.so +0 -0
  18. data/lib/2.0/groonga.so +0 -0
  19. data/lib/2.1/groonga.so +0 -0
  20. data/lib/2.2/groonga.so +0 -0
  21. data/lib/groonga/dumper.rb +6 -1
  22. data/rroonga-build.rb +4 -4
  23. data/test/groonga-test-utils.rb +5 -1
  24. data/test/test-database.rb +11 -0
  25. data/test/test-logger.rb +6 -0
  26. data/test/test-operator.rb +6 -6
  27. data/test/test-procedure.rb +15 -0
  28. data/test/test-table-dumper.rb +170 -1
  29. data/test/test-thread.rb +42 -0
  30. data/test/test-windows-event-logger.rb +28 -0
  31. data/vendor/local/bin/grndb.exe +0 -0
  32. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  33. data/vendor/local/bin/groonga.exe +0 -0
  34. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  35. data/vendor/local/bin/libgroonga-0.dll +0 -0
  36. data/vendor/local/bin/libmecab-1.dll +0 -0
  37. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  38. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  39. data/vendor/local/bin/libonig-5.dll +0 -0
  40. data/vendor/local/bin/libstdc++-6.dll +0 -0
  41. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  42. data/vendor/local/bin/lz4.exe +0 -0
  43. data/vendor/local/bin/lz4c.exe +0 -0
  44. data/vendor/local/bin/lz4cat +0 -0
  45. data/vendor/local/bin/mecab-config +2 -2
  46. data/vendor/local/bin/mecab.exe +0 -0
  47. data/vendor/local/bin/onig-config +1 -1
  48. data/vendor/local/bin/zlib1.dll +0 -0
  49. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  50. data/vendor/local/etc/groonga/windows_event_log/provider.man +38 -0
  51. data/vendor/local/include/groonga/groonga.h +2 -0
  52. data/vendor/local/include/groonga/groonga/command.h +2 -0
  53. data/vendor/local/include/groonga/groonga/groonga.h +5 -0
  54. data/vendor/local/include/groonga/groonga/obj.h +1 -0
  55. data/vendor/local/include/groonga/groonga/portability.h +16 -0
  56. data/vendor/local/include/groonga/groonga/thread.h +42 -0
  57. data/vendor/local/include/groonga/groonga/windows_event_logger.h +33 -0
  58. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  59. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  60. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  61. data/vendor/local/lib/groonga/plugins/functions/vector.la +2 -2
  62. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  63. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  64. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  65. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  66. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  67. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  68. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  69. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  70. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  71. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  72. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  73. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  74. data/vendor/local/lib/groonga/plugins/sharding.rb +5 -0
  75. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +43 -6
  76. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +32 -25
  77. data/vendor/local/lib/groonga/plugins/sharding/logical_parameters.rb +44 -0
  78. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +217 -49
  79. data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +507 -45
  80. data/vendor/local/lib/groonga/plugins/sharding/logical_shard_list.rb +28 -0
  81. data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +11 -6
  82. data/vendor/local/lib/groonga/plugins/sharding/parameters.rb +10 -0
  83. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  84. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  85. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  86. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  87. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  88. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  89. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  90. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  91. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  92. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  93. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  94. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  95. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  98. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  99. data/vendor/local/lib/groonga/scripts/ruby/command.rb +31 -1
  100. data/vendor/local/lib/groonga/scripts/ruby/context.rb +18 -2
  101. data/vendor/local/lib/groonga/scripts/ruby/database.rb +12 -4
  102. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +31 -28
  103. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +1 -0
  104. data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +4 -2
  105. data/vendor/local/lib/groonga/scripts/ruby/query_logger.rb +9 -0
  106. data/vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb +39 -0
  107. data/vendor/local/lib/groonga/scripts/ruby/record.rb +12 -0
  108. data/vendor/local/lib/groonga/scripts/ruby/table.rb +35 -1
  109. data/vendor/local/lib/libgroonga.a +0 -0
  110. data/vendor/local/lib/libgroonga.dll.a +0 -0
  111. data/vendor/local/lib/libgroonga.la +2 -2
  112. data/vendor/local/lib/liblz4.dll +0 -0
  113. data/vendor/local/lib/liblz4.dll.1 +0 -0
  114. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  115. data/vendor/local/lib/libmecab.a +0 -0
  116. data/vendor/local/lib/libmecab.dll.a +0 -0
  117. data/vendor/local/lib/libmecab.la +2 -2
  118. data/vendor/local/lib/libmsgpack.a +0 -0
  119. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  120. data/vendor/local/lib/libmsgpack.la +2 -2
  121. data/vendor/local/lib/libmsgpackc.a +0 -0
  122. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  123. data/vendor/local/lib/libmsgpackc.la +2 -2
  124. data/vendor/local/lib/libonig.a +0 -0
  125. data/vendor/local/lib/libonig.dll.a +0 -0
  126. data/vendor/local/lib/libonig.la +2 -2
  127. data/vendor/local/lib/libz.dll.a +0 -0
  128. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  129. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  130. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  131. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  132. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  133. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  134. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  135. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  136. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  137. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  138. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  139. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  140. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  141. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +3 -2
  142. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build.txt +19 -0
  143. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
  144. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
  145. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
  146. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +16 -7
  147. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +7 -3
  148. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt +4 -0
  149. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  150. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
  151. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  152. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  153. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
  154. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  155. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -4
  156. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  157. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +319 -0
  158. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
  159. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
  160. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_db.txt +23 -0
  161. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_thread.txt +122 -0
  162. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
  163. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +381 -0
  164. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
  165. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -1
  166. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +85 -0
  167. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +218 -9
  168. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +1 -3
  169. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +1 -1
  170. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +3 -1
  171. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +138 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +97 -10
  173. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +745 -23
  174. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +107 -0
  175. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +3 -1
  176. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -3
  177. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +1 -2
  178. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +90 -0
  179. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +1 -1
  180. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +1 -1
  181. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +1 -1
  182. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -3
  183. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
  184. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
  185. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +240 -56
  186. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +33 -7
  187. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt +90 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +2 -1
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +110 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -1
  191. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +1 -3
  192. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -3
  193. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +3 -4
  194. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +0 -1
  195. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +0 -1
  196. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
  197. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
  198. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
  199. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
  200. data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -2
  201. data/vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt +1 -1
  202. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +3 -0
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +2 -0
  204. data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +108 -0
  205. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +0 -21
  206. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt +1 -1
  207. data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
  208. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
  209. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +24 -18
  210. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +19 -19
  211. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +9 -9
  212. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
  213. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
  214. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +27 -2
  215. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  216. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  217. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  218. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
  219. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -9404
  220. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  221. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  222. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  223. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
  224. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +31 -1415
  225. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  226. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  227. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  228. data/vendor/local/share/doc/groonga/en/html/characteristic.html +19 -17
  229. data/vendor/local/share/doc/groonga/en/html/client.html +19 -17
  230. data/vendor/local/share/doc/groonga/en/html/community.html +19 -17
  231. data/vendor/local/share/doc/groonga/en/html/contribution.html +78 -70
  232. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +30 -27
  233. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +146 -0
  234. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +237 -0
  235. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +227 -0
  236. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +231 -0
  237. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +37 -35
  238. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +54 -52
  239. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +80 -78
  240. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +135 -122
  241. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +38 -34
  242. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +58 -54
  243. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +21 -19
  244. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +27 -25
  245. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +23 -21
  246. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +30 -28
  247. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +21 -19
  248. data/vendor/local/share/doc/groonga/en/html/development.html +19 -17
  249. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +30 -28
  250. data/vendor/local/share/doc/groonga/en/html/genindex.html +48 -20
  251. data/vendor/local/share/doc/groonga/en/html/index.html +123 -105
  252. data/vendor/local/share/doc/groonga/en/html/install.html +33 -31
  253. data/vendor/local/share/doc/groonga/en/html/install/centos.html +32 -30
  254. data/vendor/local/share/doc/groonga/en/html/install/debian.html +31 -29
  255. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +29 -27
  256. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +26 -24
  257. data/vendor/local/share/doc/groonga/en/html/install/others.html +92 -90
  258. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +26 -24
  259. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +29 -28
  260. data/vendor/local/share/doc/groonga/en/html/install/windows.html +34 -32
  261. data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -17
  262. data/vendor/local/share/doc/groonga/en/html/news.html +509 -142
  263. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +19 -17
  264. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +20 -18
  265. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +19 -17
  266. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +34 -32
  267. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +29 -27
  268. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +110 -108
  269. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +73 -71
  270. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +111 -109
  271. data/vendor/local/share/doc/groonga/en/html/news/senna.html +19 -17
  272. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  273. data/vendor/local/share/doc/groonga/en/html/reference.html +111 -94
  274. data/vendor/local/share/doc/groonga/en/html/reference/api.html +55 -52
  275. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +51 -49
  276. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +63 -61
  277. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +84 -82
  278. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +46 -44
  279. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +41 -39
  280. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +89 -87
  281. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +88 -50
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +48 -46
  283. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +83 -81
  284. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +46 -44
  285. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +48 -46
  286. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +46 -44
  287. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +45 -43
  288. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +45 -43
  289. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +44 -42
  290. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +93 -91
  291. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +48 -46
  292. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +43 -41
  293. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +79 -77
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +69 -67
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +296 -0
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +45 -43
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +38 -36
  298. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +51 -49
  299. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +60 -58
  300. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +19 -17
  301. data/vendor/local/share/doc/groonga/en/html/reference/column.html +21 -19
  302. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +23 -21
  303. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +28 -26
  304. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +23 -21
  305. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +72 -70
  306. data/vendor/local/share/doc/groonga/en/html/reference/command.html +70 -61
  307. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +23 -21
  308. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +59 -57
  309. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +28 -26
  310. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +100 -98
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -42
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +49 -47
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +33 -31
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +796 -0
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +62 -60
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +96 -94
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +46 -44
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +67 -64
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +236 -0
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +62 -60
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +46 -44
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +59 -57
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +63 -61
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +281 -54
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +66 -64
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +53 -52
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +48 -46
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +48 -46
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +48 -46
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +78 -75
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +283 -0
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +160 -85
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +2071 -83
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +287 -0
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +71 -68
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +86 -84
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +52 -50
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +227 -0
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +57 -55
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +53 -51
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +43 -41
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +43 -41
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +56 -54
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +75 -74
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +59 -57
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +59 -57
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +898 -647
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +43 -41
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +50 -48
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +87 -85
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +175 -152
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +55 -53
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +46 -44
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +327 -0
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +77 -75
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +241 -0
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +108 -106
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +56 -51
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +56 -55
  360. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +24 -22
  361. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +41 -39
  362. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +28 -26
  363. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +33 -31
  364. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +83 -81
  365. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +29 -27
  366. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
  367. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +48 -46
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +40 -38
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +84 -82
  370. data/vendor/local/share/doc/groonga/en/html/reference/function.html +22 -20
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +47 -45
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +25 -23
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +85 -83
  374. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +36 -34
  375. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +26 -24
  376. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +66 -64
  377. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +54 -52
  378. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +35 -33
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +34 -32
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +23 -21
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -53
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +24 -22
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +49 -47
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +45 -43
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +33 -31
  386. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +29 -27
  387. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +244 -242
  388. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +327 -325
  389. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -29
  390. data/vendor/local/share/doc/groonga/en/html/reference/log.html +43 -41
  391. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +49 -47
  392. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +21 -19
  393. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +23 -21
  394. data/vendor/local/share/doc/groonga/en/html/reference/output.html +36 -34
  395. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +21 -19
  396. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +62 -60
  397. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +107 -103
  398. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +50 -40
  399. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +27 -25
  400. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +41 -31
  401. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +19 -17
  402. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +241 -0
  403. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
  404. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +30 -28
  405. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +23 -21
  406. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +23 -21
  407. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +23 -21
  408. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +56 -54
  409. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +41 -39
  410. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +341 -289
  411. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +68 -66
  412. data/vendor/local/share/doc/groonga/en/html/reference/types.html +43 -41
  413. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  414. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  415. data/vendor/local/share/doc/groonga/en/html/server.html +19 -17
  416. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +22 -20
  417. data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
  418. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +37 -35
  419. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +23 -21
  420. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +23 -21
  421. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +21 -19
  422. data/vendor/local/share/doc/groonga/en/html/server/package.html +39 -37
  423. data/vendor/local/share/doc/groonga/en/html/spec.html +23 -21
  424. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +129 -127
  425. data/vendor/local/share/doc/groonga/en/html/spec/search.html +22 -20
  426. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -17
  427. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
  428. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
  429. data/vendor/local/share/doc/groonga/en/html/tutorial.html +20 -18
  430. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +29 -23
  431. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +35 -33
  432. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +25 -23
  433. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +46 -39
  434. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -19
  435. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +65 -63
  436. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +55 -53
  437. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +25 -23
  438. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +22 -20
  439. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +25 -23
  440. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
  441. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +3 -2
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build.txt +19 -0
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +16 -7
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +7 -3
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt +4 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -4
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +319 -0
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt +23 -0
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_thread.txt +122 -0
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +381 -0
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -1
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +85 -0
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +218 -9
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +1 -3
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +1 -1
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +3 -1
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +138 -0
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +97 -10
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +745 -23
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +107 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +3 -1
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -3
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +1 -2
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +90 -0
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +1 -1
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +1 -1
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +1 -1
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -3
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
  486. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +240 -56
  487. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +33 -7
  488. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt +90 -0
  489. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +2 -1
  490. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +110 -0
  491. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -1
  492. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +1 -3
  493. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -3
  494. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +3 -4
  495. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +0 -1
  496. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +0 -1
  497. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
  498. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
  499. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
  500. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
  501. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -2
  502. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt +1 -1
  503. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +3 -0
  504. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +2 -0
  505. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +108 -0
  506. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +0 -21
  507. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt +1 -1
  508. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
  509. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
  510. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +24 -18
  511. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +19 -19
  512. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +9 -9
  513. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
  514. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
  515. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +27 -2
  516. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  517. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  518. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  519. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
  520. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -9404
  521. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  522. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  523. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  524. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
  525. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +31 -1415
  526. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  527. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
  529. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +19 -17
  530. data/vendor/local/share/doc/groonga/ja/html/client.html +19 -17
  531. data/vendor/local/share/doc/groonga/ja/html/community.html +19 -17
  532. data/vendor/local/share/doc/groonga/ja/html/contribution.html +77 -69
  533. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +30 -27
  534. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +144 -0
  535. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +226 -0
  536. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +215 -0
  537. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +229 -0
  538. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +36 -34
  539. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +53 -51
  540. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +79 -77
  541. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +134 -121
  542. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +29 -27
  543. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +57 -53
  544. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +21 -19
  545. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +23 -21
  546. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +23 -21
  547. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +30 -28
  548. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +21 -19
  549. data/vendor/local/share/doc/groonga/ja/html/development.html +19 -17
  550. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +25 -23
  551. data/vendor/local/share/doc/groonga/ja/html/genindex.html +48 -20
  552. data/vendor/local/share/doc/groonga/ja/html/index.html +122 -104
  553. data/vendor/local/share/doc/groonga/ja/html/install.html +33 -31
  554. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +35 -33
  555. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +33 -31
  556. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +30 -28
  557. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +26 -24
  558. data/vendor/local/share/doc/groonga/ja/html/install/others.html +83 -81
  559. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +25 -23
  560. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +30 -29
  561. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +33 -31
  562. data/vendor/local/share/doc/groonga/ja/html/limitations.html +19 -17
  563. data/vendor/local/share/doc/groonga/ja/html/news.html +460 -126
  564. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +19 -17
  565. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +20 -18
  566. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +19 -17
  567. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +34 -32
  568. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +29 -27
  569. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +102 -100
  570. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +66 -64
  571. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +91 -89
  572. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +19 -17
  573. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  574. data/vendor/local/share/doc/groonga/ja/html/reference.html +111 -94
  575. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +55 -52
  576. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +51 -49
  577. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +58 -56
  578. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +84 -82
  579. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +46 -44
  580. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +41 -39
  581. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +85 -83
  582. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +88 -50
  583. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +48 -46
  584. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +78 -76
  585. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +46 -44
  586. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +48 -46
  587. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +46 -44
  588. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +45 -43
  589. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +45 -43
  590. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +44 -42
  591. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +93 -91
  592. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +48 -46
  593. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +43 -41
  594. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +79 -77
  595. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +69 -67
  596. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +286 -0
  597. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +45 -43
  598. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +38 -36
  599. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -46
  600. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +60 -58
  601. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +19 -17
  602. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +21 -19
  603. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +23 -21
  604. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -26
  605. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +23 -21
  606. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +61 -59
  607. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +70 -61
  608. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -21
  609. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +49 -47
  610. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +28 -26
  611. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +99 -97
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +41 -39
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +49 -47
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +33 -31
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +781 -0
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +62 -60
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +88 -86
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +46 -44
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +66 -63
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +229 -0
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +62 -60
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +46 -44
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +58 -56
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +63 -61
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +266 -54
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +59 -57
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +53 -52
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +48 -46
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +48 -46
  630. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +48 -46
  631. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +78 -75
  632. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +276 -0
  633. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +158 -85
  634. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +2008 -80
  635. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +285 -0
  636. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +71 -68
  637. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +82 -79
  638. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +52 -50
  639. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +220 -0
  640. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +53 -51
  641. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +51 -49
  642. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +43 -41
  643. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +43 -41
  644. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +52 -50
  645. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +68 -67
  646. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +59 -57
  647. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +59 -57
  648. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +680 -448
  649. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +43 -41
  650. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +48 -46
  651. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +84 -82
  652. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +146 -126
  653. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +55 -53
  654. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +46 -44
  655. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +322 -0
  656. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +73 -70
  657. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +229 -0
  658. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +94 -91
  659. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +56 -51
  660. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +56 -55
  661. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +24 -22
  662. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +39 -37
  663. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +28 -26
  664. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +33 -31
  665. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +73 -72
  666. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +29 -27
  667. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
  668. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +48 -46
  669. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +40 -38
  670. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +84 -82
  671. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +22 -20
  672. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +46 -44
  673. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +25 -23
  674. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +69 -67
  675. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +36 -34
  676. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +26 -24
  677. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +56 -54
  678. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +45 -43
  679. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -32
  680. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +35 -33
  681. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +23 -21
  682. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +48 -46
  683. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +24 -22
  684. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +35 -33
  685. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -35
  686. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +33 -31
  687. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +26 -24
  688. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +143 -141
  689. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +236 -234
  690. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -28
  691. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +43 -41
  692. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +39 -37
  693. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +21 -19
  694. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +23 -21
  695. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +32 -30
  696. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +21 -19
  697. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +42 -39
  698. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +91 -88
  699. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +50 -40
  700. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +27 -25
  701. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +41 -31
  702. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +19 -17
  703. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +223 -0
  704. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
  705. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +27 -25
  706. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +23 -21
  707. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +23 -21
  708. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +23 -21
  709. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +46 -44
  710. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +38 -36
  711. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +303 -243
  712. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +62 -60
  713. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +42 -40
  714. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  715. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  716. data/vendor/local/share/doc/groonga/ja/html/server.html +19 -17
  717. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +21 -19
  718. data/vendor/local/share/doc/groonga/ja/html/server/http.html +21 -19
  719. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +31 -29
  720. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +23 -21
  721. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +23 -21
  722. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +21 -19
  723. data/vendor/local/share/doc/groonga/ja/html/server/package.html +38 -36
  724. data/vendor/local/share/doc/groonga/ja/html/spec.html +23 -21
  725. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +128 -126
  726. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +22 -20
  727. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -17
  728. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
  729. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
  730. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +20 -18
  731. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +29 -23
  732. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +34 -32
  733. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -20
  734. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +46 -39
  735. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +21 -19
  736. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +66 -64
  737. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +52 -50
  738. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +25 -23
  739. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +22 -20
  740. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +25 -23
  741. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
  742. data/vendor/local/share/license/groonga/README.md +6 -0
  743. data/vendor/local/share/license/mruby/AUTHORS +1 -0
  744. data/vendor/local/share/license/mruby/MITL +1 -1
  745. data/vendor/local/share/license/mruby/README.md +6 -5
  746. data/vendor/local/share/license/msgpack/README +219 -0
  747. data/vendor/local/share/man/ja/man1/groonga.1 +23512 -15126
  748. data/vendor/local/share/man/man1/groonga.1 +26542 -17745
  749. metadata +77 -3
  750. data/vendor/local/share/license/msgpack/AUTHORS +0 -0
@@ -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 v5.0.4-139-g6629adb documentation</title>
10
+ <title>Search &mdash; Groonga v5.0.6-226-gd7da7e7 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: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
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 v5.0.4-139-g6629adb documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7 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 v5.0.4-139-g6629adb documentation</a> &raquo;</li>
62
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 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,22 +95,22 @@
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 v5.0.4-139-g6629adb documentation</a> &raquo;</li>
110
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
111
111
  </ul>
112
112
  </div>
113
- <div class="footer">
113
+ <div class="footer" role="contentinfo">
114
114
  &copy; Copyright 2009-2015, Brazil, Inc.
115
115
  </div>
116
116
  </body>
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{localstatedir:[],four:[136,95,3,98,150],"\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":153,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u811a\u6ce8":[35,46,171,73],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,your_db:28,grn_fin:5,column_cr:[],"\u65e5\u672c\u4eba":179,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":153,no_such_device_or_address:175,thread_tabl:170,command_vers:[11,3,4,163,33,48,83,175,110,9,149,37,103],dewangga:78,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":64,"takashi\u3055\u3093\u304c\u5831\u544a":28,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":156,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":109,cancel_request_is_accepted_or_not:104,grn_plugin_win32_base_dir:41,drilldown_output_column:[],asami:126,"\u697d\u3057\u3044billiard":[71,145],dump_index:[],"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":114,grn_oper:[114,57,39,122,111],grn_column_name_nsubrecs_len:122,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":153,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":170,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":38,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":54,grn_socket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":98,grn_table_cursor_next:[64,156],here:[41,93,2,72,5,95,96,98,69,48,49,47,146,101,102,9,104,10,149,150,107,128,55,59,109,76,12,86,155,14,16,17,116,60,18,91,20,169,152,65,66,22,165,27,23,62,123,163,186,75,173,175,97,79,177,178,179,82,193,84,131,159,132,85,110,185,134,33,190,137,181,36,192,140,120,39,118],onga:33,china:[76,131],grn_enc_utf8:[64,124],ful:91,"\u4e0e\u3048":71,latitude_in_msec:152,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":135,"\u7a7a\u767d\u3084":98,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,match_column:[],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":170,engi:[155,179],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":180,"\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":28,substr:[185,152],unix:[192,81],txt:[88,85,120],unit:[76,152,32,33,173,175,85],tokenizs:[],music:[45,150],until:[41,115,109,59,19,81,120],"\u30d6\u30ed\u30b0":[],grn_op_push:70,token_filt:[],relax:140,relat:[],error_messag:136,notic:[6,123,8,98,9],"\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":153,hold:[13,100],"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":153,"byte\u9577":[114,80,122],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":159,"akio\u3055\u3093\u304c\u5831\u544a":156,"\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":80,flushviewoffil:78,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":125,grn_obj_reinit:80,cirit:9,digit:[109,18,150,181,85,81,66],"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":170,want:[142,91,3,92,129,98,47,49,146,101,9,105,192,167,109,76,88,14,59,18,69,168,186,175,78,79,178,179,81,181,130,185,131,132,134,154,85,90],"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":114,type1:155,type2:155,"grnslap\u306f":182,grn_filename_too_long:2,turn:9,grn_read_only_file_system:2,travel:188,grn_geo_point:111,grn_input_output_error:2,enviromn:78,yum:[7,167,130,153,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":80,message_pack_install_prefix:[],groonga_clone_dir:153,moritar:79,wrong:[126,7,172,18,62,78,28,81],"\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":84,"\u63d0\u6848\u3092\u884c\u3046":156,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":148,"virtualbox\u306fsourc":153,wing:[7,126],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":124,vari:[41,67],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":109,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[64,114],"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":156,hidden:133,fin:54,easier:12,"\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":70,rectangl:[],stop_word:[165,47,159],"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":153,dcmake_install_prefix:102,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":156,timeout:[80,19,126],debug:[91,6,98,8,9,150,78,81],"obj\u3092lock\u3057\u307e\u3059":80,last_modifi:188,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":71,"akio\u3055\u3093\u304c\u63d0\u6848":156,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":170,ideograph:78,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":156,grn_table_s:[114,70],grooon:132,moritapo:45,gregex:126,lexicon_t:170,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":170,input_typ:59,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":153,"\u79d2":80,"\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":153,ringtail:126,"\u307e\u308d\u3086\u304d":144,flush:78,libedit:[7,28,192,167,78],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":46,atv:[75,3,131],pagin:3,"\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":147,confus:[85,181],resource_busi:175,accuml:126,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:153,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":64,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":153,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":98,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":153,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":114,master:[120,9,82],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":109,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":64,listen:[7,175,9,55,103],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],kinjir:45,"\u50242":98,"\u50241":98,grn_obj_flush_recurs:78,tree:81,second:[109,76,3,185,12,13,188,46,136,75,104,150,79,96,55,152],project:[0,142,152,153,133,105,89,81,82],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":114,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":170,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,boston:188,"db_api\u306f":70,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u3050\u308b\u3093\u304c\u6b21\u90ce":45,increment:36,incompat:[7,78,126,81],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":153,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,"0\u306e\u79d2\u8868\u8a18":71,suenaga:78,"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":153,simplifi:[101,126],unknow:81,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"10041\u756a":98,"key_type\u306bt":114,object:[],microsecond:[13,150],letter:193,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":170,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":183,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":170,camp:188,incompatible_file_format:175,index_blog:79,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,expornenti:152,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\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,"\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":80,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,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":98,restaur:133,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,175],grn_obj_set_element_info:42,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u306f\u306a\u304f":1,calro:97,source_file_nam:136,other_t:78,ff1f:78,createrepo:153,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":46,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],maverick:28,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":71,unexpectedli:126,etim:182,"description\u306b":145,result:[],respons:[17,2,132,133,126,7,81,104,28,55,175],fail:[22,17,3,185,41,126,7,19,10,28,78,177,81,66],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":80,best:133,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":70,wikipedia:46,figur:93,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":11,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":170,extend:[79,92,81,181],shidara:28,extens:4,pat_kei:95,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":106,grn_plugin_realloc:41,column_scalar:[92,12,96,47,48,101,110,128,109,76,152,116,115,71,60,159,45,165,23,123,163,74,186,173,97,79,181,185,131,188,33,137,140],logic:[],msghdr:78,login:140,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":145,"2nd":109,"\u95a2\u6570":180,grn_table_cursor_get_valu:64,assum:[54,104,16],summar:131,duplic:81,grn_search_optarg:[78,57],"\u306e\u307b\u304b\u306b":46,"\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":11,"takashi\u3055\u3093":28,much:85,salamand:[126,81],res_column:170,"\u30ab\u30f3\u30de":159,worker:[9,126],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,dave:97,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":71,grn_table_delet:[78,114],"localstatedir\u3092\u4f7f\u7528":156,spil:78,"\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":70,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,sen_index_norm:43,"\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":171,"\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":11,select_opt:152,arg_list_too_long:175,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":83,grn_resource_busi:2,simil:152,split:[28,78,85,152,95],big:[9,81],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":71,documents_content_index:[116,33],"\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":170,refin:[133,126],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":83,tune:[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":153,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[71,145],"\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":70,out_gqtp:170,users_memo:116,gzip:[],unchang:41,bellow:85,sleepi:115,hai:70,easi:[12,133,98,55,160,178,81,103],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":170,had:[12,120],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],hat:192,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":70,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":153,koji:7,"\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":71,command_nam:[37,103],"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":170,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":153,measur:[28,133],specif:[],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\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":74,filename_too_long:175,"\u30d4\u30ea\u30aa\u30c9":74,sebastian:81,underli:133,grn_obj_table_hash_kei:[64,114],right:[],groogna:[7,113,109,102,185],kouhei:126,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,bottom:111,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":121,"146566000x":[188,76],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":153,ichii:28,condit:[],scorer_tf_at_most:[],yoku:[126,81],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":170,grn_builtin_typ:[183,80],grn_cursor_descend:64,grn_log_path:7,"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":122,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":135,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,nginxhttpstubstatusmodul:81,"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,"\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":25,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":109,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":70,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":70,suffici:41,support:[],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":68,avail:[],width:[28,193,78],joseph:144,call:[],inv_res_column:170,"\u3086\u304d\u3072\u308d":144,"\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:121,pagerank:[123,29,12],"135960000x":76,type:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":114,"\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":11,replied_us:188,"\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":125,later:[110,23,163,98,126,48,7,186,81,28,78,193,3,181],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":114,exist:[142,3,12,98,7,101,9,104,152,13,59,62,20,65,126,75,175,97,78,79,81,84,191,85],"object\u578b\u306fv1":46,column_name1:59,column_name2:59,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":106,grn_search:[],"_yyyymmdd":[143,23,166,63],role:[133,116],notif:[150,126],intend:[7,186,79,185,81],moero:45,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,grn_ptr_value_at:[39,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":156,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":122,grn_ii_buffer_open:87,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":57,exce:[7,78,126],time:[],push:[120,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":106,chain:186,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[184,35,112,171,68],grn_obj_get_hook:94,netbsd:126,millisecond:[13,132,75,19,152],decid:178,thread_title_column:170,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":156,decim:[13,46,152],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":180,downtim:[],"257662232kbyte":170,score_adjust_express:109,lru:118,exact:[83,95,109,70,66],"\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":25,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":180,grn_plugin_mutex_lock:41,prevent:126,"\u8ad6\u7406\u548c":70,grn_table_group_result:114,index_point:45,sign:[],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":182,"\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":11,grn_broken_pip:2,takashi:173,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":80,current:[59,3,84,93,120,188,16,17,60,9,28,118,107,66],"\u3053\u308c\u306b\u3088\u308a":153,construnct:78,boost:179,"encoding\u306e\u5024\u304c":28,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":80,modif:78,address:[132,98,7,103,78,28,175],"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":70,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],throughput:[28,55],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],commonli:[133,181],ipa:167,pentium:170,prefer:[132,78],"\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,183,98,114,80,170,122],mitani:81,instal:[],grn_pat_del:78,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":114,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":98,droonga:101,value2:[59,37,152],value1:[59,37,101,9,152],scope:[],neologd:85,peopl:[133,85],tanuma:81,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":170,enhanc:43,visual:[136,133,126,7,102,78,28,81],"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":64,valuen:101,pgroonga:[78,12],"windows\u7cfb":153,genki:126,improper_link:175,recycl:81,"takahiro\u3055\u3093":156,index_titl:79,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":64,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:153,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":170,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":180,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":170,date:[],data:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,stdin:113,cannot:[],int64:[46,109,81,126],grn_plugin_charlen:41,i686:170,grn_ja_skip_same_value_put:126,"\u30e6\u30fc\u30b6\u540d":170,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":121,implemnt:195,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":125,instantli:[133,33],grn_obj_init:80,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":194,"\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":153,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,didn:81,separ:[59,109,91,3,4,131,178,96,134,152,47,7,175,155,78,107,85,185],"_dataset":[65,190],operation_not_permit:175,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":80,"\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":153,compil:[28,192,126,81,78],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":114,grn_obj_path:[80,126],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":153,vervet:[78,14],internet:[133,160],formula:[168,76],"\u6700\u5f8c\u306e":170,million:67,"\u6700\u5f8c\u306b":71,mime:[78,55],"\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":25,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":114,"byte":[41,109,122,36,46,183,33,16,7,114,175,126,78,28,80,39,54,81],dest_key_s:114,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":42,grn_op_adjust:[57,70],brasil:76,geoloc:[],recov:[],"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,oper:[],grn_logger_reopen:7,onc:[109,131,5,188,7,28,79,193,81],beijin:76,reopen:28,"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":71,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":28,"\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":71,open:[],grn_obj_get_element_info:42,convens:7,convent:7,return_cod:[136,150],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":71,citi:[93,76,188],groonga1:11,fullfil:142,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":153,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":64,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":80,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":80,grn_stack_over_flow:2,set_port:170,grn_obj_get_info:42,fumiyasu:28,grn_ctx_set_output_typ:16,"\u307e\u305fgroonga":170,column_list:[],"\u90fd":[71,145,85],sai:[3,152],san:76,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":184,"\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":35,argument:[41,3,12,98,48,7,101,103,149,52,76,152,16,116,163,126,186,110,175,28,79,81,181,33,37],sae:[155,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,drilldown_limit:[],uuuuuu:152,note:[41,3,98,7,146,9,104,78,149,55,167,109,110,152,13,66,69,23,168,126,173,28,81,131,132,133,140,103],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,take:[142,27,3,104,96,137,60,62,169,37,128],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":61,"\u30cb\u30db\u30f3\u30b8\u30f3":179,noth:[109,98,172,9,62,149,107,179],grn1:79,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":38,grn3:79,grn2:79,buffer:[87,126,16,127,78,79,80,39],compress:[],"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":106,homepag:170,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":109,"\u30b5\u30fc\u30d0":98,max_valu:140,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":73,do_gqpt:170,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u4ef6\u6570":109,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":170,grn_lzo_error:2,"obj\u306f":80,xml:[],slow:[95,152,9,181,185],"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,too_many_link:175,grn_float_valu:78,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":170,clang:[7,78,180,126,81],"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":70,grn_ii_buffer_clos:87,requir:[],embedd:78,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":109,aptitud:180,washida:126,where:[13,2,192],"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":64,"\u7a7a\u767d":98,regexplexicon:181,"namebuf\u306e\u30b5\u30a4\u30ba":[80,122],msg_control:78,ohzeki:81,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":74,mani:[142,3,12,129,95,9,78,192,55,109,152,86,13,120,123,126,172,28,81,181,185,131,133,33,190,140,89,66,195],"\u30ed\u30b0\u51fa\u529b":8,"\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":127,element1:[152,86],"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,"\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":11,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":11,"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":42,"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":94,better:[133,79,109,81,152],"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":153,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":42,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":98,score_adjust_expression2:109,score_adjust_expression1:109,parser:[185,181],resolut:[],logical_range_filt:[],former:[193,178],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":98,ctrl:[98,3,175],ivh:[167,130],html_untag:[],set_host:170,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,ascii:[85,185,152],hash_tag:188,binari:[],grn_proc_creat:54,"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":153,utf8:[124,192,98],"\u90fd\u6c11":[71,145],grn_operation_not_support:2,"146710080x":188,"\u5358\u72ec\u306e\u5024":122,wiedenroth:81,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":170,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":182,grn_hook_select:94,"\u6771\u4eac\u90fd":[71,145,85],rest:[41,178],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":170,"\u30cb\u30db\u30f3":179,"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":153,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":114,haystack:70,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":170,"4096byte":[67,95,78],around:[93,33],"10043\u756a":98,"\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":145,res1:114,bookmark_index:86,world:[46,85,75,81,126],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:170,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":80,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":11,integ:[],manag:[192,36,84,98,133,95,33,16,104,103,62,20,82,178,55,9],yyyi:[150,152],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"\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":84,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":153,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":84,grn_obj_is_builtin:[28,80],"\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":153,edict2grn:81,definit:[109,76,185,12,186,123,163,33,48,7,116,101,97,149,110,181,173,152],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":54,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":153,reference_column:[78,109,81],ddl:[170,81],refer:[],power:[109,181],"\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":71,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"\u30d3\u30eb\u30c9\u6642\u306etip":[],grn_get_default_command_vers:117,starttim:[3,4,83,103,9,175],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":98,ffef:85,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,neighbor:133,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":153,"flags\u306b\u306f":114,match_escalation_threshold:[],effici:[133,79,86],"\u306b\u3042\u308b":80,agaist:7,charli:188,hex:[45,152],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[28,156],grn_proc_func:[41,54,16],sid:[28,153,81,127],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,bundl:[126,7,116,78,81,120],htpasswd:[9,55],no_kei:95,"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":98,categor:[109,91,47],pull:[],"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"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":70,grn_ctx_get:[122,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":153,preconfigur:[154,130,14,142,167],reqular:132,gone:45,type_of_the_column:186,uid:153,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":98,certain:75,"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":156,grn_id_nil:[64,114,39,16],googl:[109,185,12,123,172,29],grn_select:109,grn_ctx_open:[28,16],shimomura:7,"\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":153,writabl:[78,81],"\u4e00\u65b9":71,logical_count:[],item_dataset:[190,49],"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,vocabulari:3,geodet:[46,75],"debug\u3092\u8ffd\u52a0":156,nagano:81,queryexpandertsv:[],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":153,cpu:[],senna:[],grn_type:[],illustr:131,pluggabl:133,"\u521d\u671f\u5316\u3059\u308b":16,scr:170,number:[],"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],grn_obj_set_info:42,too_small_offset:175,tail:[175,153],kosuk:126,webclip:110,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],introduc:[78,89,9,81],candid:[132,155,179],too_many_open_fil:175,"4\u30ea\u30ea\u30fc\u30b9":[],colleagu:89,"yum\u306e\u5834\u5408":153,adjust:[],small:[185,95,126,188,78,152,85,81,66],"flags\u306b":[114,122],"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":121,past:7,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,pass:[76,3,84,153,185,116,181,9,104,78,28,152,113,103],grn_no_such_device_or_address:2,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,section:[41,53,91,143,12,87,96,98,47,49,102,9,104,146,192,128,162,167,109,76,86,14,59,123,60,18,118,62,63,181,134,66,164,120,69,50,23,122,166,137,24,126,175,189,78,79,178,179,81,82,130,185,131,188,31,32,154,138,140,89,90,51],"log_put\u306f":8,"debian\u7cfb":153,"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":153,coremodul:9,contrast:[3,5,133,98,116,9,81],"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":145,hash:[],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":153,table_renam:113,jennif:144,sender:[132,65],tomygx:78,out_loc:170,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:45,action:126,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":94,via:[7,120,2,49],"\u6b21\u306bgroonga\u306etest":153,grn_logical_range_filter_threshold:78,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":145,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":68,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":170,mecab:[167,130,43,153,133,14,126,7,154,78,28,192,85,81,90],morn:115,mecab_new2:7,"lucid\u304b\u3089":156,more:[41,3,144,12,95,46,98,7,101,9,72,192,55,109,152,86,13,155,16,115,116,18,62,65,66,67,165,166,123,126,172,175,78,178,81,181,96,185,186,133,33,188,140,85],yokoyama:[126,81],"\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":70,uint8:[46,156,96,126],"\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":153,function_nam:136,grn_ctx_get_all_t:[78,16],nomal:[7,109,9],cach:[],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":70,uint64:[46,126,81],"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":153,endpoint:[132,65],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:181,learn:[],"benchmark\u304c\u52d5\u4f5c\u3057":170,prompt:[7,102,3,4],scan:[180,163,185,48,152],accept:[76,3,92,132,133,175,97,98,7,75,81,104,36,28,79,188,128,55,152],"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":28,groonga_cache_limit:[],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":170,netinet:78,"search\u3092\u884c\u3044":[64,114],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,180],simpl:[],isn:[96,98,7,9,146,192,109,155,16,59,18,66,69,126,172,175,78,178,179,81,130,185,33,136,85,118],referenc:[109,131,126,7,173,66],bm25:[123,12],grn_obj_get_rang:80,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":171,conditin:185,"\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":16,github:[0,74,153,126,7,78,105,28,120,81,82],m64:24,tokenbigram:[],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:163,grn_obj_key_int:183,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,sysctl:[140,168,90],trade:85,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,i386:[28,130,153],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[83,98],"\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":157,dest_kei:114,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,sauci:[126,81],html:[],creat:[],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":98,grn_bulk:39,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":122,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":125,inada:126,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":153,"\u65e5":85,authent:[],achiev:23,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":153,found:[109,111,126,7,172,114,102,192,85],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,with_posit:[123,115,165,3,92,12,186,71,188,96,109,33,48,74,116,181,140,79,152,163,185],procedur:[7,126],realli:[152,109,92,185],ftp:[170,153],"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":153,ftb:43,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":98,occurr:123,grn_column_index_upd:122,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[],grn_table_hash_kei:[114,111],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":80,clumn:140,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":170,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":73,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":145,"\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":11,major:138,"7\u30ea\u30ea\u30fc\u30b9":[],n_result:114,grn_ctx_use_ql:81,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[64,114,80,122],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,file_corrupt:175,"org\u304c\u30db\u30b9\u30c8\u3092":153,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":122,relationship:[],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,grace:78,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":153,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":156,"\u307e\u305f\u540c\u6642\u306b":170,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":94,reus:95,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":148,comput:[41,152,12,123,49,7,18,140,179],toybox:13,grn_hook_entri:94,"\u95a2\u6570\u306e\u8ffd\u52a0":1,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":135,gted:120,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":98,documenataion:136,self:170,also:[],"keybuf\u306e\u30b5\u30a4\u30ba":114,"\u8a18\u53f7":[71,98],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":80,lexcon:3,brooklyn:188,plan:144,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":153,table_pat_kei:[],cover:[133,33],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":170,umemoto:28,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,ext:91,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":125,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[114,80,122],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":159,microsoft:[78,102],"\u3057\u304b\u3057":[71,46,145],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":145,cache_limit:[],xcode:90,session:[132,175,129],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":170,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,solut:[],factor:[109,81],"\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":71,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":153,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":153,"\u826f\u3044\u306e\u304b":125,mainten:85,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:114,column1:[109,70,152,12,126,7,81],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":70,column2:[109,70,152,12,126,7,81],set:[],tetsuharu:81,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[170,98],showen:2,startup:7,grn_obj_is_selector_proc:78,see:[],"\u306e2\u5358\u8a9e\u6271\u3044":145,sec:19,sea:[91,179],"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":153,juman:167,speed:[28,172,95],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":83,mutex:[41,126],"chroot\u74b0\u5883\u306e":153,javascript:[],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":106,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":156,bodi:[],last:[7,78,91,85,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[71,145],whole:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":170,load:[],rdiscount:153,"256kib":140,"\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":148,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"5367431640625e":4,devic:133,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":70,nonexist:[78,109,81],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,searchu0000http:85,shinya:7,funa:81,func:[41,54,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],oldvalu:122,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,error:[],rep_gqpt:170,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":182,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":170,user_data:[41,54],"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":11,needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[78,142],n_builtin_type_nam:84,nanosecond:[136,150],x64:[102,153],grn_result_too_larg:2,shorter:[115,78],"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":182,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":180,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"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":11,"org\u306edoc":153,alert:[6,98,8,9,150,81],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,grn_db_create_optarg:84,stack:126,recent:118,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":61,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":127,normali:46,person:[],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,do_gqtp:170,construct:[],mysql:[167,109,43,12,86,133,163,14,134,33,48,154,172,193,178,130,81],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":114,parenth:59,grn_tokenizer_error:2,input:[136,109,3,152,126,49,59,172,18,175,28,107,179],format:[],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":46,intuit:144,"\u5f15\u6570\u540d":98,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":71,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":98,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":153,encount:[167,130,14,154,102,138],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":64,sampl:[],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":94,port_numb:[52,103,175],"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":16,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":70,"56058502197266e":4,machin:[98,81],keyword_cont:39,"aramaki\u3055\u3093":156,"ongaeshi\u3055\u3093\u304c\u5831\u544a":156,wget:[167,130,24,14,154,192],"gqtp\u306e\u5834\u5408":98,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":114,grn_expr_pars:39,grn_cursor_lt:64,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":71,"1gb":78,"\u884c\u3059\u308b":153,repair:113,"\u5f15\u6570\u3068\u3057\u3066":70,pcre:[7,9],span:[163,110,33,48],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":114,line_numb:136,submit:[],custom:[],suit:[133,33,81],"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[109,185,131,13,7,103,78,81,152],line:[],int8:[13,46,156,126,81],"10000cent":85,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":170,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,xxx_20150604:78,element2:[152,86],element3:86,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":153,xxx_20150603:78,msg_id:153,"char":[41,84,183,124,16,114,80,39,54,81,122],taro:45,musha:78,invalid:[41,109,132,124,126,7,78,28,81,66],"grn_op_and\u306f":70,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":80,lucid:[156,126],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":145,wrongli:28,ago:179,algorithm:[28,76,118],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":180,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":153,fresh:115,hello:[47,152,109,165,115,85],code:[],partial:[78,179,70,175,172],"\u7a7a\u306e\u5834\u5408":[38,108],"\u672c\u8a9e":85,send:[],table_list:[],"\u30ab\u30e9\u30e0\u540d1":109,sent:55,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":170,"\u30d9\u30af\u30bf\u306e\u5024\u3092":156,"\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":114,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":57,tri:[188,19],"\u30ab\u30e9\u30e0\u540dn":109,"\u306e\u5834\u5408\u306f":125,"try":[188,98,19,89,85,79,195],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":153,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":156,"\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":161,video:45,odd:152,"1\u5358\u8a9e\u6271\u3044":145,tomoatsu:[7,156],obvious:13,cenos6:7,let:[],ubuntu:[],layout:153,nterm:127,thatn:109,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,greas:13,ctx:[41,42,70,121,84,80,94,87,16,17,25,114,111,183,64,57,39,54,119,122],autoreconf:153,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":64,menu:[109,102],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":64,location_str:188,"200byte":33,firefox:120,"\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":153,"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":109,zip:[],rid_min:121,grn_plugin_get_ruby_suffix:78,doubl:[59,109,91,3,185,95,46,134,126,7,78,28,152,81,66],upgrad:[],next:[45,111,3,133,54,81],doubt:131,"http\u306e\u5834\u5408":98,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":109,comparison:[],socket_is_already_connect:175,folder:102,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":70,"\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":170,drill:188,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":156,process:[],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":145,high:[133,109,160,86],onlin:[],"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":114,"column\u306e\u5024\u304c":70,"128515259x503187188":[45,75],defalt:156,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"\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":153,gcc:[167,130,24,126,7,28,192],"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,alloc:[],essenti:[154,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,seriou:[7,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":170,element:[136,2,3,86,13,33,126,7,81],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":153,allow:[3,133,33,7,154,103,65],okapi:[123,12],posted_bi:188,"centos\u306e\u5834\u5408":153,movi:45,move:[7,88,102,28],lz4:[],sen_sel_term_extract:43,naist:85,comma:[3,152,131,13,59,78],"2st":109,"\u529b":[8,141],yamaguchi:28,perfect:[123,133],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,hobbi:150,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":70,"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[],murakami:[78,126,81],python:[129,153,20],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":156,billiard:[71,145],lzo:[7,28,74,126,81],highlight_ful:[],"\u3053\u308c\u306b\u5bfe\u3057\u3066":145,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":153,subset:46,grn_file_too_larg:2,bump:[78,126,81],meta:[7,96],"static":[28,3,81,37],grn_too_many_symbolic_link:2,"table\u306ecolumn":114,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":156,builtin_type_nam:84,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],ngx_http_proxy_modul:9,"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":180,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":153,could:[7,13],mxcl:153,outsid:81,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":180,softwar:[],"\u5f15\u6570\u540d1":98,"\u5f15\u6570\u540d2":98,owner:[9,126],"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":153,index_messag:79,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,expnas:178,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":127,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":127,"\u30cb\u30db\u30f3\u30b4":179,licens:[7,43,153,81],system:[109,185,24,133,46,14,98,33,126,115,13,75,9,140,78,28,192,81,152],"\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":11,hash_kei:95,grn_table_get_kei:114,termin:[],articles2:79,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":108,itagaki:156,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":71,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":112,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":153,"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":171,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,clearli:78,correspond:[109,23,155,49,172,18,37,80,179],"\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":153,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":125,satoshi:81,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":156,source_column_nam:78,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":156,highlight_html:[],thesauru:109,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_flush:78,oracl:[],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":135,segment:[7,127,81],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":170,latin1:[7,192],grn_cursor_by_kei:64,"\u3067\u3059\u306d":125,brew:[90,20],grn_column_name_score_len:122,fact:[45,109],"\u62e1\u5f35\u5b50\u306f":170,dbm:[133,33],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[114,80,122],borderlin:[143,23,166,63],"\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":84,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":153,nois:[18,85],freq2:49,freq1:49,should:[41,7,102,192,167,109,152,86,14,16,59,18,20,66,175,128,178,82,130,185,36,154,138,193,39],jan:188,articles_cont:79,"\u30b3\u30e1\u30f3\u30c8\u884c":170,familiar:131,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,jiro:45,db1:55,db2:55,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,grn_column_t:122,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":98,"hat\u7cfb":153,candidate_1:132,grn_geo_cursor_next:111,candidate_2:132,"\u4e16\u754c\u6e2c\u5730\u7cfb":46,column_renam:[],"\u99c4\u76ee\u306a\u4f8b":125,grn_obj_lock:80,"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":153,"\u3066\u3057\u307e\u3044\u307e\u3059":125,candidate_n:132,encodiong:152,grn_plugin_expr_var_init:[41,81],max_command_vers:[3,4,83,103,9,175],grn_obj_user_data:119,"ueno\u3055\u3093\u304c\u5831\u544a":148,tld:131,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[183,114,57],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,grn_type_cr:183,zenigata:45,"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":145,index_friend:45,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,quotat:[91,134],"\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":156,insuffici:13,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":64,"\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":71,grn_obj_unlock:80,grn_cache_clos:17,accident:126,spain:76,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":156,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":170,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":170,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,ultra:45,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":61,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":54,site:[45,109,3,131,13,137,75,103,159,160,79,81],archiv:[],"_avg":109,grn_ii_estimate_size_for_lexicon_cursor:78,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":83,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,output_column:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":148,expans:[],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":80,"dist\u3067\u751f\u6210\u3057\u305ftar":153,grn_obj_get_valu:[28,80],countri:[173,103,131],php:[7,153,81,129],expand:[],off:[28,85,9,81],dinam:160,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":109,exampl:[],command:[],ecmascript:[7,109,160,126,152],cutter_check_leak:180,akira:81,value_2:[3,103],web:[45,109,185,155,49,18,9,37,192],uncontinu:7,end_of_data:175,geo_in_circl:[],broken_pip:175,"185428000x":76,dest:[13,182,98],five:[136,3,97],recurs:[],"\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":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":127,"\u3053\u306e\u3088\u3046\u306bn":71,rep_gqtp:170,resiz:41,grn_plugin_regist:[41,148],interact:[3,175],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":98,daylight:81,grn_cas_error:2,avoid:[],hash_index:188,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":28,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":153,stage:81,iwai:[7,113,126],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":147,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":71,"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":80,event_queri:[155,190,65,18,49,179],virtualbox:153,merg:[7,133,120],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":98,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":153,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":46,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":194,"function":[],cutter_debug:180,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":83,"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b1":[],getenv:78,sigstop:126,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":156,count:[45,109,23,133,188,78],grn_table_cursor_delet:64,otherwis:[41,74,3,152,137,17,116,60,101,186,104,97,128,80,173,82],problem:[17,185,13,126,7,9,28,78,85,152],yuki:[28,81],"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":153,bigram:[],"int":[41,17,111,121,4,94,87,16,7,25,114,19,122,183,64,80,39,54,84],updated_at:71,jessi:[],"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":71,againt:109,inc:[78,81],grn_obj_key_norm:114,mizuhara:78,grn_int32_value_float_valu:78,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:78,varieti:45,variabl:[41,109,152,24,113,96,126,7,13,175,28,78,178,81],"edge\u306equeue\u306benqueue\u3055\u308c\u308b":135,repeat:[133,120],"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":70,grn_geo:[],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,"string\u306b":70,document_version_ful:153,kanji:85,rule:[109,91,81,55],dbmss:133,"scr\u3067\u3059":170,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":98,lgpl:43,"const":[41,84,183,124,113,16,114,64,80,39,54,122],"\u6bb5\u843d\u60c5\u5831":122,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":114,spec:[7,28,126],"\u524d\u63d0\u6761\u4ef6":[],secsion:136,editrc:28,createfilemap:78,"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":64,"status\u30b3\u30de\u30f3\u30c9":1,grn_cache_set_max_n_entri:17,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":28,upload:153,msyql:86,unmanag:127,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":11,"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":114,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":153,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":114,zunda:28,"\u547c\u51fa\u5074\u3067\u6e96\u5099":42,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":98,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":122,"obj\u3092unlock\u3057\u307e\u3059":80,aki:81,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":170,"\u9759\u7684\u89e3\u6790":[],"\u3092\u8ffd\u52a0":[28,156],"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":28,request_cancel:[],total:[],highli:[123,29,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,column_remov:[],kytea:[7,91,126,192],search_result:109,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":170,word:[165,178,72,185,12,186,133,160,109,49,7,172,18,188,78,100,85,179,81,152],exit_failur:5,work:[],era:133,cache_hit_r:[3,4,83,103,9,175],"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"16gb":168,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":170,geo_in_rectangl:[],indic:[76,3,144,126,91,150],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":170,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":46,basebal:[45,79],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":114,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":153,length:[7,41,13],"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":106,u0000http:85,recogn:133,"builtin_type_names\u306b\u306f":84,ahost1:181,after:[3,5,95,48,7,102,103,78,192,111,152,13,19,20,120,45,165,163,126,28,81,132,140,193,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":145,lat:170,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,grn_is_a_directori:2,averag:[109,81],n_queri:[3,4,83,103,9,175],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":156,opaqu:[17,175],grn_fals:80,too_large_offset:175,wgs84geopoint:[45,76,131,13,188,46,75,111,103,28],order:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,offici:[28,130,167,153,116],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":121,"3\u30ea\u30ea\u30fc\u30b9":[],grn_default_query_logger_set_path:7,flexibl:[133,160,116],"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":70,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":153,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:122,them:[3,12,13,192,167,109,76,86,88,14,59,19,120,74,75,175,78,181,130,185,39,136,154,140,85],thei:[91,4,12,95,48,49,9,10,150,192,55,115,109,152,86,59,123,18,160,22,24,163,172,140,78,177,178,179,185,186,134,33,37,85],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":61,fragment:38,comment_index:188,grn_plugins_dir:78,"break":[7,28,81,62],jinja2:153,deatil:109,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":170,"\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":70,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":145,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],ruby_load:[],serach:18,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":180,"\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":25,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":156,network:[7,45,175,55],morpholog:[133,192,85,152],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":94,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":127,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,standard:[59,46,3,9,175],vector_column:126,sequence_dataset:190,"\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":109,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":135,"\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":170,regress:[78,126,81],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":170,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":156,"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":180,independ:133,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],"ubuntu\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":153,"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":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":80,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":153,grn_proc_set_selector:81,john:[173,144],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":153,tokenfilterstem:[],latitude_in_degreexlongitude_in_degre:152,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,target:[],provid:[142,3,4,12,95,96,98,49,7,9,55,167,76,5,14,16,116,18,181,53,172,178,179,81,82,130,131,132,133,31,154,191,195,103],shuhei:81,minut:[152,188,75,18,150,179],"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":153,grn_text_valu:39,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"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:[193,178],indexbuf:122,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":61,"\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":125,usernam:[45,102],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":180,gronnga:172,excut:126,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":125,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":127,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":61,protocol:[],"column\u306f":122,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,latenc:170,"\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":153,liblzo2:[154,14],keyword2:[7,163],keyword1:[7,163],grn_obj_key_with_si:114,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],awar:41,suffixsearchterm:[185,152],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[],accord:[13,76],old_release_d:153,res_tabl:170,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":114,address_is_in_us:175,howev:133,"\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":159,grn_obj_check:80,grn_ptr_init:[39,16],"\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":106,com:[109,3,153,131,13,75,103,105,120,82],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":194,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":153,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":11,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":170,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":54,"\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":153,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[168,192,103,92],"\u672c":85,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":153,macport:[],snippet3:33,enginen:179,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":170,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":114,drilldown_calc_typ:[],"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":109,inhibit:113,grn_ctx_db:16,gnu:[],zlib:[],sourceforg:[78,153,26],grn_obj_prepend:80,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,aio:126,"\u5165\u529b":[6,106,194,108],adisk:181,cond:126,conf:[78,142,9,168,140],arg2_valu:181,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":180,grn_cach:[],perform:[],"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,warri:138,descend:[78,109,155],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":156,exclam:78,gurunavi:78,"\u6771\u4eac":[71,145,85],unsupported_command_vers:175,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:45,hang:126,evil:152,hand:[109,186,13,133,116,9,79],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,thu:[23,92,133,190,100,75,79,65,81,185],o_binari:7,contact:120,thi:[91,3,4,12,7,9,76,13,14,16,17,18,20,23,24,186,28,31,32,33,85,41,46,48,49,51,55,167,192,59,60,62,63,66,53,69,50,74,75,78,79,80,81,82,84,154,89,90,92,96,98,101,102,103,104,107,109,86,116,118,122,123,163,126,128,130,131,132,133,134,136,137,138,140,143,144,149,146,150,152,162,164,47,166,168,175,97,177,178,179,181,185,187,188,189,190],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":153,"_score":[3,12,49,7,28,109,76,152,86,155,71,18,61,45,122,123,126,75,78,79,179,188,116],no_such_devic:175,"table_list\u306f":106,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":145,grn_default_logger_set_path:7,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"\u8ad6\u7406\u7a4d":70,grn_ctx_per_db:[28,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":114,arai:78,"\u306ebase_version\u306e\u66f4\u65b0":153,scan_build:180,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":106,grn_op_but:70,night:[115,92],grn_column_name_id_len:122,grn_plugin_command_cr:[41,81],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":183,normallexicon:193,grn_default_logger_get_rotate_threshold_s:78,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":194,tokenbigramsplitsymbolalphadigit:[],grn_obj_renam:80,tasuku:[78,43],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":145,overcom:23,grn_text_len:39,grn_pvector:[39,16],shift_ji:[192,85],grn_inappropriate_i_o_control_oper:2,repositori:[],post:[],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":170,obj:[42,80,84,94,127,57,39,54,119,122],comment2:79,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,zxvf:153,"\u3068\u306a\u308a":71,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":125,"float":[],bound:81,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":145,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":16,coverag:180,accordingli:9,wai:[0,4,131,86,133,160,126,7,116,9,188,89,79,65,81,92],"hiroshi\u3055\u3093":156,conbin:[109,160],"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":35,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":122,event_dataset:[65,190],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"true":[1,147,3,92,12,6,46,165,48,137,47,146,101,104,10,149,110,128,108,115,109,76,152,86,13,194,59,116,60,157,63,144,96,66,22,45,69,50,23,123,163,73,126,171,74,186,75,173,97,79,177,81,181,185,131,188,33,35,8,193],"\u4e00\u822c\u7684\u306b\u306f":80,maximum:[67,109,23,152,12,13,36,97,175,168,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],fedoraproject:130,score1:70,score2:70,resource_deadlock_avoid:175,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":170,"\u8a9e":[127,85],"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":98,"32byte":78,test:[167,130,3,180,153,13,188,14,170,7,154,102,9,138,78,79,85,81,103],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":156,memos_tag:101,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,insensit:[109,181],scorer:[],outdat:81,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:81,masaharu:[7,113,126],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":125,consum:81,"s3ki\u3055\u3093":156,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":125,"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":70,hubeni:76,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":170,graph:133,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,takiuchi:126,grn_default_query_logger_set_rotate_threshold_s:78,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":98,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":70,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":42,octob:81,"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":159,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":74,administr:[],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":80,grn_obj_unlink:[80,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,"4gbyte":67,upper:[28,3,81,66],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":11,akihabara:75,"groonga\u3084mysql\u306erpm":153,cost:[115,85],admin_html:[28,98],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":119,tables_buff:16,appear:[109,91,3,178,12,133,33,2,152,85,81,185],"\u7def\u5ea6\u306f":46,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":125,nakamura:78,"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":153,gener:[],satisfi:[59,78,126],minagawa:[126,81],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":170,redmin:81,table_hash_kei:[],trial:133,"\u305d\u306e\u969b":153,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":98,behav:[132,76],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":11,"\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":171,"\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":64,regardless:78,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":125,"\u691c\u7d22\u7d50\u679c":109,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":180,output_typ:[37,4],freq0:49,mobil:133,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,httpd:[],grn_dat:28,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":80,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],key_typ:[],furigana:155,"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":153,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":71,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,"_sum":109,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":153,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":80,nfkc:193,grn_table_sort_kei:114,cat:153,grn_illegal_byte_sequ:2,can:[],clearlock:[],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":28,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":114,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,topic:[],abort:81,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":98,occur:[74,111,92,155,136,126,16,7,60,140,78,178,81],grn_between_too_many_index_match_ratio:81,multipl:[],mpaa:97,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,83,103,9,175],write:[109,143,185,188,98,100,137,181,20,77,79,192,113,81,152],grn_table_select:[],"\u6a19\u6e96\u5165\u529b":[83,147,73,74,127,157,159,161,38],flanc:76,grn_cursor_ascend:64,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":127,southern:7,uint:7,"\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":70,"rb\u3092\u8ffd\u52a0":156,grn_too_many_open_files_in_system:2,favorit:[],grn_plugin_log:41,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":127,approv:81,increas:[109,91,86,123,133,76,27,140,146,78,169,85,181],tagger:133,still:[88,126,60,104,81,120],ieee:46,dynam:[113,133,3,9],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":70,"\u8a9e\u306e":85,non:[136,109,185,126,7,62,78,85,152],loaded_valu:69,recal:[133,85,160],rake:153,col2:80,col3:80,col1:80,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":114,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,half:193,alisa:116,now:[],discuss:[0,26],nor:109,introduct:[],drop:[7,28,126,81,78],u0000ful:85,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":106,"\uff4d\uff59\uff53\uff51\uff4c":[163,48],januari:[132,152],grn_encod:[],domain:[],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":153,"takahiro\u3055\u3093\u304c\u5831\u544a":156,significantli:133,year:[188,97,152,150],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":153,shown:[3,152],"\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":171,space:[41,109,91,3,185,86,133,134,126,49,59,78,28,85,181],acccess:142,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":153,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":16,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":122,grn_db_kei:113,care:[109,23,185,123,96,179,120],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":153,couldn:[7,78],arnaud:28,"175904000x8464000":76,british:92,grn_ctx_get_match_escalation_threshold:25,directli:[188,152],with_check:[134,81],yourself:138,column_n:186,size:[],silent:82,bookmark:[159,86],"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":153,friend:[45,89],column_3:186,column_2:186,column_1:186,kenichi:[28,156],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,"\u4e8c":179,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":46,"\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":70,jacob16bit:78,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":80,than:[],n_keyword:39,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":145,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5dee\u5206\u3092":170,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":54,browser:[37,192,103,120],analysi:[133,192,152],grn_column_trunc:[122,81],grn_obj_compress_lzo:122,with_weight:[74,96,81,86],"txt\u306e\u5185\u5bb9":153,recover:[84,62],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":80,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":106,"\u3059\u308b\u3068":180,begin:[182,85,181],"6813819x139":[13,75],"\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":98,price:13,renam:[3,95,126,7,60,28],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":28,"\u3068\u308a\u3068\u3093":[185,152],"6909211x139":75,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":125,gobject:78,host_name_or_ip_address:[103,175],"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":127,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3053\u306e\u3068\u304d":145,concurr:150,"\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":114,pakcag:167,onli:[41,93,142,2,3,144,5,95,98,48,7,91,102,9,104,146,152,107,79,55,59,109,110,12,137,13,155,14,17,116,62,181,66,159,167,123,163,115,186,75,173,118,97,78,29,178,81,82,130,193,185,128,133,33,154,138,37,120,85],"\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":71,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":70,"\u3050\u308b\u3093\u304c":[185,152],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":156,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":6,overwritten:75,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"128mb":7,allow_pragma:109,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,error_loc:136,"\u3084red":153,"configure\u306e":28,sport:45,"\u304c\u5fc5\u8981\u3067\u3059":153,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":61,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[136,140,109,185,152],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":127,between:[],"import":[91,12,100,7,9,192,55,109,153,86,16,17,66,123,126,28,29,178,185,133,32,85],"\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":153,pthread_:126,"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":71,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":84,instroduc:126,nearbi:133,"\u305f\u3068\u3048\u3070":145,tutori:[],grn_encoding_pars:124,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":153,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":153,grn_too_many_link:2,exploit:133,"debian\u7cfb\u3082\u3057\u304f\u306fr":153,rebuild:78,invers:[123,81,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[42,80],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":182,emphas:110,rubi:[69,43,153,12,86,133,163,129,48,7,146,160,149,78,181,81,82],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":153,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":98,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"edge\u306fctx\u3092\u542b\u3080":135,"\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":16,"\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":16,grn_resource_temporarily_unavail:2,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":74,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":74,develop:[],etc:[142,3,153,13,168,7,154,9,140,89,178,55],media:81,epoch:[13,188],document:[],do_loc:170,finish:[150,104,5],someon:188,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":127,eito:126,repoforg:[7,130],theater:92,grn_permission_deni:2,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":114,appveyor:81,key_nam:109,"_post":153,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":114,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":156,grn_column_name_scor:122,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":98,isssu:126,mmap:[],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":28,desktop:102,"\u30ad\u30fc":98,grn_plugin_proc_get_var:[41,81],real:[133,46,33,140],swig:43,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":170,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":98,"\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":109,invalid_argu:175,benefit:142,cascad:[],output:[],unsplit:[109,70],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":114,grn_ii_buff:87,"\u51e6\u7406\u6642\u9593":109,logical_filt:143,"146249000x":188,ff9e:193,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[147,6,73,8,157,194,108],name2:152,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":94,grn_no_such_file_or_directori:2,usage_default_and_custom_scor:12,unicod:[78,193],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,grn_bad_file_descriptor:2,src:[13,154,153],central:188,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":98,degre:[13,28,75,152,86],backup:[84,159],processor:[167,133,130,14,154],unregist:[22,177],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[71,145,170,159,153],"\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":156,your:[],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,log:[],area:133,aren:[93,109,185,95,33,7,9,140,78,81,55,66],start:[],lot:126,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,submiss:[155,18,179,49],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":171,ealier:7,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":109,"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":170,"2\u884c\u76ee":170,grn_not_socket:2,"default":[],"\u6a19\u6e96\u5165":[8,141],"\u3068\u5171\u306b":122,invalid_seek:175,multibyt:28,pseudo:[],"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":112,decreas:[78,85],value_1:[3,103],prepend:[152,9,185],valid:[109,3,185,13,95,126,49,7,28,81,152],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":94,grn_obj_add_hook:94,you:[2,3,4,5,7,91,9,10,76,12,88,14,16,17,19,20,22,23,186,28,29,32,33,36,37,85,41,93,13,46,47,48,49,55,167,192,59,60,62,63,65,66,45,69,74,75,78,79,81,82,84,39,154,89,90,0,92,129,95,96,98,26,101,102,103,104,105,107,109,110,86,113,116,118,120,122,123,163,126,128,130,131,132,133,134,136,137,138,140,142,143,144,146,149,152,155,159,160,162,164,165,166,168,173,175,97,177,178,179,181,185,188,190,191,193],string2:112,string1:112,poor:178,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":80,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,reduc:[142,92,133,126,7,18,95,78,55,181],"n_builtin_type_names\u306b\u306f":84,naoya:[78,126,81],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":127,"\u3092\u683c\u7d0d\u3057\u307e\u3059":122,drilldown_offset:[],month:[150,78,188,152,45],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":153,"4byte":175,articl:79,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":170,zlib_error:175,mechan:[7,9,55],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[59,109,185,12,45,133,163,33,48,7,95,136,181,179,55,152],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":122,patsuffix:144,atsushi:[78,81],query_flag:[],masafumi:[126,81],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":70,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":127,"\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":42,groonga_dir:153,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":145,"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":170,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":114,learner:[],"\u95a2\u6570\u306f":[35,112,70,171,68],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":127,naoina:[7,126],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":170,too_many_symbolic_link:175,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":182,snippet1:33,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":64,snippet2:33,cve:81,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":94,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":180,score_1:132,score_2:132,hoge:[98,112],famili:[91,152],"1024r":153,"\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":153,"\u30c8\u30e2\u3061\u3083\u3093":45,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":80,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":153,almost:[28,109,140,168,129],bash:[78,192],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":145,fulltext:[167,93,109,91,185,116,95,163,14,98,31,48,33,154,152,79,193,130,142,66],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:28,score_n:132,cutter_dir:153,histori:28,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":157,user_input:152,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":109,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":84,grn_db_int:80,phrase:[],string:[],"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":119,anoth:[109,133,7,39,78,178],spreadsheet:178,snippet:[7,43,33,126],grn_expr_syntax_escap:39,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":153,"\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":98,unlink:39,allow_column:[109,185],grn_table_group:114,egg:79,narwhal:28,logrot:[7,81],akinori:78,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":153,help:[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,grn_proc_funct:41,soon:[93,33,55],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,paramet:[],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":156,systemd:[7,78],"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":153,"\u5024\u306e\u7bc4\u56f2\u306f1":61,shimada:7,comments_cont:79,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":70,"\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":170,range_error:175,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,sentens:78,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":109,"groonga_org_path\u306bgroonga":153,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":153,fulli:[7,9],yito:[7,126],heavi:[109,129],grn_column_nam:122,"\u30b9\u30ec\u30c3\u30c9\u6570":170,"\u30d5\u30a1\u30a4\u30eb":153,todo:[],event:55,"\u3080\u308b\u3093\u304c":[185,152],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":153,proxy_pass:9,publish:[153,81],"\u691c\u7d22\u5bfe\u8c61\u306e":71,trusti:[14,153,81],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":74,"shutdown\u306f":141,"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":11,pub:[130,153],asc:153,reason:[109,152,131,168,142,7,62,181,85,179,55,66],base:[142,91,12,48,49,7,9,104,192,167,109,111,152,14,18,65,120,123,163,126,187,179,81,130,185,132,133,33,154,188,37,195,85,103],grn_ctx_fin:[7,16],put:[185,123,140,78,37,181,81,120],"groonga\u53ca\u3073groonga":170,rect:[7,76,171],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":170,due:[133,33],assign:[],"\u4fee\u6b63":[],"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:126,miss:[126,7,78,28,178,81],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":114,conditional_probability_threshold:[28,155],station:[93,75,188],zeromq:192,schema:[12,48,101,149,109,76,152,115,116,18,159,23,123,163,186,110,97,79,181,185,33,190,173,140],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":156,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"max\u3068common":64,grep:[154,130,14,167],jqueri:81,"\u4efb\u610f\u306edb\u540d":170,str:39,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":80,"windows\u5411\u3051":153,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"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":114,option:[],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":127,lib:[22,142,156,126,9,62,10,177],"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":153,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":109,elapsed_tim:[136,150],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":171,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,81],tokenbigramsplitsymbol:[],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":180,grn_proc_get_typ:81,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,clear:[122,153,7,137,28,80,81],grn_too_many_open_fil:2,clean:[78,180,153],newvalu:122,weight_in_weight_vector:86,latest:[],grn_ctx_t:2,pretti:81,"\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":153,wanab:126,yml:82,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":156,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":180,"\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":170,grn_get_default_encod:124,grn_obj_compress_zlib:122,remot:[],"\u68ee\u7530":45,"\u82b1\u5b50":45,grn_hook_get:94,doc_bodi:92,"\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":153,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":109,grn_obj_is_lock:80,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":71,close:[59,95,163],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":74,grn_table_at:[156,114,80,113],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":170,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":74,isob:126,numer:[],no_locks_avail:175,both:[3,95,102,72,55,167,109,152,86,14,115,123,74,75,175,78,179,181,130,185,188,33,136,154,138,133],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":[6,98],condition2:152,condition1:152,"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":156,jeff:144,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":114,"000x":120,too_small_limit:175,header:[],"\u623b\u308a\u5024\u3067\u3042\u308b":121,linux:[],tokenbigramignoreblanksplitsymbol:[],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":170,stamp:[150,18,179,49],"\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":70,"null\u306a\u3089temporari":84,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":108,grn_table_sort_desc:114,combind:185,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[35,171],grn_table_cursor_get_kei:64,coordin:[13,76],unpatch:43,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":171,"while":[115,91,133,126,7,137,60],"\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":98,grn_zlib_error:2,grn_column_name_value_len:122,loop:[7,81],pack:[],malloc:81,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":170,readi:[109,152,7,181,20,192,185],readm:[126,153],fedora:[],belong:[46,72,131],"\u51e6\u7406\u958b\u59cb\u6642\u9593":109,grand:188,octal:152,"\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":80,src_kei:114,imagin:[109,131],optim:81,grn_set_default_match_escalation_threshold:25,temporari:[],user:[],"takuto\u3055\u3093\u304c\u5831\u544a":156,bob:[109,185,188,116,60,9,97,128,55],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":54,older:[78,188],input_output_error:175,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":114,nise_nab:81,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":71,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"56880000x":76,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":153,nginx:[],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":114,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":125,address_is_not_avail:175,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,grn_table_sort:114,signal:81,resolv:[12,86,123,7,28,29,38],elaps:[4,132,46,136,150,28,152],"32bit":[78,46,126],"\u304c\u306a\u3044\u5834\u5408":153,popular:[78,109,98,86],"\u30c7\u30d5\u30a9\u30eb\u30c8":70,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,creation:[28,3,126],some:[91,5,46,26,7,39,104,150,192,167,12,86,116,19,181,162,120,67,165,23,126,78,81,152,185,133,190,136,191,36,140,66,85],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":38,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":170,"\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":[6,8],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,slash:152,entry_bodi:74,run:[],stem:[154,165,14,81],step:[3,13,49,102,181,192,120],"\u3082\u3057test":170,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":71,grn_no_memory_avail:2,idf:[123,81,12],"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":121,block:[13,152,9,126,66],libzmq:[154,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[70,39],within:[188,75,18,179],ensur:18,grn_obj_key_uint:183,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":153,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":170,askmonti:81,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":114,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":145,"\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":28,pangolin:[7,14],tokenbigramignoreblanksplitalpha:85,hereaft:133,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":153,newer:[78,81],info:[6,98,123,8,9,181],utc:[136,152],"0xc7":175,utf:[43,4,132,126,193,7,192,85,152],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"column_create\u306f":74,munin:[],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":70,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":170,"_max":109,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":125,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":124,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":114,doesn:[41,93,91,92,12,95,96,7,9,104,192,55,109,152,115,60,18,19,66,165,123,126,97,78,178,179,81,181,185,33,136,140,193,85,195],repres:[45,92,13,98,160,181,39,152],"homebrew\u306e\u66f4\u65b0":[],before_instal:82,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":153,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":80,pronounc:160,titl:[45,109,3,185,12,112,13,126,137,123,186,103,159,153,79,131,29,81,152],drilldown_calc_target:[],accross:7,grn_ctx_close:[28,81,16],orangain:126,sigcont:126,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":156,draw:45,"groonga\u5358\u4f53\u3067test":170,"\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":156,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":80,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":125,io_flush:[],eval:146,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":153,kawaji:7,groonga_org_path:153,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":11,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[180,153],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"146741340x":188,ruby_script:146,friendli:7,nippon:179,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":145,"\u5185\u90e8\u7684\u306a\u5909\u66f4":153,button:[7,126,120],hemispher:7,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":98,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,download:[167,130,153,24,14,154,102,192,90],click:109,grn_obj_decr:80,onigmo:[78,81,181],experiment:[143,48,7,104,78,146,17,62,63,69,50,23,166,123,163,126,28,177,113,81,181,84,187,134,33,85],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":153,"\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":84,becom:[13,133,46,43,76],accessor:[78,114],convert:[2,152,13,95,188,78,193,81],convers:[28,9],blogroonga:[],"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":170,chang:[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":61,danger:[137,60,84,55,122],grn_plugin_mutex_clos:41,"boolean":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":108,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":109,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":[147,73],soundkitchen:[7,28],grn_column_renam:122,about:[],"23t02":152,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":153,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":156,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":114,"shibuya\u3055\u3093":156,retriev:[133,109,152],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":153,min_siz:64,meet:[188,75,81],mitsuhiro:156,control:[],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":171,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":153,sudo:[167,130,192,153,24,168,14,142,7,154,103,20,140,90,180,82],directory_not_empti:175,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":74,tokendelimit:[],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,narg:39,"\u6a19\u6e96":[6,106,194,108],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":153,int16:[46,156,126],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":114,decrib:9,"\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":153,"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":145,rakutan:79,otehr:66,encyclopedia:46,normalizernfkc51:[],table_token:[],kisk:7,"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":98,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[80,122],"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":70,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":80,sysconfig:142,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":156,"\u3053\u306e\u5834\u5408":64,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[114,80,122],grn_plugin_proc_alloc:41,read_only_file_system:175,grn_ctx_set_command_vers:16,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":153,handl:[168,2,13,95,126,16,9,140,78,85,81],auto:[7,155,81],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":38,succeeded_or_not:[137,60,173,128],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":153,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,column_information1:96,column_information2:96,"\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":71,"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":83,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":170,chunk:[78,168,140,127],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":180,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":170,special:[109,2,3,185,163,33,48,126,136,175,91,19,181,37,192,39,120],groo:[132,109],"\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":70,suitabl:[109,12,123,95,98,115,85,81,66],goroo:129,grn_geo_estimate_in_rectangl:[28,111],new_vers:153,"quit\u306f":161,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[64,122],manipul:160,grn_match_escal:[],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,latitude_in_msecxlongitude_in_msec:152,keep:[67,115,86,16,17,28,85],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":156,geometri:28,largetext:95,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":180,grn_cursor_by_id:64,"scorer\u306f":109,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":157,buf_siz:[114,80,122],"groonga\u30b3\u30de\u30f3\u30c9\u306b":156,mkdir:159,attach:[165,193,120],"\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":153,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[71,46,170],"final":[41,109,9,5,86],travi:[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":153,exactli:168,"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":188,"groonga\u306f":180,beg:[85,181],sequence_queri:190,extrct:152,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":153,concatin:[7,132,126],logs_20150205:23,logs_20150204:23,logs_20150203:[143,23,166,63],tabl:[],need:[91,3,4,5,95,98,48,49,7,102,9,104,10,152,78,107,79,55,92,109,192,12,86,16,17,123,18,20,144,181,66,22,23,24,168,75,175,140,28,29,178,179,81,82,130,193,185,128,133,134,33,136,85,37,120,39,132],border:[7,91,97],fluent:105,grn_obj_search:57,"0x08":175,"0x04":175,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":156,"0x01":175,"0x02":175,"\u30ed\u30b0\u3092":153,ifexist:59,singl:[109,91,3,86,134,126,59,81],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":109,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":156,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":153,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,kazuhiro:126,url:[159,28,81,55,37],uri:[37,9],grn_table_upd:114,fontain:28,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":114,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":64,grn_index_cursor:[],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":182,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,ssssss:150,object_corrupt:175,"146867000x":188,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":153,grn_obj_is_proc_proc:78,launchpad:[14,153,81],"\u3053\u308c\u306f":71,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[106,98],"\u3053\u308c\u3067":153,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":71,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":11,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,enabl:[],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":153,"masahiro\u3055\u3093":156,gram:[133,91,3,152],"output_columns\u304b\u3089_value\u3092\u524a\u9664":156,contain:[],kawada:81,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":71,orphan:126,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":70,korea:131,scorer_tf_idf:[],statu:[],correctli:[7,78,3],wibowo:126,tend:79,written:[22,188,10,20,128,81],benchmark:[],grn_retry_max:2,ken:45,kei:[],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,regular_express:181,"\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":121,eclips:120,"\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":71,admin:[156,126,7,78,28,81],jersei:188,"\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":156,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"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":125,cutter_source_path:153,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":80,"\u5185\u8a33\u306f":71,"\u304c\u3042\u308a\u307e\u3059":153,quit:[],addition:[78,75],cent:85,quiz:45,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,treat:[93,109,91,23,152,166,143,126,7,18,63,78,179,81],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[147,6,73,8,157,194,108],downcas:193,"\u65e5\u672c":[85,179],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":109,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":106,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":114,delimit:[91,13,133,126,49,78,85],drildown:[],main:[154,153],"12gb":168,glossari:82,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":28,longitude_in_msec:152,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,demo:45,redcloth:153,welcom:[109,185,88,188,26,152,89,120],grn_table_cursor_t:64,"\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":71,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":157,crch:91,entry_selector:157,nsubrecs_column:122,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":153,"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":71,effect:[7,59,188,98,78],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,rpmforg:130,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],well:[23,133,33,126,103,192,9],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":161,"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":71,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":80,lcov:180,distanc:[93,76,152,133,7,75],koi8r:[7,192,98],remove_blank:134,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":80,"log_reopen\u306f":194,bc009774:153,patricia:[],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":153,grn_ctx_get_command_vers:16,"\u3067\u533a\u5207\u308a\u307e\u3059":98,logger:[7,78],"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":57,int32:[3,12,46,49,7,128,109,76,152,86,155,71,60,18,45,123,126,75,97,79,179,81,185,131,188,116],ryoji:81,pikonyan:45,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":61,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":170,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":127,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":170,dat_kei:95,tomita:156,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":182,grn_file_corrupt:2,necessari:[28,3],"\u4e0b\u8a18":64,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":156,lager:126,use_offline_index:113,revers:[],assgin:152,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[182,98],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":114,out_http:170,home:[192,85,153],tatsuya:7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":74,index_column:81,nihon:179,estim:[78,111,168],grn_obj_key_float:183,grn_obj_remov:[28,80,78],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"10t13":[18,179,49],win64:102,"\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,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":127,offset:[],"blog_body\u7d22\u5f15":71,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":170,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,empti:[109,185,46,126,78,28,96,81],f10399c0:153,groonga_query_log_path:[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":148,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":98,museum:188,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":170,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":98,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":145,gronga:[172,178],overflow:[13,28,126,81],ear:91,quetzal:7,"\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":70,fullwidth:78,displai:7,limit:[],"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":127,"\u611f\u8b1d":[],"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,evalu:[152,185,126,186,146,85,181],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":98,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":156,eric:97,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":80,blog1:79,blog2:79,new_valu:109,futur:[69,76,23,86,134,126,175,146,28,55,181],rememb:109,halfwidth:193,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":64,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":28,sphinx:[153,88,20,15,81,120],katagiri:126,table_remov:[],"\u3068\u540c\u3058\u610f\u5473":98,max_concurr:182,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":184,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":125,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],whose:[3,152],accur:[133,33],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":153,grn_io_vers:81,"0x20":185,escaped_queri:39,kentaro:126,swap:140,"\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":35,"void":[41,84,5,124,114,25,117,19,64,80,113],voic:193,is_anim:13,affect:[7,78,126,81],"\u306f\u7121\u52b9\u3067\u3042\u308a":64,parameter_name1:37,parameter_name2:37,demerit:95,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":98,correct:[],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":171,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":153,"10m":9,batch:7,"10z":152,"\u30b0\u30eb\u30fc\u30d7\u5316":61,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":170,even:[167,130,23,152,123,133,14,126,7,154,102,138,79,179,81],"\u3064\u307e\u308atest":153,neg:[41,109,2,16,7,19,78,54],spokesman:89,"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":153,"\u3050\u308b\u3093\u304c\u592a\u90ce":45,"new":[],net:[45,3,153,131,13,26,75,103],ever:126,metadata:[69,12,123,188,7,146,29],elimin:126,behavior:[7,116,85,81,97],never:[78,192,155],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":170,met:186,grn_log_level:41,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":153,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":80,grn_parse_query_flag:78,jame:144,sji:[192,43,98],serch:[155,18],yamada:81,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":109,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":182,grn_expr_exec:[39,16],"\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":170,"\u826f\u3044\u4f8b":125,"\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":71,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":71,overhead:[142,81],typo:[126,7,18,78,28,178,179,81],recommend:[167,109,3,185,142,129,14,130,55,136,154,101,102,103,138,140,181,85,81,152],"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,arg1_nam:181,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":117,under:[132,55,9,37,192,65,81],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":80,warp:81,warn:[109,6,98,126,7,123,8,9,150,113,81,181],"\u4ee5\u4e0b":170,"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":71,setup:[120,126,82],neolog:85,akio:[7,28,126,78],root:[37,98,9,126,103],give:[133,116],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":70,"\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":25,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:182,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],unsign:[],"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":153,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,log_level:[],quot:[91,3,185,134,126,59,152],updag:7,config:[1,98,7,102,28,192],sato:78,grn_arg_list_too_long:2,sitedomain:[103,131],"\u30b9\u30fc\u30d7":145,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,permission_deni:175,third:[13,96,109,152],maintain:85,grn_text_printf:81,"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":71,romaji:179,"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":125,"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":153,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":84,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":73,privileg:[103,126],keyboard:109,copyright:81,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":171,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":112,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":54,persist:[],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":64,anim:45,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":156,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":171,leaner:65,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":153,grn_exec_format_error:2,cache_previ:17,side:[7,133,109],mean:[41,93,2,143,96,98,7,91,9,104,150,3,192,109,107,152,86,13,155,19,63,23,166,123,168,126,186,75,111,78,178,179,81,181,185,131,39,137,140,193,85],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:45,blog_comment_index:186,grn_obj_compar:80,extract:[],"hiroshi\u3055\u3093\u304c\u5831\u544a":156,content:[41,12,96,9,28,55,109,110,152,115,116,45,165,126,186,175,78,79,81,185,188,33,136,140],rewrit:43,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":64,grn_with_egn:[],situat:109,ncpu:90,mdev:78,lzo_error:175,"\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":156,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:181,iso:152,"\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":170,wgs84geoppoint:111,cpuinfo:[154,130,14,167],plugin_regist:[],grn_snip_clos:81,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":71,hook:82,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":170,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":156,sometim:81,"\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":145,grn_cache_get_max_n_entri:17,iptabl:[103,55],"\u5358\u4f4d":[183,171],"push\u3057\u3066groonga":153,"80ghz":170,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":98,mkostemp:81,"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":109,conveni:[23,133,191,28,192,179,195],keyword:[],"\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":98,grn_expr_get_var_by_offset:39,modern:188,mind:67,mine:133,"\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":28,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":153,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":159,regular:[],tradit:[133,81],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":170,don:[3,4,12,96,98,49,9,28,107,55,17,109,192,152,86,16,59,66,123,175,78,29,178,81,193,185,39,137,138,37,120,85,103],doc:[92,153,88,20,126,7,9,28,78,113,81,120],"\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":71,doe:[109,3,185,86,13,133,126,7,186,9,62,155,142,152],logyyyymmddhhmmss:132,grn_not_enough_spac:2,dot:7,"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":46,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":125,keybuf:114,"\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":170,syntax:[],"\u65e5\u672c\u8a9e":179,yoji:28,acquir:19,explain:[13,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":98,"\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":127,record_id:78,grn_obj_is_function_proc:78,cosmo0920:[126,81],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,stop:[],grn_plugin_fin:41,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":153,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:126,bar:66,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":153,reload:178,bad:[133,126,81],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":73,veres:55,all_record:7,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":170,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":46,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":170,old_releas:153,"\u5b9f\u884c\u3067\u304d\u307e\u3059":153,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":145,subject:126,brazil:131,libgroonga:[164,3],grn_function_not_impl:2,simplest:[133,192,12,36],illegal_byte_sequ:175,attribut:[91,110,27,134,169],nfkc51lexicon:193,threasd:98,"\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":98,"100x150":35,"\u534a\u5f84":171,str_ptr:41,"takuto\u3055\u3093":156,replied_to:188,key_length:175,"\u30af\u30a8\u30ea\u306e":71,string_liter:81,"\u6539\u884c\u6587\u5b57\u306f":98,against:[],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":180,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":[],grn_op_cal:70,grn_expr_var:[41,54],g721d5c7:83,grn_obj_clos:[70,121,81,80,16],three:[109,76,23,131,86,13,163,126,136,123,60,18,160,3,79,179],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":153,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":71,interest:[89,3,181],basic:[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":153,suppress:[7,113,81],"2\u30ea\u30ea\u30fc\u30b9":[],multithread:104,servic:[142,133,126,7,18,140,78,81,82],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":84,calcul:[93,109,76,132,188,126,7,75,146,81],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,groonga_cli:152,seven:[23,3,166],datail:109,theatr:92,"key\u3092\u8fd4\u3057\u307e\u3059":80,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":98,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":80,"\u691c\u7d22\u306e\u6319\u52d5":[],receiv:[152,132,133,175,98,16,9,65,120],make:[],column_list_head:96,meetup:78,"_kei":[3,92,12,96,47,49,7,101,9,149,110,128,55,144,109,76,152,86,13,155,59,60,18,61,159,45,165,122,126,186,75,173,97,79,80,179,81,185,131,188,136,140,193,103],msg_controllen:78,zlib1g:[154,14],unicorn:14,"\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":70,"8byte":175,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":70,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":122,inherit:126,"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":70,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":98,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,left:[],identifi:[46,173],just:[],sigusr1:28,"\u6771\u4eac\u90fd\u6c11":[71,145],human:[96,66],"\u73fe\u5728\u306f":[182,170],yamamoto:81,yet:[93,69,23,152,12,123,133,109,126,146,28,55],"table\u304c":114,defrag:[],uint16:[46,126],"worker\u306f":135,save:[132,168,79,153,81],applic:[164,152,133,98,33,55,9,28,178,81],"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":145,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":153,background:98,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":153,nomral:[109,185],daemon:[],vdw:[75,3,131],manual:[],grn_obj_expir:80,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":108,mrubi:[69,153,126,146,78,81],unnecessari:140,cxxflag:24,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,intern:[13,33,16,17,126,78,107,113,81],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":106,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":145,"\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":145,tracker:[],"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":70,localhost:[182,4,153,132,170,98,9,104,55,175],range_filt:[],new_release_d:153,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,grn_cursor_gt:64,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":180,promot:126,"\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":153,"\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":11,postgresql:[133,33],"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":153,update_buffer_s:87,"\u30c6\u30b9\u30c8\u306f":180,grn_ctx_recv:81,commit:[81,120],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[182,98],meerkat:28,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"\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":25,sphr:[76,171],down:[],contrib:153,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,editor:120,fraction:[13,133,188],storategi:109,fork:[98,120],grn_content_tsv:107,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[109,3,185,132,188,175,160,126,9,52,28,193,103],sub1:109,forc:7,grn_obj_db:84,"4e86e700":168,"txt\u306b\u307e\u3068\u3081\u307e\u3059":153,grroonga:172,"\u5426\u5b9a":70,auth_basic_user_fil:[9,55],"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":159,unrel:28,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":11,classif:131,featur:[],kwic:33,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":68,grn_obj:[],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":54,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":61,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":35,score_function2:12,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":98,tokenbigramignoreblank:[],excel:178,"defrag\u306f":38,"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":153,matur:[142,191,23],escaped_charact:39,faction:188,grn_ii_cursor_set_min:78,why:[109,126,142],calc_typ:109,fsf:7,data_set_nam:155,"scr\u306e\u4e2d\u8eab\u304c":170,vmstat:168,ignor:[109,91,84,178,95,134,126,7,173,104,78,28,85,81,185],reply_to:79,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,logs_message_index:181,n_entri:118,"152489000x":188,skip:[78,3,126,81],segv:126,"\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":38,force_prefix:[78,91],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":64,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":180,marku:7,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,must:[41,3,5,96,49,103,104,149,143,111,192,55,17,109,110,152,13,155,59,60,62,63,181,65,66,23,122,166,168,72,186,173,175,78,179,81,185,84,132,39,137,140,85],query_str:[],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":28,"0mq":126,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,grn_obj_set_fin:54,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":153,proc:[41,167,109,94,14,126,154,130,54,119],iter:152,dic:167,item:[142,155,109,49,18,179,55,66],round:28,dir:170,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":114,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":153,strerror:81,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":156,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":170,shinoda:[78,81],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":68,deriv:[142,65],"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":145,wait:[41,19],box:109,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":61,"\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":11,grn_true:80,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":159,raccoon:45,"\u306e\u30ab\u30e9\u30e0":[38,108],grn_content_json:107,modul:[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":127,result_too_larg:175,sako:78,univers:14,perl:9,nokubi:81,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":74,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":114,grn_proc_typ:54,"_min":109,ooo:95,apper:109,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":70,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,grn_plugin_proc_get_var_by_offset:[41,81],commands_column_list:96,tokyo:[75,76],"\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":153,uniqu:[132,104],"\u30d2\u30c3\u30c8\u6570":109,ull:91,"256kb":168,predict:[95,85,66],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,"\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":125,libmemcach:180,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,normalizs:66,map:[23,168,140,28,150,78,179],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":170,max:[],mac:[],grn_obj_append:80,assigend:185,mai:[164,12,95,96,7,9,104,78,146,192,79,55,152,155,17,60,62,181,66,67,45,69,23,122,123,126,28,29,178,81,185,84,133,134,136,137,140,85],underscor:66,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":46,table_dat_kei:[],grn_expr_get_keyword:39,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":145,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":182,talk:[78,126,26,153],feb:23,"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":71,pointer:41,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":70,entiti:133,group:[],monitor:[154,130,14,126,167],polici:126,"\u5b9f\u9a13\u7684":[],vector_s:[],resource_temporarily_unavail:175,initi:[41,5,132,16,7,78,28,81],lunch:133,"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":153,"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":153,"\u5fa9\u53f7\u3057\u305f\u9375":153,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":80,massachusett:188,"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":153,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":170,"\u3053\u306e\u7d50\u679c\u306f":170,gzip_typ:55,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":156,continu:[91,98,126,7,18,85,81,82],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":153,unlock:41,nroonga:[116,79,82],"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":180,"3rd":[109,126],compress_lzo:74,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":11,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":170,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":153,uint32:[3,92,46,7,103,106,128,144,109,152,86,115,60,96,66,45,165,71,126,186,75,173,97,79,81,181,185,131,136,140,193],"\u624b\u7d9a\u304d":54,earlier:[28,128,193,78],"\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":194,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":183,debootstrap:153,org:[3,102,9,192,167,110,153,86,13,14,159,120,45,24,170,75,103,78,81,130,131,154,90],prefix_search:[28,155],"128487316x502920929":[45,75],grn_table_renam:114,"\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":71,"\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":125,"marverick\u306b\u5909\u66f4":156,frequenc:[12,123,155,100,187,78,81],"grn_op_adjust\u306f":70,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":106,thing:78,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":145,think:[123,29,109,12,152],frequent:12,first:[41,142,3,92,12,96,48,102,9,104,28,192,55,109,152,13,16,66,45,163,126,78,79,178,81,181,185,132,188,33,136,120,85],logical_table_select:[],"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":153,"vmware\u306a\u3069":153,key_norm:[115,109,193,3,92,71,188,185,33,7,116,140,79,152,66],fast:[93,91,3,12,95,48,101,72,55,109,76,152,59,66,45,123,163,110,79,181,185,133,33,136,195],crit:[6,8],grn_geo_cursor_open_in_rectangl:111,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":71,workaround:[78,81],adjac:[85,185],"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":28,memo:[165,12,123,116,101,149,29],key_siz:114,broadcast:188,"value\u304c\u5c5e\u3059\u308b\u578b":106,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,proxy_cache_valid:9,patprefix:144,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":46,longitudexlatitud:126,yoshioka:7,poyonga:129,grn_db_touch:[156,84],were:[76,3],zsh:192,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:192,grn_invalid_format:2,properli:[7,78,103,185],katakana:[155,193,85,179],squar:76,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":170,"256gbyte":67,normal:[],beta:43,pair:[109,13,49,172,18,178,179],"143660000x419009000":76,synonym:[109,178,92],grn_default_query_logger_get_rotate_threshold_s:78,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[38,108],"\u539f\u56e0":[],shop:[115,145],lexicon:[],"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u516c\u958b":156,show:[93,1,2,3,4,12,48,7,103,78,52,107,109,76,152,13,59,116,45,23,123,163,126,186,75,173,175,97,28,81,181,185,131,133,134,33,136,188,192,110,85],"\u62c5\u5f53\u8005":153,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":70,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":70,black:[93,193],"\u30c6\u30fc\u30d6\u30eb\u540d":[106,38,108],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":71,tamano:81,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":156,gem:153,"\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":170,"\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":170,tokyogeopoint:[76,46,35,75,111,28,171],median:81,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[],wiki:9,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":114,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":71,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":28,sear:179,enci:170,masahiro:[156,126,81],japan:[75,173,103,131,179],therubyrac:153,infinit:[7,28,81,66],enumer:3,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":170,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":114,label:[],enough:[133,79,168,81,78],across:76,parent:[109,9],unknown_error:175,column_vector:[45,109,86,13,188,96,126,74,186,173,149,81],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":194,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":98,"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u7b56\u65b9\u6cd51":[],recrod:109,"\u3088\u3063\u3066":46,dump_plugin:[],"\u5206\u5272":145,grn_expr_clos:39,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":125,grn_cache_open:17,among:[],grn_obj_delete_hook:94,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":170,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":170,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":145,inappropriate_i_o_control_oper:175,cancel:[36,104,81],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":153,gnupg2:153,mark:[165,188,113,142,78,193,85,81,66],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":11,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":87,grn_too_small_offset:2,grn_init:[7,150,5],senboku:126,i18n:[],those:[109,76,3,4,172,24,133,160,185,33,49,13,193,95,152,192,113,55,120],sound:[18,193],invok:[],hdd:170,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"8\u306b\u5bfe\u5fdc":156,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":98,advantag:[133,142,33],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":170,brasillia:76,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":170,"1\u3068command":11,pat:[7,113],drilldown_result2:109,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],drilldown_result1:109,same:[3,12,129,9,104,10,55,109,152,86,13,16,59,116,18,19,22,123,126,75,78,79,181,185,36,136,37,193,39],speech:[133,85],pai:109,"\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":145,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":153,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,grn_command_version_st:117,grn_table_dat_kei:114,"\u540c\u3058\u3067\u3059":170,montywi:113,grn_address_is_not_avail:2,macro:[28,126,81,78],markup:[88,78],"drilldown\u7d50\u679c":109,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":16,argument2:[152,12],"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":153,argument1:[152,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":80,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":182,document_vers:153,execut:[],grn_obj_fin:[39,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":98,monei:45,mcdonald:93,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":121,"root\u306b\u5909\u66f4":156,enable_tokenized_delimit:91,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":80,"\u697d\u3057":[71,145],value_column:122,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":114,evaluated_valu:146,either:[0,109,152,126,97,79,181,185],quantal:7,operation_not_support:175,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":153,ascend:[93,75,3,109,131],testdb:[170,65],"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":114,confirm:[],table_no_kei:[],valuebuf:42,str_length:41,"\u30cb\u30c3\u30dd\u30f3":179,event_typ:190,broken:[84,126,7,137,62,78,28,81,122],regexp:[78,81],"128452975x503157902":[13,45,75,103],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":98,"_set_valu":113,"x\u306e\u304a\u77e5\u3089\u305b":[],"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":156,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":153,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":64,strip:110,"tomita\u3055\u3093\u304c\u5831\u544a":156,yyi:120,drilldown:[],grn_ctx_batch_mod:81,complianc:9,"\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":170,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":80,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":153,arugment1:152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":170,possibl:[28,46,37],"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":153,embed:[133,98,33,48,9,78,178],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":157,file:[],logo:7,fill:[132,152],again:[115,78,9,81,19],field:[78,96],location_in_groonga:136,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":170,architectur:[133,98,153,81],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":74,sequenc:[109,185,36,126,49,155,18,175,150,28,179,152],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"6gib":140,"\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":114,escal:[],unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":46,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":147,"x\u3067\u306frealloc":156,descript:[],escap:[],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":156,represent:[124,120,39,86],forget:86,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[113,185,153],suno:81,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],file_too_larg:175,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":94,libmsgpack:[154,14],"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":153,"\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":109,objnam:[38,108],grn_op_and:[57,70],grn_op_or:[57,70],fals:[1,91,104,153,137,13,46,126,74,116,60,101,186,173,97,144,152,128,163,81,185],"\u3053\u3053\u3067\u3082":71,offlin:[],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":156,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":11,sub_filt:[],hottolink:43,grn_hook_set:94,puropos:91,"\u305d\u308c\u3092\u65e7ji":64,zero:[165,72,86,13,85,109,175,193,178],further:13,"\u3053\u3053\u3067\u306f":71,aba:[75,3,131],abi:78,grn_info_typ:42,"\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":125,fffe:91,tokenbigramignoreblanksplitalphadigit:85,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":127,"public":81,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":98,tokenbigramsplitxxx:85,grn_table_pat_kei:114,valu:[],grn_table_setoper:114,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":122,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":194,fff0:85,narrow:[],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u95a2\u4fc2\u5f0f\u306f":70,commands_table_cr:106,transit:142,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"groonga\u306epackag":153,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":171,establish:[3,175],distinct:[67,132,144],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":153,regist:[],libev:[192,154,14,113],groonga_path:170,"check\u30b3\u30de\u30f3\u30c9\u306f":127,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":98,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":74,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,jsonp:[132,78],desin:142,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[109,91,134,175,98,47,190,137,9,79,192,66],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":182,hour:[188,152,19,150],dev:[153,14,126,26,7,154,180,78,28,81],grn_set_default_encod:124,"\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:[150,126,181],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":156,deb:[153,14,126,7,154,78,28,81],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":71,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":153,share:[17,23,84,166,45,133,143,98,126,26,7,9,122,63,28,79,192,19],shard:[95,143,23,78],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":64,minimum:[41,167,109,152,14,130,154],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[35,171],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],strlen:41,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":122,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,secur:[],"\u691c\u7d22\u7d50\u679c1":109,"13\u7528rpm\u306e\u63d0\u4f9b":156,arg2_nam:181,needl:70,grn_command_vers:[],number2:152,number1:152,mariadb:[126,81],associ:[41,45,109,3,13,59,173,28],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":153,kuriyama:[78,81],spheric:76,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":161,rotat:[78,98],hypertext:[],no_buff:175,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":71,through:[133,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":153,"\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":80,"\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":61,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"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":114,good:[165,91,185,133,109,115,47,152,79,192,85,120],timestamp:[188,23],"tokenmecab\u3067\u306f":71,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":153,grn_get_lock_timeout:19,grn_obj_vector:[80,39,16],"_valu":[109,61,122,81,126],rank:[3,81],"db\u3068\u306a\u308a\u307e\u3059":84,comamnd:55,micro:[],name_2:[3,103],name_1:[3,103],hard:140,idea:109,"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":64,connect:[3,98,7,191,175,78],rlimit_nofil:[150,126],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":153,flower:13,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":153,"release\u306e\u5b9f\u884c":[],print:[175,81],foreground:98,definion:152,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":70,entries_content_index:[140,109,185,152],database_path:[],msg_flag:78,"975mbyte":170,tahr:[14,81],"\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":153,grntest:[7,28,156,153,105],"tokenmecab\u306e\u5834\u5408":71,tritonn:[109,185,152],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":114,suggest_prepar:[155,18,179,49],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":125,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":98,done:[17,109,9,81,19],stack_over_flow:175,"\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":46,stabl:[155,11,81],"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":153,"indexbuf\u306e\u30b5\u30a4\u30ba":122,"5th":109,least:[185,168,7,186,118,140,78],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":71,"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":114,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":71,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:28,"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":70,pari:76,selector:7,part:[188,23,166,13,133,143,33,136,63,3,192,85],pars:[124,39,81,160],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":114,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,"\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":125,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":170,"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":145,"\u30c6\u30fc\u30d6\u30eb":108,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":70,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":71,plugin_unregist:[],consol:9,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":73,built:[],argument_name1:37,argument_name2:37,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":153,distribut:[167,130,153,14,7,154,102,138,192,81],"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],previou:[142,131,12,13,126,7,79,81,181],chart:28,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":68,most:[109,111,3,185,86,13,32,16,81,78,181,85,55,152],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":80,myisam:133,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],groonga_log_level:[],mainlin:[78,81],cas_error:175,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":145,"\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":180,carefulli:86,"bom\u4ed8\u304dutf":156,find:[114,165,193,3,133,163,109,33,48,49,155,60,18,102,20,89,192,85,179,120],grn_no_such_process:2,grn_index_cursor_open:121,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":84,grn_logger:7,unus:81,grn_in_values_too_many_index_match_ratio:81,grn_obj_defrag:80,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":182,commands_column_renam:60,restart:[],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":170,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":71,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":170,map_hugetlb:28,common:[109,185,95,46,14,98,7,114,160,64,28,79,152,66],table_cr:[],grn_api:39,"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":114,grn_interrupted_function_cal:[2,104],"status\u30b3\u30de\u30f3\u30c9\u306f":83,lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":182,blog_cont:186,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":170,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":170,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":180,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":157,network_is_down:175,hiroyuki:78,is_stop_word:[165,47,81],simpli:[123,144],point:[],hideki:[78,126,81],shutdown:[],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":71,weight_in_match_column:86,ran:179,secret:153,indexblog1:79,"\u4ee5\u4e0b\u3067":71,gat:[75,3,131],understand:[109,3,81],"\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":11,bill:[71,145],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":145,opear:152,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":127,anonym:95,gb87d9f8:4,everyon:103,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,manner:[109,3],"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":170,"\u6c11":145,itself:[91,185,86,126,178,81,181],cento:[],"\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":153,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":70,res2:114,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":71,inv_thread_column:170,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":159,keyr:[7,154],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":194,usage_multiple_scor:12,"\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":71,task:[7,133],sortbi:[],entri:[147,94,48,108,17,109,152,59,157,163,73,126,74,186,173,118,79,185,188,137,140,38],parenthes:3,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":170,spend:[185,152],"build\u3092\u7528\u3044\u3066":180,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":68,shape:93,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":170,"\u3053\u306e\u64cd\u4f5c\u306f":114,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":159,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":70,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":153,bin:[192,102,20],key_column:122,kashihara:81,"\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":156,tokendelimitnul:[],"\u6c38\u7d9a\u7684\u306a":80,bit:[167,109,185,154,24,46,14,170,130,13,102,138,152,82],"\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":46,semi:[28,66],groogna_default_command_vers:55,in_valu:[],followe:188,often:97,grn_ctx_set_fin:16,back:[181,9,152],grn_plugin_init:41,sizeof:[78,39,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,scale:[133,55],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":170,per:[],newark:188,substitut:[109,185,116,152,82,120],larg:[185,13,133,140,7,62,95,78,152,85,55,66],"\u304c\u8fd4\u3055\u308c\u307e\u3059":80,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":108,reproduc:126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:81,"\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":70,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":127,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":148,grn_default_logger_get_path:7,"markdown\u30d1\u30fc\u30b5\u30fc":153,grn_expr_compil:39,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":108,"\u30c6\u30fc\u30d6\u30ebterm\u306b":74,nsi:153,bsd:[28,192,81,78],errno:[78,81],pair_dataset:[190,49],includ:[91,143,12,96,10,146,3,55,109,152,88,60,63,22,69,23,166,123,126,97,78,177,178,81,130,134,33,136,85],score_funct:12,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":35,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":180,str_size:39,translat:[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],concaten:79,default_command_vers:[3,4,83,103,9,175],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":114,remaind:152,grn_tabl:[],exit_success:5,no_space_left_on_devic:175,curl:[192,4,132,98,7,9,104,90,55,82],cmake:[7,78,192,102,126],sequenti:[185,78,152,85,81,181],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":70,grn_content_msgpack:107,grn_no_locks_avail:2,libwinpthread:81,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":153,"\u30b7\u30a7\u30eb\u4e0a":170,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":109,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":170,"\u3053\u306e\u4f5c\u696d\u306f":153,"tokenbigram\u306a\u3069":71,ellip:[76,171],grn_bulk_vsiz:[39,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":153,getaddrinfo:7,jason:144,"\u5f62\u5f0f1":98,"\u5f62\u5f0f2":98,"\u308d\u3086\u304d":144,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":122,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":153,sensit:85,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":153,grn_db:[],becam:[142,81],exit:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":83,fatal:81,db_path:[3,4,129,175,98,103,78,37,52,9],comment_cont:186,"2rd":109,grn_obj_is_scorer_proc:78,geograph:[13,76],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":8,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":46,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[38,108],"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"0x0":[13,46,113],object1:152,object2:152,leakag:92,carlo:[60,128],append:[7,39],"\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":145,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[],"32gib":140,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,interrupted_function_cal:175,"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":80,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":156,vertic:66,sinc:[115,142,76,122,167,13,188,46,98,150,7,152,10,136,78,128,108,66],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":127,masatoshi:78,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":184,grn_resource_deadlock_avoid:[2,80],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":98,grn_mecab_chunk_size_threshold:78,"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":153,ii_buff:87,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,score_function1:12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":153,score_function3:12,set_token_filt:81,grn_content_typ:[],name1:152,account:[26,81],"146607190x":188,"\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":11,alic:[109,185,188,116,60,9,97,128,85,55],rurema:81,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":153,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,fetch:[79,81,49],abcd:134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":156,commnad:[11,102],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":54,msvc:78,users_loc:188,grn_ii_buffer_commit:87,surfac:93,groonga_n_record:126,afr:[75,3,131],"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":74,inst:126,physic:127,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":64,bind:[164,43,163,160,98,48,7,78,28,82],amazon:109,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":80,grn_geo_select_in_circl:28,"\u6df1\u523b":71,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":156,hiroshi:[28,81,78],replies2:79,"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":153,"\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":153,meter:[75,76],report:[],cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":114,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":106,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":171,euc:[98,85,126],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":170,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":114,tsv:[],"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":70,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":98,nvar:54,spell:[178,92],dai:[23,152,188,115,150,78],dat:[7,113,126],mention:186,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":106,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":170,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":153,grn_table_lcp_search:114,"tomotaka_ito\u3055\u3093":28,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":71,column_index:[3,92,12,96,48,101,109,152,86,115,71,159,45,165,123,163,74,186,116,97,79,81,181,185,188,33,140],"\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":38,"\u306e\u66f4\u65b0":[],normalizerauto:[],"\u3067\u3042\u308c\u3070":170,tokenregexp:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":80,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":153,stub:81,rel:[28,109,81],"\u30ab\u30ec\u30fc":145,ref:152,red:[],clarifi:81,"\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":71,frank:97,test_loc:170,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":98,groonga_log_path:[],drilldown_xxx:109,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":156,pgp:153,tokenizer_error:175,natti:28,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":71,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":170,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,175,98,83,103,9],ipad:[167,85],"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":98,syscal:81,structur:[136,133,45,81,95],charact:[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":127,have:[93,142,2,3,195,46,49,9,72,192,55,115,109,107,152,88,155,59,18,96,66,165,78,178,81,185,193,84,133,136,13,140,120,85,103],"\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":98,min:[],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":170,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":122,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":153,osdn:[78,153,26],mix:[37,155,86,85,78],builtin:[],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":80,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":145,gurun:160,bottom_right:[28,35],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":38,"\u6e2c\u5730\u7cfb":46,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":156,mail_column:170,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":70,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":180,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":145,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":71,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":109,"grn_bool\u578b\u3092\u8ffd\u52a0":156,bernard:78,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":74,elfr:7,grn_plugin_malloc:41,grn_ii_buffer_append:87,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":71,escaped_str:39,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":84,integr:[7,13,126,82],"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":153,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":153,malfunct:78,your_new_db:28,"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":71,pattern:[152,133,136,78,181,185],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":180,progress:150,superior:[133,33],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":170,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":183,plugin:[],shorttext:[3,92,12,95,46,98,47,48,49,101,103,149,106,111,128,144,123,109,76,152,86,13,155,115,116,60,18,159,96,66,45,165,71,163,170,74,186,75,173,97,79,110,179,81,181,185,131,188,33,136,137,140,193],"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":127,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":117,equat:76,"\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":145,comment:[],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":94,log_repoen:7,test_str:180,"hook\u306e\u5b9f\u884c\u9806\u4f4d":94,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":98,"\u52c9\u5f37":85,json:[],grn_obj_table_no_kei:[64,114],grn_table_group_flag:114,grn_ii_cursor_set_min_en:78,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":180,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":98,"\u4f8b\u3048\u3070":[71,170,80,98,145],bulk:[78,39],multi:[],plain:[78,110],defin:[3,152,46,190,115,175,78,178,179],buildabl:28,replies_cont:79,ill:145,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":180,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],kernel:[7,140],caplit:[126,81],grn_plugin_mutex_open:41,power8:81,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":170,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":74,too_many_open_files_in_system:175,japanes:[0,185,133,26,7,152,85,179,81,120],"pc\u306bgroonga":148,auth_bas:[9,55],utop:[14,153],optarg:[57,84],hostnam:[170,98,7,9,37,175],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,column_nam:59,grn_column_name_key_len:122,document_index:[163,48],francisco:76,"\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":153,center:[133,171],builder:87,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":153,choos:[109,13,98,59,9,85,81,181],error_cod:41,update_not_allow:175,"1byte":175,usual:[13,78,79,65,16],unari:126,logical_select:[],"5\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,takayuki:28,gmo:81,"30ac":193,lake:93,add:[],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,grn_ctx_at:[7,16],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":127,grn_obj_table_pat_kei:[64,114],"\u3067\u306f\u306a\u304ffree":156,grn_obj_path_by_id:[80,113],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":84,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":80,substit:109,"\u8ffd\u52a0\u306e\u5c5e":74,insert:[7,3,33],like:[],success:[],groongau0000ful:85,grn_obj_id:80,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":80,"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":46,"\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":156,"com\u304cedge\u3092\u4f5c\u308b":135,socket_is_already_shutdown:175,soft:140,snippet_html:[],normalizer_list:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":159,"\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":70,specfi:111,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":159,proper:[136,188,23,81],grn_column_cr:122,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":170,tmp:[3,153,132,155,96,98,126,60,103,106,181,178,55,175],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":170,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":71,"\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":71,"repositories\u914d\u4e0b\u306b":153,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":71,host:[170,98,175,28,82,103],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":153,"\u30c0\u30e1\u30fc\u30b8":71,sbin:90,actual:[23,166,12,13,143,126,9,63,3,81],socket:7,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":16,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":122,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":170,"mooz\u3055\u3093\u304c\u4fee\u6b63":28,lifecycl:82,"\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:45,discard:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":170,syntax_error:175,"\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":70,dataset:[],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":71,guard:123,"\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":153,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":71,ayumu:81,conbind:185,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":109,rch:91,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[78,81],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":61,glib:126,unexpect:[7,81],brand:78,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":122,uninstal:7,grn_egn:[],bug:[],grn_obj_set:80,dump_record:[],binlib:153,"point\u578b\u306e\u5024":[35,171],tokenmecab:[],"\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":157,epel:[7,130],"shimada\u3055\u3093":156,colum:79,dure:[7,3],pid:[28,1,192,98,78],saer:[155,18],grn_too_small_limit:2,implement:[69,43,23,152,129,123,95,109,7,76,9,37,146,28,78,195,81,120],pip:20,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":114,probabl:155,"\u305f\u3060\u3057":[64,98,145,61],detail:[41,142,91,3,46,7,9,10,150,192,167,109,152,86,13,14,116,96,66,22,47,170,126,75,140,78,177,81,181,130,185,131,133,154,191,36,37,89,120],virtual:126,comment_nam:186,grn_expr_create_for_queri:70,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":170,is_a_directori:175,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[64,121],grn_obj_flag:[41,183,114,39,122],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":141,sergei:81,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":70,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":71,"\u6539\u826f":[],"\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":153,tweet:[115,26],umask:81,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,concret:[45,79,131],"\u554f\u984c\u306fgroonga":170,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":64,everi:131,risk:81,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":98,"24byte":175,grn_encoding_to_str:124,not_a_directori:175,x86_64:[130,153],properti:[150,14],naiv:131,not_enough_spac:175,direct:[],"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":122,aim:126,hide:126,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":74,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":80,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":70,"82pre":43,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":180,studio:[7,78,102,126],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":156,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":[],functin:152,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":114,precis:[136,3,153,133,46,14,7,85,179],"\u306e3\u30d5\u30e9\u30b0\u306f":64,"\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":148,orilldown:131,portabl:[28,9,126],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":70,"\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":80,describ:[41,0,91,3,12,93,134,96,98,47,49,102,51,104,146,143,192,128,167,109,110,152,86,14,59,123,60,18,118,62,20,181,162,66,164,69,50,23,166,24,63,53,189,186,175,78,79,178,179,81,82,130,193,185,137,188,31,32,136,154,138,140,89,120,85,90],noarch:[167,130],"groonga\u306e\u7d44\u8fbc\u578b\u304b":74,namebuf:[80,122],autogen:[7,153,120],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":46,"msg\u306fcom\u306b\u3088\u3063\u3066":135,chracter:[193,33,66],"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":70,"grn_op_but\u306f":70,grn_obj_with_sect:122,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":145,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":171,overrid:192,enourm:49,dump_schema:[],end:[182,76,152,185,181,85,4],eng:[155,179],vagrant:153,hiragana:[179,85,185,152],env:178,rroonga:[12,186,163,126,48,17,116,101,160,149,78,79,81,82],grn_content_non:107,tablenam:11,grn_set_default_command_vers:117,befor:[22,109,3,5,86,13,113,7,172,18,9,181,10,192,178,179,118],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:133,exclud:[59,143,166,97,126,7,159,63,23,81],environ:[130,113,126,102,9,138,78,28,192,178,81,82],enter:[3,126,175],composit:193,over:[133,163,126,7,103,168,78,81],"\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":153,becaus:[142,3,4,12,129,95,49,7,101,9,10,55,92,167,109,152,13,115,116,60,18,144,181,66,22,45,165,23,123,74,172,175,97,78,79,178,179,81,82,185,186,132,133,33,136,140,193,85,195],london:76,gqtp:[],"\u304bwgs84geopoint":[35,171],digest:55,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":156,oneir:[28,126],"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":70,choic:[],grn_pat_at:156,each:[],searc:179,"0\u30ea\u30ea\u30fc\u30b9":[],"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"groonga\u306e\u30ab\u30e9\u30e0\u306f":46,goo:[185,152],msgpack:[4,55,175],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[115,133,33,17,128,81],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":112,got:[126,81],"\u69cb\u9020\u4f53\u306e\u914d\u5217":54,"offset\u306f":114,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":127,filter:[],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":153,"16gib":140,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":170,score_column:122,onto:140,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":64,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":153,edit_dist:[],restrict:[7,103,55,126],alreadi:[41,115,91,3,59,19,140,79,65,81],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":80,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":125,"\u3092\u4f7f\u7528\u3057\u307e\u3059":153,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":80,top:[111,131],mercuri:153,too:[109,152,86,13,126,78,79],tom:116,"\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":153,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"path\u3092":156,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":127,tood:41,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":159,tool:[],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":106,user_ag:97,wareohji:7,grn_obj_set_valu:[64,80],ga54c5f8:170,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":28,"\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":153,expr:39,obata:[28,156,126,78],"\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":70,blog_bodi:71,rab:[75,3,131],indexblog2:79,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":106,ram:170,raw:[126,82],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":71,with_sect:[74,188,79,96,81],unresolv:28,"\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":145,hanako:173,bad_file_descriptor:175,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":153,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[114,122],fuzzi:66,though:[23,133,126,7,79,179,81],"\u3044\u307e\u3059":125,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":170,grn_db_recov:[84,81],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":114,"16bit":46,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":70,"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":153,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":170,mininum:142,flow:[],abbrev:76,radix:152,"0\u30d9\u30fc\u30b9\u3067":[64,114],abl:[123,29,33,12],random:75,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[130,24,156,7,28,192],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u306f":[64,46,114],absolut:[22,177,10],top_left_point:111,configur:[],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":153,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":80,"\u542b\u3081\u308b\u3082\u306e":153,item_queri:[155,18,179,190,49],label1:[109,81],label2:109,watch:153,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":98,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":74,normalized_text:134,reconstruct:81,"\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":83,method:[3,126,9,78,37,85,179],twice:[109,185],hendro:126,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":11,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":156,"\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":182,"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":109,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":153,nul:[41,28,85],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":70,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,grn_plugin_error:41,databas:[],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":170,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":80,algolithm:160,approach:76,exec_format_error:175,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":98,weak:[133,33],grn_invalid_argu:[64,114,2,80],fault:7,"4gib":[95,175],facet:109,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,content_index:12,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":153,trust:153,id_column:122,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":98,evalud:146,been:[60,153],"\u3072\u308d\u3042\u304d":144,accumul:109,geo_distance2:[28,76],geo_distance3:[28,76],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":153,quickli:115,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":161,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[28,19],xxx:[98,126,81,152],"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":122,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":170,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":145,"grn_op_or\u306f":70,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[114,122],message_index:123,suggest:[],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":156,complex:[7,109,181,126,152],unix_time_when_command_is_start:136,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,niku:81,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":54,complet:[],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":114,sen_index_delimit:43,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":98,quotient:152,"\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":153,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,geosit:45,"\u5024":98,no_such_process:175,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":135,els:[78,81],grn_column_name_valu:122,ceekz:126,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":64,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":70,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":122,"mooz\u3055\u3093":28,unstabl:113,poedit:120,el5:130,escaps:[163,33,48],"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":35,log_reopen:[],grn_obj_is_t:78,grn_plugin_mutex_unlock:41,"\u7d44\u8fbc\u95a2\u6570\u306f":[184,35,112,171,68],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":156,"\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":153,line_cont:136,"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":153,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":70,surround:[7,163,33,48,152],dinner:133,ppa:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":42,"\u578b":183,encod:[],two:[0,93,142,91,3,96,49,101,9,150,55,167,109,76,14,16,116,18,65,66,45,50,126,74,186,75,78,79,81,181,130,185,131,39,134,33,136,154,188,193,85,195],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":28,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,version4:11,git:[105,153,120],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":153,"256gib":67,head:[182,109,9,81,175],medium:[167,130,188,14,154,102,138],logical_table_remov:[],removep:80,drilldown_sortbi:[],"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,deafult:28,grn_expr_estimate_s:78,autoconf:28,grn_expr_syntax_escape_queri:39,openbsd:78,trie:[],decrypt:153,bad_address:175,check:[],ongaeshi:[7,78,126],"clearlock\u306f":108,successfulli:[41,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":127,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":70,"\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":170,when:[3,144,129,98,7,101,9,10,78,109,76,86,155,59,116,20,181,66,22,45,122,126,74,186,110,175,28,179,81,185,84,132,133,136,188,140,89,193,85],groonga_dist:7,tid:121,saerch:[155,18],rid:87,node:[7,78,130,153,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":157,grn_op_and_not:57,consid:[45,142,23,92,55,79,81,66],sql:[109,23,131,12],faster:[129,126,28,192,85,81],top_left:[28,35],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":61,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":145,backward:[7,78,128,81,55],grn_obj_table_dat_kei:28,"6\u30ea\u30ea\u30fc\u30b9":[],grn_db_float:78,focus:3,llt:91,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":171,row:[133,33],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":74,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":153,readabl:[113,81],"\u554f\u984c\u3042\u308a":28,jumand:167,sourc:[],"\u306b\u8a2d\u5b9a\u3059\u308b":153,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":170,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":121,"6elz":81,"\u3092\u8fd4\u3057\u307e\u3059":[64,94,114,80],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":61,level:[41,131,6,98,126,7,8,9,150,65,81,175],brother:185,fbnteqr:78,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":122,slower:[123,76,131,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":127,port:[142,43,4,132,170,175,98,126,81,103,37,90,55,9],repli:[188,79],"64bit":46,arg1_valu:181,"sh\u306e\u307f\u306a\u3089\u305a":180,grn_expr_append_const:[70,39],grn_table_get:[114,113],"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":83,connection_refus:175,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":153,"\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":80,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":153,normalizeauto:163,"\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":109,"1st":97,grn_table_cursor_clos:64,"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":112,daiki:[7,28,156,148],"\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":11,grn_obj_clear_lock:[28,80],file_exist:175,vivid:[78,14],memori:[],"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":153,todai:133,"\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":170,criteria:3,capit:3,target_charact:39,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":156,proxy_cache_path:9,entries_key_index:[140,109,185,152],lc_messag:120,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":171,purpos:[23,86,126,116,103,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":156,stream:81,backslash:[39,126,185],critic:[7,41,192,98,150],satoh:28,alwai:[109,175,185,133,96,136,155,9,140,78,179,81,152],grn_table_update_by_id:114,grn_plugin_isspac:41,"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":145,clone:[],"4th":109,key_with_si:[144,152,185,66],"\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":156,ueno:[7,28],predic:78,inform:[],combin:[],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":71,midnight:152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":170,mainli:[188,81],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":94,platform:[],meridian:76,cutter:[180,153],"\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":35,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":153,"\u6b21\u306b":70,"\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":[157,98],"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":80,term:[],name:[],"\u65e5\u3005":125,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":64,"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":11,"\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":70,no_memory_avail:175,request_id:[36,104],osanai:81,grn_itoh:28,grn_bool:80,grn_table_delete_by_id:[78,114],end_tagn:163,"base_version\u306ftar":153,"groonga_clone_dir\u306b\u3066autogen":153,profil:188,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":74,compress_zlib:74,"65535byte":78,partit:23,migrat:[109,185,81,152],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":70,ruby19:7,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":16,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":98,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":170,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":153,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":109,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":80,place:[188,192,26],sho:[126,81],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":106,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":71,redhat:[28,192],arrai:[],"64kib":78,string_siz:39,given:[7,45,126,116],"\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":153,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":28,domain_error:175,circl:[133,93],white:[85,3,185],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":121,grn_table_add:114,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":180,copi:[7,41,60],specifi:[],"\u30d1\u30a4\u30d7":74,"\u521d\u671f\u5316\u6e08\u307f\u306e":84,enclos:[59,3],pragma:109,serv:[13,153,81],wide:[28,192,3,181,133],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":80,"\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":156,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":85,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":61,"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":153,posix:[78,152],posit:[41,109,2,3,111,86,96,47,91,85,81],grn_column_index:122,seri:3,kazuhiko:[7,81],ann:153,ani:[91,12,46,98,47,48,9,146,192,55,109,155,59,116,69,163,186,78,178,130,185,133,134,33,85],grn_unsupported_command_vers:2,grn_obj_set_mask:80,techniqu:[123,12],operation_timeout:175,moreov:75,"\u691c\u7d22\u7d50\u679cn":109,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:152,"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":28,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":180,geoindex:[],time_column:170,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":70,"com\u306f1\u30b9\u30ec\u30c3\u30c9":135,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":98,grn_table_cursor_set_valu:64,"textile\u30d1\u30fc\u30b5\u30fc":153,permiss:[192,81],sitecountri:[103,131],explicitli:[],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[71,145],state:[7,76,175,173,129],analyz:[7,28,85,9,133],grn_obj_column_vector:122,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u3092\u6307\u5b9a\u3057":[64,38,108],"45ea3034":150,ssh:153,takatsugu:81,"\u8a73\u7d30\u306f":[71,180],pipermail:81,reveal:133,"\u542b\u3081\u306a\u3044\u3082\u306e":153,tokenfilterstopword:[],bison:153,grn_geo_select_in_rectangl:[28,111],"shibuya\u3055\u3093\u304c\u5831\u544a":156,"\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":153,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":80,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":114,"ongaeshi\u3055\u3093":156,"\u8b66\u544a\u3092\u9664\u53bb":156,detect:[7,28,91,9,192],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":125,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":153,grn_query_expander_tsv_synonyms_fil:178,grn_db_register_by_nam:148,"59\u74b0\u5883\u306b\u304a\u3044\u3066":28,come:[93,188],"\u63a5\u7d9a\u3059\u308bgroonga":170,region:[93,75],quiet:175,grn_default_logger_set_rotate_threshold_s:78,reference_vector_column:126,"\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":71,"\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":71,"\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":61,color:193,whombx:126,period:[],pole:76,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":80,"ueno\u3055\u3093":[156,148],lexicon2:79,item_exampl:179,log_put:[],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":153,frequency_threshold:[28,155,18,179,49],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":156,"s3ki\u3055\u3093\u304c\u5831\u544a":156,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,122],not_socket:175,grn_command_version_max:117,"case":[],"\u3042\u308a\u307e\u305b\u3093":[83,106,194,141,161],cast:[],grn_db_open:84,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":70,favorited_bi:188,grn_expr_alloc:39,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":70,"define_selector\u306f":157,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":114,query_s:39,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":153,saerc:[155,18],"4\u884c\u76ee":170,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":122,author:9,alphabet:[109,91,18,85,81,66],users_index:188,grn_get_default_match_escalation_threshold:25,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":70,grn_cursor_rk:64,"\u5f37":85,expresss:160,messagepack:[],status:[2,175],nest:[],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":98,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":109,"_nsubrec":[45,109,122,131,188,61,81],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":28,immedi:[133,9,104,78],"\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":64,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,114,171],sed:[7,28,78],overcommit_memori:[],without:[],model:[98,175,81],"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":156,"4kib":78,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":83,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":64,rose:13,except:[167,93,69,91,185,86,95,109,33,7,101,9,140,146,28,181,85,81,66],blog:[],vulner:81,hino:126,hyphen:[3,66],grn_obj_nam:80,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":98,grn_table_cursor_open:[64,156],realtim:[155,49],with_typ:134,madrid:76,grn_rc:[41,42,80,84,5,94,87,124,114,16,17,25,117,111,19,64,57,39,54,122],unrecover:84,easili:81,grn_cache_current_set:17,freed:[17,81],nosuchfileordirectori:78,garbag:[28,126,81,127],inspect:[78,126,81],n_tabl:16,tokenbigramsplitsymbolalpha:[],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,122],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":84,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":156,stand:129,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":153,tokentrigram:[],max_siz:64,libmecab:[154,14,153],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":127,rescord:160,strict:[78,81],interfac:[7,132,3,4],chracterist:95,regard:[37,126,185],jun:[78,81],grn_obj_key_var_s:183,untag:110,longer:[43,16],notat:[7,126,152],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":80,"\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":11,grn_expr_creat:39,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":153,"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":156,strongli:[167,130,14,154,102,138],"a\u3092\u6307\u5b9a\u3057\u3066tabl":114,user_column:170,incorrect:81,grn_db_text:39,grn_index_cursor_next:[121,126],gettext:[120,20],orient:[13,133,33],rdbm:98,oneself:81,symbol:85,remove_tokenized_delimit:134,"\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":170,allow_upd:[109,185],comments_loc:188,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":125,directori:[41,132,126,7,9,78,28,192,178,65,81,120],potenti:126,"\u30c7\u30fc\u30e2\u30f3":98,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,all:[91,3,92,95,46,69,49,7,9,10,146,150,78,192,55,115,109,111,152,86,193,16,59,60,159,160,96,66,22,165,122,47,175,97,28,128,179,81,181,188,185,133,137,36,140,120,85,118],grn_table_column:114,dist:153,"ctx_new\u3068\u3044\u3046queue\u306b":135,scalar:[],follow:[],disk:[78,79,181,66],ptr:[41,156],item_:155,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":156,init:[7,192,54,81,126],program:[152,132,96,98,126,7,191,9,65],"\u95be\u5024\u3092\u8d8a\u3048\u308b":71,neglig:81,liter:[],replic:12,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":71,libgcc_s_sjlj:81,rand_max:68,systemctl:142,failur:[7,78,19,81,153],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":61,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":64,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":98,longtext:[46,111],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":153,"\u304a\u3088\u3073":153,"help\u3067\u51fa\u529b\u3055\u308c\u308b":28,yappo:[43,126,81],name_s:[41,122,183,16,114,80,39,54],tex:91,rate:[126,97],design:[7,13,109,129],sug:172,what:[],sub:[133,153],sum:[109,81,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":122,libstemm:81,themselv:[178,120],noraml:91,bottom_right_point:111,behaviour:[126,159],shouldn:81,solari:[],n_var:41,grn_ctx_init:[28,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":194,memcach:[],matsuu:156,grn_bad_address:2,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],grn_ctx_get_output_typ:16,gtihub:28,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":125,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":71,tokenunigram:[],"\u30ea\u30ea\u30fc\u30b9\u65e5":153,deprec:[109,11,98,126,7,76,10,28,108,81,66],ocelot:[28,126],suddenli:126,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[28,156],"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":153,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":153,"\u4ee5\u964d\u3092\u7121\u8996":156,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":156,"\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":46,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":157,grn_syntax_error:2,src_key_siz:114,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":57,known:[23,152,12,133,33,126,103,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":94,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":46,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":98,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":108,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":170,mecab_strerror:81,omit:[22,109,91,3,4,95,136,137,76,10,28,177,179],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":157,cours:131,newlin:[28,113,78],divid:[13,133,152,123],rather:[109,12,86,123,96,129,115,78,29,85,181],rep_loc:170,divis:[],cmp0014:81,resourc:[115,81,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[38,108],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":122,overcommit:140,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":122,"\u6307\u5b9a\u3059\u308b":84,resours:17,"request\u3092\u9001\u308a\u307e\u3059":153,"short":[9,86],geo_dist:[],postfix:[143,23,166,63],caus:[185,13,126,7,78,28,152,81,66],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,mailarch:153,yahppo:126,grn_table_trunc:[28,114],logal:82,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":114,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":156,style:[],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,soccer:45,"return":[],normalzi:163,grn_table_sort_asc:114,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":70,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":122,refresh:45,innodb:133,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":141,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":147,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":153,friendship:45,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":153,grn_text_vprintf:81,weight:[],needless:[7,78,113,126],yoshida:126,expect:[13,85,81,181],errror:181,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":114,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":80,socket_is_not_connect:175,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[114,80],footnot:[76,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":171,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":28,advanc:[],differ:[0,109,76,4,12,132,13,185,7,116,75,81,181,78,79,152,85,55,66],content_type_len:7,thread:[41,84,132,133,98,126,16,137,55,150,81,122],"\u306exml\u51fa\u529b\u5bfe\u5fdc":156,"\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":70,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":114,grn_selector_func:81,"apt\u306e\u5834\u5408":153,notifi:104,feel:81,groonga_database_auto_cr:[],blank:[78,193,85],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":170,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":145,gpl:43,"\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":156,script:[],goronga:102,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":153,gpg:153,exclude_t:126,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":180,"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":145,"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":145,statement:152,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":153,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"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":153,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[80,122],kind:[3,92,131,133,46,75],similar_search:[7,155],remov:[165,84,24,126,7,13,173,9,10,28,78,80,113,81,47],xxx_201506:78,rep_http:170,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":170,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":180,grn_post:[111,121],ruby_ev:[],expir:[78,9,118],"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":125,"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":170,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":46,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":156,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":98,"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":184,operation_would_block:175,park:188,function_not_impl:175,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":61,reach:140,keyword_s:39,"\u30e1\u30fc\u30c8\u30eb":171,grn_obj_incr:80,latitude_in_degre:152,"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":114,grn_column_name_kei:122,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":171,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[147,6,73,8,157,194,108],penalti:126,firewood:[7,126],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":16,underflow:13,grn_plugin_fre:41,hit:[109,160,126,144],pair_queri:[155,18,179,190,49],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":114,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":98,longest:[28,114,152],"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":71,grn_column_name_nsubrec:122,grn_obj_persist:[114,122],"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":145,grn_success:[41,109,2,84,5,16,17,19,150,39,122],armhf:81,"\u6570\u5024":145,"\u30b3\u30df\u30c3\u30c8":153,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],art:[188,152],dump:[],highight_ful:163,ff01:78,arc:91,tobbi:116,grn_obj_with_weight:122,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":122,jemalloc:81,grn_table_differ:114,"\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":156,mismatch:81,"js\u306a\u3069":153,latin:98,"\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":71,succeed:[2,3,74,137,173,128,192],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,solv:[13,123,12],solr:152,socket_not_initi:175,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":182,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":71,context:[33,16,17,186,9,28,80,39],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":122,grn_table_sort_flag:114,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":98,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:126,"\u5f93\u3063\u3066":109,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\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":153,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":171,conifugr:82,grn_file_exist:2,beforehand:167,close_tag1:163,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":170,packag:[],"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":170,nakai:126,abov:[3,92,49,7,101,102,9,104,192,109,110,116,18,120,23,186,75,97,78,79,178,179,82,193,131,132,188,66,85],kana:[155,18,179,190,49],input_file_nam:136,xvzf:[167,130,24,14,154,192,90],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,"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":170,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":153,table_buff:16,score_valu:78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":170,minim:[9,97],grn_obj_column:80,"\u5065\u4f5c":45,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":156,higher:[155,109],"\u975e\u4e92\u63db":28,x86:[28,102,78],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":127,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":170,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":145,lower:[109,91,3,66],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":170,searchabl:[115,78],"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":114,propos:[172,109],table_:[95,66],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":68,"3\u884c\u76ee":170,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":70,teruya:78,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":80,grn_plugin_get_system_plugins_dir:28,table2:114,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":70,table1:114,docutil:153,retry_max:175,collect:[136,133,188],"\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":153,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":70,"\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":11,global:[],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":11,invalid_format:175,"log\u3067\u3059":98,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[42,84,94,80,54,119,122],blog_titl:3,retri:19,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":153,leftmost:152,form_1:3,form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":61,squeez:[126,153],maximium:109,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,plai:[133,92],"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:126,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":170,grn_cache_current_get:17,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":194,"\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":180,shimoda:156,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":153,question:[78,79],live:[188,66],"long":[104,87,126,62,25,78,81,66],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":61,arithmet:[],"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":170,grn_proc_get_info:54,wno:28,"436218z":152,"\u554f\u984c\u3092\u4fee\u6b63":156,aramaki:28,piro:81,consist:[109,3,185,49,175,78,85,81],"benchmark\u306f":170,caller:54,"\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":109,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":98,test_text_otoj:180,highlight:[163,48],radious_or_point:171,vojtovich:81,"\u3059\u308b\u3068groonga":153,horikoshi:28,unauthent:[7,154],grn_expr_append_const_int:39,"\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":145,grn_socket_not_initi:2,oniguruma:78,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":156,weight3:86,weight2:[7,109,86],weight1:[7,109,86],comments2:79,grn:[9,159],gro:[132,33],"\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":145,nice:115,"\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":170,bookmark_titl:159,meaning:78,grn_expr_add_var:39,"\u540c\u6642\u306b":135,"\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":153,konishi:126,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":83,n_kei:114,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":148,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":153,lear:49,escape_charact:39,"\u7e70\u308a\u8fd4\u3057\u6570":170,mainstream:133,w64:153,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":70,"grn_expr\u306f":70,relev:[133,3],ranguba:[81,86],"\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":153,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":153,prepar:[],pleas:[0,142,3,84,12,123,26,78,29,192,89,81,120],smaller:[76,86,133,115,150,66],memset:78,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":153,compat:[167,130,14,134,55,154,9,78,37,128,193,81],compar:[109,185,133,33,7,81],grn_plugin_mutex:41,jekyl:153,grn_info:[],"314e":152,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":156,usag:[],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":46,larger:[109,86,95,98,33,49,175,140,78,65,81],larget:104,"_name":66,mitsuo:126,typic:[78,109],appli:[],approxim:[7,28,76],motoi:126,apt:[153,14,7,154,20,82],api:[],from:[],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":71,usa:131,few:[109,55,195],usr:[22,177,98,9,10,192,180,90],proonga:129,sort:[],grn_db_creat:84,"\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":157,tokenbigramignoreblanksplitsymbolalpha:[],memos_cont:165,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":156,"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":125,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":61,annot:126,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\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":180,endian:81,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":114,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":80,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":46,grn_column:[],tar:[167,130,153,24,14,154,192,90],tag:[],calc_target:109,"\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":153,grn_set_lock_timeout:19,pure:85,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":94,six:[150,3,63],"100x100":171,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":106,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":114,instead:[93,142,92,95,98,48,7,102,9,10,78,192,108,167,109,76,152,16,160,181,66,163,126,175,28,81,82,185,33,138,193],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":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":153,"load\u30b3\u30de\u30f3\u30c9":1,attent:[109,144],"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":70,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":156,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":182,light:[60,129],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":106,"1\u884c\u76ee":170,freebsd:[],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":180,"\u4eac\u90fd":[71,145,85],location_in_input:136,ouput:126,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":170,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"log_level\u306f":6,condtion:185,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":98,"homebrew\u3078pul":153,bye:[47,152,165,109,185],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":98,crash:[126,7,137,60,78,28,81],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":11,"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":153,keys_zon:9,"\u884c":180,devel:[167,130],shinjyuku:75,successor:152,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":180,edit:[],grn_socket_is_already_connect:2,nested_reference_column:109,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":153,our:[26,120],grn_obj_column_index:[121,122],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":170,"gz\u306eversion\u304a\u3088\u3073vers":153,out:[167,130,186,14,154,102,138,105,79,81],longitude_in_degre:152,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":156,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":153,dcb314:81,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":135,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":71,grn_ctx_send:[17,107,16],"\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":153,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":71,york:[188,76],dictionari:[167,156,126,7,78,193,85,81],column3:12,lte:91,"\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":153,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":80,tokenizer_list:[],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":156,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":183,"request\u3092\u9001\u308a\u307e\u3057\u305f":153,prioriti:[133,109,179],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":54,grn_obj_get:80,unknown:[124,113],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":61,"akio\u3055\u3093":156,grn_dat_repair:113,shell:[78,192,98,185,181],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":38,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":74,"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":64,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":170,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":156,"\u3092\u4f5c\u6210\u3057\u307e\u3059":74,emac:120,no_such_file_or_directori:175,collaps:7,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":125,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":46,"4097byte":95,"\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":98,"shimada\u3055\u3093\u304c\u5831\u544a":156,grn_ii_estimate_size_for_queri:78,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":80,which:[41,142,91,3,92,5,98,47,7,146,101,103,149,143,144,167,109,76,152,13,116,63,65,45,69,23,166,126,186,75,173,175,78,79,179,81,185,131,132,133,134,191,188,110],grn_obj_delete_by_id:[28,80],"\u30db\u30b9\u30c8\u540d\u3068":170,who:[],"100cent":85,default_token:[],"class":[],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":153,determin:[109,3,160],"_id":[3,92,49,101,103,128,144,109,152,86,155,115,60,18,61,159,45,165,122,71,75,173,97,78,79,80,179,81,181,185,131,136,193],someth:81,grn_mecab_chunked_tokenize_en:78,"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":64,word1:[7,109,185,152],word2:[7,109,185,152],memo_index:81,your_github_account:120,practic:[13,133,81],grn_obj_with_posit:122,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":74,local:[152,153,133,98,9,20,192,120],"150x100":35,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":145,grn_ctx_use:16,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":145,subrecord:126,grn_cursor_prefix:64,candidate2:155,candidate1:155,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":170,view:[],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":153,knowledg:133,"1073741824\u306e\u6574\u6570\u3067":61,"\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":98,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":64,index_tag:45,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":170,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":157,dll:[7,28,41,81],"v1\u306e\u5024\u306e\u4e2d\u306b":70,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":125,yaman:[126,81],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":171,job:170,homebrew:[],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":125,addit:[],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":182,april:153,"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":153,grn_logger_info:7,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":156,respect:[7,13,75,188],rpm:[167,130,153,126,7,78,28,113,81],hiroaki:78,target_nam:[],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":28,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":122,mike:173,spammer:[123,12],hmm:188,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[35,171],roonga:[172,185,152],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":71,"\u30c6\u30fc\u30d6\u30ebentry\u306b":74,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":171,"21th":126,cursor:[28,111],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":61,"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":71,layer:78,customiz:33,"\u3072\u308d\u3086\u304d":144,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":153,avg:[182,109,81],"\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":156,grn_expr_append_op:[70,39],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":170,"\u6ce8\u610f":114,"\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":156,difficult:133,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":71,grn_column_name_id:122,"\u7d9a\u3044\u3066":71,"0x10":175,"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":171,english:[0,109,126,26,20,28,85,179,81,120],grn_content_xml:107,uzulla:28,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":83,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":153,do_http:170,users_nam:116,obtain:41,"\u3082\u3057groonga":170,euc_jp:192,"key\u306b\u306f":114,amd64:153,book:152,host2:181,host1:181,"\u30ab\u30e9\u30e0\u578b1":109,"\u307e\u305f\u306f":170,"table\u306fcolumn\u3068\u306f\u5225\u306b":114,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":80,know:[45,109,131,188,62,78,85],press:120,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u30ab\u30e9\u30e0\u578bn":109,earch:91,incres:81,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":28,exceed:168,no_child_process:175,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[28,126,81,20],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":71,column_inform:96,lead:[109,3,33],grn_obj_get_nhook:94,leak:[74,156,126,7,78,28,81],"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":98,grn_address_is_in_us:2,time_stamp:150,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":122,investig:[168,126,131],acronym:[175,129],tanab:126,rare:[78,126],"\u305d\u308c\u305e\u308c":180,kanako:126,disabl:[109,156,185,132,150,20,98,126,7,9,78,28,192,113,179,81],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],own:[23,152,13,133,7,39],grn_operation_timeout:2,"\u6570\u5b57":170,grn_ii:[],"\u4f8b":[],grn_id:[41,42,121,122,87,16,114,64,80,39],yuya:[78,81],automat:[22,45,3,185,95,152,9,62,10,144,78,177,120],automak:156,grn_expr_append_const_str:39,grn_default_query_logger_get_path:7,"145508000x":76,transfer:[],grn_command_version_min:117,appl:193,replac:[152,190,78,181,65,81,92],"var":[41,142,70,96,98,9,62,78,192,54],"\u30ad\u30fc\u304c":98,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":153,"\u4ee5\u5916\u306e\u5834\u5408\u306f":109,"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":70,"\u73fe\u5728":194,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":98,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":74,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":153,palallel:153,made:[7,28,3,78],tab:[78,107,178,4,175],grn_logical_range_filter_en:78,whether:[2,143,7,101,9,109,76,13,155,116,159,160,23,62,166,168,63,186,97,128,80,81,185,84],troubl:120,record:[],below:[59,105,60,185],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":80,"\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":[83,147,6,73,74,127,8,157,159,161,194,106,38,141,108],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":117,ff76:193,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":42,"8bit":46,"\u3067\u306f\u6607\u9806":114,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":153,makecach:[7,130],"\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":153,other:[],bool:[165,185,13,46,126,47,144],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":98,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":156,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":80,"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":109,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":11,debian:[],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":94,emerg:[6,150,8,98,9],allow_leading_not:109},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/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","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","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","reference/commands/normalizer_list","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/api/grn_expr","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/io_flush","reference/suggest","server/memcached","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/commands/logical_table_remove","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/column","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","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/tokenizers","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/scorers/scorer_tf_idf","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","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","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","reference/commands/logical_select","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/api/grn_type","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","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.20.1. Overview","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013-01-29","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. Correction","7.20.2. Global configurations","12.2.1. Introduction","8. Specification","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","Release 1.2.9 - 2011-12-29","&lt;no title&gt;","7.10. Query expanders","7.20. API","7.3. Command","7.14.13. snippet_html","5. Server","7.14.5. geo_in_rectangle","7.3.3. Request ID","7.1.6. Groonga HTTP server","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.20.11. grn_expr","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <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. Data types","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">io_flush</span></tt>","7.16. Suggest","5.4. Memcached binary protocol","7.1. Executables","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. Comparison","Groonga documentation","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.35. <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.6. Column","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.14.3. geo_distance","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","Release 4.1.1 - 2015-01-29","11.1. Travis CI","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.8. Tokenizers","7.6.2. Vector column","7.20.14. <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.44. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.15.1. Geolocation Search","7.20.13. <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.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.14.9. in_values","2.1. Windows","4.2. Remote access","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <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.36. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","Release 1.3.0 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. Indexing","7.14.11. query","7.20.6. <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.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <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.46. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. Drilldown","7.1.8. groonga-suggest-httpd","1. Characteristics of Groonga","7.3.26. <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.18. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. Scalar column","7.12.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.39. <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.12. grn_expr","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">logical_select</span></tt>","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.45. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.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.2.2. groonga","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. Regular expression","7.1.2. grnslap","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.14.10. now","7.12.1. Query syntax","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. Let's create micro-blog","7.15. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[98,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[80,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[84,1,1,"c.grn_db_create"],grn_plugin_charlen:[41,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[94,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[80,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],"-P":[182,0,1,"cmdoption-P"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[39,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[170,0,1,"cmdoption--log-output-dir"],"-d":[65,0,1,"cmdoption-d"],"-a":[98,0,1,"cmdoption-a"],"-c":[98,0,1,"cmdoption-c"],grn_obj_set_info:[42,1,1,"c.grn_obj_set_info"],"-m":[182,0,1,"cmdoption-m"],"-l":[65,0,1,"cmdoption-l"],"--disable-max-fd-check":[132,0,1,"cmdoption--disable-max-fd-check"],"-i":[170,0,1,"cmdoption-i"],"-h":[98,0,1,"cmdoption-h"],grn_db:[84,2,1,"c.grn_db"],"--log-rotate-threshold-size":[98,0,1,"cmdoption--log-rotate-threshold-size"],"-t":[132,0,1,"cmdoption-t"],grn_command_version:[117,2,1,"c.grn_command_version"],grn_obj_set_element_info:[42,1,1,"c.grn_obj_set_element_info"],"-p":[132,0,1,"cmdoption-p"],"-s":[65,0,1,"cmdoption-s"],"-r":[65,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[41,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[98,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[117,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[98,0,1,"cmdoption--config-path"],grn_table_size:[114,1,1,"c.grn_table_size"],"--query-log-path":[98,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[80,1,1,"c.grn_obj_defrag"],db:[170,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[124,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[80,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[87,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[80,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[111,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[114,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[122,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[80,1,1,"c.grn_obj_unlink"],grn_obj_id:[80,1,1,"c.grn_obj_id"],grn_obj_set_value:[80,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[41,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[124,2,1,"c.grn_encoding"],grn_proc_create:[54,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[41,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[122,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--ftp":[170,0,1,"cmdoption--ftp"],"--dir":[170,0,1,"cmdoption--dir"],"--address":[98,0,1,"cmdoption--address"],grn_table_group_result:[114,2,1,"c.grn_table_group_result"],grn_expr_close:[39,1,1,"c.grn_expr_close"],grn_obj_path:[80,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[84,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[111,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[80,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[114,1,1,"c.grn_table_lcp_search"],grn_table_create:[114,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],grn_encoding_to_string:[124,1,1,"c.grn_encoding_to_string"],"--daemon":[65,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[80,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[114,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[98,0,1,"cmdoption--pid-path"],"--encoding":[98,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[114,1,1,"c.grn_table_delete_by_id"],grn_content_type:[107,2,1,"c.grn_content_type"],grn_plugin_mutex:[41,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[39,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[87,2,1,"c.grn_ii_buffer"],"--host":[170,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[54,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[119,1,1,"c.grn_obj_user_data"],grn_obj_lock:[80,1,1,"c.grn_obj_lock"],grn_obj_name:[80,1,1,"c.grn_obj_name"],"--log-path":[65,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[122,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[98,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[80,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[39,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[41,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[80,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[39,1,1,"c.grn_expr_alloc"],grn_expr_compile:[39,1,1,"c.grn_expr_compile"],grn_user_data:[119,2,1,"c.grn_user_data"],grn_obj_get_range:[80,1,1,"c.grn_obj_get_range"],grn_table_get:[114,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[111,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[98,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[87,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[80,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[114,2,1,"c.grn_table_sort_key"],grn_obj_rename:[80,1,1,"c.grn_obj_rename"],grn_table_group_flags:[114,2,1,"c.grn_table_group_flags"],grn_obj_check:[80,1,1,"c.grn_obj_check"],grn_table_at:[114,1,1,"c.grn_table_at"],grn_column_name:[122,1,1,"c.grn_column_name"],grn_table_difference:[114,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[132,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[41,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[80,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[122,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[114,1,1,"c.grn_table_truncate"],grn_obj_get_value:[80,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[98,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[94,1,1,"c.grn_obj_delete_hook"],"-n":[98,0,1,"cmdoption-n"],"--port":[132,0,1,"cmdoption--port"],grn_ii:[87,2,1,"c.grn_ii"],"--log-base-path":[65,0,1,"cmdoption--log-base-path"],grn_obj_is_locked:[80,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[39,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[41,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[65,0,1,"cmdoption--log-level"],GRN_OBJ_SET_MASK:[80,3,1,"c.GRN_OBJ_SET_MASK"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[41,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[117,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[41,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[42,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[57,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[39,1,1,"c.grn_expr_append_const_str"],grn_table_rename:[114,1,1,"c.grn_table_rename"],script:[170,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[41,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[117,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[39,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[41,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[94,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[41,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[121,1,1,"c.grn_index_cursor_open"],grn_proc_func:[54,2,1,"c.grn_proc_func"],grn_db_create_optarg:[84,2,1,"c.grn_db_create_optarg"],grn_column_table:[122,1,1,"c.grn_column_table"],grn_table_add:[114,1,1,"c.grn_table_add"],grn_obj_unlock:[80,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[54,2,1,"c.grn_proc_type"],grn_proc_get_info:[54,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[80,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],"--query-log-rotate-threshold-size":[98,0,1,"cmdoption--query-log-rotate-threshold-size"],GRN_COLUMN_NAME_KEY:[122,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[122,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[80,1,1,"c.grn_obj_get_values"],grn_column_rename:[122,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[80,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[42,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[170,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[41,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[84,1,1,"c.grn_db_open"],grn_column_index:[122,1,1,"c.grn_column_index"],"--n-threads":[132,0,1,"cmdoption--n-threads"],grn_ctx:[16,2,1,"c.grn_ctx"],"--help":[98,0,1,"cmdoption--help"],"--groonga":[170,0,1,"cmdoption--groonga"],grn_table_setoperation:[114,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[122,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[80,3,1,"c.GRN_OBJ_SET"],"--document-root":[98,0,1,"cmdoption--document-root"],grn_info_type:[42,2,1,"c.grn_info_type"],grn_column_truncate:[122,1,1,"c.grn_column_truncate"],grn_obj:[80,2,1,"c.grn_obj"],grn_obj_remove:[80,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[41,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[80,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[39,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[39,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_select_in_rectangle:[111,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[87,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[57,1,1,"c.grn_obj_search"],"--send-endpoint":[65,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[114,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[94,2,1,"c.grn_hook_entry"],grn_expr_append_op:[39,1,1,"c.grn_expr_append_op"],grn_geo_point:[111,2,1,"c.grn_geo_point"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[121,1,1,"c.grn_index_cursor_next"],grn_table_delete:[114,1,1,"c.grn_table_delete"],dest:[98,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[41,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[122,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[80,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[98,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_type_create:[183,1,1,"c.grn_type_create"],grn_obj_path_by_id:[80,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[41,1,1,"c.grn_plugin_command_create"],grn_db_recover:[84,1,1,"c.grn_db_recover"],grn_builtin_type:[183,2,1,"c.grn_builtin_type"],grn_table_get_key:[114,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[80,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[39,1,1,"c.grn_expr_create"],grn_get_default_command_version:[117,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[39,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[124,1,1,"c.grn_encoding_parse"],grn_column_create:[122,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[114,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[94,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[124,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[117,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[41,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_ii_buffer_open:[87,1,1,"c.grn_ii_buffer_open"],"--receive-endpoint":[65,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[122,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[114,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[41,1,1,"c.GRN_PLUGIN_FIN"],command:[98,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[41,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[41,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[84,1,1,"c.grn_db_touch"],grn_table_update:[114,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[84,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[84,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,156],code:2,senna:43,"\u6539\u826f":[28,1,156,148],"\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":153,queri:[109,92,133,116,9,150,30,185],global:19,localstatedir:192,"4\u30ea\u30ea\u30fc\u30b9":156,prefix:[70,152,144,192,179,55,185],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,follow:188,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,cache_limit:118,value_typ:66,depend:[192,20],grn_type:183,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":153,drilldown_offset:109,send:[103,120],column_cr:74,column_or_valu:97,table_list:106,downtim:55,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[170,40],query_str:116,"\u524d\u63d0\u6761\u4ef6":153,grn_command_vers:117,sourc:[167,130,14,154,102,192,90],string:[13,47,91,134,152],groonga:[56,142,43,153,190,132,133,135,98,99,9,176,37,89,65,170,120],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":153,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,drilldown_calc_target:109,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[182,170],greater_equ:70,brows:9,administr:[9,103],sub_filt:186,gnu:154,list:[0,2,26],scalar:151,vector:[13,86],drilldown_output_column:109,"\u30aa\u30d7\u30b7\u30e7\u30f3":[182,170],dump_index:159,direct:9,sign:152,range_filt:77,aggreg:133,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":145,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":145,index:[67,45,3,133,115,139,79,181,66],what:85,xor:152,learner:65,"files\u306e\u5b9f\u884c":153,delet:173,version:55,"new":[78,43,120],grn_info:42,full:[3,185,133,100,75,79],hash:188,gener:[120,20],learn:[132,65,172,18,49,179],lock_clear:137,bodi:136,let:188,solari:24,ubuntu:14,path:[69,192,55],target_valu:101,valu:[91,143,6,96,47,48,146,50,147,110,104,10,149,106,108,76,155,194,59,116,60,157,159,63,169,161,66,22,69,27,23,166,163,73,74,127,173,118,97,77,128,177,83,8,186,132,188,134,33,137,101,37,38,141],"\u95a2\u4fc2\u5f0f":70,table_hash_kei:95,search:[45,109,3,92,93,133,86,49,75,18,188,144,152,79,100,179,185],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":153,shift:152,blogroonga:153,memcach:52,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":153,chang:43,narrow:75,"\u9759\u7684\u89e3\u6790":180,"windows\u5411\u3051\u306e\u5834\u5408":153,match_column:[116,79,109],repositori:[105,120],appli:86,modul:9,phrase:185,"debian\u7cfb\u306e\u5834\u5408":153,api:[88,31],grn_db:84,request_cancel:104,instal:[178,192,102,138,20],total:109,define_selector:157,select:109,"\u6982\u8981":11,httpd:[132,142,9,99,65],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,from:[167,130,14,154,102,192,65,90],zip:102,commun:26,query_expand:[116,109],regist:10,upgrad:55,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":71,column_remov:73,call:152,"\u30c6\u30b9\u30c8\u65b9\u6cd5":180,key_typ:66,scope:186,query_expans:109,"\u30d6\u30ed\u30b0":153,sort:[75,3,131],token_filt:[91,66],relat:[79,109,9,65],benchmark:170,flag:[47,91,134,175,66],grn_content_typ:107,tokenbigramignoreblanksplitsymbolalpha:85,cach:[109,9],sphere:76,prepar:92,work:[120,18,179,49],tag:[45,188,66],can:46,clearlock:108,"\u7279\u6b8a\u547d\u4ee4":170,control:152,grn_column:122,geo_in_rectangl:35,process:[140,150],lock:133,topic:15,"\u4f7f\u3044\u65b9":170,liter:152,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":125,groonga_cache_limit:9,grndb:62,onlin:115,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":153,unsign:152,filter:[143,165,23,109,166],multipl:[79,152,131],secur:[103,152],"\u540d\u524d":[182,68,184,112,170,35,61,171],divis:152,how:[0,86,36,175,129,49,115,18,103,168,89,15,179,120],open_tagn:163,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":180,simpl:109,updat:[133,120,179,153,20],message_pack_install_prefix:192,tokenregexp:85,"\u7406\u7531":125,max:[143,166,63,118,97,140,23],clone:120,geoloc:[93,188],mac:90,offlin:115,date:13,log_level:6,data:[185,13,188,46,49,9,179,152,65,66],table_dat_kei:95,alloc:168,"\u66f8\u5f0f":[182,68,184,112,170,35,171],not_equ:70,tokendelimit:85,explicit:185,issu:[0,103],callback:70,combin:185,normalizernfkc51:193,freebsd:140,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,table_token:47,order:143,origin:152,adjust:109,"\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":125,help:192,softwar:20,hypertext:103,lz4:192,"3\u30ea\u30ea\u30fc\u30b9":156,gqtp:[142,175,129],paramet:[91,143,6,96,98,47,48,146,8,147,110,104,149,106,128,108,109,76,155,59,116,60,157,159,63,194,161,65,66,69,50,23,166,163,73,74,127,173,118,97,79,83,186,132,134,137,101,140,38,141],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":153,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":153,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":153,group:[181,185,152],thank:[126,7,78,28,113,81],grn_table_select:70,fix:[43,126,7,78,28,81],shard_kei:[143,23,166,63],"\u5b9f\u9a13\u7684":28,platform:192,window:102,requir:[109,76,23,166,132,96,134,47,116,60,91,110,104,63,143,128],persist:95,tsv:[136,178],mail:[0,26],vector_s:149,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":180,"\u4f8b\u3048\u3070redmin":125,grn_hook:94,html_untag:110,"return":[91,2,143,6,96,47,48,146,101,147,110,104,10,149,106,108,76,155,194,59,116,60,157,159,63,169,161,66,22,69,50,23,166,163,73,74,127,173,118,27,97,77,128,177,83,186,132,134,33,137,8,37,38,141],greater:[70,185,152],worker_process:9,rectangl:76,"8\u30ea\u30ea\u30fc\u30b9":156,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":180,"\u8fd4\u5024":[68,109,171,112,35,184],now:184,highlight_ful:163,introduct:[172,20],choic:181,term:152,name:[46,190,60,37,79,66],edit:120,revers:[45,9],grn_ctx:16,authent:55,kern:140,micro:188,token:[133,165,91,85],exampl:[42,5,94,87,57,54,111,117,16,17,114,183,25,119,121,122,168,124,64,175,80,82,84,190,39],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":174,each:79,ruby_load:69,"benchmark\u5b9f\u884c\u7d50\u679c":170,grn_encod:124,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,domain:131,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[79,86],"0\u30ea\u30ea\u30fc\u30b9":[28,156,148],normalizerauto:193,proxy_cach:9,todo:[116,33],"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":125,develop:164,your:120,db_api:70,query_flag:109,"release\u306e\u5b9f\u884c":153,normalizer_nam:163,quantifi:181,correct:[172,18],red:153,nofil:140,"1\u30ea\u30ea\u30fc\u30b9":[28,156],shut:9,proxi:9,advanc:109,free:133,grn_user_data:119,substitution_t:116,standalon:98,releas:[126,7,78,28,113,81],database_path:[132,65],grn_match_escal:25,launch:132,success:136,dump_schema:159,recov:62,synopsti:190,assign:[36,185,152],oper:[189,3,152],rand:68,rang:[3,66],logical_table_select:[],groonga_log_path:9,suffix:[152,70,185,144],"7\u30ea\u30ea\u30fc\u30b9":[1,156],"\u8aac\u660e":[182,68,184,112,170,35,61,171],arrai:152,number:[140,109,192],edit_dist:112,groonga_database_auto_cr:9,modulo:152,open:140,primari:[46,144],size:175,grn_cach:17,script:[146,152],"\u4fee\u6b63":[28,1,156,148],messag:192,expand:30,termin:175,store:[133,66],option:[47,91,23,166,50,132,134,98,190,116,76,159,63,143,65],relationship:45,travi:82,tool:[192,9,103],specifi:[46,76,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":11,tokenfilterstem:165,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":70,than:[185,152],tokenbigram:85,keyword:188,remot:103,"grntest\u306e\u6e96\u5099":153,grn_table_cursor:64,charact:181,column_list:96,grn_expr:[70,39,160],latitud:[13,133],favorit:188,ruby_ev:146,plugin_unregist:177,tabl:[67,96,109,3,95,46,47,60,159,188,79,65,66],"null":152,logical_table_remov:63,packag:[192,142,14],bitwis:152,drilldown_limit:109,built:[193,85,12],min:[143,97,23,166,63],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":70,also:[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],builtin:[46,98],without:55,build:[167,130,14,154,102,192,90],highlight_html:48,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":180,mroonga:133,normal:[86,91,134,193,66],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[156,148],object:152,oracl:24,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":125,regular:[181,185,152],default_token:66,"class":181,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":153,groonga_log_level:9,geoindex:188,table_pat_kei:95,request:[132,36,9,120],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":70,latest:153,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":145,"\u539f\u56e0":71,lexicon:[100,3,66],keywordn:163,text:[3,185,133,100,75,79],grn_index_cursor:121,syntax:[91,143,6,96,98,47,48,146,50,147,104,10,149,106,108,109,76,152,155,194,59,116,60,157,62,63,169,161,181,66,22,69,27,23,159,166,163,73,74,127,75,173,118,97,77,128,177,185,83,8,186,134,33,137,101,110,38,141],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":153,threshold:192,xml:136,access:[103,55],explicitli:76,locat:[133,75,76,178,45],just:86,ellipsoid:76,grnslap:182,configur:[19,9,20,192,55,82],solut:168,max_bord:[143,97,23,166,63],use_html_escap:163,"benchmark\u547d\u4ee4":170,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":71,contribut:[89,15],variou:[13,75],get:[132,3],express:[181,185,152],stop:142,cannot:168,wheezi:154,report:0,geo:[133,152,45],restart:142,target:149,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:175,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":125,patch:120,munin:192,tokenfilterstopword:165,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":194,contain:70,plugin_regist:22,table_cr:66,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":180,summari:[2,12,6,91,9,10,76,5,194,16,17,19,87,22,23,25,33,8,37,38,85,41,42,147,47,48,27,54,107,59,60,62,63,64,65,66,69,50,73,74,77,80,83,84,129,94,95,96,98,101,104,106,57,108,109,110,111,86,117,116,114,119,121,122,123,163,127,128,132,36,134,136,137,140,141,143,146,149,151,155,157,159,161,124,165,166,183,169,173,118,97,177,178,181,186,187,139,193],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":153,set:[132,9],max_map_count:140,dump:159,geo_dist:76,see:[2,6,95,96,69,48,47,91,104,10,146,108,109,155,194,59,116,157,160,169,66,22,165,27,123,163,186,173,175,77,177,178,36,134,33,190,136,8,193,118],result:[3,131],arg:70,scorer_tf_idf:123,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":180,statu:[83,175,190],databas:[3,55],column_renam:60,label:109,less_equ:70,score:109,between:97,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":153,kei:[46,109,144],numer:13,javascript:75,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":153,style:109,"\u5bfe\u7b56\u65b9\u6cd52":71,"\u5bfe\u7b56\u65b9\u6cd51":71,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":170,homebrew:90,dump_plugin:159,addit:[193,152,100],instant:133,plugin:[41,192],geopoint:188,equal:[70,185,152],against:79,tutori:158,logic:[185,152],improv:[43,126,7,78,28,113,81],"po\u306e\u5b9f\u884c":153,point2:76,load:[59,188,3,9,86],among:79,defrag:38,point:152,overview:[13,133,5],period:43,header:[136,175],close_tagn:163,shutdown:141,linux:[154,140],grn_proc:54,tokenbigramignoreblanksplitsymbol:85,quit:161,"\u5236\u9650\u4e8b\u9805":170,target_nam:[137,128,50],invert:133,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":180,json:[59,136],basic:[3,152],tokenmecab:85,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,log_put:8,drilldown_calc_typ:109,resolut:45,"2\u30ea\u30ea\u30fc\u30b9":156,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":153,logical_range_filt:143,i18n:120,in_valu:101,"case":136,drildown:131,multi:55,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":153,zlib:192,cast:58,"\u691c\u7d22":145,error:[136,168],anchor:181,pack:192,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":180,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":153,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":153,"\u5f15\u6570":[182,68,112,170,35,171],filter_str:186,archiv:14,cento:130,synopsi:[132,37,9,65],"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,fedora:167,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":153,"\u691c\u7d22\u306e\u6319\u52d5":145,perform:[9,55],suggest:[132,155,190,49,172,51,65],make:[192,153],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,binari:52,html:[110,120,20],output_column:[109,143],document:[56,15,20],messagepack:136,complet:[172,179],http:[142,4,103,37,55,195],expans:92,nest:79,temporari:95,user:188,engin:133,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":135,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":153,tune:140,desctipion:190,sortbi:109,overcommit_memori:140,person:14,client:[191,98,175],command:[11,3,4,132,98,32,103,62,37,55],gzip:55,left:152,comment:188,construct:115,protocol:[52,103,175],execut:[53,98],less:[70,185,152],logical_select:166,min_bord:[143,97,23,166,63],"5\u30ea\u30ea\u30fc\u30b9":156,languag:120,approximate_typ:76,hashtag:188,point1:76,mmap:168,"twitter\u7de8":125,patricia:144,blog:188,add:120,macport:90,geo_in_circl:171,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":153,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":153,tokenunigram:85,match:[192,185,152],format:[136,109,3,59,150,178],read:[133,179],tokendelimitnul:85,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":71,characterist:[133,95],recurs:50,daemon:[98,175],like:75,specif:[188,79,9,21],maxfileperproc:140,manual:44,integ:152,server:[142,133,98,34,103,37,175],logical_t:[143,23,166,63],"boolean":[13,152],cascad:173,output:[136,109,3,4,120],snippet_html:33,normalizer_list:27,old:78,twitter:26,log_reopen:194,sampl:[185,152],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":180,librari:[133,192],tokenbigramsplitsymbolalphadigit:85,confirm:120,avoid:168,per:140,tracker:0,exit:190,condit:[75,109,185],scorer_tf_at_most:187,refer:[41,42,44,94,87,107,54,57,5,86,13,117,16,17,114,19,25,119,45,121,122,183,124,64,111,80,84,39],core:55,who:188,run:[175,129,103,20],tokenizs:85,compress:55,view:3,usag:[91,143,4,12,6,96,98,47,48,146,101,147,9,104,10,149,106,108,109,76,50,86,155,194,59,116,60,157,62,63,169,161,65,66,22,69,27,23,159,166,123,163,73,151,74,127,173,118,97,77,128,177,178,181,83,186,132,139,110,134,33,137,8,140,38,141],tokenizer_list:169,tokenbigramsplitsymbol:85,"\u30d3\u30eb\u30c9\u6642\u306etip":153,tokenbigramsplitsymbolalpha:85,offset:[109,143],post:[188,9,55],subtract:152,comparison:[152,55],about:[46,100],column:[67,151,76,3,185,131,86,133,163,48,61,139,72,79],memori:[140,168],page:109,truncat:128,"x\u306e\u304a\u77e5\u3089\u305b":[1,156,148],tokentrigram:85,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":180,ppa:14,match_escalation_threshold:109,grn_ii:87,"\u4f8b":[68,171,112,71,35,184],"float":152,encod:192,dataset:190,down:[75,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":145,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":70,storag:133,groonga_query_log_path:9,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":46,log:[150,192,65,55],transfer:103,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":170,support:93,"\u5909\u66f4":156,submit:0,custom:55,avail:[165,9],start:142,arithmet:152,"\u306e\u66f4\u65b0":153,sharabl:133,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":153,"function":[162,152],tokenbigramignoreblanksplitsymbolalphadigit:85,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":153,"\u691c\u7d22\u4f8b4":70,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":70,"\u691c\u7d22\u4f8b2":70,"\u691c\u7d22\u4f8b1":70,translat:120,drilldown_sortbi:109,line:[132,98,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":153,pull:120,dump_record:159,new_nam:60,type:[13,188,46],record:[95,109,3],limit:[67,109,131,86,95,46,178],inform:[75,100],similar:[18,152,70],grn_tabl:114,"\u611f\u8b1d":[28,1,156,148],featur:93,bigram:188,creat:[3,86,188,190,79,66],trie:144,flow:120,grn_obj:80,groonga_databas:9,mode:[47,91,98,70],"homebrew\u306e\u66f4\u65b0":153,jessi:154,right:152,file:[98,190,140,178,65,55,120],check:[127,62],"\u5bfe\u5fdc":125,tokenbigramignoreblank:85,extract:[152,49],grn_search:57,"default":[192,11],other:[192,181],logical_count:23,grn_geo:111,"hat\u7cfb\u306e\u5834\u5408":153,io_flush:50,scorer:[75,109,12],cooccurr:[18,179,49],drilldown:[109,131],debian:154,longitud:[13,133],groonga_base_path:9,escal:192,"\u691c\u7d22\u4f8b3":70,descript:46,pseudo:61,cpu:55,table_remov:147,queryexpandertsv:178,time:[13,188,152],escap:[185,181],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":153,table_no_kei:95}})
1
+ Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","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_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","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_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/plugin_register","reference/commands/plugin_unregister","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_rename","reference/commands/table_tokenize","reference/commands/thread_limit","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/functions/vector_size","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/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/scoring_note","reference/sharding","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/memcached","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":[133,0,1,"cmdoption--address"],"--bind-address":[133,0,1,"cmdoption--bind-address"],"--cache-limit":[133,0,1,"cmdoption--cache-limit"],"--config-path":[133,0,1,"cmdoption--config-path"],"--daemon":[139,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[133,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[134,0,1,"cmdoption--dir"],"--disable-max-fd-check":[138,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[133,0,1,"cmdoption--document-root"],"--encoding":[133,0,1,"cmdoption--encoding"],"--ftp":[134,0,1,"cmdoption--ftp"],"--groonga":[134,0,1,"cmdoption--groonga"],"--help":[133,0,1,"cmdoption--help"],"--host":[134,0,1,"cmdoption--host"],"--log-base-path":[139,0,1,"cmdoption--log-base-path"],"--log-level":[139,0,1,"cmdoption--log-level"],"--log-output-dir":[134,0,1,"cmdoption--log-output-dir"],"--log-path":[139,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[133,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[133,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[138,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[138,0,1,"cmdoption--n-threads"],"--pid-path":[133,0,1,"cmdoption--pid-path"],"--port":[138,0,1,"cmdoption--port"],"--protocol":[134,0,1,"cmdoption--protocol"],"--query-log-path":[133,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[133,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[139,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[139,0,1,"cmdoption--send-endpoint"],"--server-id":[133,0,1,"cmdoption--server-id"],"-P":[132,0,1,"cmdoption-P"],"-a":[133,0,1,"cmdoption-a"],"-c":[133,0,1,"cmdoption-c"],"-d":[139,0,1,"cmdoption-d"],"-e":[133,0,1,"cmdoption-e"],"-h":[133,0,1,"cmdoption-h"],"-i":[134,0,1,"cmdoption-i"],"-l":[139,0,1,"cmdoption-l"],"-m":[132,0,1,"cmdoption-m"],"-n":[133,0,1,"cmdoption-n"],"-p":[138,0,1,"cmdoption-p"],"-r":[139,0,1,"cmdoption-r"],"-s":[139,0,1,"cmdoption-s"],"-t":[138,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[47,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[47,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[47,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[47,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[47,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[47,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[48,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[48,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[48,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[60,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[60,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[60,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[60,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[60,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[60,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[60,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[60,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[60,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[60,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[69,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[69,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[69,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[69,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[69,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[69,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[69,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[69,1,1,"c.GRN_PLUGIN_REGISTER"],command:[133,0,1,"cmdoption-arg-command"],db:[134,0,1,"cmdoption-arg-db"],dest:[133,0,1,"cmdoption-arg-dest"],grn_builtin_type:[66,2,1,"c.grn_builtin_type"],grn_cache:[46,2,1,"c.grn_cache"],grn_cache_close:[46,1,1,"c.grn_cache_close"],grn_cache_current_get:[46,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[46,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[46,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[46,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[46,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[47,1,1,"c.grn_column_create"],grn_column_index:[47,1,1,"c.grn_column_index"],grn_column_index_update:[47,1,1,"c.grn_column_index_update"],grn_column_name:[47,1,1,"c.grn_column_name"],grn_column_rename:[47,1,1,"c.grn_column_rename"],grn_column_table:[47,1,1,"c.grn_column_table"],grn_column_truncate:[47,1,1,"c.grn_column_truncate"],grn_command_version:[48,2,1,"c.grn_command_version"],grn_content_type:[49,2,1,"c.grn_content_type"],grn_ctx:[50,2,1,"c.grn_ctx"],grn_ctx_at:[50,1,1,"c.grn_ctx_at"],grn_ctx_close:[50,1,1,"c.grn_ctx_close"],grn_ctx_db:[50,1,1,"c.grn_ctx_db"],grn_ctx_fin:[50,1,1,"c.grn_ctx_fin"],grn_ctx_get:[50,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[50,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[50,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[59,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[50,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[50,1,1,"c.grn_ctx_init"],grn_ctx_open:[50,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[50,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[50,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[59,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[50,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[50,1,1,"c.grn_ctx_use"],grn_db:[51,2,1,"c.grn_db"],grn_db_create:[51,1,1,"c.grn_db_create"],grn_db_create_optarg:[51,2,1,"c.grn_db_create_optarg"],grn_db_open:[51,1,1,"c.grn_db_open"],grn_db_recover:[51,1,1,"c.grn_db_recover"],grn_db_touch:[51,1,1,"c.grn_db_touch"],grn_db_unmap:[51,1,1,"c.grn_db_unmap"],grn_encoding:[52,2,1,"c.grn_encoding"],grn_encoding_parse:[52,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[52,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[53,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[53,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[53,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[53,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[53,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[53,1,1,"c.grn_expr_append_op"],grn_expr_close:[53,1,1,"c.grn_expr_close"],grn_expr_compile:[53,1,1,"c.grn_expr_compile"],grn_expr_create:[53,1,1,"c.grn_expr_create"],grn_expr_exec:[53,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[53,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[53,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[53,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[53,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[68,1,1,"c.grn_fin"],grn_geo_cursor_next:[54,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[54,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[54,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[54,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[54,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[48,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[52,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[59,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[45,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[55,2,1,"c.grn_hook_entry"],grn_ii:[56,2,1,"c.grn_ii"],grn_ii_buffer:[56,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[56,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[56,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[56,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[56,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[57,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[57,1,1,"c.grn_index_cursor_open"],grn_info_type:[58,2,1,"c.grn_info_type"],grn_init:[68,1,1,"c.grn_init"],grn_obj:[60,2,1,"c.grn_obj"],grn_obj_add_hook:[55,1,1,"c.grn_obj_add_hook"],grn_obj_check:[60,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[60,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[60,1,1,"c.grn_obj_close"],grn_obj_column:[60,1,1,"c.grn_obj_column"],grn_obj_db:[51,1,1,"c.grn_obj_db"],grn_obj_defrag:[60,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[60,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[55,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[60,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[58,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[55,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[58,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[55,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[60,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[60,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[60,1,1,"c.grn_obj_get_values"],grn_obj_id:[60,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[60,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[60,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[60,1,1,"c.grn_obj_lock"],grn_obj_name:[60,1,1,"c.grn_obj_name"],grn_obj_path:[60,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[60,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[60,1,1,"c.grn_obj_reinit"],grn_obj_remove:[60,1,1,"c.grn_obj_remove"],grn_obj_rename:[60,1,1,"c.grn_obj_rename"],grn_obj_search:[62,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[58,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[61,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[58,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[60,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[60,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[60,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[67,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[69,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[69,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[69,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[69,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[69,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[69,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[69,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[69,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[69,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[69,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[69,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[69,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[69,1,1,"c.grn_plugin_win32_base_dir"],grn_proc_create:[61,1,1,"c.grn_proc_create"],grn_proc_func:[61,2,1,"c.grn_proc_func"],grn_proc_get_info:[61,1,1,"c.grn_proc_get_info"],grn_proc_type:[61,2,1,"c.grn_proc_type"],grn_search_optarg:[62,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[48,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[52,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[59,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[45,1,1,"c.grn_set_lock_timeout"],grn_table_add:[63,1,1,"c.grn_table_add"],grn_table_at:[63,1,1,"c.grn_table_at"],grn_table_columns:[63,1,1,"c.grn_table_columns"],grn_table_create:[63,1,1,"c.grn_table_create"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_table_delete:[63,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[63,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[63,1,1,"c.grn_table_difference"],grn_table_get:[63,1,1,"c.grn_table_get"],grn_table_get_key:[63,1,1,"c.grn_table_get_key"],grn_table_group:[63,1,1,"c.grn_table_group"],grn_table_group_flags:[63,2,1,"c.grn_table_group_flags"],grn_table_group_result:[63,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[63,1,1,"c.grn_table_lcp_search"],grn_table_rename:[63,1,1,"c.grn_table_rename"],grn_table_setoperation:[63,1,1,"c.grn_table_setoperation"],grn_table_size:[63,1,1,"c.grn_table_size"],grn_table_sort:[63,1,1,"c.grn_table_sort"],grn_table_sort_flags:[63,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[63,2,1,"c.grn_table_sort_key"],grn_table_truncate:[63,1,1,"c.grn_table_truncate"],grn_table_update:[63,1,1,"c.grn_table_update"],grn_table_update_by_id:[63,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[65,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[65,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[65,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[65,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[65,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[65,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[66,1,1,"c.grn_type_create"],grn_user_data:[67,2,1,"c.grn_user_data"],script:[134,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[51,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[51,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":17,"0\u306e\u79d2\u8868\u8a18":195,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":55,"0\u30d9\u30fc\u30b9\u3067":[63,64],"0\u30ea\u30ea\u30fc\u30b9":[],"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":133,"0mq":40,"0x0":[38,182,198],"0x01":192,"0x02":192,"0x04":192,"0x08":192,"0x10":192,"0x20":157,"0xc7":192,"10000cent":180,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":182,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":132,"10041\u756a":133,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":133,"10043\u756a":133,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":195,"100cent":180,"100x100":144,"100x150":145,"1024r":12,"1073741824\u306e\u6574\u6570\u3067":73,"10m":135,"10t13":[174,175,177],"10t22":175,"10z":158,"128452975x503157902":[198,200,205,208],"128487316x502920929":[200,208],"128515259x503187188":[200,208],"1285858800\u306f2010":195,"128mb":39,"12gb":196,"135960000x":143,"13\u7528rpm\u306e\u63d0\u4f9b":35,"143660000x419009000":143,"145508000x":143,"146249000x":204,"146566000x":[143,204],"146607190x":204,"146710080x":204,"146741340x":204,"146867000x":204,"150x100":145,"152489000x":204,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":82,"16bit":182,"16gb":196,"16gib":181,"175904000x8464000":143,"185428000x":143,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":77,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":64,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":37,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":77,"1\u3068command":77,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":55,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":134,"1\u30ea\u30ea\u30fc\u30b9":[],"1\u5358\u8a9e\u6271\u3044":193,"1\u884c\u76ee":134,"1byte":192,"1gb":33,"1st":141,"1x139":198,"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":64,"200byte":153,"20km":204,"21th":40,"23t02":158,"24byte":192,"256gbyte":32,"256gib":32,"256kb":196,"256kib":181,"257662232kbyte":134,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":182,"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":12,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":77,"2\u30ea\u30ea\u30fc\u30b9":[],"2\u884c\u76ee":134,"2byte":[80,192],"2nd":117,"2rd":117,"2st":117,"30ac":161,"314e":158,"32bit":[8,33,40,182],"32byte":33,"32gib":181,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":193,"3\u30ea\u30ea\u30fc\u30b9":[],"3\u884c\u76ee":134,"3rd":[40,117],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"4096byte":[32,33,178],"4097byte":178,"436218z":158,"44001770019531e":164,"45ea3034":160,"4\u30ea\u30ea\u30fc\u30b9":[],"4\u884c\u76ee":134,"4byte":192,"4e86e700":196,"4gbyte":32,"4gib":[178,192],"4kib":33,"4th":117,"5367431640625e":164,"56058502197266e":164,"56880000x":143,"59\u74b0\u5883\u306b\u304a\u3044\u3066":37,"5\u30ea\u30ea\u30fc\u30b9":[],"5th":117,"64bit":[8,182],"64kib":33,"65535byte":33,"6813819x139":[198,208],"6909211x139":208,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":12,"6\u30ea\u30ea\u30fc\u30b9":[],"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":14,"6elz":41,"6gib":181,"7\u30ea\u30ea\u30fc\u30b9":[],"80ghz":134,"82pre":42,"8\u306b\u5bfe\u5fdc":35,"8\u30ea\u30ea\u30fc\u30b9":[],"8bit":182,"8byte":192,"93933868408203e":164,"975mbyte":134,"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":12,"\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":12,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":12,"\u3042\u308a\u307e\u305b\u3093":[99,111,118,119,122],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":144,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[144,145],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":11,"\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":77,"\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":77,"\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":77,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":77,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":10,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":10,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":77,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":11,"\u3044\u307e\u3059":10,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":35,"\u304a\u3070\u305f\u3055\u3093":34,"\u304a\u3088\u3073":12,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":57,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":133,"\u304bwgs84geopoint":[144,145],"\u304c\u3042\u308a\u307e\u3059":12,"\u304c\u306a\u3044\u5834\u5408":12,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":35,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":193,"\u304c\u5fc5\u8981\u3067\u3059":12,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":152,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":144,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":63,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":63,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":63,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[47,63],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u304c\u8fd4\u3055\u308c\u307e\u3059":60,"\u3050\u308b\u3093\u304c":[157,158],"\u3050\u308b\u3093\u304c\u592a\u90ce":200,"\u3050\u308b\u3093\u304c\u6b21\u90ce":200,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u3053\u3053\u3067\u306f":195,"\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":12,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":195,"\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":12,"\u3053\u3053\u3067\u3082":195,"\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":10,"\u3053\u306e\u3068\u304d":193,"\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":195,"\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":195,"\u3053\u306e\u3088\u3046\u306bn":195,"\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":195,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":134,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":134,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":134,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":193,"\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":195,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":12,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":133,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":134,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":[],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":12,"\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":11,"\u3053\u306e\u4f5c\u696d\u306f":12,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":12,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":12,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":134,"\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":195,"\u3053\u306e\u5834\u5408":64,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":195,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":195,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":195,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":195,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":195,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":195,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":195,"\u3053\u306e\u64cd\u4f5c\u306f":63,"\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":195,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":193,"\u3053\u306e\u7d50\u679c\u306f":134,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":193,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":144,"\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":12,"\u3053\u308c\u3067":12,"\u3053\u308c\u306b\u3088\u308a":12,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":12,"\u3053\u308c\u306b\u5bfe\u3057\u3066":193,"\u3053\u308c\u306f":195,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":73,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":195,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":11,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":12,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":134,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":77,"\u3057\u304b\u3057":[182,193,195],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":12,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":10,"\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":193,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":12,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":134,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":77,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":134,"\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":35,"\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":14,"\u3059\u308b\u3068":14,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":35,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":10,"\u3059\u308b\u3068groonga":12,"\u305d\u3053\u3067":195,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":12,"\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":122,"\u305d\u306e\u305f\u3081":[12,93,134,193,195],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":12,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":182,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":77,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":12,"\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":11,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":12,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":134,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":55,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":195,"\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":12,"\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":77,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":133,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":77,"\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":77,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":64,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":11,"\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":10,"\u305d\u306e\u969b":12,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":60,"\u305d\u308c\u305e\u308c":14,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":133,"\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":193,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":193,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":11,"\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":11,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":193,"\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":195,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":60,"\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":195,"\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":193,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":60,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":60,"\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":11,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":132,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":132,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u65e7ji":64,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":119,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":66,"\u305f\u3060\u3057":[64,73,133,193],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":34,"\u305f\u3068\u3048\u3070":193,"\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":77,"\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":195,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":195,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":12,"\u3060\u3068\u539f\u56e0\u306f":10,"\u3064\u307e\u308atest":12,"\u3066\u3057\u307e\u3044\u307e\u3059":10,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":195,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":11,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":11,"\u3067\u3042\u308c\u3070":134,"\u3067\u3059\u306d":10,"\u3067\u306f\u306a\u304ffree":35,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":12,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":195,"\u3067\u306f\u6607\u9806":63,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":63,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":50,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":195,"\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":35,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":133,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":195,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":195,"\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":35,"\u3067\u4f5c\u6210\u3057\u305f":50,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":133,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":50,"\u3067\u533a\u5207\u308a\u307e\u3059":133,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":73,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":85,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":134,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":35,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":64,"\u3067\u78ba\u4fdd\u3057\u305f":50,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":122,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":50,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":50,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":60,"\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":35,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\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":35,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":193,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":193,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":195,"\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":134,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":134,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":134,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":134,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":10,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":193,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":193,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":182,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":193,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":193,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":193,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":193,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":134,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":12,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"\u3068\u306a\u308a":195,"\u3068\u308a\u3068\u3093":[157,158],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":134,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":134,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":195,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":195,"\u3068\u5171\u306b":47,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":60,"\u3068\u540c\u3058\u610f\u5473":133,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":34,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":134,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":144,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":12,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":195,"\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":10,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":10,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":50,"\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":193,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":134,"\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":60,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":60,"\u306b\u3042\u308b":60,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":64,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":64,"\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":12,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":12,"\u306b\u306a\u308a\u307e\u3059":50,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":193,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":82,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":122,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":193,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":50,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":182,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":193,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":193,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":195,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":195,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":133,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":134,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":134,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":133,"\u306b\u8a2d\u5b9a\u3059\u308b":12,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":134,"\u306e2\u5358\u8a9e\u6271\u3044":193,"\u306e3\u30d5\u30e9\u30b0\u306f":64,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[62,63,66],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[63,144,145],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":133,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u306e\u307b\u304b\u306b":182,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":64,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\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":133,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":133,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u306e\u30ab\u30e9\u30e0":[83,91],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[35,37],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":91,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":83,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":35,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":35,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":133,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":10,"\u306e\u5834\u5408\u306f":10,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":66,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":35,"\u306e\u66f4\u65b0":[],"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":134,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":133,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":61,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":152,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":152,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":122,"\u306ebase_version\u306e\u66f4\u65b0":12,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":195,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":35,"\u306exml\u51fa\u529b\u5bfe\u5fdc":35,"\u306f\u306a\u304f":34,"\u306f\u7121\u52b9\u3067\u3042\u308a":64,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[63,64],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":60,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":195,"\u3072\u308d\u3042\u304d":206,"\u3072\u308d\u3086\u304d":206,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":134,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":12,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":47,"\u307e\u305f\u306f":134,"\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":[82,83,85,87,90,91,93,97,98,99,111,118,119,122,123],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":133,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":133,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":134,"\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":50,"\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":134,"\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":134,"\u307e\u305f\u540c\u6642\u306b":134,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":63,"\u307e\u305fgroonga":134,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":119,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":77,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":10,"\u307e\u308d\u3086\u304d":206,"\u3080\u308b\u3093\u304c":[157,158],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":142,"\u3082\u3057\u304f\u306f":[63,64,182],"\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":134,"\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":134,"\u3082\u3057groonga":134,"\u3082\u3057test":134,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":193,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":77,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":10,"\u3084red":12,"\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":12,"\u3086\u304d\u3072\u308d":206,"\u3088\u3063\u3066":182,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":144,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":134,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u308d\u3086\u304d":206,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":14,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":93,"\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":35,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":57,"\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u3092\u516c\u958b":35,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":12,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[134,182,195],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":85,"\u3092\u6307\u5b9a\u3057":[64,83,91],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":64,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":11,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":64,"\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":64,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":64,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":64,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":64,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":63,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,51,58,60,63,66,133,134],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[47,64],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\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":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"\u3092\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":14,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":60,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":144,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u3092\u8a08\u7b97\u3059\u308b":34,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":134,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u3092\u8fd4\u3057\u307e\u3059":[55,60,63,64],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":34,"\u3092\u8ffd\u52a0":[35,37],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":61,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":66,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":12,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":35,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":132,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":60,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[193,195],"\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":195,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":85,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":12,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":134,"\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":134,"\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":35,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":82,"\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":37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":82,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":85,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":85,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":85,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":83,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":12,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":133,"\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":133,"\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":59,"\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":59,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[83,87,90,97,98,99,123],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[83,87,90,97,98,99,123],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":60,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":35,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":83,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":83,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":91,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":82,"\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":50,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":50,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":134,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":134,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":134,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":14,"\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":123,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":85,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":85,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u30ab\u30e9\u30e0\u540d\u306f":85,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":60,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":47,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"\u30ab\u30ec\u30fc":193,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":193,"\u30ab\u30f3\u30de":93,"\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":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":34,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u30ad\u30fc":133,"\u30ad\u30fc\u304c":133,"\u30ad\u30fc\u30ef\u30fc\u30c9":36,"\u30af\u30a8\u30ea\u306e":195,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":195,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":11,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":34,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\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":11,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":133,"\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":111,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":35,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":133,"\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":133,"\u30b0\u30eb\u30fc\u30d7\u5316":73,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":73,"\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":73,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":73,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":35,"\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":193,"\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":35,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":34,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":182,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":182,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":35,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":133,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":77,"\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":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":134,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":12,"\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":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":133,"\u30b3\u30de\u30f3\u30c9\u540d":133,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":133,"\u30b3\u30df\u30c3\u30c8":12,"\u30b3\u30e1\u30f3\u30c8\u884c":134,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":35,"\u30b3\u30ed\u30f3":85,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\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":11,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":82,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":35,"\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":77,"\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":36,"\u30b5\u30fc\u30d0":133,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":134,"\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":134,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":133,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\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":134,"\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":134,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":133,"\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":134,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":118,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":133,"\u30b7\u30a7\u30eb\u4e0a":134,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":133,"\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":37,"\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":134,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":134,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":134,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":134,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":134,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":133,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":133,"\u30b9\u30ec\u30c3\u30c9\u6570":134,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":134,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":134,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":134,"\u30b9\u30fc\u30d7":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":193,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":193,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":82,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":111,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":134,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":134,"\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":12,"\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":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":14,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":117,"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":12,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":12,"\u30c0\u30e1\u30fc\u30b8":195,"\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":82,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":82,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":82,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":82,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":82,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":37,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":35,"\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":14,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":14,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":14,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306f":14,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":195,"\u30c6\u30fc\u30d6\u30eb":83,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":133,"\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":133,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":87,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":122,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":85,"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":123,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":73,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":122,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":64,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":64,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":122,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u540d":[83,91,122],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":122,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":182,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":122,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":122,"\u30c6\u30fc\u30d6\u30ebentry\u306b":85,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":90,"\u30c6\u30fc\u30d6\u30ebterm\u306b":85,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":82,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":34,"\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":12,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":12,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":82,"\u30c7\u30d5\u30a9\u30eb\u30c8":11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[133,134],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":133,"\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":77,"\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":99,"\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":59,"\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":59,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":34,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":133,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":182,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[132,133],"\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":34,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":83,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":91,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":134,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":133,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":93,"\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":93,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":93,"\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":133,"\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":11,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":34,"\u30c7\u30fc\u30e2\u30f3":133,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u30c8\u30e2\u3061\u3083\u3093":200,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\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":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":12,"\u30cb\u30c3\u30dd\u30f3":174,"\u30cb\u30db\u30f3":174,"\u30cb\u30db\u30f3\u30b4":174,"\u30cb\u30db\u30f3\u30b8\u30f3":174,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":195,"\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":133,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":82,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":82,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":82,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":82,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":82,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":82,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":82,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":82,"\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],"\u30d1\u30a4\u30d7":85,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"\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":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],"\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":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":37,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":132,"\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":11,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\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":12,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u6642\u306etip":[],"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":12,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":12,"\u30d4\u30ea\u30aa\u30c9":85,"\u30d5\u30a1\u30a4\u30eb":12,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":37,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":82,"\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":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":91,"\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":91,"\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":60,"\u30d6\u30ed\u30b0":[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":35,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":36,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":14,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":12,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":77,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":77,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":133,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":133,"\u30d9\u30af\u30bf\u306e\u5024\u3092":35,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":182,"\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":12,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":134,"\u30db\u30b9\u30c8\u540d\u3068":134,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[132,133],"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":60,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":87,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":182,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":34,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[35,37],"\u30e1\u30fc\u30c8\u30eb":144,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\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":11,"\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":11,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\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":[],"\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":10,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":10,"\u30e6\u30fc\u30b6\u540d":134,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,"\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":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\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":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u65e5":12,"\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":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":12,"\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":12,"\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":12,"\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":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":[],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":12,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":73,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":35,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":34,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":37,"\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":36,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":98,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":99,"\u30ed\u30b0\u3092":12,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\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":12,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":99,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":134,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":134,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":99,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":99,"\u30ed\u30b0\u51fa\u529b":98,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":133,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":97,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[97,133],"\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":12,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":83,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":133,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":91,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":193,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":47,"\u4e00\u65b9":195,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":60,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":60,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":60,"\u4e00\u822c\u7684\u306b\u306f":60,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":134,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":12,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":195,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":134,"\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":12,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":35,"\u4e0b\u8a18":64,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":82,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":119,"\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":35,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\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":35,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u4e0e\u3048":195,"\u4e16\u754c\u6e2c\u5730\u7cfb":182,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[144,145],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":11,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":93,"\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":82,"\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":119,"\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":35,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":182,"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":73,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":122,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":73,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":152,"\u4e8c":174,"\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":77,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u4eac\u90fd":[180,193,195],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":99,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":77,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":87,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":12,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":134,"\u4ee5\u4e0b":134,"\u4ee5\u4e0b\u3067":195,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":11,"\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":12,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":11,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":193,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":93,"\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":193,"\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":195,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":195,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\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":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":12,"\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":133,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[12,14],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":12,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":12,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":133,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":133,"\u4ee5\u964d\u3092\u7121\u8996":35,"\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":134,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":133,"\u4efb\u610f\u306edb\u540d":134,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\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":37,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":85,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":134,"\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":12,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\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":51,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":133,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\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":85,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":77,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":85,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":50,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":82,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":82,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":77,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":77,"\u4f8b":[],"\u4f8b\u3048\u3070":[60,133,134,193,195],"\u4fee\u6b63":[],"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":77,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":195,"\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":12,"\u5024":133,"\u50241":133,"\u50242":133,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\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":35,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":133,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u5024\u306e\u7bc4\u56f2\u306f1":73,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\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":60,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[58,60],"\u5065\u4f5c":200,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":11,"\u5165\u529b":[83,99,122],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":134,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":134,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":90,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":195,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":12,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5185\u8a33\u306f":195,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":63,"\u5185\u90e8\u7684\u306a\u5909\u66f4":12,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\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":144,"\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":144,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\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":195,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":55,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":73,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":134,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":134,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":134,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":93,"\u5206\u5272":193,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":14,"\u521d\u671f\u5024\u306f10\u3067\u3059":132,"\u521d\u671f\u5316\u3055\u308c\u305f":50,"\u521d\u671f\u5316\u3059\u308b":50,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u521d\u671f\u5316\u6e08\u307f\u306e":51,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\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":11,"\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":195,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":10,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":73,"\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":35,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":35,"\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":[87,123],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\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":12,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":12,"\u524d\u63d0\u6761\u4ef6":[],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":34,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":195,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u529b":[98,118],"\u52c9\u5f37":180,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":77,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":12,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":93,"\u534a\u5f84":144,"\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":144,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":64,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u5358\u4f4d":[66,144],"\u5358\u72ec\u306e\u5024":47,"\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":144,"\u539f\u56e0":[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"\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":12,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":134,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":10,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":60,"\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":60,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":60,"\u53f3\u4e0a":34,"\u53f3\u4e0b":34,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":35,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":134,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":134,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":11,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":134,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":82,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":117,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":134,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":82,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":12,"\u540c\u3058\u3067\u3059":134,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":77,"\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":195,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":77,"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":85,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":134,"\u540c\u6642\u306b":9,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":64,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":37,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[47,60],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":60,"\u5426\u5b9a":11,"\u542b\u3081\u306a\u3044\u3082\u306e":12,"\u542b\u3081\u308b\u3082\u306e":12,"\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":58,"\u547c\u51fa\u5074\u3067\u6e96\u5099":58,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[47,60,63],"\u554f\u984c\u3042\u308a":37,"\u554f\u984c\u306fgroonga":134,"\u554f\u984c\u3092\u4fee\u6b63":35,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":12,"\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":10,"\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":35,"\u578b":66,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":47,"\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":57,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":63,"\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":12,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":61,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":73,"\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":59,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\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":59,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":63,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":132,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":63,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":93,"\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":34,"\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":35,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":63,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":63,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":63,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":195,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":193,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":193,"\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":193,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":193,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":193,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":85,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":133,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":73,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":85,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":47,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":50,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\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":132,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,"\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":133,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5b9f\u884c\u3067\u304d\u307e\u3059":12,"\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":63,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":55,"\u5b9f\u884c\u4f8b":[14,77],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":11,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":134,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":195,"\u5b9f\u9a13\u7684":[],"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":60,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":63,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[60,63],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":63,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":63,"\u5bfe\u7b56\u65b9\u6cd51":[],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[83,91],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[83,91],"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":132,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\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":64,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60,63],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":63,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[57,64],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,51,55,58,60,61,67],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60,63,64],"\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":37,"\u5de6\u4e0a":34,"\u5de6\u4e0b":34,"\u5dee\u5206\u3092":134,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":182,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":182,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":144,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":145,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":77,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":134,"\u5f15\u6570\u3068\u3057\u3066":11,"\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":133,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":11,"\u5f15\u6570\u540d":133,"\u5f15\u6570\u540d1":133,"\u5f15\u6570\u540d2":133,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":133,"\u5f37":180,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":60,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":77,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":60,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":60,"\u5f62\u5f0f1":133,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":133,"\u5f62\u5f0f2":133,"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":133,"\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":11,"\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":12,"\u5f93\u3063\u3066":117,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":11,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":11,"\u5fa9\u53f7\u3057\u305f\u9375":12,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":12,"\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":35,"\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":11,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":85,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":122,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":122,"\u611f\u8b1d":[],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[83,87,90,97,98,99,123],"\u623b\u308a\u5024\u3067\u3042\u308b":57,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":57,"\u624b\u7d9a\u304d":61,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u62c5\u5f53\u8005":12,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":134,"\u62e1\u5f35\u5b50\u306f":134,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":134,"\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":77,"\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":77,"\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":77,"\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":77,"\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":77,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":134,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":82,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":142,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":142,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":35,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":34,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":11,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":134,"\u6307\u5b9a\u3059\u308b":51,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":144,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":134,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":118,"\u63a5\u7d9a\u3059\u308bgroonga":134,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":134,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":134,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":134,"\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":134,"\u63d0\u6848\u3092\u884c\u3046":35,"\u6539\u826f":[],"\u6539\u884c\u6587\u5b57\u306f":133,"\u6570\u5024":193,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":34,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":144,"\u6570\u5b57":134,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":195,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":195,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":142,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":133,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":60,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":63,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":99,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":51,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":63,"\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":12,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":144,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":134,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":99,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":51,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"\u65e5":180,"\u65e5\u3005":10,"\u65e5\u672c":[174,180],"\u65e5\u672c\u4eba":174,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[144,145],"\u65e5\u672c\u8a9e":174,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":180,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":12,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":182,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":35,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":77,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\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":10,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":34,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u6700\u5f8c\u306b":195,"\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":12,"\u6700\u5f8c\u306e":134,"\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":51,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":[],"\u672c":180,"\u672c\u8a9e":180,"\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":195,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":11,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":11,"\u6771\u4eac":[180,193,195],"\u6771\u4eac\u90fd":[180,193,195],"\u6771\u4eac\u90fd\u6c11":[193,195],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":195,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":63,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u68ee\u7530":200,"\u691c\u7d22":[],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":11,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":50,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":[],"\u691c\u7d22\u306e\u6319\u52d5":[],"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":193,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":195,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":59,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":59,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":193,"\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":193,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":90,"\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":195,"\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":195,"\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":195,"\u691c\u7d22\u4f8b1":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":117,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":55,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":73,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u5bfe\u8c61\u306e":195,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\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":11,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":193,"\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":117,"\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":182,"\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":[90,133],"\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":73,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":193,"\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":117,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":[],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\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":11,"\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":11,"\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":11,"\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":11,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":144,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":144,"\u697d\u3057":[193,195],"\u697d\u3057\u3044billiard":[193,195],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":50,"\u69cb\u9020\u4f53\u306e\u914d\u5217":61,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":57,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],"\u6a19\u6e96":[83,99,122],"\u6a19\u6e96\u5165":[98,118],"\u6a19\u6e96\u5165\u529b":[82,85,87,90,91,93,97,111,119,123],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":133,"\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":133,"\u6b21\u306b":11,"\u6b21\u306bgroonga\u306etest":12,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":77,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":12,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":12,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":12,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":119,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":77,"\u6bb5\u843d\u60c5\u5831":47,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u6c11":193,"\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":10,"\u6c38\u7d9a\u7684\u306a":60,"\u6ce8\u610f":63,"\u6df1\u523b":195,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":11,"\u6e2c\u5730\u7cfb":182,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":182,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":11,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":60,"\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":12,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":56,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":14,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":12,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":134,"\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":134,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u73fe\u5728":99,"\u73fe\u5728\u306f":[132,134],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":134,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":134,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":61,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":150,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":150,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":77,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":144,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\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":12,"\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":12,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":82,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":12,"\u7591\u4f3c\u30ab\u30e9\u30e0":73,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":152,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\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":145,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":12,"\u79d2":60,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u7a7a\u306e\u5834\u5408":[83,91],"\u7a7a\u767d":133,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":195,"\u7a7a\u767d\u3084":133,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":82,"\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":60,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":195,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":195,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":51,"\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":51,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[82,83,85,87,90,91,93,97,98,99,111,118,119,122,123],"\u7d44\u8fbc\u95a2\u6570\u306f":[142,144,145,150,152],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":182,"\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":182,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":182,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":60,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":134,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":63,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u7d9a\u3044\u3066":195,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":12,"\u7de8\u96c6\u8ddd\u96e2":34,"\u7def\u5ea6\u306f":182,"\u7e70\u308a\u8fd4\u3057\u6570":134,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":134,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":134,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":12,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":12,"\u811a\u6ce8":[87,144,145,182],"\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":10,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":134,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":134,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":134,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":73,"\u826f\u3044\u306e\u304b":10,"\u826f\u3044\u4f8b":10,"\u82b1\u5b50":200,"\u884c":14,"\u884c\u3059\u308b":12,"\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":134,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\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":11,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":10,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":63,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":12,"\u8a18\u53f7":[133,195],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":35,"\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":195,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":195,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":193,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\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":[97,98],"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":133,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":34,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":60,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":134,"\u8a73\u7d30\u306f":[14,195],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u8a9e":[82,180],"\u8a9e\u306e":180,"\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":12,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":144,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":144,"\u8ad6\u7406\u548c":11,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":11,"\u8ad6\u7406\u7a4d":11,"\u8b66\u544a\u3092\u9664\u53bb":35,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":77,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":35,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":144,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":47,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"\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":82,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\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":90,"\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":90,"\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":90,"\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":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\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":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\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":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":90,"\u8ffd\u52a0\u306e\u5c5e":85,"\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":12,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":133,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":133,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":12,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":73,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":195,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":195,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":195,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":10,"\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":195,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":193,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":193,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":195,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":195,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":193,"\u90fd":[180,193,195],"\u90fd\u6c11":[193,195],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":51,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":51,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":82,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":82,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\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":12,"\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":91,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":83,"\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":35,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[83,91],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":10,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"\u95a2\u4fc2\u5f0f":[],"\u95a2\u4fc2\u5f0f\u306f":11,"\u95a2\u6570":14,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":61,"\u95a2\u6570\u304c\u5f15\u6570\u3092":34,"\u95a2\u6570\u306e\u8ffd\u52a0":34,"\u95a2\u6570\u306f":[11,142,144,145,152],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":150,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":11,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":193,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":195,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u95be\u5024\u3092\u8d8a\u3048\u308b":195,"\u9759\u7684\u89e3\u6790":[],"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":193,"\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":193,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[193,195],"\u975e\u4e92\u63db":37,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":12,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":133,"\u99c4\u76ee\u306a\u4f8b":10,"\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":11,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":9,"\uff4d\uff59\uff53\uff51\uff4c":[146,147],"__uint32_t":33,"_avg":[103,117],"_dataset":[137,139],"_id":[33,41,47,60,73,75,78,84,88,92,93,103,117,120,124,129,141,149,157,158,159,161,167,174,175,177,179,195,199,200,201,203,205,206,207,208],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":73,"_kei":[33,39,40,41,47,60,73,75,78,84,86,88,92,93,95,102,103,117,120,124,125,129,135,141,143,148,149,154,155,157,158,161,168,174,175,177,179,181,186,198,199,200,201,203,204,205,206,207,208],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"_max":[103,117],"_min":[103,117],"_name":121,"_nsubrec":[41,47,73,103,117,199,200,204],"_post":12,"_score":[33,37,39,40,47,73,75,117,120,143,151,158,168,170,174,175,177,195,200,201,203,204,208],"_set_valu":38,"_sum":[103,117],"_valu":[40,41,47,73,103,117],"_yyyymmdd":[100,102,103,105],"a\u3092\u6307\u5b9a\u3057\u3066tabl":63,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":133,"akio\u3055\u3093":35,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"akio\u3055\u3093\u304c\u5831\u544a":35,"akio\u3055\u3093\u304c\u63d0\u6848":35,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":12,"apt\u306e\u5834\u5408":12,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"aramaki\u3055\u3093":35,"aramaki\u3055\u3093\u304c\u5831\u544a":35,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"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":11,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":63,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":63,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":12,"base_version\u306ftar":12,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":134,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":134,"benchmark\u304c\u52d5\u4f5c\u3057":134,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":134,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":134,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":134,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":134,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":134,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":134,"benchmark\u306f":134,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":134,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":134,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":134,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":134,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":134,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":134,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":134,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":134,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":134,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":134,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":134,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":134,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":134,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":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":134,"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":134,"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":193,"blog_body\u7d22\u5f15":195,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":12,"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":195,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"bom\u4ed8\u304dutf":35,"boolean":[],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":14,"break":[37,39,41,131],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":47,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":47,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":60,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":12,"build\u3092\u7528\u3044\u3066":14,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":12,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":51,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"builtin_type_names\u306b\u306f":51,"byte":[33,37,39,40,41,47,50,53,60,61,63,66,69,79,117,153,182,192],"byte\u9577":[47,60,63],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":11,"case":[],"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":144,"centos\u306e\u5834\u5408":12,"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":12,"char":[41,47,50,51,52,53,60,61,63,65,66,69],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":14,"check\u30b3\u30de\u30f3\u30c9\u306f":82,"chroot\u74b0\u5883\u306e":12,"class":[],"clearlock\u306f":83,"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":12,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":12,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":47,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":47,"column\u306e\u5024\u304c":11,"column\u306f":47,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":47,"column_create\u306f":85,"column_list\u30b3\u30de\u30f3\u30c9":34,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":87,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":9,"com\u304cedge\u3092\u4f5c\u308b":9,"com\u306f1\u30b9\u30ec\u30c3\u30c9":9,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":50,"command_version\u3092\u8fd4\u3057\u307e\u3059":50,"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":77,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":12,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":35,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":77,"configure\u306e":37,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":119,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":12,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":195,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"const":[38,47,50,51,52,53,60,61,63,64,66,69],"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":119,"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":14,"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":50,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":47,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":60,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":63,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":50,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":50,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":50,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":50,"ctx_new\u3068\u3044\u3046queue\u306b":9,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":64,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"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":64,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":14,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":14,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],"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":12,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":36,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":60,"db\u3068\u306a\u308a\u307e\u3059":51,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":133,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[122,133],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":122,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":133,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":63,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":51,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":60,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":50,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":50,"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":11,"db_api\u306f":11,"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":11,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":195,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"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":12,"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":12,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":37,"debian\u7cfb":12,"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":12,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"debian\u7cfb\u3082\u3057\u304f\u306fr":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"debug\u3092\u8ffd\u52a0":35,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":35,"default":[],"define_selector\u306f":90,"defrag\u306f":91,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"delete\u30b3\u30de\u30f3\u30c9":34,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":60,"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":77,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":77,"description\u306b":193,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":77,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":134,"dist\u3067\u751f\u6210\u3057\u305ftar":12,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"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":93,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":93,"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":93,"dump\u30b3\u30de\u30f3\u30c9":34,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":9,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":9,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":9,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"edge\u306fctx\u3092\u542b\u3080":9,"encoding\u306e\u5024\u304c":37,"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":85,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"export":[18,37,40,41],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":60,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":67,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":61,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":35,"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":12,"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":35,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":35,"files\u306e\u5b9f\u884c":[],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":12,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":35,"final":[68,69,75,117,135],"flags\u306b":[47,63],"flags\u306b\u306f":63,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":85,"float":[],"function":[],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":12,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":14,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":14,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":35,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":34,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":35,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":12,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":12,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":132,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":12,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":132,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":132,"gqtp\u306e\u5834\u5408":133,"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":195,"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":195,"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":195,"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":193,"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":193,"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":195,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":195,"grn_bool\u578b\u3092\u8ffd\u52a0":35,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"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":11,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":[],"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":11,"grn_expr\u306f":11,"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":11,"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":11,"grn_op_adjust\u306f":11,"grn_op_and\u306f":11,"grn_op_but\u306f":11,"grn_op_or\u306f":11,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":11,"grnslap\u306f":132,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":35,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":35,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":12,"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":12,"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":12,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":12,"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":12,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":34,"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":12,"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":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"groonga\u306e\u30ab\u30e9\u30e0\u306f":182,"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":12,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":73,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":11,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":14,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":12,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":35,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":12,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":12,"groonga\u306e\u7d44\u8fbc\u578b\u304b":85,"groonga\u306epackag":12,"groonga\u306f":14,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":11,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[193,195],"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":195,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":11,"groonga\u3084mysql\u306erpm":12,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":10,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":10,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":134,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":12,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":12,"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":77,"groonga\u3092build\u3059\u308b\u969b\u306b":119,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":134,"groonga\u30b3\u30de\u30f3\u30c9\u306b":35,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"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":133,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":35,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":134,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"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":11,"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":11,"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":11,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":77,"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":12,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":119,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":119,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":111,"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":133,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":132,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":119,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[119,133],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":119,"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":132,"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":82,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":77,"groonga\u5358\u4f53\u3067test":134,"groonga\u53ca\u3073groonga":134,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[82,83,85,87,90,91,93,97,98,99,111,118,119,122,123],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":77,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":134,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":132,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":134,"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":134,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":85,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":87,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":90,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":91,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":93,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":97,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":99,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":111,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":118,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":119,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":122,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":123,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":142,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":144,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":145,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":150,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":152,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],"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":10,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066autogen":12,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"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":12,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":12,"groonga_org_path\u306bgroonga":12,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":36,"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":63,"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":63,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":12,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":12,"gz\u306eversion\u304a\u3088\u3073vers":12,"hat\u7cfb":12,"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":12,"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":12,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"help\u3067\u51fa\u529b\u3055\u308c\u308b":37,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":14,"hiroshi\u3055\u3093":35,"hiroshi\u3055\u3093\u304c\u5831\u544a":35,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"homebrew\u306e\u66f4\u65b0":[],"homebrew\u3078pul":12,"hook\u306e\u5b9f\u884c\u9806\u4f4d":55,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":55,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":134,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":12,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":133,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":132,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":35,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,"http\u306e\u5834\u5408":133,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":133,"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":133,"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":35,"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":60,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":50,"import":[0,12,28,33,37,39,40,46,50,75,76,117,121,127,135,157,166,168,170,171,180,186,202],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":47,"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":57,"indexbuf\u306e\u30b5\u30a4\u30ba":47,"init\u76f4\u5f8c\u306e\u72b6\u614b":50,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":132,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":134,"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":12,"int":[33,39,45,46,47,50,51,53,54,55,56,57,59,60,61,63,64,65,66,69,164],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":134,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":12,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"js\u306a\u3069":12,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":64,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"key\u306b\u306f":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"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":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":63,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":63,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":64,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":63,"key\u3092\u8fd4\u3057\u307e\u3059":60,"key_type\u306bt":63,"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":193,"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":193,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":63,"keybuf\u306e\u30b5\u30a4\u30ba":63,"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":12,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":12,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":37,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":35,"libedit\u5bfe\u5fdc":34,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":14,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":12,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"load\u30b3\u30de\u30f3\u30c9":34,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":12,"localstatedir\u3092\u4f7f\u7528":35,"log\u3067\u3059":133,"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":134,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":77,"log_level\u306f":97,"log_put\u306f":98,"log_reopen\u306f":99,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":99,"long":[33,40,41,56,59,114,121,131],"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":182,"lucid\u304b\u3089":35,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":12,"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":35,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"man\u3092\u8ffd\u52a0":34,"markdown\u30d1\u30fc\u30b5\u30fc":12,"marverick\u306b\u5909\u66f4":35,"masahiro\u3055\u3093":35,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":195,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":64,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":64,"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":64,"max\u3068common":64,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":64,"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":64,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":12,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":34,"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":35,"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":37,"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":37,"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":14,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":64,"mooz\u3055\u3093":37,"mooz\u3055\u3093\u304c\u4fee\u6b63":37,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":60,"msg\u306fcom\u306b\u3088\u3063\u3066":9,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":9,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":63,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":34,"n_builtin_type_names\u306b\u306f":51,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":60,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":50,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":61,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":66,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":60,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":47,"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":63,"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":63,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[47,60,63],"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":63,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[47,60],"namebuf\u306e\u30b5\u30a4\u30ba":[47,60],"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":12,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"new":[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":47,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":34,"null":[],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":63,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[47,63],"null\u306a\u3089temporari":51,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":50,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":34,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":51,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":63,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":55,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":55,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":55,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":55,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":60,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":60,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":60,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":60,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":60,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":60,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":51,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":58,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":60,"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":58,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":60,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":58,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":58,"obj\u306f":60,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":60,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":60,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":60,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":62,"obj\u3092lock\u3057\u307e\u3059":60,"obj\u3092unlock\u3057\u307e\u3059":60,"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":60,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":67,"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":55,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":55,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":55,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":61,"object\u578b\u306fv1":182,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":55,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":60,"offset\u306f":63,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":63,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":12,"ongaeshi\u3055\u3093":35,"ongaeshi\u3055\u3093\u304c\u5831\u544a":35,"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":62,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":47,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":134,"org\u304c\u30db\u30b9\u30c8\u3092":12,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":134,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":134,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":134,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"org\u306edoc":12,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":12,"output_columns\u304b\u3089_value\u3092\u524a\u9664":35,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":93,"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":12,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":11,"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":64,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"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":12,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":134,"path\u3092":35,"pc\u306bgroonga":36,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":133,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"po\u306e\u5b9f\u884c":[],"po\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":12,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":12,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[144,145],"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":144,"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":145,"point\u578b\u306e\u5024":[144,145],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[144,145],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"public":41,"push\u3057\u3066groonga":12,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":36,"quit\u306f":111,"rb\u3092\u8ffd\u52a0":35,"release\u306e\u5b9f\u884c":[],"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":12,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":12,"repositories\u914d\u4e0b\u306b":12,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"request\u3092\u9001\u308a\u307e\u3057\u305f":12,"request\u3092\u9001\u308a\u307e\u3059":12,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":63,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":11,"return":[],"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":57,"root\u306b\u5909\u66f4":35,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":133,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":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":12,"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":12,"s3ki\u3055\u3093":35,"s3ki\u3055\u3093\u304c\u5831\u544a":35,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"scorer\u306f":117,"scr\u3067\u3059":134,"scr\u306e\u4e2d\u8eab\u304c":134,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":134,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[142,144,145,150,152],"search\u3092\u884c\u3044":[63,64],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":64,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":47,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":47,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":134,"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":34,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":77,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"select\u30b3\u30de\u30f3\u30c9":34,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":134,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":134,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":12,"sh\u306e\u307f\u306a\u3089\u305a":14,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":14,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":12,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":14,"shibuya\u3055\u3093":35,"shibuya\u3055\u3093\u304c\u5831\u544a":35,"shimada\u3055\u3093":35,"shimada\u3055\u3093\u304c\u5831\u544a":35,"short":[75,135],"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":182,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":85,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":35,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"shutdown\u306f":118,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":37,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":63,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,"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":12,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":12,"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":12,"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":14,"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":12,"static":[37,41,65,136,201],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":134,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":35,"status\u30b3\u30de\u30f3\u30c9":34,"status\u30b3\u30de\u30f3\u30c9\u306f":119,"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":142,"string\u306b":11,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"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":63,"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":63,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":63,"table\u304c":63,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":47,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":63,"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":64,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":63,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":63,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":63,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":63,"table\u306ecolumn":63,"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":11,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":63,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":63,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":63,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":63,"table\u306fcolumn\u3068\u306f\u5225\u306b":63,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":63,"table_list\u306f":122,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":123,"takahiro\u3055\u3093":35,"takahiro\u3055\u3093\u304c\u5831\u544a":35,"takahiro\u3055\u3093\u304c\u63d0\u6848":35,"takashi\u3055\u3093":37,"takashi\u3055\u3093\u304c\u5831\u544a":37,"takuto\u3055\u3093":35,"takuto\u3055\u3093\u304c\u5831\u544a":35,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":134,"textile\u30d1\u30fc\u30b5\u30fc":12,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":57,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":195,"tokenbigram\u306a\u3069":195,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":195,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":193,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":193,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":195,"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":193,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":195,"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":195,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":36,"tokenmecab\u3067\u306f":195,"tokenmecab\u306e\u5834\u5408":195,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":193,"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":193,"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":193,"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":195,"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":195,"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":195,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":195,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"tomita\u3055\u3093\u304c\u5831\u544a":35,"tomotaka_ito\u3055\u3093":37,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":37,"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":145,"true":[34,40,41,75,83,84,85,86,87,88,89,90,92,94,95,96,97,98,99,100,101,103,104,105,108,109,110,113,114,115,116,117,121,123,124,125,129,141,143,144,145,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,179,182,198,199,200,201,203,204,206,207,208],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":37,"try":[3,33,45,133,180,185,203,204],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":10,"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":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":10,"twitter\u7de8":[],"txt\u306b\u307e\u3068\u3081\u307e\u3059":12,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":12,"txt\u306e\u5185\u5bb9":12,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":58,"ubuntu\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":12,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"ueno\u3055\u3093":[35,36],"ueno\u3055\u3093\u304c\u5831\u544a":36,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":35,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":35,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":14,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":34,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":61,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u306e\u4e2d\u306b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":11,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":11,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":11,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":11,"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":12,"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":14,"value\u304c\u5c5e\u3059\u308b\u578b":122,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":60,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"var":[11,28,33,61,69,86,131,133,135,190],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":77,"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":12,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":77,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":35,"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":77,"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":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"virtualbox\u306fsourc":12,"vmware\u306a\u3069":12,"void":[38,45,48,51,52,59,60,63,64,65,68,69],"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"web\u7ba1\u7406\u753b\u9762":34,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":37,"while":[0,33,39,40,51,88,96,101,124,127,159],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":37,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":134,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"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":12,"windows\u5411\u3051":12,"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":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"windows\u7cfb":12,"worker\u306f":9,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":9,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":12,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":12,"x\u3067\u306frealloc":35,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"x\u306e\u304a\u77e5\u3089\u305b":[],"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":12,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":12,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"yum\u306e\u5834\u5408":12,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"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":12,aba:[199,201,208],abbrev:143,abc:33,abcd:106,abi:33,abl:[153,168,170,171,172],abort:41,about:[],abov:[17,21,28,31,33,39,94,100,114,117,121,135,138,141,148,149,151,154,161,166,174,175,177,180,199,201,203,204,207,208],absolut:[109,110,113],acccess:190,accept:[0,33,37,39,41,79,114,129,133,138,141,143,158,186,192,201,203,204,207,208],access:[],accessor:[33,63],accident:40,accord:[143,198],accordingli:135,account:[2,41],accross:39,accuml:40,accumul:117,accur:[0,153],achiev:100,acquir:45,acronym:[184,192],across:143,action:40,actual:[40,41,100,102,103,105,135,168,198,201],add:[],addit:[],addition:[33,208],additional_configure_opt:40,address:[33,37,39,133,138,192,205],address_is_in_us:192,address_is_not_avail:192,adisk:167,adjac:[157,180],adjust:[],admin:[33,35,37,39,40,41],admin_html:[37,133],administr:[],advanc:[],advantag:[0,153,190],affect:[33,39,40,41],afr:[199,201,208],after:[17,18,28,31,33,37,39,40,41,45,54,68,89,94,108,135,138,146,147,158,161,178,179,181,198,200,201,205],again:[33,41,45,135,159],against:[],againt:117,agaist:39,ago:174,ahost1:167,aim:40,aio:40,aki:41,akihabara:208,akinori:33,akio:[33,37,39,40],akira:41,alert:[41,97,98,133,135,160],algolithm:156,algorithm:[37,81,143],ali:84,alic:[84,88,117,124,129,135,141,151,157,180,186,204],alisa:151,all:[0,17,28,33,37,39,41,47,50,51,54,75,79,81,84,86,88,89,93,94,95,96,101,103,104,108,109,113,115,116,117,121,124,125,126,127,129,135,141,156,157,158,159,160,161,167,174,177,178,179,180,181,182,186,192,201,204,207],all_record:39,alloc:[],alloc_count:[119,133,135,164,192,201,205],allow:[0,25,33,39,139,153,201,205],allow_column:[117,157],allow_leading_not:117,allow_pragma:117,allow_upd:[117,157],almost:[37,117,181,184,196],alphabet:[41,103,117,121,127,175,180],alreadi:[41,45,69,89,95,108,127,139,159,181,201,203],also:[],although:135,alwai:[0,33,41,65,78,86,101,117,120,126,135,157,158,174,181,192],amazon:117,amd64:12,among:[],amount:39,analysi:[0,28,158],analyz:[0,37,39,135,180],anchor:[],ani:[0,24,28,33,84,95,103,106,115,116,117,120,125,126,127,133,135,146,147,151,153,154,157,166,168,180,182,186],anim:200,ann:12,annot:40,anonym:178,anoth:[0,33,39,53,84,117,166],api:[],appear:[0,41,80,117,127,153,157,158,166,168,201],append:[39,53],apper:117,appl:161,appli:[],applic:[0,20,37,41,133,135,153,158,166,186],approach:143,approv:41,approxim:[37,39,143],appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitud:14,arai:33,aramaki:37,arc:127,architectur:[0,12,41,133],archiv:[],area:0,aren:[33,39,41,103,117,121,135,153,157,163,178,181,186],arg1_nam:167,arg1_valu:167,arg2_nam:167,arg2_valu:167,arg3_valu:167,arg_list_too_long:192,argc:65,argument1:[158,168],argument2:[158,168],argument:[33,37,39,40,41,50,69,94,133,136,143,146,147,148,149,151,153,154,155,158,167,168,172,189,192,201,203,205],argument_name1:136,argument_name2:136,argv:65,arithmet:[],armhf:41,arnaud:37,around:[153,163],arrai:[],arrang:201,art:[158,204],articl:203,articles2:203,articles_cont:203,arugment1:158,asami:40,asc:12,ascend:[102,104,117,163,199,201,208],ascii:[157,158,180],askmonti:41,assgin:158,assigend:157,assign:[],associ:[37,69,92,95,117,198,200,201],assum:[50,61,114],atsushi:[33,41],attach:[17,161,179],attent:[117,206],attr_setpshar:40,attribut:[106,107,127,128,148],atv:[199,201,208],auth_bas:[135,186],auth_basic_user_fil:[135,186],authent:[],author:135,auto:[39,41,101,120],autoconf:[6,37],autogen:[6,12,17,39],automak:[6,35],automat:[17,33,51,94,109,110,113,131,135,157,158,178,200,201,206],autoreconf:12,autotool:[3,5],avail:[],averag:[41,117],avg:[41,103,117,132],avoid:[],awar:69,ayumu:[33,41],back:[135,158,167],background:133,backslash:[40,53,157],backup:[51,93],backward:[33,39,41,129,186],bad:[0,40,41],bad_address:192,bad_file_descriptor:192,bar:121,base:[0,17,24,25,26,28,30,39,40,41,54,114,117,127,135,136,138,139,146,147,153,157,158,168,169,170,172,174,175,177,180,185,190,204,205],basebal:[200,203],bash:[28,33],basi:201,basic:[],batch:39,bc009774:12,becam:[41,190],becaus:[0,6,7,8,21,26,33,39,41,51,78,84,85,88,89,94,100,103,109,113,117,121,124,126,135,138,141,149,151,153,154,157,158,159,161,164,166,167,168,170,174,175,176,177,178,179,180,181,184,185,186,190,192,198,200,201,203,206,207],becom:[0,33,42,143,182,198],been:[12,33,88,124],befor:[28,33,38,39,68,75,81,101,108,109,113,117,126,135,166,167,174,175,176,198,201],before_instal:21,beforehand:26,beg:[167,180],begin:[132,167,180],behav:[138,143],behavior:[33,39,41,141,151,180],behaviour:[40,93],beijin:143,bellow:180,belong:[71,182,199],below:[13,88,95,124,157],benchmark:[],benefit:190,bernard:33,best:0,beta:42,better:[0,41,94,117,158,203],between:[],big:[41,135],bigram:[],bill:[33,193,195],billiard:[193,195],bin:[18,28,31],binari:[],bind:[20,21,33,37,39,42,133,146,147,156],binlib:12,bison:12,bit:[21,23,24,25,26,29,30,31,117,134,157,158,182,198],black:[161,163],blank:[33,161,180],block:[40,121,135,158,198],blog1:203,blog2:203,blog:[],blog_bodi:195,blog_comment_index:154,blog_cont:154,blog_titl:201,blogroonga:[],bm25:[168,170],bob:[88,117,124,129,135,141,151,157,186,204],bodi:[],book:158,bookmark:[75,93],bookmark_index:75,bookmark_titl:93,bool:[40,84,125,157,179,182,198,206],boost:174,border:[39,127,141],borderlin:[100,102,105],boston:204,both:[0,23,24,25,26,30,31,33,71,75,78,85,103,117,153,157,158,159,167,170,174,178,186,192,204,208],bottom:54,bottom_right:[37,145],bottom_right_point:54,bound:41,box:117,brand:33,brasil:143,brasillia:143,brazil:199,brew:[18,27],bring:201,british:207,broadcast:204,broken:[33,37,39,40,41,47,51,96,131],broken_pip:192,brooklyn:204,brother:157,browser:[17,28,136,205],bsd:[5,7,8,28,33,37,41],buf_siz:[47,60,63],buffer:[33,40,50,53,56,60,82,203],bug:[],build:[],buildabl:37,builder:56,built:[],builtin:[],builtin_type_nam:51,bulk:[33,53],bump:[33,40,41],bundl:[17,33,39,40,41,151],button:[17,39,40],bye:[103,117,125,157,158,179],cach:[],cache_hit_r:[119,135,164,192,201,205],cache_limit:[],cache_previ:46,calc_target:[],calc_typ:[],calcul:[39,40,41,115,117,138,143,163,204,208],call:[],caller:61,calro:141,camp:204,can:[],cancel:[41,79,114],cancel_request_is_accepted_or_not:114,candid:[120,138,174],candidate1:120,candidate2:120,candidate_1:138,candidate_2:138,candidate_n:138,cannot:[],capit:201,caplit:[40,41],care:[17,86,100,117,157,170,174],carefulli:75,carlo:[88,124,129],cas_error:192,cascad:[],cast:[],cat:12,categor:[117,125,127],caus:[33,37,39,40,41,121,157,158,198],ceekz:40,cenos6:39,cent:180,center:[0,144],cento:[],central:204,certain:208,cflag:29,chain:154,chang:[],chapter:201,charact:[],charli:204,chart:37,check:[],child:94,china:[143,199],choic:[],choos:[5,6,7,41,95,117,121,133,135,167,180,198],chracter:[121,153,161],chracterist:178,christian:33,chroot:12,chunk:[33,82,181,196],circl:[0,163],cirit:135,citi:[143,163,204],clang:[14,33,39,40,41],clarifi:41,classif:199,clean:[6,7,12,14,33],clear:[12,37,39,41,47,60,96],clearli:33,clearlock:[],cleverli:89,click:117,clone:[],close:[95,146,178],close_tag1:146,clumn:181,cmake:[3,5,6],cmp0014:41,code:[],col1:60,col2:60,col3:60,collaps:39,colleagu:3,collect:[0,78,204],color:161,colum:203,column1:[11,39,40,41,103,117,158,168],column2:[11,39,40,41,103,117,158,168],column3:168,column_1:154,column_2:154,column_3:154,column_copi:[22,33,43,76],column_cr:[],column_index:[33,41,75,85,86,93,103,117,141,146,147,149,151,153,154,157,158,159,167,168,170,179,181,195,200,201,203,204,207],column_inform:86,column_information1:86,column_information2:86,column_list:[],column_list_head:86,column_n:154,column_nam:[94,95,108],column_name1:95,column_name2:95,column_name_1:117,column_name_2:117,column_name_n:117,column_remov:[],column_renam:[],column_scalar:[84,85,86,88,92,93,94,96,100,103,104,108,117,124,125,129,141,143,146,147,148,149,151,153,154,157,158,159,167,168,170,179,181,195,199,200,203,204,207],column_type_1:117,column_type_2:117,column_type_n:117,column_vector:[33,40,41,75,84,85,86,92,117,154,155,198,200,204],columnn:39,com:[6,7,8,12,13,17,21,117,198,199,201,205,208],comamnd:186,combin:[],combind:157,come:[163,204],comma:[33,95,158,198,199,201],command:[],command_nam:[136,205],command_vers:[33,77,119,135,136,146,147,148,153,155,164,192,201,205],commandinput:33,commands_column_list:86,commands_column_renam:88,commands_table_cr:122,commands_table_renam:124,comment:[],comment_cont:154,comment_index:204,comment_nam:154,comments2:203,comments_cont:203,comments_loc:204,commit:[6,7,17,41],commnad:[31,77],common:[30,37,39,63,64,117,121,133,156,157,158,178,182,203],commonli:[0,167],compar:[0,33,39,41,117,153,157],comparison:[],compat:[24,25,26,30,33,41,103,106,129,135,136,161,186],compil:[6,7,28,33,37,40,41],complet:[],complex:[33,39,40,117,158,167],complianc:135,composit:161,compress:[],compress_lzo:85,compress_zlib:85,comput:[39,69,158,168,170,174,175,177,181],conbin:[117,156],conbind:157,concaten:203,concatin:[39,40,138],concept:41,concret:[84,117,199,200,203],concurr:160,cond:40,cond_sign:65,condit:[],conditin:157,condition1:158,condition2:158,conditional_probability_threshold:[37,120],condtion:157,conf:[33,135,181,190,196],config:[8,28,31,34,37,39,133],configur:[],confirm:[],confus:[167,180],conifugr:21,connect:[1,33,39,133,192,201],connection_refus:192,consid:[41,100,121,186,190,200,203,207],consist:[33,41,117,157,172,177,180,192,201],consol:135,construct:[],construnct:33,consum:41,contact:17,contain:[],content:[33,37,40,41,69,78,86,103,117,135,148,151,153,154,157,158,159,168,179,181,186,192,200,203,204],content_index:168,content_type_len:39,context:[33,37,46,50,53,60,103,135,153,154],continu:[21,39,40,41,127,133,175,180],contrast:[0,41,68,133,151,201],contrib:12,control:[],conveni:[0,1,28,37,100,174,185],convens:39,convent:39,convers:[37,135],convert:[33,41,80,158,161,178,198,204],coordin:[143,198],copa:33,copi:[33,39,69,84,88,124],copyright:41,core:[],coremodul:135,correct:[],correctli:[33,39,201],correspond:[60,94,100,103,117,120,136,174,175,176,177],cosmo0920:[40,41],cost:[159,180],could:[39,198],couldn:[33,39],count:[0,33,100,117,200,204],countri:[92,199,205],cours:199,cover:[0,153],coverag:14,cpu:[],cpuinfo:[24,25,26,30],crash:[33,37,39,40,41,88,94,96,124],crch:127,creat:[],created_at:103,createfilemap:33,createrepo:12,creation:[33,37,40,201],creteria:201,crit:[97,98],criteria:201,critic:[28,39,69,133,160],ctrl:[133,192,201],ctx:[11,46,47,50,51,53,54,55,56,57,58,59,60,61,62,63,64,66,67,69],curl:[21,27,28,39,114,133,135,138,164,186],current:[17,33,37,46,49,50,51,81,84,88,95,101,121,124,135,163,201,204],current_nfthread:65,cursor:[37,54],custom:[],customiz:153,cutter:[6,7,12,14],cutter_check_leak:14,cutter_debug:14,cutter_dir:12,cutter_source_path:12,cve:41,cxxflag:29,daemoinz:39,daemon:[],dai:[33,100,158,159,160,172,204],daiki:[35,36,37,39],danger:[47,51,88,96,124,186],dash:28,dat:[38,39,40],dat_kei:178,data:[],data_set_nam:120,databas:[],database_path:[],database_unmap:[],datail:117,dataset:[],date:[],dave:141,daylight:41,db1:186,db2:186,db_path:[33,133,135,136,164,184,189,192,201,205],dbm:[0,153],dbmss:0,dcb314:41,dcmake_install_prefix:[7,8,31],ddl:[41,134],deafult:37,deatil:117,deb:[12,25,30,33,37,39,40,41],debian:[],debootstrap:12,debug:[6,7,8,33,41,97,98,127,133,135,160],debugg:[6,7],decid:166,decim:[158,182,198],decreas:[6,7,33,65,180],decrib:135,decrypt:12,defalt:35,default_command_vers:[119,135,164,192,201,205],default_token:[],defin:[33,137,158,159,166,172,174,182,192,201],define_selector:[],definion:158,definit:[39,92,103,117,141,143,146,147,148,149,151,153,154,155,157,158,167,168,170],defrag:[],degrad:33,degre:[37,75,158,198,208],delet:[],delimit:[0,33,40,127,177,180,198],demerit:178,demo:200,depend:[],deprec:[33,37,39,40,41,77,83,113,117,121,133,143],deriv:[139,190],descend:[33,117,120],describ:[3,5,6,7,8,17,18,19,20,21,23,24,25,26,27,28,29,30,31,33,41,44,69,75,76,78,81,84,86,88,89,94,95,96,100,101,102,103,104,105,106,108,114,115,116,117,121,124,125,126,127,129,130,131,133,140,148,154,157,158,161,162,163,166,167,168,170,172,173,174,175,177,180,181,192,201,203,204],descript:[],design:[39,117,184,198],desin:190,desktop:[8,31],dest:[132,133,198],dest_kei:63,dest_key_s:63,destin:[33,84],detail:[0,1,3,17,24,25,26,28,30,33,39,40,41,69,75,79,84,86,89,94,103,109,110,113,117,121,124,125,127,134,135,136,151,157,158,160,167,181,182,190,198,199,201,208],detect:[6,28,33,37,39,127,135],determin:[117,156,201],dev:[2,6,7,12,14,25,30,33,37,39,40,41],devel:[24,26],develop:[],devic:0,dewangga:33,dgrn_with_debug:7,dgrn_with_mrubi:[7,8],dialog:40,dic:26,dictionari:[26,33,35,39,40,41,161,180],didn:41,differ:[],difficult:0,digest:186,digit:[41,103,117,121,160,167,175,180],dinam:156,dinner:0,dir:134,direct:[],directli:[158,204],directori:[6,7,17,28,33,37,39,40,41,69,135,138,139,166],directory_not_empti:192,disabl:[18,28,33,35,37,38,39,40,41,117,133,135,138,157,160,174],discard:40,discuss:[2,19],disk:[33,89,94,108,121,167,203],displai:39,dist:12,distanc:[0,39,143,158,163,208],distinct:[32,138,206],distribut:[12,23,24,25,26,28,30,31,39,41,103,172],divid:[0,158,170,198],divis:[],dll:[37,39,41,69],do_gqpt:134,do_gqtp:134,do_http:134,do_loc:134,doc:[12,16,17,18,33,37,38,39,40,41,135,207],doc_bodi:207,documenataion:78,document:[],document_index:[146,147],document_vers:12,document_version_ful:12,documents_content_index:[151,153],docutil:12,doe:[0,39,40,65,75,117,120,131,135,154,157,158,190,198,201],doesn:[28,33,39,40,41,45,69,78,84,86,88,89,102,103,108,114,117,121,124,126,127,135,141,153,157,158,159,161,163,166,167,168,170,172,174,175,178,179,180,181,185,186,207],domain:[],domain_error:192,don:[17,23,28,33,37,41,46,49,50,53,65,75,86,89,94,95,96,101,102,117,121,133,135,136,157,158,159,161,164,166,168,170,171,177,180,186,192,201,205],done:[41,45,46,94,117,135],dot:39,doubl:[33,37,39,40,41,95,106,117,121,127,157,158,178,182,201],doubt:199,down:[],downcas:161,download:[12,24,25,26,27,28,29,30,31],downtim:[],draw:200,drildown:[],drill:204,drilldown:[],drilldown_calc_target:[],drilldown_calc_typ:[],drilldown_limit:[],drilldown_offset:[],drilldown_output_column:[],drilldown_result1:117,drilldown_result2:117,drilldown_result:117,drilldown_result_1:117,drilldown_result_2:117,drilldown_result_for_column1:117,drilldown_result_for_column2:117,drilldown_result_for_kei:117,drilldown_result_for_labeled_drilldown:117,drilldown_result_n:117,drilldown_sortbi:[],drilldown_xxx:117,droonga:[149,172],drop:[33,37,39,40,41],due:[0,153],dump:[],dump_index:[],dump_plugin:[],dump_record:[],dump_schema:[],duplic:41,dure:[39,201],dynam:[0,38,135,201],each:[],each_nam:33,ealier:39,eanbl:6,ear:127,earch:127,earlier:[33,37,129,161],easi:[0,41,133,156,166,168,186,205],easier:168,easili:41,eclips:17,ecmascript:[39,40,117,156,158],edict2grn:41,edit:[],edit_dist:[],editor:17,editrc:37,effect:[33,39,94,95,133,204],effici:[0,75,101,203],egg:203,eight:201,either:[19,40,117,141,157,158,167,203],eito:40,el5:24,elaps:[37,78,138,158,160,164,182],elapsed_tim:[78,160],element1:[75,158],element2:[75,158],element3:75,element:[33,39,40,41,75,78,80,153,198,201],elfr:39,elimin:40,ellip:[143,144],els:[33,41],emac:17,embed:[0,33,133,135,147,153,166],embedd:33,emerg:[97,98,133,135,160],emit:39,emphas:148,empti:[33,37,40,41,86,117,157,182],enabl:[],enable_tokenized_delimit:127,enci:134,enclos:[95,201],encod:[],encodiong:158,encount:[23,24,25,26,30,31],encyclopedia:182,end:[33,132,143,157,158,164,167,180],end_of_data:192,end_tagn:146,endian:41,endpoint:[138,139],eng:[120,174],engi:[120,174],enginen:174,english:[2,14,17,18,19,37,40,41,117,174,180],enhanc:42,enorm:200,enough:[0,33,41,196,203],enourm:177,ensur:175,enter:[40,192,201],entiti:0,entranc:201,entri:[33,40,46,55,81,83,84,85,87,90,91,92,95,96,103,117,123,146,147,154,157,158,181,203,204],entries_20150708:103,entries_20150709:103,entries_content_index:[117,157,158,181],entries_content_index_20150708:103,entries_content_index_20150709:103,entries_key_index:[117,157,158,181],entries_key_index_20150708:103,entries_key_index_20150709:103,entries_numb:33,entries_yyyymmdd:103,entry1:84,entry_20150708:103,entry_20150709:103,entry_bodi:85,entry_selector:90,enumer:201,env:166,enviromn:33,environ:[6,7,8,21,23,24,28,31,33,37,38,40,41,135,166],epel:[24,39],epoch:[198,204],equat:143,era:0,eric:141,errno:[33,41],error:[],error_cod:69,error_loc:78,error_messag:78,errror:167,escal:[],escap:[],escape_charact:53,escaped_charact:53,escaped_queri:53,escaped_str:53,escaps:[146,147,153],especi:33,essenti:[25,30,135],establish:[192,201],estim:[33,54,196],estimate_s:33,etc:[3,12,25,39,135,166,181,186,190,196,198,201],etim:132,euc:[40,133,180],euc_jp:28,eval:115,evalu:[40,115,154,157,158,167,180],evaluated_valu:115,evalud:115,even:[0,23,24,25,26,30,31,39,40,41,100,158,170,174,203],event:[33,186],event_dataset:[137,139],event_queri:[120,137,139,174,175,177],event_typ:137,ever:40,everi:199,everyon:205,evil:158,exact:[11,101,117,119,121,178],exactli:196,exampl:[],exce:[33,39,40],exceed:196,excel:166,except:[26,37,39,41,75,84,115,116,117,121,127,135,149,153,157,163,167,178,180,181],exclam:33,exclud:[39,40,41,93,95,100,102,103,105,141],exclude_t:40,excut:40,exec_format_error:192,execut:[],exist:[1,18,33,39,40,41,51,94,95,102,103,104,108,114,117,131,133,135,139,141,149,158,168,172,180,190,192,198,201,203,208],exit:[],exit_failur:68,exit_success:68,expand:[],expans:[],expect:[41,167,180,198],experiment:[33,37,38,39,40,41,46,51,94,100,101,102,103,104,105,106,110,114,115,116,131,146,147,153,167,169,170,172,180],expir:[33,81,135],explain:[33,198,201],explicitli:[],exploit:0,expnas:166,expornenti:158,expr:53,express:[],expresss:156,ext:127,extend:[41,167,203,207],extens:164,extract:[],extrct:158,f10399c0:12,facet:117,fact:[117,200],faction:204,factor:[41,117],fail:[33,37,39,40,41,45,46,69,84,89,94,109,110,113,117,121,124,157,201],failur:[12,33,39,41,45],fals:[12,34,40,41,84,85,88,89,92,96,108,114,127,129,141,146,149,151,154,157,158,180,182,198,206],famili:[127,158],familiar:199,fast:[0,71,78,95,103,117,121,127,143,146,147,148,149,153,157,158,163,167,168,170,178,185,186,200,201,203],faster:[28,37,40,41,180,184],fatal:41,fault:39,favorit:[],favorited_bi:204,fbnteqr:33,featur:[],feb:100,fedora:[],fedoraproject:24,feel:41,fetch:[41,177,203],few:[117,185,186],ff01:33,ff1f:33,ff76:161,ff9e:161,ffef:180,fff0:180,fffe:127,field:[33,86],figur:163,file:[],file_corrupt:192,file_exist:192,file_too_larg:192,filename_too_long:192,fill:[138,158],filter:[],fin:61,find:[0,3,17,18,28,31,63,84,88,117,120,124,146,147,153,161,172,174,175,177,179,180,201],finish:[68,114,160],firefox:17,firewood:[39,40],first:[17,28,31,33,37,40,41,50,69,78,86,103,114,117,121,135,138,146,147,153,157,158,166,167,168,186,190,198,200,201,203,204,207],five:[78,141,201],fixed_size_type_vector_column:33,flag:[],flanc:143,flexibl:[0,151,156],flow:[],flower:198,fluent:13,flush:[33,94],flushviewoffil:33,focus:201,folder:[8,31],follow:[],followe:204,fontain:37,footnot:[143,201],forc:39,force_prefix:[33,127,180],foreground:133,forget:75,fork:[17,133],form:[37,40,117,135,138,156,157,161,189,192,201,204,205],form_1:201,form_2:201,format:[],former:[161,166],formula:[143,196],found:[28,31,39,40,54,63,117,176,180],four:[78,84,133,160,178,201],fraction:[0,198,204],fragment:91,francisco:143,frank:141,freebsd:[],freed:[41,46,51],freq0:177,freq1:177,freq2:177,frequenc:[33,41,120,168,169,170,202],frequency_threshold:[37,120,174,175,177],frequent:168,fresh:159,friend:[3,200],friendli:39,friendship:200,from:[],from_column:84,fromtabl:84,fsf:39,ftb:42,ftp:[12,134],ful:127,fullfil:190,fulli:[39,135],fulltext:[24,25,26,30,44,103,117,121,127,133,146,147,151,153,157,158,161,163,178,190,203],fullwidth:33,fumiyasu:37,funa:41,func:[50,61,65,69],functin:158,function_nam:78,function_not_impl:192,furigana:120,further:198,futur:[37,40,75,100,106,115,116,143,167,186,192],fuzzi:121,g8029ddb:[119,201,205],ga54c5f8:134,garbag:[37,40,41,82],gat:[199,201,208],gb87d9f8:164,gcc:[24,26,28,29,37,39,40],gdb:[6,7],gem:12,gemfil:39,gener:[],genki:40,geo_dist:[],geo_distance2:[37,143],geo_distance3:[37,143],geo_in_circl:[],geo_in_rectangl:[],geodet:[182,208],geograph:[143,198],geoindex:[],geoloc:[],geometri:37,geopoint:[],geosit:200,get:[],getaddrinfo:39,getenv:33,gettext:[17,18],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,85],give:[0,151],given:[39,40,151,200],glib:40,global:[],glossari:[],gmo:41,gnu:[],gnupg2:12,gobject:33,gone:200,goo:[157,158],good:[0,17,28,103,117,125,127,157,158,159,179,180,203],googl:[117,157,168,170,171,176],goronga:31,goroo:184,got:[40,41],gpg:12,gpl:42,gqtp:[],grace:33,gram:[0,127,158,201],grand:204,graph:0,greas:198,gregex:40,grep:[24,25,26,30],grn1:203,grn2:203,grn3:203,grn:[93,135],grn_address_is_in_us:80,grn_address_is_not_avail:80,grn_api:53,grn_arg_list_too_long:80,grn_bad_address:80,grn_bad_file_descriptor:80,grn_between_too_many_index_match_ratio:41,grn_bool:60,grn_broken_pip:80,grn_builtin_typ:[60,66],grn_bulk:53,grn_bulk_vsiz:[50,53],grn_cach:[],grn_cache_clos:46,grn_cache_current_get:46,grn_cache_current_set:46,grn_cache_get_max_n_entri:46,grn_cache_open:46,grn_cache_set_max_n_entri:46,grn_cas_error:80,grn_column:[],grn_column_cr:47,grn_column_index:47,grn_column_index_upd:47,grn_column_nam:47,grn_column_name_id:47,grn_column_name_id_len:47,grn_column_name_kei:47,grn_column_name_key_len:47,grn_column_name_nsubrec:47,grn_column_name_nsubrecs_len:47,grn_column_name_scor:47,grn_column_name_score_len:47,grn_column_name_valu:47,grn_column_name_value_len:47,grn_column_renam:47,grn_column_t:47,grn_column_trunc:[41,47],grn_command_input_get_argu:33,grn_command_vers:[],grn_command_version_default:33,grn_command_version_max:48,grn_command_version_min:48,grn_command_version_st:48,grn_cond:65,grn_connection_refus:80,grn_content_json:49,grn_content_msgpack:49,grn_content_non:49,grn_content_tsv:49,grn_content_typ:[],grn_content_xml:49,grn_ctx:[],grn_ctx_at:[39,50],grn_ctx_batch_mod:41,grn_ctx_close:[37,41,50],grn_ctx_db:50,grn_ctx_fin:[39,50],grn_ctx_get:[47,50],grn_ctx_get_all_t:[33,50],grn_ctx_get_command_vers:50,grn_ctx_get_match_escalation_threshold:59,grn_ctx_get_output_typ:50,grn_ctx_init:[37,50],grn_ctx_open:[37,50],grn_ctx_per_db:[37,50],grn_ctx_recv:41,grn_ctx_send:[46,49,50],grn_ctx_set_command_vers:50,grn_ctx_set_fin:50,grn_ctx_set_match_escalation_threshold:59,grn_ctx_set_output_typ:50,grn_ctx_t:80,grn_ctx_use:50,grn_ctx_use_ql:41,grn_cursor_ascend:64,grn_cursor_by_id:64,grn_cursor_by_kei:64,grn_cursor_descend:64,grn_cursor_gt:64,grn_cursor_lt:64,grn_cursor_prefix:64,grn_cursor_rk:64,grn_dat:37,grn_dat_repair:38,grn_db:[],grn_db_creat:51,grn_db_create_optarg:51,grn_db_float:33,grn_db_int:60,grn_db_kei:38,grn_db_open:51,grn_db_recov:[41,51],grn_db_register_by_nam:36,grn_db_text:53,grn_db_touch:[35,51],grn_db_unmap:[33,51],grn_default_logger_get_path:39,grn_default_logger_get_rotate_threshold_s:33,grn_default_logger_set_path:39,grn_default_logger_set_rotate_threshold_s:33,grn_default_query_logger_get_path:39,grn_default_query_logger_get_rotate_threshold_s:33,grn_default_query_logger_set_path:39,grn_default_query_logger_set_rotate_threshold_s:33,grn_directory_not_empti:80,grn_domain_error:80,grn_enc_utf8:[52,64],grn_encod:[],grn_encoding_pars:52,grn_encoding_to_str:52,grn_end_of_data:80,grn_exec_format_error:80,grn_expr_add_var:53,grn_expr_alloc:53,grn_expr_append_const:[11,53],grn_expr_append_const_int:53,grn_expr_append_const_str:53,grn_expr_append_obj:[11,53],grn_expr_append_op:[11,53],grn_expr_clos:53,grn_expr_compil:53,grn_expr_creat:53,grn_expr_create_for_queri:11,grn_expr_estimate_s:33,grn_expr_exec:[33,50,53],grn_expr_get_keyword:53,grn_expr_get_var_by_offset:53,grn_expr_pars:53,grn_expr_syntax_escap:53,grn_expr_syntax_escape_queri:53,grn_expr_var:[61,69],grn_fals:60,grn_file_corrupt:80,grn_file_exist:80,grn_file_too_larg:80,grn_filename_too_long:80,grn_fin:[33,68],grn_float_valu:33,grn_function_not_impl:80,grn_geo:[],grn_geo_cursor_next:54,grn_geo_cursor_open_in_rectangl:54,grn_geo_estimate_in_rectangl:[37,54],grn_geo_point:54,grn_geo_select_in_circl:37,grn_geo_select_in_rectangl:[37,54],grn_get_default_command_vers:48,grn_get_default_encod:52,grn_get_default_match_escalation_threshold:59,grn_get_lock_timeout:45,grn_hook:[],grn_hook_entri:55,grn_hook_get:55,grn_hook_select:55,grn_hook_set:55,grn_id:[47,50,53,56,57,58,60,63,64,69],grn_id_nil:[50,53,63,64],grn_ii:[],grn_ii_buff:56,grn_ii_buffer_append:56,grn_ii_buffer_clos:56,grn_ii_buffer_commit:56,grn_ii_buffer_open:56,grn_ii_cursor_set_min:33,grn_ii_cursor_set_min_en:33,grn_ii_estimate_size_for_lexicon_cursor:33,grn_ii_estimate_size_for_queri:33,grn_illegal_byte_sequ:80,grn_improper_link:80,grn_in_values_too_many_index_match_ratio:41,grn_inappropriate_i_o_control_oper:80,grn_incompatible_file_format:80,grn_index_cursor:[],grn_index_cursor_next:[40,57],grn_index_cursor_open:57,grn_info:[],grn_info_typ:58,grn_init:[39,65,68,160],grn_input_output_error:80,grn_int32_value_float_valu:33,grn_interrupted_function_cal:[80,114],grn_invalid_argu:[60,63,64,80],grn_invalid_format:80,grn_invalid_seek:80,grn_io_use_spars:33,grn_io_vers:41,grn_is_a_directori:80,grn_itoh:37,grn_ja_skip_same_value_put:40,grn_log_level:69,grn_log_level_pars:33,grn_log_level_to_str:33,grn_log_path:39,grn_logger:39,grn_logger_info:39,grn_logger_reopen:39,grn_logical_range_filter_en:33,grn_logical_range_filter_threshold:33,grn_lzo_error:80,grn_match_escal:[],grn_mecab_chunk_size_threshold:33,grn_mecab_chunked_tokenize_en:33,grn_mutex:65,grn_network_is_down:80,grn_no_buff:80,grn_no_child_process:80,grn_no_locks_avail:80,grn_no_memory_avail:80,grn_no_space_left_on_devic:80,grn_no_such_devic:80,grn_no_such_device_or_address:80,grn_no_such_file_or_directori:80,grn_no_such_process:80,grn_not_a_directori:80,grn_not_enough_spac:80,grn_not_socket:80,grn_obj:[],grn_obj_add_hook:55,grn_obj_append:60,grn_obj_check:60,grn_obj_clear_lock:[37,60],grn_obj_clos:[11,41,50,57,60],grn_obj_column:60,grn_obj_column_index:[47,57],grn_obj_column_scalar:47,grn_obj_column_vector:47,grn_obj_compar:60,grn_obj_compress_lzo:47,grn_obj_compress_zlib:47,grn_obj_db:51,grn_obj_decr:60,grn_obj_defrag:60,grn_obj_delete_by_id:[37,60],grn_obj_delete_hook:55,grn_obj_expir:60,grn_obj_fin:[50,53],grn_obj_flag:[47,53,63,66,69],grn_obj_flush:33,grn_obj_flush_recurs:33,grn_obj_get:60,grn_obj_get_element_info:58,grn_obj_get_hook:55,grn_obj_get_info:58,grn_obj_get_nhook:55,grn_obj_get_rang:60,grn_obj_get_valu:[37,60],grn_obj_id:60,grn_obj_incr:60,grn_obj_init:60,grn_obj_is_builtin:[37,60],grn_obj_is_function_proc:33,grn_obj_is_lock:60,grn_obj_is_proc_proc:33,grn_obj_is_scorer_proc:33,grn_obj_is_selector_proc:33,grn_obj_is_t:33,grn_obj_key_float:66,grn_obj_key_int:66,grn_obj_key_norm:63,grn_obj_key_uint:66,grn_obj_key_var_s:66,grn_obj_key_with_si:63,grn_obj_lock:60,grn_obj_nam:60,grn_obj_path:[40,60],grn_obj_path_by_id:[38,60],grn_obj_persist:[47,63],grn_obj_prepend:60,grn_obj_reinit:60,grn_obj_remov:[33,37,60],grn_obj_renam:60,grn_obj_search:62,grn_obj_set:60,grn_obj_set_element_info:58,grn_obj_set_fin:61,grn_obj_set_info:58,grn_obj_set_mask:60,grn_obj_set_valu:[60,64],grn_obj_table_dat_kei:37,grn_obj_table_hash_kei:[63,64],grn_obj_table_no_kei:[63,64],grn_obj_table_pat_kei:[63,64],grn_obj_unlink:[50,60],grn_obj_unlock:60,grn_obj_user_data:67,grn_obj_vector:[50,53,60],grn_obj_with_posit:47,grn_obj_with_sect:47,grn_obj_with_weight:47,grn_object_corrupt:80,grn_op_adjust:[11,62],grn_op_and:[11,62],grn_op_and_not:62,grn_op_but:11,grn_op_cal:11,grn_op_or:[11,62],grn_op_push:11,grn_op_term_extract:33,grn_oper:[47,53,54,62,63],grn_operation_not_permit:80,grn_operation_not_support:80,grn_operation_timeout:80,grn_operation_would_block:80,grn_parse_query_flag:33,grn_pat_at:35,grn_pat_del:33,grn_permission_deni:80,grn_plugin_charlen:69,grn_plugin_command_cr:[41,69],grn_plugin_error:69,grn_plugin_expr_var_init:[41,69],grn_plugin_fin:69,grn_plugin_fre:69,grn_plugin_get_ruby_suffix:33,grn_plugin_get_suffix:37,grn_plugin_get_system_plugins_dir:37,grn_plugin_init:69,grn_plugin_isspac:69,grn_plugin_log:69,grn_plugin_malloc:69,grn_plugin_mutex:69,grn_plugin_mutex_clos:69,grn_plugin_mutex_lock:69,grn_plugin_mutex_open:69,grn_plugin_mutex_unlock:69,grn_plugin_proc_alloc:69,grn_plugin_proc_get_var:[41,69],grn_plugin_proc_get_var_by_offset:[41,69],grn_plugin_realloc:69,grn_plugin_regist:[36,69],grn_plugin_win32_base_dir:69,grn_plugins_dir:33,grn_post:[54,57],grn_proc:[],grn_proc_creat:61,grn_proc_func:[50,61,69],grn_proc_funct:69,grn_proc_get_info:61,grn_proc_get_typ:41,grn_proc_set_selector:41,grn_proc_typ:61,grn_ptr_init:[50,53],grn_ptr_value_at:[50,53],grn_pvector:[50,53],grn_qlog_path:39,grn_queri:39,grn_query_expander_tsv_synonyms_fil:166,grn_range_error:80,grn_rc:[45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,68,69],grn_read_only_file_system:80,grn_resource_busi:80,grn_resource_deadlock_avoid:[60,80],grn_resource_temporarily_unavail:80,grn_result_too_larg:80,grn_retry_max:80,grn_search:[],grn_search_optarg:[33,62],grn_select:117,grn_selector_func:41,grn_set_default_command_vers:48,grn_set_default_encod:52,grn_set_default_match_escalation_threshold:59,grn_set_lock_timeout:45,grn_snip:[39,41],grn_snip_clos:41,grn_socket_is_already_connect:80,grn_socket_is_already_shutdown:80,grn_socket_is_not_connect:80,grn_socket_not_initi:80,grn_stack_over_flow:80,grn_success:[45,46,47,50,51,53,68,69,80,160],grn_syntax_error:80,grn_tabl:[],grn_table_add:63,grn_table_at:[35,38,60,63],grn_table_column:63,grn_table_cr:63,grn_table_cursor:[],grn_table_cursor_clos:64,grn_table_cursor_delet:64,grn_table_cursor_get_kei:64,grn_table_cursor_get_valu:64,grn_table_cursor_next:[35,64],grn_table_cursor_open:[35,64],grn_table_cursor_set_valu:64,grn_table_cursor_t:64,grn_table_dat_kei:63,grn_table_delet:[33,63],grn_table_delete_by_id:[33,63],grn_table_differ:63,grn_table_get:[38,63],grn_table_get_kei:63,grn_table_group:[33,63],grn_table_group_flag:[33,63],grn_table_group_result:63,grn_table_hash_kei:[54,63],grn_table_lcp_search:63,grn_table_pat_kei:63,grn_table_renam:63,grn_table_s:[11,63],grn_table_select:[],grn_table_setoper:63,grn_table_sort:63,grn_table_sort_asc:63,grn_table_sort_desc:63,grn_table_sort_flag:63,grn_table_sort_kei:63,grn_table_trunc:[37,63],grn_table_upd:63,grn_table_update_by_id:63,grn_text_len:53,grn_text_printf:41,grn_text_valu:53,grn_text_vprintf:41,grn_thread_:[],grn_thread_get_limit:65,grn_thread_get_limit_func:65,grn_thread_set_get_limit_func:[65,126],grn_thread_set_limit:65,grn_thread_set_limit_func:65,grn_thread_set_set_limit_func:[65,126],grn_tokenizer_error:80,grn_tokenizer_query_open:39,grn_too_large_offset:80,grn_too_many_link:80,grn_too_many_open_fil:80,grn_too_many_open_files_in_system:80,grn_too_many_symbolic_link:80,grn_too_small_limit:80,grn_too_small_offset:80,grn_true:60,grn_type:[],grn_type_cr:66,grn_unknown_error:80,grn_unsupported_command_vers:80,grn_update_not_allow:80,grn_user_data:[],grn_zlib_error:80,grndb:[],grnline:201,grnslap:[],grntest:[12,13,35,37,39],grnwrap:201,gro:[138,153],gronga:[166,176],gronnga:176,groo:[117,138],groogna:[31,38,39,117,157],groogna_default_command_vers:186,groonga1:77,groonga_cache_limit:[],groonga_cli:158,groonga_clone_dir:12,groonga_database_auto_cr:[],groonga_dir:12,groonga_dist:39,groonga_get_thread_limit:65,groonga_log_level:[],groonga_log_path:[],groonga_n_record:40,groonga_org_path:12,groonga_path:134,groonga_query_log_path:[],groonga_set_thread_limit:65,groonga_vers:37,groongau0000ful:180,grooon:138,group:[],grroonga:176,gtar:29,gted:17,gtihub:37,guard:170,gurun:156,gurunavi:33,gzip:[],gzip_typ:186,had:[17,33,168],hai:11,half:161,halfwidth:161,hana:200,hanako:92,hand:[0,117,135,151,154,198,203],handl:[33,40,41,50,80,135,178,180,181,196,198],hang:40,hard:181,hardcod:100,hash:[],hash_index:204,hash_kei:178,hash_tag:204,hat:28,hatak:[33,41],have:[0,6,7,16,17,28,33,41,49,51,71,78,80,84,86,95,103,117,120,121,135,157,158,159,161,163,166,172,175,177,179,180,181,182,185,186,190,198,201,205],haystack:11,hdd:134,head:[41,117,132,135,192],header:[],heavi:[94,117,184],hello:[103,117,125,158,159,179,180],help:[],hemispher:39,hendro:40,here:[6,7,8,17,18,21,28,30,31,46,49,50,51,53,65,68,69,71,75,79,80,81,84,86,88,92,93,94,95,96,100,101,102,103,104,106,107,109,110,113,114,115,116,117,120,121,124,125,127,128,129,131,133,135,137,138,139,141,143,146,147,148,149,151,153,154,155,157,158,160,161,163,166,167,168,170,174,175,177,178,179,180,181,186,192,199,203,208],hereaft:0,hex:[158,200],hidden:0,hide:40,hideki:[33,40,41],high:[0,75,117,156],high_scor:84,higher:[117,120],highight_ful:146,highli:[168,170,171],highlight:[146,147],highlight_ful:[],highlight_html:[],hino:40,hiragana:[157,158,174,180],hiro:33,hiroaki:33,hiroshi:[33,37,41],hirotaka:33,hiroyuki:33,histori:37,hit:[40,117,156,206],hmm:204,hobbi:160,hoge:[133,142],hold:[198,202],home:[12,28,180],homebrew:[],homepag:134,hook:21,horikoshi:37,host1:167,host2:167,host:[6,7,8,21,37,133,134,172,192,205],host_name_or_ip_address:[192,205],hostnam:[39,133,134,135,136,192],hottolink:42,hour:[45,158,160,204],how_to_use_range_index:101,howev:0,html:[],html_untag:[],htpasswd:[135,186],http:[],httpd:[],httprewritemodul:135,hubeni:143,human:[86,121],hypertext:[],hyphen:[121,201],i18n:[],i386:[12,24,37],i686:134,ichii:37,id_column:47,idea:117,identifi:[84,92,182],ideograph:33,idf:[41,168,170],ieee:182,ifexist:95,iff:201,ignor:[33,37,39,40,41,51,92,106,114,117,127,157,166,178,180],ii_buff:56,ill:193,illegal_byte_sequ:192,illustr:199,imagin:[117,199],immedi:[0,33,114,135],implement:[17,33,37,39,41,42,84,100,103,115,116,117,135,136,143,158,170,172,178,184,185],implemnt:185,improper_link:192,in_valu:[],inaccur:39,inada:40,inappropriate_i_o_control_oper:192,inc:[33,41],includ:[6,16,24,33,40,41,78,84,86,88,100,102,103,105,106,109,110,113,115,116,117,124,127,141,153,158,166,168,170,180,186,201],incompat:[33,39,40,41],incompatible_file_format:192,incorrect:41,increas:[0,6,7,33,65,75,107,115,117,127,128,143,167,170,180,181],increment:79,incres:41,independ:[0,101],index_blog:203,index_column:[41,94],index_friend:200,index_messag:203,index_point:200,index_tag:200,index_titl:203,indexblog1:203,indexblog2:203,indexbuf:47,indic:[40,127,143,160,201,206],infinit:[37,39,41,121],info:[33,97,98,133,135,167,170],infom:50,inform:[],inherit:40,inhibit:38,init:[28,39,40,41,61],initi:[33,37,39,41,50,68,69,138],innodb:0,input:[37,40,49,78,95,117,158,174,175,176,177,192,201],input_file_nam:78,input_output_error:192,input_typ:95,insensit:[117,167],insert:[39,153,201],inspect:[33,40,41],inst:40,instal:[],instantli:[0,153],instead:[21,23,26,28,31,33,37,39,40,41,50,83,103,113,117,121,133,135,143,146,147,153,156,157,158,161,163,167,178,190,192,207],instroduc:40,insuffici:198,int16:[35,40,182],int32:[33,39,40,41,75,84,88,103,117,120,121,124,129,141,143,151,157,158,168,170,174,175,177,182,195,199,200,201,203,204,208],int64:[40,41,103,117,182],int8:[35,40,41,182,198],integ:[],integr:[21,39,40,198],intel:134,intend:[39,41,154,157,203],intens:135,interact:[192,201],interest:[3,33,167,201],interfac:[39,138,164,201],intern:[33,38,40,41,46,49,50,153,198],internet:[0,156],interpret:[12,38,157],interrupted_function_cal:192,introduc:[3,33,41,135],introduct:[],introspect:39,intuit:206,inv_res_column:134,inv_thread_column:134,invalid:[33,37,39,40,41,52,69,94,117,121,138],invalid_argu:192,invalid_format:192,invalid_seek:192,invers:[41,168,170],investig:[40,196,199],io_flush:[],ipa:26,ipad:[26,180],iptabl:[186,205],is_a_directori:192,is_anim:198,is_stop_word:[41,125,179],isk:167,isn:[6,7,8,24,28,33,39,40,41,50,51,65,78,81,86,94,95,101,103,115,116,117,120,121,133,135,153,157,166,172,174,175,176,180,192],iso:158,isob:40,isssu:40,issu:[],itagaki:35,item:[117,120,121,174,175,177,186,190],item_:120,item_dataset:[137,177],item_exampl:174,item_queri:[120,137,174,175,177],iter:158,itself:[40,41,75,127,157,166,167],ivh:[24,26],iwai:[38,39,40],jacob16bit:33,jame:206,jan:204,januari:[138,158],japan:[92,174,199,205,208],japanes:[0,2,17,19,39,41,157,158,174,180],jason:206,javascript:[],jeff:206,jekyl:12,jemalloc:41,jennif:206,jersei:204,jessi:[],jinja2:12,jiro:200,job:134,john:[92,206],join:2,joseph:206,jqueri:41,json:[],jsonp:[33,138],juli:33,juman:26,jumand:26,jun:[33,41],just:[],kakesa:33,kana:[120,137,174,175,177],kanako:40,kanji:180,kashihara:41,katagiri:40,katakana:[120,161,174,180],kawada:41,kawaji:39,kazuhiko:[39,41],kazuhiro:40,keep:[32,37,46,50,75,159,180],kei:[],ken:200,kenichi:[35,37],kentaro:40,kernel:[39,181],key1:84,key_column:47,key_length:192,key_nam:[103,117],key_norm:[33,39,121,161],key_siz:63,key_typ:[],key_with_si:[121,157,158,206],keyboard:117,keybuf:63,keyr:[25,39],keys_zon:135,keyword1:[39,146],keyword2:[39,146],keyword:[],keyword_cont:53,keyword_s:53,kind:[0,182,199,201,207,208],kinjir:200,kisk:39,know:[33,94,117,131,180,199,200,204],knowledg:0,known:[0,40,100,153,158,168,201,205],koi8r:[28,39,133],koji:39,konishi:40,korea:199,kosuk:40,kouhei:40,kuriyama:[33,41],kwic:153,kytea:[28,39,40,127],label1:[41,103,117],label2:[103,117],label:[],label_1:117,label_2:117,label_n:117,lager:40,lake:163,languag:[],larg:[0,33,39,121,131,157,158,172,178,180,181,186,198],larger:[33,41,75,89,103,117,133,139,153,177,178,181,192],larget:114,largetext:178,last:[33,39,50,127,180],last_modifi:204,lat:134,latenc:134,later:[33,37,39,40,41,84,100,117,133,146,147,148,154,161,167,172,201],latest:[],latin1:[28,39],latin:133,latitude_in_degre:158,latitude_in_degreexlongitude_in_degre:158,latitude_in_msec:158,latitude_in_msecxlongitude_in_msec:158,latter:[161,166],launchpad:[12,30,41],layer:33,layout:12,lc_messag:17,lcov:14,lead:[117,153,201],leak:[33,35,37,39,40,41,85],leakag:207,leaner:139,lear:177,learn:[],learner:[],least:[33,39,81,154,157,181,196],left:[],leftmost:158,length:[39,69,198],let:[],letter:161,level:[33,39,40,41,69,97,98,133,135,139,160,192,199],lexcon:201,lexicon2:203,lexicon:[],lexicon_t:134,lgpl:42,lib:[35,40,103,109,110,113,131,135,190],libedit:[26,28,33,37,39],libev:[25,28,30,38],libgcc_s_sjlj:41,libgroonga:[20,201],liblzo2:[25,30],libmecab:[12,25,30],libmemcach:14,libmsgpack:[25,30],libstemm:41,libtool:6,libwinpthread:41,libzmq:[25,30],licens:[12,39,41,42],life:33,lifecycl:21,light:[88,108,124,184],like:[],limit:[],line:[],line_cont:78,line_numb:78,link:[33,39,41,117,157,158,198,199,205],linux:[],lion:39,listen:[39,135,186,192,205],liter:[],live:[121,204],lldb:[6,7],llt:127,load:[],loaded_valu:116,local:[0,6,7,12,17,18,28,133,135,158],localhost:[12,114,132,133,134,135,138,164,186,192],localstatedir:[],location_in_groonga:78,location_in_input:78,location_str:204,lock_clear:[],log1:84,log:[],log_level:[],log_put:[],log_reopen:[],log_repoen:39,logal:21,logger:[33,39],logic:[],logical_:[101,172],logical_count:[],logical_filt:102,logical_paramet:[],logical_range_filt:[],logical_select:[],logical_shard_list:[],logical_table_nam:[103,172],logical_table_remov:[],login:181,logo:39,logrot:[33,39,41],logs_20150203:[100,102,105],logs_20150204:100,logs_20150205:100,logs_20150801:104,logs_20150802:104,logs_20150814:172,logs_20150815:172,logs_20150930:104,logs_message_index:167,logyyyymmddhhmmss:138,london:143,longer:[42,50],longest:[37,63,158],longitude_in_degre:158,longitude_in_msec:158,longitudexlatitud:40,longtext:[54,182],look:80,loop:[39,41],lot:40,lower:[117,121,127,201],lru:81,lte:127,lucid:[35,40],lunch:0,lz4:[],lzo:[37,39,40,41,85],lzo_error:192,m64:29,mac:[],machin:[41,133],macport:[],macro:[33,37,40,41],made:[33,37,39,201],madrid:143,mai:[0,20,28,32,33,37,39,40,41,46,47,51,65,78,86,88,94,96,100,106,108,114,115,116,120,121,124,131,135,157,158,166,167,168,170,171,178,180,181,186,200,203],mail_column:134,mailarch:12,main:[12,25,65],mainli:[41,204],mainlin:[33,41],mainstream:0,maintain:180,mainten:180,major:23,make:[],makecach:[24,39],makefil:[7,8],malfunct:33,malloc:41,manag:[0,18,21,28,50,51,79,89,114,131,133,135,153,166,178,186,205],mani:[0,3,17,28,33,37,40,41,65,75,94,100,102,103,105,117,121,125,127,135,137,153,157,158,167,168,170,176,178,181,184,185,186,190,198,199,201],manipul:156,manner:[117,201],manual:[],map:[33,37,84,89,100,117,160,174,181,196],map_hugetlb:37,mariadb:[40,41],mark:[33,38,41,121,161,179,180,190,204],marku:39,markup:[16,33],masafumi:[40,41],masaharu:[38,39,40],masahiro:[35,40,41],masatoshi:33,massachusett:204,master:[17,21,135],match:[],match_column:[],match_escalation_threshold:[],matsuu:35,matur:[1,100,190],maverick:37,max:[],max_command_vers:[119,135,164,192,201,205],max_concurr:132,max_nfthread:65,max_siz:64,max_tp:132,max_valu:181,maximium:117,maximum:[32,33,79,100,103,117,141,158,168,192,196,198,201],mcdonald:163,mdev:33,mean:[28,33,39,40,41,45,49,53,54,69,75,80,86,89,94,96,100,102,103,105,114,117,120,127,133,135,154,157,158,160,161,163,166,167,170,172,174,180,181,196,198,199,201,208],meaning:33,measur:[0,37],mecab:[0,12,24,25,26,27,28,30,33,37,39,40,41,42,180],mecab_new2:39,mecab_strerror:41,mechan:[39,135,186],media:41,median:41,medium:[23,24,25,26,30,31,204],meerkat:37,meet:[41,204,208],meetup:33,memcach:[],memo1:168,memo2:168,memo3:168,memo4:168,memo5:168,memo6:168,memo7:168,memo:[33,149,151,155,168,170,171,179],memo_index:41,memori:[],memos_cont:179,memos_tag:149,memset:33,mention:154,menu:[31,117],mercuri:12,merg:[0,17,39],meridian:143,messag:[],message_index:170,message_pack_install_prefix:[],messagepack:[],met:154,meta:[39,86],metadata:[39,115,116,168,170,171,204],meter:[143,208],method:[33,40,136,174,180,201],micro:[],microsecond:[160,198],microsoft:[8,31,33],midnight:158,migrat:[41,103,117,157,158],mike:92,million:32,millisecond:[45,138,158,198,208],mime:[33,186],min:[],min_siz:64,minagawa:[40,41],mind:[32,172],mine:0,mingw:12,minim:[135,141],minimum:[24,25,26,30,69,103,117,158],mininum:190,minut:[158,160,174,175,204,208],mismatch:41,miss:[33,37,39,40,41,166],mitani:41,mitsuhiro:35,mitsuo:40,mix:[33,75,120,136,180],mizuhara:33,mkdir:93,mkostemp:41,mmap:[],mobil:0,model:[41,126,133,192],modern:204,modif:33,modifi:[28,196,205,207],modul:[],moero:200,monei:200,monitor:[24,25,26,30,40],monkei:198,month:[33,158,160,172,200,204],montywi:38,more:[0,6,7,28,32,33,39,40,41,50,69,71,75,86,94,103,117,120,121,131,133,135,139,149,151,153,154,157,158,159,166,167,168,170,172,175,176,178,179,180,181,182,186,192,198,201,204,206],moreov:208,moritapo:200,moritar:203,morn:159,morpholog:[0,28,158,180],most:[33,41,50,54,75,76,103,117,157,158,167,180,186,198,201],motoi:40,move:[16,31,37,39,84,89],movi:200,mpaa:141,mrb:[33,103],mrubi:[6,7,8,12,33,40,41,115,116,172],msec:[37,45],msg_control:33,msg_controllen:33,msg_flag:33,msg_id:12,msghdr:33,msgpack:[164,186,192],msvc:33,msyql:75,mte:42,much:180,multi:[],multibyt:37,multilin:167,multipl:[],multipli:158,multithread:[33,89,114],munin:[],murakami:[33,40,41],museum:204,musha:33,music:[160,200],must:[6,7,8,28,33,41,46,47,51,53,54,68,69,71,84,86,88,89,92,94,95,96,100,102,103,105,114,117,120,121,124,126,131,138,139,148,154,155,157,158,167,172,174,177,181,186,192,196,198,201,205],mutex:[40,69],mutex_lock:65,mutex_unlock:65,mxcl:12,myisam:0,mysql:[0,24,25,26,30,41,42,75,106,117,146,147,153,161,166,168,172,176],n_builtin_type_nam:51,n_entri:81,n_hit:117,n_kei:63,n_keyword:53,n_like:[78,103,117,157,158,181],n_max_thread:126,n_queri:[119,135,164,192,201,205],n_result:63,n_tabl:50,n_var:69,nagano:41,naist:180,naiv:199,nakai:40,nakamura:33,name1:158,name2:158,name:[],name_1:[201,205],name_2:[201,205],name_s:[47,50,53,60,61,63,66,69],namebuf:[47,60],nanosecond:[78,160],naoina:[39,40],naoya:[33,40,41],narg:53,narrow:[],narwhal:37,natanael:33,natti:37,ncpu:27,nearbi:0,necessari:[37,201],need:[0,5,6,7,8,17,18,21,24,28,29,31,33,37,39,41,46,49,50,53,65,68,75,78,89,94,100,101,103,104,106,109,113,114,117,121,127,129,133,135,136,138,147,153,157,158,161,164,166,167,168,170,171,172,174,175,177,178,180,181,186,192,196,201,203,206,207,208],needl:11,needleess:39,needless:[33,38,39,40],neg:[33,39,45,50,61,69,80,117],neglig:41,neighbor:0,neither:94,neolog:180,neologd:180,nest:[],nested_reference_column:117,net:[2,12,198,199,200,201,205,208],netbsd:40,netinet:33,network:[39,186,192,200],network_is_down:192,never:[28,33,101,120],new_limit:65,new_release_d:12,new_seri:84,new_tag:84,new_valu:117,new_vers:12,newark:204,newer:[33,41],newid:84,newli:[0,41,46,129,153,159],newlin:[33,37,38],newnam:84,newvalu:47,next:[0,41,54,61,102,117,200,201],nfkc51lexicon:161,nfkc:161,nfthread:65,nginx:[],nginxhttpstubstatusmodul:41,ngx_http_proxy_modul:135,nice:159,night:[159,207],nihon:174,niku:41,nine:201,nippon:174,nise_nab:41,no_buff:192,no_child_process:192,no_kei:178,no_locks_avail:192,no_memory_avail:192,no_space_left_on_devic:192,no_such_devic:192,no_such_device_or_address:192,no_such_file_or_directori:192,no_such_process:192,noarch:[24,26],node:[12,21,24,33,39],nogpgcheck:39,nois:[175,180],nokubi:41,nomal:[39,117,135],nomral:157,non:[33,39,40,78,117,131,157,158,180],none:[28,96,103,106,117,121,125,127,133,135,137,192,203],nonexist:[33,41,103,117],nonexistent_command:33,nor:117,noraml:127,normal:[],normali:182,normalizeauto:146,normalized_text:106,normalizer_list:[],normalizerauto:[],normalizernfkc51:[],normalizs:121,normallexicon:161,normalzi:146,northern:39,nosuchfileordirectori:33,not_a_directori:192,not_enough_spac:192,not_socket:192,notat:[39,40,158],note:[0,26,33,37,39,40,41,69,92,94,100,102,114,115,116,117,121,133,135,138,148,155,158,181,186,196,198,199,201,205],noth:[49,65,94,117,131,133,135,155,174,176],notic:[33,97,98,133,135,170],notif:[40,160],notifi:114,now:[],nroonga:[21,151,203],nsi:12,nsubrecs_column:47,nterm:82,nul:[37,69,180],number1:158,number2:158,number:[],number_liter:33,numer:[],nvar:61,o_binari:39,obata:[33,35,37,40],obj:[47,51,53,55,58,60,61,62,67,82],object1:158,object2:158,object:[],object_corrupt:192,object_exist:[],objnam:[83,91],obsolet:[33,190],obtain:69,obvious:198,occur:[33,39,40,41,50,54,78,85,88,120,124,166,181,207],occurr:170,ocelot:[37,40],octal:158,octob:41,odd:158,off:[37,41,135,180],offici:[8,12,24,26,37,151],offlin:[],offset:[],often:[94,141],ohzeki:41,okapi:[168,170],old_releas:12,old_release_d:12,older:[33,204],oldvalu:47,omit:[37,78,94,96,109,110,113,117,127,143,164,174,178,201],onc:[37,39,41,68,117,161,199,203,204],oneir:[37,40],oneself:41,onga:153,ongaeshi:[33,39,40],onigmo:[33,41,167],oniguruma:33,onli:[0,6,7,17,21,23,24,25,26,30,31,33,39,41,46,49,68,69,80,81,86,89,92,93,94,95,96,101,102,103,104,108,109,110,113,114,115,116,117,120,121,126,127,129,131,133,135,136,141,146,147,148,151,153,154,157,158,159,161,163,166,167,168,170,171,172,178,180,186,190,198,201,203,206,208],onlin:[],onto:181,ooo:178,opaqu:[46,192],opear:158,open:[],open_tag1:146,openbsd:33,oper:[],operation_not_permit:192,operation_not_support:192,operation_timeout:192,operation_would_block:192,optarg:[51,62],optim:41,optimum:135,option:[],oracl:[],orangain:40,order:[],org:[12,17,24,25,26,27,28,29,30,31,33,41,75,93,134,135,148,198,199,200,201,205,208],orient:[0,153,198],origin:[],orilldown:199,orphan:[40,168,170],osanai:[33,41],osdn:[2,12,33],otehr:121,other:[],other_t:33,otherwis:[21,46,60,69,85,88,92,96,108,114,129,141,149,151,154,158,201],ouput:40,our:[2,17,172],out:[13,23,24,25,26,30,31,41,154,203],out_gqtp:134,out_http:134,out_loc:134,outdat:41,output:[],output_column:[],output_typ:[136,164],outsid:41,over:[0,33,39,40,41,146,196,205],overcom:100,overcommit:181,overcommit_memori:[],overflow:[33,37,40,41,198],overhead:[41,190],overrid:28,overwritten:208,own:[0,39,53,100,158,198],owner:[33,40,135],pack:[],packag:[],page:[],pagerank:[168,170,171],pagin:201,pai:117,pair:[117,166,174,175,176,177,198],pair_dataset:[137,177],pair_queri:[120,137,174,175,177],pakcag:26,palallel:12,pangolin:[30,39],paragraph:201,parallel:[0,6,7],paramet:[],parameter1:135,parameter_name1:136,parameter_name2:136,parent:[103,117,135],parenth:95,parenthes:201,pari:143,park:204,parker:33,pars:[41,52,53,156],parser:[157,167],part:[0,28,78,100,102,105,117,153,180,198,201,204],partial:[11,33,172,174,176,192],partit:100,pass:[6,7,8,12,33,37,38,51,65,114,126,135,143,151,157,158,167,201,205],past:39,pat:[38,39],pat_kei:178,path:[],patprefix:206,patricia:[],patsuffix:206,pattern:[0,33,78,157,158,167],pcre:[39,135],penalti:40,pentium:134,peopl:[0,180],per:[],perfect:[0,170],perfectli:101,perform:[],period:[],perl:135,permiss:[28,41],permission_deni:192,persist:[],person:[],pgp:12,pgroonga:[33,168,172],php:[12,33,39,41,184],phrase:[],physic:82,pid:[28,33,34,37,133],pikonyan:200,pip:18,pipermail:41,piro:41,pkg:[24,28,29,35,37,39],place:[2,28,204],placehold:40,plai:[0,207],plain:[33,148],plan:206,platform:[],player1:84,player:[84,124],pleas:[2,3,17,19,28,33,41,51,168,170,171,190,201],pluggabl:0,plugin:[],plugin_regist:[],plugin_unregist:[],poedit:17,point:[],pointer:69,pole:143,polici:40,pool:65,poor:166,popular:[33,75,103,117,133],port:[27,40,41,42,133,134,135,136,138,164,186,190,192,205],port_numb:[189,192,205],portabl:[37,40,135],posit:[41,54,69,75,80,86,117,125,126,127,180,201],posix:[33,158],possibl:[37,136,182],post:[],posted_bi:204,postfix:[100,102,103,105],postgresql:[0,153,172],potenti:40,power8:41,power:[117,167],poyonga:184,ppa:[],practic:[0,41,198],pragma:117,precis:[0,12,30,39,78,174,180,182,201],preconfigur:[24,25,26,30,190],predic:33,predict:[121,178,180],prefer:[33,138],preferenti:89,prefix_search:[37,120],prepar:[],prepend:[135,157,158],press:17,pretti:41,prevent:40,previou:[39,40,41,126,167,168,190,198,199,203],price:198,primari:[],print:[41,192],prioriti:[0,117,174],privileg:[40,205],probabl:120,problem:[33,37,39,40,46,135,157,158,180,198],proc:[24,25,26,30,33,40,55,61,67,69,89,117],proc_database_unmap:89,procedur:[39,40],process:[],processor:[0,24,25,26,30],product:[33,102,135],profil:204,program:[1,39,40,86,133,135,138,139,158],progress:160,project:[0,3,12,13,19,21,41,158,190],promot:40,prompt:[31,39,164,201],pronounc:156,proonga:184,proper:[41,78,100,204],properli:[33,39,157,205],properti:[30,160],propos:[117,176],protocol:[],provid:[0,1,21,24,25,26,30,39,41,44,50,65,68,86,101,103,130,133,135,138,143,151,164,166,167,168,172,174,175,176,177,178,185,186,190,199,201,205],proxy_cache_path:135,proxy_cache_valid:135,proxy_pass:135,pseudo:[],pthread_:40,ptr:[35,69],pub:[12,24],publish:[12,41],pull:[],pure:180,puropos:127,purpos:[40,75,100,151,201,205],push:[17,50],put:[17,33,41,136,157,167,170,181],python:[12,18,184],q_cond:65,q_mutex:65,quantal:39,query_expand:[],query_expans:[],query_flag:[],query_s:53,query_str:[],queryexpandertsv:[],question:[33,203],quetzal:39,quickli:[102,117,159],quiet:192,quit:[],quiz:200,quot:[40,95,106,127,157,158,201],quotat:[106,127],quotient:158,rab:[199,201,208],raccoon:200,radious_or_point:144,radix:158,rake:12,rakutan:203,ram:134,ran:174,rand:[],rand_max:152,random:208,rang:[],range_error:192,range_filt:[],range_index:[],ranguba:[41,75],rank:[41,201],rare:[33,40],rate:[40,141],rather:[33,75,86,117,159,167,168,170,171,180,184],raw:[21,40],rch:127,rdbm:[33,133],rdiscount:12,reach:181,read_only_file_system:192,readabl:[38,41],readi:[18,28,39,103,117,157,158,167],readm:[12,40],real:[0,65,117,153,181,182],realli:[103,117,157,158,207],realtim:[120,177],reason:[39,117,121,131,158,167,174,180,186,190,196,199],rebuild:33,recal:[0,156,180],receiv:[0,17,50,133,135,138,139,158,192],recent:81,recogn:0,recommend:[6,7,8,23,24,25,26,30,31,33,41,78,117,149,157,158,167,180,181,184,186,190,201,205],reconstruct:41,record:[],record_1_column_1:117,record_1_column_2:117,record_1_column_n:117,record_2_column_1:117,record_2_column_2:117,record_2_column_n:117,record_id:33,record_n_column_1:117,record_n_column_2:117,record_n_column_n:117,recov:[],recover:[51,131],recreat:33,recrod:117,rect:[39,143,144],rectangl:[],recurs:[],recycl:41,red:[],redcloth:12,redhat:[28,37],redmin:41,reduc:[0,33,39,40,89,101,167,175,178,186,190,207],refer:[],referenc:[39,40,92,94,117,121,199],reference_column:[33,41,117],reference_vector_column:40,referenced_table_nam:94,refin:[0,40],refresh:200,regard:[40,136,157],regardless:33,regexp:[33,41],regexplexicon:167,region:[163,208],regist:[],regress:[33,40,41],regular:[],regular_express:167,rel:[37,41,117],relat:[],relationship:[],relax:181,releas:[],relev:[0,201],reload:166,remain:[40,89,160,167],remaind:158,rememb:117,remot:[],remov:[6,7,29,33,37,38,39,40,41,51,60,84,92,113,125,135,179,198],remove_blank:106,remove_tokenized_delimit:106,removep:60,renam:[33,37,39,40,84,88,124,178,201],reopen:37,rep_gqpt:134,rep_gqtp:134,rep_http:134,rep_loc:134,repair:38,repeat:[0,17],replac:[33,41,137,139,158,167,207],replai:135,repli:[203,204],replic:168,replied_to:204,replied_us:204,replies2:203,replies_cont:203,reply_to:203,repoforg:[24,39],report:[],repositori:[],repres:[53,133,156,158,167,198,200,207],represent:[17,52,53,75],reproduc:40,request_cancel:[],request_id:[33,79,114],requir:[],reqular:138,res1:63,res2:63,res_column:134,res_tabl:134,rescord:156,resiz:69,resolut:[],resolv:[37,39,75,91,168,170,171,172],resourc:[41,50,51,68,159],resource_busi:192,resource_deadlock_avoid:192,resource_temporarily_unavail:192,resours:46,respect:[39,198,204,208],respons:[0,37,39,40,41,46,80,84,102,114,117,138,186,192],rest:[69,166],restart:[],restaur:0,restrict:[39,40,186,205],result:[],result_too_larg:192,retri:45,retriev:[0,117,158],retry_max:192,return_cod:[78,160],reus:178,reveal:0,revers:[],rewrit:42,rid:56,rid_max:57,rid_min:57,right:[],ringtail:40,risk:41,rlimit_nofil:[40,160],role:[0,151],romaji:174,roonga:[157,158,176],root:[33,40,133,135,136,205],rose:198,rotat:[33,133],roughli:198,round:37,row:[0,153],rpm:[12,24,26,33,37,38,39,40,41],rpmforg:24,rroonga:[21,33,40,41,46,146,147,149,151,154,155,156,168,203],rubi:[0,6,7,8,12,21,33,39,41,42,75,115,116,146,147,155,156,167,168,184],ruby19:39,ruby_ev:[],ruby_load:[],ruby_script:115,rubygem:39,rubyinstal:8,rule:[],run:[],rurema:41,ryoji:41,s10:41,sae:[120,175],saer:[120,175],saerc:[120,175],saerch:[120,175],sai:[158,201],sako:33,salamand:[40,41],same:[33,40,45,50,53,75,78,79,84,95,102,103,109,113,114,117,135,136,151,157,158,161,167,168,170,172,175,184,186,198,201,203,208],sampl:[],san:143,satisfi:[33,40,95],sato:33,satoh:37,satoshi:41,sauci:[40,41],save:[12,41,138,196,203],sbin:27,scalar:[],scale:[0,186],scan:[14,146,147,157,158],scan_build:14,schema:[84,92,93,100,103,117,137,141,143,146,147,148,149,151,153,154,155,157,158,159,167,168,170,172,175,181,203],scope:[],score1:11,score2:11,score:[],score_1:138,score_2:138,score_adjust_express:117,score_adjust_expression1:117,score_adjust_expression2:117,score_column:47,score_funct:168,score_function1:168,score_function2:168,score_function3:168,score_n:138,score_valu:33,scorer:[],scorer_tf_at_most:[],scorer_tf_idf:[],scr:134,script:[],sea:[127,174],sear:174,searc:174,search_result:117,searchabl:[33,159],searchu0000http:180,sebastian:41,sec:45,second:[78,86,114,117,143,157,158,160,168,182,186,198,201,203,204,208],secret:12,secsion:78,section:[3,17,20,21,23,24,25,26,27,28,29,30,31,33,40,41,44,47,56,69,75,76,81,84,86,88,89,94,95,96,100,101,102,103,104,105,106,108,114,115,116,117,121,124,125,126,127,129,130,131,133,135,140,143,157,162,166,167,168,170,173,174,175,177,181,192,199,203,204],secur:[],sed:[33,37,39],see:[],segment:[39,41,82],segv:40,select:[],select_opt:158,selector:[33,39],self:134,semi:[37,121],sen_index_delimit:42,sen_index_norm:42,sen_sel_term_extract:42,senboku:40,send:[],sender:[138,139],senna:[],sensit:180,sent:186,sentens:33,separ:[33,39,49,86,95,106,117,120,125,127,157,158,164,166,180,192,199,201],sequenc:[37,40,79,117,120,157,158,160,174,175,177,192],sequence_dataset:137,sequence_queri:137,sequenti:[33,41,157,158,159,167,180],serach:175,serch:[120,175],sergei:41,seri:201,serial:84,serihiro:39,seriou:[39,41],serv:[12,41,198],servic:[0,21,33,39,40,41,175,181,190],session:[138,184,192],set:[],set_groonga_error:103,set_host:134,set_port:134,set_token_filt:41,setup:[17,21,40],seven:201,shape:163,shard:[],shard_name_1:104,shard_name_2:104,shard_name_n:104,share:[0,2,28,37,39,40,45,46,47,51,100,102,103,105,133,135,200,203],shell:[28,33,133,157,167],shidara:37,shift_ji:[28,180],shimada:39,shimoda:35,shimomura:39,shinjyuku:208,shinoda:[33,41],shinya:39,sho:[40,41],shop:[159,193],shorter:[33,159],shorttext:[41,54,75,78,84,85,86,88,92,93,94,96,103,104,108,117,120,121,122,124,125,129,133,134,141,143,146,147,148,149,151,153,154,155,157,158,159,161,167,168,170,174,175,177,178,179,181,182,195,198,199,200,201,203,204,205,206,207,208],should:[6,7,8,18,21,23,24,25,26,28,30,31,33,39,50,53,69,75,79,95,101,102,117,121,129,157,158,161,166,175,192],shouldn:[6,7,41],show:[0,28,33,34,37,39,40,41,49,78,80,84,92,95,100,103,106,117,141,143,146,147,148,151,153,154,157,158,163,164,167,168,170,180,189,192,198,199,200,201,204,205,208],showen:80,shown:[158,201],shuhei:41,shutdown:[],sid:[12,37,41,82],side:[0,39,117],sigcont:40,sign:[],signal:41,significantli:0,sigstop:40,sigusr1:37,silent:21,simil:158,similar_search:[39,120],simpl:[],simplest:[0,28,79,168],simpli:[170,206],simplifi:[40,149],sinc:[26,33,39,47,78,83,113,121,129,133,143,158,159,160,167,182,190,198,204],singl:[40,41,75,95,106,117,126,127,201],site:[41,93,96,117,156,198,199,200,201,203,205,208],sitecountri:[199,205],sitedomain:[199,205],situat:117,six:[160,201],size:[],sizeof:[33,50,53],sji:[28,42,133],skip:[33,40,41,201],slash:158,sleepi:159,slow:[33,135,157,158,167,178],slower:[143,168,170,199],small:[33,40,41,121,157,158,178,180,204],smaller:[0,75,121,143,159,160],snippet1:153,snippet2:153,snippet3:153,snippet:[39,40,42,153],snippet_html:[],soccer:200,social:200,socket:39,socket_is_already_connect:192,socket_is_already_shutdown:192,socket_is_not_connect:192,socket_not_initi:192,soft:181,softwar:[],solari:[],solr:158,solut:[],solv:[168,170,198],some:[0,1,2,8,17,26,28,32,33,39,40,41,45,53,68,75,78,79,100,102,103,114,121,127,137,140,151,157,158,160,167,168,172,179,180,181,182],someon:204,someth:41,sometim:41,soon:[153,163,172,186],sort:[],sortbi:[],sound:[161,175],soundkitchen:[37,39],sourc:[],source_column_nam:33,source_file_nam:78,sourceforg:[2,12,33],southern:39,space:[0,33,37,40,69,75,95,106,117,127,157,167,177,180,201],spain:143,spammer:[168,170],span:[146,147,148,153],spars:33,speaker:2,spec:[37,39,40],specfi:54,special:[17,28,40,45,53,78,80,117,127,136,146,147,153,157,167,192,201],specif:[],specifi:[],speech:[0,180],speed:[37,176,178],spell:[166,207],spend:[157,158],spheric:143,sphinx:[12,15,16,17,18,33,41],sphr:[143,144],spil:33,split:[33,37,158,178,180],spokesman:3,sport:200,spreadsheet:166,sql:[100,117,168,199],squar:143,squeez:[12,40],src:[12,25,198],src_kei:63,src_key_siz:63,ssh:12,ssssss:160,stabl:[41,77,120],stack:40,stack_over_flow:192,stage:41,stamp:[160,174,175,177],stand:184,standard:[33,95,135,182,192,201],start:[],starttim:[119,135,164,192,201,205],startup:39,state:[39,92,143,184,192],statement:158,station:[163,204,208],statu:[],status:[80,192],stdin:38,stem:[25,30,41,179],step:[17,28,31,84,167,177,198,201],still:[16,17,40,41,88,114,124],stop:[],stop_word:[93,125,179],storategi:117,str:53,str_length:69,str_ptr:69,str_size:53,stream:41,strerror:41,strict:[33,41],string1:142,string2:142,string:[],string_liter:41,string_siz:53,strip:148,strlen:69,strongli:[23,24,25,26,30,31],structur:[0,41,78,178,200],stub:41,studio:[8,31,33,39,40],style:[],sub1:[103,117],sub:[0,12],sub_filt:[],subject:40,submiss:[120,174,175,177],submit:[],subrecord:40,subset:182,substit:117,substitut:[17,21,117,151,157,158],substr:[157,158],succeed:[28,80,85,92,96,129,201],succeeded_or_not:[88,92,96,129],success:[],successfulli:[69,201],successor:158,suddenli:40,sudo:[12,14,18,21,24,25,26,27,28,29,30,39,181,190,196,205],suenaga:33,suffici:69,suffixsearchterm:[157,158],sug:176,suggest:[],suggest_prepar:[120,174,175,177],suit:[0,41,153],suitabl:[41,103,117,121,133,159,168,170,178,180],sum:[41,103,117,168],summar:199,summari:[],suno:41,superior:[0,153],support:[],suppress:[38,39,41],sure:201,surfac:163,surround:[39,146,147,153,158],suzuki:39,swap:181,swig:42,symbol:180,synonym:[117,166,207],syntax:[],syntax_error:192,syscal:[41,201],sysconfig:190,sysctl:[27,181,196],system:[0,5,6,7,28,29,30,33,37,40,41,89,94,103,117,133,135,153,157,158,159,181,182,198,208],systemctl:190,systemd:[33,39],tab:[33,49,164,166,192],tabl:[],table1:63,table2:63,table_:[121,178],table_buff:50,table_cr:[],table_dat_kei:[],table_hash_kei:[],table_list:[],table_nam:[94,108],table_name_of_index_column:94,table_no_kei:[],table_pat_kei:[],table_remov:[],table_renam:[],table_token:[],tablecursor:33,tablegroupflag:33,tablenam:77,tables_buff:50,tag:[],tagger:0,tahr:[30,41],tail:[12,192],tajima:39,takashi:92,takatsugu:41,takayama:33,takayuki:37,take:[81,84,86,88,89,94,96,100,101,102,103,104,105,106,107,108,109,110,113,114,115,116,117,121,124,125,126,127,128,129,131,136,190,201],takiuchi:40,talk:[2,12,33,40],tamano:41,tanab:40,tanuma:41,tar:[12,24,25,26,27,28,29,30],target:[],target_charact:53,target_nam:[],taro:200,task:[0,39],tasuku:[33,42],tatsuya:39,techniqu:[168,170],temporari:[],tend:203,term:[],termin:[],teruya:33,test:[6,12,14,23,24,25,26,30,31,33,39,41,101,102,134,135,180,198,201,203,204,205],test_loc:134,test_str:14,test_text_otoj:14,testdb:[134,139],tetsuharu:41,tex:127,than:[],thatn:117,theater:207,theatr:207,thei:[28,29,33,75,95,103,109,110,113,117,127,135,136,146,147,153,154,156,157,158,159,160,164,166,168,170,172,174,175,176,177,178,180,181,186],them:[16,17,24,25,26,28,30,33,45,53,75,78,85,94,95,103,117,143,157,167,168,180,181,192,198,201,208],themselv:[17,166],therubyrac:12,thesauru:117,thi:[0,3,5,6,7,8,18,20,21,23,24,25,26,27,28,29,30,31,33,37,39,40,41,44,46,47,49,50,51,60,69,75,76,78,81,84,85,86,88,89,94,95,96,100,101,102,103,104,105,106,107,108,109,110,113,114,115,116,117,121,124,125,126,127,128,129,130,131,133,135,137,138,140,141,143,146,147,149,151,153,154,155,157,158,160,162,164,166,167,168,169,170,172,173,174,175,177,180,181,182,186,192,196,198,199,201,203,204,205,206,207,208],thing:33,think:[117,158,168,170,171],third:[86,117,158,198],those:[0,17,28,29,38,117,143,153,156,157,158,161,164,176,177,178,186,198,201],though:[0,39,40,41,100,174,203],thread:[0,33,40,41,47,50,51,65,69,89,96,101,126,133,138,160,186],thread_count:33,thread_limit:[],thread_tabl:134,thread_title_column:134,threasd:133,three:[40,75,78,88,100,106,117,143,146,156,170,174,175,198,199,201,203],threshold:[],through:[0,135],throughput:[37,186],thu:[0,41,100,137,139,157,202,203,207,208],tid:57,time:[],time_column:134,time_stamp:160,timeout:[40,45,60],timestamp:[100,104,108,204],timeuot:45,titl:[12,40,41,93,96,103,117,142,154,157,158,168,170,171,198,199,200,201,203,205],title_index:168,tiwawan:33,tld:199,tmp:[6,7,12,40,86,88,120,122,124,133,138,166,167,186,192,201,205],to_column:84,tobbi:151,todai:0,todo:[],token_filt:[],tokenbigram:[],tokenbigramignoreblank:[],tokenbigramignoreblanksplitalpha:180,tokenbigramignoreblanksplitalphadigit:180,tokenbigramignoreblanksplitsymbol:[],tokenbigramignoreblanksplitsymbolalpha:[],tokenbigramignoreblanksplitsymbolalphadigit:[],tokenbigramsplitsymbol:[],tokenbigramsplitsymbolalpha:[],tokenbigramsplitsymbolalphadigit:[],tokenbigramsplitxxx:180,tokenbigrm:84,tokendelimit:[],tokendelimitnul:[],tokenfilterstem:[],tokenfilterstopword:[],tokenizer_error:192,tokenizer_list:[],tokenizs:[],tokenkytea:39,tokenmecab:[],tokenregexp:[],tokentrigram:[],tokenunigram:[],tokyo:[143,208],tokyogeopoint:[37,54,143,144,145,182,208],tom:151,tomita:35,tomo:200,tomoatsu:[35,39],tomygx:33,too:[33,40,65,75,117,158,198,203],too_large_offset:192,too_many_link:192,too_many_open_fil:192,too_many_open_files_in_system:192,too_many_symbolic_link:192,too_small_limit:192,too_small_offset:192,tood:69,tool:[],top:[54,199],top_left:[37,145],top_left_point:54,topic:[],tortoisegit:8,totabl:84,total:[],touch:[33,51],toybox:198,tracker:[],trade:180,tradit:[0,41],transfer:[],transit:190,translat:[],travel:204,travi:[],treat:[33,39,40,41,100,102,103,105,117,127,158,163,174,175],tree:41,tri:[45,204],trial:0,trie:[],tritonn:[103,117,157,158],troubl:17,truncat:[],trust:12,trusti:[12,30,41],tsv:[],tune:[],turn:135,tutori:[],tweet:[2,159],twice:[117,157],two:[19,24,25,26,30,33,40,41,50,53,78,85,86,94,101,103,117,121,124,126,127,135,139,143,149,151,153,154,157,160,161,163,167,175,177,180,185,186,190,199,200,201,203,204,208],txt:[16,17,180],type1:120,type2:120,type:[],type_of_the_column:154,typic:[33,117],typo:[33,37,39,40,41,166,174,175],u0000ful:180,u0000http:180,ubuntu:[],ueno:[37,39],uid:12,uint16:[40,182],uint32:[39,40,41,75,78,84,86,88,92,103,117,121,122,124,129,141,154,157,158,159,161,167,179,181,182,195,199,200,201,203,205,206,207,208],uint32_column:33,uint32_t:65,uint64:[40,41,182],uint8:[35,40,86,94,182],uint:39,ull:127,ultra:200,umask:41,umemoto:37,unari:40,unauthent:[25,39],unchang:69,uncontinu:39,undefin:198,under:[28,41,135,136,138,139,186],underflow:198,underli:0,underscor:121,understand:[41,117,201],unexpect:[39,41],unexpectedli:[40,94],unicod:[33,161],unicorn:33,uninstal:39,uniqu:[114,138],unit:[76,92,143,153,158,180,192],univers:30,unix:[3,5],unix_time_when_command_is_start:78,unknow:41,unknown:[38,52],unknown_error:192,unlink:53,unload:39,unlock:69,unmanag:82,unmap:[33,51,89],unnecessari:181,unpatch:42,unrecover:51,unregist:[109,110],unrel:37,unresolv:37,unsaf:[33,51],unsign:[],unsplit:[11,117],unstabl:38,unsupport:33,unsupported_command_vers:192,untag:148,until:[17,41,45,69,89,95,117,159],unus:[41,89],updag:39,update_buffer_s:56,update_not_allow:192,updated_at:195,upgrad:[],upload:12,upper:[37,41,121,201],uptim:[119,135,164,192,201,205],uri:[135,136],url:[37,41,93,136,186],usa:199,usag:[],usage_default_and_custom_scor:168,usage_multiple_scor:168,use_offline_index:38,use_range_index:[],useless:51,user:[],user_ag:141,user_column:134,user_data:[61,69],user_input:158,usernam:[31,200],users_index:204,users_loc:204,users_memo:151,users_nam:151,usr:[14,27,28,109,110,113,133,135],usual:[33,50,139,198,203],utc:[78,158],utf8:[28,52,133],utf:[28,39,40,42,138,158,161,164,180],util:135,utop:33,uuuuuu:158,uzulla:37,vagrant:12,valid:[37,39,40,41,103,117,157,158,177,178,198],valu:[],value1:[84,95,135,136,149,158],value2:[95,136,158],value_1:[201,205],value_2:[201,205],value_column:47,value_typ:[],valuebuf:58,valuen:149,vari:[32,69],variabl:[29,33,37,38,39,40,41,69,86,117,158,166,192,198],varieti:200,variou:[],vdw:[199,201,208],vector:[],vector_column:40,vector_s:[],vector_text_column:33,veres:186,veri:[0,39,78,95,103,117,146,147,153,157,158,167,168,174,178,186,200],version1:77,version2:77,version3:77,version4:77,version:[],vertic:121,vervet:[30,33],via:[17,39,80,177],video:200,view:[],virtual:[33,40],virtualbox:12,visual:[0,8,31,33,37,39,40,41,78],vivid:[12,30,33],vmstat:196,vocabulari:201,voic:161,void_t:65,vojtovich:41,vulner:41,w64:12,wai:[0,3,6,7,19,39,40,41,75,94,135,139,151,156,164,199,201,203,204,207],wait:[45,69],wanab:40,want:[6,7,8,13,16,24,25,26,27,28,30,33,41,65,84,95,101,106,108,115,116,117,121,125,127,133,135,138,143,149,154,157,166,167,172,174,175,177,180,184,190,192,196,199,201,203,207],wareohji:39,warn:[6,7,38,39,40,41,97,98,117,133,135,160,167,170],warp:41,warri:23,washida:40,watch:12,weak:[0,153],web:[28,117,120,135,136,157,175,177,200],webclip:148,weight1:[39,75,117],weight2:[39,75,117],weight3:75,weight:[],weight_in_match_column:75,weight_in_weight_vector:75,welcom:[2,3,16,17,103,117,157,158,204],well:[0,28,40,100,135,153,205],were:[143,201],wget:[24,25,26,28,29,30],wgs84geopoint:[37,54,143,182,198,199,200,204,205,208],wgs84geoppoint:54,what:[],wheezi:[],when:[0,3,18,33,37,39,40,41,47,51,65,75,78,84,85,89,94,95,101,103,109,113,117,120,121,126,133,135,138,143,148,149,151,154,157,159,161,167,172,174,180,181,184,192,200,201,204,206],where:[28,80,198],whether:[33,39,41,51,60,80,93,94,100,102,103,105,108,117,120,129,131,135,141,143,149,151,154,156,157,172,196,198],which:[0,1,26,33,39,40,41,68,69,92,100,102,103,105,106,115,116,117,125,127,133,138,139,143,148,149,151,154,155,157,158,174,190,192,198,199,200,201,203,204,205,206,207,208],white:[157,180,201],who:[],whole:40,whombx:40,whose:[158,201],why:[40,117,190],wibowo:40,wide:[0,28,37,167,201],width:[33,37,161],wiedenroth:41,wiki:135,wikipedia:182,win64:[8,31],window:[],wing:[39,40],with_check:[41,106],with_command_vers:33,with_posit:[85,86,103,117,146,147,151,153,154,157,158,159,167,168,170,179,181,195,201,203,204,207],with_sect:[33,41,85,86,203,204],with_typ:106,with_weight:[41,75,85,86],within:[174,175,204,208],without:[],wno:37,word1:[39,117,157,158],word2:[39,117,157,158],word:[0,33,39,41,65,71,117,154,156,157,158,166,168,174,175,176,177,179,180,202,204],work:[],workaround:[33,41],worker:[40,135],world:[40,41,180,182,208],writabl:[33,41],write:[14,18,28,38,41,65,96,102,112,117,133,157,158,167,202,203,204],written:[18,41,109,113,129,172,204],wrong:[33,37,39,40,41,131,175,176],wrongli:37,x64:[12,31],x86:[31,33,37],x86_64:[12,24],xcode:27,xml:[],xvzf:[24,25,26,27,28,29,30],xxx:[40,41,133,158],xxx_20150603:33,xxx_20150604:33,xxx_201506:33,yahppo:40,yamada:41,yamaguchi:37,yamamoto:41,yaman:[40,41],yappo:[40,41,42],year:[141,158,160,204],yet:[0,37,40,100,103,115,116,117,158,163,168,170,172,186],yito:[39,40],yml:21,yoji:37,yokoyama:[40,41],yoku:[40,41],york:[143,204],yoshida:40,yoshioka:[33,39],you:[0,1,2,3,5,6,7,8,13,16,17,18,19,20,21,23,24,25,26,27,28,30,31,33,37,38,39,40,41,45,46,47,49,50,51,53,65,68,69,75,76,78,79,80,81,84,85,86,88,89,92,93,94,95,96,100,101,102,103,104,105,106,108,109,110,113,114,115,116,117,120,121,124,125,126,127,129,131,133,135,136,137,138,139,140,141,143,146,147,148,149,151,153,154,155,156,157,158,161,163,164,166,167,168,170,171,172,174,177,178,179,180,181,182,184,186,190,192,196,198,199,200,201,203,204,205,206,207,208],your:[],your_db:37,your_github_account:17,your_new_db:37,yourself:23,yuki:[37,41],yum:[12,18,24,26,39],yuya:[33,41],yyi:17,yyyi:[158,160],yyyymm:172,yyyymmdd:[103,172],zenigata:200,zero:[71,75,117,161,166,179,180,192,198],zeromq:28,zip:[],zlib1g:[25,30],zlib:[],zlib_error:192,zsh:28,zunda:37,zxvf:12},titles:["1. Characteristics of Groonga","6. Client","3. Community","12. How to contribute to groonga","12.3. For Groonga developers","12.3.2. How to build Groonga at the repository","12.3.2.1. How to build Groonga at the repository by GNU Autotools","12.3.2.2. How to build Groonga at the repository by CMake on GNU/Linux or Unix","12.3.2.3. How to build Groonga at the repository by CMake on Windows","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \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.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. Repository","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. How to contribute in documentation topics","12.2.3. C API","12.2.2. I18N","12.2.1. Introduction","12.1. How to report a bug","11. Development","11.1. Travis CI","Groonga documentation","2. Install","2.5. CentOS","2.3. Debian GNU/Linux","2.6. Fedora","2.2. Mac OS X","2.8. Others","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. Limitations","News","\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","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","News in Senna period","7. Reference manual","7.21. API","7.21.2. Global configurations","7.21.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.21.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.21.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.21.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.21.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.21.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.21.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.21.11. grn_expr","7.21.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.21.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.21.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.21.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.21.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.21.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.21.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.21.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.21.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.21.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.21.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.21.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.21.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.21.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.21.1. Overview","7.21.3. Plugin","Cast","7.6. Column","7.6.4. Index column","7.6.3. Pseudo column","7.6.1. Scalar column","7.6.2. Vector column","7.3. Command","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.2. Output format","7.3.3. Request ID","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_copy</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP server","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.14. Function","7.14.1. between","7.14.2. edit_distance","7.14.3. geo_distance","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. highlight_full","7.14.7. highlight_html","7.14.8. html_untag","7.14.9. in_values","7.14.10. now","7.14.11. query","7.14.12. rand","7.14.13. snippet_html","7.14.14. sub_filter","7.14.15. vector_size","7.12. grn_expr","7.12.1. Query syntax","7.12.2. Script syntax","7.17. Indexing","7.19. Log","7.7. Normalizers","7.15. Operations","7.15.1. Geolocation Search","7.2. Output","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.13. Regular expression","7.11. Scorer","7.11.3.1. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></code>","&lt;no title&gt;","7.18. Sharding","7.16. Suggest","7.16.2. Completion","7.16.3. Correction","7.16.1. Introduction","7.16.4. Suggestion","7.5. Tables","7.9. Token filters","7.8. Tokenizers","7.20. Tuning","7.4. Data types","5. Server","5.3. GQTP","5.2. HTTP","5.2.1. Comparison","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached binary protocol","5.1. Server packages","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","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","4. Tutorial","4.3. Various data types","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.1. Basic operations","4.9. Additional information about lexicon for full text search","4.7. match_columns parameter","4.10. Let's create micro-blog","4.2. Remote access","4.8. Prefix search with patricia trie","4.11. Query expansion","4.4. Various search conditions"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[35,36,37],"1\u30ea\u30ea\u30fc\u30b9":[35,37],"2\u30ea\u30ea\u30fc\u30b9":35,"3\u30ea\u30ea\u30fc\u30b9":35,"4\u30ea\u30ea\u30fc\u30b9":35,"5\u30ea\u30ea\u30fc\u30b9":35,"6\u30ea\u30ea\u30fc\u30b9":[34,35],"7\u30ea\u30ea\u30fc\u30b9":[34,35],"8\u30ea\u30ea\u30fc\u30b9":35,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":10,"\u306e\u66f4\u65b0":12,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":10,"\u30aa\u30d7\u30b7\u30e7\u30f3":[132,134],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":14,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":11,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":11,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":134,"\u30b5\u30f3\u30d7\u30eb":[132,134],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":134,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":14,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":14,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":14,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[134,194],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":195,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":34,"\u30d0\u30fc\u30b8\u30e7\u30f31":[35,36],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":77,"\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":12,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":12,"\u30d3\u30eb\u30c9\u6642\u306etip":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":12,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":12,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":182,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":14,"\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":10,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":12,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4f7f\u3044\u65b9":134,"\u4f8b":[142,144,145,150,152,195],"\u4f8b\u3048\u3070redmin":10,"\u4fee\u6b63":[34,35,36,37],"\u5236\u9650\u4e8b\u9805":134,"\u524d\u63d0\u6761\u4ef6":12,"\u539f\u56e0":195,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":195,"\u540d\u524d":[73,132,134,142,144,145,150,152],"\u5909\u66f4":35,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":12,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":193,"\u5b9f\u9a13\u7684":37,"\u5bfe\u5fdc":10,"\u5bfe\u7b56\u65b9\u6cd51":195,"\u5bfe\u7b56\u65b9\u6cd52":195,"\u5f15\u6570":[132,134,142,144,145,152],"\u611f\u8b1d":[34,35,36,37],"\u6539\u826f":[34,35,36,37],"\u66f8\u5f0f":[132,134,142,144,145,150,152],"\u691c\u7d22":193,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":193,"\u691c\u7d22\u306e\u6319\u52d5":193,"\u691c\u7d22\u4f8b1":11,"\u691c\u7d22\u4f8b2":11,"\u691c\u7d22\u4f8b3":11,"\u691c\u7d22\u4f8b4":11,"\u6982\u8981":77,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":12,"\u7279\u6b8a\u547d\u4ee4":134,"\u7406\u7531":10,"\u8aac\u660e":[73,132,134,142,144,145,150,152],"\u8fd4\u5024":[142,144,145,150,152],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":10,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":193,"\u95a2\u4fc2\u5f0f":11,"\u95be\u5024\u3092\u3042\u3052\u308b":195,"\u9759\u7684\u89e3\u6790":14,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":193,"benchmark\u547d\u4ee4":134,"benchmark\u5b9f\u884c\u7d50\u679c":134,"boolean":[158,198],"case":78,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"class":167,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":77,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"debian\u7cfb\u306e\u5834\u5408":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"default":[28,77],"files\u306e\u5b9f\u884c":12,"float":158,"function":[140,158],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":12,"grntest\u306e\u6e96\u5099":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":12,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":11,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],"hat\u7cfb\u306e\u5834\u5408":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"homebrew\u306e\u66f4\u65b0":12,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":99,"new":[17,33,42],"null":158,"po\u306e\u5b9f\u884c":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":12,"release\u306e\u5b9f\u884c":12,"return":[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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,136,138,141,143,146,147,148,149,151,153,154,155],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"twitter\u7de8":10,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"version\u30d1\u30e9\u30e1\u30fc\u30bf":77,"windows\u5411\u3051\u306e\u5834\u5408":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"x\u306e\u304a\u77e5\u3089\u305b":[34,35,36],about:[182,202],access:[186,205],add:17,addit:[158,161,202],adjust:117,administr:[135,205],advanc:[103,117],against:203,aggreg:0,alloc:196,also:[6,7,8,78,79,80,81,83,86,90,92,95,97,98,99,104,106,107,109,110,112,113,114,115,116,117,120,121,125,127,128,137,146,147,151,153,154,156,161,166,170,178,179,192],among:203,anchor:167,api:[16,44],appli:75,approximate_typ:143,archiv:30,arg:11,arithmet:158,arrai:158,assign:[79,157,158],authent:186,autotool:6,avail:[135,179],avoid:196,basic:[158,201],benchmark:134,between:141,bigram:204,binari:189,bitwis:158,blog:204,blogroonga:12,bodi:78,brows:135,bug:19,build:[5,6,7,8,24,25,26,27,28,30,31],built:[161,168,180],builtin:[133,182],cach:[102,117,135],cache_limit:81,calc_target:103,calc_typ:103,call:158,callback:11,can:182,cannot:196,cascad:92,cast:70,cento:24,chang:[42,84],charact:167,characterist:[0,178],check:[82,131],checkout:[6,7,8],choic:167,clearlock:83,client:[1,133,192],clone:17,close_tagn:146,cmake:[7,8],code:80,column:[0,32,71,72,73,74,75,84,143,146,147,157,199,201,203],column_copi:84,column_cr:85,column_list:86,column_or_valu:141,column_remov:87,column_renam:88,combin:157,command:[76,77,131,133,136,138,164,172,186,201,205],comment:204,commun:2,comparison:[158,186],complet:[174,176],compress:186,condit:[117,157,208],configur:[6,18,21,28,45,84,135,186],confirm:17,construct:159,contain:11,contribut:[3,15],control:158,cooccurr:[174,175,177],core:186,correct:[175,176],cpu:186,creat:[6,75,121,137,201,203,204],custom:186,daemon:[133,192],data:[121,135,139,157,158,174,177,182,198,204],databas:[186,201],database_path:[138,139],database_unmap:89,dataset:137,date:198,db_api:11,debian:25,default_token:121,define_selector:90,defrag:91,delet:92,depend:[6,7,8,18,28],descript:182,desctipion:137,develop:[4,20],differ:103,direct:135,divis:158,document:[15,18,22],domain:199,down:[135,208],downtim:186,drildown:199,drilldown:[103,117,199],drilldown_calc_target:[103,117],drilldown_calc_typ:[103,117],drilldown_limit:[103,117],drilldown_offset:[103,117],drilldown_output_column:[103,117],drilldown_sortbi:[103,117],dump:93,dump_index:93,dump_plugin:93,dump_record:93,dump_schema:93,each:203,edit:17,edit_dist:142,ellipsoid:143,enabl:18,encod:28,engin:0,equal:[11,157,158],error:[78,196],escal:28,escap:[157,167],exampl:[21,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,137,192,196],execut:[130,133],exit:137,expand:165,expans:207,explicit:157,explicitli:143,express:[157,158,167],extract:[158,177],facebook:2,favorit:204,featur:163,fedora:26,file:[17,133,137,139,166,181,186],filter:[100,102,103,117,179],filter_str:154,fix:[33,37,39,40,41,42],flag:[106,121,125,127,192],flow:17,follow:204,format:[78,95,117,160,166,201],free:0,freebsd:181,from:[6,7,8,24,25,26,27,28,30,31,103,139],from_nam:84,from_tabl:84,full:[0,157,201,202,203,208],gener:[17,18],geo:[0,158,200],geo_dist:143,geo_in_circl:144,geo_in_rectangl:145,geoindex:204,geoloc:[163,204],geopoint:204,get:[138,201],global:45,glossari:172,gnu:[6,7,25],gqtp:[184,190,192],greater:[11,157,158],greater_equ:11,grn_cach:46,grn_column:47,grn_command_vers:48,grn_content_typ:49,grn_ctx:50,grn_db:51,grn_encod:52,grn_expr:[11,53,156],grn_geo:54,grn_hook:55,grn_ii:56,grn_index_cursor:57,grn_info:58,grn_match_escal:59,grn_obj:60,grn_proc:61,grn_search:62,grn_tabl:63,grn_table_cursor:64,grn_table_select:11,grn_thread_:65,grn_type:66,grn_user_data:67,grndb:131,grnslap:132,groonga:[0,3,4,5,6,7,8,9,12,17,22,42,133,134,135,136,137,138,139,187,188,190],groonga_base_path:135,groonga_cache_limit:135,groonga_databas:135,groonga_database_auto_cr:135,groonga_log_level:135,groonga_log_path:135,groonga_query_log_path:135,group:[157,158,167],gzip:186,hash:204,hashtag:204,header:[78,192],help:28,highlight_ful:146,highlight_html:147,homebrew:27,how:[3,5,6,7,8,15,17,19,75,79,84,159,174,175,177,184,192,196,205],html:[17,18,148],html_untag:148,http:[136,164,185,186,190,205],httpd:[135,138,139,188,190],hypertext:205,i18n:17,improv:[33,37,38,39,40,41,42],in_valu:149,index:[0,32,72,121,159,167,200,201,203],inform:[202,208],instal:[6,7,8,18,23,28,31,166],instant:0,integ:158,introduct:[18,176],invert:0,io_flush:94,issu:[19,205],javascript:208,jessi:25,json:[78,95],just:75,kei:[103,117,182,206],kern:181,key_typ:121,keyword:204,keywordn:146,label:[103,117],languag:17,latest:12,latitud:[0,198],launch:138,learn:[138,139,174,175,176,177],learner:139,left:158,less:[11,157,158],less_equ:11,let:204,lexicon:[121,201,202],librari:[0,28],like:208,limit:[32,75,102,103,117,166,178,182,199],line:[133,138,164],linux:[7,25,181],list:[2,19,80],liter:158,load:[75,95,135,201,204],localstatedir:28,locat:[0,143,166,200,208],lock:0,lock_clear:96,log:[28,139,160,186],log_level:97,log_put:98,log_reopen:99,logic:[157,158],logical_count:100,logical_paramet:101,logical_range_filt:102,logical_select:103,logical_shard_list:104,logical_t:[100,102,103,104,105],logical_table_remov:105,longitud:[0,198],lz4:28,mac:27,macport:27,mail:[2,19],make:[6,7,12,28],manual:43,match:[28,157,158],match_column:[103,117,151,203],match_escalation_threshold:[103,117],max:[81,100,102,103,105,126,141,181],max_bord:[100,102,103,105,141],max_map_count:181,maxfileperproc:181,memcach:189,memori:[181,196],messag:28,message_pack_install_prefix:28,messagepack:78,micro:204,min:[100,102,103,105,141],min_bord:[100,102,103,105,141],mmap:196,mode:[11,125,127,133],modul:135,modulo:158,mroonga:0,multi:186,multipl:[158,199,203],munin:28,name:[88,108,121,124,136,137,182,203],narrow:208,nest:203,new_nam:[88,124],nginx:135,nofil:181,normal:[75,106,121,127,161],normalizer_list:107,normalizer_nam:146,normalizerauto:161,normalizernfkc51:161,not_equ:11,now:150,number:[28,117,181],numer:198,object:158,object_exist:108,offlin:159,offset:[102,103,117],old:33,onlin:159,open:181,open_tagn:146,oper:[158,162,201],option:[84,89,93,94,100,101,102,103,104,105,106,125,126,127,133,137,138,139,143,151],oracl:29,order:102,origin:158,other:[28,167],output:[17,78,103,117,164,201],output_column:[102,103,117],overcommit_memori:181,overview:[0,68,198],pack:28,packag:[28,30,190],page:117,paramet:[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,108,111,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,133,138,139,141,143,146,147,148,149,151,154,155,181,203],patch:17,path:[28,116,186],patricia:206,per:181,perform:[135,186],period:42,persist:178,person:30,phrase:157,platform:28,plugin:[28,69],plugin_regist:109,plugin_unregist:110,point1:143,point2:143,point:158,post:[135,186,204],ppa:30,prefix:[11,28,157,158,174,186,206],prepar:207,primari:[182,206],process:[160,181],protocol:[189,192,205],proxi:135,proxy_cach:135,pseudo:73,pull:17,quantifi:167,queri:[0,103,117,135,151,157,160,165,207],query_expand:[103,117,151],query_expans:117,query_flag:[103,117],query_str:151,query_typ:192,queryexpandertsv:166,quit:111,rand:152,rang:[121,201],range_filt:112,range_index:101,read:[0,174],record:[117,178,201],recov:131,rectangl:143,recurs:94,red:12,refer:[43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,75,198,200],regist:113,regular:[157,158,167],relat:[102,103,117,135,139,203],relationship:200,releas:[33,37,38,39,40,41],remot:205,report:19,repositori:[5,6,7,8,13,17],request:[17,79,135,138],request_cancel:114,requir:[84,86,88,89,94,100,101,102,103,104,105,106,108,114,117,124,125,126,127,129,138,143,148,151],resolut:200,restart:190,result:[199,201],revers:[135,200],right:158,ruby_ev:115,ruby_load:116,rule:172,run:[6,7,8,18,184,192,205],sampl:[157,158],scalar:74,scope:154,score:117,scorer:[103,117,168,208],scorer_tf_at_most:169,scorer_tf_idf:170,script:[115,158],search:[0,75,103,117,157,158,163,174,175,177,200,201,202,203,204,206,207,208],secur:[158,205],see:[6,7,8,78,79,80,81,83,86,90,92,95,97,98,99,104,106,107,109,110,112,113,114,115,116,117,120,121,125,127,128,137,146,147,151,153,154,156,161,166,170,178,179,192],select:[103,117],send:[17,205],senna:42,server:[0,133,136,183,190,192,205],set:[135,138],sharabl:0,shard:172,shard_kei:[100,102,103,105],shift:158,shut:135,shutdown:118,sign:158,similar:[11,158,175],simpl:[103,117],size:192,snippet_html:153,softwar:[6,7,8,18],solari:29,solut:196,sort:[199,201,208],sortbi:[103,117],sourc:[24,25,26,27,28,30,31],specif:[135,191,203,204],specifi:[143,182,201],sphere:143,standalon:133,start:190,statu:[119,137,192],stop:190,storag:0,store:[0,121],string:[106,125,127,158,198],style:117,sub_filt:154,submit:19,substitution_t:151,subtract:158,success:78,suffix:[11,157,158,206],suggest:[120,137,138,139,173,176,177],summari:[45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,72,74,75,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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,135,136,138,139,141,143,146,147,148,149,151,153,154,155,161,166,167,168,169,170,172,178,179,180,181,184],support:163,synopsi:[135,136,138,139],synopsti:137,syntax:[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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,141,143,146,147,148,149,151,153,154,155,157,158,167,208],tabl:[32,84,86,88,93,117,121,125,139,178,182,201,203,204],table_cr:121,table_dat_kei:178,table_hash_kei:178,table_list:122,table_no_kei:178,table_pat_kei:178,table_remov:123,table_renam:124,table_token:125,tag:[121,200,204],target:155,target_nam:[94,96,129],target_valu:149,temporari:178,term:158,termin:192,text:[0,157,201,202,203,208],than:[157,158],thank:[33,37,38,39,40,41],thread_limit:126,threshold:28,time:[158,198,204],to_nam:84,to_tabl:84,todo:[151,153],token:[0,127,179,180],token_filt:[121,127],tokenbigram:180,tokenbigramignoreblank:180,tokenbigramignoreblanksplitsymbol:180,tokenbigramignoreblanksplitsymbolalpha:180,tokenbigramignoreblanksplitsymbolalphadigit:180,tokenbigramsplitsymbol:180,tokenbigramsplitsymbolalpha:180,tokenbigramsplitsymbolalphadigit:180,tokendelimit:180,tokendelimitnul:180,tokenfilterstem:179,tokenfilterstopword:179,tokenizer_list:128,tokenizs:180,tokenmecab:180,tokenregexp:180,tokentrigram:180,tokenunigram:180,tool:[28,135,205],topic:15,total:117,tracker:19,transfer:205,translat:17,travi:21,trie:206,truncat:129,tsv:[78,166],tune:181,tutori:197,twitter:2,type:[182,198,204],ubuntu:30,unix:7,unsign:158,updat:[0,12,17,18,174],upgrad:186,usag:[72,74,75,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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,133,135,138,139,141,143,146,147,148,149,151,153,154,155,164,166,167,168,170,181],use_html_escap:146,use_range_index:102,user:204,valu:[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,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,136,138,141,143,146,147,148,149,151,153,154,155,204],value_typ:121,variou:[198,208],vector:[75,198],vector_s:155,version:186,view:201,weight:[75,203],what:180,wheezi:25,who:204,window:[8,31],without:186,work:[17,174,175,177],worker_process:135,xml:78,xor:158,your:17,zip:31,zlib:28}})
@@ -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 v5.0.4-139-g6629adb documentation</title>
10
+ <title>5. Server &mdash; Groonga v5.0.6-226-gd7da7e7 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: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
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 v5.0.4-139-g6629adb documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7 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 v5.0.4-139-g6629adb documentation</a> &raquo;</li>
62
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 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>
@@ -98,7 +98,7 @@
98
98
  </div>
99
99
  </div>
100
100
  </div>
101
- <div class="sphinxsidebar">
101
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
102
102
  <div class="sphinxsidebarwrapper">
103
103
  <h4>Previous topic</h4>
104
104
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -106,12 +106,14 @@
106
106
  <h4>Next topic</h4>
107
107
  <p class="topless"><a href="server/package.html"
108
108
  title="next chapter">5.1. Server packages</a></p>
109
- <h3>This Page</h3>
110
- <ul class="this-page-menu">
111
- <li><a href="_sources/server.txt"
112
- rel="nofollow">Show Source</a></li>
113
- </ul>
114
- <div id="searchbox" style="display: none">
109
+ <div role="note" aria-label="source link">
110
+ <h3>This Page</h3>
111
+ <ul class="this-page-menu">
112
+ <li><a href="_sources/server.txt"
113
+ rel="nofollow">Show Source</a></li>
114
+ </ul>
115
+ </div>
116
+ <div id="searchbox" style="display: none" role="search">
115
117
  <h3>Quick search</h3>
116
118
  <form class="search" action="search.html" method="get">
117
119
  <input type="text" name="q" />
@@ -128,7 +130,7 @@
128
130
  </div>
129
131
  <div class="clearer"></div>
130
132
  </div>
131
- <div class="related">
133
+ <div class="related" role="navigation" aria-label="related navigation">
132
134
  <h3>Navigation</h3>
133
135
  <ul>
134
136
  <li class="right" style="margin-right: 10px">
@@ -140,10 +142,10 @@
140
142
  <li class="right" >
141
143
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
142
144
  >previous</a> |</li>
143
- <li><a href="index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
145
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
144
146
  </ul>
145
147
  </div>
146
- <div class="footer">
148
+ <div class="footer" role="contentinfo">
147
149
  &copy; Copyright 2009-2015, Brazil, Inc.
148
150
  </div>
149
151
  </body>
@@ -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.3. GQTP &mdash; Groonga v5.0.4-139-g6629adb documentation</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.6-226-gd7da7e7 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: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
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 v5.0.4-139-g6629adb documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.4. Memcached binary protocol" href="memcached.html" />
31
31
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.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,15 +60,15 @@
60
60
  <li class="right" >
61
61
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
64
- <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
64
+ <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
67
67
 
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.3. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
@@ -108,7 +108,7 @@ line:</p>
108
108
  <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -d [options] DB_PATH
109
109
  </pre></div>
110
110
  </div>
111
- <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> for available <tt class="docutils literal"><span class="pre">options</span></tt>.</p>
111
+ <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> for available <code class="docutils literal"><span class="pre">options</span></code>.</p>
112
112
  </div>
113
113
  </div>
114
114
 
@@ -116,7 +116,7 @@ line:</p>
116
116
  </div>
117
117
  </div>
118
118
  </div>
119
- <div class="sphinxsidebar">
119
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
120
120
  <div class="sphinxsidebarwrapper">
121
121
  <h3><a href="../index.html">Table Of Contents</a></h3>
122
122
  <ul>
@@ -133,12 +133,14 @@ line:</p>
133
133
  <h4>Next topic</h4>
134
134
  <p class="topless"><a href="memcached.html"
135
135
  title="next chapter">5.4. Memcached binary protocol</a></p>
136
- <h3>This Page</h3>
137
- <ul class="this-page-menu">
138
- <li><a href="../_sources/server/gqtp.txt"
139
- rel="nofollow">Show Source</a></li>
140
- </ul>
141
- <div id="searchbox" style="display: none">
136
+ <div role="note" aria-label="source link">
137
+ <h3>This Page</h3>
138
+ <ul class="this-page-menu">
139
+ <li><a href="../_sources/server/gqtp.txt"
140
+ rel="nofollow">Show Source</a></li>
141
+ </ul>
142
+ </div>
143
+ <div id="searchbox" style="display: none" role="search">
142
144
  <h3>Quick search</h3>
143
145
  <form class="search" action="../search.html" method="get">
144
146
  <input type="text" name="q" />
@@ -155,7 +157,7 @@ line:</p>
155
157
  </div>
156
158
  <div class="clearer"></div>
157
159
  </div>
158
- <div class="related">
160
+ <div class="related" role="navigation" aria-label="related navigation">
159
161
  <h3>Navigation</h3>
160
162
  <ul>
161
163
  <li class="right" style="margin-right: 10px">
@@ -167,11 +169,11 @@ line:</p>
167
169
  <li class="right" >
168
170
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
169
171
  >previous</a> |</li>
170
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
171
- <li><a href="../server.html" >5. Server</a> &raquo;</li>
172
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
173
+ <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &raquo;</li>
172
174
  </ul>
173
175
  </div>
174
- <div class="footer">
176
+ <div class="footer" role="contentinfo">
175
177
  &copy; Copyright 2009-2015, Brazil, Inc.
176
178
  </div>
177
179
  </body>
@@ -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. HTTP &mdash; Groonga v5.0.4-139-g6629adb documentation</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.6-226-gd7da7e7 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: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
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 v5.0.4-139-g6629adb documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.2.1. Comparison" href="http/comparison.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,15 +60,15 @@
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 v5.0.4-139-g6629adb documentation</a> &raquo;</li>
64
- <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
64
+ <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
67
67
 
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="http">
74
74
  <h1>5.2. HTTP<a class="headerlink" href="#http" title="Permalink to this headline">¶</a></h1>
@@ -109,7 +109,7 @@ implementation. It is also fast and has many HTTP features.</p>
109
109
  </div>
110
110
  </div>
111
111
  </div>
112
- <div class="sphinxsidebar">
112
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
113
113
  <div class="sphinxsidebarwrapper">
114
114
  <h4>Previous topic</h4>
115
115
  <p class="topless"><a href="package.html"
@@ -117,12 +117,14 @@ implementation. It is also fast and has many HTTP features.</p>
117
117
  <h4>Next topic</h4>
118
118
  <p class="topless"><a href="http/comparison.html"
119
119
  title="next chapter">5.2.1. Comparison</a></p>
120
- <h3>This Page</h3>
121
- <ul class="this-page-menu">
122
- <li><a href="../_sources/server/http.txt"
123
- rel="nofollow">Show Source</a></li>
124
- </ul>
125
- <div id="searchbox" style="display: none">
120
+ <div role="note" aria-label="source link">
121
+ <h3>This Page</h3>
122
+ <ul class="this-page-menu">
123
+ <li><a href="../_sources/server/http.txt"
124
+ rel="nofollow">Show Source</a></li>
125
+ </ul>
126
+ </div>
127
+ <div id="searchbox" style="display: none" role="search">
126
128
  <h3>Quick search</h3>
127
129
  <form class="search" action="../search.html" method="get">
128
130
  <input type="text" name="q" />
@@ -139,7 +141,7 @@ implementation. It is also fast and has many HTTP features.</p>
139
141
  </div>
140
142
  <div class="clearer"></div>
141
143
  </div>
142
- <div class="related">
144
+ <div class="related" role="navigation" aria-label="related navigation">
143
145
  <h3>Navigation</h3>
144
146
  <ul>
145
147
  <li class="right" style="margin-right: 10px">
@@ -151,11 +153,11 @@ implementation. It is also fast and has many HTTP features.</p>
151
153
  <li class="right" >
152
154
  <a href="package.html" title="5.1. Server packages"
153
155
  >previous</a> |</li>
154
- <li><a href="../index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
155
- <li><a href="../server.html" >5. Server</a> &raquo;</li>
156
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
157
+ <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &raquo;</li>
156
158
  </ul>
157
159
  </div>
158
- <div class="footer">
160
+ <div class="footer" role="contentinfo">
159
161
  &copy; Copyright 2009-2015, Brazil, Inc.
160
162
  </div>
161
163
  </body>
@@ -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.1. Comparison &mdash; Groonga v5.0.4-139-g6629adb documentation</title>
10
+ <title>5.2.1. Comparison &mdash; Groonga v5.0.6-226-gd7da7e7 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: '5.0.4-139-g6629adb',
18
+ VERSION: '5.0.6-226-gd7da7e7',
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 v5.0.4-139-g6629adb documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.0.6-226-gd7da7e7 documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
31
31
  <link rel="prev" title="5.2. HTTP" href="../http.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,16 +60,16 @@
60
60
  <li class="right" >
61
61
  <a href="../http.html" title="5.2. HTTP"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../../index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
64
- <li><a href="../../server.html" >5. Server</a> &raquo;</li>
65
- <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
64
+ <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
65
+ <li class="nav-item nav-item-2"><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
68
68
 
69
69
  <div class="document">
70
70
  <div class="documentwrapper">
71
71
  <div class="bodywrapper">
72
- <div class="body">
72
+ <div class="body" role="main">
73
73
 
74
74
  <div class="section" id="comparison">
75
75
  <h1>5.2.1. Comparison<a class="headerlink" href="#comparison" title="Permalink to this headline">¶</a></h1>
@@ -152,7 +152,7 @@ default. If you have 8 CPU cores, 8 threads are used by default.</p>
152
152
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> uses 1 process by default. You need to set
153
153
  <a class="reference external" href="http://nginx.org/en/docs/ngx_core_module.html#worker_processes">worker_processes</a>
154
154
  directive to use CPU cores. If you have 8 CPU cores, specify
155
- <tt class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></tt> in configuration file like the following:</p>
155
+ <code class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></code> in configuration file like the following:</p>
156
156
  <div class="highlight-none"><div class="highlight"><pre>worker_processes 8;
157
157
 
158
158
  http {
@@ -194,12 +194,12 @@ http {
194
194
  </div>
195
195
  <div class="section" id="custom-prefix-path">
196
196
  <h2>5.2.1.4. Custom prefix path<a class="headerlink" href="#custom-prefix-path" title="Permalink to this headline">¶</a></h2>
197
- <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> accepts a path that starts with <tt class="docutils literal"><span class="pre">/d/</span></tt> as command URL
198
- such as <tt class="docutils literal"><span class="pre">http://localhost:10041/d/status</span></tt>. You cannot change the
199
- prefix path <tt class="docutils literal"><span class="pre">/d/</span></tt>.</p>
197
+ <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> accepts a path that starts with <code class="docutils literal"><span class="pre">/d/</span></code> as command URL
198
+ such as <code class="docutils literal"><span class="pre">http://localhost:10041/d/status</span></code>. You cannot change the
199
+ prefix path <code class="docutils literal"><span class="pre">/d/</span></code>.</p>
200
200
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> can custom prefix path. For example, you can use
201
- <tt class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></tt> as command URL. Here is a sample
202
- configuration to use <tt class="docutils literal"><span class="pre">/api/</span></tt> as prefix path:</p>
201
+ <code class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></code> as command URL. Here is a sample
202
+ configuration to use <code class="docutils literal"><span class="pre">/api/</span></code> as prefix path:</p>
203
203
  <div class="highlight-none"><div class="highlight"><pre>events {
204
204
  }
205
205
 
@@ -221,7 +221,7 @@ http {
221
221
  <p>Groonga has <a class="reference internal" href="../../reference/command/command_version.html"><em>コマンドバージョン</em></a> mechanism. It is for
222
222
  upgrading groonga commands with backward compatibility.</p>
223
223
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> can change the default command veresion by
224
- <tt class="docutils literal"><span class="pre">--default-command-version</span></tt> option. Here is a sample command line to
224
+ <code class="docutils literal"><span class="pre">--default-command-version</span></code> option. Here is a sample command line to
225
225
  use command version 2 as the default command version:</p>
226
226
  <div class="highlight-none"><div class="highlight"><pre>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
227
227
  </pre></div>
@@ -230,8 +230,8 @@ use command version 2 as the default command version:</p>
230
230
  yet. But it will be supported soon. If it is supported, you can
231
231
  provides different command version groonga commands in the same
232
232
  <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> process. Here is a sample configuration to
233
- provide command version 1 commands under <tt class="docutils literal"><span class="pre">/api/1/</span></tt> and command
234
- version 2 comamnds under <tt class="docutils literal"><span class="pre">/api/2/</span></tt>:</p>
233
+ provide command version 1 commands under <code class="docutils literal"><span class="pre">/api/1/</span></code> and command
234
+ version 2 comamnds under <code class="docutils literal"><span class="pre">/api/2/</span></code>:</p>
235
235
  <div class="highlight-none"><div class="highlight"><pre>events {
236
236
  }
237
237
 
@@ -259,8 +259,8 @@ http {
259
259
  <h2>5.2.1.6. Multi databases<a class="headerlink" href="#multi-databases" title="Permalink to this headline">¶</a></h2>
260
260
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> can use only one database in a process.</p>
261
261
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> can use one or more databases in a process. Here
262
- is a sample configuration to provide <tt class="docutils literal"><span class="pre">/tmp/db1</span></tt> database under
263
- <tt class="docutils literal"><span class="pre">/db1/</span></tt> path and <tt class="docutils literal"><span class="pre">/tmp/db2</span></tt> database under <tt class="docutils literal"><span class="pre">/db2/</span></tt> path:</p>
262
+ is a sample configuration to provide <code class="docutils literal"><span class="pre">/tmp/db1</span></code> database under
263
+ <code class="docutils literal"><span class="pre">/db1/</span></code> path and <code class="docutils literal"><span class="pre">/tmp/db2</span></code> database under <code class="docutils literal"><span class="pre">/db2/</span></code> path:</p>
264
264
  <div class="highlight-none"><div class="highlight"><pre>events {
265
265
  }
266
266
 
@@ -318,8 +318,8 @@ http {
318
318
  </div>
319
319
  <div class="section" id="gzip-compression">
320
320
  <h2>5.2.1.8. Gzip compression<a class="headerlink" href="#gzip-compression" title="Permalink to this headline">¶</a></h2>
321
- <p>HTTP supports response compression by gzip with <tt class="docutils literal"><span class="pre">Content-Encoding:</span>
322
- <span class="pre">gzip</span></tt> response header. It can reduce network flow. It is useful
321
+ <p>HTTP supports response compression by gzip with <code class="docutils literal"><span class="pre">Content-Encoding:</span>
322
+ <span class="pre">gzip</span></code> response header. It can reduce network flow. It is useful
323
323
  for large search response.</p>
324
324
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> doesn't support compression. To support compression,
325
325
  reverse proxy is needed.</p>
@@ -362,7 +362,7 @@ following rules to use loading by POST.</p>
362
362
  <ul class="simple">
363
363
  <li><cite>Content-Type</cite> header value must be <cite>application/json</cite>.</li>
364
364
  <li>JSON data is sent as body.</li>
365
- <li>Table name is specified by query parameter such as <tt class="docutils literal"><span class="pre">table=NAME</span></tt>.</li>
365
+ <li>Table name is specified by query parameter such as <code class="docutils literal"><span class="pre">table=NAME</span></code>.</li>
366
366
  </ul>
367
367
  <p>Here is an example curl command line that loads two users <cite>alice</cite> and
368
368
  <cite>bob</cite> to <cite>Users</cite> table:</p>
@@ -388,7 +388,7 @@ following rules to use loading by POST.</p>
388
388
  </div>
389
389
  </div>
390
390
  </div>
391
- <div class="sphinxsidebar">
391
+ <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
392
392
  <div class="sphinxsidebarwrapper">
393
393
  <h3><a href="../../index.html">Table Of Contents</a></h3>
394
394
  <ul>
@@ -415,12 +415,14 @@ following rules to use loading by POST.</p>
415
415
  <h4>Next topic</h4>
416
416
  <p class="topless"><a href="groonga.html"
417
417
  title="next chapter">5.2.2. groonga</a></p>
418
- <h3>This Page</h3>
419
- <ul class="this-page-menu">
420
- <li><a href="../../_sources/server/http/comparison.txt"
421
- rel="nofollow">Show Source</a></li>
422
- </ul>
423
- <div id="searchbox" style="display: none">
418
+ <div role="note" aria-label="source link">
419
+ <h3>This Page</h3>
420
+ <ul class="this-page-menu">
421
+ <li><a href="../../_sources/server/http/comparison.txt"
422
+ rel="nofollow">Show Source</a></li>
423
+ </ul>
424
+ </div>
425
+ <div id="searchbox" style="display: none" role="search">
424
426
  <h3>Quick search</h3>
425
427
  <form class="search" action="../../search.html" method="get">
426
428
  <input type="text" name="q" />
@@ -437,7 +439,7 @@ following rules to use loading by POST.</p>
437
439
  </div>
438
440
  <div class="clearer"></div>
439
441
  </div>
440
- <div class="related">
442
+ <div class="related" role="navigation" aria-label="related navigation">
441
443
  <h3>Navigation</h3>
442
444
  <ul>
443
445
  <li class="right" style="margin-right: 10px">
@@ -449,12 +451,12 @@ following rules to use loading by POST.</p>
449
451
  <li class="right" >
450
452
  <a href="../http.html" title="5.2. HTTP"
451
453
  >previous</a> |</li>
452
- <li><a href="../../index.html">Groonga v5.0.4-139-g6629adb documentation</a> &raquo;</li>
453
- <li><a href="../../server.html" >5. Server</a> &raquo;</li>
454
- <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
454
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> &raquo;</li>
455
+ <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
456
+ <li class="nav-item nav-item-2"><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
455
457
  </ul>
456
458
  </div>
457
- <div class="footer">
459
+ <div class="footer" role="contentinfo">
458
460
  &copy; Copyright 2009-2015, Brazil, Inc.
459
461
  </div>
460
462
  </body>