rroonga 5.0.0-x86-mingw32 → 5.0.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. checksums.yaml +8 -8
  2. data/.yardopts +1 -0
  3. data/Rakefile +1 -16
  4. data/example/bookmark.rb +1 -6
  5. data/example/index-html.rb +0 -1
  6. data/ext/groonga/extconf.rb +4 -7
  7. data/ext/groonga/rb-grn-array.c +1 -1
  8. data/ext/groonga/rb-grn-column.c +33 -67
  9. data/ext/groonga/rb-grn-context.c +5 -5
  10. data/ext/groonga/rb-grn-database.c +2 -2
  11. data/ext/groonga/rb-grn-double-array-trie.c +4 -2
  12. data/ext/groonga/rb-grn-encoding-support.c +7 -1
  13. data/ext/groonga/rb-grn-equal-operator.c +85 -0
  14. data/ext/groonga/rb-grn-exception.c +17 -0
  15. data/ext/groonga/rb-grn-expression.c +85 -43
  16. data/ext/groonga/rb-grn-greater-equal-operator.c +88 -0
  17. data/ext/groonga/rb-grn-greater-operator.c +85 -0
  18. data/ext/groonga/rb-grn-hash.c +1 -1
  19. data/ext/groonga/rb-grn-index-column.c +150 -11
  20. data/ext/groonga/rb-grn-less-equal-operator.c +88 -0
  21. data/ext/groonga/rb-grn-less-operator.c +85 -0
  22. data/ext/groonga/rb-grn-logger.c +5 -5
  23. data/ext/groonga/rb-grn-match-operator.c +86 -0
  24. data/ext/groonga/rb-grn-normalizer.c +8 -1
  25. data/ext/groonga/rb-grn-not-equal-operator.c +85 -0
  26. data/ext/groonga/rb-grn-object.c +170 -36
  27. data/ext/groonga/rb-grn-operator.c +395 -172
  28. data/ext/groonga/rb-grn-patricia-trie.c +10 -8
  29. data/ext/groonga/rb-grn-plugin.c +51 -3
  30. data/ext/groonga/rb-grn-prefix-operator.c +86 -0
  31. data/ext/groonga/rb-grn-procedure-type.c +4 -0
  32. data/ext/groonga/rb-grn-query-logger.c +4 -4
  33. data/ext/groonga/rb-grn-regexp-operator.c +85 -0
  34. data/ext/groonga/rb-grn-snippet.c +1 -1
  35. data/ext/groonga/rb-grn-table-key-support.c +9 -5
  36. data/ext/groonga/rb-grn-table.c +52 -66
  37. data/ext/groonga/rb-grn-type.c +1 -1
  38. data/ext/groonga/rb-grn-utils.c +22 -3
  39. data/ext/groonga/rb-grn.h +31 -4
  40. data/ext/groonga/rb-groonga.c +9 -9
  41. data/lib/1.9/groonga.so +0 -0
  42. data/lib/2.0/groonga.so +0 -0
  43. data/lib/2.1/groonga.so +0 -0
  44. data/lib/2.2/groonga.so +0 -0
  45. data/lib/groonga/context.rb +31 -0
  46. data/lib/groonga/expression-builder.rb +14 -1
  47. data/lib/groonga/record.rb +10 -8
  48. data/lib/groonga/schema.rb +3 -1
  49. data/rroonga-build.rb +2 -2
  50. data/rroonga.gemspec +3 -3
  51. data/test/groonga-test-utils.rb +4 -0
  52. data/test/test-column.rb +28 -26
  53. data/test/test-exception.rb +1 -0
  54. data/test/test-expression-builder.rb +83 -1
  55. data/test/test-expression.rb +80 -48
  56. data/test/test-index-column.rb +102 -29
  57. data/test/test-normalizer.rb +35 -29
  58. data/test/test-operator.rb +214 -0
  59. data/test/test-plugin.rb +24 -6
  60. data/test/test-procedure.rb +29 -0
  61. data/test/test-schema-type.rb +14 -0
  62. data/test/test-table-select-mecab.rb +1 -4
  63. data/test/test-table.rb +7 -0
  64. data/test/test-token-regexp.rb +30 -0
  65. data/test/test-type.rb +24 -0
  66. data/vendor/local/bin/grndb.exe +0 -0
  67. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  68. data/vendor/local/bin/groonga.exe +0 -0
  69. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  70. data/vendor/local/bin/libgroonga-0.dll +0 -0
  71. data/vendor/local/bin/libmecab-1.dll +0 -0
  72. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  73. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  74. data/vendor/local/bin/libonig-5.dll +0 -0
  75. data/vendor/local/bin/libstdc++-6.dll +0 -0
  76. data/vendor/local/bin/lz4.exe +0 -0
  77. data/vendor/local/bin/lz4c.exe +0 -0
  78. data/vendor/local/bin/lz4cat +0 -0
  79. data/vendor/local/bin/mecab-config +2 -2
  80. data/vendor/local/bin/mecab.exe +0 -0
  81. data/vendor/local/bin/onig-config +1 -1
  82. data/vendor/local/bin/zlib1.dll +0 -0
  83. data/vendor/local/etc/groonga/groonga.conf +1 -1
  84. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  85. data/vendor/local/include/groonga/groonga.h +1 -0
  86. data/vendor/local/include/groonga/groonga/expr.h +2 -0
  87. data/vendor/local/include/groonga/groonga/groonga.h +32 -5
  88. data/vendor/local/include/groonga/groonga/ii.h +7 -0
  89. data/vendor/local/include/groonga/groonga/obj.h +37 -0
  90. data/vendor/local/include/groonga/groonga/scorer.h +95 -0
  91. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  92. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  93. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  94. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  95. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  96. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  97. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  98. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  99. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  100. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  101. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  102. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  103. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +6 -3
  104. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +6 -5
  105. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +421 -17
  106. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  107. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  108. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  109. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  110. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  111. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  112. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  113. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  114. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  115. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  116. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  117. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  118. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  119. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  120. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  121. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  122. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +12 -4
  123. data/vendor/local/lib/groonga/scripts/ruby/database.rb +11 -3
  124. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +23 -0
  125. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +158 -0
  126. data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +39 -0
  127. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +4 -0
  128. data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +2 -0
  129. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +11 -7
  130. data/vendor/local/lib/groonga/scripts/ruby/object.rb +11 -0
  131. data/vendor/local/lib/groonga/scripts/ruby/operator.rb +22 -0
  132. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +7 -2
  133. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -11
  134. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +137 -34
  135. data/vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb +9 -0
  136. data/vendor/local/lib/libgroonga.a +0 -0
  137. data/vendor/local/lib/libgroonga.dll.a +0 -0
  138. data/vendor/local/lib/libgroonga.la +2 -2
  139. data/vendor/local/lib/liblz4.a +0 -0
  140. data/vendor/local/lib/liblz4.dll +0 -0
  141. data/vendor/local/lib/liblz4.dll.1 +0 -0
  142. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  143. data/vendor/local/lib/libmecab.a +0 -0
  144. data/vendor/local/lib/libmecab.dll.a +0 -0
  145. data/vendor/local/lib/libmecab.la +2 -2
  146. data/vendor/local/lib/libmsgpack.a +0 -0
  147. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  148. data/vendor/local/lib/libmsgpack.la +2 -2
  149. data/vendor/local/lib/libmsgpackc.a +0 -0
  150. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  151. data/vendor/local/lib/libmsgpackc.la +2 -2
  152. data/vendor/local/lib/libonig.a +0 -0
  153. data/vendor/local/lib/libonig.dll.a +0 -0
  154. data/vendor/local/lib/libonig.la +2 -2
  155. data/vendor/local/lib/libz.a +0 -0
  156. data/vendor/local/lib/libz.dll.a +0 -0
  157. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  158. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  159. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  160. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  161. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  162. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  163. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  164. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  165. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  166. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  167. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  168. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  169. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  170. data/vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png +0 -0
  171. data/vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png +0 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +1 -1
  173. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +32 -17
  174. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  175. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  176. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  177. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  178. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
  179. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  180. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  181. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  182. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +194 -0
  183. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +1 -1
  184. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +2 -2
  185. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +2 -2
  186. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
  187. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +3 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +42 -0
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt +54 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
  191. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +2 -2
  192. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
  193. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -3
  194. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -4
  195. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +5 -5
  196. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +4 -4
  197. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +173 -0
  198. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  199. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +7 -6
  200. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +64 -0
  201. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  202. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +11 -1
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +3 -2
  204. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
  205. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
  206. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +17 -17
  207. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +12 -12
  208. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +7 -7
  209. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +4 -4
  210. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +6 -6
  211. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -1
  212. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +47 -26
  213. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt +5 -5
  214. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +3 -3
  215. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +6 -6
  216. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +1 -1
  218. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/in_values.txt +54 -2
  219. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +4 -4
  220. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +4 -4
  221. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  222. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -0
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +4 -0
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +2 -1
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +403 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +217 -0
  228. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  229. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  230. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +13 -0
  231. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +8 -0
  232. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +530 -16
  233. data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +2 -1
  234. data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +15 -0
  235. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +66 -1
  236. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  237. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +0 -81
  238. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +6 -68
  239. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -26
  240. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  241. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  242. data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
  243. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -4
  244. data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
  245. data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
  246. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
  247. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
  248. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  249. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  250. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
  251. data/vendor/local/share/doc/groonga/en/html/characteristic.html +18 -20
  252. data/vendor/local/share/doc/groonga/en/html/client.html +22 -24
  253. data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
  254. data/vendor/local/share/doc/groonga/en/html/contribution.html +18 -20
  255. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
  256. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
  257. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
  258. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
  259. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +51 -38
  260. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
  261. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
  262. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
  263. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
  264. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
  265. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +24 -26
  266. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
  267. data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
  268. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +24 -26
  269. data/vendor/local/share/doc/groonga/en/html/genindex.html +26 -14
  270. data/vendor/local/share/doc/groonga/en/html/index.html +150 -130
  271. data/vendor/local/share/doc/groonga/en/html/install.html +32 -34
  272. data/vendor/local/share/doc/groonga/en/html/install/centos.html +28 -30
  273. data/vendor/local/share/doc/groonga/en/html/install/debian.html +24 -26
  274. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -30
  275. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +22 -24
  276. data/vendor/local/share/doc/groonga/en/html/install/others.html +87 -89
  277. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +22 -24
  278. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +25 -27
  279. data/vendor/local/share/doc/groonga/en/html/install/windows.html +30 -32
  280. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
  281. data/vendor/local/share/doc/groonga/en/html/news.html +256 -27
  282. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
  283. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +19 -21
  284. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
  285. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +32 -34
  286. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +27 -29
  287. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +98 -100
  288. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +68 -70
  289. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +102 -104
  290. data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
  291. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  292. data/vendor/local/share/doc/groonga/en/html/reference.html +139 -118
  293. data/vendor/local/share/doc/groonga/en/html/reference/api.html +51 -52
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +49 -51
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +60 -62
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +80 -82
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +42 -44
  298. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +37 -39
  299. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +130 -80
  300. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +48 -50
  301. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +44 -46
  302. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -81
  303. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +42 -44
  304. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +44 -46
  305. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +42 -44
  306. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +41 -43
  307. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +41 -43
  308. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +40 -42
  309. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +89 -91
  310. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +44 -46
  311. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +39 -41
  312. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +75 -77
  313. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +64 -66
  314. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +40 -42
  315. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +39 -41
  316. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +202 -0
  317. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +58 -60
  318. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
  319. data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
  320. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +17 -19
  321. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +22 -24
  322. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +17 -19
  323. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +58 -60
  324. data/vendor/local/share/doc/groonga/en/html/reference/command.html +56 -54
  325. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
  326. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +53 -55
  327. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +22 -24
  328. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +94 -96
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +39 -41
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +43 -45
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +23 -25
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +39 -41
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +71 -73
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +24 -26
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -46
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +37 -39
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +24 -26
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +35 -37
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +22 -24
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -45
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +49 -47
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +23 -25
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +24 -26
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +26 -28
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +314 -0
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +252 -0
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +87 -89
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +46 -48
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +195 -0
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +193 -0
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +38 -40
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +37 -39
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +61 -51
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +54 -56
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +54 -56
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +590 -592
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +37 -39
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +40 -42
  360. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +92 -94
  361. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +152 -154
  362. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +49 -51
  363. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +39 -41
  364. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +68 -70
  365. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +103 -105
  366. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +45 -47
  367. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +52 -54
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -21
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +35 -37
  370. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +21 -23
  371. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +26 -28
  372. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +73 -75
  373. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
  374. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  375. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +42 -44
  376. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +34 -36
  377. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +124 -90
  378. data/vendor/local/share/doc/groonga/en/html/reference/function.html +42 -44
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +66 -68
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +44 -46
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +113 -115
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +55 -57
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +45 -47
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +81 -83
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +65 -67
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +54 -56
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +135 -44
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -42
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +81 -83
  390. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +43 -45
  391. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +67 -69
  392. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +66 -70
  393. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +39 -41
  394. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +349 -286
  395. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +483 -417
  396. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -37
  397. data/vendor/local/share/doc/groonga/en/html/reference/log.html +38 -40
  398. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +44 -46
  399. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +30 -31
  400. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +32 -34
  401. data/vendor/local/share/doc/groonga/en/html/reference/output.html +32 -34
  402. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
  403. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +60 -62
  404. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +931 -0
  405. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +442 -0
  406. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +153 -0
  407. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +287 -0
  408. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +114 -0
  409. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +45 -47
  410. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +51 -53
  411. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +40 -42
  412. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +38 -40
  413. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +40 -42
  414. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +52 -54
  415. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +36 -38
  416. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +1394 -34
  417. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +57 -59
  418. data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -40
  419. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  420. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  421. data/vendor/local/share/doc/groonga/en/html/server.html +23 -24
  422. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +28 -30
  423. data/vendor/local/share/doc/groonga/en/html/server/http.html +42 -44
  424. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +68 -70
  425. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +30 -32
  426. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +29 -31
  427. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +137 -0
  428. data/vendor/local/share/doc/groonga/en/html/server/package.html +36 -38
  429. data/vendor/local/share/doc/groonga/en/html/spec.html +22 -24
  430. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +208 -129
  431. data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
  432. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
  433. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  434. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  435. data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -25
  436. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +17 -19
  437. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +31 -33
  438. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +20 -22
  439. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
  440. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +17 -19
  441. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +21 -23
  442. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +50 -52
  443. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +27 -125
  444. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +18 -20
  445. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +20 -22
  446. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +33 -35
  447. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  448. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png +0 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png +0 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +1 -1
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +32 -17
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +194 -0
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +1 -1
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +2 -2
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +2 -2
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +3 -0
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +42 -0
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt +54 -0
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +2 -2
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -3
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -4
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +5 -5
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +4 -4
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +173 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +112 -0
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +7 -6
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +64 -0
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +63 -0
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +11 -1
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +3 -2
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +17 -17
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +12 -12
  486. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +7 -7
  487. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +4 -4
  488. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +6 -6
  489. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -1
  490. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +47 -26
  491. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt +5 -5
  492. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +3 -3
  493. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +6 -6
  494. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
  495. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +1 -1
  496. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt +54 -2
  497. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +4 -4
  498. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +4 -4
  499. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
  500. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
  501. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -0
  502. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +4 -0
  503. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +2 -1
  504. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +403 -0
  505. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +217 -0
  506. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
  507. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
  508. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +13 -0
  509. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +8 -0
  510. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +530 -16
  511. data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +2 -1
  512. data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +15 -0
  513. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +66 -1
  514. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  515. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +0 -81
  516. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +6 -68
  517. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -26
  518. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  519. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  520. data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
  521. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -4
  522. data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
  523. data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
  524. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
  525. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
  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 +17 -19
  530. data/vendor/local/share/doc/groonga/ja/html/client.html +22 -24
  531. data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
  532. data/vendor/local/share/doc/groonga/ja/html/contribution.html +18 -20
  533. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
  534. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
  535. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
  536. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
  537. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +51 -38
  538. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
  539. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
  540. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
  541. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
  542. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +17 -19
  543. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +24 -26
  544. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -19
  545. data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
  546. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +20 -22
  547. data/vendor/local/share/doc/groonga/ja/html/genindex.html +26 -14
  548. data/vendor/local/share/doc/groonga/ja/html/index.html +150 -130
  549. data/vendor/local/share/doc/groonga/ja/html/install.html +32 -34
  550. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +31 -33
  551. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -27
  552. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +29 -31
  553. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +22 -24
  554. data/vendor/local/share/doc/groonga/ja/html/install/others.html +78 -80
  555. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +21 -23
  556. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +26 -28
  557. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -31
  558. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
  559. data/vendor/local/share/doc/groonga/ja/html/news.html +210 -27
  560. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
  561. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +19 -21
  562. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
  563. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +32 -34
  564. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +27 -29
  565. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +91 -93
  566. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +59 -61
  567. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +89 -91
  568. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
  569. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  570. data/vendor/local/share/doc/groonga/ja/html/reference.html +139 -118
  571. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +51 -52
  572. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +49 -51
  573. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +55 -57
  574. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +80 -82
  575. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +42 -44
  576. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +37 -39
  577. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +126 -76
  578. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +48 -50
  579. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +44 -46
  580. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +74 -76
  581. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +42 -44
  582. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +44 -46
  583. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +42 -44
  584. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +41 -43
  585. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +41 -43
  586. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +40 -42
  587. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +89 -91
  588. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +44 -46
  589. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +39 -41
  590. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +75 -77
  591. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +64 -66
  592. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +40 -42
  593. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +39 -41
  594. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +197 -0
  595. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +58 -60
  596. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
  597. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
  598. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +17 -19
  599. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +22 -24
  600. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +17 -19
  601. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +48 -50
  602. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
  603. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
  604. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +43 -45
  605. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +22 -24
  606. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +93 -95
  607. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +35 -37
  608. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +43 -45
  609. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +23 -25
  610. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +39 -41
  611. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +62 -64
  612. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +24 -26
  613. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -40
  614. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +37 -39
  615. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +24 -26
  616. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -34
  617. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +22 -24
  618. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +33 -35
  619. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +48 -46
  620. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +23 -25
  621. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +24 -26
  622. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +26 -28
  623. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +314 -0
  624. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +250 -0
  625. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +80 -81
  626. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +46 -48
  627. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +188 -0
  628. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +190 -0
  629. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +38 -40
  630. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +37 -39
  631. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +57 -47
  632. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +71 -73
  633. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +53 -55
  634. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +53 -55
  635. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +394 -396
  636. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +37 -39
  637. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +38 -40
  638. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +78 -80
  639. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +123 -125
  640. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -51
  641. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +39 -41
  642. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +61 -63
  643. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +89 -91
  644. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +46 -48
  645. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +51 -53
  646. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -21
  647. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -37
  648. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +21 -23
  649. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +26 -28
  650. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +61 -63
  651. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
  652. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  653. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +42 -44
  654. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +34 -36
  655. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +126 -90
  656. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +42 -44
  657. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +63 -65
  658. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +44 -46
  659. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +94 -96
  660. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +55 -57
  661. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +45 -47
  662. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +66 -68
  663. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +55 -57
  664. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +53 -55
  665. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +135 -44
  666. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +40 -42
  667. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +70 -72
  668. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +43 -45
  669. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +53 -55
  670. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +56 -62
  671. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +36 -38
  672. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +229 -171
  673. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +381 -322
  674. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -36
  675. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +38 -40
  676. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +38 -40
  677. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +28 -30
  678. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +32 -34
  679. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +28 -30
  680. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
  681. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +39 -41
  682. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +878 -0
  683. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +442 -0
  684. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +154 -0
  685. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +287 -0
  686. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +115 -0
  687. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +45 -47
  688. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +48 -50
  689. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +40 -42
  690. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +38 -40
  691. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +40 -42
  692. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -44
  693. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +37 -39
  694. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +1300 -34
  695. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +57 -59
  696. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -40
  697. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  698. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  699. data/vendor/local/share/doc/groonga/ja/html/server.html +23 -24
  700. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +28 -30
  701. data/vendor/local/share/doc/groonga/ja/html/server/http.html +42 -44
  702. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +62 -64
  703. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +30 -32
  704. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +29 -31
  705. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +138 -0
  706. data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -37
  707. data/vendor/local/share/doc/groonga/ja/html/spec.html +22 -24
  708. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +207 -128
  709. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
  710. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
  711. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
  712. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  713. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -25
  714. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -19
  715. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +30 -32
  716. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +17 -19
  717. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +17 -19
  718. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
  719. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +23 -25
  720. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +47 -49
  721. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +27 -125
  722. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -20
  723. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +20 -22
  724. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +31 -33
  725. data/vendor/local/share/license/mruby/README.md +2 -2
  726. data/vendor/local/share/man/ja/man1/groonga.1 +6205 -2251
  727. data/vendor/local/share/man/man1/groonga.1 +7210 -3029
  728. metadata +75 -11
  729. data/doc/text/news.textile +0 -1217
  730. data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +0 -10308
  731. data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +0 -999
  732. data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +0 -10308
  733. data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +0 -999
@@ -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.0 documentation</title>
10
+ <title>Search &mdash; Groonga v5.0.1-42-g4d10df1 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.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
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.0 documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1 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 role="document">
38
+ <body>
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" role="navigation" aria-label="related navigation">
56
+ <div class="related">
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.0 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 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" role="main">
69
+ <div class="body">
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" role="navigation" aria-label="main navigation">
98
+ <div class="sphinxsidebar">
99
99
  <div class="sphinxsidebarwrapper">
100
100
  </div>
101
101
  </div>
102
102
  <div class="clearer"></div>
103
103
  </div>
104
- <div class="related" role="navigation" aria-label="related navigation">
104
+ <div class="related">
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.0 documentation</a> &raquo;</li>
110
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
111
111
  </ul>
112
112
  </div>
113
- <div class="footer" role="contentinfo">
113
+ <div class="footer">
114
114
  &copy; Copyright 2009-2015, Brazil, Inc.
115
115
  </div>
116
116
  </body>
@@ -1 +1 @@
1
- Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_type","reference/api/grn_user_data","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_tokenize","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[113,0,1,"cmdoption--address"],"--bind-address":[113,0,1,"cmdoption--bind-address"],"--cache-limit":[113,0,1,"cmdoption--cache-limit"],"--config-path":[113,0,1,"cmdoption--config-path"],"--daemon":[119,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[113,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[114,0,1,"cmdoption--dir"],"--disable-max-fd-check":[118,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[113,0,1,"cmdoption--document-root"],"--encoding":[113,0,1,"cmdoption--encoding"],"--ftp":[114,0,1,"cmdoption--ftp"],"--groonga":[114,0,1,"cmdoption--groonga"],"--help":[113,0,1,"cmdoption--help"],"--host":[114,0,1,"cmdoption--host"],"--log-base-path":[119,0,1,"cmdoption--log-base-path"],"--log-level":[119,0,1,"cmdoption--log-level"],"--log-output-dir":[114,0,1,"cmdoption--log-output-dir"],"--log-path":[119,0,1,"cmdoption--log-path"],"--max-threads":[113,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[118,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[118,0,1,"cmdoption--n-threads"],"--pid-path":[113,0,1,"cmdoption--pid-path"],"--port":[118,0,1,"cmdoption--port"],"--protocol":[114,0,1,"cmdoption--protocol"],"--query-log-path":[113,0,1,"cmdoption--query-log-path"],"--receive-endpoint":[119,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[119,0,1,"cmdoption--send-endpoint"],"--server-id":[113,0,1,"cmdoption--server-id"],"-P":[112,0,1,"cmdoption-P"],"-a":[113,0,1,"cmdoption-a"],"-c":[113,0,1,"cmdoption-c"],"-d":[119,0,1,"cmdoption-d"],"-e":[113,0,1,"cmdoption-e"],"-h":[113,0,1,"cmdoption-h"],"-i":[114,0,1,"cmdoption-i"],"-l":[119,0,1,"cmdoption-l"],"-m":[112,0,1,"cmdoption-m"],"-n":[113,0,1,"cmdoption-n"],"-p":[118,0,1,"cmdoption-p"],"-r":[119,0,1,"cmdoption-r"],"-s":[119,0,1,"cmdoption-s"],"-t":[118,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[43,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[43,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[43,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[43,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[43,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[43,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[43,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[43,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[44,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[44,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[44,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[56,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[56,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[56,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[56,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[56,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[56,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[56,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[56,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[56,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[56,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[63,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[63,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[63,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[63,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[63,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[63,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[63,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[63,1,1,"c.GRN_PLUGIN_REGISTER"],command:[113,0,1,"cmdoption-arg-command"],db:[114,0,1,"cmdoption-arg-db"],dest:[113,0,1,"cmdoption-arg-dest"],grn_builtin_type:[61,2,1,"c.grn_builtin_type"],grn_cache:[42,2,1,"c.grn_cache"],grn_cache_close:[42,1,1,"c.grn_cache_close"],grn_cache_current_get:[42,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[42,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[42,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[42,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[42,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[43,1,1,"c.grn_column_create"],grn_column_index:[43,1,1,"c.grn_column_index"],grn_column_index_update:[43,1,1,"c.grn_column_index_update"],grn_column_name:[43,1,1,"c.grn_column_name"],grn_column_rename:[43,1,1,"c.grn_column_rename"],grn_column_table:[43,1,1,"c.grn_column_table"],grn_column_truncate:[43,1,1,"c.grn_column_truncate"],grn_command_version:[44,2,1,"c.grn_command_version"],grn_content_type:[45,2,1,"c.grn_content_type"],grn_ctx:[46,2,1,"c.grn_ctx"],grn_ctx_at:[46,1,1,"c.grn_ctx_at"],grn_ctx_close:[46,1,1,"c.grn_ctx_close"],grn_ctx_db:[46,1,1,"c.grn_ctx_db"],grn_ctx_fin:[46,1,1,"c.grn_ctx_fin"],grn_ctx_get:[46,1,1,"c.grn_ctx_get"],grn_ctx_get_command_version:[46,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[55,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[46,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[46,1,1,"c.grn_ctx_init"],grn_ctx_open:[46,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[46,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[46,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[55,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[46,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[46,1,1,"c.grn_ctx_use"],grn_db:[47,2,1,"c.grn_db"],grn_db_create:[47,1,1,"c.grn_db_create"],grn_db_create_optarg:[47,2,1,"c.grn_db_create_optarg"],grn_db_open:[47,1,1,"c.grn_db_open"],grn_db_recover:[47,1,1,"c.grn_db_recover"],grn_db_touch:[47,1,1,"c.grn_db_touch"],grn_encoding:[48,2,1,"c.grn_encoding"],grn_encoding_parse:[48,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[48,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[49,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[49,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[49,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[49,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[49,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[49,1,1,"c.grn_expr_append_op"],grn_expr_close:[49,1,1,"c.grn_expr_close"],grn_expr_compile:[49,1,1,"c.grn_expr_compile"],grn_expr_create:[49,1,1,"c.grn_expr_create"],grn_expr_exec:[49,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[49,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[49,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[49,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[49,1,1,"c.grn_expr_syntax_escape_query"],grn_geo_cursor_next:[50,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[50,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[50,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[50,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[50,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[44,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[48,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[55,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[41,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[51,2,1,"c.grn_hook_entry"],grn_ii:[52,2,1,"c.grn_ii"],grn_ii_buffer:[52,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[52,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[52,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[52,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[52,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[53,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[53,1,1,"c.grn_index_cursor_open"],grn_info_type:[54,2,1,"c.grn_info_type"],grn_obj:[56,2,1,"c.grn_obj"],grn_obj_add_hook:[51,1,1,"c.grn_obj_add_hook"],grn_obj_check:[56,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[56,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[56,1,1,"c.grn_obj_close"],grn_obj_column:[56,1,1,"c.grn_obj_column"],grn_obj_db:[47,1,1,"c.grn_obj_db"],grn_obj_defrag:[56,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[56,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[51,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[56,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[54,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[51,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[54,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[51,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[56,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[56,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[56,1,1,"c.grn_obj_get_values"],grn_obj_id:[56,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[56,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[56,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[56,1,1,"c.grn_obj_lock"],grn_obj_name:[56,1,1,"c.grn_obj_name"],grn_obj_path:[56,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[56,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[56,1,1,"c.grn_obj_reinit"],grn_obj_remove:[56,1,1,"c.grn_obj_remove"],grn_obj_rename:[56,1,1,"c.grn_obj_rename"],grn_obj_search:[58,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[54,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[57,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[54,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[56,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[56,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[56,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[62,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[63,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[63,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[63,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[63,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[63,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[63,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[63,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[63,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[63,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[63,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[63,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[63,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[63,1,1,"c.grn_plugin_win32_base_dir"],grn_proc_create:[57,1,1,"c.grn_proc_create"],grn_proc_func:[57,2,1,"c.grn_proc_func"],grn_proc_get_info:[57,1,1,"c.grn_proc_get_info"],grn_proc_type:[57,2,1,"c.grn_proc_type"],grn_search_optarg:[58,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[44,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[48,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[55,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[41,1,1,"c.grn_set_lock_timeout"],grn_table_add:[59,1,1,"c.grn_table_add"],grn_table_at:[59,1,1,"c.grn_table_at"],grn_table_columns:[59,1,1,"c.grn_table_columns"],grn_table_create:[59,1,1,"c.grn_table_create"],grn_table_cursor:[60,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[60,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[60,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[60,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[60,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[60,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[60,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[60,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[60,1,1,"c.grn_table_cursor_table"],grn_table_delete:[59,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[59,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[59,1,1,"c.grn_table_difference"],grn_table_get:[59,1,1,"c.grn_table_get"],grn_table_get_key:[59,1,1,"c.grn_table_get_key"],grn_table_group:[59,1,1,"c.grn_table_group"],grn_table_group_flags:[59,2,1,"c.grn_table_group_flags"],grn_table_group_result:[59,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[59,1,1,"c.grn_table_lcp_search"],grn_table_rename:[59,1,1,"c.grn_table_rename"],grn_table_setoperation:[59,1,1,"c.grn_table_setoperation"],grn_table_size:[59,1,1,"c.grn_table_size"],grn_table_sort:[59,1,1,"c.grn_table_sort"],grn_table_sort_flags:[59,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[59,2,1,"c.grn_table_sort_key"],grn_table_truncate:[59,1,1,"c.grn_table_truncate"],grn_table_update:[59,1,1,"c.grn_table_update"],grn_table_update_by_id:[59,1,1,"c.grn_table_update_by_id"],grn_type_create:[61,1,1,"c.grn_type_create"],grn_user_data:[62,2,1,"c.grn_user_data"],script:[114,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[47,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[47,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"000x":13,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"0\u306e\u79d2\u8868\u8a18":167,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":51,"0\u30d9\u30fc\u30b9\u3067":[59,60],"0\u30ea\u30ea\u30fc\u30b9":29,"0\u4ee5\u4e0a18":155,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"0\u4ee5\u4e0a4":155,"0\u4ee5\u4e0a65":155,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":113,"0mq":36,"0x0":[34,155,170],"0x01":164,"0x02":164,"0x04":164,"0x08":164,"0x10":164,"0x20":136,"0xc7":164,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":155,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":112,"10041\u756a":113,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":113,"10043\u756a":113,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":167,"100x100":124,"100x150":125,"1024r":8,"1073741824\u306e\u6574\u6570\u3067":67,"10m":115,"10t13":[147,148,150],"10t22":148,"10z":137,"128452975x503157902":[170,172,177,180],"128487316x502920929":[172,180],"128515259x503187188":[172,180],"1285858800\u306f2010":167,"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"128mb":35,"12gb":168,"135960000x":123,"13\u7528rpm\u306e\u63d0\u4f9b":31,"143660000x419009000":123,"145508000x":123,"146249000x":176,"146566000x":[123,176],"146607190x":176,"146710080x":176,"146741340x":176,"146867000x":176,"150x100":125,"152489000x":176,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":76,"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"16gb":168,"16gib":154,"175904000x8464000":123,"185428000x":123,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":155,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":99,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":71,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":60,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":33,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":71,"1\u3068command":71,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":51,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":114,"1\u30ea\u30ea\u30fc\u30b9":29,"1\u5358\u8a9e\u6271\u3044":165,"1\u884c\u76ee":114,"1_all":8,"1byte":164,"1st":121,"1x139":170,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"200byte":133,"20km":176,"21th":36,"23t02":137,"24byte":164,"256gbyte":28,"256gib":28,"256kb":168,"256kib":154,"257662232kbyte":114,"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":155,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":8,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":71,"2\u30ea\u30ea\u30fc\u30b9":29,"2\u884c\u76ee":114,"2byte":[74,164],"2nd":99,"2rd":99,"2st":99,"30ac":140,"314e":137,"32bit":36,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"32gib":154,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":165,"3\u30ea\u30ea\u30fc\u30b9":29,"3\u884c\u76ee":114,"3rd":[36,99],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"4096byte":[28,151],"4097byte":151,"436218z":137,"44001770019531e":143,"45ea3034":139,"4\u30ea\u30ea\u30fc\u30b9":29,"4\u884c\u76ee":114,"4byte":164,"4e86e700":168,"4gbyte":28,"4gib":[151,164],"4th":99,"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"5367431640625e":143,"56058502197266e":143,"56880000x":123,"59\u74b0\u5883\u306b\u304a\u3044\u3066":33,"5\u30ea\u30ea\u30fc\u30b9":29,"5th":99,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":155,"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"648\u4ee5\u4e0a2":155,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"6813819x139":[170,180],"6909211x139":180,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":8,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":8,"6\u30ea\u30ea\u30fc\u30b9":29,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":10,"6elz":37,"6gib":154,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":155,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":155,"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"768\u4ee5\u4e0a32":155,"7\u30ea\u30ea\u30fc\u30b9":29,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":155,"808\u4ee5\u4e0a9":155,"80ghz":114,"82pre":38,"8\u306b\u5bfe\u5fdc":31,"8\u307e\u3067\u306e\u6570\u5024\u304c\u6307\u5b9a\u53ef\u80fd\u3067":113,"8\u30ea\u30ea\u30fc\u30b9":[8,29],"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":155,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":155,"8byte":164,"93933868408203e":143,"975mbyte":114,"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":8,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":8,"\u3042\u308a\u307e\u305b\u3093":[90,93,100,101,104],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":124,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[124,125],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":7,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":71,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":6,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":6,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":71,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":7,"\u3044\u307e\u3059":6,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":31,"\u304a\u3070\u305f\u3055\u3093":30,"\u304a\u3088\u3073":8,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":53,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":113,"\u304bwgs84geopoint":[124,125],"\u304c\u3042\u308a\u307e\u3059":[8,116],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":31,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":165,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":132,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":124,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":59,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":59,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":59,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[43,59],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u304c\u8fd4\u3055\u308c\u307e\u3059":56,"\u3050\u308b\u3093\u304c":[136,137],"\u3050\u308b\u3093\u304c\u592a\u90ce":172,"\u3050\u308b\u3093\u304c\u6b21\u90ce":172,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":6,"\u3053\u3053\u3067\u306f":167,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":8,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":167,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":8,"\u3053\u3053\u3067\u3082":167,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":6,"\u3053\u306e\u3068\u304d":165,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":167,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":167,"\u3053\u306e\u3088\u3046\u306bn":167,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":167,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":114,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":114,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":165,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":167,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":8,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":113,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":114,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":99,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":8,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":113,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":7,"\u3053\u306e\u4f5c\u696d\u306f":8,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":8,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":8,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":114,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":167,"\u3053\u306e\u5834\u5408":60,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":167,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":167,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":167,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":167,"\u3053\u306e\u64cd\u4f5c\u306f":59,"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":167,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":165,"\u3053\u306e\u7d50\u679c\u306f":114,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":165,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":124,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":8,"\u3053\u308c\u3067":8,"\u3053\u308c\u306b\u3088\u308a":8,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":8,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":8,"\u3053\u308c\u306b\u5bfe\u3057\u3066":165,"\u3053\u308c\u306f":167,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":67,"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":116,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":7,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":8,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":114,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":71,"\u3057\u304b\u3057":[155,165,167],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":8,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":6,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":165,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":8,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":114,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":71,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":114,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":10,"\u3059\u308b\u3068":10,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":31,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":6,"\u3059\u308b\u3068groonga":8,"\u305d\u3053\u3067":167,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":8,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u305d\u306e\u305f\u3081":[8,85,114,165,167,178],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":8,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":155,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":155,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":155,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":71,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":8,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":8,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":114,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":51,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":8,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":71,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":113,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":71,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":71,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":60,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":7,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":6,"\u305d\u306e\u969b":8,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":59,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":59,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":56,"\u305d\u308c\u305e\u308c":10,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":113,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":165,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":165,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":7,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":165,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":56,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":167,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":165,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":56,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":56,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":7,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":112,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":112,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"\u305d\u308c\u3092\u65e7ji":60,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":101,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":61,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":155,"\u305f\u3060\u3057":[60,67,113,116,165],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":30,"\u305f\u3068\u3048\u3070":165,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":71,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":167,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":167,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":8,"\u3060\u3068\u539f\u56e0\u306f":6,"\u3064\u307e\u308atest":8,"\u3066\u3057\u307e\u3044\u307e\u3059":6,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":167,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":7,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":7,"\u3067\u3042\u308c\u3070":114,"\u3067\u3059\u306d":6,"\u3067\u306f\u306a\u304ffree":31,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":8,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":167,"\u3067\u306f\u6607\u9806":59,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":59,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":46,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":167,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":113,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":167,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":167,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":31,"\u3067\u4f5c\u6210\u3057\u305f":46,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":113,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u3067\u533a\u5207\u308a\u307e\u3059":113,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":67,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":78,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":114,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":31,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":60,"\u3067\u78ba\u4fdd\u3057\u305f":46,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":46,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":46,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":56,"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":31,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":165,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":165,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":167,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":114,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":114,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":114,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":114,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":6,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":165,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":165,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":155,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":165,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":165,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":114,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":8,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":8,"\u3068\u306a\u308a":167,"\u3068\u308a\u3068\u3093":[136,137],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":114,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":167,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":167,"\u3068\u5171\u306b":43,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":56,"\u3068\u540c\u3058\u610f\u5473":113,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":30,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":124,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":8,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":6,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":6,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":165,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":114,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":56,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":56,"\u306b\u3042\u308b":56,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":60,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":60,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":8,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":8,"\u306b\u306a\u308a\u307e\u3059":46,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":76,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":104,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":46,"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":116,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":155,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":116,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":165,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":167,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":167,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":113,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":114,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":114,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":113,"\u306b\u8a2d\u5b9a\u3059\u308b":8,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":114,"\u306e2\u5358\u8a9e\u6271\u3044":165,"\u306e3\u30d5\u30e9\u30b0\u306f":60,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[58,59,61],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[59,124,125],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":113,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u306e\u307b\u304b\u306b":155,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":60,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":113,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":113,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u306e\u30ab\u30e9\u30e0":[77,83],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[31,33],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":83,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":77,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":31,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":31,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":113,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":6,"\u306e\u5834\u5408\u306f":6,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":61,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":31,"\u306e\u66f4\u65b0":3,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":113,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":57,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":132,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":132,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":104,"\u306ebase_version\u306e\u66f4\u65b0":8,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":31,"\u306exml\u51fa\u529b\u5bfe\u5fdc":31,"\u306f\u306a\u304f":30,"\u306f\u7121\u52b9\u3067\u3042\u308a":60,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[59,60],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":56,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":167,"\u3072\u308d\u3042\u304d":178,"\u3072\u308d\u3086\u304d":178,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":8,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":43,"\u307e\u305f\u306f":114,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":113,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":113,"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":114,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":46,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":114,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":114,"\u307e\u305f\u540c\u6642\u306b":114,"\u307e\u305f\u901a\u5e38\u306f":155,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":59,"\u307e\u305fgroonga":114,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":101,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":71,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":6,"\u307e\u308d\u3086\u304d":178,"\u3080\u308b\u3093\u304c":[136,137],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u3082\u3057\u304f\u306f":[59,60,155],"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":114,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":114,"\u3082\u3057groonga":114,"\u3082\u3057test":114,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":178,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":71,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":6,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":8,"\u3086\u304d\u3072\u308d":178,"\u3088\u3063\u3066":155,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":124,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":114,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u308d\u3086\u304d":178,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":10,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":10,"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":85,"\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":31,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":53,"\u3092\u516c\u958b":31,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":8,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[114,116,155,167],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":78,"\u3092\u6307\u5b9a\u3057":[60,77,83],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":60,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":7,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":60,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":60,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":60,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":60,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":60,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":59,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,47,54,56,59,61,113,114],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[43,60],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":43,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":56,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":60,"\u3092\u683c\u7d0d\u3057\u307e\u3059":43,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":10,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":56,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":124,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u3092\u8a08\u7b97\u3059\u308b":30,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":6,"\u3092\u8fd4\u3057\u307e\u3059":[51,56,59,60],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":30,"\u3092\u8ffd\u52a0":[31,33],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":57,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":61,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":8,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":31,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":112,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":56,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":8,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[165,167],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":167,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":78,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":8,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":31,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":31,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":8,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":114,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":114,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":80,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":76,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":33,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":76,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":78,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":77,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":8,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[113,116],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":113,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":55,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":55,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[77,80,82,88,89,90,105],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[77,80,82,88,89,90,105],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":56,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":31,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":77,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":77,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":83,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":76,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":46,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":46,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":178,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":99,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":99,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":178,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":114,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":30,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":33,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":10,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":3,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":10,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":10,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":105,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":155,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":78,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":78,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u30ab\u30e9\u30e0\u540d1":99,"\u30ab\u30e9\u30e0\u540d\u306f":78,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":56,"\u30ab\u30e9\u30e0\u540dn":99,"\u30ab\u30e9\u30e0\u578b1":99,"\u30ab\u30e9\u30e0\u578bn":99,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":43,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\u30ab\u30ec\u30fc":165,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30ab\u30f3\u30de":85,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":99,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":99,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":30,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ad\u30fc":113,"\u30ad\u30fc\u304c":113,"\u30ad\u30fc\u30ef\u30fc\u30c9":32,"\u30af\u30a8\u30ea\u306e":167,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":167,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[3,4],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[3,4],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":7,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":99,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":30,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":93,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":31,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30b0\u30eb\u30fc\u30d7\u5316":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":67,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":67,"\u30b3\u30de\u30f3\u30c9":35,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":31,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":165,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":31,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":30,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":155,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":155,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":31,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":31,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":7,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":116,"\u30b3\u30de\u30f3\u30c9\u306f":116,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":113,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":116,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":31,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[18,37,39,46,70],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":71,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":8,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":113,"\u30b3\u30de\u30f3\u30c9\u540d":[113,116],"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":113,"\u30b3\u30df\u30c3\u30c8":8,"\u30b3\u30e1\u30f3\u30c8\u884c":114,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":31,"\u30b3\u30ed\u30f3":78,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":8,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":31,"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":71,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":32,"\u30b5\u30fc\u30d0":113,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":114,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":114,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":113,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":114,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":114,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":113,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":114,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":100,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":113,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30b7\u30a7\u30eb\u4e0a":114,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":113,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":33,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":114,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":113,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":113,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":116,"\u30b9\u30ec\u30c3\u30c9\u6570":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":114,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":114,"\u30b9\u30fc\u30d7":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":165,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":165,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":93,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":114,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":114,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":8,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":10,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":99,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":8,"\u30c0\u30e1\u30fc\u30b8":167,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":76,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":76,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":76,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":33,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":8,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":31,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":10,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":10,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":31,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":10,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":10,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":3,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":10,"\u30c6\u30b9\u30c8\u306f":10,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[3,4],"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":3,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":167,"\u30c6\u30fc\u30d6\u30eb":77,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":80,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":104,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":78,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":155,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":155,"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":105,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":67,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":104,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":60,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":60,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":104,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":113,"\u30c6\u30fc\u30d6\u30eb\u540d":[77,83,104],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":104,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":155,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":104,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":104,"\u30c6\u30fc\u30d6\u30ebentry\u306b":78,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":82,"\u30c6\u30fc\u30d6\u30ebterm\u306b":78,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":76,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":30,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":8,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":76,"\u30c7\u30d5\u30a9\u30eb\u30c8":7,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[113,114],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":71,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":90,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":30,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":44,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":44,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":155,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[112,113],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":30,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":178,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":77,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":83,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":114,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f7f\u7528\u3059\u308b\u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u65b9\u5f0f\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":113,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":7,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u30b9\u30ad\u30fc\u30de\u3068\u7279\u5b9a\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30c7\u30fc\u30bf\u306e\u307f\u51fa\u529b":85,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u30c7\u30fc\u30bf\u578b":[18,39,103,123],"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":30,"\u30c7\u30fc\u30e2\u30f3":113,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":113,"\u30c8\u30e2\u3061\u3083\u3093":172,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[18,31],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[18,166],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":8,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":8,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":31,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":99,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":99,"\u30cb\u30c3\u30dd\u30f3":147,"\u30cb\u30db\u30f3":147,"\u30cb\u30db\u30f3\u30b4":147,"\u30cb\u30db\u30f3\u30b8\u30f3":147,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":113,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":76,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":76,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":76,"\u30d0\u30fc\u30b8\u30e7\u30f3":8,"\u30d0\u30fc\u30b8\u30e7\u30f30":29,"\u30d0\u30fc\u30b8\u30e7\u30f31":29,"\u30d1\u30a4\u30d7":78,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":116,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":31,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":31,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":33,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":3,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":112,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":7,"\u30d2\u30c3\u30c8\u6570":99,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":8,"\u30d3\u30eb\u30c9\u6642\u306etip":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":8,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":8,"\u30d4\u30ea\u30aa\u30c9":78,"\u30d5\u30a1\u30a4\u30eb":8,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":33,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":76,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":30,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":83,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":83,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":56,"\u30d6\u30ed\u30b0":3,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":155,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":31,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":32,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":10,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":8,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":71,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":71,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":113,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":113,"\u30d9\u30af\u30bf\u306e\u5024\u3092":31,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":30,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":8,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":114,"\u30db\u30b9\u30c8\u540d\u3068":114,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[112,113],"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":155,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":56,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":80,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":155,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":31,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":30,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[31,33],"\u30e1\u30fc\u30c8\u30eb":124,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":7,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":155,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":8,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[3,4],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":6,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":6,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":6,"\u30e6\u30fc\u30b6\u540d":114,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":99,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":8,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":6,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":6,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":3,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":8,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":8,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":3,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":8,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[3,4],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u65e5":8,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":3,"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":8,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":56,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":31,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":7,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":7,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":30,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":33,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":32,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":89,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":90,"\u30ed\u30b0\u3092":8,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":8,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":31,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":90,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":114,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":114,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":90,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":90,"\u30ed\u30b0\u30ec\u30d9\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30ed\u30b0\u51fa\u529b":89,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":113,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":88,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[88,113],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":77,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":113,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":83,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":155,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":165,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":43,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":178,"\u4e00\u65b9":167,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":56,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":56,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":56,"\u4e00\u822c\u7684\u306b\u306f":56,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":114,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":8,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":167,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":114,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":8,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":31,"\u4e0b\u8a18":60,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":76,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":101,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":30,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"\u4e0e\u3048":167,"\u4e16\u754c\u6e2c\u5730\u7cfb":155,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[124,125],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":7,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":85,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":76,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":101,"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":31,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":155,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":178,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[18,169],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":67,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":155,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":155,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":155,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":104,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":67,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":132,"\u4e8c":147,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":71,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":8,"\u4eac\u90fd":[165,167],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":90,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":71,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":116,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":80,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":8,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":114,"\u4ee5\u4e0b":114,"\u4ee5\u4e0b\u3067":167,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":7,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":7,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":165,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":99,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":85,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":165,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":167,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":167,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":113,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":8,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[8,10],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":56,"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":155,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":8,"\u4ee5\u5916\u306e\u5834\u5408\u306f":99,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":8,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":113,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":113,"\u4ee5\u964d\u3092\u7121\u8996":31,"\u4ef6\u6570":99,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":155,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":113,"\u4efb\u610f\u306edb\u540d":114,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":33,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":33,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":114,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":8,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":47,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":113,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":8,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":78,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":71,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":78,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":46,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":71,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":71,"\u4f8b":[8,18,30,56],"\u4f8b\u3048\u3070":[56,113,114,165,167,178],"\u4fee\u6b63":29,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":71,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":167,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"\u5024":113,"\u50241":[113,116],"\u50242":[113,116],"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":56,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":113,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":78,"\u5024\u306e\u7bc4\u56f2\u306f1":67,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":56,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":116,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[54,56],"\u5065\u4f5c":172,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":7,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":178,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":178,"\u5165\u529b":[77,88,90,104],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":114,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":114,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":82,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":60,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":167,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5185\u8a33\u306f":167,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":59,"\u5185\u90e8\u7684\u306a\u5909\u66f4":8,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":124,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":6,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":167,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":99,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":51,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":67,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":99,"\u51e6\u7406\u6642\u9593":99,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":114,"\u51e6\u7406\u958b\u59cb\u6642\u9593":99,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":114,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":114,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":85,"\u5206\u5272":165,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":10,"\u5217\u6307\u5411\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":113,"\u521d\u671f\u5024\u306f10\u3067\u3059":112,"\u521d\u671f\u5316\u3055\u308c\u305f":46,"\u521d\u671f\u5316\u3059\u308b":46,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u521d\u671f\u5316\u6e08\u307f\u306e":47,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u5225\u9014deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u6700\u65b0\u7248\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":8,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":167,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":6,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":67,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":31,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":31,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[80,105],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":80,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":8,"\u524d\u63d0\u6761\u4ef6":3,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":30,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":167,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"\u529b":[89,100],"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":71,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":8,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":85,"\u534a\u5f84":124,"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":124,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":60,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u5358\u4f4d":[61,124],"\u5358\u72ec\u306e\u5024":43,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":124,"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":178,"\u539f\u56e0":[18,166],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":8,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":8,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":114,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":6,"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":155,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":56,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":56,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":56,"\u53f3\u4e0a":30,"\u53f3\u4e0b":30,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":31,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":114,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":114,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":7,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":114,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":76,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":99,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":67,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":114,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":76,"\u540c\u3058\u3067\u3059":114,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":71,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":167,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[18,166],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":71,"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":78,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":114,"\u540c\u6642\u306b":5,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":60,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":33,"\u540d\u524d":[18,39],"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[43,56],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":56,"\u5426\u5b9a":7,"\u542b\u3081\u306a\u3044\u3082\u306e":8,"\u542b\u3081\u308b\u3082\u306e":8,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":54,"\u547c\u51fa\u5074\u3067\u6e96\u5099":54,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[43,56,59],"\u554f\u984c\u3042\u308a":33,"\u554f\u984c\u306fgroonga":114,"\u554f\u984c\u3092\u4fee\u6b63":31,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":8,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":6,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u578b":61,"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[18,39],"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":43,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":53,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":59,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":178,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":8,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":57,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":8,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":44,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":59,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":3,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":112,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":59,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":85,"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":30,"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":59,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":59,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":59,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":167,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":165,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":165,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":113,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":67,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":78,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":43,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":46,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":155,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":112,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5b9f\u884c\u3067\u304d\u307e\u3059":8,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":59,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":51,"\u5b9f\u884c\u4f8b":[10,71],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":7,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":114,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":167,"\u5b9f\u9a13\u7684":29,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":56,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":59,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[56,59],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":59,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":59,"\u5bfe\u7b56\u65b9\u6cd51":[18,166],"\u5bfe\u7b56\u65b9\u6cd52":[18,166],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[77,83],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[77,83],"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":112,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":60,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56,59],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":59,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[53,60],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,47,51,54,56,57,62],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56,59,60],"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":155,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"\u5de6\u4e0a":30,"\u5de6\u4e0b":30,"\u5dee\u5206\u3092":114,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":155,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":155,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":124,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":125,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":71,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":114,"\u5f15\u6570\u3068\u3057\u3066":7,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":116,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":7,"\u5f15\u6570\u540d":[113,116],"\u5f15\u6570\u540d1":[113,116],"\u5f15\u6570\u540d2":[113,116],"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":113,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":56,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":71,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":56,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":56,"\u5f62\u5f0f":116,"\u5f62\u5f0f1":[113,116],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":113,"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":116,"\u5f62\u5f0f2":[113,116],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":113,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":178,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":7,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"\u5f93\u3063\u3066":99,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":7,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":7,"\u5fa9\u53f7\u3057\u305f\u9375":8,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":8,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":7,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":30,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":78,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":104,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":104,"\u611f\u8b1d":29,"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[77,80,82,88,89,90,105],"\u623b\u308a\u5024\u3067\u3042\u308b":53,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":53,"\u624b\u7d9a\u304d":57,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u62c5\u5f53\u8005":8,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":114,"\u62e1\u5f35\u5b50\u306f":114,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":114,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":71,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":114,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":76,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":122,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":122,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":31,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":30,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":7,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":114,"\u6307\u5b9a\u3059\u308b":47,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":124,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":114,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":100,"\u63a5\u7d9a\u3059\u308bgroonga":114,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":114,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":112,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":114,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":114,"\u63d0\u6848\u3092\u884c\u3046":31,"\u6539\u826f":29,"\u6539\u884c\u6587\u5b57\u306f":113,"\u6570\u304c\u5927\u304d\u3044\u307b\u3069\u591a\u304f\u306e\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":113,"\u6570\u5024":165,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":30,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":124,"\u6570\u5b57":114,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":167,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":99,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":122,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":113,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":56,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[43,56],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":59,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":6,"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":113,"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3059\u308b\u6642\u306e\u307f\u6709\u52b9\u3067\u3059":113,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":90,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":47,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":59,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":8,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":114,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":90,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":47,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":59,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":59,"\u65e5\u3005":6,"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":155,"\u65e5\u672c":147,"\u65e5\u672c\u4eba":147,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[124,125],"\u65e5\u672c\u8a9e":147,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":8,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":155,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":31,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":71,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":6,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":30,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":30,"\u6700\u5f8c\u306b":167,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":8,"\u6700\u5f8c\u306e":114,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":47,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":99,"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":167,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":7,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":7,"\u6771\u4eac":[165,167],"\u6771\u4eac\u90fd":[165,167],"\u6771\u4eac\u90fd\u6c11":[165,167],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":167,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":59,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":155,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u68ee\u7530":172,"\u691c\u7d22":[18,31,35,99,163],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":7,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":46,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":18,"\u691c\u7d22\u306e\u6319\u52d5":18,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":165,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":167,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":55,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":55,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":165,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":165,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":82,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":167,"\u691c\u7d22\u4f8b1":3,"\u691c\u7d22\u4f8b2":3,"\u691c\u7d22\u4f8b3":3,"\u691c\u7d22\u4f8b4":3,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":99,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":51,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":67,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":7,"\u691c\u7d22\u5bfe\u8c61\u306e":167,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":7,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":165,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":178,"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":99,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":155,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[82,113],"\u691c\u7d22\u7d50\u679c":99,"\u691c\u7d22\u7d50\u679c1":99,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":165,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":99,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":99,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":7,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":7,"\u691c\u7d22\u7d50\u679cn":99,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":124,"\u697d\u3057":[165,167],"\u697d\u3057\u3044billiard":[165,167],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":46,"\u69cb\u9020\u4f53\u306e\u914d\u5217":57,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":53,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":3,"\u6a19\u6e96":[77,88,90,104],"\u6a19\u6e96\u5165":[89,100],"\u6a19\u6e96\u5165\u529b":[76,78,80,82,83,85,93,101,105],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":113,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":113,"\u6b21\u306b":7,"\u6b21\u306bgroonga\u306etest":8,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":71,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":8,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":8,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":8,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":101,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":71,"\u6bb5\u843d\u60c5\u5831":43,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u6c11":165,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":6,"\u6c38\u7d9a\u7684\u306a":56,"\u6ce8\u610f":59,"\u6df1\u523b":167,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":7,"\u6e2c\u5730\u7cfb":155,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":155,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":7,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":56,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":8,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":52,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":10,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":8,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":116,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":114,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":76,"\u73fe\u5728":90,"\u73fe\u5728\u306f":[112,114],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":8,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":114,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":114,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":57,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":130,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":130,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":71,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":124,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":10,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":10,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":8,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":76,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":8,"\u7591\u4f3c\u30ab\u30e9\u30e0":67,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":132,"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":155,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":125,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":8,"\u79d2":56,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":155,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"\u7a7a\u306e\u5834\u5408":[77,83],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":155,"\u7a7a\u767d":113,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":167,"\u7a7a\u767d\u3084":113,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":116,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":56,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":167,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":167,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":30,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":47,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"\u7d44\u8fbc\u578b":[18,39],"\u7d44\u8fbc\u95a2\u6570\u306f":[122,124,125,130,132],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":155,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":155,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":155,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":56,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":59,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u7d9a\u3044\u3066":167,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":99,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth\u304c\u5fc5\u8981\u3067\u3059":8,"\u7de8\u96c6\u8ddd\u96e2":30,"\u7def\u5ea6\u306f":155,"\u7e70\u308a\u8fd4\u3057\u6570":114,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":114,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":114,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":8,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":8,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":8,"\u811a\u6ce8":[80,124,125,155],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":6,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":114,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":114,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":114,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":67,"\u826f\u3044\u306e\u304b":6,"\u826f\u3044\u4f8b":6,"\u82b1\u5b50":172,"\u884c":10,"\u884c\u3059\u308b":8,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":114,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":116,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":6,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":59,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":8,"\u8a18\u53f7":[113,167],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":31,"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":167,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":165,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[88,89],"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":113,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":30,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":30,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":56,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":60,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":114,"\u8a73\u7d30\u306f":[10,116,167],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":30,"\u8a9e":76,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":8,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":124,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":124,"\u8aac\u660e":[18,39],"\u8ad6\u7406\u548c":7,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":7,"\u8ad6\u7406\u7a4d":7,"\u8b66\u544a\u3092\u9664\u53bb":31,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":71,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":31,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":124,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":43,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":43,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":31,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":76,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u8ffd\u52a0\u306e\u5c5e":78,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":8,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":113,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":113,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":8,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":67,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":167,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":167,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":167,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":6,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":165,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":165,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":167,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":165,"\u90fd":[165,167],"\u90fd\u6c11":[165,167],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":47,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":47,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":76,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":76,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":8,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":8,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":83,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":77,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":31,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[77,83],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":6,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":33,"\u95a2\u4fc2\u5f0f":3,"\u95a2\u4fc2\u5f0f\u306f":7,"\u95a2\u6570":10,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":57,"\u95a2\u6570\u304c\u5f15\u6570\u3092":30,"\u95a2\u6570\u306e\u8ffd\u52a0":30,"\u95a2\u6570\u306f":[7,122,124,125,132],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":130,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":31,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":7,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":165,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":167,"\u95be\u5024\u3092\u3042\u3052\u308b":[18,166],"\u95be\u5024\u3092\u8d8a\u3048\u308b":167,"\u9759\u7684\u89e3\u6790":3,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":165,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":165,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[165,167],"\u975e\u4e92\u63db":33,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":8,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":113,"\u99c4\u76ee\u306a\u4f8b":6,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":7,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":5,"\uff4d\uff59\uff53\uff51\uff4c":[126,127],"_avg":99,"_dataset":[117,119],"_id":[37,43,56,67,69,72,81,84,85,99,102,109,121,136,137,138,140,147,148,150,152,167,171,172,173,175,177,178,179,180],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":67,"_kei":[35,36,37,43,56,67,69,72,79,81,84,85,86,99,102,106,109,115,121,123,128,134,136,137,140,147,148,150,152,154,159,170,171,172,173,175,176,177,178,179,180],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":30,"_max":99,"_min":99,"_name":103,"_nsubrec":[37,43,67,99,171,172,176],"_post":8,"_score":[33,35,36,43,67,69,99,102,123,131,137,147,148,150,167,172,173,175,176,180],"_set_valu":34,"_sum":99,"_valu":[36,37,43,67,99],"a\u3092\u6307\u5b9a\u3057\u3066tabl":59,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":113,"akio\u3055\u3093":31,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":31,"akio\u3055\u3093\u304c\u5831\u544a":31,"akio\u3055\u3093\u304c\u63d0\u6848":31,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":8,"apt\u306e\u5834\u5408":8,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"aramaki\u3055\u3093":31,"aramaki\u3055\u3093\u304c\u5831\u544a":31,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":8,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":7,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":59,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":59,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":8,"base_version\u306ftar":8,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":114,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":114,"benchmark\u304c\u52d5\u4f5c\u3057":114,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":114,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":114,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":114,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":114,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":114,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":114,"benchmark\u306f":114,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":114,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":114,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":114,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":114,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":114,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":114,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":114,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":114,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":114,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":114,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":114,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":114,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":114,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":114,"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":165,"blog_body\u7d22\u5f15":167,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":8,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":167,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"bom\u4ed8\u304dutf":31,"boolean":[18,36,38,136],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":10,"break":[33,35,37,111],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":43,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":43,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":56,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":8,"build\u3092\u7528\u3044\u3066":10,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":8,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":47,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"builtin_type_names\u306b\u306f":47,"byte":[33,35,36,37,43,46,49,56,57,59,61,63,73,99,133,164],"byte\u9577":[43,56,59],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":7,"case":[24,33,36,37,42,46,47,63,69],"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":124,"centos\u306e\u5834\u5408":8,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"char":[37,43,46,47,48,49,56,57,59,61,63],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":10,"check\u30b3\u30de\u30f3\u30c9\u306f":76,"chroot\u74b0\u5883\u306e":8,"class":[126,127,128,133],"clearlock\u306f":77,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":8,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":8,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":8,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":7,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":43,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":43,"column\u306e\u5024\u304c":7,"column\u306f":43,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":43,"column_create\u306f":78,"column_list\u30b3\u30de\u30f3\u30c9":30,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":80,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":5,"com\u304cedge\u3092\u4f5c\u308b":5,"com\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":8,"com\u306edoc":8,"com\u306f1\u30b9\u30ec\u30c3\u30c9":5,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":46,"command_version\u3092\u8fd4\u3057\u307e\u3059":46,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":71,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":8,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":31,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":71,"configure\u306e":33,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":31,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":10,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":101,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":8,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":3,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":3,"const":[34,43,46,47,48,49,56,57,59,60,61,63],"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":101,"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":10,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":46,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":43,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":56,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":59,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":46,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":46,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":46,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":46,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":46,"ctx_new\u3068\u3044\u3046queue\u306b":5,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":60,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":60,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":53,"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":60,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":10,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":10,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":8,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":10,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":3,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":8,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":8,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":32,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":56,"db\u3068\u306a\u308a\u307e\u3059":47,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":113,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[104,113],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":104,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":113,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":59,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":47,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":56,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":46,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":46,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"db_api\u306f":7,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":7,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":167,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":10,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":33,"debian\u7cfb":8,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":8,"debian\u7cfb\u3082\u3057\u304f\u306fr":8,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"debug\u3092\u8ffd\u52a0":31,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":31,"default":[0,14,19],"define_selector\u306f":82,"defrag\u306f":83,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"delete\u30b3\u30de\u30f3\u30c9":30,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":56,"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":71,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":71,"description\u306b":165,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":71,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":114,"dist\u3067\u751f\u6210\u3057\u305ftar":8,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":8,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":8,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":8,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":31,"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":30,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown\u7d50\u679c":99,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":99,"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":85,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":85,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":85,"dump\u30b3\u30de\u30f3\u30c9":30,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":5,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":5,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":5,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":5,"edge\u306fctx\u3092\u542b\u3080":5,"encoding\u306e\u5024\u304c":33,"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":78,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":78,"export":[14,33,36,37],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":56,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":62,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":57,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":31,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":31,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":31,"files\u306e\u5b9f\u884c":3,"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":8,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":31,"final":[63,69,99,115],"flags\u306b":[43,59],"flags\u306b\u306f":59,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":78,"float":[35,72,99,123],"fork\u3059\u308b\u70b9\u304c\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3068\u7570\u306a\u308b":113,"function":[0,8,10,18,35,36,37,38,39,46,63,72,115,118],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":8,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":10,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":10,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":31,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":30,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":31,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":112,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":116,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":8,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":3,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":112,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":112,"gqtp\u306e\u5834\u5408":113,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":167,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":165,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":167,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":167,"grn_bool\u578b\u3092\u8ffd\u52a0":31,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":7,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":3,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":7,"grn_expr\u306f":7,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":7,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":7,"grn_op_adjust\u306f":7,"grn_op_and\u306f":7,"grn_op_but\u306f":7,"grn_op_or\u306f":7,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":7,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":99,"grnslap\u306f":112,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":31,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":8,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":31,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":8,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":8,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":8,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":8,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":8,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":155,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":30,"groonga\u306b\u306fhtml":116,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":3,"groonga\u306e\u30ab\u30e9\u30e0\u306f":155,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":8,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":155,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":67,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":7,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":113,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":10,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":8,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":31,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":8,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":8,"groonga\u306e\u7d44\u8fbc\u578b\u304b":78,"groonga\u306epackag":8,"groonga\u306f":10,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":7,"groonga\u306f\u5217\u6307\u5411\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u9ad8\u901f\u3067\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb\u306a\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3067\u3059":113,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[165,167],"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":167,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":7,"groonga\u3084mysql\u306erpm":8,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":6,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":6,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":114,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":8,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":8,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":71,"groonga\u3092build\u3059\u308b\u969b\u306b":101,"groonga\u30b3\u30de\u30f3\u30c9\u304bc\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u901a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":114,"groonga\u30b3\u30de\u30f3\u30c9\u306b":31,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":114,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":113,"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":113,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":116,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":31,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":114,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":7,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":7,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":7,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":71,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":8,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":101,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":101,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":93,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":113,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":112,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":101,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[101,113],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":101,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":112,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":76,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":71,"groonga\u5358\u4f53\u3067test":114,"groonga\u53ca\u3073groonga":114,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[76,77,78,80,82,83,85,88,89,90,93,100,101,104,105],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":71,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":114,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":112,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":114,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":114,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":76,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":77,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":78,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":80,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":85,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":88,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":90,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":93,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":100,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":101,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":104,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":122,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":124,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":125,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":130,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":132,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":3,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":6,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_clone_dir\u306b\u3066autogen":8,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":8,"groonga_github_com_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":8,"groonga_github_com_path\u306bgroonga":8,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":32,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":8,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":8,"gz\u306eversion\u304a\u3088\u3073vers":8,"hat\u7cfb":8,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":8,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":8,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"help\u3067\u51fa\u529b\u3055\u308c\u308b":33,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":10,"hiroshi\u3055\u3093":31,"hiroshi\u3055\u3093\u304c\u5831\u544a":31,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":33,"homebrew\u306e\u66f4\u65b0":3,"homebrew\u3078pul":8,"hook\u306e\u5b9f\u884c\u9806\u4f4d":51,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":51,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":114,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":8,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":113,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":112,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":31,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":116,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":116,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"http\u306e\u5834\u5408":113,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":116,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":113,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"http\u30b5\u30fc\u30d0\u30fc":[18,37,39,110,115],"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":116,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":31,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":56,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":46,"import":[0,8,24,33,35,36,42,46,69,70,99,103,107,115,136,145,159,174],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":43,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":43,"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":53,"indexbuf\u306e\u30b5\u30a4\u30ba":43,"init\u76f4\u5f8c\u306e\u72b6\u614b":46,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":112,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":114,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":8,"int":[35,41,42,43,46,47,49,50,51,52,53,55,56,57,59,60,61,63,143],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":114,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":116,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":8,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":31,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":33,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":60,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"key\u306b\u306f":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":59,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":59,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":59,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":60,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":59,"key\u3092\u8fd4\u3057\u307e\u3059":56,"key_type\u306bt":59,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":165,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":165,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":178,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":59,"keybuf\u306e\u30b5\u30a4\u30ba":59,"koi8r\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":8,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":31,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":33,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":31,"libedit\u5bfe\u5fdc":30,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":10,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":99,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"load\u30b3\u30de\u30f3\u30c9":30,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":8,"localstatedir\u3092\u4f7f\u7528":31,"log\u3067\u3059":113,"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":114,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":71,"log_level\u306f":88,"log_put\u306f":89,"log_reopen\u306f":90,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":90,"long":[36,37,52,55,96,103,111],"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":155,"lucid\u304b\u3089":31,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":8,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":31,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":33,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"man\u3092\u8ffd\u52a0":30,"marverick\u306b\u5909\u66f4":31,"masahiro\u3055\u3093":31,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":167,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":60,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":60,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":60,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":60,"max\u3068common":60,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":60,"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":60,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":30,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":31,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":33,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":33,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":10,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":60,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":60,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":60,"mooz\u3055\u3093":33,"mooz\u3055\u3093\u304c\u4fee\u6b63":33,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":56,"msg\u306fcom\u306b\u3088\u3063\u3066":5,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":5,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":59,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":30,"n_builtin_type_names\u306b\u306f":47,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":56,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":46,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":57,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":61,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":56,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":43,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[43,56,59],"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":59,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[43,56],"namebuf\u306e\u30b5\u30a4\u30ba":[43,56],"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":31,"new":[0,3,8],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":43,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":30,"null":[7,33,35,36,37,42,46,49,50,57,63,75,87,98,99,103,104,107,126,127,128,133],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":59,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[43,59],"null\u306a\u3089temporari":47,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":60,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":60,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":46,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":30,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":47,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":59,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":51,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":51,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":51,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":51,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":56,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":56,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":56,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":56,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":56,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":56,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":47,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":54,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":56,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":54,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":56,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":54,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":54,"obj\u306f":56,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":56,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":56,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":56,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":58,"obj\u3092lock\u3057\u307e\u3059":56,"obj\u3092unlock\u3057\u307e\u3059":56,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":56,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":62,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":51,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":51,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":51,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":57,"object\u578b\u306fv1":155,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":51,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":56,"offset\u306f":59,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":59,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":8,"ongaeshi\u3055\u3093":31,"ongaeshi\u3055\u3093\u304c\u5831\u544a":31,"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":58,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":43,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":114,"org\u304c\u30db\u30b9\u30c8\u3092":8,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":8,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":114,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":114,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":114,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":8,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":8,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":8,"output_columns\u304b\u3089_value\u3092\u524a\u9664":31,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":99,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":116,"output_type\u306b\u306fjson":116,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":116,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":85,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":8,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":7,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":60,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":114,"path\u3092":31,"pc\u306bgroonga":32,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":30,"po\u306e\u5b9f\u884c":3,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":8,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":8,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":3,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":8,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[124,125],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":124,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":125,"point\u578b\u306e\u5024":[124,125],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[124,125],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":59,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":116,"public":[8,37],"push\u3057\u3066groonga":8,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":32,"quit\u306f":93,"rb\u3092\u8ffd\u52a0":31,"release\u306e\u5b9f\u884c":3,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":8,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":8,"repositories\u914d\u4e0b\u306b":8,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":8,"request\u3092\u9001\u308a\u307e\u3057\u305f":8,"request\u3092\u9001\u308a\u307e\u3059":8,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":59,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":7,"return":[18,33,35,36,37,39,41,42,43,46,47,48,49,50,56,59,63,70,72],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":53,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":8,"root\u306b\u5909\u66f4":31,"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":116,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":113,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":8,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":8,"s3ki\u3055\u3093":31,"s3ki\u3055\u3093\u304c\u5831\u544a":31,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":10,"scorer\u306f":99,"scr\u3067\u3059":114,"scr\u306e\u4e2d\u8eab\u304c":114,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":114,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[122,124,125,130,132],"search\u3092\u884c\u3044":[59,60],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":60,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":43,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":43,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":114,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":30,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":71,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":31,"select\u30b3\u30de\u30f3\u30c9":30,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":114,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":114,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":8,"sh\u306e\u307f\u306a\u3089\u305a":10,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":10,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":8,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":10,"shibuya\u3055\u3093":31,"shibuya\u3055\u3093\u304c\u5831\u544a":31,"shimada\u3055\u3093":31,"shimada\u3055\u3093\u304c\u5831\u544a":31,"short":[69,115],"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":155,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":78,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":31,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":31,"shutdown\u306f":100,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":33,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":8,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":59,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":59,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":8,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":10,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":8,"static":[33,37,173],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":114,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":31,"status\u30b3\u30de\u30f3\u30c9":30,"status\u30b3\u30de\u30f3\u30c9\u306f":101,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":122,"string\u306b":7,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":33,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":33,"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":59,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":59,"table\u304c":59,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":43,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":59,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":60,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":59,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":59,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":59,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":59,"table\u306ecolumn":59,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":7,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":7,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":7,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":59,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":59,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":59,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":59,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":59,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":59,"table\u306fcolumn\u3068\u306f\u5225\u306b":59,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":59,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":178,"table_list\u306f":104,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":105,"takahiro\u3055\u3093":31,"takahiro\u3055\u3093\u304c\u5831\u544a":31,"takahiro\u3055\u3093\u304c\u63d0\u6848":31,"takashi\u3055\u3093":33,"takashi\u3055\u3093\u304c\u5831\u544a":33,"takuto\u3055\u3093":31,"takuto\u3055\u3093\u304c\u5831\u544a":31,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":114,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":155,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":8,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":53,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":167,"tokenbigram\u306a\u3069":167,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":167,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":165,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":165,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":167,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":165,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":167,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":167,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":32,"tokenmecab\u3067\u306f":167,"tokenmecab\u306e\u5834\u5408":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":165,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":167,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":31,"tomita\u3055\u3093\u304c\u5831\u544a":31,"tomotaka_ito\u3055\u3093":33,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":33,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":125,"true":[30,36,37,69,77,78,79,80,81,82,84,86,87,88,89,90,95,96,97,98,99,103,105,106,109,121,123,124,125,126,127,128,131,133,134,136,137,138,140,152,170,171,172,173,175,176,178,179,180],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":33,"try":[3,41,158,175,176],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":6,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":6,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":3,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":6,"twitter\u7de8":3,"txt\u306b\u307e\u3068\u3081\u307e\u3059":8,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":8,"txt\u306e\u5185\u5bb9":8,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":54,"ueno\u3055\u3093":[31,32],"ueno\u3055\u3093\u304c\u5831\u544a":32,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":31,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":31,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":10,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":30,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":57,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v1\u306e\u5024\u306e\u4e2d\u306b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":7,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":7,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":7,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":7,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":7,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":7,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":10,"value\u304c\u5c5e\u3059\u308b\u578b":104,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":56,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":67,"var":[7,24,57,63,79,111,113,115,162],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":71,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":8,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":71,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":31,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":71,"void":[34,41,44,47,48,55,56,59,60,63],"web\u7ba1\u7406\u753b\u9762":30,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":33,"while":[0,35,36,81,87,107,138],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":33,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":114,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"windows\u5411\u3051":8,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":8,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"windows\u7cfb":8,"worker\u306f":5,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":5,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":5,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":8,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":8,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":8,"x\u3067\u306frealloc":31,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":31,"x\u306e\u304a\u77e5\u3089\u305b":29,"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":116,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":8,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":8,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":8,"yum\u306e\u5834\u5408":8,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":8,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":8,aba:[171,173,180],abbrev:123,abcd:91,abl:133,abort:37,about:[2,13,14,15,16,17,18,19,20,21,22,23,24,25,26,29,33,34,35,36,37,41,63,69,70,72,73,74,75,78,79,81,84,87,91,92,96,97,98,99,102,106,107,108,109,115,120,123,131,134,136,137,139,142,145,147,148,150,154,159,168,169],abov:[13,17,24,27,35,96,99,103,115,118,121,128,131,134,140,145,147,148,150,171,173,175,176,179,180],absolut:95,acccess:162,accept:[0,33,35,37,73,96,109,118,121,123,137,159,173,175,176,177,179,180],access:[0,13,18,33,35,36,37,41,43,81,99,115,147,148,150,154,158],accessor:59,accident:36,accord:[123,170],accordingli:115,account:[2,37],accross:35,accuml:36,accumul:99,accur:[0,133],acquir:41,acronym:164,across:123,action:36,actual:[36,37,115,170,173],add:3,addit:[0,18,20,21,22,26,39,91,99,107],addition:180,additional_configure_opt:36,address:[33,35,113,118,177],address_is_in_us:164,address_is_not_avail:164,adjac:136,adjust:[36,37,69],admin:[31,33,35,36,37],admin_html:[33,113],administr:[18,35,37],advanc:[29,38,97,98],advantag:[0,133,162],affect:[35,36,37],afr:[171,173,180],after:[13,14,24,27,33,35,36,37,41,50,115,118,126,127,137,140,151,152,154,170,172,173,177],again:[37,41,115,138],against:[0,18,35,37,43,47,49,69,99,109,136,137,147,148,150,169,172],againt:99,agaist:35,ago:147,aim:36,aio:36,aki:37,akihabara:180,akinori:29,akio:[33,35,36],akira:37,alert:[37,88,89,115,139],algolithm:135,algorithm:[33,75,123],alic:[81,99,109,115,121,131,136,159,176],alisa:131,all:[0,13,24,33,35,37,43,50,69,73,75,79,81,86,87,95,97,98,99,103,106,107,109,115,121,135,136,137,138,139,140,147,150,151,152,154,159,164,173,176,179],all_record:35,alloc:[18,35,37,42,46,49,63,99,101,166],alloc_count:[101,115,143,173,177],allow:[0,21,35,119,133,173,177],allow_column:[99,136],allow_leading_not:99,allow_pragma:99,allow_upd:[99,136],almost:[33,99,154,168],alphabet:[37,99,103,107,148],alreadi:[37,41,63,86,107,119,138,154,173,175],also:[0,3,13,18,35,39,69],although:115,alwai:[0,37,72,79,99,102,115,136,137,147,154,164],amazon:99,amd64:8,among:[18,35,169,170,172],amount:35,analysi:[0,24,137],analyz:[0,33,35,115],ani:[0,20,24,86,91,97,98,99,102,106,107,115,126,127,131,133,134,136,145,159],anim:172,ann:8,annot:36,anonym:151,anoth:[0,35,49,99,145],api:[1,3,11],appear:[0,37,74,99,107,133,136,137,145,173],append:[35,49],apper:99,appl:140,appli:[38,49],applic:[0,16,33,37,115,133,137,145,159],approach:123,approv:37,approxim:[33,35,123],appveyor:37,april:8,apt:[8,14,17,21,26,35],aptitud:10,aramaki:33,arc:107,architectur:[0,8,37],archiv:[8,13,18,19,24],area:0,aren:[35,37,99,103,115,133,136,142,151,154,159],arg_list_too_long:164,argument1:137,argument2:137,argument:[33,35,36,37,46,63,123,126,127,128,131,133,134,137,173,175,177],arithmet:36,armhf:37,arnaud:33,around:[133,142],arrai:[33,35,37,69,72,76,79,91,92,99,103,107,108,133,136],arrang:173,art:[137,176],articl:175,articles2:175,articles_cont:175,arugment1:137,asami:36,asc:8,ascend:[99,142,171,173,180],ascii:[136,137],askmonti:37,assgin:137,assigend:136,assign:36,associ:[33,63,84,86,99,170,172,173],assum:[46,57,96],atsushi:37,attach:[13,140,152],attent:99,attr_setpshar:36,attribut:[91,92,107,108,128],atv:[171,173,180],auth_bas:[115,159],auth_basic_user_fil:[115,159],authent:158,author:115,auto:[35,37,102],autoconf:33,autogen:[8,13,35],automak:31,automat:[13,95,111,115,136,137,151,172,173],avail:[0,13,18,24,36,38,39,45,63,72,79,91,99,102,103,107,111],averag:[37,99],avg:[37,99,112],avoid:[18,36,37,99,166],awar:63,ayumu:37,back:[115,137],backslash:[36,49,136],backup:[47,85],backward:[35,37,109,159],bad:[0,36,37],bad_address:164,bad_file_descriptor:164,bar:103,base:[0,13,20,21,22,24,26,35,36,37,50,96,99,107,115,118,119,126,127,133,136,137,147,148,150,158,162,176,177],basebal:[172,175],bash:24,basi:173,basic:[0,18,35,37,99],batch:35,bc009774:8,becam:[37,162],becaus:[0,22,35,37,72,78,81,95,99,103,115,118,121,131,133,134,136,137,138,140,143,145,147,148,149,150,151,152,154,158,159,162,164,170,172,173,175,179],becom:[0,38,123,170],been:[8,81],befor:[24,34,35,69,75,95,99,115,145,147,148,149,170,173],before_instal:17,beforehand:22,begin:112,behav:[118,123],behavior:[35,37,121,131],behaviour:36,beijin:123,belong:[65,171],below:[9,81,86,136],benchmark:[18,35,36,37,39,110],benefit:162,bernard:29,best:0,beta:38,better:[0,37,99,137,175],between:[18,33,35,36,37,39,56,81,99,103,119,120],big:[37,115],bigram:[114,117,167],bill:[165,167],billiard:[165,167],bin:[14,24,27],binari:[0,1,18,27,35,36,37,72,115,137,143,155,159,169],bind:[16,17,33,35,38,113,126,127,135],binlib:8,bit:[17,19,20,21,22,25,26,27,99,114,136,137,170],black:[140,142],blank:140,block:[36,103,115,137,170],blog1:175,blog2:175,blog:[8,18,99,134,136,137,138,167,169,175],blog_bodi:167,blog_comment_index:134,blog_cont:134,blog_titl:173,blogroonga:3,blt:85,bob:[81,99,109,115,121,131,136,159,176],bodi:36,book:137,bookmark:69,bookmark_index:69,bool:[36,106,136,152,155,170,178],boost:147,border:[35,107,121],boston:176,both:[0,19,20,21,22,26,27,65,69,72,78,99,133,136,137,138,147,151,159,164,173,176,180],bottom:50,bottom_right:[33,125],bottom_right_point:50,bound:37,box:99,brasil:123,brasillia:123,brazil:171,brew:[14,23],bring:173,british:179,broadcast:176,broken:[33,35,36,37,43,47,87,111],broken_pip:164,brooklyn:176,brother:136,browser:[13,24,177],bsd:[24,33,37],buf_siz:[43,56,59],buffer:[36,49,52,56,76,175],bug:3,build:[0,8,10,14,17,18,19],buildabl:33,builder:52,built:[0,18,24,36,39,56,70,91,107,115,120,123],builtin:123,builtin_type_nam:47,bulk:49,bump:[29,36,37],bundl:[13,35,36,37,131],button:[13,35,36],bye:[99,106,136,137,152],cach:[0,30,35,36,42,56,75],cache_hit_r:[101,115,143,173,177],cache_limit:[18,39,70],cache_previ:42,calc_target:99,calc_typ:99,calcul:[35,36,37,97,99,118,123,142,176,180],call:[35,36,37,46,63,69,81,97,98,99,123,133,135],caller:57,calro:121,camp:176,can:[0,1,13,14,15,17,20,21,22,23,24,26,27,33,34,35,36,37,40,41,42,45,46,47,49,63,69,72,73,74,75,78,79,81,86,91,95,96,97,98,99,102,103,106,107,109,111,113,115,120,121,123,126,127,128,131,133,134,135,136,137,138,139,140,142,143,145,147,148,149,150,151,152,154,159,162,164,168,170,171,172,173,174,175,176,177,178,180],cancel:[37,73,96],cancel_request_is_accepted_or_not:96,candid:[102,118,147],candidate1:102,candidate2:102,candidate_1:118,candidate_2:118,candidate_n:118,cannot:[18,99,103,136,137,138,140,151,159,166],capit:173,caplit:[36,37],care:[13,79,99,136,147],carefulli:69,carlo:[81,109],cas_error:164,cascad:[36,37],cast:[33,34,35,36],categor:[99,106,107],caus:[33,35,36,37,103,136,137,170],ceekz:36,cenos6:35,center:[0,124],cento:[8,14,18,19],central:176,certain:180,cflag:[8,25],chain:134,chang:[0,14,24,33,34,35,36,37],charact:[0,33,35,36,37,49,63,91,99,103,107,113,126,127,133,136,137,139,140,145,148,173],charli:176,chart:33,check:[8,9,10,18,31,33,35,36,37,39,47,56,70,72,74],china:[123,171],choic:0,choos:[37,86,99,115,170],chracter:[103,133,140],chracterist:151,chroot:8,chunk:[76,154,168],circl:[0,142],cirit:115,citi:[123,142,176],clang:[10,29,35,36,37],clarifi:37,classif:171,clean:[8,10],clear:[8,33,35,37,43,56,87],clearlock:[18,35,37,39,70],click:99,clone:[3,8,9],close:[86,126,151],close_tag1:126,clumn:154,cmake:[24,27,29,35,36],cmp0014:37,code:[3,8,13,18,35,36,37,39,49,70,72],col1:56,col2:56,col3:56,collaps:35,colleagu:3,collect:[0,72,176],color:140,colum:[154,175],column1:[7,35,36,37,99,137],column2:[7,35,36,37,99,137],column_1:134,column_2:134,column_3:134,column_cr:[18,33,37,39,69,70],column_index:[37,69,78,79,99,121,126,127,131,133,134,136,137,138,152,154,167,172,173,175,176,179],column_inform:79,column_information1:79,column_information2:79,column_list:[18,31,33,35,37,39,70],column_list_head:79,column_n:134,column_nam:86,column_name1:86,column_name2:86,column_remov:[18,37,39,70],column_renam:[18,34,36,37,39,70],column_scalar:[78,79,81,84,85,87,99,106,109,121,123,126,127,128,131,133,134,136,137,138,152,154,167,171,172,175,176,179],column_vector:[36,37,69,78,79,84,99,134,170,172,176],columnn:35,com:[8,9,13,17,99,140,170,171,173,177,180],comamnd:159,combin:[0,35,37,99,103,121,131],combind:136,come:[142,176],comma:[86,137,170,171,173],command:[0,9,13,14,17,18,24,27,29,31,33,35,36,37,39,42,46,63,69],command_nam:177,command_vers:[71,101,115,116,126,127,128,133,143,173,177],commands_column_list:79,commands_column_renam:81,commands_table_cr:104,comment2:175,comment:[36,85,134,145,175],comment_cont:134,comment_index:176,comment_nam:134,comments2:175,comments_cont:175,comments_loc:176,commit:[13,37],commnad:[27,71],common:[26,33,35,59,60,99,103,135,136,137,151,175],commonli:0,compar:[0,35,37,99,133,136],comparison:[18,35],compat:[20,21,22,26,37,91,109,115,140,159],compil:[24,29,33,36,37],complet:[18,33,34,36,39,95,102,118,146],complex:[35,36,99,137],complianc:115,composit:140,compress:[24,33,35,36,37,78,158],compress_lzo:78,compress_zlib:78,comput:[35,63,137,147,148,150,154],conbin:[99,135],conbind:136,concaten:175,concatin:[35,36,118],concept:37,concret:[171,172,175],concurr:139,cond:36,condit:[18,28,35,36,49],conditin:136,condition1:137,condition2:137,conditional_probability_threshold:[33,102],condtion:136,conf:[115,154,162,168],config:[24,27,30,33,35,113],configur:[3,8,10,13],confirm:3,confiugr:154,conifugr:17,connect:[1,35,173,177],connection_refus:164,consid:[37,103,159,162,172,175,179],consist:[37,99,136,150,164,173],consol:115,construct:[18,35,36,37,39,137],consum:37,contact:13,contain:0,content:[33,36,37,63,72,79,99,115,128,131,133,134,136,137,138,152,154,159,164,172,175,176],content_type_len:35,context:[33,42,46,49,56,115,133,134],continu:[17,35,36,37,107,113,148],contrast:[0,37,115,131,173],control:[35,37,115,121,131,135],conveni:[0,1,24,33,147,158],convens:35,convent:35,convers:[33,115],convert:[37,74,137,140,151,170,176],coordin:[123,170],copi:[35,63,81],copyright:37,core:[0,24,114,115,118,158],coremodul:115,correct:[18,35,37,39,102,118,145,146,147],correctli:[35,173],correspond:[56,99,102,147,148,149,150],cosmo0920:[36,37],cost:138,could:[35,170],couldn:35,count:[0,99,172,176],countri:[84,171,177],cours:171,cover:[0,133],coverag:10,cpu:[24,114,115,118,158],cpuinfo:[20,21,22,26],crash:[33,35,36,37,81,87],crch:107,creat:[13,18,32,33,35,36,37,39,42,46,47,49,63],createrepo:8,creation:[33,36,173],creteria:173,crit:[88,89],criteria:173,critic:[24,35,63,139],ctrl:[173,177],ctx:[7,42,43,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63],curl:[17,23,24,35,96,115,118,143,159],current:[13,33,42,45,46,47,75,81,86,103,115,142,173,176],cursor:[33,50],custom:[17,24,29,33,35,36,37,91,99,103,106,107,115,133,135,136,139,140,147,152,158],customiz:133,cutter:[8,10],cutter_check_leak:10,cutter_debug:10,cutter_dir:8,cutter_source_path:8,cve:37,cxxflag:[8,25],daemoinz:35,daemon:[35,36,37,115,118,119],dai:[137,138,139,176],daiki:[31,32,33,35],danger:[43,47,81,87,159],dash:24,dat:[34,35,36],dat_kei:151,data:[0,17,18,19,20,21,22,26,27,28,33,34,35,36,37,42,47,51,65,69,79,84,86,99,102],data_set_nam:102,databas:[0,16,18,24,33,35,36,37,42,47,56,59,79,81,86,87,92,95,103,104,108,111,115,117,118,119,133,135,136,137,140,151,154,158],database_path:111,datail:99,dataset:[18,36,39,102,110],date:[0,18,114,123,169],dave:121,daylight:37,db1:159,db2:159,db_path:[115,116,143,173,177],dbm:[0,133],dbmss:0,dcb314:37,dcmake_install_prefix:27,ddl:[37,114],deafult:33,deatil:99,deb:[8,21,26,33,35,36,37],debian:[14,18,19],debootstrap:8,debug:[37,88,89,107,115,139],decid:145,decim:[137,170],decrib:115,decrypt:8,defalt:31,default_command_vers:[101,115,143,173,177],default_token:99,defin:[117,137,138,145,147,164,173],define_selector:[18,39,70],definion:137,definit:[35,84,99,121,123,126,127,128,131,133,134,136,137],defrag:[18,33,36,39,70],degre:[33,69,137,170,180],delet:[14,18,30,31,33,35,36,37,39,56,70],delimit:[0,36,107,150,170],demerit:151,demo:172,depend:[0,3],deprec:[33,35,36,37,71,77,99,103,113,123],deriv:[119,162],descend:[99,102],describ:[3,13,14,15,16,17,19,20,21,22,23,24,25,26,27,37,40,63,69,70,72,75,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,120,128,134,136,137,140,141,142,145,146,147,148,150,154,164,173,175,176],descript:[35,36,37,79,91,92,99,103,107,108,115,118,136,137,147,164,165,176],design:[35,99,170],desin:162,dest:[112,113,170],dest_kei:59,dest_key_s:59,detail:[0,1,3,13,20,21,22,24,26,35,36,37,63,69,73,79,95,99,103,106,107,114,115,131,139,154,162,170,171,173,180],detect:[24,33,35,107,115],determin:[99,135,173],dev:[2,8,10,21,26,33,35,36,37],devel:[20,22],develop:[0,3],devic:0,dialog:36,dic:22,dictionari:[22,31,35,36,37,140],didn:37,differ:[15,35,37,99,103,118,123,131,136,137,143,159,170,175,180],difficult:0,digest:159,digit:[37,99,103,139,148],dinam:135,dinner:0,dir:114,direct:[35,36],directli:[137,176],directori:[13,24,29,33,35,36,37,63,115,118,119,145],directory_not_empti:164,disabl:[14,24,31,33,34,35,36,37,78,99,115,118,136,139,147],discard:36,discuss:[2,15],disk:[103,175],displai:35,dist:8,distanc:[0,35,123,137,142,180],distinct:[28,118],distribut:[8,19,20,21,22,24,26,27,35,37],divid:[0,137,170],divis:37,dll:[33,35,37,63],do_gqpt:114,do_gqtp:114,do_http:114,do_loc:114,doc:[8,12,13,14,29,33,34,35,36,37,115,179],doc_bodi:179,documenataion:72,document:[0,3,8],document_index:[126,127],document_vers:8,document_version_ful:8,documents_content_index:[131,133],docutil:8,doe:[0,35,36,69,99,102,111,115,134,136,137,162,170,173],doesn:[24,35,36,37,41,63,72,79,81,96,99,103,107,115,121,133,136,137,138,140,142,145,147,148,151,152,154,158,159,179],domain:[12,35,37,49,56,63,79,81,104,113],domain_error:164,don:[13,19,24,33,37,42,45,46,49,69,79,86,87,99,103,115,136,137,140,143,145,150,159,164,173,177],done:[37,41,42,99,115],dot:35,doubl:[33,35,36,37,86,91,99,103,107,136,137,151,173],doubt:171,down:[18,36,37],downcas:140,download:[8,20,21,22,23,24,25,26,27],downtim:158,dpkg:8,draw:172,drildown:[18,169],drill:176,drilldown:[18,33,36,37,67,82],drilldown_calc_target:37,drilldown_calc_typ:37,drilldown_limit:82,drilldown_offset:82,drilldown_output_column:[37,82],drilldown_result1:99,drilldown_result2:99,drilldown_sortbi:82,drilldown_xxx:99,drop:[33,35,36,37],due:[0,133],dump:[18,31,33,35,36,37,39,45,70],duplic:37,dure:[35,173],dynam:[0,34,115,173],each:[0,19,24,33,36,49,69,73,79,86,92,96,99,102,107,108,115,118,126,131,137,139,147,148,150,151,164,168,170,171,172,173,174],ealier:35,ear:107,earch:107,earlier:[33,109,140],easi:[0,37,135,145,159,177],easili:37,eclips:13,ecmascript:[35,36,99,135,137],edict2grn:37,edit:[3,8],edit_dist:[18,30,39,120],editor:13,editrc:33,effect:[35,86,176],effici:[0,69,175],egg:175,eight:173,either:[15,36,99,121,136,137,175],eito:36,el5:20,elaps:[33,72,118,137,139,143],elapsed_tim:[72,139],element1:[69,137],element2:[69,137],element3:69,element:[35,36,37,69,72,74,133,170,173],elfr:35,elimin:36,ellip:[123,124],els:37,emac:13,embed:[0,29,115,127,133,145],emerg:[88,89,115,139],emit:35,emphas:128,empti:[33,36,37,79,99,136],enabl:[3,8],enable_tokenized_delimit:107,enci:114,enclos:[86,173],encod:19,encodiong:137,encount:[19,20,21,22,26,27],end:[112,123,136,137,143],end_of_data:164,end_tagn:126,endian:37,endpoint:[118,119],eng:[102,147],engi:[102,147],enginen:147,english:[2,13,14,15,33,36,37,99,147],enhanc:38,enorm:172,enough:[0,37,168,175],enourm:150,ensur:148,enter:[36,173,177],entiti:0,entranc:173,entri:[36,42,51,75,77,78,80,82,83,84,85,86,87,99,105,126,127,134,136,137,154,175,176],entries_content_index:[99,136,137,154],entries_key_index:[99,136,137,154],entries_local_nam:85,entry_bodi:78,entry_selector:82,enumer:173,env:145,environ:[17,19,20,24,27,29,33,34,36,37,115,145],epel:[20,35],epoch:[170,176],equat:123,era:0,eric:121,errno:37,error:[0,18,19,20,21,22,24,26,27,33,34,35,36,37,42,43,46,47,49,50,63],error_cod:63,error_loc:72,error_messag:72,escal:19,escap:[35,36,37,49,126],escape_charact:49,escaped_charact:49,escaped_queri:49,escaped_str:49,escaps:[126,127,133],essenti:[21,26,115],establish:[173,177],estim:[50,168],etc:[3,8,21,35,115,145,154,159,162,168,170,173],etim:112,euc:[36,113],euc_jp:24,eval:97,evalu:[36,97,134,137],evaluated_valu:97,evalud:97,even:[0,19,20,21,22,26,27,35,36,37,78,137,147,175],event:159,event_dataset:[117,119],event_queri:[102,117,119,147,148,150],event_typ:117,ever:36,everi:171,everyon:177,evil:137,exact:[7,99,101,103,151],exactli:168,exampl:[0,3,16],exce:[35,36],exceed:168,excel:145,except:[22,33,35,37,69,97,98,99,103,107,115,133,136,142,151,154],exclud:[35,36,37,86,121],exclude_t:36,excut:36,exec_format_error:164,execut:[0,18,27,29,33,35,36,37,39,46,69,72,75,79,81,84,86,91,92,95,97,98,99,101,102,103,104,106,107,108,109],exist:[1,14,35,36,37,47,86,96,111,115,119,121,137,162,170,173,175,177,180],exit:[35,36,111],exmapl:[136,137],expand:[18,35,36,39,95,99],expans:[18,33,35,99,131,145,169],expect:[37,170],experiment:[29,33,34,35,36,37,42,47,91,96,97,98,111,126,127,133],expir:[75,115],explain:[170,173],explicitli:[14,35,115],exploit:0,expnas:145,expornenti:137,expr:49,express:[27,33,35,36,49,84,98,99,115,118,123,135],expresss:135,ext:107,extend:[37,175,179],extens:143,extract:[0,13,24,27,35,37,49,103,127,133,134],extrct:137,f10399c0:8,facet:99,fact:[99,172],faction:176,factor:[37,99],fail:[33,35,36,37,41,42,63,95,103,136,173],failur:[8,29,35,37,41],fals:[8,30,36,37,78,81,84,87,96,109,121,126,131,134,136,137,155,170,178],famili:[107,137],familiar:171,fast:[0,65,72,86,99,103,107,123,126,127,128,133,136,137,142,151,158,159,172,173,175],faster:[24,33,36,37],fatal:37,fault:35,favorit:13,favorited_bi:176,featur:[0,13,29,33,35,37,46,47,69,78,91,92,96,99,102,103,107,108,111,115,123,126,127,131,133,135,136,141],fedora:[8,14,18,19],fedoraproject:20,feel:37,fetch:[37,150,175],few:[99,158,159],ff76:140,ff9e:140,fffe:107,field:79,figur:142,file:[3,8],file_corrupt:164,file_exist:164,file_too_larg:164,filename_too_long:164,fill:[118,137],filter:[18,21,26,33,35,36,37,39,69,82,84,96],fin:57,find:[0,3,13,14,24,27,59,81,99,102,126,127,133,140,147,148,150,152,173],finish:[96,139],firefox:13,firewood:[35,36],first:[13,24,27,33,36,37,46,63,72,79,96,99,103,115,118,126,127,133,136,137,145,159,162,170,172,173,175,176,179],five:[72,121,173],flag:[33,34,35,37,43,46,49,53,56,59,60,61,63,69,76,78,79,81],flanc:123,flexibl:[0,131,135],flow:3,flower:170,fluent:9,focus:173,folder:27,follow:[2,13,14,17,24,27,28,33,35,36,37,43,63,69,72,79,81,86,91,92,99,102,103,107,108,115,117,118,119,123,126,127,131,133,134,136,137,139,142,143,145,147,148,149,150,154,159,164,168,170,171,172,173],followe:176,fontain:33,footnot:[123,173],forc:35,forget:69,fork:13,form:[33,36,99,115,118,135,136,140,173,176,177],form_1:173,form_2:173,format:[13,18,34,35,37,38,39,45,63,70],former:[140,145],formula:[123,168],found:[24,27,35,36,50,59,99,149],four:[72,139,151,173],fraction:[0,170,176],fragment:83,francisco:123,frank:121,freebsd:[18,29,39],freed:[37,42],freq0:150,freq1:150,freq2:150,frequenc:[37,102,174],frequency_threshold:[33,102,147,148,150],fresh:138,friend:[3,172],friendli:35,friendship:172,from:[0,18,19],fsf:35,ftb:38,ftp:114,ful:107,fullfil:162,fulli:[35,115],fulltext:[20,21,22,26,40,99,103,107,126,127,131,133,136,137,140,142,151,162,175],fumiyasu:33,funa:37,func:[46,57,63],functin:137,function_nam:72,function_not_impl:164,furigana:102,further:170,futur:[33,36,69,91,97,98,123,159,164],fuzzi:103,g721d5c7:101,ga54c5f8:114,garbag:[33,36,37,76],gat:[171,173,180],gb87d9f8:143,gcc:[20,22,24,25,33,35,36],gem1:8,gemfil:35,gener:3,genki:36,geo_dist:[18,33,35,36,39,120],geo_distance2:[33,123],geo_distance3:[33,123],geo_in_circl:[18,33,36,39,120],geo_in_rectangl:[18,30,31,33,36,39,120],geodet:[155,180],geograph:[123,170],geoindex:172,geoloc:[18,37,39,141],geometri:33,geopoint:123,get:[0,2,8,13,14,18,21,24,26,33,35,37,42,46,50,63,75,99,106,107],getaddrinfo:35,gettext:[13,14],ggdb3:8,git:[8,9,13],github:[8,9,13,15,17,29,33,35,36,37,78,140],give:[0,131],given:[35,36,131,172],glib:36,global:[18,35,36,39,40],glossari:17,gmo:37,gnu:[14,18,19],gnupg2:8,gone:172,goo:[136,137],good:[0,13,24,99,106,107,136,137,138,152,175],googl:[99,136,149],goronga:27,got:[36,37],gpg:8,gpl:38,gqtp:[0,1,18,20,21,22,26,35,36,37,74,112,114,156],gram:[0,107,137,173],grand:176,graph:0,greas:170,gregex:36,grep:[20,21,22,26],grn1:175,grn2:175,grn3:175,grn:[85,115],grn_address_is_in_us:74,grn_address_is_not_avail:74,grn_api:49,grn_arg_list_too_long:74,grn_bad_address:74,grn_bad_file_descriptor:74,grn_between_too_many_index_match_ratio:37,grn_bool:56,grn_broken_pip:74,grn_builtin_typ:[56,61],grn_bulk:49,grn_bulk_vsiz:49,grn_cach:[18,39,40],grn_cache_clos:42,grn_cache_current_get:42,grn_cache_current_set:42,grn_cache_get_max_n_entri:42,grn_cache_open:42,grn_cache_set_max_n_entri:42,grn_cas_error:74,grn_column:[18,39,40],grn_column_cr:43,grn_column_index:43,grn_column_index_upd:43,grn_column_nam:43,grn_column_name_id:43,grn_column_name_id_len:43,grn_column_name_kei:43,grn_column_name_key_len:43,grn_column_name_nsubrec:43,grn_column_name_nsubrecs_len:43,grn_column_name_scor:43,grn_column_name_score_len:43,grn_column_name_valu:43,grn_column_name_value_len:43,grn_column_renam:43,grn_column_t:43,grn_column_trunc:[37,43],grn_command_vers:[18,39,40],grn_command_version_max:44,grn_command_version_min:44,grn_command_version_st:44,grn_connection_refus:74,grn_content_json:45,grn_content_msgpack:45,grn_content_non:45,grn_content_tsv:45,grn_content_typ:[18,39,40],grn_content_xml:45,grn_ctx:[18,35,39,40,41,42,43],grn_ctx_at:[35,46],grn_ctx_batch_mod:37,grn_ctx_close:[33,37,46],grn_ctx_db:46,grn_ctx_fin:[35,46],grn_ctx_get:[43,46],grn_ctx_get_command_vers:46,grn_ctx_get_match_escalation_threshold:55,grn_ctx_get_output_typ:46,grn_ctx_init:[33,46],grn_ctx_open:[33,46],grn_ctx_per_db:[33,46],grn_ctx_recv:37,grn_ctx_send:[42,45,46],grn_ctx_set_command_vers:46,grn_ctx_set_fin:46,grn_ctx_set_match_escalation_threshold:55,grn_ctx_set_output_typ:46,grn_ctx_t:74,grn_ctx_use:46,grn_ctx_use_ql:37,grn_cursor_ascend:60,grn_cursor_by_id:60,grn_cursor_by_kei:60,grn_cursor_descend:60,grn_cursor_gt:60,grn_cursor_lt:60,grn_cursor_prefix:60,grn_cursor_rk:60,grn_dat:33,grn_dat_repair:34,grn_db:[18,34,39,40],grn_db_creat:47,grn_db_create_optarg:47,grn_db_int:56,grn_db_kei:34,grn_db_open:47,grn_db_recov:[37,47],grn_db_register_by_nam:32,grn_db_text:49,grn_db_touch:[31,47],grn_default_logger_get_path:35,grn_default_logger_set_path:35,grn_default_query_logger_get_path:35,grn_default_query_logger_set_path:35,grn_directory_not_empti:74,grn_domain_error:74,grn_enc_utf8:[48,60],grn_encod:[18,39,40],grn_encoding_pars:48,grn_encoding_to_str:48,grn_end_of_data:74,grn_exec_format_error:74,grn_expr_add_var:49,grn_expr_alloc:49,grn_expr_append_const:[7,49],grn_expr_append_const_int:49,grn_expr_append_const_str:49,grn_expr_append_obj:[7,49],grn_expr_append_op:[7,49],grn_expr_clos:49,grn_expr_compil:49,grn_expr_creat:49,grn_expr_create_for_queri:7,grn_expr_exec:[46,49],grn_expr_get_keyword:49,grn_expr_get_var_by_offset:49,grn_expr_pars:49,grn_expr_syntax_escap:49,grn_expr_syntax_escape_queri:49,grn_expr_var:[57,63],grn_fals:56,grn_file_corrupt:74,grn_file_exist:74,grn_file_too_larg:74,grn_filename_too_long:74,grn_function_not_impl:74,grn_geo:[18,39,40],grn_geo_cursor_next:50,grn_geo_cursor_open_in_rectangl:50,grn_geo_estimate_in_rectangl:[33,50],grn_geo_point:50,grn_geo_select_in_circl:33,grn_geo_select_in_rectangl:[33,50],grn_get_default_command_vers:44,grn_get_default_encod:48,grn_get_default_match_escalation_threshold:55,grn_get_lock_timeout:41,grn_hook:[18,39,40],grn_hook_entri:51,grn_hook_get:51,grn_hook_select:51,grn_hook_set:51,grn_id:[43,46,49,52,53,54,56,59,60,63],grn_id_nil:[49,59,60],grn_ii:[18,39,40],grn_ii_buff:52,grn_ii_buffer_append:52,grn_ii_buffer_clos:52,grn_ii_buffer_commit:52,grn_ii_buffer_open:52,grn_illegal_byte_sequ:74,grn_improper_link:74,grn_in_values_too_many_index_match_ratio:37,grn_inappropriate_i_o_control_oper:74,grn_incompatible_file_format:74,grn_index_cursor:[18,39,40],grn_index_cursor_next:[36,53],grn_index_cursor_open:53,grn_info:[18,39,40],grn_info_typ:54,grn_init:[35,139],grn_input_output_error:74,grn_interrupted_function_cal:[74,96],grn_invalid_argu:[56,59,60,74],grn_invalid_format:74,grn_invalid_seek:74,grn_io_vers:37,grn_is_a_directori:74,grn_itoh:33,grn_ja_skip_same_value_put:36,grn_log_level:63,grn_log_path:35,grn_logger:35,grn_logger_info:35,grn_logger_reopen:35,grn_lzo_error:74,grn_match_escal:[18,39,40],grn_network_is_down:74,grn_no_buff:74,grn_no_child_process:74,grn_no_locks_avail:74,grn_no_memory_avail:74,grn_no_space_left_on_devic:74,grn_no_such_devic:74,grn_no_such_device_or_address:74,grn_no_such_file_or_directori:74,grn_no_such_process:74,grn_not_a_directori:74,grn_not_enough_spac:74,grn_not_socket:74,grn_obj:[18,35,37,39,40,43,46,47,49,50,51,52,53,54],grn_obj_add_hook:51,grn_obj_append:56,grn_obj_check:56,grn_obj_clear_lock:[33,56],grn_obj_clos:[7,37,46,53,56],grn_obj_column:56,grn_obj_column_index:[43,53],grn_obj_column_scalar:43,grn_obj_column_vector:43,grn_obj_compar:56,grn_obj_compress_lzo:43,grn_obj_compress_zlib:43,grn_obj_db:47,grn_obj_decr:56,grn_obj_defrag:56,grn_obj_delete_by_id:[33,56],grn_obj_delete_hook:51,grn_obj_expir:56,grn_obj_fin:49,grn_obj_flag:[43,49,59,61,63],grn_obj_get:56,grn_obj_get_element_info:54,grn_obj_get_hook:51,grn_obj_get_info:54,grn_obj_get_nhook:51,grn_obj_get_rang:56,grn_obj_get_valu:[33,56],grn_obj_id:56,grn_obj_incr:56,grn_obj_init:56,grn_obj_is_builtin:[33,56],grn_obj_is_lock:56,grn_obj_key_float:61,grn_obj_key_int:61,grn_obj_key_norm:59,grn_obj_key_uint:61,grn_obj_key_var_s:61,grn_obj_key_with_si:59,grn_obj_lock:56,grn_obj_nam:56,grn_obj_path:[36,56],grn_obj_path_by_id:[34,56],grn_obj_persist:[43,59],grn_obj_prepend:56,grn_obj_reinit:56,grn_obj_remov:[33,56],grn_obj_renam:56,grn_obj_search:58,grn_obj_set:56,grn_obj_set_element_info:54,grn_obj_set_fin:57,grn_obj_set_info:54,grn_obj_set_mask:56,grn_obj_set_valu:[56,60],grn_obj_table_dat_kei:33,grn_obj_table_hash_kei:[59,60],grn_obj_table_no_kei:[59,60],grn_obj_table_pat_kei:[59,60],grn_obj_unlink:56,grn_obj_unlock:56,grn_obj_user_data:62,grn_obj_vector:[49,56],grn_obj_with_posit:43,grn_obj_with_sect:43,grn_obj_with_weight:43,grn_object_corrupt:74,grn_op_adjust:[7,58],grn_op_and:[7,58],grn_op_and_not:58,grn_op_but:7,grn_op_cal:7,grn_op_or:[7,58],grn_op_push:7,grn_oper:[43,49,50,58,59],grn_operation_not_permit:74,grn_operation_not_support:74,grn_operation_timeout:74,grn_operation_would_block:74,grn_pat_at:31,grn_permission_deni:74,grn_plugin_charlen:63,grn_plugin_command_cr:[37,63],grn_plugin_error:63,grn_plugin_expr_var_init:[37,63],grn_plugin_fin:63,grn_plugin_fre:63,grn_plugin_get_suffix:33,grn_plugin_get_system_plugins_dir:33,grn_plugin_init:63,grn_plugin_isspac:63,grn_plugin_log:63,grn_plugin_malloc:63,grn_plugin_mutex:63,grn_plugin_mutex_clos:63,grn_plugin_mutex_lock:63,grn_plugin_mutex_open:63,grn_plugin_mutex_unlock:63,grn_plugin_proc_alloc:63,grn_plugin_proc_get_var:[37,63],grn_plugin_proc_get_var_by_offset:[37,63],grn_plugin_realloc:63,grn_plugin_regist:[32,63],grn_plugin_win32_base_dir:63,grn_plugins_dir:29,grn_post:[50,53],grn_proc:[18,39,40],grn_proc_creat:57,grn_proc_func:[46,57,63],grn_proc_funct:63,grn_proc_get_info:57,grn_proc_get_typ:37,grn_proc_set_selector:37,grn_proc_typ:57,grn_ptr_init:49,grn_ptr_value_at:49,grn_pvector:49,grn_qlog_path:35,grn_queri:35,grn_query_expander_tsv_synonyms_fil:145,grn_range_error:74,grn_rc:[41,42,43,44,46,47,48,49,50,51,52,54,55,56,57,58,59,60,63],grn_read_only_file_system:74,grn_resource_busi:74,grn_resource_deadlock_avoid:[56,74],grn_resource_temporarily_unavail:74,grn_result_too_larg:74,grn_retry_max:74,grn_search:[18,39,40],grn_search_optarg:58,grn_select:99,grn_selector_func:37,grn_set_default_command_vers:44,grn_set_default_encod:48,grn_set_default_match_escalation_threshold:55,grn_set_lock_timeout:41,grn_snip:[35,37],grn_snip_clos:37,grn_socket_is_already_connect:74,grn_socket_is_already_shutdown:74,grn_socket_is_not_connect:74,grn_socket_not_initi:74,grn_stack_over_flow:74,grn_success:[41,42,43,46,47,49,63,74,99,139],grn_syntax_error:74,grn_tabl:[18,39,40],grn_table_add:59,grn_table_at:[31,34,56,59],grn_table_column:59,grn_table_cr:59,grn_table_cursor:[18,39,40,53],grn_table_cursor_clos:60,grn_table_cursor_delet:60,grn_table_cursor_get_kei:60,grn_table_cursor_get_valu:60,grn_table_cursor_next:[31,60],grn_table_cursor_open:[31,60],grn_table_cursor_set_valu:60,grn_table_cursor_t:60,grn_table_dat_kei:59,grn_table_delet:59,grn_table_delete_by_id:59,grn_table_differ:59,grn_table_get:[34,59],grn_table_get_kei:59,grn_table_group:59,grn_table_group_flag:59,grn_table_group_result:59,grn_table_hash_kei:[50,59],grn_table_lcp_search:59,grn_table_pat_kei:59,grn_table_renam:59,grn_table_s:[7,59],grn_table_select:3,grn_table_setoper:59,grn_table_sort:59,grn_table_sort_asc:59,grn_table_sort_desc:59,grn_table_sort_flag:59,grn_table_sort_kei:59,grn_table_trunc:[33,59],grn_table_upd:59,grn_table_update_by_id:59,grn_text_len:49,grn_text_printf:37,grn_text_valu:49,grn_text_vprintf:37,grn_tokenizer_error:74,grn_tokenizer_query_open:35,grn_too_large_offset:74,grn_too_many_link:74,grn_too_many_open_fil:74,grn_too_many_open_files_in_system:74,grn_too_many_symbolic_link:74,grn_too_small_limit:74,grn_too_small_offset:74,grn_true:56,grn_type:[18,39,40],grn_type_cr:61,grn_unknown_error:74,grn_unsupported_command_vers:74,grn_update_not_allow:74,grn_user_data:[18,39,40,57],grn_zlib_error:74,grndb:[18,37,39,110],grnslap:[18,39,110],grntest:[8,9,31,33,35],gro:[118,133],gronga:[145,149],gronnga:149,groo:[99,118],groogna:[27,34,35,99,136],groogna_default_command_vers:159,groonga1:71,groonga_cache_limit:36,groonga_cli:137,groonga_clone_dir:8,groonga_database_auto_cr:[35,36],groonga_dir:8,groonga_dist:35,groonga_github_com_path:8,groonga_log_level:36,groonga_log_path:36,groonga_n_record:36,groonga_path:114,groonga_query_log_path:[36,37],groonga_vers:33,grooon:118,group:[0,35,36,37,99,134],grroonga:149,gtar:25,gted:13,gtihub:33,gurun:135,gzip:[24,35,158],gzip_typ:159,had:13,hai:7,half:140,halfwidth:140,hana:172,hanako:84,hand:[0,99,115,131,134,170,175],handl:[36,37,74,115,151,154,168,170],hang:36,hard:154,hash:[33,35,36,103,137,151],hash_index:176,hash_kei:151,hash_tag:176,hat:24,hatak:37,have:[0,12,13,24,37,45,47,65,72,74,79,86,99,102,103,115,136,137,138,140,142,145,148,150,152,154,158,159,162,170,173,177],haystack:7,hdd:114,head:[37,99,112,115,164],header:[25,29,35,36,37],heavi:99,hello:[99,106,137,138,152],help:[12,13,19],hemispher:35,hendro:36,here:[13,14,17,24,26,27,42,45,47,49,63,65,69,73,74,75,79,81,84,86,87,91,92,95,96,97,98,99,102,103,106,107,108,109,111,115,117,118,119,121,123,126,127,128,131,133,134,136,137,139,140,142,145,147,148,150,151,152,153,154,159,164,171,175,180],hereaft:0,hex:[137,172],hidden:0,hide:36,hideki:[36,37],high:[0,69,99,135],higher:[99,102],highight_ful:126,highlight:[126,127],highlight_ful:[18,37,39,120],highlight_html:[18,37,39,120,126],hino:36,hiragana:[136,137,147],hiroshi:[33,37],histori:33,hit:[36,99,135],hmm:176,hobbi:139,hoge:[113,122],hold:[170,174],home:[8,24],homebrew:[8,18,19],homepag:114,hook:17,horikoshi:33,host:[17,33,114,177],host_name_or_ip_address:177,hostnam:[35,113,114,115,116,177],hottolink:38,hour:[41,137,139,176],howev:0,html:[3,8],html_untag:[18,36,39,120],htpasswd:[115,159],http:[0,1,8,13,17,18,20,21,22,23,24,25,26,27,35,36,37,69,85,96,112,113,114,115,116,118,128,140],httpd:[8,18,20,21,22,26,33,34,35,36,37,39,42,96,110],httprewritemodul:115,hubeni:123,human:[79,103],hypertext:[18,169],hyphen:[103,173],i18n:[3,11],i386:[8,20,33],i686:114,ichii:33,id_column:43,idea:99,identifi:84,idf:37,ieee:155,ifexist:86,iff:173,ignor:[33,35,36,37,47,84,91,96,99,107,136,145,151],ii_buff:52,ill:165,illegal_byte_sequ:164,illustr:171,imagin:[99,171],immedi:[0,96,115],implement:[13,33,35,37,38,97,98,99,115,123,137,151,158],implemnt:158,improper_link:164,in_valu:[18,37,39,120],inaccur:35,inada:36,inappropriate_i_o_control_oper:164,inc:37,includ:[12,20,36,37,72,79,81,87,91,95,97,98,99,107,121,133,137,145,159,173],incompat:[29,35,36,37],incompatible_file_format:164,incorrect:37,increas:[0,69,92,97,99,107,108,123,154],increment:73,incres:37,independ:0,index_blog:175,index_column:37,index_friend:172,index_messag:175,index_point:172,index_tag:172,index_titl:175,indexblog1:175,indexblog2:175,indexbuf:43,indic:[36,107,123,139,173],infinit:[33,35,37,103],info:[88,89,115],infom:46,inform:[0,2,13,18,34,35,36,42,79,95,97,98,99,139,140,169,172],inherit:36,inhibit:34,init:[24,35,36,37,57],initi:[33,35,37,46,63,118],innodb:0,input:[33,36,45,72,86,99,137,147,148,149,150,173,177],input_file_nam:72,input_output_error:164,input_typ:86,insensit:99,insert:[35,133,173],inspect:[36,37],inst:36,instal:[0,3,8,10],instantli:[0,133],instead:[17,19,22,24,27,33,35,36,37,46,77,99,103,113,115,123,126,127,133,135,136,137,140,142,151,162,177,179],instroduc:36,insuffici:170,int16:[31,36,155],int32:[35,36,37,69,81,99,102,109,121,123,131,136,137,147,148,150,155,167,171,172,173,175,176,180],int64:[36,37,99,155],int8:[31,36,37,155,170],integ:[69,74,99],integr:[17,35,36,170],intel:114,intend:[35,37,134,136,175],intens:115,interact:[173,177],interest:[3,173],interfac:[35,118,143,173],intern:[34,36,37,42,45,46,133,170],internet:[0,135],interpret:[34,136],interrupted_function_cal:164,introduc:[3,37,115],introduct:[3,11],introspect:35,inv_res_column:114,inv_thread_column:114,invalid:[33,35,36,37,48,63,99,103,118],invalid_argu:164,invalid_format:164,invalid_seek:164,invers:37,investig:[36,168,171],ipa:22,ipad:22,iptabl:[159,177],is_a_directori:164,is_anim:170,is_stop_word:[37,106,152],isn:[20,24,35,36,37,46,72,75,79,86,97,98,99,102,103,115,133,136,145,147,148,149,164],iso:137,isob:36,isssu:36,issu:3,itagaki:31,item:[85,99,102,103,147,148,150,159,162],item_:102,item_dataset:[117,150],item_exampl:147,item_queri:[102,117,147,148,150],iter:137,itself:[36,37,69,107,136,145],ivh:[20,22],iwai:[34,35,36],jame:178,jan:176,januari:[118,137],japan:[84,147,171,177,180],japanes:[0,2,13,15,35,37,136,137,147],jason:178,javascript:[18,33,115,169,177],jeff:178,jekyl:8,jemalloc:37,jennif:178,jersei:176,jessi:[36,37],jinja2:8,jiro:172,job:114,john:[84,178],join:2,joseph:178,jqueri:37,json:[31,33,35,37,45,69],jsonp:118,juman:22,jumand:22,jun:37,just:[13,17,19,20,21,22,24,25,26,27,33,35,36,37,42,47,56],kana:[102,117,147,148,150],kanako:36,kashihara:37,katagiri:36,katakana:[102,140,147],kawada:37,kawaji:35,kazuhiko:[35,37],kazuhiro:36,keep:[28,33,42,46,69,138],kei:[0,8,18,28,34,35,36,37,56,59,60,69,84,86,96],ken:172,kenichi:[31,33],kentaro:36,kernel:[35,154],key_column:43,key_length:164,key_nam:99,key_norm:[35,99,103,131,133,136,137,138,140,154,167,173,175,176,179],key_siz:59,key_typ:59,key_with_si:[103,136,137,178],keyboard:99,keybuf:59,keyr:[21,35],keys_zon:115,keyword1:[35,126],keyword2:[35,126],keyword:[35,36,49,99,103,126,127,131,133,136,149,172,173,175],keyword_cont:49,keyword_s:49,kind:[0,171,173,179,180],kinjir:172,kisk:35,know:[99,111,171,172,176],knowledg:0,known:[0,36,133,137,173,177],koi8r:[24,35],koji:35,konishi:36,korea:171,kosuk:36,kouhei:36,kuriyama:37,kwic:133,kytea:[24,35,36,107],label1:[37,99],label2:99,label:[36,37],lager:36,lake:142,languag:[0,1,3],larg:[0,35,103,111,136,137,151,154,159,170],larger:[37,69,99,119,133,150,151,154,164],larget:96,largetext:151,last:[35,46,107],last_modifi:176,lat:114,latenc:114,later:[33,35,36,37,126,127,128,134,140,173],latest:[2,3],latin1:[24,35],latin:113,latitude_in_degre:137,latitude_in_degreexlongitude_in_degre:137,latitude_in_msec:137,latitude_in_msecxlongitude_in_msec:137,latter:[140,145],launchpad:[26,37],layout:8,lc_messag:13,lcov:10,lead:[99,133,173],leak:[31,33,35,36,37,78],leakag:179,leaner:[37,119],lear:150,learn:[36,99,102],learner:[18,37,39,110,117],least:[35,75,134,136,154,168],left:50,leftmost:137,length:[35,63,170],let:[18,69,99,123,138,169,170,172,173,175],letter:140,level:[35,36,37,63,88,89,113,115,119,139,164,171],lexcon:173,lexicon2:175,lexicon:18,lexicon_t:114,lgpl:38,lib:[31,36,95,111,115,162],libedit:[22,24,33,35],libev:[21,24,26,34],libgcc_s_sjlj:37,libgroonga:[16,173],liblzo2:[21,26],libmecab:[8,21,26],libmemcach:10,libmsgpack:[21,26],libstemm:37,libwinpthread:37,libzmq:[21,26],licens:[8,35,37,38],lifecycl:17,light:81,like:[2,18,24,37,43,69,79,81,99,102,115,123,134,135,136,137,142,147,159,169,171,176],limit:18,line:[10,13,14,17,24,27,33,35,37,46,72,113,115],line_cont:72,line_numb:72,link:[35,37,99,136,137,170,171,177],linux:[14,18,19],lion:35,listen:[35,115,159,177],liter:[33,35,36,126,127,133,136],live:[103,176],llt:107,load:[18,31,33,34,35,36,37,39],loaded_valu:98,local:[0,8,13,14,24,115,137],local_nam:85,localhost:[8,96,112,113,114,115,118,143,159,177],localnam:85,localstatedir:19,location_in_groonga:72,location_in_input:72,location_str:176,lock_clear:[18,37,39,70,77],log:[8,18,19],log_level:[18,39,70],log_put:[18,39,70,88],log_reopen:[18,39,70,88,89],log_repoen:35,logal:17,logger:35,logic:[35,99],logical_count:29,login:154,logo:35,logrot:[35,37],logyyyymmddhhmmss:118,london:123,longer:[38,46],longest:[33,59,137],longitude_in_degre:137,longitude_in_msec:137,longitudexlatitud:36,longtext:[50,155],look:74,loop:[35,37],lot:36,lower:[99,103,107,173],lru:75,lte:107,lucid:[31,36],lunch:0,lz4:19,lzo:[33,35,36,37,78],lzo_error:164,m64:25,mac:[18,19],machin:37,macport:[18,19],macro:[33,36,37],made:[33,35,173],madrid:123,mai:[0,16,24,28,33,35,36,37,42,43,47,72,79,81,87,91,96,97,98,102,103,111,115,137,145,151,154,159,172,175],mail_column:114,mailarch:8,main:21,mainli:[37,176],mainlin:37,mainstream:0,major:19,make:[0,3],makecach:[20,35],malloc:37,manag:[0,14,17,24,46,47,73,96,111,115,133,145,151,159,177],mani:[0,3,13,24,33,36,37,69,99,103,115,117,133,149,151,154,158,159,162,170,171,173],manipul:135,manner:[99,173],manual:[18,37],map:[33,139,147,154,168],map_hugetlb:33,mariadb:[36,37],mark:[34,37,103,140,152,162,176],marku:35,markup:12,masafumi:[36,37],masaharu:[34,35,36],masahiro:[31,36,37],massachusett:176,master:[13,17,115],match:19,match_column:[18,36,37,69,82],match_escalation_threshold:[24,31,46],matsuu:31,matur:[1,162],maverick:33,max:[33,35,36,37,42,60],max_command_vers:[101,115,143,173,177],max_concurr:112,max_siz:60,max_tp:112,max_valu:154,maximium:99,maximum:[28,73,99,121,137,164,168,170,173],mcdonald:142,mdev:29,mean:[24,35,36,37,41,45,49,50,63,69,74,79,87,96,99,102,107,115,134,136,137,139,140,142,145,147,154,168,170,171,173,180],measur:[0,33],mecab:[0,8,20,21,22,23,24,26,33,35,36,37,38],mecab_new2:35,mecab_strerror:37,mechan:[35,115,159],media:37,median:37,medium:[19,20,21,22,26,27,176],meerkat:33,meet:[37,176,180],memcach:[0,1,18,169],memo:[131,152],memo_index:37,memori:[18,19,20,21,22,26,27,31,33,35,36,37,42,46,63,78,103],memos_cont:152,memri:154,mention:134,menu:[27,99],mercuri:8,merg:[0,13,35],meridian:123,messag:[8,19],message_pack_install_prefix:19,messagepack:[24,33,34,35,45],met:134,meta:[35,79],metadata:[35,97,98,176],meter:[123,180],method:[36,115,147,173],micro:[18,137,169,170],microsecond:[139,170],microsoft:27,midnight:137,migrat:[37,99,136,137],mike:84,million:28,millisecond:[41,118,137,170,180],mime:159,min:[35,37,41,60,99,112,114],min_siz:60,minagawa:[36,37],mind:28,mine:0,mingw:8,minim:[115,121],minimum:[20,21,22,26,63,99,137],mininum:162,minut:[137,139,147,148,176,180],mismatch:37,miss:[33,35,36,37,145],mitani:37,mitsuhiro:31,mitsuo:36,mix:[69,102],mkdir:85,mkostemp:37,mmap:[18,36,166],mobil:0,model:[37,164],modern:176,modifi:[24,168,177,179],modul:[0,18,31,37],moero:172,monei:172,monitor:[20,21,22,26,36],monkei:170,month:[137,139,172,176],montywi:34,more:[0,24,28,35,36,37,46,63,65,69,79,99,102,103,111,115,119,131,133,134,136,137,138,145,148,149,151,152,154,159,164,170,173,176,178],moreov:180,mori:85,moritapo:172,moritar:175,morn:138,morpholog:[0,24,137],most:[37,46,50,69,70,99,159,170,173],motoi:36,move:[12,27,33,35],movi:172,mpaa:121,mrubi:[36,37,97,98],msec:[33,41],msg_id:8,msgpack:[143,159,164],msvc:29,msyql:69,mte:38,multi:[0,24,33,37,115,158],multibyt:33,multipl:[0,18,35,36,37,42,69,79,84,91,96,99,106,107,118,126,131,136],multipli:137,multithread:96,munin:[19,20,21,22],murakami:[36,37],museum:176,musha:29,music:[139,172],must:[24,37,42,43,47,49,50,63,65,79,81,84,86,87,96,99,102,103,111,118,119,128,134,136,137,147,150,154,159,164,168,170,173,177],mutex:[36,63],mxcl:8,myisam:0,mysql:[0,20,21,22,26,37,38,69,91,99,126,127,133,140,145,149],n_builtin_type_nam:47,n_entri:75,n_kei:59,n_keyword:49,n_like:[72,99,136,137,154],n_queri:[101,115,143,173,177],n_result:59,n_var:63,nagano:37,naiv:171,nakai:36,name1:137,name2:137,name:[0,13,18,33,34,35,36,37,43,46,47,48,49,56,57,59,61,63,72,76,78,79,80],name_1:[173,177],name_2:[173,177],name_s:[43,46,49,56,57,59,61,63],namebuf:[43,56],nanosecond:[72,139],naoina:[35,36],naoya:[36,37],narg:49,narrow:[18,36,37,99,169],narwhal:33,natti:33,ncpu:23,nearbi:0,necessari:[33,173],need:[0,13,14,17,20,24,25,27,33,35,37,42,45,46,49,69,72,91,95,96,99,103,107,109,115,118,127,133,136,137,140,143,145,147,148,150,151,154,159,164,168,173,175,179,180],needl:7,needleess:35,needless:[34,35,36],neg:[35,41,46,57,63,74,99],neglig:37,neighbor:0,nest:[18,35,36,37,169],nested_reference_column:99,net:[2,8,170,171,172,173,177,180],netbsd:36,network:[35,159,164,172],network_is_down:164,never:[24,102],new_release_d:8,new_valu:99,new_vers:8,newark:176,newer:37,newli:[0,37,42,109,133,138],newlin:[33,34],newvalu:43,next:[0,37,50,57,172,173],nfkc51lexicon:140,nfkc:140,nginx:[20,21,22,26,35,36,37],nginxhttpstubstatusmodul:37,ngx_http_proxy_modul:115,nice:138,night:[138,179],nihon:147,niku:37,nine:173,nippon:147,nise_nab:37,nnede:154,no_buff:164,no_child_process:164,no_kei:151,no_locks_avail:164,no_memory_avail:164,no_space_left_on_devic:164,no_such_devic:164,no_such_device_or_address:164,no_such_file_or_directori:164,no_such_process:164,noarch:[20,22],node:[17,20,35],nogpgcheck:35,nois:148,nokubi:37,nomal:[35,99,115],nomral:[99,136],non:[35,36,72,99,111,136,137],none:[24,87,91,99,103,106,107,113,115,117,164,175],nonexist:[37,99],nor:99,noraml:107,normal:[18,20,21,22,26,34,35,36,37,39,45,46],normalizeauto:126,normalized_text:91,normalizer_list:[18,37,39,70],normalizerauto:[91,92,99,103,104,106,107,126,127,131],normalizernfkc51:92,normalizs:103,normallexicon:140,normalzi:126,northern:35,not_a_directori:164,not_enough_spac:164,not_socket:164,notat:[35,36,137],note:[0,22,33,35,36,37,63,84,96,97,98,99,103,115,118,128,137,154,159,168,170,171,173,177],noth:[45,99,111,115,147,149],notic:[88,89,115],notif:[36,139],notifi:96,now:[13,14,18,22,24,34,37,39,69,78,95,97,98,120],nroonga:[17,131,175],nsi:8,nsubrecs_column:43,nterm:76,nul:[33,63],number1:137,number2:137,number:[0,19],numer:[18,136,137,169],nvar:57,o_binari:35,obata:[31,33,36],obj:[43,47,49,51,54,56,57,58,62,76],object1:137,object2:137,object:[33,35,37,42,46,47,56,59,63,65,69,81,83,87,91,92,107,108,133,135],object_corrupt:164,objnam:[77,83],obsolet:162,obtain:63,obvious:170,occur:[35,36,37,46,50,72,78,81,102,145,154,179],ocelot:[33,36],octal:137,octob:37,odd:137,off:[33,37,115],offici:[8,20,22,33,131],offlin:[18,34,35,36,37,39],offset:[35,49,50,51,56,59,60,63,82],often:121,ohzeki:37,old_releas:8,old_release_d:8,older:176,oldvalu:43,omit:[33,72,87,95,99,107,123,143,147,151,173],onc:[33,35,37,99,140,171,175,176],oneir:[33,36],oneself:37,onga:133,ongaeshi:[35,36],onigmo:[29,37],oniguruma:29,onli:[0,13,17,19,20,21,22,26,27,35,37,42,45,63,74,75,84,86,87,96,97,99,102,103,107,109,111,115,121,126,127,128,131,133,134,136,137,138,140,142,145,151,159,162,170,173,175,180],onlin:[18,39],onto:154,ooo:151,opaqu:[42,164],opear:137,open:[17,33,35,36,42,47,50,86,111,126,139,140],open_tag1:126,oper:[18,24,35,36,37,39,49,50,81,87,99,135],operation_not_permit:164,operation_not_support:164,operation_timeout:164,operation_would_block:164,optarg:[47,58],optim:37,optimum:115,option:[14,20,21,22,23,24,25,26,33,34,35,36,37,47,72,75,79],oracl:[18,19],orangain:36,order:[0,35,36,99,136,142,164,171,173,180],org:[8,13,20,21,22,23,24,25,26,27,37,69,85,114,115,128,170,171,172,173,177,180],orient:[0,133,170],origin:[1,13,36,37,45,72,85,99],orilldown:171,orphan:36,osanai:37,otehr:103,other:[0,3,13,18,19],otherwis:[17,42,56,63,78,81,84,87,96,109,121,131,134,137,173],ouput:36,our:[2,13],out:[9,19,20,21,22,26,27,37,134,175],out_gqtp:114,out_http:114,out_loc:114,outdat:37,output:3,output_column:[35,36,37,69,82],output_typ:[116,143],outsid:37,over:[0,35,36,37,126,168,177],overcommit:154,overcommit_memori:35,overflow:[33,36,37,170],overhead:[37,162],overrid:24,overwritten:180,own:[0,35,49,137,170],owner:[36,115],pack:19,packag:[8,13,18,19,20,21,22,23],page:[2,13,18,35,36],pagin:173,pai:99,pair:[99,145,147,148,149,150,170],pair_dataset:[117,150],pair_queri:[102,117,147,148,150],pakcag:22,palal:8,palallel:8,pangolin:[8,26,35],paragraph:173,parallel:0,paramet:[18,27,33,34,35,36,37,39,41,42,43,44,46,47,48,49,50,51,53,54,55,56,57,58,59,60,61,62,63,73],parameter1:115,parent:[99,115],parenth:86,parenthes:173,pari:123,park:176,pars:[37,48,49,135],parser:136,part:[0,24,72,133,170,173,176],partial:[7,147,149,164],pass:[8,33,34,47,96,115,123,131,136,137,173,177],past:35,pat:[34,35],pat_kei:151,path:[8,14,19],patprefix:178,patricia:[18,33,35,36,103,136,137,151,169,173],patsuffix:178,pattern:[0,72,137],pcre:[35,115],penalti:36,pentium:114,peopl:0,per:[0,33,35,115,118],perfect:0,perform:[0,33,36,37,99],period:29,perl:115,permiss:[24,37],permission_deni:164,persist:[18,39,59,79,81,103,104],person:[18,19],php:[8,35,37],phrase:35,physic:76,pid:[24,30,33,113],pikonyan:172,pip:14,pipermail:37,piro:37,pkg:[20,24,25,31,33,35],place:[2,24,176],placehold:36,plai:[0,179],plain:128,platform:[13,19],pleas:[2,3,13,15,24,37,47,162,173],pluggabl:0,plugin:[9,13,18,19,20,21,22],poedit:13,point:[0,33,34,36,50,63,69,81,96,118,123,124,125,136],pointer:63,pole:123,polici:36,poor:145,popular:[69,99],port:[23,36,37,38,113,114,115,116,118,143,159,162,177],port_numb:177,portabl:[33,36,115],posit:[37,50,63,69,74,79,99,106,107,173],posix:137,possibl:33,post:[8,35,36,37,50,99],posted_bi:176,postgresql:[0,133],potenti:36,power8:37,power:99,ppa:[18,19],practic:[0,37,170],pragma:99,precis:[0,8,26,35,72,147,173],preconfigur:[20,21,22,26,162],predict:[103,151],prefer:118,prefix_search:[33,102],prepar:[18,115,127,133,169],prepend:[115,136,137],press:13,pretti:37,prevent:36,previou:[35,36,37,162,170,171,175],price:170,primari:[18,86,169,170,171,172,173],print:[37,177],prioriti:[0,99,147],privileg:[36,177],probabl:102,problem:[33,35,36,42,115,136,137,154,170],proc:[20,21,22,26,36,51,57,62,63,99],procedur:[35,36],process:[0,13,18,19,20,21,22,26,27,33,35,36,37,39,43,47,70,72,74,81,87,95,103,115,136,137],processor:[0,20,21,22,26],product:115,profil:176,program:[1,35,36,79,115,118,119,137],progress:139,project:[0,3,8,9,15,17,37,137,162],promot:36,prompt:[27,35,143,173],pronounc:135,proper:[37,72,176],properli:[35,136,177],properti:[26,139],propos:[99,149],protocol:[0,1,18,20,21,22,26,35,37,74,113,114,115,116,143,159,162],provid:[0,1,17,20,21,22,26,35,37,40,46,79,110,115,118,123,131,143,145,147,148,149,150,151,158,159,162,171,173,177],proxy_cache_path:115,proxy_cache_valid:115,proxy_pass:115,pseudo:[18,35,36,37,39,43,65],pthread_:36,ptr:[31,63],pub:[8,20],publish:[8,37],pull:8,puropos:107,purpos:[36,69,131,173,177],push:13,put:[13,37,136,154],python:[8,14],quantal:35,query_expand:[36,95],query_expans:[33,36],query_flag:35,query_s:49,query_str:36,queryexpandertsv:[18,35,36,39,95,131,144],question:175,quetzal:35,quickli:138,quiet:164,quit:[8,18,39,70],quiz:172,quot:[36,86,91,107,136,137,173],quotat:[91,107],quotient:137,qwik:85,rab:[171,173,180],raccoon:172,radious_or_point:124,radix:137,rake:8,rakutan:175,ram:114,ran:147,rand:[18,39,120],rand_max:132,random:180,rang:[18,35,36,37,65,79,81,99],range_error:164,range_filt:[18,37,39,70],ranguba:[37,69],rank:[37,173],rare:36,rate:[36,121],rather:[69,79,99,138],raw:[17,36],rch:107,reach:154,read_only_file_system:164,readabl:[34,37],readi:[14,24,35,99,136,137],readm:[8,36],real:[0,133,154],realli:[99,136,137,179],realtim:[102,150],reason:[35,99,103,111,137,147,159,162,168,171],recal:[0,135],receiv:[0,13,46,115,118,119,137,164],recent:75,recogn:0,recommend:[19,20,21,22,26,27,37,72,99,136,137,154,159,162,173,177],reconstruct:37,record:[0,18,28,29,33,35,36,37,39,49,50,59,69,84,86],recov:47,recover:[47,111],recrod:99,rect:[35,123,124],rectangl:[0,33,35,50],recurs:[8,9,87,99,115,145],recycl:37,red:3,redcloth:8,redhat:[24,33],redmin:37,reduc:[0,35,36,148,151,159,162,179],ref:137,refer:[0,18,29,33,36,37],referenc:[35,36,84,99,103,171],reference_column:[37,99],reference_vector_column:36,refin:[0,36],refresh:172,regard:[36,136],regexp:37,region:[142,180],regist:[0,18,29,35,36,39,63,70,91],regress:[36,37],regular:[115,118,170,173],rel:[33,37,99],relat:[0,2,3,9,17,18,20,21,22,24,26,29,33,35,36,37,56],relationship:[18,35,81,169,170],relax:154,releas:[8,20,22,27],relev:[0,173],reload:145,remain:[36,139],remaind:137,rememb:99,remot:[18,169],remov:[25,33,34,35,36,37,47,56,84,95,106,115,152,170],remove_blank:91,remove_tokenized_delimit:91,removep:56,renam:[33,35,36,81,151,173],reopen:33,rep_gqpt:114,rep_gqtp:114,rep_http:114,rep_loc:114,repair:34,repeat:[0,13],replac:[37,117,119,137,179],replai:115,repli:[175,176],replied_to:176,replied_us:176,replies2:175,replies_cont:175,reply_to:175,repoforg:[20,35],report:3,repositori:[3,4,8],repres:[49,113,135,137,170,172,179],represent:[13,48,49,69],reproduc:36,request_cancel:[18,37,39,70,73],request_id:[73,96],requir:[0,20,21,22,24,25,26,27,33,35,36],reqular:118,res1:59,res2:59,res_column:114,res_tabl:114,rescord:135,reserv:78,resiz:63,resolut:[18,169],resolv:[33,35,69,83],resourc:[37,138],resource_busi:164,resource_deadlock_avoid:164,resource_temporarily_unavail:164,resours:42,respect:[35,170,176,180],respons:[0,33,35,36,37,42,74,96,118,159,164],rest:[63,145],restart:[95,145,154],restaur:0,restrict:[35,36,159,177],result:[0,7,13,18,33,34,35,36,37,59,72,91,96,97,98,99,111,118,119,123,131,133,134,137,138,140,143,145,147,148,150,151,169,170],result_too_larg:164,retri:41,retriev:[0,99,137],retry_max:164,return_cod:[72,139],reus:151,reveal:0,revers:[8,18],rewrit:38,rid:52,rid_max:53,rid_min:53,right:[37,50],ringtail:36,rinse_1:8,risk:37,rlimit_nofil:[36,139],role:[0,131],romaji:147,roonga:149,root:[36,113,115,116,177],rose:170,roughli:170,round:33,row:[0,133],rpm:[8,20,22,33,34,35,36,37],rpmforg:20,rroonga:[17,36,37,42,126,127,131,134,135,175],rsync:8,rubi:[0,17,35,37,38,69,97,98,126,127,135],ruby19:[8,35],ruby1:8,ruby_ev:[18,36,39,70],ruby_load:[18,36,39,70],ruby_script:97,rubygem:35,rule:[37,99,107,159],run:[3,8,10,13],rurema:37,ryoji:37,s10:37,sae:[102,148],saer:[102,148],saerc:[102,148],saerch:[102,148],sai:[137,173],salamand:[36,37],same:[36,41,46,49,69,72,73,86,95,96,99,115,131,136,137,140,148,159,170,173,175,180],sampl:[35,84,95,99,114,115,118,119,121,123,126,127,128,131,133,134],san:123,satisfi:[36,86],satoh:33,satoshi:37,sauci:[36,37],save:[8,37,118,168,175],sbin:23,scalar:[18,39,65],scale:[0,159],scan:[10,126,127,136,137],scan_build:10,schema:[84,99,117,121,123,126,127,128,131,133,134,136,137,138,148,154,175],score1:7,score2:7,score:[35,69,81],score_1:118,score_2:118,score_adjust_express:99,score_adjust_expression1:99,score_adjust_expression2:99,score_column:43,score_n:118,scorer:[18,82],scr:114,script:[18,24,29,35,36,37,39,49],sea:[107,147],sear:147,searc:147,search_result:99,searchabl:138,sebastian:37,sec:41,second:[72,79,96,99,123,136,137,139,159,170,173,175,176,180],secret:8,secsion:72,section:[3,13,16,17,19,20,21,22,23,24,25,26,27,36,37,40,43,52,63,69,70,75,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,115,120,123,136,141,145,146,147,148,150,154,164,171,175,176],secur:[18,29,37],sed:[33,35],see:[0,1,14,17,18,20,21,22,23,24,25,26,35,36,37,39,41,46,63,69],segment:[35,37,76],segv:36,select:[18,29,31,32,33,35,36,37,39,42,49,50,69,70,71,73,75,81,84,94,96],select_opt:137,selector:35,self:114,semi:[33,103],sen_index_delimit:38,sen_index_norm:38,sen_sel_term_extract:38,senboku:36,send:3,sender:[118,119],senna:29,sent:159,separ:[35,45,79,86,91,99,102,106,107,136,137,143,145,164,171,173],sequenc:[33,36,73,99,102,136,137,139,147,148,150,164],sequence_dataset:117,sequence_queri:117,sequenti:37,serach:148,serch:[102,148],sergei:37,seri:173,serihiro:35,seriou:[35,37],serv:[8,37,170],servic:[0,17,35,36,37,148,154,162],session:[118,164],set:[20,21,22,26,29,35,36,37,41,42,46,56,65,69,75,99,106],set_host:114,set_port:114,set_token_filt:37,setup:[13,17,36],seven:173,shape:142,shard:[29,151],share:[0,2,24,33,35,36,41,42,43,47,113,115,172,175],shell:[24,136],shidara:33,shift_ji:24,shimada:35,shimoda:31,shimomura:35,shinjyuku:180,shinoda:37,shinya:35,sho:[36,37],sholud:24,shop:[138,165],shorter:138,shorttext:[37,50,69,72,78,79,81,84,85,87,99,102,103,104,106,109,113,114,121,123,126,127,128,131,133,134,136,137,138,140,147,148,150,151,152,154,155,167,170,171,172,173,175,176,177,178,179,180],should:[14,17,19,20,21,22,26,27,35,49,63,69,73,86,99,103,109,136,137,140,145,148,164],shouldn:37,show:[0,24,30,33,35,36,37,45,72,74,84,86,91,99,121,123,126,127,128,131,133,134,136,137,142,143,164,170,171,172,173,176,177,180],showen:74,shown:[137,173],shuhei:37,shutdown:[18,39,70],sid:[33,37,76],side:[0,35,99],sigcont:36,sign:[8,35,74],signal:37,significantli:0,sigstop:36,sigusr1:33,silent:17,simil:137,similar_search:[35,102],simpl:[37,79,81,91,92],simplest:[0,24,73],simplifi:36,sinc:[22,35,43,72,77,103,109,113,123,137,138,139,162,170,176],singl:[36,37,69,86,91,99,107,173],site:[37,85,87,99,135,170,171,172,173,175,177,180],sitecountri:[171,177],sitedomain:[171,177],situat:99,six:[139,173],size:[19,20,21,22,26,27,28,33,35,36,37,43,49,61,63,73,76,79,103,115,133,151,154],sizeof:49,sji:[24,38,113],skip:[36,37,173],slash:137,sleepi:138,slow:[115,151],slower:[123,171],small:[36,37,103,136,137,151,176],smaller:[0,69,103,123,138,139],snippet1:133,snippet2:133,snippet3:133,snippet:[35,36,38,133],snippet_html:[18,35,36,37,39,120],soccer:172,social:172,socket:35,socket_is_already_connect:164,socket_is_already_shutdown:164,socket_is_not_connect:164,socket_not_initi:164,soft:154,softwar:3,solari:[18,19],solr:137,solut:[18,166],solv:170,some:[0,1,2,13,22,24,28,35,36,37,41,49,69,72,73,96,103,107,117,120,131,136,139,152,154],someon:176,someth:37,sometim:37,soon:[133,142,159],sort:[0,18,33,36,99,102,142,151,169],sortbi:[33,36,82],sound:[140,148],soundkitchen:[33,35],sourc:[8,12,13,14,17,18,19],source_file_nam:72,sourceforg:[2,8],southern:35,space:[0,33,36,63,69,86,91,99,107,136,150,173],spain:123,span:[126,127,128,133],speaker:2,spec:[33,35,36],specfi:50,special:[13,24,36,41,49,72,74,99,107,126,127,133,136,173,177],specif:[0,18,24,35,36,37,69,97,98,99,102],specifi:[0,13,18,23,24,34,35,36,37,46,47,50,57,63,65,69,72,75,78,79,81,83,84,86,87,91,95,96,97,98,99,102,103,106,107,109,115,117,118,119,121],speech:0,speed:[33,149,151],spell:[145,179],spend:[136,137],spheric:123,sphinx:[11,12,13,14,37],sphr:[123,124],spil:29,split:[33,137,151],spokesman:3,sport:172,spreadsheet:145,sql:[99,171],squar:123,squeez:[8,36],src:[21,170],src_kei:59,src_key_siz:59,ssh:8,ssssss:139,stabl:[37,71,102],stack:36,stack_over_flow:164,stage:37,stamp:[139,147,148,150],standalon:119,standard:[86,115,155,173,177],start:[13,27,33,35,36,37,63,72,81,99,118,123,136,137,138,139,143,145,147,149,159],starttim:[101,115,143,173,177],startup:35,state:[35,84,123,164],statement:137,station:[142,176,180],statu:[18,20,21,22,26,35,36,37,39,70,74,84],status:[74,164],stdin:34,stem:[21,26,37,152],step:[13,24,27,150,170,173],still:[12,13,36,37,81,96],stop:[33,35,36,37,81,99,115,152],stop_word:[106,152],storategi:99,str:49,str_length:63,str_ptr:63,str_size:49,stream:37,strerror:37,strict:37,string1:122,string2:122,string:[7,18,33,34,35,36,37,46,48,49,56,57,63,69,72,73,86],string_liter:37,string_siz:49,strip:128,strlen:63,strongli:[19,20,21,22,26,27],structur:[0,37,72,151,172],stub:37,studio:[27,35,36],style:37,sub1:99,sub:[0,8],sub_filt:[18,36,39,120],subject:36,submiss:[102,147,148,150],submit:3,subrecord:36,substit:99,substitut:[13,17,99,131,136,137],substr:[136,137],succeed:[24,74,78,84,87,109,173],succeeded_or_not:[81,84,87,109],success:[42,43,46,47,49,63],successfulli:[63,173],successor:137,suddenli:36,sudo:[8,10,14,20,21,22,23,24,25,26,35,154,162,168,177],suffici:63,suffixsearchterm:[136,137],sug:149,suggest:[18,24,31,32,33,34,35,36,37,39,70],suggest_prepar:[102,147,148,150],suit:[0,37,133],suitabl:[37,99,103,138,151],sum:[37,99],summar:171,summari:[18,36,39],suno:37,superior:[0,133],support:[0,1,13,17,24,26,29,33,34,35,36,37,38,63,86,96,97,98,99,103,107,115,119,131,133,136,137,138,140,141],suppress:[34,35,37],sure:173,surfac:142,surround:[35,126,127,133,137],suzuki:35,swap:154,swig:38,synonym:[99,145,179],syntax:[18,29,35,36,37,39,49,69],syntax_error:164,syscal:37,sysconfig:162,sysctl:[23,154,168],system:[0,24,25,26,29,33,36,37,99,115,133,136,137,138,154,155,170,180],systemctl:162,systemd:35,tab:[45,143,145,164],tabl:[7,18],table1:59,table2:59,table_:[103,151],table_cr:[18,35,37,39,69,70,79,81,84,85,87,99],table_dat_kei:[36,37,103,104,136,137],table_hash_kei:[69,84,85,87,99,103,104,121,123,128,131,137,138,140],table_list:[18,31,33,35,39,70],table_no_kei:[37,84,85,87,99,103,104,126,127,131,133,136,137,138],table_pat_kei:[36,69,79,81,85,99,103,104,106,109,113,126,127,131,133,134,136,137],table_remov:[18,35,36,39,70],table_renam:34,table_token:[18,39,70],tablenam:71,tag:[8,18,33,35,36,37,69,79,99],tagger:0,tahr:[26,37],tail:[8,164],tajima:35,takashi:84,takatsugu:37,takayuki:33,take:[79,81,87,92,96,108,109,111,162,173],takiuchi:36,talk:[2,8,36],tamano:37,tanab:36,tanuma:37,tar:[8,20,21,22,23,24,25,26],target:[14,24,27,33,35,37,42,43,47,49,50,56,69,86,87,96,99,103,107,126,127,131,133,136,159,170,173,175],target_charact:49,target_nam:37,taro:172,task:[0,35],tasuku:38,tatsuya:35,temporari:[18,35,39,123],tend:175,term:[0,28,35,36,37,76,78,99,106,113,126,127,131,133,136],termin:[35,46,49,57,63,115,173,176],test:[8,10,19,20,21,22,26,27,35,37,114,115,170,173,175,176,177],test_loc:114,test_str:10,test_text_otoj:10,testdb:[114,119],tetsuharu:37,tex:107,textil:8,than:[0,28,33,36,37,69,79,99,102,103,123,133,135],thatn:99,theater:179,theatr:179,thei:[24,25,69,86,91,95,99,107,115,126,127,133,134,135,136,137,138,139,143,145,147,148,149,150,151,154,159],them:[12,13,20,21,22,24,26,41,49,69,72,78,86,99,123,136,154,170,173,177,180],themselv:[13,145],thesauru:99,thi:[0,3,14,16,17,19,20,21,22,23,24,25,26,27,29,33,35,36,37,40,42,43,45,46,47,56,63,69,70,72,75,78,79,81,86,87,91,96,97,98,99,103,106,107,109,110,111,115,117,118,120,121,123,126,127,131,133,134,136,137,139,141,143,145,146,147,148,150,154,159,164,168,170,171,173,175,176,177,179,180],think:[99,137],third:[79,99,137,170],those:[0,13,24,25,34,99,123,133,135,136,137,140,143,149,150,151,159,170,173],though:[0,35,36,37,147,175],thread:[0,36,37,43,46,47,63,87,113,118,139,159],thread_tabl:114,thread_title_column:114,threasd:113,threashold:[31,167],three:[36,69,72,81,99,123,126,135,147,148,170,171,173,175],threshold:19,through:[0,115],throughput:[33,159],thu:[0,37,117,119,136,174,175,179,180],tid:53,time:[0,18,29,33,35,36,37,41,72,96,102,111,114,118,133,136],time_column:114,time_stamp:139,timeout:[36,41,56],timestamp:176,timeuot:41,titl:[8,36,37,87,99,122,134,136,137,170,171,172,173,175,177],tld:171,tmp:[8,36,79,81,102,104,113,118,145,159,173,177],tobbi:131,todai:0,todo:[43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,64,66,68,69,72,91,94,99,117,120,129],tokenbigram:[99,103,104,106,107,108,113,126,127,131,133,134,136,137,138,148,151,152,153,154,167,173,175,176,179],tokenbigramignoreblank:[108,153,167],tokenbigramignoreblanksplitalpha:153,tokenbigramignoreblanksplitalphadigit:153,tokenbigramignoreblanksplitsymbol:[108,153,167],tokenbigramignoreblanksplitsymbolalpha:[108,167],tokenbigramignoreblanksplitsymbolalphadigit:[108,167],tokenbigramsplitsymbol:[108,153,167],tokenbigramsplitsymbolalpha:[99,107,108,153,167],tokenbigramsplitsymbolalphadigit:[108,131,148,153,167],tokendelimit:[107,108,150,153],tokendelimitnul:[108,153],tokenfilterstem:[21,26,37],tokenfilterstopword:[37,106],tokenizer_error:164,tokenizer_list:[18,37,39,70],tokenkytea:35,tokenmecab:[35,108,167],tokentrigram:[107,108,153],tokenunigram:[108,153],tokyo:[123,180],tokyogeopoint:[33,50,123,124,125,155,180],tom:131,tomita:31,tomo:172,tomoatsu:[31,35],too:[36,69,99,137,170,175],too_large_offset:164,too_many_link:164,too_many_open_fil:164,too_many_open_files_in_system:164,too_many_symbolic_link:164,too_small_limit:164,too_small_offset:164,tood:63,tool:[11,13,14,17,18,19],top:[50,171],top_left:[33,125],top_left_point:50,topic:3,total:[28,35,76],touch:154,toybox:170,tracker:3,tradit:[0,37],transfer:[0,18,162,164,169],transit:162,translat:3,travel:176,travi:16,treat:[35,36,37,99,107,137,142,147,148],tree:37,tri:[41,176],trial:0,trie:[18,33,35,36,103,136,137,151,169,173],tritonn:[99,136,137],troubl:13,truncat:[18,33,36,37,39,43,70,87],trust:8,trusti:[8,26,37],tune:[18,36,39,69,99],turn:115,tutori:[18,35,37,63],tweet:[2,138],twice:[99,136],two:[15,20,21,22,26,36,37,46,49,72,78,79,91,99,103,107,115,119,123,131,133,134,136,139,140,142,148,150,158,159,162,171,172,173,175,176,180],txt:[12,13],type1:102,type2:102,type:[9,18,33,34,35,36,37,43,45,46,49,50,54,57,65,69,74,78,79,81,84,91,96,97,99,102,103,107,114,115,118,123,134,136,137,142,143,147,148,150,151,159,164,169],type_of_the_column:134,typic:99,typo:[33,35,36,37,145,147,148],ubuntu:[8,14,17,18,19],ueno:[33,35],uid:8,uint16:[36,155],uint32:[35,36,37,69,72,79,81,84,99,103,104,109,121,134,136,137,138,140,152,154,155,167,171,172,173,175,177,178,179,180],uint64:[36,37,155],uint8:[31,36,79,155],uint:35,ull:107,ultra:172,umask:37,umemoto:33,unari:36,unauthent:[21,35],unchang:63,uncontinu:35,undefin:170,under:[24,37,115,118,119,159],underflow:170,underli:0,underscor:103,understand:[37,99,173],unexpect:[35,37],unexpectedli:36,unicod:140,unicorn:26,uninstal:35,uniqu:[96,118],unit:[70,84,123,133,137,164],univers:26,unix:[24,37],unix_time_when_command_is_start:72,unknow:37,unknown:[34,48],unknown_error:164,unlink:49,unload:35,unlock:63,unmanag:76,unnecessari:154,unpatch:38,unrecover:47,unrel:33,unresolv:33,unsign:[37,42,43,49,52,56,57,59,60,61,63,74],unsplit:[7,99],unstabl:34,unsupported_command_vers:164,untag:128,until:[13,37,41,63,86,99,138,154],unus:37,updag:35,update_buffer_s:52,update_not_allow:164,updated_at:167,upgrad:[35,37,158],upload:8,upper:[33,37,103,173],uptim:[101,115,143,173,177],uri:115,url:[33,37,85,159],usa:171,usag:[0,18,36,37,39],use_offline_index:34,user:[3,24,27,35,36,37,72,73,79,81,84,85,96,99,109,114,115,118,121,127,131,133,134,136,137,139,147,148,149,150,154,159,172],user_ag:121,user_column:114,user_data:[57,63],user_input:137,usernam:[27,172],users_index:176,users_loc:176,users_memo:131,users_nam:131,usr:[10,23,24,95,113,115],usual:[46,119,170,175],utc:[72,137],utf8:[24,48,113],utf:[24,35,36,38,118,137,140,143],util:115,utop:[8,26],uuuuuu:137,uzulla:33,valid:[33,35,36,37,99,150,151,170,173],valu:[0,24,33,34,35,36,37,41,43,45,46,52,54,56,57,60,63,65,69,72,74],value1:[86,115,137],value2:[86,137],value_1:[173,177],value_2:[173,177],value_column:43,value_typ:59,valuebuf:54,vari:[28,63],variabl:[25,29,33,34,35,36,37,63,79,99,137,145,164,170],varieti:172,variou:[18,169],vdw:[171,173,180],vector:[18,33,35,36,37,39,65],vector_column:36,veres:159,veri:[0,35,72,86,99,126,127,133,136,137,147,151,159,172],version1:71,version2:71,version3:71,version4:71,version:[8,25,26,27,29,33,35,36,37,38,43,44,46,47,71,73,77,87,96,101,109,111,113,114,115,123,140,143,158],vertic:103,via:[13,35,74,150],video:172,view:[18,35,118,168,169],virtual:36,visual:[0,27,33,35,36,37,72],vmstat:168,vocabulari:173,voic:140,vojtovich:37,vulner:37,w64:8,wai:[0,3,15,35,36,37,69,115,119,131,135,143,171,175,176,179],wait:[41,63],wanab:36,want:[9,12,20,21,22,23,24,26,37,86,91,97,98,99,106,107,115,118,123,134,136,145,147,148,150,162,164,168,171,173,175,179],wareohji:35,warn:[34,35,36,37,88,89,99,115,139],warp:37,warri:19,washida:36,watch:8,weak:[0,133],web:[24,99,102,115,136,148,150,172],webclip:128,weight1:[35,69,99],weight2:[35,69,99],weight3:69,weight:[18,35,36,37],weight_in_match_column:69,weight_in_weight_vector:69,welcom:[2,3,12,13,99,136,137,176],well:[0,24,36,115,133,177],were:[123,173],wget:[20,21,22,24,25,26],wgs84geopoint:[33,50,123,155,170,171,172,176,177,180],wgs84geoppoint:50,what:[49,102,134,179],wheezi:[8,18,19],when:[0,3,14,29,33,35,36,37,43,47,69,72,78,86,95,99,102,103,115,118,123,128,131,134,136,140,147,172,173,176,177],where:[24,74,170],whether:[35,37,47,56,74,99,102,109,111,115,121,123,131,134,135,136,168,170],which:[0,1,22,35,36,37,63,84,91,97,98,99,106,107,113,118,119,123,128,131,134,136,137,147,162,170,171,172,173,175,176,177,178,179,180],white:[136,173],who:[36,172],whole:36,whombx:36,whose:[137,173],why:[36,99,162],wibowo:36,wide:[0,24,33,173],width:[33,140],wiedenroth:37,wiki:115,wikipedia:155,win64:27,window:[8,18,19],wing:[35,36],with_check:[37,91],with_posit:[78,79,99,126,127,131,133,134,136,137,138,152,154,167,173,175,176,179],with_sect:[37,78,79,175,176],with_typ:91,with_weight:[37,69,78,79],within:[147,148,176,180],without:[0,34,35,36,37,69,75,95,99,115,131,133,134,136,137,138,147,150,158],wno:33,word1:[35,99,136,137],word2:[35,99,136,137],word:[0,35,37,65,99,134,135,136,137,145,147,148,149,150,152,174,176],work:[0,3,8],workaround:37,worker:[36,115],world:[36,37,155,180],writabl:37,write:[14,24,34,37,87,94,99,113,136,137,153,174,175,176],written:[14,37,95,109,176],wrong:[33,35,36,37,111,148,149],wrongli:33,x64:[8,27],x86:[27,33],x86_64:[8,20],xcode:23,xml:[33,34,35,36,37,45],xvzf:[20,21,22,23,24,25,26],xxx:[36,37,113,137],yahppo:36,yamada:37,yamaguchi:33,yamamoto:37,yaman:[36,37],yappo:[36,37,38],year:[121,137,139,176],yet:[0,33,36,97,98,99,137,142,159],yito:[35,36],yml:17,yoji:33,yokoyama:[36,37],yoku:[36,37],york:[123,176],yoshida:36,yoshioka:35,you:[0,1,2,3,9,12,13,14,15,16,17,19,20,21,22,23,24,26,27,33,34,35,36,37,41,42,43,45,46,47,49,63,69,70,72,73,74,75,78,79,81,84,86,87,91,95,96,97,98,99,102,103,106,107,109,111,113,115,117,118,119,120,121,123,126,127,128,131,133,134,135,136,137,140,142,143,145,147,150,151,152,154,159,162,164,168,170,171,172,173,175,176,177,178,179,180],your:[0,3],your_db:33,your_github_account:13,your_new_db:33,yourself:19,yuki:[33,37],yum:[8,14,20,22,35],yuya:37,yyi:13,yyyi:[137,139],zenigata:172,zero:[65,69,99,140,145,152,164,170],zeromq:24,zip:[8,18,19],zlib1g:[21,26],zlib:19,zlib_error:164,zsh:24,zunda:33,zxvf:8},titles:["1. Characteristics of Groonga","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to avoid mmap Cannot allocate memory error","11. Development","11.1. Travis CI","12. How to contribute to groonga","12.1. How to report a bug","12.2. How to contribute in documentation topics","12.2.1. Introduction","12.2.2. I18N","12.2.3. C API","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","12.3.1. Repository","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","2. Install","2.1. Windows","2.2. Mac OS X","2.3. Debian GNU/Linux","2.4. Ubuntu","2.5. CentOS","2.6. Fedora","2.7. Oracle Solaris","2.8. Others","3. Community","4. Tutorial","4.1. Basic operations","4.10. Let's create micro-blog","4.11. Query expansion","4.2. Remote access","4.3. Various data types","4.4. Various search conditions","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.7. match_columns parameter","4.8. Prefix search with patricia trie","4.9. Additional information about lexicon for full text search","5. Server","5.1. Server packages","5.2. GQTP","5.3. HTTP","5.3.1. Comparison","5.3.2. groonga","5.3.3. groonga-httpd","6. Client","7. Reference manual","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. groonga command","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.11. grn_expr","7.11.1. Query syntax","7.11.2. Script syntax","7.12. Function","7.12.1. between","7.12.10. now","7.12.11. query","7.12.12. rand","7.12.13. snippet_html","7.12.14. sub_filter","7.12.2. edit_distance","7.12.3. geo_distance","7.12.4. geo_in_circle","7.12.5. geo_in_rectangle","7.12.6. highlight_full","7.12.7. highlight_html","7.12.8. html_untag","7.12.9. in_values","7.13. Operations","7.13.1. Geolocation Search","7.14. Suggest","7.14.1. Introduction","7.14.2. Completion","7.14.3. Correction","7.14.4. Suggestion","7.15. Indexing","7.16. Log","7.17. Tuning","7.18. API","7.18.1. Global configurations","7.18.10. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.18.11. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.18.12. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.18.13. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.18.14. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.18.15. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.18.16. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.18.17. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.18.18. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.18.19. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.18.2. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.18.20. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.18.21. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.18.22. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.18.23. Plugin","7.18.3. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.18.4. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.18.5. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.18.6. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.18.7. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.18.8. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.18.9. grn_expr","7.2. Output","7.3. Command","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.2. Output format","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.3. Request ID","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.3.4. Return code","7.3.5. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.4. \u30c7\u30fc\u30bf\u578b","7.5. Tables","7.6. Column","7.6.1. Scalar column","7.6.2. Vector column","7.6.3. Pseudo column","7.6.4. Index column","7.7. Normalizers","7.8. Tokenizers","7.9. Token filters","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","9. Limitations","Cast","Groonga documentation","News","News in Senna period","Release 1.2.9 - 2011/12/29","Release 1.3.0 - 2012/01/29","Release 2.1.2 - 2013/01/29","Release 3.1.2 - 2014/01/29","Release 4.1.1 - 2015-01-29","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[31,32,33],"1\u30ea\u30ea\u30fc\u30b9":[31,33],"2\u30ea\u30ea\u30fc\u30b9":31,"3\u30ea\u30ea\u30fc\u30b9":31,"4\u30ea\u30ea\u30fc\u30b9":31,"5\u30ea\u30ea\u30fc\u30b9":31,"6\u30ea\u30ea\u30fc\u30b9":[30,31],"7\u30ea\u30ea\u30fc\u30b9":[30,31],"8\u30ea\u30ea\u30fc\u30b9":31,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":6,"\u306e\u66f4\u65b0":8,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":6,"\u30aa\u30d7\u30b7\u30e7\u30f3":[112,113,114],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":10,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":7,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":7,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":7,"\u30b3\u30de\u30f3\u30c9":[113,116],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":71,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":71,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":114,"\u30b5\u30f3\u30d7\u30eb":[112,114],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":114,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":10,"\u30c6\u30b9\u30c8\u65b9\u6cd5":10,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":10,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":155,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":10,"\u30c7\u30fc\u30bf\u578b":155,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[114,166],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":167,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":8,"\u30d0\u30fc\u30b8\u30e7\u30f30":30,"\u30d0\u30fc\u30b8\u30e7\u30f31":[31,32],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":71,"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":8,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":8,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":8,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":8,"\u30d3\u30eb\u30c9\u6642\u306etip":8,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":8,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":8,"\u30d6\u30ed\u30b0":8,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":8,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":155,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":10,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":6,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":8,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":8,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":8,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":8,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":8,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":8,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":8,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":10,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":178,"\u4f7f\u3044\u65b9":114,"\u4f8b":[113,122,124,125,130,132,167],"\u4f8b\u3048\u3070redmin":6,"\u4fee\u6b63":[30,31,32,33],"\u5236\u9650\u4e8b\u9805":114,"\u524d\u63d0\u6761\u4ef6":8,"\u539f\u56e0":167,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":167,"\u540d\u524d":[67,112,113,114,116,122,124,125,130,132,155],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":155,"\u5909\u66f4":31,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":8,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":165,"\u5b9f\u9a13\u7684":33,"\u5bfe\u5fdc":6,"\u5bfe\u7b56\u65b9\u6cd51":167,"\u5bfe\u7b56\u65b9\u6cd52":167,"\u5f15\u6570":[112,113,114,122,124,125,132],"\u611f\u8b1d":[30,31,32,33],"\u6539\u826f":[30,31,32,33],"\u66f8\u5f0f":[112,113,114,116,122,124,125,130,132],"\u691c\u7d22":165,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":165,"\u691c\u7d22\u306e\u6319\u52d5":165,"\u691c\u7d22\u4f8b1":7,"\u691c\u7d22\u4f8b2":7,"\u691c\u7d22\u4f8b3":7,"\u691c\u7d22\u4f8b4":7,"\u6982\u8981":71,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":10,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":10,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":8,"\u7279\u6b8a\u547d\u4ee4":114,"\u7406\u7531":6,"\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9":113,"\u7d44\u8fbc\u578b":155,"\u8aac\u660e":[67,112,113,114,116,122,124,125,130,132,155],"\u8fd4\u5024":[99,116,122,124,125,130,132],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":5,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":6,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":165,"\u95a2\u4fc2\u5f0f":7,"\u95be\u5024\u3092\u3042\u3052\u308b":167,"\u9759\u7684\u89e3\u6790":10,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":165,"benchmark\u547d\u4ee4":114,"benchmark\u5b9f\u884c\u7d50\u679c":114,"boolean":[137,170],"case":72,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":71,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":8,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":8,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":8,"debian\u7cfb\u306e\u5834\u5408":8,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"default":[24,71],"files\u306e\u5b9f\u884c":8,"float":137,"function":[120,137],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":5,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":7,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":8,"grntest\u306e\u6e96\u5099":8,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":8,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":7,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":4,"hat\u7cfb\u306e\u5834\u5408":8,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"homebrew\u306e\u66f4\u65b0":8,"http\u30b5\u30fc\u30d0\u30fc":116,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":10,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":90,"new":[13,29,38],"null":137,"po\u306e\u5b9f\u884c":8,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":8,"release\u306e\u5b9f\u884c":8,"return":[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,118,121,123,126,127,128,129,131,133,134],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":6,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":8,"twitter\u7de8":6,"version\u30d1\u30e9\u30e1\u30fc\u30bf":71,"windows\u5411\u3051\u306e\u5834\u5408":8,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":8,"x\u306e\u304a\u77e5\u3089\u305b":[30,31,32],about:174,access:[159,177],add:13,addit:[137,140,174],adjust:99,administr:[115,177],advanc:99,against:175,aggreg:0,alloc:168,also:[72,73,74,75,77,79,82,84,86,88,89,90,91,92,94,96,97,98,99,102,103,106,107,108,117,126,127,131,133,134,135,140,145,151,152,164],among:175,api:[12,40],appli:69,approximate_typ:123,archiv:26,arg:7,arithmet:137,arrai:137,assign:[73,136,137],authent:159,avail:[115,152],avoid:168,basic:[137,173],benchmark:114,between:121,bigram:176,binari:177,bitwis:137,blog:176,blogroonga:8,bodi:72,brows:115,bug:15,build:[20,21,22,23,24,26,27],built:140,cach:[99,115],cache_limit:75,call:137,callback:7,cannot:168,cascad:84,cast:64,cento:20,chang:38,characterist:[0,151],check:[76,111],clearlock:77,client:[1,177],clone:13,close_tagn:126,code:74,column:[0,28,65,66,67,68,69,123,126,127,136,171,173,175],column_cr:78,column_list:79,column_or_valu:121,column_remov:80,column_renam:81,combin:136,command:[70,71,111,113,118,143,159,173,177],comment:176,commun:2,comparison:[137,159],complet:[147,149],compress:159,condit:[99,136,180],configur:[14,17,24,41,115,159],confirm:13,construct:138,contain:7,contribut:[3,11],control:137,cooccurr:[147,148,150],core:159,correct:[148,149],cpu:159,creat:[69,103,117,173,175,176],custom:159,daemon:177,data:[103,115,119,136,137,147,150,170,176],databas:[159,173],database_path:[118,119],dataset:117,date:170,db_api:7,debian:21,default_token:103,define_selector:82,defrag:83,delet:84,depend:[14,24],desctipion:117,develop:16,direct:115,divis:137,document:[11,14,18],domain:171,down:[115,180],downtim:159,drildown:171,drilldown:[99,171],drilldown_calc_target:99,drilldown_calc_typ:99,drilldown_limit:99,drilldown_offset:99,drilldown_output_column:99,drilldown_sortbi:99,dump:85,each:175,edit:13,edit_dist:122,ellipsoid:123,enabl:14,encod:24,engin:0,equal:[7,136,137],error:[72,168],escal:24,escap:136,exampl:[17,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,117,164,168],execut:110,exit:117,expand:144,expans:179,explicit:136,explicitli:123,express:136,extract:[137,150],facebook:2,favorit:176,featur:142,fedora:22,file:[13,117,119,145,154,159],filter:[99,152],filter_str:134,fix:[29,33,35,36,37,38],flag:[91,103,106,107,164],flow:13,follow:176,format:[72,86,99,139,145,173],free:0,freebsd:154,from:[20,21,22,23,24,26,27,119],full:[0,136,173,174,175,180],gener:[13,14],geo:[0,137,172],geo_dist:123,geo_in_circl:124,geo_in_rectangl:125,geoindex:176,geoloc:[142,176],geopoint:176,get:[118,173],global:41,gnu:21,gqtp:[157,162,164,177],greater:[7,136,137],greater_equ:7,grn_cach:42,grn_column:43,grn_command_vers:44,grn_content_typ:45,grn_ctx:46,grn_db:47,grn_encod:48,grn_expr:[7,49,135],grn_geo:50,grn_hook:51,grn_ii:52,grn_index_cursor:53,grn_info:54,grn_match_escal:55,grn_obj:56,grn_proc:57,grn_search:58,grn_tabl:59,grn_table_cursor:60,grn_table_select:7,grn_type:61,grn_user_data:62,grndb:111,grnslap:112,groonga:[0,3,5,8,13,18,38,113,114,115,116,117,118,119,160,161,162,177],groonga_base_path:115,groonga_cache_limit:115,groonga_databas:115,groonga_database_auto_cr:115,groonga_log_level:115,groonga_log_path:115,groonga_query_log_path:115,group:[136,137],gzip:159,hash:176,hashtag:176,header:[72,164],help:24,highlight_ful:126,highlight_html:127,homebrew:23,how:[3,11,13,15,69,73,138,147,148,150,168,177],html:[13,14,128],html_untag:128,http:[143,158,159,162,177],httpd:[115,118,119,161,162],hypertext:177,i18n:13,improv:[29,33,34,35,36,37,38],in_valu:129,index:[0,28,66,103,138,172,173,175],inform:[174,180],instal:[14,19,24,27,145],instant:0,integ:137,introduct:[14,149],invert:0,issu:[15,177],javascript:180,json:[72,86],just:69,kei:[99,178],kern:154,key_typ:103,keyword:176,keywordn:126,label:99,languag:13,latest:8,latitud:[0,170],launch:118,learn:[118,119,147,148,149,150],learner:119,left:137,less:[7,136,137],less_equ:7,let:176,lexicon:[103,173,174],librari:[0,24],like:180,limit:[28,69,99,145,151,171],line:[118,143],linux:[21,154],list:[2,15,74],liter:137,load:[69,86,115,173,176],localstatedir:24,locat:[0,123,145,172,180],lock:0,lock_clear:87,log:[24,119,139,159],log_level:88,log_put:89,log_reopen:90,logic:[136,137],longitud:[0,170],lz4:24,mac:23,macport:23,mail:[2,15],make:[8,24],manual:39,match:[24,136,137],match_column:[99,131,175],match_escalation_threshold:99,max:[75,121,154],max_bord:121,max_map_count:154,maxfileperproc:154,memcach:177,memori:[154,168],messag:24,message_pack_install_prefix:24,messagepack:72,micro:176,min:121,min_bord:121,mmap:168,mode:[7,106,107],modul:115,modulo:137,mroonga:0,multi:159,multipl:[137,171,175],munin:24,name:[81,103,117,175],narrow:180,nest:175,new_nam:81,nginx:115,nofil:154,normal:[69,91,103,107,140],normalizer_list:92,normalizer_nam:126,normalizerauto:140,normalizernfkc51:140,not_equ:7,now:130,number:[24,99,154],numer:170,object:137,offlin:138,offset:99,old:29,onlin:138,open:154,open_tagn:126,oper:[137,141,173],option:[91,106,107,117,118,119,123,131],oracl:25,origin:137,other:24,output:[13,72,99,143,173],output_column:99,overcommit_memori:154,overview:[0,170],pack:24,packag:[24,26,162],page:99,paramet:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,96,97,98,99,100,101,102,103,104,105,106,107,109,118,119,121,123,126,127,128,129,131,134,154,175],patch:13,path:[24,98,159],patricia:178,per:154,perform:[115,159],period:38,persist:151,person:26,phrase:136,platform:24,plugin:[24,63],point1:123,point2:123,point:137,post:[115,159,176],ppa:26,prefix:[7,24,136,137,147,159,178],prepar:179,primari:178,process:[139,154],protocol:[164,177],proxi:115,proxy_cach:115,pseudo:67,pull:13,queri:[0,99,115,131,136,139,144,177,179],query_expand:[99,131],query_expans:99,query_flag:99,query_str:131,query_typ:164,queryexpandertsv:145,quit:93,rand:132,rang:[103,173],range_filt:94,read:[0,147],record:[99,151,173],recov:111,rectangl:123,red:8,refer:[39,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,69,170,172],regist:95,relat:[99,115,119,175],relationship:172,releas:[29,33,34,35,36,37],remot:177,report:15,repositori:[9,13],request:[13,73,115,118],request_cancel:96,requir:[79,81,91,96,99,106,107,109,118,123,128,131],resolut:172,restart:162,result:[171,173],revers:[115,172],right:137,ruby_ev:97,ruby_load:98,run:[14,177],sampl:[136,137],scalar:68,scope:134,score:99,scorer:[99,180],script:[97,137],search:[0,69,99,136,137,142,147,148,150,172,173,174,175,176,178,179,180],secur:[137,177],see:[72,73,74,75,77,79,82,84,86,88,89,90,91,92,94,96,97,98,99,102,103,106,107,108,117,126,127,131,133,134,135,140,145,151,152,164],select:99,send:[13,177],senna:38,server:[0,156,162,177],set:[115,118],sharabl:0,shift:137,shut:115,shutdown:100,sign:137,similar:[7,137,148],simpl:99,size:164,snippet_html:133,softwar:14,solari:25,solut:168,sort:[171,173,180],sortbi:99,sourc:[20,21,22,23,24,26,27],specif:[115,163,175,176],specifi:[123,173],sphere:123,start:162,statu:[101,117,164],stop:162,storag:0,store:[0,103],string:[91,106,107,137,170],style:99,sub_filt:134,submit:15,substitution_t:131,subtract:137,success:72,suffix:[7,136,137],suggest:[102,117,118,119,146,149,150],summari:[41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,66,68,69,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,115,118,119,121,123,126,127,128,129,131,133,134,140,145,151,152,154],support:142,synopsi:[115,118,119],synopsti:117,syntax:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,121,123,126,127,128,129,131,133,134,136,137,180],tabl:[28,79,81,99,103,106,119,151,173,175,176],table_cr:103,table_dat_kei:151,table_hash_kei:151,table_list:104,table_no_kei:151,table_pat_kei:151,table_remov:105,table_token:106,tag:[103,172,176],target_nam:[87,109],temporari:151,term:137,termin:177,text:[0,136,173,174,175,180],than:[136,137],thank:[29,33,34,35,36,37],threshold:24,time:[137,170,176],todo:[131,133],token:[0,107,152,153],token_filt:[103,107],tokenfilterstem:152,tokenfilterstopword:152,tokenizer_list:108,tool:[24,115,177],topic:11,total:99,tracker:15,transfer:177,translat:13,travi:17,trie:178,truncat:109,tsv:[72,145],tune:154,tutori:169,twitter:2,type:[170,176],ubuntu:26,unsign:137,updat:[0,8,13,14,147],upgrad:159,usag:[66,68,69,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,111,115,118,119,121,123,126,127,128,129,131,133,134,143,145,154],use_html_escap:126,user:176,valu:[75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,108,109,118,121,123,126,127,128,129,131,133,134,176],value_typ:103,variou:[170,180],vector:[69,170],version:159,view:173,weight:[69,175],wheezi:21,who:176,window:27,without:159,work:[13,147,148,150],worker_process:115,xml:72,xor:137,your:13,zip:27,zlib:24}})
1
+ Search.setIndex({envversion:42,terms:{localstatedir:[],four:[135,94,3,148],"\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":151,profil:184,"\u811a\u6ce8":[34,45,168,72],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":167,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":140,your_db:27,grn_fin:5,column_cr:[],"\u65e5\u672c\u4eba":176,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":151,digit:[108,18,148,178,38,80,65],thread_tabl:167,command_vers:[11,3,4,161,32,47,82,172,109,9,36,102],dewangga:77,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":63,"takashi\u3055\u3093\u304c\u5831\u544a":27,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":143,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":154,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":108,"groonga\u306f\u5217\u6307\u5411\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u9ad8\u901f\u3067\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb\u306a\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3067\u3059":97,grn_plugin_win32_base_dir:40,drilldown_output_column:[],asami:125,"\u697d\u3057\u3044billiard":[70,144],accuml:125,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":151,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":113,grn_oper:[113,56,84,121,110],"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":151,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":167,"\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":37,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":53,grn_socket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":97,grn_table_cursor_next:[63,154],here:[40,92,2,71,5,94,95,68,47,48,46,100,101,9,103,10,147,148,106,127,54,58,108,75,12,85,153,14,16,17,115,59,18,90,20,166,150,64,65,22,163,49,23,61,122,161,182,74,170,172,96,78,174,175,176,81,189,83,130,131,38,109,181,133,32,186,136,178,35,188,139,119,84,117],onga:32,china:[75,130],grn_enc_utf8:[63,123],ful:90,"\u4e0e\u3048":70,latitude_in_msec:150,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":134,"\u7a7a\u767d\u3084":97,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,match_column:[],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":167,engi:[153,176],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":177,"\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":27,substr:[181,150],unix:[188,80],txt:[87,38,119],unit:[75,150,31,32,170,172,38],tokenizs:[],music:[44,148],until:[40,114,108,58,19,139,80,119],"\u30d6\u30ed\u30b0":[],grn_op_push:69,relax:139,relat:[],error_messag:135,notic:[6,122,8,97,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":151,thread_title_column:167,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":151,"byte\u9577":[113,79,121],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,"akio\u3055\u3093\u304c\u5831\u544a":154,"\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":79,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":124,grn_obj_reinit:79,cirit:9,no_such_device_or_address:172,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":167,want:[141,90,3,91,46,48,147,100,9,104,188,164,108,75,87,14,58,18,68,165,182,172,77,78,175,176,80,178,129,181,130,131,133,152,38,89],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":36,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":113,"\u30b3\u30de\u30f3\u30c9\u306f":36,type1:153,type2:153,"grnslap\u306f":179,grn_filename_too_long:2,turn:9,grn_read_only_file_system:2,travel:184,grn_geo_point:110,grn_input_output_error:2,enviromn:77,yum:[7,164,129,151,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":79,message_pack_install_prefix:[],groonga_clone_dir:151,moritar:78,wrong:[125,7,169,18,61,77,27,80],"\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":83,"\u63d0\u6848\u3092\u884c\u3046":154,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":146,wing:[7,125],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":167,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":123,vari:[40,66],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":108,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[63,113],hidden:132,fin:53,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":69,rectangl:[],stop_word:[163,46],"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":151,dcmake_install_prefix:101,cancel_request_is_accepted_or_not:103,timeout:[79,19,125],debug:[90,151,6,97,8,9,148,77,80],"obj\u3092lock\u3057\u307e\u3059":79,last_modifi:184,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":70,"akio\u3055\u3093\u304c\u63d0\u6848":154,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":167,ideograph:77,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":154,grn_table_s:[113,69],grooon:131,moritapo:44,gregex:125,grn_no_such_device_or_address:2,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":167,input_typ:58,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":151,"\u79d2":79,"\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":151,ringtail:125,"\u307e\u308d\u3086\u304d":143,libedit:[7,27,188,164,77],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":45,atv:[74,3,130],pagin:3,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":145,confus:[38,178],resource_busi:172,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:151,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":63,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":151,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":97,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":151,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":113,master:[119,9,81],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":108,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":63,listen:[7,172,9,54,102],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,168],kinjir:44,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":151,"\u50241":[36,97],tree:80,second:[108,75,3,181,12,13,184,95,135,74,103,148,78,54,150],project:[0,141,150,151,132,104,88,80,81],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":113,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":167,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":167,boston:184,"db_api\u306f":69,parenthes:3,"\u3050\u308b\u3093\u304c\u6b21\u90ce":44,increment:35,incompat:[7,77,125,80],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":151,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,"0\u306e\u79d2\u8868\u8a18":70,suenaga:77,"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":151,simplifi:[100,125],unknow:80,port_numb:[51,102,172],"10041\u756a":97,"key_type\u306bt":113,object:[],microsecond:[13,148],letter:189,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":167,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":62,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":167,camp:184,incompatible_file_format:172,index_blog:78,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":151,expornenti:150,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,nterm:126,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,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":97,restaur:132,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,172],grn_obj_set_element_info:41,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u306f\u306a\u304f":1,serv:[13,151,80],source_file_nam:135,ff1f:77,createrepo:151,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":45,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],ever:125,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":70,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":45,unexpectedli:125,etim:179,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":45,"description\u306b":144,result:[],respons:[17,2,131,132,125,7,80,103,27,54,172],fail:[22,17,3,181,40,125,7,19,10,27,174,80,65],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":79,best:132,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":36,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":69,wikipedia:45,figur:92,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":167,extend:[78,91,80,178],shidara:27,extens:4,pat_kei:94,accident:125,grn_plugin_realloc:40,column_scalar:[91,12,95,46,47,100,109,127,108,75,150,115,114,70,59,157,44,163,23,122,161,73,182,170,96,78,178,181,130,184,32,136,139],logic:[],countri:[170,102,130],login:139,"808\u4ee5\u4e0a9":45,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":144,"2nd":108,"\u95a2\u6570":177,grn_table_cursor_get_valu:63,assum:[53,103,16],summar:130,duplic:80,grn_search_optarg:[77,56],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":143,"\u306e\u307b\u304b\u306b":45,"\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":27,much:38,salamand:[125,80],res_column:167,"\u30ab\u30f3\u30de":157,worker:[9,125],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,dave:96,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":70,grn_table_delet:113,"\u6bb5\u843d\u60c5\u5831":121,spil:77,"\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":69,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,sen_index_norm:42,"\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":168,"\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,cache_hit_r:[3,4,82,102,9,172],arg_list_too_long:172,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":82,grn_resource_busi:2,simil:150,split:[27,77,38,150,94],big:[9,80],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":70,documents_content_index:[115,32],"\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":167,refin:[132,125],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":82,tune:[],techniqu:[122,12],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":151,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[70,144],"\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":69,out_gqtp:167,users_memo:115,gzip:[],unchang:40,bellow:38,sleepi:114,hai:69,easi:[12,132,54,158,175,80,102],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":167,had:[12,119],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],hat:188,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":69,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":151,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":70,command_nam:102,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":167,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":151,measur:[27,132],specif:[],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\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":73,filename_too_long:172,"\u30d4\u30ea\u30aa\u30c9":73,sebastian:80,underli:132,grn_obj_table_hash_kei:[63,113],right:[],groogna:[7,112,108,101,181],kouhei:125,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,bottom:110,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":120,"146566000x":[184,75],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":151,ichii:27,condit:[],scorer_tf_at_most:[],yoku:[125,80],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":167,grn_builtin_typ:[62,79],grn_cursor_descend:63,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":121,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":134,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,nginxhttpstubstatusmodul:80,"\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":108,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":69,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":69,suffici:40,support:[],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":67,avail:[],width:[27,189],joseph:143,call:[],inv_res_column:167,"\u3086\u304d\u3072\u308d":143,"\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:120,pagerank:[122,28,12],"135960000x":75,arg1_nam:178,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":113,"\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:184,"\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":124,later:[109,23,161,125,47,7,182,27,3,189,80,178],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":113,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":36,exist:[141,3,12,7,100,9,103,150,13,58,61,20,64,125,74,172,96,77,78,80,83,187,38],"object\u578b\u306fv1":45,column_name1:58,column_name2:58,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":105,grn_search:[],"_yyyymmdd":[142,23],role:[132,115],notif:[148,125],intend:[7,182,78,181,80],moero:44,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,grn_ptr_value_at:[84,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":154,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":121,grn_ii_buffer_open:86,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":56,exce:[7,77,125],time:[],push:[119,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":105,chain:182,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[180,34,111,168,67],grn_obj_get_hook:93,netbsd:125,millisecond:[13,131,74,19,150],decid:175,hold:[13,99],"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":154,decim:[13,150],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":177,downtim:[],"257662232kbyte":167,score_adjust_express:108,lru:117,exact:[82,94,108,69,65],"\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":177,grn_plugin_mutex_lock:40,prevent:125,"\u8ad6\u7406\u548c":69,grn_table_group_result:113,index_point:44,sign:[],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":179,"\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:170,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":79,current:[58,3,83,92,119,184,16,17,59,9,27,117,106,65],"\u3053\u308c\u306b\u3088\u308a":151,boost:176,"encoding\u306e\u5024\u304c":27,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":79,"0\u4ee5\u4e0a4":45,modif:77,address:[131,97,7,102,77,27,172],"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":69,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],throughput:[27,54],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],commonli:[132,178],ipa:164,pentium:167,prefer:131,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,62,97,113,79,167,121],mitani:80,instal:[],"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":97,droonga:100,value2:[58,150],value1:[58,100,9,150],neologd:38,peopl:[132,38],grn_default_logger_get_path:7,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":167,enhanc:42,visual:[135,132,125,7,101,77,27,80],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":63,valuen:100,pgroonga:12,"windows\u7cfb":151,genki:125,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":45,improper_link:172,recycl:80,"takahiro\u3055\u3093":154,index_titl:78,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":63,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:151,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":167,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":177,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":143,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":167,date:[],data:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,stdin:112,cannot:[],int64:[45,108,80,125],grn_plugin_charlen:40,i686:167,grn_ja_skip_same_value_put:125,"\u30e6\u30fc\u30b6\u540d":167,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":120,implemnt:191,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":124,instantli:[132,32],grn_obj_init:79,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":190,"\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":151,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,didn:80,separ:[58,108,90,3,4,130,175,95,133,150,46,7,172,153,77,106,38,181],"_dataset":[64,186],operation_not_permit:172,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":79,"\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":151,compil:[27,188,125,80,77],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":113,grn_obj_path:[79,125],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":151,blt:157,internet:[132,158],formula:[165,75],"\u6700\u5f8c\u306e":167,million:66,"\u6700\u5f8c\u306b":70,mime:[77,54],"\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":113,"byte":[40,108,121,35,62,32,16,7,113,172,125,77,27,79,84,53,80],dest_key_s:113,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":41,grn_op_adjust:[56,69],brasil:75,"\u30b9\u30fc\u30d7":144,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,oper:[],grn_logger_reopen:7,onc:[108,130,5,184,7,27,78,189,80],beijin:75,reopen:27,"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":70,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\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":70,open:[],grn_obj_get_element_info:41,convens:7,convent:7,return_cod:[135,148],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,citi:[92,75,184],groonga1:11,conveni:[23,132,187,27,188,176,191],"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":151,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":63,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":79,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":167,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":79,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":36,set_port:167,grn_obj_get_info:41,fumiyasu:27,grn_ctx_set_output_typ:16,"\u307e\u305fgroonga":167,column_list:[],"\u90fd":[70,144,38],sai:[3,150],san:75,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":180,"\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":34,argument:[40,3,12,47,7,100,102,51,75,150,16,115,161,125,182,109,172,27,78,80,178,32],sae:[153,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,drilldown_limit:[],uuuuuu:150,note:[40,3,7,9,103,77,147,54,164,108,109,150,13,65,68,23,165,125,170,27,80,130,131,132,139,102],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,take:[141,49,3,61,95,136,59,103,166,127],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u30cb\u30db\u30f3\u30b8\u30f3":176,noth:[108,97,169,9,61,106,176],grn1:78,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":37,grn3:78,grn2:78,buffer:[86,125,16,126,77,78,79,84],"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":105,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":108,"\u30b5\u30fc\u30d0":97,max_valu:139,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":72,do_gqpt:167,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,"\u4ef6\u6570":108,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":167,grn_lzo_error:2,"obj\u306f":79,xml:[],slow:[94,150,9,178,181],"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":67,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":36,grn_float_valu:77,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":36,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":167,grn_obj_append:79,"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":69,grn_ii_buffer_clos:86,requir:[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":108,aptitud:177,privileg:[102,125],where:[13,2,188],"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":63,"\u7a7a\u767d":97,regexplexicon:178,"namebuf\u306e\u30b5\u30a4\u30ba":[79,121],"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":113,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":73,mani:[141,3,12,94,9,188,54,108,150,85,13,119,122,125,169,27,80,178,181,130,132,32,186,139,88,65,191],"\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":126,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,"\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":41,"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":93,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":53,"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":151,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":41,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":97,score_adjust_expression2:108,score_adjust_expression1:108,msg_id:151,resolut:[],logical_range_filt:[],former:[189,175],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":97,ctrl:[97,3,172],ivh:[164,129],anim:44,set_host:167,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":113,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[34,168],ascii:[38,181,150],hash_tag:184,binari:[],grn_proc_creat:53,"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":151,utf8:[123,188,97],cmake:[7,77,188,101,125],grn_operation_not_support:2,"146710080x":184,"768\u4ee5\u4e0a32":45,"\u5358\u72ec\u306e\u5024":121,wiedenroth:80,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":167,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":179,grn_hook_select:93,"\u6771\u4eac\u90fd":[70,144,38],rest:[40,175],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":167,"\u30cb\u30db\u30f3":176,"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":151,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":113,haystack:69,ruby1:151,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":167,"4096byte":[66,94],around:[92,32],"10043\u756a":97,"\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":144,res1:113,bookmark_index:85,world:[45,38,74,80,125],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:167,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":79,"\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:[188,35,83,132,94,32,16,103,102,61,20,81,175,54,9],yyyi:[148,150],"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":79,"\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":83,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":151,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":83,grn_obj_is_builtin:[27,79],"\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":151,edict2grn:80,definit:[108,75,181,12,182,122,161,32,47,7,115,100,96,109,178,170,150],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":53,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":151,exit:[],ddl:[167,80],refer:[],power:[108,178],"\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":70,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"\u30d3\u30eb\u30c9\u6642\u306etip":[],grn_get_default_command_vers:116,starttim:[3,4,82,102,9,172],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":97,ffef:38,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,neighbor:132,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":151,"flags\u306b\u306f":113,match_escalation_threshold:[],effici:[132,78,85],"\u306b\u3042\u308b":79,agaist:7,charli:184,hex:[44,150],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[27,154],grn_proc_func:[40,53,16],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,bundl:[125,7,115,77,80,119],htpasswd:[9,54],no_kei:94,"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":97,categor:[108,90,46],pull:[],"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"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":69,grn_ctx_get:[121,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":151,preconfigur:[152,129,14,141,164],reqular:131,gone:44,type_of_the_column:182,uid:151,creat:[],"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":97,certain:74,"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":154,grn_id_nil:[63,113,84,16],googl:[108,181,12,122,169,28],grn_select:108,grn_ctx_open:[27,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":151,writabl:80,"\u4e00\u65b9":70,logical_count:[],item_dataset:[186,48],"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":177,vocabulari:3,geodet:[45,74],"debug\u3092\u8ffd\u52a0":154,nagano:80,queryexpandertsv:[],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":151,cpu:[],senna:[],"\u6539\u826f":[],illustr:130,pluggabl:132,"\u521d\u671f\u5316\u3059\u308b":16,scr:167,number:[],"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,grn_obj_set_info:41,too_small_offset:172,tail:[172,151],kosuk:125,webclip:109,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],introduc:[77,88,9,80],candid:[131,153,176],too_many_open_fil:172,"4\u30ea\u30ea\u30fc\u30b9":[],"0\u30ea\u30ea\u30fc\u30b9":[],"yum\u306e\u5834\u5408":151,adjust:[],small:[181,94,125,184,77,150,38,80,65],"flags\u306b":[113,121],"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":120,past:7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":69,pass:[75,3,83,151,181,115,178,9,103,77,27,150,112,102],lexicon_t:167,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":151,section:[40,52,90,142,12,86,95,46,48,101,9,103,147,188,127,160,164,108,75,85,14,58,122,59,18,117,61,178,133,65,162,119,68,23,121,136,24,125,172,185,77,78,175,176,80,81,129,181,130,184,30,31,152,137,139,88,89,50],"log_put\u306f":8,"debian\u7cfb":151,"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":151,coremodul:9,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":11,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":144,hash:[],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":151,table_renam:112,jennif:143,sender:[131,64],grn_column_renam:121,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:44,action:125,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":93,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u6b21\u306bgroonga\u306etest":151,no_such_process:172,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,grn_plugin_mutex_unlock:40,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":167,mecab:[164,129,42,151,132,14,125,7,152,77,27,188,38,80,89],mori:157,morn:114,mecab_new2:7,"lucid\u304b\u3089":154,more:[40,3,143,12,94,95,7,100,9,71,188,54,108,150,85,13,153,16,114,115,18,61,64,65,66,163,122,125,169,172,77,175,80,178,181,182,132,32,184,139,38],yokoyama:[125,80],"\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":69,uint8:[45,154,95,125],"\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":151,function_nam:135,grn_ctx_get_all_t:[77,16],nomal:[7,108,9],cach:[],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":69,uint64:[45,125,80],"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":73,endpoint:[131,64],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:178,learn:[],"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":36,prompt:[7,101,3,4],scan:[177,161,181,47,150],accept:[75,3,91,131,132,172,96,7,74,80,103,35,27,78,184,127,54,150],"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":27,groonga_cache_limit:[],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":167,"search\u3092\u884c\u3044":[63,113],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,177],simpl:[],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":167,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":143,referenc:[108,130,125,7,170,65],bm25:[122,12],grn_obj_get_rang:79,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":168,conditin:181,"\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,"\u521d\u671f\u5316\u6e08\u307f\u306e":83,m64:24,tokenbigram:[],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:161,grn_obj_key_int:62,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,sysctl:[165,139,89],trade:38,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,i386:[27,129,151],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[82,97],"\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":155,grn_query_expander_tsv_synonyms_fil:175,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":154,sauci:[125,80],grn_cursor_rk:63,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":97,grn_bulk:84,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":121,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":124,inada:125,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":151,"\u65e5":38,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":63,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":151,found:[108,110,125,7,169,113,101,188,38],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":93,with_posit:[122,114,163,3,91,12,182,70,184,95,108,32,47,73,115,178,139,78,150,161,181],procedur:[7,125],realli:[150,108,91,181],ftp:167,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":151,ftb:42,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":97,occurr:122,grn_column_index_upd:121,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":45,grn_table_hash_kei:[113,110],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":79,clumn:139,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":167,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":72,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":144,"\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:137,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":143,n_result:113,grn_ctx_use_ql:80,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,113,79,121],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":154,file_corrupt:172,"org\u304c\u30db\u30b9\u30c8\u3092":151,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":121,relationship:[],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":151,grace:77,dpkg:151,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":151,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":154,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":36,"\u307e\u305f\u540c\u6642\u306b":167,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":93,reus:94,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":146,comput:[40,150,12,122,48,7,18,139,176],toybox:13,grn_hook_entri:93,"\u95a2\u6570\u306e\u8ffd\u52a0":1,packag:[],gted:119,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":97,documenataion:135,self:167,also:[],"keybuf\u306e\u30b5\u30a4\u30ba":113,"\u8a18\u53f7":[70,97],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":79,lexcon:3,plai:[132,91],"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":151,table_pat_kei:[],cover:[132,32],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":167,umemoto:27,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,ext:90,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":97,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[113,79,121],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":157,microsoft:101,"\u3057\u304b\u3057":[70,45,144],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":144,cache_limit:[],escape_charact:84,session:[131,172],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":167,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"\u50242":[36,97],solut:[],factor:[108,80],"\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":70,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":151,"\u826f\u3044\u306e\u304b":124,mainten:38,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:113,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":143,column1:[108,69,150,12,125,7,80],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":69,column2:[108,69,150,12,125,7,80],set:[],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[167,97],showen:2,startup:7,grn_obj_is_selector_proc:77,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":154,see:[],"\u306e2\u5358\u8a9e\u6271\u3044":144,sec:19,sea:[90,176],juman:164,grn_column_name_scor:121,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":82,mutex:[40,125],"chroot\u74b0\u5883\u306e":151,javascript:[],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":105,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":154,bodi:[],last:[7,77,90,38,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[70,144],whole:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":167,load:[],"256kib":139,"\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":146,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"5367431640625e":4,devic:132,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":69,nonexist:[108,80],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,searchu0000http:38,shinya:7,funa:80,func:[40,53,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],oldvalu:121,grn_column_name_nsubrecs_len:121,error:[],rep_gqpt:167,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":179,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":167,user_data:[40,53],grn_table_at:[154,113,79,112],needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[77,141],n_builtin_type_nam:83,nanosecond:[135,148],x64:[101,151],grn_result_too_larg:2,shorter:114,"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":179,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":177,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"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":151,alert:[6,97,8,9,148,80],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,stack:125,recent:117,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":60,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":126,person:[],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,do_gqtp:167,construct:[],mysql:[164,108,42,12,85,132,161,14,133,32,47,152,169,189,175,129,80],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":113,parenth:58,grn_tokenizer_error:2,input:[135,108,3,150,125,48,58,169,18,172,27,106,176],format:[],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":45,"\u5f15\u6570\u540d":[36,97],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":70,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":97,encount:[164,129,14,152,101,137],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":63,sampl:[],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":93,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":56,benefit:141,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":69,"56058502197266e":4,machin:80,keyword_cont:84,"aramaki\u3055\u3093":154,"ongaeshi\u3055\u3093\u304c\u5831\u544a":154,wget:[164,129,24,14,152,188],"gqtp\u306e\u5834\u5408":97,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":113,grn_expr_pars:84,grn_cursor_lt:63,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":70,"\u884c\u3059\u308b":151,repair:112,"\u5f15\u6570\u3068\u3057\u3066":69,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,pcre:[7,9],span:[161,109,32,47],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":113,line_numb:135,submit:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":63,suit:[132,32,80],"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[108,181,130,13,7,102,80,150],line:[],int8:[13,45,154,125,80],"10000cent":38,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":167,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":151,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,element1:[150,85],element2:[150,85],element3:85,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":151,parser:[181,178],"char":[40,83,62,123,16,113,79,84,53,80,121],sholud:188,taro:44,logyyyymmddhhmmss:131,invalid:[40,108,131,123,125,7,77,27,80,65],"grn_op_and\u306f":69,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":79,lucid:[154,125],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":144,wrongli:27,ago:176,algorithm:[27,75,117],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":69,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":151,fresh:114,hello:[46,150,108,163,114,38],code:[],partial:[169,69,172,176],"\u7a7a\u306e\u5834\u5408":[37,107],"\u672c\u8a9e":38,send:[],table_list:[],"\u30ab\u30e9\u30e0\u540d1":108,sent:54,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":167,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":93,"\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":113,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":56,tri:[184,19],"\u30ab\u30e9\u30e0\u540dn":108,grn_no_such_file_or_directori:2,"try":[184,19,88,38,78,191],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":151,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":154,"\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":159,video:44,odd:150,"1\u5358\u8a9e\u6271\u3044":144,usage_default_and_custom_scor:12,obvious:13,cenos6:7,let:[],ubuntu:[],layout:151,"\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":79,thatn:108,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,greas:13,ctx:[40,41,69,120,83,79,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"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,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":63,menu:[108,101],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":63,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":151,location_str:184,"200byte":32,firefox:119,"\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":151,"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":108,zip:[],rid_min:120,doubl:[58,108,90,3,181,94,133,125,7,77,27,150,80,65],upgrad:[],next:[44,110,3,132,53,80],doubt:130,"http\u306e\u5834\u5408":97,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":108,src:[13,152],socket_is_already_connect:172,grn_obj_is_function_proc:77,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":69,"\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":167,drill:184,"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":124,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":154,process:[],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":144,high:[132,108,158,85],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":113,"column\u306e\u5024\u304c":69,"128515259x503187188":[44,74],defalt:154,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\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":151,surfac:92,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,alloc:[],essenti:[152,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,seriou:[7,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":167,element:[135,2,3,85,13,32,125,7,80],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":151,allow:[3,132,32,7,152,102,64],okapi:[122,12],posted_bi:184,"centos\u306e\u5834\u5408":151,movi:44,move:[7,87,101,27],lz4:[],sen_sel_term_extract:42,naist:38,comma:[3,150,130,13,58,77],"2st":108,"\u529b":[8,140],yamaguchi:27,perfect:[122,132],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,hobbi:148,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":69,"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[],murakami:[77,125,80],python:[151,20],kisk:7,billiard:[70,144],lzo:[7,27,73,125,80],highlight_ful:[],"\u3053\u308c\u306b\u5bfe\u3057\u3066":144,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":151,grn_file_too_larg:2,bump:[77,125,80],consum:80,meta:[7,95],"static":[27,3,80],grn_too_many_symbolic_link:2,variabl:[40,108,150,24,112,95,125,7,13,172,27,77,175,80],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[82,145,6,72,73,126,8,155,157,159,190,105,37,140,107],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":154,builtin_type_nam:83,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],log:[],"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":177,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":151,could:[7,13],length:[7,40,13],outsid:80,"\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":177,softwar:[],"\u5f15\u6570\u540d1":[36,97],"\u5f15\u6570\u540d2":[36,97],"\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,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":151,index_messag:78,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,vector_column:125,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":126,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":126,"\u30cb\u30db\u30f3\u30b4":176,licens:[7,42,151,80],system:[108,181,24,132,45,14,32,125,114,13,74,9,139,77,27,188,80,150],"\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:94,grn_table_get_kei:113,termin:[],articles2:78,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":60,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":107,itagaki:154,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":70,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":111,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":151,"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":168,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,correspond:[108,23,153,48,169,18,79,176],"\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":151,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":124,satoshi:80,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":154,source_column_nam:77,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":154,highlight_html:[],subject:125,thesauru:108,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,oracl:[],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":134,segment:[7,126,80],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":167,latin1:[7,188],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":154,grn_cursor_by_kei:63,"\u3067\u3059\u306d":124,brew:[89,20],grn_column_name_score_len:121,fact:[44,108],"\u62e1\u5f35\u5b50\u306f":167,dbm:[132,32],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[113,79,121],borderlin:[142,23],"\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":83,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":151,nois:[18,38],freq2:48,freq1:48,freq0:48,jan:184,articles_cont:78,"\u30b3\u30e1\u30f3\u30c8\u884c":167,"\u6a19\u6e96\u5165\u529b":[82,145,72,73,126,155,157,159,37],"\u30b7\u30a7\u30eb\u4e0a":167,"2\u884c\u76ee":167,jiro:44,db1:54,db2:54,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,"\u51e6\u7406\u958b\u59cb\u6642\u9593":108,"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":97,"hat\u7cfb":151,candidate_1:131,"\u4e8c":176,candidate_2:131,"\u4e16\u754c\u6e2c\u5730\u7cfb":45,host_name_or_ip_address:[102,172],"\u99c4\u76ee\u306a\u4f8b":124,grn_obj_lock:79,"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":151,"\u3066\u3057\u307e\u3044\u307e\u3059":124,candidate_n:131,memri:139,encodiong:150,grn_plugin_expr_var_init:[40,80],max_command_vers:[3,4,82,102,9,172],grn_obj_user_data:118,etc:[141,3,151,13,165,7,152,9,139,88,175,54],tld:130,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[62,113,56],"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":113,grn_type_cr:62,zenigata:44,"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":144,grn_ii_buff:86,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,quotat:[90,133],"\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":154,"\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":154,grn_db_create_optarg:83,invalid_seek:172,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":111,grn_cache_clos:17,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":105,spain:75,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":167,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,cve:80,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":60,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":53,site:[44,108,3,130,13,136,74,102,157,158,78,80],archiv:[],"_avg":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":154,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":82,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,output_column:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":146,expans:[],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":79,"dist\u3067\u751f\u6210\u3057\u305ftar":151,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":154,php:[7,151,80],expand:[],off:[27,38,9,80],dinam:158,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":108,exampl:[],command:[],ecmascript:[7,108,158,125,150],"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":155,akira:80,prepend:[150,9,181],web:[44,108,181,153,48,18,9,188],uncontinu:7,end_of_data:172,combind:181,"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":36,broken_pip:172,"185428000x":75,dest:[13,179,97],five:[135,3,96],"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"\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":154,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":126,"\u3053\u306e\u3088\u3046\u306bn":70,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":143,rep_gqtp:167,resiz:40,grn_plugin_regist:[40,146],interact:[3,172],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":97,daylight:80,grn_cas_error:2,avoid:[],"0\u4ee5\u4e0a65":45,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":36,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":27,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":151,stage:80,iwai:[7,112,125],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":145,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":70,"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":79,"\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":167,merg:[7,132,119],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":97,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":151,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":45,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":190,"function":[],cutter_debug:177,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":82,"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b1":[],sigstop:125,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":154,count:[132,108,184,23,44],grn_table_cursor_delet:63,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":45,otherwis:[40,73,3,150,136,17,115,59,100,182,103,96,127,79,170,81],problem:[17,181,13,125,139,7,9,27,77,38,150],yuki:[27,80],"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":151,bigram:[],"int":[40,17,110,120,4,93,86,16,7,25,113,19,121,62,63,79,84,53,83],updated_at:70,jessi:[125,80],redcloth:151,againt:108,inc:80,grn_obj_key_norm:113,grn_int32_value_float_valu:77,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:77,varieti:44,assgin:150,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":134,francisco:75,"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":69,"class":[],"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,quetzal:7,document_version_ful:151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":97,rule:[108,90,80,54],dbmss:132,"scr\u3067\u3059":167,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":97,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":45,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"localstatedir\u3092\u4f7f\u7528":154,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":113,spec:[7,27,125],"\u524d\u63d0\u6761\u4ef6":[],secsion:135,editrc:27,"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":63,"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":27,upload:151,msyql:85,unmanag:126,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":72,"\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":113,entries_local_nam:157,"4byte":172,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":151,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":113,zunda:27,"\u547c\u51fa\u5074\u3067\u6e96\u5099":41,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":97,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":121,"obj\u3092unlock\u3057\u307e\u3059":79,aki:80,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":167,"\u9759\u7684\u89e3\u6790":[],"\u3092\u8ffd\u52a0":[27,154],"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":27,request_cancel:[],total:[],highli:[122,28,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":155,column_remov:[],kytea:[7,90,125,188],search_result:108,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":167,word:[163,175,71,181,12,182,132,158,108,48,7,169,18,184,99,38,176,80,150],exit_failur:5,work:[],era:132,select_opt:150,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"16gb":165,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":167,geo_in_rectangl:[],indic:[75,90,3,125,148],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":167,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":45,basebal:[44,78],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":113,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u540d\u524d":[],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":151,mxcl:151,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":105,u0000http:38,recogn:132,"builtin_type_names\u306b\u306f":83,ahost1:178,after:[3,5,94,47,7,101,102,188,110,150,13,19,20,119,44,163,161,125,27,80,131,139,189,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":144,lat:167,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":79,grn_is_a_directori:2,averag:[108,80],"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,n_queri:[3,4,82,102,9,172],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":154,confiugr:139,opaqu:[17,172],localnam:157,grn_fals:79,too_large_offset:172,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":36,wgs84geopoint:[44,75,130,13,184,45,74,110,102,27],order:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,offici:[27,129,164,151,115],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":120,"3\u30ea\u30ea\u30fc\u30b9":[],grn_default_query_logger_set_path:7,flexibl:[132,158,115],"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":69,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":151,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:121,them:[3,12,13,188,164,108,75,85,87,14,58,19,119,73,74,172,77,178,129,181,84,135,152,139,38],thei:[90,4,12,94,47,48,9,10,148,188,54,58,108,150,85,114,122,18,158,22,24,161,169,174,175,176,181,182,133,32,139,38],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":60,fragment:37,comment_index:184,grn_plugins_dir:77,"break":[7,27,80,61],jinja2:151,deatil:108,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":167,"\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":69,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":144,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":177,owner:[9,125],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":154,network:[7,44,172,54],morpholog:[132,188,38,150],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":93,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":126,"\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":155,standard:[58,45,3,9,172],expnas:175,sequence_dataset:186,"\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":108,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":134,"\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":167,regress:[77,125,80],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":167,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":154,"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":177,independ:132,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,168],"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":151,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":79,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":151,grn_proc_set_selector:80,john:[170,143],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":151,grn_obj_with_sect:121,tokenfilterstem:[],latitude_in_degreexlongitude_in_degre:150,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,target:[90,3,47,7,101,103,188,54,58,108,110,85,13,17,115,20,65,121,161,27,78,79,80,181,83,32,136,84],provid:[141,3,4,12,94,95,48,7,9,54,164,75,5,14,16,115,18,178,52,169,175,176,80,81,129,130,131,132,30,152,187,191,102],shuhei:80,minut:[150,184,74,18,148,176],manner:[108,3],grn_text_valu:84,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"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:[189,175],indexbuf:121,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":60,"\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":124,usernam:[44,101],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":177,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":36,gronnga:169,excut:125,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":124,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":126,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,identifi:170,"column\u306f":121,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,latenc:167,"\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":151,liblzo2:[152,14],keyword2:[7,161],keyword1:[7,161],grn_obj_key_with_si:113,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],awar:40,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":157,suffixsearchterm:[181,150],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[],accord:[13,75],old_release_d:151,res_tabl:167,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":113,address_is_in_us:172,howev:132,"\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":157,grn_obj_check:79,grn_ptr_init:[84,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":105,com:[108,189,3,151,130,13,74,102,104,119,81],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":190,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":151,"\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":167,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":53,"\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":151,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[165,188,102,91],"\u672c":38,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":151,uint16:[45,125],snippet3:32,enginen:176,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":167,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,drilldown_calc_typ:[],"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,inhibit:112,grn_ctx_db:16,gnu:[],properti:[148,14],sourceforg:[151,26],grn_obj_prepend:79,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,aio:125,"\u5165\u529b":[6,105,190,107],adisk:178,cond:125,conf:[165,141,9,139,77],arg2_valu:178,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":177,grn_cach:[],perform:[],"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,"\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:137,descend:[153,108],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":154,"\u6771\u4eac":[70,144,38],unsupported_command_vers:172,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:44,hang:125,evil:150,hand:[108,182,13,132,115,9,78],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,thu:[23,91,132,186,99,74,78,64,80,181],o_binari:7,contact:119,thi:[90,3,4,12,7,9,75,13,14,16,17,18,20,23,24,182,27,30,31,32,38,40,47,48,50,54,164,188,58,59,61,65,52,68,73,74,77,78,79,80,81,83,152,88,117,91,95,97,100,101,102,103,106,108,85,115,121,122,161,125,127,129,130,131,132,133,135,136,137,139,142,147,148,150,160,162,46,165,172,96,174,175,176,178,181,183,184,185,186,89],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":151,"_score":[3,12,48,7,27,108,75,150,85,153,70,18,60,44,121,122,125,74,77,78,176,184,115],no_such_devic:172,"table_list\u306f":105,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":144,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":154,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"\u8ad6\u7406\u7a4d":69,grn_ctx_per_db:[27,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u306ebase_version\u306e\u66f4\u65b0":151,scan_build:177,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":105,grn_op_but:69,night:[114,91],grn_column_name_id_len:121,grn_plugin_command_cr:[40,80],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":62,famili:[90,150],"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":190,tokenbigramsplitsymbolalphadigit:[],grn_obj_renam:79,tasuku:[77,42],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":144,overcom:23,grn_text_len:84,grn_pvector:[84,16],shift_ji:[188,38],grn_inappropriate_i_o_control_oper:2,repositori:[],post:[],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":167,obj:[41,79,83,93,126,56,84,53,118,121],comment2:78,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":179,zxvf:151,"\u3068\u306a\u308a":70,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":124,"float":[],bound:80,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":144,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:177,accordingli:9,wai:[0,4,130,85,132,158,125,7,115,9,184,88,78,64,80,91],"hiroshi\u3055\u3093":154,conbin:[108,158],"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":34,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":121,event_dataset:[64,186],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"true":[1,145,3,91,12,6,95,163,47,136,46,100,103,10,147,109,127,107,114,108,75,150,85,13,190,58,115,59,155,143,65,22,44,68,23,122,161,72,125,168,73,182,74,170,96,78,174,80,178,181,130,184,32,34,8,189],"\u4e00\u822c\u7684\u306b\u306f":79,maximum:[66,108,23,150,12,13,165,96,172,35,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:42,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[82,145,6,72,73,126,8,155,157,159,190,105,37,140,107],fedoraproject:129,score1:69,score2:69,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":167,expresss:158,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":97,test:[164,129,3,177,151,13,184,14,167,7,152,101,9,137,77,78,38,80,102],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":154,memos_tag:100,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,insensit:[108,178],scorer:[],outdat:80,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:80,masaharu:[7,112,125],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":124,global:[],"s3ki\u3055\u3093":154,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":124,"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":69,hubeni:75,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":167,graph:132,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":143,takiuchi:125,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":97,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":69,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":143,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":41,octob:80,"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":157,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":73,administr:[],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":79,grn_obj_unlink:[79,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":151,"4gbyte":66,upper:[27,3,80,65],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:74,"groonga\u3084mysql\u306erpm":151,cost:[114,38],admin_html:[27,97],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":118,tables_buff:16,appear:[108,90,3,175,12,132,32,2,150,38,80,181],"\u7def\u5ea6\u306f":45,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":124,"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":151,gener:[],satisfi:[58,77,125],minagawa:[125,80],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":167,redmin:80,table_hash_kei:[],trial:132,"\u305d\u306e\u969b":151,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":97,behav:[131,75],"\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":168,"\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":63,regardless:77,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u691c\u7d22\u7d50\u679c":108,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":177,output_typ:[36,4],should:[40,7,101,164,108,150,85,14,16,58,18,20,65,172,127,175,81,129,181,35,152,137,189,84],mobil:132,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,httpd:[],grn_dat:27,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":79,"648\u4ee5\u4e0a2":45,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],key_typ:[],furigana:153,"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":151,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":177,"_sum":108,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":151,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":79,prepar:[],grn_table_sort_kei:113,grn_illegal_byte_sequ:2,can:[2,3,4,5,7,90,9,10,75,12,13,14,16,17,18,19,20,22,23,182,27,30,32,35,38,40,92,46,47,48,54,164,188,58,59,61,65,44,68,73,74,77,78,80,81,83,84,152,89,0,94,95,97,99,100,101,102,103,106,108,109,85,112,114,115,117,119,122,161,125,127,129,130,132,133,135,139,141,143,147,148,150,153,158,160,163,165,169,172,96,174,175,176,178,181,184,187,189],clearlock:[],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":27,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":113,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,topic:[],abort:80,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":97,occur:[73,110,91,153,135,125,16,7,59,139,77,175,80],"\u30c6\u30b9\u30c8\u306f":177,multipl:[],mpaa:96,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,82,102,9,172],write:[108,142,181,184,97,99,136,178,20,76,78,188,112,80,150],grn_table_select:[],familiar:130,flanc:75,grn_cursor_ascend:63,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":126,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":69,"rb\u3092\u8ffd\u52a0":154,grn_too_many_open_files_in_system:2,favorit:[],grn_plugin_log:40,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,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":126,approv:80,increas:[108,90,85,122,132,75,49,147,139,166,38,178],tagger:132,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":151,still:[87,125,59,103,80,119],ieee:45,dynam:[112,132,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":69,"\u8a9e\u306e":38,non:[135,108,181,125,7,61,38,150],loaded_valu:68,recal:[132,38,158],rake:151,col2:79,col3:79,col1:79,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":113,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,half:189,alisa:115,now:[],discuss:[0,26],nor:108,introduct:[],drop:[7,27,125,80,77],u0000ful:38,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":105,"\uff4d\uff59\uff53\uff51\uff4c":[161,47],januari:[131,150],grn_encod:[],domain:[],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":151,"takahiro\u3055\u3093\u304c\u5831\u544a":154,significantli:132,year:[184,96,150,148],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":151,shown:[3,150],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":121,space:[40,108,90,3,181,85,132,133,125,48,58,27,38,178],acccess:141,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":167,"\u307e\u305f\u901a\u5e38\u306f":45,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":151,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":45,"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":121,grn_db_kei:112,care:[108,23,181,122,95,176,119],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":151,couldn:7,arnaud:27,ohzeki:80,"175904000x8464000":75,british:91,grn_ctx_get_match_escalation_threshold:25,directli:[184,150],with_check:[133,80],yourself:137,column_n:182,size:[],silent:81,bookmark:85,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":151,friend:[44,88],column_3:182,column_2:182,column_1:182,kenichi:[27,154],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,grn_geo_cursor_next:110,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":45,"\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":69,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":79,than:[],n_keyword:84,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":144,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5dee\u5206\u3092":167,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":53,browser:[188,102,119],fork:[97,119],grn_column_trunc:[121,80],allow_column:[108,181],your_new_db:27,"txt\u306e\u5185\u5bb9":151,recover:[83,61],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":79,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":105,"\u3059\u308b\u3068":177,begin:[179,38,178],"6813819x139":[13,74],"\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":97,price:13,renam:[3,94,125,7,59,27],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\u3068\u308a\u3068\u3093":[181,150],"6909211x139":74,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":124,column_renam:[],"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":126,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u3053\u306e\u3068\u304d":144,concurr:148,"\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":113,pakcag:164,onli:[40,92,141,2,3,5,94,47,7,90,101,9,103,147,150,106,78,54,58,108,109,12,136,13,153,14,17,115,61,178,65,164,122,161,114,182,74,170,117,96,28,175,80,81,129,189,181,127,132,32,152,137,119,38],"\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":70,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":69,"\u3050\u308b\u3093\u304c":[181,150],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":154,"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:74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"128mb":7,allow_pragma:108,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,error_loc:135,"configure\u306e":27,sport:44,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":60,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[135,139,108,181,150],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":126,between:[],"import":[90,12,99,7,9,188,54,108,151,85,16,17,65,122,125,27,28,175,181,132,31,38],"\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":151,pthread_:125,"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":70,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":83,instroduc:125,nearbi:132,"\u305f\u3068\u3048\u3070":144,tutori:[],grn_encoding_pars:123,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":151,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":151,grn_too_many_link:2,exploit:132,"debian\u7cfb\u3082\u3057\u304f\u306fr":151,rebuild:77,invers:[122,80,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[41,79],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":179,emphas:109,rubi:[68,42,151,12,85,132,161,47,7,158,147,178,80,81],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":97,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":79,"edge\u306fctx\u3092\u542b\u3080":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":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,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":151,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":34,nnede:139,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,develop:[],"ueno\u3055\u3093\u304c\u5831\u544a":146,media:80,epoch:[13,184],document:[],do_loc:167,finish:[148,103,5],"\u5225\u9014deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u6700\u65b0\u7248\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":151,someon:184,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":126,eito:125,repoforg:[7,129],theater:91,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,appveyor:80,key_nam:108,"_post":151,sentens:77,touch:139,speed:[27,169,94],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":97,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,isssu:125,mmap:[],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":27,"\u30ad\u30fc":97,grn_plugin_proc_get_var:[40,80],real:[132,32,139],swig:42,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":167,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":97,"\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":108,invalid_argu:172,"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,cascad:[],output:[],unsplit:[108,69],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":113,index_friend:44,"\u51e6\u7406\u6642\u9593":108,logical_filt:142,"146249000x":184,refresh:44,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[145,6,72,8,155,190,107],name2:150,"\u30d9\u30af\u30bf\u306e\u5024\u3092":154,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"\u306e\u5834\u5408\u306f":124,tomoatsu:[7,154],unicod:189,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":167,grn_bad_file_descriptor:2,comparison:[],central:184,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":97,degre:[13,27,74,150,85],backup:[83,157],processor:[164,132,129,14,152],unregist:[22,174],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[143,151,70,144,167,157],insuffici:13,your:[],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":179,ngx_http_proxy_modul:9,area:132,aren:[92,108,181,94,32,7,9,139,77,80,54,65],start:[],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":45,lot:125,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":167,submiss:[153,18,176,48],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":168,ealier:7,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":108,"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":167,immedi:[132,9,103,77],grn_not_socket:2,"default":[],"\u6a19\u6e96\u5165":[8,140],"\u3068\u5171\u306b":121,"\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":70,multibyt:27,data_set_nam:153,grn_obj_unlock:79,decreas:[77,38],"table\u306ecolumn":113,value_1:[3,102],value_2:[3,102],valid:[108,3,181,13,94,125,48,7,27,80,150],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":93,grn_obj_add_hook:93,you:[2,3,4,5,7,90,9,10,75,12,87,14,16,17,19,20,22,23,182,27,28,31,32,35,38,40,92,13,46,47,48,54,164,188,58,59,61,64,65,44,68,73,74,77,78,80,81,83,84,152,88,89,0,91,94,95,97,26,100,101,102,103,104,106,108,109,85,112,115,117,119,121,122,161,125,127,129,130,131,132,133,135,136,137,139,141,142,143,147,150,153,158,160,162,163,165,170,172,96,174,175,176,178,181,184,186,187,189],string2:111,string1:111,poor:175,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":63,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":79,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,reduc:[141,91,132,125,7,18,94,77,54,178],"n_builtin_type_names\u306b\u306f":83,naoya:[77,125,80],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":126,"\u3092\u683c\u7d0d\u3057\u307e\u3059":121,drilldown_offset:[],month:[148,44,150,184],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":151,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,articl:78,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":167,zlib_error:172,mechan:[7,9,54],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[58,108,181,12,44,132,161,32,47,7,94,135,178,176,54,150],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":121,patsuffix:143,atsushi:[77,80],query_flag:[],masafumi:[125,80],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":69,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":126,"\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":41,groonga_dir:151,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":144,"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":167,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":113,learner:[],"\u95a2\u6570\u306f":[34,111,69,168,67],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":126,naoina:[7,125],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":167,too_many_symbolic_link:172,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":179,snippet1:32,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":63,snippet2:32,ultra:44,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":93,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":177,score_1:131,score_2:131,hoge:[97,111],normallexicon:189,"1024r":151,"\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":151,"\u30c8\u30e2\u3061\u3083\u3093":44,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":79,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":151,bash:[77,188],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,fulltext:[164,92,108,90,181,115,94,161,14,30,47,32,152,150,78,189,129,141,65],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:27,score_n:131,cutter_dir:151,histori:27,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":155,user_input:150,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":83,grn_db_int:79,phrase:[],"0mq":125,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":118,anoth:[7,132,108,175,84],spreadsheet:175,snippet:[7,42,32,125],grn_expr_syntax_escap:84,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":151,"\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":97,unlink:84,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":36,grn_obj_compress_lzo:121,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":143,grn_table_group:113,egg:78,narwhal:27,logrot:[7,80],akinori:77,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":151,help:[],grn_ii_estimate_size_for_lexicon_cursor:77,grn_proc_funct:40,soon:[92,32,54],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,paramet:[],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":154,systemd:7,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":151,"\u5024\u306e\u7bc4\u56f2\u306f1":60,shimada:7,comments_cont:78,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":69,"\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":167,range_error:172,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":108,"groonga_org_path\u306bgroonga":151,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":151,fulli:[7,9],yito:[7,125],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":45,heavi:108,grn_column_nam:121,"\u30b9\u30ec\u30c3\u30c9\u6570":167,"\u30d5\u30a1\u30a4\u30eb":151,todo:[],event:54,"\u3080\u308b\u3093\u304c":[181,150],"http\u30b5\u30fc\u30d0\u30fc":[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":151,proxy_pass:9,publish:[151,80],"\u691c\u7d22\u5bfe\u8c61\u306e":70,trusti:[14,151,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":73,"shutdown\u306f":140,textil:151,"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:[129,151],asc:151,reason:[108,150,130,165,141,7,61,178,38,176,54,65],base:[141,90,12,47,48,7,9,103,188,164,108,110,150,14,18,64,119,122,161,125,183,176,80,129,181,131,132,32,152,184,191,38,102],grn_ctx_fin:[7,16],put:[181,122,139,119,80,178],"groonga\u53ca\u3073groonga":167,rect:[7,75,168],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":167,assign:[],grn_obj_get_valu:[27,79],"\u4fee\u6b63":[],"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:125,miss:[125,7,77,27,175,80],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":113,conditional_probability_threshold:[27,153],station:[92,74,184],zeromq:188,schema:[12,47,100,108,75,150,114,115,18,23,122,161,182,109,96,78,178,181,32,186,170,139],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":154,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,"max\u3068common":63,grep:[152,129,14,164],jqueri:80,"\u4efb\u610f\u306edb\u540d":167,str:84,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":79,"windows\u5411\u3051":151,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"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":113,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,lib:[22,141,154,125,9,61,10,174],"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":151,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,elapsed_tim:[135,148],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":177,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,80],tokenbigramsplitsymbol:[],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":177,grn_proc_get_typ:80,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,clear:[121,151,7,136,27,79,80],grn_too_many_open_fil:2,clean:[77,177,151],newvalu:121,weight_in_weight_vector:85,usual:[13,78,64,16],grn_ctx_t:2,pretti:80,"\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":151,wanab:125,yml:81,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":154,grn_connection_refus:2,max_siz:63,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":177,"\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":167,grn_get_default_encod:123,grn_obj_compress_zlib:121,similar_search:[7,153],"\u68ee\u7530":44,"\u82b1\u5b50":44,grn_hook_get:93,doc_bodi:91,"\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":151,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":108,grn_obj_is_lock:79,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":70,resource_deadlock_avoid:172,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":73,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":167,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":73,isob:125,numer:[],no_locks_avail:172,both:[3,94,101,71,54,164,108,150,85,14,114,122,73,74,172,77,176,178,129,181,184,32,135,152,137,132],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,97],condition2:150,condition1:150,"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":154,jeff:143,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":113,"000x":119,too_small_limit:172,header:[],"\u623b\u308a\u5024\u3067\u3042\u308b":120,linux:[],tokenbigramignoreblanksplitsymbol:[],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":167,stamp:[148,18,176,48],"\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":69,"null\u306a\u3089temporari":83,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":107,grn_table_sort_desc:113,geo_in_circl:[],"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,168],grn_table_cursor_get_kei:63,coordin:[13,75],unpatch:42,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":168,"while":[114,90,132,125,7,136,59],"\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":97,grn_zlib_error:2,grn_column_name_value_len:121,loop:[7,80],pack:[],malloc:80,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":167,readi:[108,150,7,178,20,188,181],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":116,fedora:[],belong:[71,130],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":36,grand:184,octal:150,"\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":79,src_kei:113,imagin:[108,130],optim:80,grn_set_default_match_escalation_threshold:25,temporari:[],user:[],"takuto\u3055\u3093\u304c\u5831\u544a":154,bob:[108,181,184,115,59,9,96,127,54],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\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":97,input_output_error:172,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":113,nise_nab:80,"\u30af\u30a8\u30ea\u306e":70,recurs:[108,151,136,9,104,175],"56880000x":75,nginx:[],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":113,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":124,address_is_not_avail:172,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,grn_table_sort:113,signal:80,resolv:[12,85,122,7,27,28,37],elaps:[150,131,135,148,27,4],"32bit":[77,125],popular:[77,108,85],update_buffer_s:86,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":113,creation:[27,3,125],grn_obj_db:83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":37,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":167,"\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:150,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":36,entry_bodi:73,run:[],stem:[152,163,14,80],step:[3,13,48,101,178,188,119],"\u3082\u3057test":167,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":70,grn_no_memory_avail:2,idf:[122,80,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":120,block:[13,150,9,125,65],libzmq:[152,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[69,84],within:[184,74,18,176],ensur:18,grn_obj_key_uint:62,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":151,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,nokubi:80,askmonti:80,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":113,properli:[7,77,102,181],"\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":27,pangolin:[7,14],tokenbigramignoreblanksplitalpha:38,hereaft:132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":151,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,info:[6,97,122,8,9,178],utc:[135,150],"0xc7":172,utf:[42,4,131,125,189,7,188,38,150],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"\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":167,munin:[],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":69,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":167,"_max":108,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":167,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":123,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,doesn:[40,92,90,91,12,94,95,7,9,103,188,54,108,150,114,59,18,19,65,163,122,125,96,77,175,176,80,178,181,32,135,139,189,38,191],repres:[44,91,13,97,158,178,84,150],"homebrew\u306e\u66f4\u65b0":[],before_instal:81,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":151,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":79,pronounc:158,titl:[44,108,3,181,12,111,13,125,136,122,102,182,151,78,130,28,80,150],drilldown_calc_target:[],accross:7,grn_ctx_close:[27,80,16],orangain:125,sigcont:125,ooo:94,draw:44,"groonga\u5358\u4f53\u3067test":167,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":79,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":124,eval:147,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":151,kawaji:7,hash_index:184,groonga_org_path:151,"\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":[177,151],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"146741340x":184,ruby_script:147,friendli:7,nippon:176,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":167,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":144,"\u5185\u90e8\u7684\u306a\u5909\u66f4":151,button:[7,125,119],definion:150,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":143,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,download:[164,129,151,24,14,152,101,188,89],click:108,grn_obj_decr:79,onigmo:[77,80,178],experiment:[142,47,7,103,27,147,17,61,68,23,122,161,125,77,174,112,80,178,83,183,133,32,38],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":151,"\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":83,becom:[13,132,42,75],accessor:113,convert:[2,150,13,94,184,189,80],convers:[27,9],blogroonga:[],"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":167,chang:[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":60,danger:[136,59,83,54,121],grn_plugin_mutex_clos:40,"boolean":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,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":108,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":[145,72],remaind:150,mismatch:80,about:[],"23t02":150,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":151,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":154,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":113,"shibuya\u3055\u3093":154,retriev:[132,108,150],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":151,min_siz:63,meet:[184,74,80],mitsuhiro:154,control:[],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":168,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":151,sudo:[164,129,151,24,165,14,141,7,152,102,20,139,188,177,89],directory_not_empti:172,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":73,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":154,lifecycl:81,narg:84,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":121,"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":151,tokenregexp:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":113,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":151,"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":144,syscal:80,otehr:65,normalizernfkc51:[],table_token:[],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[79,121],"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":69,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,sysconfig:141,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":154,"\u3053\u306e\u5834\u5408":63,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[113,79,121],grn_plugin_proc_alloc:40,read_only_file_system:172,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":151,handl:[2,13,94,125,16,9,165,139,38,80],auto:[7,153,80],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,succeeded_or_not:[136,59,170,127],"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":151,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":151,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":167,column_information1:95,column_information2:95,"\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":70,"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":82,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":167,chunk:[165,139,126,77],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":177,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":167,special:[108,2,3,181,161,32,47,125,135,172,90,19,178,188,84,119],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":167,"\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":69,suitabl:[108,12,122,94,114,38,80,65],grn_geo_estimate_in_rectangl:[27,110],new_vers:151,"quit\u306f":159,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[63,121],manipul:158,grn_match_escal:[],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":167,latitude_in_msecxlongitude_in_msec:150,keep:[66,114,85,16,17,27,38],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":154,geometri:27,largetext:94,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":177,grn_cursor_by_id:63,"scorer\u306f":108,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":155,buf_siz:[113,79,121],"groonga\u30b3\u30de\u30f3\u30c9\u306b":154,mkdir:157,attach:[163,189,119],"\u7d44\u8fbc\u578b":[],"\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":151,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[70,36,45,167],"final":[40,108,9,5,85],fuzzi:65,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":151,exactli:165,"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":184,"groonga\u306f":177,beg:[38,178],sequence_queri:186,extrct:150,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":151,concatin:[7,131,125],logs_20150205:23,logs_20150204:23,logs_20150203:[142,23],tabl:[],"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[113,121],border:[7,90,96],"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,grn_obj_search:56,"0x08":172,"0x04":172,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":154,"0x01":172,"0x02":172,"\u30ed\u30b0\u3092":151,ifexist:58,singl:[108,90,3,85,133,125,58,80],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":108,"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":168,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":151,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":79,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,kazuhiro:125,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":36,url:[27,80,54,157],uri:9,grn_table_upd:113,fontain:27,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":113,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":63,grn_index_cursor:[],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":179,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,ssssss:148,object_corrupt:172,"146867000x":184,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,grn_obj_is_proc_proc:77,launchpad:[14,151,80],"\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":167,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[105,97],"\u3053\u308c\u3067":151,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":70,"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":79,enabl:[],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":151,"masahiro\u3055\u3093":154,gram:[132,90,3,150],"output_columns\u304b\u3089_value\u3092\u524a\u9664":154,contain:[],sho:[125,80],"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":70,orphan:125,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":69,korea:130,scorer_tf_idf:[],statu:[],correctli:[7,3],wibowo:125,tend:78,state:[7,75,172,170],grn_retry_max:2,all_record:7,kei:[],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,regular_express:178,"\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":120,eclips:119,"\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":70,admin:[7,27,154,125,80],jersei:184,polici:125,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"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":124,cutter_source_path:151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u30b9\u30ad\u30fc\u30de\u3068\u7279\u5b9a\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30c7\u30fc\u30bf\u306e\u307f\u51fa\u529b":157,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":79,"\u5185\u8a33\u306f":70,"\u304c\u3042\u308a\u307e\u3059":[36,151],quit:[],addition:[77,74],cent:38,quiz:44,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,treat:[92,108,90,23,150,142,125,7,18,77,176,80],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[145,6,72,8,155,190,107],downcas:189,"\u65e5\u672c":[38,176],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":108,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":105,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":113,delimit:[90,13,132,125,48,77,38],replic:12,"12gb":165,glossari:81,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":27,longitude_in_msec:150,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":53,demo:44,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":70,welcom:[108,181,87,184,26,150,88,119],grn_table_cursor_t:63,"\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":70,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":155,crch:90,entry_selector:155,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":70,nsubrecs_column:121,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":151,"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":70,effect:[7,58,97,184],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,rpmforg:129,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],grn_post:[110,120],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,operation_would_block:172,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":79,lcov:177,distanc:[92,75,150,132,7,74],koi8r:[7,188,97],remove_blank:133,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":79,"log_reopen\u306f":190,bc009774:151,patricia:[],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":151,grn_ctx_get_command_vers:16,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":45,"\u3067\u533a\u5207\u308a\u307e\u3059":97,logger:7,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":56,int32:[3,12,45,48,7,127,108,75,150,85,153,70,59,18,44,122,125,74,96,78,176,80,181,130,184,115],ryoji:80,pikonyan:44,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":60,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":167,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":126,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":167,dat_kei:94,tomita:154,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":179,grn_file_corrupt:2,necessari:[27,3],"\u4e0b\u8a18":63,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":154,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":167,use_offline_index:112,revers:[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[179,97],"436218z":150,out_http:167,home:[188,38,151],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":73,index_column:80,nihon:176,estim:[165,110,77],grn_obj_key_float:62,grn_obj_remov:[27,79],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"10t13":[18,176,48],win64:101,"\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":167,grn_geo:[],offset:[],"blog_body\u7d22\u5f15":70,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":167,due:[132,32],empti:[108,181,95,125,77,27,80],f10399c0:151,groonga_query_log_path:[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":146,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":97,museum:184,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":167,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":97,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":144,gronga:[169,175],overflow:[13,27,125,80],ear:90,"string\u306b":69,"\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":69,fullwidth:77,displai:7,limit:[],"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,"\u611f\u8b1d":[],"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,evalu:[150,181,125,182,147,38,178],kanji:38,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":154,eric:96,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":79,blog1:78,blog2:78,new_valu:108,futur:[68,75,23,85,133,125,172,147,27,54,178],rememb:108,halfwidth:189,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":63,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,sphinx:[87,15,119,80,20],katagiri:125,table_remov:[],"\u3068\u540c\u3058\u610f\u5473":97,max_concurr:179,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":180,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":124,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],whose:[3,150],accur:[132,32],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":151,grn_io_vers:80,"0x20":181,escaped_queri:84,kentaro:125,swap:139,"\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":34,"void":[40,83,5,123,113,25,116,19,63,79,112],voic:189,is_anim:13,affect:[7,77,125,80],"\u306f\u7121\u52b9\u3067\u3042\u308a":63,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":154,demerit:94,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":97,correct:[],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":168,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":151,"10m":9,batch:7,"10z":150,"\u30b0\u30eb\u30fc\u30d7\u5316":60,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":167,even:[164,129,23,150,122,132,14,125,7,152,101,137,78,176,80],"\u3064\u307e\u308atest":151,neg:[40,108,2,16,7,19,53],spokesman:88,"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":151,"\u3050\u308b\u3093\u304c\u592a\u90ce":44,"new":[],net:[44,3,151,130,13,26,74,102],maverick:27,metadata:[68,12,122,184,7,147,28],elimin:125,abov:[3,91,48,7,100,101,9,103,188,108,109,115,18,119,23,182,74,96,77,78,175,176,81,189,130,131,184,65,38],never:[153,188],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":167,met:182,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":97,grn_log_level:40,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":151,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":79,jame:143,sji:[188,42,97],serch:[153,18],yamada:80,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":108,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":179,grn_expr_exec:[84,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":167,"\u826f\u3044\u4f8b":124,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,"\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":70,concret:[44,78,130],overhead:[141,80],typo:[125,7,18,27,175,176,80],recommend:[164,108,3,181,141,14,129,54,135,152,100,101,102,137,139,178,38,80,150],"\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":70,type:[],readm:[125,151],"\u554f\u984c\u306fgroonga":167,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":79,warp:80,warn:[108,6,97,125,7,122,8,9,148,112,80,178],"\u4ee5\u4e0b":167,"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":70,setup:[119,125,81],neolog:38,akio:[7,27,125],root:[36,97,9,125,102],give:[132,115],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":69,"\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:179,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],unsign:[],rid:86,recov:[],log_level:[],quot:[90,3,181,133,125,58,150],updag:7,config:[1,97,7,101,27,188],grn_arg_list_too_long:2,sitedomain:[102,130],geoloc:[],"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,permission_deni:172,third:[13,95,108,150],maintain:38,grn_text_printf:80,"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":70,romaji:176,"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":124,"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":151,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":83,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":72,washida:125,keyboard:108,copyright:80,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":168,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":111,better:[132,78,108,80,150],persist:[],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":63,html_untag:[],"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":154,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":168,leaner:64,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":151,grn_exec_format_error:2,cache_previ:17,side:[7,132,108],mean:[40,92,2,142,95,97,7,90,9,103,148,3,188,108,106,150,85,13,153,19,23,122,165,125,182,74,110,77,175,176,80,178,181,130,84,136,139,189,38],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:44,blog_comment_index:182,grn_obj_compar:79,extract:[],"hiroshi\u3055\u3093\u304c\u5831\u544a":154,content:[40,12,95,9,54,108,109,150,114,115,44,163,125,182,172,27,78,80,181,184,32,135,139],rewrit:42,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":63,situat:108,ncpu:89,mdev:77,lzo_error:172,"\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":154,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:178,iso:150,isn:[95,7,9,147,188,108,153,16,58,18,65,68,125,169,172,77,175,176,80,129,181,32,135,38,117],wgs84geoppoint:110,cpuinfo:[152,129,14,164],plugin_regist:[],grn_snip_clos:80,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":70,hook:81,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":167,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":154,sometim:80,"\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":144,grn_cache_get_max_n_entri:17,iptabl:[102,54],"\u5358\u4f4d":[62,168],direct:[],"80ghz":167,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":124,mkostemp:80,"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":108,fullfil:141,keyword:[],older:[77,184],grn_expr_get_var_by_offset:84,modern:184,mind:66,mine:132,"\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":27,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":157,regular:[],tradit:[132,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":167,don:[3,4,12,95,48,9,27,106,54,17,108,188,150,85,16,58,65,122,172,77,28,175,80,189,181,84,136,137,119,38,102],doc:[91,151,87,20,125,7,9,27,77,112,80,119],"\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":70,doe:[108,3,181,85,13,132,125,7,182,9,61,153,141,150],musha:77,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":45,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":124,keybuf:113,"\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":167,syntax:[],"\u65e5\u672c\u8a9e":176,yoji:27,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":97,"\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":126,folder:101,custom:[],cosmo0920:[125,80],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,stop:[],grn_plugin_fin:40,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":151,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:125,bar:65,reload:175,bad:[132,125,80],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":72,veres:54,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":167,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":167,old_releas:151,"\u5b9f\u884c\u3067\u304d\u307e\u3059":151,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,item_:153,brazil:130,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,grn_function_not_impl:2,simplest:[132,188,12,35],illegal_byte_sequ:172,attribut:[90,109,49,133,166],nfkc51lexicon:189,threasd:97,"\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":97,"100x150":34,"\u534a\u5f84":168,str_ptr:40,"takuto\u3055\u3093":154,replied_to:184,key_length:172,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":70,string_liter:80,"\u6539\u884c\u6587\u5b57\u306f":97,against:[],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":177,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":[],grn_op_cal:69,grn_expr_var:[40,53],g721d5c7:82,grn_obj_clos:[69,120,80,79,16],three:[108,75,23,130,85,13,161,125,135,122,59,18,158,3,78,176],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":151,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":70,interest:[88,3,178],basic:[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":151,suppress:[7,112,80],"2\u30ea\u30ea\u30fc\u30b9":[],multithread:103,servic:[141,132,125,7,18,139,80,81],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":83,calcul:[92,108,75,131,184,125,7,74,147,80],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":151,groonga_cli:150,seven:[23,3],datail:108,theatr:91,"key\u3092\u8fd4\u3057\u307e\u3059":79,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":97,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":63,"\u691c\u7d22\u306e\u6319\u52d5":[],receiv:[150,131,132,172,16,9,64,119],make:[],column_list_head:95,"_kei":[3,91,12,95,46,48,7,100,9,109,127,54,143,108,75,150,85,13,153,58,59,18,60,157,44,163,121,125,182,74,170,96,78,79,176,80,181,130,184,135,139,189,102],zlib1g:[152,14],unicorn:14,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":63,"\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":69,"8byte":172,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":121,inherit:125,"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":69,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":73,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":97,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,left:[],protocol:[],just:[],sigusr1:27,"\u6771\u4eac\u90fd\u6c11":[70,144],human:[95,65],"\u73fe\u5728\u306f":[179,167],yamamoto:80,yet:[92,68,23,150,12,122,132,108,125,147,27,54],"table\u304c":113,defrag:[],macport:[],"worker\u306f":134,save:[131,165,78,151,80],applic:[162,150,132,32,54,9,27,175,80],"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":144,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":151,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":151,nomral:[108,181],daemon:[],vdw:[74,3,130],manual:[],grn_obj_expir:79,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":107,mrubi:[68,151,125,147,77,80],unnecessari:139,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":155,intern:[13,32,16,17,125,77,106,112,80],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":144,"\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":144,tracker:[],"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":69,localhost:[179,4,151,131,167,97,9,103,54,172],range_filt:[],new_release_d:151,compress:[],grn_cursor_gt:63,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":177,promot:125,"\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":151,"\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:[132,32],"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":151,"\u30c7\u30d5\u30a9\u30eb\u30c8":69,grn_between_too_many_index_match_ratio:80,grn_ctx_recv:80,commit:[80,119],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[179,97],meerkat:27,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\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:[75,168],down:[],"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":167,homepag:167,editor:119,fraction:[13,132,184],storategi:108,analysi:[132,188,150],"143660000x419009000":75,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[108,3,181,131,184,172,158,125,9,51,27,189,102],sub1:108,forc:7,some:[90,5,26,7,84,103,148,188,164,12,85,115,19,178,160,119,66,163,23,125,80,150,181,132,186,135,187,35,139,65,38],"4e86e700":165,"txt\u306b\u307e\u3068\u3081\u307e\u3059":151,grroonga:169,"\u5426\u5b9a":69,auth_basic_user_fil:[9,54],"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":157,unrel:27,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":11,classif:130,featur:[],kwic:32,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":67,grn_obj:[],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":53,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":60,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,score_function2:12,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":97,tokenbigramignoreblank:[],excel:175,"defrag\u306f":37,matur:[141,187,23],escaped_charact:84,faction:184,calc_typ:108,fsf:7,pseudo:[],"scr\u306e\u4e2d\u8eab\u304c":167,vmstat:165,ignor:[108,90,83,175,94,133,125,7,170,103,77,27,38,80,181],reply_to:78,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,logs_message_index:178,n_entri:117,"152489000x":184,skip:[77,3,125,80],segv:125,"\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":37,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":63,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":177,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":63,must:[40,3,5,95,48,102,103,142,110,188,54,17,108,109,150,13,153,58,59,61,178,64,65,23,121,165,71,182,170,172,176,80,181,83,131,84,136,139,38],query_str:[],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":27,string:[],"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":45,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":151,grn_obj_set_fin:53,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":151,form_1:3,iter:150,dic:164,item:[141,153,108,48,18,157,176,54,65],round:27,dir:167,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":113,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":151,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":154,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":167,shinoda:[77,80],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":67,deriv:[141,64],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":45,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":144,wait:[40,19],box:108,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":60,"\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:79,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":157,raccoon:44,"\u306e\u30ab\u30e9\u30e0":[37,107],grn_content_json:106,modul:[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":126,result_too_larg:172,univers:14,perl:9,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":167,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":73,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,grn_proc_typ:53,"_min":108,too_many_link:172,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":154,apper:108,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":69,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":72,grn_plugin_proc_get_var_by_offset:[40,80],commands_column_list:95,tokyo:[74,75],"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":143,"\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":151,uniqu:[131,103],"\u30d2\u30c3\u30c8\u6570":108,ull:90,"256kb":165,predict:[94,38,65],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,"\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":124,libmemcach:177,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":97,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,normalizs:65,map:[23,165,139,27,148,176],groo:[131,108],max:[],mac:[],clang:[7,77,177,125,80],assigend:181,mai:[162,12,94,95,7,9,103,77,147,188,78,54,150,153,17,59,61,178,65,66,44,68,23,121,122,125,27,28,175,80,181,83,132,133,135,136,139,38],underscor:65,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":45,table_dat_kei:[],grn_expr_get_keyword:84,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,fluent:104,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":179,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":36,talk:[77,125,26,151],"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":70,pointer:40,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,entiti:132,group:[],monitor:[152,129,14,125,164],"\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":154,"\u5b9f\u9a13\u7684":[],main:152,resource_temporarily_unavail:172,initi:[40,5,131,16,7,77,27,80],lunch:132,"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":151,"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":151,"\u5fa9\u53f7\u3057\u305f\u9375":151,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":79,massachusett:184,"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":151,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":167,"\u3053\u306e\u7d50\u679c\u306f":167,gzip_typ:54,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":154,continu:[90,97,125,7,18,38,80,81],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":151,unlock:40,nroonga:[115,78,81],"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":177,"3rd":[108,125],compress_lzo:73,"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":167,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":151,uint32:[3,91,45,7,102,105,127,143,108,150,85,114,59,95,65,44,163,70,125,182,74,170,96,78,80,178,181,130,135,139,189],"\u624b\u7d9a\u304d":53,earlier:[27,127,189],"\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":190,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":62,debootstrap:151,org:[3,101,9,188,164,109,151,85,13,14,157,119,44,24,167,74,102,80,129,130,152,89],prefix_search:[27,153],"128487316x502920929":[44,74],grn_table_renam:113,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,"\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":124,"marverick\u306b\u5909\u66f4":154,frequenc:[12,122,153,99,183,77,80],"grn_op_adjust\u306f":69,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":105,thing:77,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":144,think:[122,28,108,12,150],frequent:12,first:[40,141,3,91,12,95,47,101,9,103,27,188,54,108,150,13,16,65,44,161,125,77,78,175,80,178,181,131,184,32,135,119,38],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":151,key_norm:[114,108,189,3,91,70,184,181,32,7,115,139,78,150,65],"long":[103,86,125,61,25,77,80,65],crit:[6,8],grn_geo_cursor_open_in_rectangl:110,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":70,workaround:[77,80],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":60,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":27,memo:[163,12,122,115,100,28],key_siz:113,broadcast:184,"value\u304c\u5c5e\u3059\u308b\u578b":105,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,proxy_cache_valid:9,patprefix:143,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,longitudexlatitud:125,yoshioka:7,libgroonga:[162,3],grn_db_touch:[154,83],were:[75,3],zsh:188,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:188,grn_invalid_format:2,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":144,katakana:[153,189,38,176],squar:75,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":167,"256gbyte":66,normal:[],beta:42,pair:[108,13,48,169,18,175,176],grn_content_tsv:106,synonym:[108,175,91],"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[37,107],"\u539f\u56e0":[],shop:[114,144],lexicon:[],newer:[77,80],"\u3092\u516c\u958b":154,show:[92,1,2,3,4,12,47,7,102,51,106,108,75,150,13,58,115,44,23,122,161,125,182,74,170,172,96,27,80,178,181,130,132,133,32,135,184,188,109,38],"\u62c5\u5f53\u8005":151,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":69,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":69,black:[92,189],"\u30c6\u30fc\u30d6\u30eb\u540d":[105,37,107],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":70,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":36,tamano:80,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":154,gem:151,"\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":167,"column_create\u306f":73,tokyogeopoint:[75,45,34,74,110,27,168],median:80,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[],wiki:9,kernel:[7,139],"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":70,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":27,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":45,sear:176,enci:167,masahiro:[154,125,80],japan:[74,170,102,130,176],infinit:[7,27,80,65],enumer:3,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":124,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,label:[],enough:[132,78,80,165],across:75,parent:[108,9],unknown_error:172,column_vector:[44,108,85,13,184,95,125,73,182,170,80],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":190,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[36,97],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u7b56\u65b9\u6cd51":[],recrod:108,"\u3088\u3063\u3066":45,"\u5206\u5272":144,grn_expr_clos:84,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":124,grn_cache_open:17,among:[],grn_obj_delete_hook:93,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":167,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":167,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,inappropriate_i_o_control_oper:172,cancel:[35,103,80],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":151,gnupg2:151,mark:[163,184,112,141,77,189,38,80,65],"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":86,grn_too_small_offset:2,grn_init:[7,148,5],senboku:125,i18n:[],those:[108,75,3,4,169,24,132,158,181,32,48,13,189,94,150,188,112,54,119],sound:[18,189],hdd:167,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"8\u306b\u5bfe\u5fdc":154,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":97,advantag:[132,141,32],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":167,brasillia:75,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":167,"1\u3068command":11,pat:[7,112],drilldown_result2:108,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],drilldown_result1:108,same:[3,12,9,103,10,54,108,150,85,13,16,58,115,18,19,22,122,125,74,77,78,178,181,35,135,189,84],speech:[132,38],pai:108,"\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":144,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":151,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,grn_command_version_st:116,grn_table_dat_kei:113,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,"\u540c\u3058\u3067\u3059":167,montywi:112,grn_address_is_not_avail:2,macro:[27,125,80],markup:87,"drilldown\u7d50\u679c":108,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":16,argument2:[150,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":151,argument1:[150,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":79,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":179,document_vers:151,execut:[],grn_obj_fin:[84,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":97,monei:44,mcdonald:92,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":120,"root\u306b\u5909\u66f4":154,enable_tokenized_delimit:90,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":79,"\u697d\u3057":[70,144],value_column:121,grn_table_delete_by_id:113,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":113,evaluated_valu:147,either:[0,108,150,125,96,78,178,181],rinse_1:151,quantal:7,operation_not_support:172,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":151,ascend:[92,74,3,108,130],testdb:[167,64],"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":113,confirm:[],table_no_kei:[],valuebuf:41,str_length:40,"\u30cb\u30c3\u30dd\u30f3":176,event_typ:186,broken:[83,125,7,136,61,77,27,80,121],regexp:80,"128452975x503157902":[13,44,74,102],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"_set_valu":112,"x\u306e\u304a\u77e5\u3089\u305b":[],"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":154,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":151,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":151,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":45,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":63,strip:109,"tomita\u3055\u3093\u304c\u5831\u544a":154,yyi:119,drilldown:[],grn_ctx_batch_mod:80,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":167,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":36,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":79,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,arugment1:150,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":167,possibl:27,"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":151,embed:[132,32,47,9,77,175],"1_all":151,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":155,file:[],logo:7,fill:[131,150],again:[114,9,80,19],field:95,location_in_groonga:135,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":167,architectur:[132,151,80],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":73,sequenc:[108,181,35,125,48,153,18,172,148,27,176,150],goo:[181,150],"6gib":139,"\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":113,escal:[],unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":45,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":82,"x\u3067\u306frealloc":154,descript:[108,49,172,181,131,133,95,144,97,125,7,90,9,184,166,150,178,176,80,65],escap:[],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,sergei:80,forget:85,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[112,181],suno:80,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],file_too_larg:172,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":93,libmsgpack:[152,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":151,"\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":108,objnam:[37,107],grn_op_and:[56,69],grn_op_or:[56,69],fals:[1,103,151,136,13,45,125,73,115,59,100,182,170,96,143,150,127,161,80,181],"\u3053\u3053\u3067\u3082":70,offlin:[],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":154,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":11,sub_filt:[],hottolink:42,grn_hook_set:93,puropos:90,"\u305d\u308c\u3092\u65e7ji":63,zero:[163,71,85,13,38,108,172,189,175],further:13,"\u3053\u3053\u3067\u306f":70,aba:[74,3,130],abi:77,grn_info_typ:41,"\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":124,fffe:90,tokenbigramignoreblanksplitalphadigit:38,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":126,"public":80,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":97,tokenbigramsplitxxx:38,grn_table_pat_kei:113,valu:[],grn_table_setoper:113,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":190,fff0:38,narrow:[],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u95a2\u4fc2\u5f0f\u306f":69,commands_table_cr:105,transit:141,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":63,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":168,establish:[3,172],distinct:[66,131],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":151,regist:[],libev:[188,152,14,112],groonga_path:167,"check\u30b3\u30de\u30f3\u30c9\u306f":126,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":73,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,jsonp:[131,77],desin:141,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[108,90,133,172,97,46,186,136,9,78,188,65],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":179,hour:[184,150,19,148],dev:[151,14,125,26,7,152,177,77,27,80],grn_set_default_encod:123,"\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:[148,125,178],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":154,deb:[151,14,125,7,152,27,80],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":70,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":151,share:[17,23,83,44,132,142,97,125,26,7,9,121,27,78,188,19],shard:[94,142,23,77],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":63,minimum:[40,164,108,150,14,129,152],"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],strlen:40,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":121,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,secur:[],"\u691c\u7d22\u7d50\u679c1":108,"13\u7528rpm\u306e\u63d0\u4f9b":154,arg2_nam:178,needl:69,grn_command_vers:[],number2:150,number1:150,mariadb:[125,80],associ:[40,44,108,3,13,58,170,27],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":151,kuriyama:[77,80],"\u691c\u7d22\u7d50\u679cn":108,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":159,hypertext:[],no_buff:172,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":70,through:[132,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":151,"\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":79,"\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":60,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\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":113,good:[163,90,181,132,108,114,46,150,78,188,38,119],timestamp:[184,23],"tokenmecab\u3067\u306f":70,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":151,grn_get_lock_timeout:19,grn_obj_vector:[79,84,16],"_valu":[108,60,121,80,125],rank:[3,80],"db\u3068\u306a\u308a\u307e\u3059":83,comamnd:54,easili:80,name_2:[3,102],name_1:[3,102],hard:139,idea:108,"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":63,connect:[7,77,187,3,172],rlimit_nofil:[148,125],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":151,flower:13,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":151,"release\u306e\u5b9f\u884c":[],print:[172,80],name_s:[40,121,62,16,113,79,84,53],hemispher:7,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":69,entries_content_index:[139,108,181,150],database_path:[],"975mbyte":167,omit:[22,108,90,3,4,94,135,136,75,10,27,174,176],"\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":151,grntest:[7,27,154,151,104],"tokenmecab\u306e\u5834\u5408":70,tritonn:[108,181,150],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":113,suggest_prepar:[153,18,176,48],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":124,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":97,done:[17,108,9,80,19],stack_over_flow:172,"\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":45,stabl:[153,11,80],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[113,79],"indexbuf\u306e\u30b5\u30a4\u30ba":121,"5th":108,least:[181,165,7,182,117,139],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":157,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":70,"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":113,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":70,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:27,"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":69,pari:75,selector:7,part:[23,13,132,142,32,135,184,3,188,38],pars:[123,84,80,158],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":113,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth\u304c\u5fc5\u8981\u3067\u3059":151,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":36,"\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":124,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":167,"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":144,"\u30c6\u30fc\u30d6\u30eb":107,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":69,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":70,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":72,built:[],build:[],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":151,distribut:[164,129,151,14,7,152,101,137,188,80],"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],previou:[141,130,12,13,125,7,78,80,178],chart:27,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":67,most:[108,110,3,181,85,13,31,16,54,178,38,80,150],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_cache_current_get:17,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],groonga_log_level:[],grn_plugin_mutex:40,cas_error:172,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,"\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":177,carefulli:85,"bom\u4ed8\u304dutf":154,find:[113,163,189,3,132,161,108,32,47,48,153,59,18,101,20,88,188,38,176,119],grn_no_such_process:2,grn_index_cursor_open:120,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":83,grn_logger:7,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":36,unus:80,grn_in_values_too_many_index_match_ratio:80,grn_obj_defrag:79,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":179,commands_column_renam:59,restart:[],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":167,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":70,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":167,map_hugetlb:27,common:[108,181,94,14,7,113,158,63,27,78,150,65],table_cr:[],grn_api:84,"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":113,grn_interrupted_function_cal:[2,103],"status\u30b3\u30de\u30f3\u30c9\u306f":82,lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":179,blog_cont:182,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":167,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":167,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":177,network_is_down:172,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":70,is_stop_word:[163,46,80],simpli:122,point:[],hideki:[125,80],shutdown:[],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,weight_in_match_column:85,indexblog2:78,secret:151,indexblog1:78,"\u4ee5\u4e0b\u3067":70,gat:[74,3,130],understand:[108,3,80],"\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:[70,144],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":144,opear:150,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":126,anonym:94,gb87d9f8:4,everyon:102,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":167,"\u6c11":144,itself:[90,181,85,125,175,80,178],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":151,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":69,res2:113,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":70,inv_thread_column:167,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":157,keyr:[7,152],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":190,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":70,task:[7,132],sortbi:[],entri:[145,93,47,107,17,108,150,58,155,157,161,72,125,73,182,170,117,78,181,184,136,139,37],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":60,"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":167,spend:[181,150],"build\u3092\u7528\u3044\u3066":177,from:[],"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":67,shape:92,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":167,"\u3053\u306e\u64cd\u4f5c\u306f":113,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":157,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":69,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":151,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":36,bin:[188,101,20],key_column:121,kashihara:80,"\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":154,tokendelimitnul:[],"\u6c38\u7d9a\u7684\u306a":79,bit:[164,108,181,152,24,14,167,129,13,101,137,150,81],"\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":45,semi:[27,65],groogna_default_command_vers:54,in_valu:[],followe:184,often:96,grn_ctx_set_fin:16,back:[178,9,150],grn_plugin_init:40,sizeof:[77,84,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,scale:[132,54],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":167,per:[],newark:184,substitut:[108,181,115,150,81,119],larg:[181,13,132,7,61,94,139,150,38,54,65],"\u304c\u8fd4\u3055\u308c\u307e\u3059":79,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":107,reproduc:125,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:80,"\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":69,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":126,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":146,tanuma:80,grn_expr_compil:84,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":107,"\u30c6\u30fc\u30d6\u30ebterm\u306b":73,nsi:151,grn_db_recov:[83,80],"\u6a19\u6e96":[6,105,190,107],errno:80,pair_dataset:[186,48],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,includ:[90,142,12,95,10,147,3,54,108,150,87,59,22,68,23,122,125,96,77,174,175,80,129,133,32,135,38],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":34,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":177,str_size:84,translat:[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],concaten:78,default_command_vers:[3,4,82,102,9,172],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":113,soundkitchen:[7,27],grn_tabl:[],exit_success:5,no_space_left_on_devic:172,curl:[188,4,131,97,7,9,103,89,54,81],"\u90fd\u6c11":[70,144],sequenti:[181,77,150,38,80,178],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":69,grn_content_msgpack:106,grn_no_locks_avail:2,"\u30c7\u30fc\u30bf\u578b":[],libwinpthread:80,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":151,benchmark:[],"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":167,"\u3053\u306e\u4f5c\u696d\u306f":151,"tokenbigram\u306a\u3069":70,ellip:[75,168],grn_bulk_vsiz:[84,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,getaddrinfo:7,jason:143,"\u5f62\u5f0f1":[36,97],"\u5f62\u5f0f2":[36,97],"\u308d\u3086\u304d":143,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":121,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":151,sensit:38,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":151,grn_db:[],becam:[141,80],reference_column:[108,80],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":82,fatal:80,db_path:[3,4,172,102,77,36,51,9],comment_cont:182,"2rd":108,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":151,grn_obj_is_scorer_proc:77,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,geograph:[13,75],"\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":45,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[37,107],"groonga\u30b3\u30de\u30f3\u30c9\u304bc\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u901a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":97,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":151,"0x0":[13,45,112],object1:150,object2:150,leakag:91,carlo:[59,127],append:[7,84],"\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":144,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[],"32gib":139,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,interrupted_function_cal:172,"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":79,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":154,vertic:65,sinc:[114,141,75,121,164,13,184,97,148,7,150,10,135,127,107,65],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":126,masatoshi:77,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":180,grn_resource_deadlock_avoid:[2,79],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":97,grn_mecab_chunk_size_threshold:77,"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":151,ii_buff:86,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,score_function1:12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":151,score_function3:12,set_token_filt:80,grn_content_typ:[],name1:150,account:[26,80],"146607190x":184,"\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:[108,181,184,115,59,9,96,127,38,54],rurema:80,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":151,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,fetch:[78,80,48],abcd:133,calc_target:108,commnad:[11,101],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,msvc:77,users_loc:184,grn_ii_buffer_commit:86,gcc:[164,129,24,125,7,27,188],groonga_n_record:125,afr:[74,3,130],"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":73,inst:125,physic:126,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":63,bind:[162,42,161,158,97,47,7,77,27,81],amazon:108,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_geo_select_in_circl:27,"\u6df1\u523b":70,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,hiroshi:[27,80,77],replies2:78,"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":151,"\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":151,meter:[74,75],report:[],cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":113,"\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":105,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":168,euc:[97,38,125],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":167,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":113,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":69,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":97,nvar:53,spell:[175,91],dai:[114,184,23,150,148],dat:[7,112,125],mention:182,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":167,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":151,grn_table_lcp_search:113,"tomotaka_ito\u3055\u3093":27,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":70,column_index:[3,91,12,95,47,100,108,150,85,114,70,44,163,122,161,73,182,115,96,78,80,178,181,184,32,139],"\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":37,"\u306e\u66f4\u65b0":[],normalizerauto:[],"\u3067\u3042\u308c\u3070":167,int16:[45,154,125],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":79,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":151,stub:80,rel:[27,108,80],"\u30ab\u30ec\u30fc":144,ref:150,red:[],clarifi:80,"\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":70,frank:96,standalon:64,test_loc:167,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":97,groonga_log_path:[],drilldown_xxx:108,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":154,pgp:151,tokenizer_error:172,natti:27,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":70,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":167,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,82,102,9,172],ipad:[164,38],"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":97,rakutan:78,structur:[135,132,44,80,94],charact:[],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":143,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":126,have:[92,141,2,3,191,95,48,9,71,188,54,114,108,106,150,87,153,58,18,65,163,175,80,181,189,83,132,135,13,139,119,38,102],close:[58,94,161],"\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":97,min:[],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":167,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":121,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":151,mix:[153,38,85],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":79,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":144,gurun:158,bottom_right:[27,34],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":37,"\u6e2c\u5730\u7cfb":45,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":154,mail_column:167,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":69,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":177,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":144,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":70,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":108,"grn_bool\u578b\u3092\u8ffd\u52a0":154,bernard:77,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":73,elfr:7,grn_plugin_malloc:40,grn_ii_buffer_append:86,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":70,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":143,escaped_str:84,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":83,integr:[7,13,125,81],"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":151,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,with_weight:[73,95,80,85],"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":70,pattern:[135,132,178,181,150],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":177,progress:148,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":167,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":62,plugin:[],shorttext:[3,91,12,94,45,97,46,47,48,100,102,105,110,127,143,122,108,75,150,85,13,153,114,115,59,18,157,95,65,44,163,70,161,167,73,182,74,170,96,78,109,176,80,178,181,130,184,32,135,136,139,189],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":97,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":116,equat:75,grn_permission_deni:2,comment:[],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":93,log_repoen:7,test_str:177,"hook\u306e\u5b9f\u884c\u9806\u4f4d":93,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":97,"\u52c9\u5f37":38,json:[],grn_obj_table_no_kei:[63,113],grn_table_group_flag:113,grn_ii_cursor_set_min_en:77,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":177,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":97,"\u4f8b\u3048\u3070":[143,70,167,144,97,79],bulk:84,multi:[],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":45,plain:[77,109],defin:[3,150,186,114,172,77,175,176],buildabl:27,replies_cont:78,ill:144,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":177,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],almost:[27,108,139,165],caplit:[125,80],grn_plugin_mutex_open:40,power8:80,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":167,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":73,too_many_open_files_in_system:172,japanes:[0,181,132,26,7,150,38,176,80,119],"pc\u306bgroonga":146,auth_bas:[9,54],utop:[14,151],optarg:[56,83],hostnam:[167,97,7,9,36,172],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,column_nam:58,grn_column_name_key_len:121,document_index:[161,47],"\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":151,content_index:12,center:[132,168],builder:86,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,choos:[108,13,58,9,38,80,178],error_cod:40,update_not_allow:172,"1byte":172,latest:[],unari:125,"5\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,takayuki:27,gmo:80,"30ac":189,lake:92,add:[],successor:150,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":126,grn_obj_table_pat_kei:[63,113],"\u3067\u306f\u306a\u304ffree":154,grn_obj_path_by_id:[79,112],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":83,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,substit:108,"\u8ffd\u52a0\u306e\u5c5e":73,qwik:157,insert:[7,3,32],like:[],success:[],groongau0000ful:38,grn_obj_id:79,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":79,"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":45,"\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":154,"com\u304cedge\u3092\u4f5c\u308b":134,socket_is_already_shutdown:172,soft:139,snippet_html:[],normalizer_list:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":157,"\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":69,specfi:110,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":157,proper:[135,184,23,80],grn_column_cr:121,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":167,tmp:[3,151,131,153,95,97,125,59,102,105,178,175,54,172],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":167,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5f62\u5f0f":36,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":70,"\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":70,"repositories\u914d\u4e0b\u306b":151,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":70,host:[27,172,167,102,81],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":151,"\u30c0\u30e1\u30fc\u30b8":70,sbin:89,actual:[23,12,13,142,125,9,3,80],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":121,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":167,"mooz\u3055\u3093\u304c\u4fee\u6b63":27,statement:150,"\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:44,discard:125,nested_reference_column:108,syntax_error:172,"\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":69,dataset:[],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":70,guard:122,"\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":151,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":70,ayumu:80,conbind:181,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":108,rch:90,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[77,80],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":60,glib:125,unexpect:[7,80],"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":45,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":121,uninstal:7,bug:[],grn_obj_set:79,binlib:151,"point\u578b\u306e\u5024":[34,168],quickli:114,"\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":155,epel:[7,129],"shimada\u3055\u3093":154,colum:[139,78],dure:[7,3],pid:[27,1,188,97,77],saer:[153,18],grn_too_small_limit:2,implement:[68,42,23,150,122,94,108,7,75,9,77,147,27,191,80,119],pip:20,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":159,probabl:153,"\u305f\u3060\u3057":[63,36,144,60,97],detail:[40,141,90,3,95,7,9,10,148,188,164,108,150,85,13,14,115,65,22,46,167,125,74,77,174,80,178,129,181,130,132,152,187,35,139,88,119],virtual:125,comment_nam:182,grn_expr_create_for_queri:69,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":167,is_a_directori:172,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,120],grn_obj_flag:[40,62,113,84,121],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":140,represent:[123,119,84,85],"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":69,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":70,grn_type:[],"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":151,tweet:[114,26],umask:80,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":70,under:[131,54,9,188,64,80],everi:130,risk:80,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"24byte":172,grn_encoding_to_str:123,not_a_directori:172,x86_64:[129,151],zlib:[],naiv:130,not_enough_spac:172,"push\u3057\u3066groonga":151,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":121,aim:125,hide:125,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":79,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":69,"82pre":42,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":177,studio:[7,77,101,125],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":154,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":[],functin:150,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],precis:[135,3,151,132,14,7,38,176],"\u306e3\u30d5\u30e9\u30b0\u306f":63,"\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":146,orilldown:130,portabl:[27,9,125],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":69,"\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":79,describ:[40,0,90,3,12,92,133,95,46,48,101,50,103,147,142,188,127,164,108,109,150,85,14,58,122,59,18,117,61,20,178,160,65,162,68,23,24,52,185,182,172,78,175,176,80,81,129,189,181,136,184,30,31,135,152,137,139,88,119,38,89],noarch:[164,129],"groonga\u306e\u7d44\u8fbc\u578b\u304b":73,namebuf:[79,121],autogen:[7,151,119],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":45,"msg\u306fcom\u306b\u3088\u3063\u3066":134,chracter:[189,32,65],"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":69,"grn_op_but\u306f":69,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,strerror:80,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":168,overrid:188,enourm:48,end:[179,75,150,181,178,38,4],eng:[153,176],hiragana:[176,38,181,150],env:175,rroonga:[12,182,161,125,47,17,115,100,158,78,80,81],grn_content_non:106,tablenam:11,grn_set_default_command_vers:116,befor:[22,108,3,5,85,13,112,7,169,18,9,178,10,188,175,176,117],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:132,exclud:[58,142,125,7,96,23,80],environ:[129,112,125,101,9,137,77,27,188,175,80,81],enter:[3,125,172],composit:189,over:[132,161,125,7,102,165,77,80],"\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":151,becaus:[141,3,4,12,94,48,7,100,9,10,54,91,164,108,150,13,114,115,59,18,65,22,44,163,23,122,73,169,172,96,78,175,176,80,178,181,182,131,132,32,135,139,189,38,191],london:75,gqtp:[],"\u304bwgs84geopoint":[34,168],digest:54,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,tokenizer_list:[],"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\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":144,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":154,oneir:[27,125],"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":69,choic:[],grn_pat_at:154,each:[],searc:176,colleagu:88,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"groonga\u306e\u30ab\u30e9\u30e0\u306f":45,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,msgpack:[4,54,172],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[114,132,32,17,127,80],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,got:[125,80],"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":36,"\u69cb\u9020\u4f53\u306e\u914d\u5217":53,"offset\u306f":113,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,filter:[],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":151,"16gib":139,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":167,score_column:121,onto:139,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":63,edit_dist:[],restrict:[7,102,54,125],alreadi:[40,114,90,3,58,19,139,78,64,80],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":79,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":124,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":79,top:[110,130],mercuri:151,too:[108,150,85,13,125,77,78],tom:115,"\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":151,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"path\u3092":154,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":126,tood:40,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":157,tool:[],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":105,user_ag:96,wareohji:7,grn_obj_set_valu:[63,79],ga54c5f8:167,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"\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":151,expr:84,obata:[27,154,125],"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,blog_bodi:70,rab:[74,3,130],ran:176,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":105,ram:167,raw:[125,81],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,with_sect:[73,184,78,95,80],unresolv:27,"\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":144,hanako:170,bad_file_descriptor:172,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":151,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[113,121],travi:[],though:[23,132,125,7,78,176,80],"\u3044\u307e\u3059":124,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":167,bsd:[27,188,80],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":113,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":69,"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":151,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":167,mininum:141,flow:[],abbrev:75,radix:150,"0\u30d9\u30fc\u30b9\u3067":[63,113],abl:[122,28,32,12],random:74,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[129,24,154,7,27,188],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u306f":[63,45,113],absolut:[22,174,10],top_left_point:110,configur:[],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":151,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":79,"\u542b\u3081\u308b\u3082\u306e":151,item_queri:[153,18,176,186,48],label1:[108,80],label2:108,watch:151,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":97,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,normalized_text:133,reconstruct:80,"\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":82,method:[3,125,9,77,38,176],twice:[108,181],hendro:125,contrast:[3,5,132,97,115,9,80],"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":154,"\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":179,"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":108,"\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,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":143,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":151,nul:[40,27,38],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,grn_plugin_error:40,databas:[],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":167,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":79,no_such_file_or_directori:172,algolithm:158,approach:75,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":97,weak:[132,32],grn_invalid_argu:[63,113,2,79],fault:7,"4gib":[94,172],facet:108,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":45,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":151,trust:151,id_column:121,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":97,evalud:147,been:[59,151],"\u3072\u308d\u3042\u304d":143,accumul:108,geo_distance2:[27,75],geo_distance3:[27,75],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":151,tokenmecab:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":113,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[27,19],xxx:[97,125,80,150],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":121,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":167,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"grn_op_or\u306f":69,need:[90,3,4,5,94,47,48,7,101,9,103,10,150,77,106,78,54,91,108,188,12,85,16,17,122,18,20,178,65,22,23,24,165,74,172,27,28,175,176,80,81,129,189,181,127,132,133,32,135,38,139,119,84,131],message_index:122,suggest:[],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":154,complex:[7,108,178,125,150],unix_time_when_command_is_start:135,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,niku:80,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":53,complet:[],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":113,sen_index_delimit:42,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[36,97],quotient:150,"groonga\u306b\u306fhtml":36,"\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":151,via:[7,119,2,48],"\u5024":97,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,els:[77,80],grn_column_name_valu:121,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":36,ceekz:125,"groonga\u306epackag":151,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":69,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,"mooz\u3055\u3093":27,unstabl:112,poedit:119,el5:129,escaps:[161,32,47],"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":121,log_reopen:[],grn_obj_is_t:77,"\u7d44\u8fbc\u95a2\u6570\u306f":[180,34,111,168,67],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":154,"\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":151,line_cont:135,"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":151,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":69,surround:[7,161,32,47,150],dinner:132,ppa:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":41,"\u578b":62,encod:[],two:[0,92,141,90,3,95,48,100,9,148,54,164,108,75,14,16,115,18,64,65,44,125,73,182,74,77,78,80,178,129,181,130,84,133,32,135,152,184,189,38,191],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":27,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,version4:11,git:[104,151,119],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":151,"256gib":66,head:[179,108,9,80,172],medium:[164,129,184,14,152,101,137],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":45,removep:79,drilldown_sortbi:[],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":151,deafult:27,grn_expr_estimate_s:77,autoconf:27,grn_expr_syntax_escape_queri:84,trie:[],decrypt:151,bad_address:172,check:[],ongaeshi:[7,77,125],"clearlock\u306f":107,successfulli:[40,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":126,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":69,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":97,when:[3,97,7,100,9,10,77,108,75,85,153,58,115,20,178,65,22,44,121,125,73,182,109,172,27,176,80,181,83,131,132,135,184,88,189,38],groonga_dist:7,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":143,tid:120,saerch:[153,18],node:[7,129,81],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,grn_op_and_not:56,"\u5217\u6307\u5411\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":97,sql:[108,23,130,12],faster:[27,188,38,125,80],top_left:[27,34],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":60,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":144,backward:[7,127,80,54],grn_obj_table_dat_kei:27,"6\u30ea\u30ea\u30fc\u30b9":[],grn_db_float:77,focus:3,llt:90,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":168,row:[132,32],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":73,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":151,readabl:[112,80],"\u554f\u984c\u3042\u308a":27,jumand:164,sourc:[],"\u306b\u8a2d\u5b9a\u3059\u308b":151,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":167,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":120,"6elz":80,"\u3092\u8fd4\u3057\u307e\u3059":[63,93,113,79],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":60,level:[40,130,6,97,125,7,8,9,148,64,80,172],brother:181,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":121,slower:[122,75,130,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":126,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":45,port:[141,42,4,131,167,172,97,125,80,102,36,89,54,9],repli:[184,78],arg1_valu:178,"sh\u306e\u307f\u306a\u3089\u305a":177,ken:44,grn_expr_append_const:[69,84],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":179,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":82,connection_refus:172,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":151,"\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":79,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":151,normalizeauto:161,"\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":108,"benchmark\u304c\u52d5\u4f5c\u3057":167,"1st":96,grn_table_cursor_clos:63,"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":111,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":73,"\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:[27,79],file_exist:172,memori:[],todai:132,"\u3053\u308c\u306f":70,criteria:3,capit:3,target_charact:84,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":154,proxy_cache_path:9,entries_key_index:[139,108,181,150],lc_messag:119,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":168,purpos:[23,85,125,115,102,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":154,collaps:7,stream:80,backslash:[84,125,181],critic:[7,40,188,97,148],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[],satoh:27,alwai:[108,172,181,132,95,135,153,9,139,77,176,80,150],grn_table_update_by_id:113,grn_plugin_isspac:40,"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":144,clone:[],"4th":108,"0\u4ee5\u4e0a18":45,repeat:[132,119],key_with_si:[143,150,181,65],"\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":154,ueno:[7,27],predic:77,inform:[],combin:[],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":70,midnight:150,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,mainli:[184,80],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":93,platform:[],meridian:75,cutter:[177,151],"\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":34,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":151,"\u6b21\u306b":69,"\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":[155,97],"output_type\u306b\u306fjson":36,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":79,term:[],name:[],"\u65e5\u3005":124,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":63,"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":69,no_memory_avail:172,request_id:[35,103],osanai:80,grn_itoh:27,grn_bool:79,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":154,end_tagn:161,"base_version\u306ftar":151,"groonga_clone_dir\u306b\u3066autogen":151,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,compress_zlib:73,candidate1:153,migrat:[108,181,80,150],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":69,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":97,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":167,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":151,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":108,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":79,place:[184,188,26],kawada:80,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":105,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":70,redhat:[27,188],arrai:[],string_siz:84,given:[7,44,125,115],"\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":151,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":27,domain_error:172,circl:[132,92],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,white:[38,3,181],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":120,grn_table_add:113,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":177,copi:[7,40,59],specifi:[],"\u30d1\u30a4\u30d7":73,github:[0,73,189,151,125,7,77,104,27,119,80,81],enclos:[58,3],pragma:108,calro:96,wide:[27,188,3,178,132],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,"\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":154,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":38,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":60,"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":151,posix:[77,150],posit:[40,108,2,3,110,85,95,46,90,38,80],grn_column_index:121,seri:3,kazuhiko:[7,80],local_nam:157,ann:151,ani:[90,12,46,47,9,147,188,54,108,153,58,115,68,161,182,77,175,129,181,132,133,32,38],grn_unsupported_command_vers:2,grn_obj_set_mask:79,n_kei:113,operation_timeout:172,moreov:74,spheric:75,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:150,"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":27,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":177,geoindex:[],time_column:167,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":69,"com\u306f1\u30b9\u30ec\u30c3\u30c9":134,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":97,grn_table_cursor_set_valu:63,permiss:[188,80],sitecountri:[102,130],explicitli:[],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[70,144],written:[22,184,10,20,127,80],analyz:[7,27,38,9,132],grn_obj_column_vector:121,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u3092\u6307\u5b9a\u3057":[63,37,107],"45ea3034":148,ssh:151,takatsugu:80,"\u8a73\u7d30\u306f":[70,36,177],pipermail:80,reveal:132,"\u542b\u3081\u306a\u3044\u3082\u306e":151,tokenfilterstopword:[],grn_geo_select_in_rectangl:[27,110],"shibuya\u3055\u3093\u304c\u5831\u544a":154,"\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":151,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":79,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":113,"ongaeshi\u3055\u3093":154,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":45,"\u8b66\u544a\u3092\u9664\u53bb":154,detect:[7,27,90,9,188],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":124,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":151,dest_kei:113,grn_db_register_by_nam:146,"59\u74b0\u5883\u306b\u304a\u3044\u3066":27,come:[92,184],"\u63a5\u7d9a\u3059\u308bgroonga":167,region:[92,74],quiet:172,reference_vector_column:125,"\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":70,"\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":70,"\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":60,color:189,whombx:125,period:[],pole:75,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"ueno\u3055\u3093":[154,146],lexicon2:78,item_exampl:176,log_put:[],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":151,frequency_threshold:[27,153,18,176,48],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":154,"s3ki\u3055\u3093\u304c\u5831\u544a":154,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],not_socket:172,grn_command_version_max:116,"case":[],"\u3042\u308a\u307e\u305b\u3093":[82,105,190,140,159],cast:[],grn_db_open:83,out_loc:167,favorited_bi:184,grn_expr_alloc:84,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":69,"define_selector\u306f":155,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":113,query_s:84,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":151,saerc:[153,18],"4\u884c\u76ee":167,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,author:9,alphabet:[108,90,18,38,80,65],users_index:184,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":69,html:[],"\u5f37":38,"\u8a9e":[126,38],messagepack:[],status:[2,172],nest:[],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":97,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"_nsubrec":[44,108,121,130,184,60,80],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,"\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":63,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,113,168],overcommit_memori:[],without:[],model:[172,80],"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":154,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":82,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":63,rose:13,except:[164,92,68,90,181,85,94,108,32,7,100,9,139,147,27,178,38,80,65],blog:[],"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":154,vulner:80,hino:125,grn_logger_info:7,grn_obj_nam:79,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":97,grn_table_cursor_open:[63,154],realtim:[153,48],with_typ:133,madrid:75,grn_rc:[40,41,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],unrecover:83,micro:[],grn_cache_current_set:17,freed:[17,80],garbag:[27,125,80,126],inspect:[77,125,80],n_tabl:16,tokenbigramsplitsymbolalpha:[],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":83,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":154,"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":151,tokentrigram:[],consid:[44,141,23,91,54,78,80,65],libmecab:[152,14,151],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":126,rescord:158,strict:[77,80],interfac:[7,131,3,4],chracterist:94,regard:[125,181],jun:[77,80],grn_obj_key_var_s:62,untag:109,longer:[42,16],notat:[7,125,150],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":79,"\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,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":97,grn_expr_creat:84,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"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":154,strongli:[164,129,14,152,101,137],"a\u3092\u6307\u5b9a\u3057\u3066tabl":113,user_column:167,incorrect:80,grn_db_text:84,grn_index_cursor_next:[120,125],gettext:[119,20],orient:[13,132,32],oneself:80,symbol:38,remove_tokenized_delimit:133,event_queri:[153,186,64,18,48,176],allow_upd:[108,181],comments_loc:184,hmm:184,directori:[40,131,125,7,9,77,27,188,175,64,80,119],potenti:125,"\u30c7\u30fc\u30e2\u30f3":97,"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:[90,3,91,94,95,68,48,7,9,10,147,148,77,188,54,114,108,110,150,85,189,16,58,59,158,65,22,163,121,46,172,96,27,127,176,80,178,184,181,132,136,35,139,119,38,117],grn_table_column:113,dist:151,"ctx_new\u3068\u3044\u3046queue\u306b":134,scalar:[],follow:[],disk:[77,78,178,65],ptr:[40,154],"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":154,init:[7,188,53,80,125],program:[150,131,95,125,7,187,9,64],"\u95be\u5024\u3092\u8d8a\u3048\u308b":70,neglig:80,liter:[],drildown:[],"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":70,libgcc_s_sjlj:80,rand_max:67,systemctl:141,failur:[7,77,19,80,151],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":97,longtext:[45,110],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":151,"\u304a\u3088\u3073":151,"help\u3067\u51fa\u529b\u3055\u308c\u308b":27,yappo:[42,125,80],tex:90,rate:[125,96],design:[7,13,108],sug:169,what:[],sub:[132,151],sum:[108,80,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,libstemm:80,themselv:[175,119],noraml:90,bottom_right_point:110,behaviour:125,shouldn:80,solari:[],cutter_check_leak:177,n_var:40,grn_ctx_init:[27,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":190,memcach:[],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,matsuu:154,grn_bad_address:2,grn_ctx_get_output_typ:16,gtihub:27,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":124,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":70,tokenunigram:[],"\u30ea\u30ea\u30fc\u30b9\u65e5":151,deprec:[108,11,97,125,7,75,10,27,107,80,65],ocelot:[27,125],suddenli:125,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[27,154],"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":151,"\u4ee5\u964d\u3092\u7121\u8996":154,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":154,"\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":45,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":155,grn_syntax_error:2,src_key_siz:113,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":56,known:[23,150,12,132,32,125,102,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":93,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":97,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":107,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":167,mecab_strerror:80,tahr:[14,80],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":155,cours:130,newlin:[27,112],divid:[13,132,150,122],rather:[108,12,85,122,95,114,28,38,178],rep_loc:167,divis:[],cmp0014:80,resourc:[114,80,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[37,107],"\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":168,overcommit:139,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6307\u5b9a\u3059\u308b":83,resours:17,"request\u3092\u9001\u308a\u307e\u3059":151,"short":[9,85],geo_dist:[],postfix:[142,23],caus:[181,13,125,7,27,150,80,65],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,mailarch:151,yahppo:125,grn_table_trunc:[27,113],logal:81,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":113,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":154,style:[],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"7\u30ea\u30ea\u30fc\u30b9":[],soccer:44,"return":[],normalzi:161,grn_table_sort_asc:113,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":69,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":121,ff9e:189,innodb:132,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":140,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":145,friendship:44,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":151,grn_text_vprintf:80,weight:[],needless:[7,77,112,125],yoshida:125,expect:[13,38,80,178],errror:178,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":113,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":79,socket_is_not_connect:172,"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":151,footnot:[75,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":168,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":27,advanc:[],differ:[0,108,75,4,12,131,13,181,7,115,74,80,178,77,78,150,38,54,65],content_type_len:7,thread:[40,83,131,132,97,125,16,136,54,148,80,121],"\u306exml\u51fa\u529b\u5bfe\u5fdc":154,"\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":69,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":113,grn_selector_func:80,"apt\u306e\u5834\u5408":151,notifi:103,feel:80,groonga_database_auto_cr:[],blank:[189,38],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":167,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,gpl:42,"\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":154,script:[],goronga:101,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":151,gpg:151,exclude_t:125,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":177,grn_column_name_id:121,"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":144,option:[],"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":151,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"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":151,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[79,121],kind:[132,74,3,91,130],remot:[],remov:[163,83,24,125,7,13,170,9,10,27,79,112,80,46],rep_http:167,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":167,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":177,well:[23,132,32,125,102,188,9],ruby_ev:[],expir:[9,117],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":167,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":154,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":97,"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":180,"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":70,park:184,function_not_impl:172,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":60,reach:139,keyword_s:84,"\u30e1\u30fc\u30c8\u30eb":168,grn_obj_incr:79,latitude_in_degre:150,"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":113,grn_column_name_kei:121,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":168,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":70,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[145,6,72,8,155,190,107],penalti:125,firewood:[7,125],"\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:40,hit:[108,125,158],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":45,pair_queri:[153,18,176,186,48],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":113,obtain:40,longest:[27,113,150],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":36,"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":70,grn_column_name_nsubrec:121,grn_obj_persist:[113,121],"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":144,grn_success:[40,108,2,83,5,16,17,19,148,84,121],armhf:80,"\u6570\u5024":144,"\u30b3\u30df\u30c3\u30c8":151,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],art:[184,150],dump:[],highight_ful:161,ff01:77,arc:90,tobbi:115,grn_obj_with_weight:121,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":121,jemalloc:80,grn_table_differ:113,"\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":154,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],latin:97,"\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":70,succeed:[2,3,73,136,170,127,188],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,solv:[13,122,12],solr:150,socket_not_initi:172,grn_table_get:[113,112],"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":45,context:[32,16,17,182,9,27,79,84],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":121,grn_table_sort_flag:113,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":97,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:125,"\u5f93\u3063\u3066":108,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\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":151,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":45,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":168,conifugr:81,grn_file_exist:2,beforehand:164,close_tag1:161,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":167,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":134,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":167,nakai:125,behavior:[7,115,38,80,96],input_file_nam:135,xvzf:[164,129,24,14,152,188,89],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"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":167,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":151,table_buff:16,score_valu:77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":167,minim:[9,96],grn_obj_column:79,grn_column_t:121,"\u5065\u4f5c":44,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":154,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":45,higher:[153,108],"\u975e\u4e92\u63db":27,x86:[27,101,77],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":126,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":167,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":144,lower:[108,90,3,65],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":167,searchabl:114,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":113,propos:[169,108],table_:[94,65],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":67,"3\u884c\u76ee":167,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":69,teruya:77,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":79,grn_plugin_get_system_plugins_dir:27,table2:113,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":69,gem1:151,table1:113,docutil:151,retry_max:172,collect:[135,132,184],"\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":151,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":69,"\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,"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:172,"log\u3067\u3059":97,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,93,79,53,118,121],blog_titl:3,retri:19,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":151,leftmost:150,proc:[40,164,108,93,14,125,152,129,53,118],form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":60,squeez:[125,151],maximium:108,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,brooklyn:184,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:125,lager:125,myisam:132,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":190,"\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":177,shimoda:154,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":151,question:[77,78],live:[184,65],fast:[92,90,3,12,94,47,100,71,54,108,75,150,58,65,44,122,161,109,78,178,181,132,32,135,191],adjac:[38,181],arithmet:[],"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":167,grn_proc_get_info:53,wno:27,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u554f\u984c\u3092\u4fee\u6b63":154,aramaki:27,piro:80,consist:[108,3,181,48,172,38,80],"benchmark\u306f":167,caller:53,"\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":108,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":97,test_text_otoj:177,highlight:[161,47],radious_or_point:168,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,"\u3059\u308b\u3068groonga":151,horikoshi:27,unauthent:[7,152],grn_expr_append_const_int:84,"\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":144,grn_socket_not_initi:2,oniguruma:77,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":154,weight3:85,weight2:[7,108,85],weight1:[7,108,85],comments2:78,grn:[9,157],gro:[131,32],"\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":144,nice:114,"\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":167,grn_expr_add_var:84,"\u540c\u6642\u306b":134,"\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":151,konishi:125,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":145,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":146,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":151,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":97,xcode:89,"\u7e70\u308a\u8fd4\u3057\u6570":167,mainstream:132,w64:151,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":69,"grn_expr\u306f":69,relev:[132,3],ranguba:[80,85],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,nfkc:189,pleas:[0,141,3,83,12,122,26,77,28,188,88,80,119],smaller:[75,85,132,114,148,65],memset:77,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":151,compat:[164,129,14,133,54,152,9,77,127,189,80],compar:[108,181,132,32,7,80],mainlin:[77,80],jekyl:151,grn_info:[],"314e":150,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,usag:[],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":45,larger:[108,85,94,32,48,172,139,64,80],larget:103,"_name":65,mitsuo:125,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":36,typic:108,appli:[],approxim:[7,27,75],motoi:125,apt:[151,14,7,152,20,81],api:[],feb:23,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,usa:130,few:[108,54,191],usr:[22,174,97,9,10,188,177,89],sort:[],grn_db_creat:83,"\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":155,tokenbigramignoreblanksplitsymbolalpha:[],memos_cont:163,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":154,"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":124,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,annot:125,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\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":177,endian:80,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":79,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":45,grn_column:[],tar:[164,129,151,24,14,152,188,89],tag:[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":154,"\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":151,grn_set_lock_timeout:19,pure:38,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":45,six:[148,3],"100x100":168,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":105,sid:[27,151,80,126],instead:[92,141,91,94,97,47,7,101,9,10,77,188,107,164,108,75,150,16,158,178,65,161,125,172,27,80,81,181,32,137,189],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":151,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":151,"load\u30b3\u30de\u30f3\u30c9":1,attent:108,"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":69,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":154,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":179,light:59,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":105,"1\u884c\u76ee":167,freebsd:[],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":177,"\u4eac\u90fd":[70,144,38],location_in_input:135,ouput:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":167,superior:[132,32],"log_level\u306f":6,condtion:181,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"homebrew\u3078pul":151,bye:[46,150,163,108,181],"\u4f8b":[],crash:[125,7,136,59,77,27,80],"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":151,keys_zon:9,"\u884c":177,devel:[164,129],shinjyuku:74,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":151,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":177,edit:[],grn_socket_is_already_connect:2,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":167,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":151,our:[26,119],grn_obj_column_index:[120,121],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":167,"gz\u306eversion\u304a\u3088\u3073vers":151,out:[164,129,182,14,152,101,137,104,78,80],longitude_in_degre:150,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":154,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":151,dcb314:80,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":134,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,grn_ctx_send:[17,106,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":151,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":70,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,york:[184,75],dictionari:[164,154,125,7,189,38,80],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,column3:12,lte:90,"\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":151,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,"\u8aac\u660e":[],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":154,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"request\u3092\u9001\u308a\u307e\u3057\u305f":151,tetsuharu:80,prioriti:[132,108,176],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":53,grn_obj_get:79,unknown:[123,112],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"akio\u3055\u3093":154,grn_dat_repair:112,shell:[77,188,181,178],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":37,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"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":63,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":167,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":154,"\u3092\u4f5c\u6210\u3057\u307e\u3059":73,emac:119,sed:[7,27],exec_format_error:172,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":124,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":45,"4097byte":94,"\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":97,"shimada\u3055\u3093\u304c\u5831\u544a":154,grn_ii_estimate_size_for_queri:77,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":79,which:[40,141,90,142,91,5,97,46,7,100,102,147,3,143,164,108,75,150,13,115,64,44,68,23,125,182,74,170,172,78,176,80,181,130,131,132,133,187,184,109],grn_obj_delete_by_id:[27,79],"\u30db\u30b9\u30c8\u540d\u3068":167,who:[],"100cent":38,default_token:[],why:[108,125,141],"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,determin:[108,3,158],"_id":[3,91,48,100,102,127,143,108,150,85,153,114,59,18,60,157,44,163,121,70,74,170,96,78,79,176,80,178,181,130,135,189],someth:80,grn_mecab_chunked_tokenize_en:77,"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":63,word1:[7,108,181,150],word2:[7,108,181,150],memo_index:80,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":151,your_github_account:119,practic:[13,132,80],grn_obj_with_posit:121,daiki:[7,27,154,146],local:[150,151,132,97,9,20,188,119],"150x100":34,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":144,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":144,subrecord:125,grn_cursor_prefix:63,candidate2:153,partit:23,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":167,view:[],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":151,knowledg:132,"1073741824\u306e\u6574\u6570\u3067":60,"\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":97,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":63,index_tag:44,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":167,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":155,dll:[7,27,40,80],"v1\u306e\u5024\u306e\u4e2d\u306b":69,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":124,yaman:[125,80],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":168,job:167,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":45,homebrew:[],exclam:77,addit:[],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":179,april:151,"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":151,hyphen:[3,65],"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,respect:[7,13,74,184],rpm:[164,129,151,125,7,27,112,80],target_nam:[],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":27,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,mike:170,spammer:[122,12],"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":124,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,168],roonga:[169,181,150],"\u30c6\u30fc\u30d6\u30ebentry\u306b":73,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":168,"21th":125,cursor:[27,110],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":60,"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":70,layer:77,customiz:32,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":45,"\u3072\u308d\u3086\u304d":143,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":151,avg:[179,108,80],"\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":154,grn_expr_append_op:[69,84],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":167,"\u6ce8\u610f":113,"\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":154,difficult:132,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"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":144,"\u7d9a\u3044\u3066":70,"0x10":172,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":124,english:[0,108,125,26,20,27,38,176,80,119],grn_content_xml:106,uzulla:27,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":82,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":151,do_http:167,users_nam:115,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":97,"\u3082\u3057groonga":167,euc_jp:188,"key\u306b\u306f":113,amd64:151,other:[],host2:178,host1:178,"\u30ab\u30e9\u30e0\u578b1":108,"\u307e\u305f\u306f":167,"table\u306fcolumn\u3068\u306f\u5225\u306b":113,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":123,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":79,know:[44,108,130,184,61,77,38],press:119,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u30ab\u30e9\u30e0\u578bn":108,earch:90,incres:80,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,exceed:165,no_child_process:172,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[27,125,80,20],vojtovich:80,column_inform:95,lead:[108,3,32],grn_obj_get_nhook:93,leak:[73,154,125,7,27,80],lear:48,grn_address_is_in_us:2,time_stamp:148,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":121,investig:[165,125,130],acronym:172,tanab:125,rare:[77,125],"\u305d\u308c\u305e\u308c":177,kanako:125,disabl:[108,154,181,131,148,20,125,7,9,77,27,188,112,176,80],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],own:[23,150,13,132,7,84],grn_operation_timeout:2,"\u6570\u5b57":167,grn_ii:[],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":97,grn_id:[40,41,120,121,86,16,113,63,79,84],yuya:80,automat:[22,44,3,181,94,9,61,10,150,174,119],automak:154,grn_expr_append_const_str:84,grn_default_query_logger_get_path:7,"145508000x":75,transfer:[],grn_command_version_min:116,appl:189,replac:[150,186,77,178,64,80,91],"var":[40,141,69,95,97,9,61,188,53],"\u30ad\u30fc\u304c":97,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":151,"\u4ee5\u5916\u306e\u5834\u5408\u306f":108,"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":69,"\u73fe\u5728":190,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":97,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,kana:[153,18,176,186,48],palallel:151,made:[7,27,3],tab:[77,106,175,4,172],grn_logical_range_filter_en:77,whether:[108,2,23,83,115,13,165,158,96,7,75,100,182,9,61,153,142,127,79,80,181],troubl:119,record:[],below:[58,104,59,181],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":79,"\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,145,6,72,73,126,8,155,157,159,190,105,37,140,107],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":116,ff76:189,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u3067\u306f\u6607\u9806":113,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":151,makecach:[7,129],"\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":151,book:150,bool:[163,181,13,45,125,46,143],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":97,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":105,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":79,"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":108,"\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":93,emerg:[6,148,8,97,9],allow_leading_not:108},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","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/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","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/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/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/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/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/table_remove","news/1.1.x","reference/commands/ruby_eval","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","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/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.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013/01/29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <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.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <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","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\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. Tokenizers","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.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. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</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.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</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.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.32. <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.28. <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.35. <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.20.11. grn_expr","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.41. <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. groonga command","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.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.38. <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.33. <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.43. <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.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.22. <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.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","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.36. <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.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.42. <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.26. <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.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.20. <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":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,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:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[179,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"-e":[97,0,1,"cmdoption-e"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[179,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[167,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[167,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[167,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,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:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,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:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[167,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[167,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[167,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[167,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,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:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[167,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,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:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[167,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,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":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,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:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,154],code:2,senna:42,"\u6539\u826f":[27,1,154,146],"\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":151,queri:[108,91,132,115,9,148,29,181],global:19,localstatedir:188,"4\u30ea\u30ea\u30fc\u30b9":154,prefix:[69,150,143,188,176,54,181],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,follow:184,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,keywordn:161,value_typ:65,depend:[188,20],grn_type:62,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":151,drilldown_offset:108,specif:[184,78,9,21],send:[102,119],column_cr:73,column_or_valu:96,table_list:105,downtim:54,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[167,39],query_str:115,"\u524d\u63d0\u6761\u4ef6":151,grn_command_vers:116,sourc:[164,129,14,152,101,188,89],string:[13,46,90,133,150],groonga:[55,141,42,151,186,131,132,134,97,98,9,173,36,88,64,167,119],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":151,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,drilldown_calc_target:108,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[179,167],syntax:[90,142,6,95,97,46,47,100,145,103,10,147,105,107,108,75,150,153,190,58,115,59,155,61,166,159,65,22,68,49,23,157,161,72,73,126,74,170,117,96,76,127,174,178,82,181,182,133,32,136,8,109,37,140],brows:9,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":45,administr:[9,102],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":45,sub_filt:182,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":151,list:[0,2,26],scalar:149,vector:[13,85],drilldown_output_column:108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[179,167],direct:9,sign:150,aggreg:132,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":144,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":144,index:[66,44,3,132,114,138,78,178,65],what:38,xor:150,learner:64,"files\u306e\u5b9f\u884c":151,delet:170,version:54,"new":[77,42,119],grn_info:41,full:[3,181,132,99,74,78],hash:184,gener:[119,20],learn:[131,64,169,18,48,176],lock_clear:136,bodi:135,let:184,solari:24,ubuntu:14,path:[68,188,54],grn_user_data:118,valu:[90,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,184,133,32,136,8,109,37,140],"\u95a2\u4fc2\u5f0f":69,table_hash_kei:94,search:[44,108,3,91,92,132,85,48,74,18,184,143,150,78,99,176,181],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":151,shift:150,blogroonga:151,memcach:51,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":151,chang:42,narrow:74,"\u9759\u7684\u89e3\u6790":177,point:150,"windows\u5411\u3051\u306e\u5834\u5408":151,match_column:[115,78,108],tokenbigramsplitsymbolalpha:38,appli:85,modul:9,phrase:181,"debian\u7cfb\u306e\u5834\u5408":151,api:[87,30],grn_db:83,request_cancel:103,instal:[175,188,101,137,20],total:108,define_selector:155,select:108,httpd:[131,141,9,98,64],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,from:[164,129,14,152,101,188,64,89],zip:101,commun:26,query_expand:[115,108],regist:10,upgrad:54,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":70,column_remov:72,call:150,"\u30c6\u30b9\u30c8\u65b9\u6cd5":177,key_typ:65,scope:182,query_expans:108,"\u30d6\u30ed\u30b0":151,sort:[74,3,130],token_filt:[90,65],relat:[78,108,9,64],benchmark:167,flag:[46,90,133,172,65],grn_content_typ:106,tokenbigramignoreblanksplitsymbolalpha:38,cach:[108,9],"\u4f7f\u3044\u65b9":167,prepar:91,work:[119,18,176,48],tag:[44,184,65],clearlock:107,"\u7279\u6b8a\u547d\u4ee4":167,control:150,grn_column:121,geo_in_rectangl:34,process:[139,148],lock:132,topic:15,sphere:75,liter:150,avoid:165,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":124,groonga_cache_limit:9,grndb:61,onlin:114,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":151,unsign:150,filter:[142,163,23,108],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":143,multipl:[78,150,130],secur:[102,150],"\u540d\u524d":[179,67,180,111,45,167,34,60,36,168],divis:150,grn_table_select:69,open_tagn:161,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":177,simpl:108,updat:[132,119,176,151,20],message_pack_install_prefix:188,tokenregexp:38,"\u7406\u7531":124,max:[142,96,23,117,139],clone:119,geoloc:[92,184],mac:89,offlin:114,date:13,log_level:6,data:[181,13,184,176,48,9,150,64,65],table_dat_kei:94,alloc:165,"\u66f8\u5f0f":[179,67,180,111,167,34,36,168],tokenbigram:38,tokendelimit:38,explicit:181,issu:[0,102],callback:69,combin:181,normalizernfkc51:189,freebsd:139,suggest:[131,153,186,48,169,50,64],table_token:46,order:142,origin:150,adjust:108,help:188,rand:67,hypertext:102,lz4:188,"3\u30ea\u30ea\u30fc\u30b9":154,gqtp:[141,172,128],paramet:[90,142,6,95,97,46,47,8,145,109,103,147,105,127,107,108,75,153,58,115,59,155,157,190,159,64,65,68,23,161,72,73,126,170,117,96,78,82,182,131,133,136,100,139,37,140],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":151,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":151,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":151,group:[178,181,150],thank:[125,7,77,27,112,80],how:[0,85,165,172,48,114,18,102,35,88,15,176,119],fix:[42,125,7,77,27,80],"\u5b9f\u9a13\u7684":27,platform:188,window:101,restart:141,persist:94,tsv:[135,175],mail:[0,26],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":177,"\u4f8b\u3048\u3070redmin":124,grn_hook:93,html_untag:109,"return":[90,2,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,133,32,136,8,109,37,140],greater:[69,181,150],worker_process:9,rectangl:75,"8\u30ea\u30ea\u30fc\u30b9":154,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":177,"\u8fd4\u5024":[67,108,180,111,34,36,168],now:180,highlight_ful:161,introduct:[169,20],choic:178,term:150,name:[59,78,186,65],edit:119,revers:[44,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":144,authent:54,kern:139,micro:184,token:[132,163,90,38],exampl:[41,5,93,86,56,53,110,116,16,17,113,62,25,118,120,121,165,123,63,172,79,81,83,186,84],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":171,each:78,ruby_load:68,"\u30b3\u30de\u30f3\u30c9":36,"benchmark\u5b9f\u884c\u7d50\u679c":167,grn_encod:123,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,domain:130,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[78,85],"0\u30ea\u30ea\u30fc\u30b9":[27,154,146],normalizerauto:189,http:[141,191,4,54,102],todo:[115,32],"http\u30b5\u30fc\u30d0\u30fc":36,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":124,groonga_query_log_path:9,db_api:69,query_flag:108,"release\u306e\u5b9f\u884c":151,normalizer_nam:161,quantifi:178,"\u5bfe\u5fdc":124,correct:[169,18],red:151,nofil:139,"1\u30ea\u30ea\u30fc\u30b9":[27,154],shut:9,proxi:9,advanc:108,free:132,target_valu:100,substitution_t:115,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,releas:[125,7,77,27,112,80],database_path:[131,64],grn_match_escal:25,launch:131,recov:61,synopsti:186,assign:[35,181,150],oper:[185,3,150],softwar:20,rang:[3,65],plugin_regist:22,groonga_log_path:9,suffix:[69,181,150],"7\u30ea\u30ea\u30fc\u30b9":[1,154],"\u8aac\u660e":[179,67,180,111,45,167,34,60,36,168],arrai:150,number:[139,108,188],edit_dist:111,groonga_database_auto_cr:9,max_map_count:139,open:139,primari:143,size:172,script:[147,150],"\u4fee\u6b63":[27,1,154,146],messag:188,tune:139,termin:172,store:[132,65],option:[46,75,142,131,133,97,186,115,90,23,64],relationship:44,travi:81,tool:[188,9,102],specifi:[75,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":11,tokenfilterstem:163,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":69,than:[181,150],not_equ:69,keyword:184,remot:102,"grntest\u306e\u6e96\u5099":151,grn_table_cursor:63,charact:178,column_list:95,grn_expr:[69,84,158],latitud:[13,132],favorit:184,ruby_ev:147,plugin_unregist:174,tabl:[66,108,3,94,95,46,59,184,78,64,65],"null":150,packag:[188,141,14],bitwis:150,drilldown_limit:108,built:[189,38,12],min:[142,23,96],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":69,also:[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,172,76,174,175,35,133,32,186,135,8,189,117],builtin:97,without:54,build:[164,129,14,152,101,188,89],highlight_html:47,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,mroonga:132,"\u691c\u7d22\u306e\u6319\u52d5":144,normal:[85,90,133,189,65],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[154,146],object:150,oracl:24,statu:[82,172,186],regular:[178,181,150],"\u7d44\u8fbc\u578b":45,default_token:65,"class":178,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":151,groonga_log_level:9,geoindex:184,table_pat_kei:94,request:[131,35,9,119],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":69,left:150,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":144,"\u539f\u56e0":70,lexicon:[99,3,65],cache_limit:117,text:[3,181,132,99,74,78],grn_index_cursor:120,greater_equ:69,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":151,threshold:188,xml:135,access:[102,54],explicitli:75,locat:[132,74,75,175,44],execut:52,ellipsoid:75,grnslap:179,configur:[19,9,20,188,54,81],solut:165,max_bord:[142,23,96],use_html_escap:161,"benchmark\u547d\u4ee4":167,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":70,contribut:[88,15],variou:[13,74],get:[131,3],express:[178,181,150],stop:141,cannot:165,wheezi:152,report:0,geo:[132,150,44],requir:[108,75,23,131,95,133,46,115,59,90,109,103,142,127],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:172,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":124,patch:119,new_nam:59,tokenfilterstopword:163,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":190,contain:69,table_cr:65,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":177,summari:[2,12,6,90,9,10,75,5,190,16,17,19,86,106,22,23,25,32,8,37,38,40,41,145,163,47,53,110,58,59,61,63,64,65,68,49,72,73,76,79,82,83,93,94,95,97,100,103,105,56,107,108,109,85,116,115,113,118,120,121,122,161,126,127,131,35,133,135,136,139,140,142,147,149,153,155,157,159,123,46,62,166,170,117,96,174,175,178,182,183,138,189],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":151,set:[131,9],modulo:150,dump:157,geo_dist:75,see:[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,172,76,174,175,35,133,32,186,135,8,189,117],result:[3,130],arg:69,scorer_tf_idf:122,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":177,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":124,databas:[3,54],column_renam:59,label:108,less_equ:69,score:108,between:96,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":151,kei:[108,143],numer:13,javascript:74,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":151,style:108,"\u5bfe\u7b56\u65b9\u6cd52":70,"\u5bfe\u7b56\u65b9\u6cd51":70,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":167,homebrew:89,addit:[189,150,99],instant:132,plugin:[40,188],geopoint:184,equal:[69,181,150],against:78,tutori:156,logic:[181,150],improv:[42,125,7,77,27,112,80],"po\u306e\u5b9f\u884c":151,load:[58,184,3,9,85],among:78,"twitter\u7de8":124,overview:[13,132,5],period:42,patricia:143,header:[135,172],close_tagn:161,shutdown:140,linux:[152,139],grn_proc:53,tokenbigramignoreblanksplitsymbol:38,quit:159,"\u5236\u9650\u4e8b\u9805":167,target_nam:[136,127],invert:132,"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,add:119,json:[58,135],basic:[3,150],tokenmecab:38,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,log_put:8,drilldown_calc_typ:108,resolut:44,"2\u30ea\u30ea\u30fc\u30b9":154,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":151,logical_range_filt:142,i18n:119,in_valu:100,"case":135,drildown:130,multi:54,gnu:152,zlib:188,cast:57,"\u691c\u7d22":144,error:[135,165],anchor:178,pack:188,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":177,"\u6982\u8981":11,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":151,"\u5f15\u6570":[179,67,111,167,34,168],filter_str:182,archiv:14,cento:129,synopsi:[131,9,64],develop:162,fedora:164,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":151,grn_cach:17,perform:[9,54],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,make:[188,151],who:184,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,binari:51,html:[109,119,20],output_column:[108,142],document:[55,15,20],messagepack:135,complet:[169,176],proxy_cach:9,expans:91,nest:78,temporari:94,user:184,engin:132,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":151,expand:29,desctipion:186,sortbi:108,overcommit_memori:139,person:14,client:[187,172],command:[11,3,4,131,97,31,102,61,54],gzip:54,latest:151,comment:184,construct:114,protocol:[51,102,172],just:85,less:[69,181,150],min_bord:[142,23,96],"5\u30ea\u30ea\u30fc\u30b9":154,languag:119,approximate_typ:75,hashtag:184,point1:75,mmap:165,defrag:37,point2:75,blog:184,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":177,macport:89,geo_in_circl:168,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":151,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":151,tokenunigram:38,match:[188,181,150],format:[135,108,3,58,148,175],read:[132,176],tokendelimitnul:38,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":70,characterist:[132,94],truncat:127,daemon:172,like:74,success:135,maxfileperproc:139,manual:43,integ:150,server:[132,141,172,102,33],logical_t:[142,23],"boolean":[13,150],cascad:170,output:[135,108,3,4,119],snippet_html:32,normalizer_list:49,old:77,twitter:26,log_reopen:190,sampl:[181,150],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,librari:[132,188],tokenbigramsplitsymbolalphadigit:38,confirm:119,table_no_kei:94,per:139,tracker:0,exit:186,condit:[74,108,181],scorer_tf_at_most:183,refer:[40,41,43,93,86,106,53,56,5,85,13,116,16,17,113,19,25,118,44,120,121,62,123,63,110,79,83,84],core:54,range_filt:76,run:[172,102,20],tokenizs:38,compress:54,view:3,usag:[90,142,4,12,6,95,97,46,47,100,145,9,103,10,147,105,107,108,75,85,153,190,58,115,59,155,61,166,159,64,65,22,68,49,23,157,122,161,72,149,73,126,170,117,96,76,127,174,175,178,82,182,131,138,109,133,32,136,8,139,37,140],tokenizer_list:166,tokenbigramsplitsymbol:38,"\u30d3\u30eb\u30c9\u6642\u306etip":151,repositori:[104,119],offset:[108,142],post:[184,9,54],subtract:150,comparison:[150,54],about:99,column:[66,149,75,3,181,130,85,132,161,47,60,138,71,78],memori:[165,139],page:108,"\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":124,"x\u306e\u304a\u77e5\u3089\u305b":[1,154,146],tokentrigram:38,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":177,ppa:14,match_escalation_threshold:108,grn_ii:86,"\u4f8b":[67,168,111,70,34,180],"float":150,encod:188,dataset:186,down:[74,9],grn_ctx:16,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,storag:132,your:119,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":45,log:[148,188,64,54],transfer:102,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":167,support:92,"\u5909\u66f4":154,submit:0,custom:54,avail:[163,9],start:141,arithmet:150,"\u306e\u66f4\u65b0":151,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":151,"function":[160,150],tokenbigramignoreblanksplitsymbolalphadigit:38,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":151,"\u691c\u7d22\u4f8b4":69,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":69,"\u691c\u7d22\u4f8b2":69,"\u691c\u7d22\u4f8b1":69,translat:119,drilldown_sortbi:108,line:[131,97,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":151,pull:119,munin:188,type:[13,184],record:[94,108,3],limit:[66,108,130,85,94,175],inform:[74,99],similar:[18,150,69],grn_tabl:113,"\u611f\u8b1d":[27,1,154,146],featur:92,bigram:184,creat:[3,85,184,186,78,65],trie:143,flow:119,grn_obj:79,groonga_databas:9,mode:[46,90,69],"homebrew\u306e\u66f4\u65b0":151,right:150,file:[186,139,175,64,54,119],check:[126,61],sharabl:132,tokenbigramignoreblank:38,extract:[150,48],grn_search:56,"default":[188,11],other:[188,178],logical_count:23,"\u30c7\u30fc\u30bf\u578b":45,grn_geo:110,"hat\u7cfb\u306e\u5834\u5408":151,scorer:[74,108,12],cooccurr:[18,176,48],drilldown:[108,130],debian:152,longitud:[13,132],groonga_base_path:9,escal:188,"\u691c\u7d22\u4f8b3":69,pseudo:60,cpu:54,table_remov:145,queryexpandertsv:175,time:[13,184,150],escap:[181,178],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":151,shard_kei:[142,23]}})
@@ -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.0 documentation</title>
10
+ <title>5. Server &mdash; Groonga v5.0.1-42-g4d10df1 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.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
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.0 documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1 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 role="document">
32
+ <body>
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" role="navigation" aria-label="related navigation">
50
+ <div class="related">
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.0 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 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" role="main">
69
+ <div class="body">
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>
@@ -78,13 +78,14 @@
78
78
  <li class="toctree-l2"><a class="reference internal" href="server/package.html#groonga-server-http">5.1.3. groonga-server-http</a></li>
79
79
  </ul>
80
80
  </li>
81
- <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.2. GQTP</a></li>
82
- <li class="toctree-l1"><a class="reference internal" href="server/http.html">5.3. HTTP</a><ul>
83
- <li class="toctree-l2"><a class="reference internal" href="server/http/comparison.html">5.3.1. Comparison</a></li>
84
- <li class="toctree-l2"><a class="reference internal" href="server/http/groonga.html">5.3.2. groonga</a></li>
85
- <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
81
+ <li class="toctree-l1"><a class="reference internal" href="server/http.html">5.2. HTTP</a><ul>
82
+ <li class="toctree-l2"><a class="reference internal" href="server/http/comparison.html">5.2.1. Comparison</a></li>
83
+ <li class="toctree-l2"><a class="reference internal" href="server/http/groonga.html">5.2.2. groonga</a></li>
84
+ <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
86
85
  </ul>
87
86
  </li>
87
+ <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a></li>
88
+ <li class="toctree-l1"><a class="reference internal" href="server/memcached.html">5.4. Memcached binary protocol</a></li>
88
89
  </ul>
89
90
  </div>
90
91
  </div>
@@ -93,7 +94,7 @@
93
94
  </div>
94
95
  </div>
95
96
  </div>
96
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
97
+ <div class="sphinxsidebar">
97
98
  <div class="sphinxsidebarwrapper">
98
99
  <h4>Previous topic</h4>
99
100
  <p class="topless"><a href="tutorial/query_expansion.html"
@@ -101,14 +102,12 @@
101
102
  <h4>Next topic</h4>
102
103
  <p class="topless"><a href="server/package.html"
103
104
  title="next chapter">5.1. Server packages</a></p>
104
- <div role="note" aria-label="source link">
105
- <h3>This Page</h3>
106
- <ul class="this-page-menu">
107
- <li><a href="_sources/server.txt"
108
- rel="nofollow">Show Source</a></li>
109
- </ul>
110
- </div>
111
- <div id="searchbox" style="display: none" role="search">
105
+ <h3>This Page</h3>
106
+ <ul class="this-page-menu">
107
+ <li><a href="_sources/server.txt"
108
+ rel="nofollow">Show Source</a></li>
109
+ </ul>
110
+ <div id="searchbox" style="display: none">
112
111
  <h3>Quick search</h3>
113
112
  <form class="search" action="search.html" method="get">
114
113
  <input type="text" name="q" />
@@ -125,7 +124,7 @@
125
124
  </div>
126
125
  <div class="clearer"></div>
127
126
  </div>
128
- <div class="related" role="navigation" aria-label="related navigation">
127
+ <div class="related">
129
128
  <h3>Navigation</h3>
130
129
  <ul>
131
130
  <li class="right" style="margin-right: 10px">
@@ -137,10 +136,10 @@
137
136
  <li class="right" >
138
137
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
139
138
  >previous</a> |</li>
140
- <li><a href="index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
139
+ <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
141
140
  </ul>
142
141
  </div>
143
- <div class="footer" role="contentinfo">
142
+ <div class="footer">
144
143
  &copy; Copyright 2009-2015, Brazil, Inc.
145
144
  </div>
146
145
  </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. GQTP &mdash; Groonga v5.0.0 documentation</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.1-42-g4d10df1 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.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
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.0 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
- <link rel="next" title="5.3. HTTP" href="http.html" />
31
- <link rel="prev" title="5.1. Server packages" href="package.html" />
30
+ <link rel="next" title="5.4. Memcached binary protocol" href="memcached.html" />
31
+ <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
32
32
  </head>
33
- <body role="document">
33
+ <body>
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="../index.html">
@@ -48,19 +48,19 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related" role="navigation" aria-label="related navigation">
51
+ <div class="related">
52
52
  <h3>Navigation</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
55
55
  <a href="../genindex.html" title="General Index"
56
56
  accesskey="I">index</a></li>
57
57
  <li class="right" >
58
- <a href="http.html" title="5.3. HTTP"
58
+ <a href="memcached.html" title="5.4. Memcached binary protocol"
59
59
  accesskey="N">next</a> |</li>
60
60
  <li class="right" >
61
- <a href="package.html" title="5.1. Server packages"
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.0 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,10 +68,10 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body" role="main">
71
+ <div class="body">
72
72
 
73
73
  <div class="section" id="gqtp">
74
- <h1>5.2. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
74
+ <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
75
75
  <p>TODO</p>
76
76
  <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga command</em></a>.</p>
77
77
  </div>
@@ -80,22 +80,20 @@
80
80
  </div>
81
81
  </div>
82
82
  </div>
83
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
83
+ <div class="sphinxsidebar">
84
84
  <div class="sphinxsidebarwrapper">
85
85
  <h4>Previous topic</h4>
86
- <p class="topless"><a href="package.html"
87
- title="previous chapter">5.1. Server packages</a></p>
86
+ <p class="topless"><a href="http/groonga-httpd.html"
87
+ title="previous chapter">5.2.3. groonga-httpd</a></p>
88
88
  <h4>Next topic</h4>
89
- <p class="topless"><a href="http.html"
90
- title="next chapter">5.3. HTTP</a></p>
91
- <div role="note" aria-label="source link">
92
- <h3>This Page</h3>
93
- <ul class="this-page-menu">
94
- <li><a href="../_sources/server/gqtp.txt"
95
- rel="nofollow">Show Source</a></li>
96
- </ul>
97
- </div>
98
- <div id="searchbox" style="display: none" role="search">
89
+ <p class="topless"><a href="memcached.html"
90
+ title="next chapter">5.4. Memcached binary protocol</a></p>
91
+ <h3>This Page</h3>
92
+ <ul class="this-page-menu">
93
+ <li><a href="../_sources/server/gqtp.txt"
94
+ rel="nofollow">Show Source</a></li>
95
+ </ul>
96
+ <div id="searchbox" style="display: none">
99
97
  <h3>Quick search</h3>
100
98
  <form class="search" action="../search.html" method="get">
101
99
  <input type="text" name="q" />
@@ -112,23 +110,23 @@
112
110
  </div>
113
111
  <div class="clearer"></div>
114
112
  </div>
115
- <div class="related" role="navigation" aria-label="related navigation">
113
+ <div class="related">
116
114
  <h3>Navigation</h3>
117
115
  <ul>
118
116
  <li class="right" style="margin-right: 10px">
119
117
  <a href="../genindex.html" title="General Index"
120
118
  >index</a></li>
121
119
  <li class="right" >
122
- <a href="http.html" title="5.3. HTTP"
120
+ <a href="memcached.html" title="5.4. Memcached binary protocol"
123
121
  >next</a> |</li>
124
122
  <li class="right" >
125
- <a href="package.html" title="5.1. Server packages"
123
+ <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
126
124
  >previous</a> |</li>
127
- <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
125
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
128
126
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
129
127
  </ul>
130
128
  </div>
131
- <div class="footer" role="contentinfo">
129
+ <div class="footer">
132
130
  &copy; Copyright 2009-2015, Brazil, Inc.
133
131
  </div>
134
132
  </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. HTTP &mdash; Groonga v5.0.0 documentation</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.1-42-g4d10df1 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.0',
18
+ VERSION: '5.0.1-42-g4d10df1',
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.0 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
- <link rel="next" title="5.3.1. Comparison" href="http/comparison.html" />
31
- <link rel="prev" title="5.2. GQTP" href="gqtp.html" />
30
+ <link rel="next" title="5.2.1. Comparison" href="http/comparison.html" />
31
+ <link rel="prev" title="5.1. Server packages" href="package.html" />
32
32
  </head>
33
- <body role="document">
33
+ <body>
34
34
  <div class="header">
35
35
  <h1 class="title">
36
36
  <a id="top-link" href="../index.html">
@@ -48,19 +48,19 @@
48
48
  </div>
49
49
 
50
50
 
51
- <div class="related" role="navigation" aria-label="related navigation">
51
+ <div class="related">
52
52
  <h3>Navigation</h3>
53
53
  <ul>
54
54
  <li class="right" style="margin-right: 10px">
55
55
  <a href="../genindex.html" title="General Index"
56
56
  accesskey="I">index</a></li>
57
57
  <li class="right" >
58
- <a href="http/comparison.html" title="5.3.1. Comparison"
58
+ <a href="http/comparison.html" title="5.2.1. Comparison"
59
59
  accesskey="N">next</a> |</li>
60
60
  <li class="right" >
61
- <a href="gqtp.html" title="5.2. GQTP"
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.0 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,10 +68,10 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body" role="main">
71
+ <div class="body">
72
72
 
73
73
  <div class="section" id="http">
74
- <h1>5.3. HTTP<a class="headerlink" href="#http" title="Permalink to this headline">¶</a></h1>
74
+ <h1>5.2. HTTP<a class="headerlink" href="#http" title="Permalink to this headline">¶</a></h1>
75
75
  <p>Groonga provides two HTTP server implementations.</p>
76
76
  <ul class="simple">
77
77
  <li><a class="reference internal" href="http/groonga.html"><em>groonga</em></a></li>
@@ -84,23 +84,23 @@ requires just a few command line options to run.</p>
84
84
  implementation. It is also fast and has many HTTP features.</p>
85
85
  <div class="toctree-wrapper compound">
86
86
  <ul>
87
- <li class="toctree-l1"><a class="reference internal" href="http/comparison.html">5.3.1. Comparison</a><ul>
88
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#performance">5.3.1.1. Performance</a></li>
89
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#using-multi-cpu-cores">5.3.1.2. Using multi CPU cores</a></li>
90
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#configuration-file">5.3.1.3. Configuration file</a></li>
91
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-prefix-path">5.3.1.4. Custom prefix path</a></li>
92
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-command-version">5.3.1.5. Custom command version</a></li>
93
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#multi-databases">5.3.1.6. Multi databases</a></li>
94
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#authentication">5.3.1.7. Authentication</a></li>
95
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#gzip-compression">5.3.1.8. Gzip compression</a></li>
96
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#post">5.3.1.9. POST</a></li>
97
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#https">5.3.1.10. HTTPS</a></li>
98
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#access-log">5.3.1.11. Access log</a></li>
99
- <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#upgrading-without-downtime">5.3.1.12. Upgrading without downtime</a></li>
87
+ <li class="toctree-l1"><a class="reference internal" href="http/comparison.html">5.2.1. Comparison</a><ul>
88
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#performance">5.2.1.1. Performance</a></li>
89
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#using-multi-cpu-cores">5.2.1.2. Using multi CPU cores</a></li>
90
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#configuration-file">5.2.1.3. Configuration file</a></li>
91
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-prefix-path">5.2.1.4. Custom prefix path</a></li>
92
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#custom-command-version">5.2.1.5. Custom command version</a></li>
93
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#multi-databases">5.2.1.6. Multi databases</a></li>
94
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#authentication">5.2.1.7. Authentication</a></li>
95
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#gzip-compression">5.2.1.8. Gzip compression</a></li>
96
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#post">5.2.1.9. POST</a></li>
97
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#https">5.2.1.10. HTTPS</a></li>
98
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#access-log">5.2.1.11. Access log</a></li>
99
+ <li class="toctree-l2"><a class="reference internal" href="http/comparison.html#upgrading-without-downtime">5.2.1.12. Upgrading without downtime</a></li>
100
100
  </ul>
101
101
  </li>
102
- <li class="toctree-l1"><a class="reference internal" href="http/groonga.html">5.3.2. groonga</a></li>
103
- <li class="toctree-l1"><a class="reference internal" href="http/groonga-httpd.html">5.3.3. groonga-httpd</a></li>
102
+ <li class="toctree-l1"><a class="reference internal" href="http/groonga.html">5.2.2. groonga</a></li>
103
+ <li class="toctree-l1"><a class="reference internal" href="http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
104
104
  </ul>
105
105
  </div>
106
106
  </div>
@@ -109,22 +109,20 @@ implementation. It is also fast and has many HTTP features.</p>
109
109
  </div>
110
110
  </div>
111
111
  </div>
112
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
112
+ <div class="sphinxsidebar">
113
113
  <div class="sphinxsidebarwrapper">
114
114
  <h4>Previous topic</h4>
115
- <p class="topless"><a href="gqtp.html"
116
- title="previous chapter">5.2. GQTP</a></p>
115
+ <p class="topless"><a href="package.html"
116
+ title="previous chapter">5.1. Server packages</a></p>
117
117
  <h4>Next topic</h4>
118
118
  <p class="topless"><a href="http/comparison.html"
119
- title="next chapter">5.3.1. Comparison</a></p>
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">
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">
128
126
  <h3>Quick search</h3>
129
127
  <form class="search" action="../search.html" method="get">
130
128
  <input type="text" name="q" />
@@ -141,23 +139,23 @@ implementation. It is also fast and has many HTTP features.</p>
141
139
  </div>
142
140
  <div class="clearer"></div>
143
141
  </div>
144
- <div class="related" role="navigation" aria-label="related navigation">
142
+ <div class="related">
145
143
  <h3>Navigation</h3>
146
144
  <ul>
147
145
  <li class="right" style="margin-right: 10px">
148
146
  <a href="../genindex.html" title="General Index"
149
147
  >index</a></li>
150
148
  <li class="right" >
151
- <a href="http/comparison.html" title="5.3.1. Comparison"
149
+ <a href="http/comparison.html" title="5.2.1. Comparison"
152
150
  >next</a> |</li>
153
151
  <li class="right" >
154
- <a href="gqtp.html" title="5.2. GQTP"
152
+ <a href="package.html" title="5.1. Server packages"
155
153
  >previous</a> |</li>
156
- <li><a href="../index.html">Groonga v5.0.0 documentation</a> &raquo;</li>
154
+ <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
157
155
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
158
156
  </ul>
159
157
  </div>
160
- <div class="footer" role="contentinfo">
158
+ <div class="footer">
161
159
  &copy; Copyright 2009-2015, Brazil, Inc.
162
160
  </div>
163
161
  </body>