rroonga 4.0.3-x86-mingw32 → 4.0.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (682) hide show
  1. checksums.yaml +13 -5
  2. data/Gemfile +1 -1
  3. data/README.textile +1 -1
  4. data/Rakefile +8 -1
  5. data/bin/grndump +1 -1
  6. data/bin/grntest-log-analyze +1 -1
  7. data/bin/groonga-database-inspect +1 -1
  8. data/bin/groonga-index-dump +1 -1
  9. data/doc/text/news.textile +28 -0
  10. data/ext/groonga/extconf.rb +12 -2
  11. data/ext/groonga/rb-grn-accessor.c +2 -1
  12. data/ext/groonga/rb-grn-array-cursor.c +1 -1
  13. data/ext/groonga/rb-grn-array.c +1 -1
  14. data/ext/groonga/rb-grn-column.c +1 -1
  15. data/ext/groonga/rb-grn-context.c +7 -5
  16. data/ext/groonga/rb-grn-database.c +1 -1
  17. data/ext/groonga/rb-grn-double-array-trie-cursor.c +1 -1
  18. data/ext/groonga/rb-grn-double-array-trie.c +1 -1
  19. data/ext/groonga/rb-grn-encoding-support.c +1 -1
  20. data/ext/groonga/rb-grn-encoding.c +1 -1
  21. data/ext/groonga/rb-grn-exception.c +1 -1
  22. data/ext/groonga/rb-grn-expression-builder.c +1 -1
  23. data/ext/groonga/rb-grn-expression.c +1 -1
  24. data/ext/groonga/rb-grn-fix-size-column.c +1 -1
  25. data/ext/groonga/rb-grn-geo-point.c +1 -1
  26. data/ext/groonga/rb-grn-hash-cursor.c +1 -1
  27. data/ext/groonga/rb-grn-hash.c +1 -1
  28. data/ext/groonga/rb-grn-index-column.c +1 -1
  29. data/ext/groonga/rb-grn-index-cursor.c +1 -1
  30. data/ext/groonga/rb-grn-logger.c +1 -1
  31. data/ext/groonga/rb-grn-normalizer.c +1 -1
  32. data/ext/groonga/rb-grn-object.c +71 -45
  33. data/ext/groonga/rb-grn-operator.c +1 -1
  34. data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
  35. data/ext/groonga/rb-grn-patricia-trie.c +1 -1
  36. data/ext/groonga/rb-grn-plugin.c +1 -1
  37. data/ext/groonga/rb-grn-posting.c +1 -1
  38. data/ext/groonga/rb-grn-procedure-type.c +40 -0
  39. data/ext/groonga/rb-grn-procedure.c +17 -4
  40. data/ext/groonga/rb-grn-query-logger.c +1 -1
  41. data/ext/groonga/rb-grn-record.c +1 -1
  42. data/ext/groonga/rb-grn-snippet.c +1 -1
  43. data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
  44. data/ext/groonga/rb-grn-table-cursor.c +1 -1
  45. data/ext/groonga/rb-grn-table-key-support.c +1 -1
  46. data/ext/groonga/rb-grn-table.c +3 -2
  47. data/ext/groonga/rb-grn-type.c +1 -1
  48. data/ext/groonga/rb-grn-utils.c +1 -1
  49. data/ext/groonga/rb-grn-variable-size-column.c +55 -27
  50. data/ext/groonga/rb-grn-variable.c +1 -1
  51. data/ext/groonga/rb-grn.h +4 -2
  52. data/ext/groonga/rb-groonga.c +3 -2
  53. data/extconf.rb +1 -1
  54. data/lib/1.9/groonga.so +0 -0
  55. data/lib/2.0/groonga.so +0 -0
  56. data/lib/2.1/groonga.so +0 -0
  57. data/lib/groonga.rb +1 -1
  58. data/lib/groonga/column.rb +1 -1
  59. data/lib/groonga/context.rb +1 -1
  60. data/lib/groonga/context/command-executor.rb +1 -1
  61. data/lib/groonga/database-inspector.rb +1 -1
  62. data/lib/groonga/database.rb +1 -1
  63. data/lib/groonga/dumper.rb +1 -1
  64. data/lib/groonga/expression-builder-19.rb +1 -1
  65. data/lib/groonga/expression-builder.rb +1 -1
  66. data/lib/groonga/geo-point.rb +1 -1
  67. data/lib/groonga/grntest-log.rb +1 -1
  68. data/lib/groonga/index-column.rb +1 -1
  69. data/lib/groonga/logger.rb +1 -1
  70. data/lib/groonga/memory-pool.rb +1 -2
  71. data/lib/groonga/pagination.rb +1 -1
  72. data/lib/groonga/patricia-trie.rb +1 -1
  73. data/lib/groonga/posting.rb +1 -1
  74. data/lib/groonga/query-logger.rb +1 -1
  75. data/lib/groonga/record.rb +6 -2
  76. data/lib/groonga/schema.rb +1 -1
  77. data/lib/groonga/statistic-measurer.rb +1 -1
  78. data/lib/groonga/sub-records.rb +1 -1
  79. data/lib/groonga/table.rb +1 -1
  80. data/misc/grnop2ruby.rb +1 -1
  81. data/rroonga-build.rb +4 -4
  82. data/rroonga.gemspec +3 -3
  83. data/test/groonga-test-utils.rb +4 -4
  84. data/test/run-test.rb +1 -1
  85. data/test/test-accessor.rb +1 -1
  86. data/test/test-array.rb +1 -1
  87. data/test/test-column.rb +1 -1
  88. data/test/test-command-select.rb +1 -1
  89. data/test/test-context.rb +21 -16
  90. data/test/test-convert.rb +1 -1
  91. data/test/test-database-dumper.rb +1 -1
  92. data/test/test-database-inspector.rb +1 -1
  93. data/test/test-database.rb +38 -25
  94. data/test/test-double-array-trie.rb +1 -1
  95. data/test/test-encoding.rb +1 -1
  96. data/test/test-exception.rb +12 -7
  97. data/test/test-expression-builder.rb +1 -1
  98. data/test/test-expression.rb +1 -1
  99. data/test/test-fix-size-column.rb +1 -1
  100. data/test/test-geo-point.rb +1 -1
  101. data/test/test-gqtp.rb +1 -1
  102. data/test/test-hash.rb +1 -1
  103. data/test/test-index-column.rb +1 -1
  104. data/test/test-index-cursor.rb +1 -1
  105. data/test/test-lock-timeout.rb +1 -1
  106. data/test/test-logger.rb +1 -1
  107. data/test/test-memory-pool.rb +1 -1
  108. data/test/test-normalizer.rb +1 -1
  109. data/test/test-pagination.rb +1 -1
  110. data/test/test-patricia-trie.rb +1 -1
  111. data/test/test-plugin.rb +1 -1
  112. data/test/test-procedure.rb +9 -2
  113. data/test/test-record.rb +1 -1
  114. data/test/test-remote.rb +1 -1
  115. data/test/test-schema-create-table.rb +1 -1
  116. data/test/test-schema-dumper.rb +1 -1
  117. data/test/test-schema-type.rb +1 -1
  118. data/test/test-schema.rb +1 -1
  119. data/test/test-snippet.rb +1 -1
  120. data/test/test-statistic-measurer.rb +1 -1
  121. data/test/test-sub-records.rb +1 -1
  122. data/test/test-table-dumper.rb +1 -1
  123. data/test/test-table-key-support.rb +1 -1
  124. data/test/test-table-offset-and-limit.rb +1 -1
  125. data/test/test-table-select-mecab.rb +1 -1
  126. data/test/test-table-select-normalize.rb +1 -1
  127. data/test/test-table-select-weight.rb +1 -1
  128. data/test/test-table-select.rb +1 -1
  129. data/test/test-table-traverse.rb +1 -1
  130. data/test/test-table.rb +1 -1
  131. data/test/test-type.rb +1 -1
  132. data/test/test-variable-size-column.rb +136 -67
  133. data/test/test-variable.rb +1 -1
  134. data/test/test-vector-column.rb +1 -1
  135. data/test/test-version.rb +1 -1
  136. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  137. data/vendor/local/bin/groonga.exe +0 -0
  138. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  139. data/vendor/local/bin/libgroonga-0.dll +0 -0
  140. data/vendor/local/bin/libmecab-1.dll +0 -0
  141. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  142. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  143. data/vendor/local/bin/libstdc++-6.dll +0 -0
  144. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  145. data/vendor/local/bin/mecab-config +0 -0
  146. data/vendor/local/bin/mecab.exe +0 -0
  147. data/vendor/local/include/groonga/groonga.h +38 -5
  148. data/vendor/local/include/groonga/groonga/plugin.h +11 -83
  149. data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
  150. data/vendor/local/include/msgpack.h +1 -0
  151. data/vendor/local/include/msgpack/fbuffer.h +47 -0
  152. data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
  153. data/vendor/local/include/msgpack/object.hpp +12 -3
  154. data/vendor/local/include/msgpack/pack.h +7 -3
  155. data/vendor/local/include/msgpack/pack.hpp +26 -7
  156. data/vendor/local/include/msgpack/pack_template.h +34 -7
  157. data/vendor/local/include/msgpack/sbuffer.h +3 -2
  158. data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
  159. data/vendor/local/include/msgpack/sysdep.h +27 -14
  160. data/vendor/local/include/msgpack/type.hpp +2 -1
  161. data/vendor/local/include/msgpack/type/define.hpp +747 -561
  162. data/vendor/local/include/msgpack/type/float.hpp +24 -4
  163. data/vendor/local/include/msgpack/type/int.hpp +78 -13
  164. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
  165. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
  166. data/vendor/local/include/msgpack/unpack.h +9 -9
  167. data/vendor/local/include/msgpack/unpack_define.h +16 -14
  168. data/vendor/local/include/msgpack/unpack_template.h +19 -8
  169. data/vendor/local/include/msgpack/version.h +1 -1
  170. data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
  171. data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
  172. data/vendor/local/include/msgpack/zbuffer.h +3 -2
  173. data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
  174. data/vendor/local/include/msgpack/zone.h +5 -4
  175. data/vendor/local/include/msgpack/zone.hpp +10 -1
  176. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  177. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  178. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  179. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
  180. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  181. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  182. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  183. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
  184. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  185. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  186. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  187. data/vendor/local/lib/groonga/plugins/table/table.la +1 -1
  188. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  189. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  190. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  191. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  192. data/vendor/local/lib/libgroonga.a +0 -0
  193. data/vendor/local/lib/libgroonga.dll.a +0 -0
  194. data/vendor/local/lib/libgroonga.la +1 -1
  195. data/vendor/local/lib/libmecab.a +0 -0
  196. data/vendor/local/lib/libmecab.dll.a +0 -0
  197. data/vendor/local/lib/libmecab.la +2 -2
  198. data/vendor/local/lib/libmsgpack.a +0 -0
  199. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  200. data/vendor/local/lib/libmsgpack.la +1 -1
  201. data/vendor/local/lib/libmsgpackc.a +0 -0
  202. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  203. data/vendor/local/lib/libmsgpackc.la +1 -1
  204. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  205. data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
  206. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  207. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  208. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  209. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  210. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  211. data/vendor/local/sbin/groonga-httpd-restart +0 -0
  212. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  213. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
  214. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
  215. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
  216. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
  217. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  218. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
  219. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  220. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
  221. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  222. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
  223. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
  224. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
  225. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
  228. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
  229. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
  230. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
  231. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
  232. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
  233. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
  234. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
  235. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
  236. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
  237. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
  238. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
  239. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
  240. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
  241. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
  242. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
  243. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
  244. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
  245. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
  246. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
  247. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
  248. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
  249. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
  250. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
  251. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
  252. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
  253. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
  254. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
  255. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
  256. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
  257. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
  258. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
  259. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
  260. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
  261. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
  262. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
  263. data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
  264. data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
  265. data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
  266. data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
  267. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
  268. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
  269. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
  270. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
  271. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
  272. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
  273. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
  274. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
  275. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
  276. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
  277. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
  278. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
  279. data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
  280. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
  281. data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
  282. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
  283. data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
  284. data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
  285. data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
  286. data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
  287. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
  288. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
  289. data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
  290. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
  291. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
  292. data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
  293. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
  294. data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
  295. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
  296. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
  297. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
  298. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
  299. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
  300. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
  301. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
  302. data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
  303. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  304. data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
  305. data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
  306. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
  307. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
  308. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
  309. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
  310. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
  311. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
  312. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
  313. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
  314. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
  315. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
  316. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
  317. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
  318. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
  319. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
  320. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
  321. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
  322. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
  323. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
  324. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
  325. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
  326. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
  327. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
  328. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
  329. data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
  330. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
  331. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
  332. data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
  333. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
  334. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
  335. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
  348. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
  349. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
  350. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
  351. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
  352. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
  353. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
  354. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
  355. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
  356. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
  357. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
  358. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
  359. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
  360. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
  361. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
  362. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
  363. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
  364. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
  365. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
  366. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
  367. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
  368. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
  369. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
  370. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
  371. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
  372. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  373. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
  374. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
  375. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
  376. data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
  377. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
  378. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
  379. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
  380. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
  381. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
  382. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
  383. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
  384. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
  385. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
  386. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
  387. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
  388. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
  389. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
  390. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
  391. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
  392. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
  393. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
  394. data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
  395. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
  396. data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
  397. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
  398. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
  399. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
  400. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
  401. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
  402. data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
  403. data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
  404. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  405. data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
  406. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
  407. data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
  408. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
  409. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
  410. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
  411. data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
  412. data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
  413. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
  414. data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
  415. data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
  416. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
  417. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
  418. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
  419. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
  420. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
  421. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
  422. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
  423. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  424. data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
  425. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
  426. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
  427. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
  428. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
  429. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
  430. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
  431. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
  432. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
  433. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
  434. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
  435. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
  436. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
  464. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
  465. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
  466. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
  467. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
  468. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
  469. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
  470. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
  471. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
  472. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
  473. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
  474. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
  475. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
  476. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
  477. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
  478. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
  479. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
  480. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
  481. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
  482. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
  483. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
  484. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
  485. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
  486. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
  487. data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
  488. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
  489. data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
  490. data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
  491. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
  492. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
  493. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
  494. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
  495. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
  496. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
  497. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
  498. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
  499. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
  500. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
  501. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
  502. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
  503. data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
  504. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
  505. data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
  506. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
  507. data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
  508. data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
  509. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
  510. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
  511. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
  512. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
  513. data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
  514. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
  515. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
  516. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
  517. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
  518. data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
  519. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
  520. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
  521. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
  522. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
  523. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
  524. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
  525. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
  526. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
  527. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  528. data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
  529. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
  530. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
  531. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
  532. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
  533. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
  534. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
  535. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
  536. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
  537. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
  538. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
  539. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
  540. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
  541. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
  542. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
  543. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
  544. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
  545. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
  546. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
  547. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
  548. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
  549. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
  550. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
  551. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
  552. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
  553. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
  554. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
  555. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
  556. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
  557. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
  558. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
  559. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
  560. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
  561. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
  562. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
  563. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
  564. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
  565. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
  566. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
  567. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
  568. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
  573. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
  574. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
  575. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
  576. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
  577. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
  578. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
  579. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
  580. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
  581. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
  582. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
  583. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
  584. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
  585. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
  586. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
  587. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
  588. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
  589. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
  590. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
  591. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
  592. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
  593. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
  594. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
  595. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
  596. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
  597. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
  598. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
  599. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
  600. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
  601. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
  602. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
  603. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
  604. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
  605. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
  606. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
  607. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
  608. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
  609. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
  610. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
  611. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
  612. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
  613. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
  614. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
  615. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
  616. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
  617. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
  618. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
  619. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
  620. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
  621. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
  622. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
  623. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
  624. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
  625. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
  626. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
  627. data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
  628. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  629. data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
  630. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
  631. data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
  632. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
  633. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
  634. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
  635. data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
  636. data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
  637. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
  638. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
  639. data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
  640. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
  641. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
  642. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
  643. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
  644. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
  645. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
  646. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
  647. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
  648. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
  649. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
  650. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
  651. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
  652. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
  653. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
  654. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
  655. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
  656. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
  657. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
  658. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
  659. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
  660. data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
  661. data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
  662. data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
  663. data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
  664. data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
  665. data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
  666. data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
  667. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
  668. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
  669. data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
  670. data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
  671. data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
  672. data/vendor/local/share/groonga/html/admin/index.html +75 -75
  673. data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
  674. data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
  675. data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
  676. data/vendor/local/share/license/groonga/README.md +49 -0
  677. data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
  678. data/vendor/local/share/man/man1/groonga.1 +2008 -1240
  679. metadata +111 -83
  680. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
  681. data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
  682. data/vendor/local/share/license/groonga/AUTHORS +0 -17
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>8.8. Tokenizers &mdash; Groonga v4.0.1-127-g9422d50 documentation</title>
10
+ <title>8.8. Tokenizers &mdash; Groonga v4.0.4-214-gb1aaec1 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '4.0.1-127-g9422d50',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,12 +25,12 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.1-127-g9422d50 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1 documentation" href="../index.html" />
29
29
  <link rel="up" title="8. Reference manual" href="../reference.html" />
30
30
  <link rel="next" title="8.9. Query expanders" href="query_expanders.html" />
31
31
  <link rel="prev" title="8.7. Normalizers" href="normalizers.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,7 +48,7 @@
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">
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="normalizers.html" title="8.7. Normalizers"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
64
64
  <li><a href="../reference.html" accesskey="U">8. Reference manual</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,7 +68,7 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body" role="main">
71
+ <div class="body">
72
72
 
73
73
  <div class="section" id="tokenizers">
74
74
  <h1>8.8. Tokenizers<a class="headerlink" href="#tokenizers" title="Permalink to this headline">¶</a></h1>
@@ -94,7 +94,7 @@
94
94
  </div>
95
95
  </div>
96
96
  </div>
97
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
97
+ <div class="sphinxsidebar">
98
98
  <div class="sphinxsidebarwrapper">
99
99
  <h4>Previous topic</h4>
100
100
  <p class="topless"><a href="normalizers.html"
@@ -102,14 +102,12 @@
102
102
  <h4>Next topic</h4>
103
103
  <p class="topless"><a href="query_expanders.html"
104
104
  title="next chapter">8.9. Query expanders</a></p>
105
- <div role="note" aria-label="source link">
106
- <h3>This Page</h3>
107
- <ul class="this-page-menu">
108
- <li><a href="../_sources/reference/tokenizers.txt"
109
- rel="nofollow">Show Source</a></li>
110
- </ul>
111
- </div>
112
- <div id="searchbox" style="display: none" role="search">
105
+ <h3>This Page</h3>
106
+ <ul class="this-page-menu">
107
+ <li><a href="../_sources/reference/tokenizers.txt"
108
+ rel="nofollow">Show Source</a></li>
109
+ </ul>
110
+ <div id="searchbox" style="display: none">
113
111
  <h3>Quick search</h3>
114
112
  <form class="search" action="../search.html" method="get">
115
113
  <input type="text" name="q" />
@@ -126,7 +124,7 @@
126
124
  </div>
127
125
  <div class="clearer"></div>
128
126
  </div>
129
- <div class="related" role="navigation" aria-label="related navigation">
127
+ <div class="related">
130
128
  <h3>Navigation</h3>
131
129
  <ul>
132
130
  <li class="right" style="margin-right: 10px">
@@ -138,11 +136,11 @@
138
136
  <li class="right" >
139
137
  <a href="normalizers.html" title="8.7. Normalizers"
140
138
  >previous</a> |</li>
141
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
139
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
142
140
  <li><a href="../reference.html" >8. Reference manual</a> &raquo;</li>
143
141
  </ul>
144
142
  </div>
145
- <div class="footer" role="contentinfo">
143
+ <div class="footer">
146
144
  &copy; Copyright 2009-2014, Brazil, Inc.
147
145
  </div>
148
146
  </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>8.14. Tuning &mdash; Groonga v4.0.1-127-g9422d50 documentation</title>
10
+ <title>8.14. Tuning &mdash; Groonga v4.0.4-214-gb1aaec1 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '4.0.1-127-g9422d50',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,12 +25,12 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.1-127-g9422d50 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1 documentation" href="../index.html" />
29
29
  <link rel="up" title="8. Reference manual" href="../reference.html" />
30
30
  <link rel="next" title="8.15. API" href="api.html" />
31
31
  <link rel="prev" title="8.13. Log" href="log.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,7 +48,7 @@
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">
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="log.html" title="8.13. Log"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
64
64
  <li><a href="../reference.html" accesskey="U">8. Reference manual</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,7 +68,7 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body" role="main">
71
+ <div class="body">
72
72
 
73
73
  <div class="section" id="tuning">
74
74
  <h1>8.14. Tuning<a class="headerlink" href="#tuning" title="Permalink to this headline">¶</a></h1>
@@ -214,7 +214,7 @@ following command:</p>
214
214
  </div>
215
215
  </div>
216
216
  </div>
217
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
217
+ <div class="sphinxsidebar">
218
218
  <div class="sphinxsidebarwrapper">
219
219
  <h3><a href="../index.html">Table Of Contents</a></h3>
220
220
  <ul>
@@ -245,14 +245,12 @@ following command:</p>
245
245
  <h4>Next topic</h4>
246
246
  <p class="topless"><a href="api.html"
247
247
  title="next chapter">8.15. API</a></p>
248
- <div role="note" aria-label="source link">
249
- <h3>This Page</h3>
250
- <ul class="this-page-menu">
251
- <li><a href="../_sources/reference/tuning.txt"
252
- rel="nofollow">Show Source</a></li>
253
- </ul>
254
- </div>
255
- <div id="searchbox" style="display: none" role="search">
248
+ <h3>This Page</h3>
249
+ <ul class="this-page-menu">
250
+ <li><a href="../_sources/reference/tuning.txt"
251
+ rel="nofollow">Show Source</a></li>
252
+ </ul>
253
+ <div id="searchbox" style="display: none">
256
254
  <h3>Quick search</h3>
257
255
  <form class="search" action="../search.html" method="get">
258
256
  <input type="text" name="q" />
@@ -269,7 +267,7 @@ following command:</p>
269
267
  </div>
270
268
  <div class="clearer"></div>
271
269
  </div>
272
- <div class="related" role="navigation" aria-label="related navigation">
270
+ <div class="related">
273
271
  <h3>Navigation</h3>
274
272
  <ul>
275
273
  <li class="right" style="margin-right: 10px">
@@ -281,11 +279,11 @@ following command:</p>
281
279
  <li class="right" >
282
280
  <a href="log.html" title="8.13. Log"
283
281
  >previous</a> |</li>
284
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
282
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
285
283
  <li><a href="../reference.html" >8. Reference manual</a> &raquo;</li>
286
284
  </ul>
287
285
  </div>
288
- <div class="footer" role="contentinfo">
286
+ <div class="footer">
289
287
  &copy; Copyright 2009-2014, Brazil, Inc.
290
288
  </div>
291
289
  </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>8.4. データ型 &mdash; Groonga v4.0.1-127-g9422d50 documentation</title>
10
+ <title>8.4. データ型 &mdash; Groonga v4.0.4-214-gb1aaec1 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '4.0.1-127-g9422d50',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,12 +25,12 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.1-127-g9422d50 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1 documentation" href="../index.html" />
29
29
  <link rel="up" title="8. Reference manual" href="../reference.html" />
30
30
  <link rel="next" title="8.5. Tables" href="tables.html" />
31
31
  <link rel="prev" title="8.3.34. truncate" href="commands/truncate.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,7 +48,7 @@
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">
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="commands/truncate.html" title="8.3.34. truncate"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
64
64
  <li><a href="../reference.html" accesskey="U">8. Reference manual</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -68,7 +68,7 @@
68
68
  <div class="document">
69
69
  <div class="documentwrapper">
70
70
  <div class="bodywrapper">
71
- <div class="body" role="main">
71
+ <div class="body">
72
72
 
73
73
  <div class="section" id="id1">
74
74
  <h1>8.4. データ型<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h1>
@@ -176,7 +176,7 @@
176
176
  </div>
177
177
  </div>
178
178
  </div>
179
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
179
+ <div class="sphinxsidebar">
180
180
  <div class="sphinxsidebarwrapper">
181
181
  <h3><a href="../index.html">Table Of Contents</a></h3>
182
182
  <ul>
@@ -199,14 +199,12 @@
199
199
  <h4>Next topic</h4>
200
200
  <p class="topless"><a href="tables.html"
201
201
  title="next chapter">8.5. Tables</a></p>
202
- <div role="note" aria-label="source link">
203
- <h3>This Page</h3>
204
- <ul class="this-page-menu">
205
- <li><a href="../_sources/reference/types.txt"
206
- rel="nofollow">Show Source</a></li>
207
- </ul>
208
- </div>
209
- <div id="searchbox" style="display: none" role="search">
202
+ <h3>This Page</h3>
203
+ <ul class="this-page-menu">
204
+ <li><a href="../_sources/reference/types.txt"
205
+ rel="nofollow">Show Source</a></li>
206
+ </ul>
207
+ <div id="searchbox" style="display: none">
210
208
  <h3>Quick search</h3>
211
209
  <form class="search" action="../search.html" method="get">
212
210
  <input type="text" name="q" />
@@ -223,7 +221,7 @@
223
221
  </div>
224
222
  <div class="clearer"></div>
225
223
  </div>
226
- <div class="related" role="navigation" aria-label="related navigation">
224
+ <div class="related">
227
225
  <h3>Navigation</h3>
228
226
  <ul>
229
227
  <li class="right" style="margin-right: 10px">
@@ -235,11 +233,11 @@
235
233
  <li class="right" >
236
234
  <a href="commands/truncate.html" title="8.3.34. truncate"
237
235
  >previous</a> |</li>
238
- <li><a href="../index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
236
+ <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
239
237
  <li><a href="../reference.html" >8. Reference manual</a> &raquo;</li>
240
238
  </ul>
241
239
  </div>
242
- <div class="footer" role="contentinfo">
240
+ <div class="footer">
243
241
  &copy; Copyright 2009-2014, Brazil, Inc.
244
242
  </div>
245
243
  </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>Search &mdash; Groonga v4.0.1-127-g9422d50 documentation</title>
10
+ <title>Search &mdash; Groonga v4.0.4-214-gb1aaec1 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '4.0.1-127-g9422d50',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/searchtools.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v4.0.1-127-g9422d50 documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1 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 v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v4.0.4-214-gb1aaec1 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 v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
110
+ <li><a href="index.html">Groonga v4.0.4-214-gb1aaec1 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-2014, Brazil, Inc.
115
115
  </div>
116
116
  </body>
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{localstatedir:121,four:[120,82,3,130],"\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":132,"\u811a\u6ce8":[29,39,153,61],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":148,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":123,your_db:23,column_cr:[46,37,72,26,65,23],"\u65e5\u672c\u4eba":42,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":132,no_such_device_or_address:151,thread_tabl:148,command_vers:[64,3,4,27,69,96,8,30,90],"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":135,"takashi\u3055\u3093\u304c\u5831\u544a":23,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[46,138],"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":136,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":95,"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":85,drilldown_output_column:[65,137],asami:[65,112],"\u697d\u3057\u3044billiard":[60,127],accuml:[65,112],"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":132,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":99,grn_oper:[99,93,71,47,107],grn_column_name_nsubrecs_len:107,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":132,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":148,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":31,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":44,"\u79cb\u8449\u539f\u99c5\u304b\u30895000m\u4ee5\u5185\u306b\u3042\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u307f\u307e\u3057\u3087\u3046":63,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":135,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":85,grn_table_cursor_next:[135,136],here:[34,2,125,82,83,40,130,77,89,8,9,129,42,163,114,45,16,95,11,131,72,134,13,49,101,50,110,147,54,55,58,41,108,159,96,151,84,66,154,68,164,158,116,117,32,119,27,161,149,74,122,105,71,103],onga:27,china:[11,116],grn_enc_utf8:[135,109],ful:77,"\u4e0e\u3048":60,latitude_in_msec:131,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":143,"\u7a7a\u767d\u3084":85,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":85,match_column:[65,137,112,72],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":148,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d":[46,138],"_score\u3092\u901a\u3058\u3066\u30bd\u30fc\u30c8\u3067\u3082\u7528\u3044\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":155,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":23,substr:[158,131],unix:163,txt:[73,105],unit:[11,131,26,27,149,151],music:[38,130],until:[49,100,17,122,105],"\u30d6\u30ed\u30b0":75,grn_op_push:59,relax:122,relat:[46,115,163,145,118,13,112,22,6,133,65,91,23,75,67,68],error_messag:120,notic:[5,7,8],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":132,hold:12,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":132,"byte\u9577":[99,67,107],"akio\u3055\u3093\u304c\u5831\u544a":136,"\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":67,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":111,grn_obj_reinit:67,cirit:8,digit:[130,108,55],"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":148,want:[124,77,3,129,8,91,42,163,145,95,11,73,13,49,58,108,146,159,151,66,154,115,158,116,117,119,133,74,76],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":30,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":99,"\u30b3\u30de\u30f3\u30c9\u306f":30,type1:134,type2:134,"groonga_github_com_path\u306bgroonga":132,grn_filename_too_long:2,turn:8,grn_read_only_file_system:2,travel:160,grn_geo_point:47,grn_input_output_error:2,yum:[145,115,132,6,110,65],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":67,message_pack_install_prefix:121,groonga_clone_dir:132,moritar:66,wrong:[108,112,6,65,23,10],"\u79cb\u8449\u539f\u99c5\u304b\u3089\u306e\u8ddd\u96e2\u3092\u8868\u793a\u3055\u305b\u3066\u307f\u307e\u3057\u3087\u3046":63,"\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":70,"\u63d0\u6848\u3092\u884c\u3046":136,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":128,wing:[6,65,112],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":148,"\u6771\u4eac\u99c5\u306f\u7def\u5ea6\u304c35\u5ea640\u520652":63,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":109,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u3057\u307e\u3059":160,vari:56,"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":95,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":75,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[135,99],"\u6708":160,hidden:118,fin:44,"\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":59,rectangl:[47,118,40,6,65,23],inv_thread_column:148,"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":132,dcmake_install_prefix:89,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":136,timeout:[65,67,17,112],debug:[5,130,7,8,77],"obj\u3092lock\u3057\u307e\u3059":67,last_modifi:160,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":60,"akio\u3055\u3093\u304c\u63d0\u6848":136,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":148,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":136,grn_table_s:[99,59],grooon:117,"\u30e6\u30fc\u30b6\u30fc\u540d":160,moritapo:38,gregex:[65,112],grn_no_such_device_or_address:2,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":148,input_typ:49,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":132,"\u79d2":[160,67],"\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":132,ringtail:[65,112],"\u307e\u308d\u3086\u304d":126,libedit:[6,23,163,145,65],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":39,atv:[63,3,116],pagin:3,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":88,resource_busi:151,"\u3053\u308c\u307e\u3067\u5b66\u3093\u3060groonga\u306e\u6a5f\u80fd\u3092\u7528\u3044\u3066":160,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":64,mingw:132,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":135,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":132,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":85,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":132,"\u6307\u5b9a\u3055\u308c\u305f\u4f4d\u7f6e\u304b\u30895000m\u4ee5\u5185\u306b\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3057\u3066\u3044\u307e\u3059":160,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":99,master:[105,8,68],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":95,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":135,listen:[6,65,8,45,90],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,153],kinjir:38,"\u50242":[30,85],"\u50241":[30,85],showen:2,second:[95,11,3,158,12,83,120,130,66,45,131],project:[0,124,131,132,118,91,75,68],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":99,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":148,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":85,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":148,"db_api\u306f":59,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":51,"\u3050\u308b\u3093\u304c\u6b21\u90ce":38,incompat:[6,65,112],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":132,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":60,"\u30bf\u30a4\u30c8\u30eb\u3068\u672c\u6587\u3092\u5168\u6587\u691c\u7d22\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,"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":132,simplifi:[65,112],port_numb:90,object:[16,41,125,140,67,72,99,119,27,15,6,50,77,65,147,23,31],microsecond:[12,130],letter:164,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":148,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":52,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":148,incompatible_file_format:151,index_blog:66,"\u3053\u306e\u3088\u3046\u306b":38,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":132,expornenti:131,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":127,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":67,daemoinz:[6,65],"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,grnslap:[43,46,37],"\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":85,restaur:118,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":64,"2byte":[2,151],grn_obj_set_element_info:35,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":81,"\u306f\u306a\u304f":1,calro:84,source_file_nam:120,createrepo:132,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":39,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[46,26,37,15],ever:[65,112],"\u6587\u5b57\u5217":160,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":60,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":39,"\u7bc4\u56f2\u3092\u5e83\u304f\u6307\u5b9a\u3057\u305f\u305f\u3081":160,unexpectedli:[65,112],etim:156,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":39,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210":[46,138],"description\u306b":127,result:[4,82,6,65,129,42,138,46,95,11,131,12,98,100,101,99,54,105,58,59,108,112,159,23,154,117,118,119,27,120,74,164],respons:[16,2,117,118,112,6,151,23,65,45],fail:[16,3,158,112,6,17,9,23,65,55],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":67,best:118,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":30,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":59,wikipedia:39,figur:40,score:[6,65,50,72],"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":64,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":148,extend:66,shidara:23,extens:4,"\u304c1\u3064":160,pat_kei:82,accident:[65,112],column_scalar:[79,83,95,11,131,100,101,50,139,38,60,62,159,96,84,66,158,116,160,27,149,122],"\u30e6\u30fc\u30b6\u30fc\u306e\u53cb\u4eba\u4e00\u89a7\u3092\u914d\u5217\u3067\u683c\u7d0d\u3059\u308bfriends\u30ab\u30e9\u30e0\u3068\u305d\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306eindex_friends\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":38,logic:[6,65,95],countri:[149,90,116],login:122,"316\u79d2":63,kazuhiko:[6,65],"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":127,"2nd":95,"\u95a2\u6570":155,grn_table_cursor_get_valu:135,assum:[44,15],summar:116,grn_search_optarg:93,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":126,"\u306e\u307b\u304b\u306b":39,"\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":64,"takashi\u3055\u3093":23,salamand:[65,13,112],res_column:148,"\u30ab\u30f3\u30de":139,worker:[65,8,112],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,dave:84,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":60,grn_table_delet:99,"localstatedir\u3092\u4f7f\u7528":136,"\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":59,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,sen_index_norm:36,"\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":153,"\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":64,cache_hit_r:[90,69,3,4,8],arg_list_too_long:151,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":69,grn_resource_busi:2,simil:131,split:[23,131,82],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":60,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u4f7f\u3044\u307e\u3059":160,documents_content_index:[101,27],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":148,refin:[65,112,118],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":69,tune:[46,95,37,72,112,65],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":132,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[60,127],"time\u578b\u3067\u3059":160,"\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":59,out_gqtp:148,users_memo:101,gzip:[6,65,163,165],"\u4e0a\u8a18\u306e\u5b9f\u884c\u4f8b\u3067\u306f":63,sleepi:100,old_release_d:132,easi:[118,154,90,45,140],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":148,had:105,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":75,hat:163,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":59,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":132,koji:[6,65],"\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":60,command_nam:90,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":148,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":132,measur:[23,118],specif:[46,58,72,118,95,112,6,134,129,65,163],"filter\u306e\u4e21\u65b9\u3092\u4f7f\u7528\u3057\u305f\u5834\u5408":160,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\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":62,filename_too_long:151,"\u30d4\u30ea\u30aa\u30c9":62,sebastian:65,underli:118,grn_obj_table_hash_kei:[135,99],right:47,"\u5358\u8a9e":160,groogna:[95,158,6,89,65,98],kouhei:[65,112],"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":51,bottom:47,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":106,"146566000x":11,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":132,ichii:23,condit:[6,56,71,112,65],yoku:65,"select\u30b3\u30de\u30f3\u30c9\u306escorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306f":63,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":148,grn_builtin_typ:[52,67],grn_cursor_descend:135,grn_log_path:[6,65],"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":107,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":143,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":39,nginxhttpstubstatusmodul:65,"\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":53,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":95,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":59,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":39,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":59,support:[118,105,68],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":57,offgao:160,avail:[105,95,77,118,83,119,112,120,36,134,65,163,55],width:[23,164],call:[58,11,72,95,27,15,6,50,112,140,129,65],inv_res_column:148,"\u3086\u304d\u3072\u308d":126,"\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:106,"135960000x":11,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":99,"\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":64,replied_us:160,"\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":111,later:[96,3,112,6,159,65,23,164],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":99,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":30,exist:[49,124,3,131,12,84,112,6,90,110,65,54,8],"object\u578b\u306fv1":39,column_name1:49,column_name2:49,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":92,grn_search:[46,25,37],role:[101,118],notif:[65,112,130],intend:[6,65,66,158,159],moero:38,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":132,intens:8,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":136,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":107,grn_ii_buffer_open:18,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":93,exce:[6,65,112],time:[46,158,117,118,120,148,27,112,6,134,17,65,23],push:105,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":92,chain:159,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[157,29,97,153,57],grn_obj_get_hook:81,netbsd:[65,112],"\u3068\u3044\u3046\u4e71\u6570\u3092\u8fd4\u3059\u95a2\u6570\u3092\u7528\u3044\u3066":63,millisecond:[12,117,17,131],decid:154,thread_title_column:148,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":136,decim:[12,131],"\u305d\u306e\u4e3b\u30ad\u30fc\u304c\u7f6e\u63db\u524d\u306e\u6587\u5b57\u5217\u3068\u306a\u308a":79,downtim:165,"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u6761\u4ef6\u7d5e\u8fbc\u3084":63,"257662232kbyte":148,"\u3069\u3061\u3089\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5b58\u5728\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u3082":66,score_adjust_express:95,lru:103,exact:[69,82,95,59,55],"\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":53,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":155,prevent:[65,112],"\u8ad6\u7406\u548c":59,grn_table_group_result:99,index_point:38,sign:[6,65,2,132],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":156,"\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":64,grn_broken_pip:2,takashi:149,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":67,current:[49,3,70,40,15,16,50,8,23,103,105,55],"\u3053\u308c\u306b\u3088\u308a":132,boost:42,"encoding\u306e\u5024\u304c":23,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"0\u4ee5\u4e0a4":39,address:[117,85,6,90,65,23],"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":59,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":75,throughput:[23,45],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":75,commonli:118,ipa:[145,115],pentium:148,prefer:117,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[35,70,52,85,99,67,148,107],"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":23,instal:[118,75,155,132],"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":99,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":85,value2:[49,131],value1:[49,8,131],"\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":[46,37],peopl:118,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10041\u756a":85,enhanc:36,visual:[120,118,112,6,89,65,23],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":39,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":135,"929\u79d2\u3067\u3059":63,"windows\u7cfb":132,genki:[65,112],"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":39,improper_link:151,recycl:65,"takahiro\u3055\u3093":136,index_titl:66,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":135,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":64,chroot:132,"\u30bd\u30fc\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":148,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":155,"\u3064\u3065\u3044\u3066":160,"grnslap\u306f":156,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":148,date:[46,11,148,138,118],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":85,data:[125,81,83,40,6,89,23,46,95,72,134,13,16,49,56,145,112,149,65,98,68,115,118,133,121],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":107,quot:[77,3,158,119,112,49,65],cannot:[46,95,158,82,100,33,131,164,45,55],int64:[65,39,112],i686:148,grn_ja_skip_same_value_put:[65,112],"\u30e6\u30fc\u30b6\u540d":148,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":106,implemnt:165,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":111,instantli:[118,27],grn_obj_init:67,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":21,"\u30de\u30a4\u30af\u30ed\u79d2\u6570\u306e\u5024\u304c\u683c\u7d0d\u3055\u308c\u307e\u3059":160,"\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":132,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":132,revers:132,separ:[49,95,77,3,4,116,134,83,119,6,151,65,131,154,158],"_dataset":[54,161],operation_not_permit:151,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":67,"\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":132,compil:[23,163,112,65],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":99,grn_obj_path:[65,67,112],gtar:20,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":132,blt:139,internet:[118,140],formula:[146,11],"\u6700\u5f8c\u306e":148,million:56,"\u6700\u5f8c\u306b":60,mime:45,"\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":53,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":99,"byte":[107,52,27,15,6,99,151,112,65,23,67,71,44],dest_key_s:99,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":35,grn_op_adjust:[93,59],brasil:11,"259\u79d2":63,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":64,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":81,oper:[46,95,47,112,6,50,140,65,163,71],grn_logger_reopen:[6,65],onc:[95,116,6,65,23,66,164],beijin:11,"\u6587\u5b57\u5217\u578b\u306e\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3067\u3082\u53ef\u80fd\u3067\u3042\u308a":79,reopen:23,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":60,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":23,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":60,open:[16,47,130,112,164,6,23,65,49,68],grn_obj_get_element_info:35,convens:[6,65],convent:[6,65],"\u81ea\u5df1\u7d39\u4ecb\u6587":160,return_cod:[120,130],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":60,citi:[11,40],groonga1:64,fullfil:124,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":132,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":135,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":67,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u306e\u5024\u3092\u76f4\u63a5\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3067\u3059":160,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":30,set_port:148,grn_obj_get_info:35,fumiyasu:23,"\u307e\u305fgroonga":148,column_list:[46,37,136,26,6,65,23],"\u90fd":[60,127],sai:[3,131],san:11,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":157,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,argument:[11,3,131,159,27,15,6,101,96,90,112,65,23,66],sae:[134,108],"\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9":160,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,drilldown_limit:137,uuuuuu:131,note:[145,58,96,3,131,12,146,95,149,112,6,117,118,8,122,65,129,23,55,45,90],"groonga\u306f\u30ab\u30e9\u30e0\u5024\u3068\u3057\u3066\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3078\u306e\u53c2\u7167\u306e\u914d\u5217\u3092\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u308b\u3053\u3068\u3092\u7d39\u4ecb\u3044\u305f\u3057\u307e\u3057\u305f":38,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":132,take:[124,41,3,83,50,147,114],"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":132,"\u30cb\u30db\u30f3\u30b8\u30f3":42,noth:[42,163,8,10],grn1:66,grn3:66,grn2:66,buffer:[18,112,113,65,66,67,71],compress:[62,112,6,65,23,163,165],"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":92,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"127972422x503117107":160,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":95,"\u30b5\u30fc\u30d0":85,max_valu:122,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":61,do_gqpt:148,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":153,"\u4ef6\u6570":95,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":148,grn_lzo_error:2,"obj\u306f":67,xml:[6,23,98,112,65],slow:[82,8],"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":57,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":15,too_many_link:151,normalizermysqlunicodeciexceptkanacikanawithvoicedsoundmark:164,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":30,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":148,concaten:66,clang:[6,65,112,155],"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":59,grn_ii_buffer_clos:18,requir:[145,115,110,20,118,13,112,6,133,89,23,65,163],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":95,aptitud:155,washida:[65,112],where:[12,2,163],"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":135,"\u7a7a\u767d":85,"\u305d\u306e\u52d5\u753b\u306e\u7279\u5fb4\u3092\u8868\u3059":38,"namebuf\u306e\u30b5\u30a4\u30ba":[67,107],ohzeki:65,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u306b\u4fdd\u5b58\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u66f4\u65b0\u304c\u3042\u3063\u305f\u3068\u304d":38,"\u30b3\u30ed\u30f3":62,mani:[124,3,82,8,23,163,10,45,95,72,12,105,112,65,116,118,27,161,122,75,55,165],"\u30ed\u30b0\u51fa\u529b":7,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":113,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":136,"\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":64,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":64,"\u3067\u6271\u3063\u305f\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3082\u884c\u3044\u307e\u3059":160,"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":35,"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":81,better:[118,66,95],"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":132,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":132,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":85,score_adjust_expression2:95,score_adjust_expression1:95,parser:158,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":62,hashtag:160,former:[164,154],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":85,"\u8fd4\u4fe1\u5143\u306e\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9":160,ctrl:[3,90],ivh:[145,115],html_untag:[46,142,112,37,65],set_host:148,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":99,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,ascii:[158,131],hash_tag:160,binari:[46,4,118,39,112,138,6,89,8,120,65,45,131],"\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":60,grn_proc_creat:44,"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":132,utf8:[109,163,85],cmake:[6,65,163,89,112],grn_operation_not_support:2,"768\u4ee5\u4e0a32":39,"\u5358\u72ec\u306e\u5024":107,wiedenroth:65,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":148,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":156,grn_hook_select:81,"\u6771\u4eac\u90fd":[60,127],commands_column_renam:50,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":148,"\u30cb\u30db\u30f3":42,"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":132,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":99,haystack:59,ruby1:132,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":148,"4096byte":[56,82],around:[40,27],"\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":127,"\u795e\u5948\u5ddd\u770c":160,res1:99,bookmark_index:72,world:[65,39,112],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":64,intel:148,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":67,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":64,integ:[95,2,72],"\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u3067":160,"\uff12\u70b9\u9593\u306e\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30ebterm\u306b":62,yyyi:[130,131],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":70,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":113,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":70,"\u3092\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u30e6\u30fc\u30b6\u30fc\u691c\u7d22\u3057\u305f\u7d50\u679c":160,grn_obj_is_builtin:[23,67],"\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":132,definit:[95,11,158,159,27,6,101,96,84,65,149,131],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":44,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":132,exit:[6,65,112],ddl:148,refer:[46,118,112,65,23,163],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067\u5b9f\u884c\u3057":148,"\u5168\u6587\u691c\u7d22":[46,138],power:95,"\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":60,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":39,"\u30d3\u30eb\u30c9\u6642\u306etip":75,grn_get_default_command_vers:102,starttim:[90,69,3,4,8],"2\u4ef6\u3068\u3082":160,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":85,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":127,normalzer_list:41,neighbor:118,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":132,"flags\u306b\u306f":99,match_escalation_threshold:[136,163,15],cflag:[20,132],"\u306b\u3042\u308b":67,agaist:[6,65],hex:[38,131],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"\u5f8c\u8005\u306f\u4e16\u754c\u6e2c\u5730\u7cfb":63,grn_proc_func:[44,15],"\u6771\u4eac\u90fd\u6e0b\u8c37\u533a":160,sid:[46,121],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,bundl:[6,65,105,112,101],"\u305d\u308c\u305e\u308c1\u30ab\u30e9\u30e0\u3054\u3068\u306b1\u3064\u305a\u3064\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":66,htpasswd:[8,45],no_kei:82,"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":85,categor:[95,77],pull:132,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":62,"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":59,grn_ctx_get:[107,15],preconfigur:[133,115,13,124,145],reqular:117,gone:38,type_of_the_column:159,uid:132,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"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":136,grn_id_nil:[135,99],googl:[95,10,158],grn_select:95,grn_ctx_open:[23,15],shimomura:[6,65],"\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":132,"\u4e00\u65b9":60,item_dataset:[161,74],"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":59,vocabulari:3,geodet:39,"debug\u3092\u8ffd\u52a0":136,nagano:65,queryexpandertsv:[46,37,112,6,101,9,65,24],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":132,cpu:[117,163,148,8,165],senna:65,grn_type:[46,25,37],illustr:116,pluggabl:118,"\u521d\u671f\u5316\u3059\u308b":15,scr:148,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":99,grn_obj_set_info:35,too_small_offset:151,tail:[151,132],kosuk:[65,112],webclip:96,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[46,136],introduc:[65,75,8],candid:[117,42,134],too_many_open_fil:151,"4\u30ea\u30ea\u30fc\u30b9":65,colleagu:75,"yum\u306e\u5834\u5408":132,adjust:[65,72],small:[158,82,112,65,55,131],"flags\u306b":[99,107],"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":106,past:[6,65],"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,pass:[11,3,158,132,101,8,65,23,98,90],lexicon_t:148,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":132,section:[77,18,83,89,8,129,42,163,145,95,11,72,162,13,49,50,103,119,55,144,58,107,108,20,112,151,65,114,154,68,115,158,116,142,25,26,133,121,74,122,75,105,76],"log_put\u306f":7,"debian\u7cfb":132,"files\u306e\u5b9f\u884c":75,delet:[46,1,37,136,26,112,6,110,23,65,67],"\u4e2d\u91ce\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4\u306a\u3046\u306a\u3046":160,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":132,coremodul:8,contrast:[101,3,8,118],"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":127,hash:[131,82,112,6,65,23,55],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":132,table_renam:[65,98],sender:[117,54],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":15,action:[65,112],"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":81,via:[6,65,2,105,74],localestatedir:163,"\u6b21\u306bgroonga\u306etest":132,no_such_process:151,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":127,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":70,"select\u30b3\u30de\u30f3\u30c9\u306efilter\u30d1\u30e9\u30e1\u30fc\u30bf\u306f":63,"\u6295\u7a3f\u3057\u305f\u5185\u5bb9\u306b\u5bfe\u3059\u308b\u30ec\u30d3\u30e5\u30fc\u304c\u904b\u55b6\u5074\u3067\u5b9f\u65bd\u3055\u308c\u308b\u306e\u3067":132,define_selector:[46,26,37],select:[16,64,37,46,72,26,112,128,6,50,47,103,65,23,71,136,149],"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":148,"comments\u30c6\u30fc\u30d6\u30eb\u306elast_modified\u30ab\u30e9\u30e0\u306f":160,mecab:[145,115,36,132,118,13,112,6,133,65,23,163,76],mori:139,morn:100,mecab_new2:[6,65],"lucid\u304b\u3089":136,more:[124,3,82,83,6,8,125,163,10,45,95,131,72,12,134,15,100,101,55,56,108,112,159,151,65,154,158,118,27,122],yokoyama:[65,112],"\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":59,uint8:[65,39,136,83,112],"\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":132,function_nam:120,nomal:[6,65,95,8],cach:[16,1,118,112,6,103,65,67],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":59,uint64:[65,39,112],"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":132,endpoint:[117,54],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":64,learn:[46,95,134,112,65],"\u3092\u30af\u30ea\u30c3\u30af\u3057":132,"benchmark\u304c\u52d5\u4f5c\u3057":148,prompt:[6,65,3,4,89],scan:[158,155,131],accept:[11,3,117,118,84,6,90,65,23,45],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":23,groonga_cache_limit:[65,112],exmapl:[158,131],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":148,"search\u3092\u884c\u3044":[135,99],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[64,155],simpl:[145,115,41,83,13,119,133,50],isn:[83,6,8,129,42,163,10,95,134,49,55,58,108,112,151,65,154,115,158,27,120,103],"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":126,referenc:[116,112,6,149,65,55],grn_obj_get_rang:67,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":153,conditin:158,"\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":15,github:[0,62,132,105,112,6,65,91,23,163,68],m64:20,tokenbigram:[95,77,3,79,108,60,82,158,85,27,100,101,160,159,122,147,92,66,131,32,55],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,grn_obj_key_int:52,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":113,sysctl:[146,122,76],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":132,i386:[23,115,132],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[69,85],"\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":137,dest_kei:99,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":99,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":136,sauci:[65,13,112],html:[75,132],creat:[34,16,37,46,112,128,15,6,65,23,105],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":85,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":107,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":111,"drilldown_limit\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":95,"\u52d5\u753b\u5171\u6709\u30b5\u30a4\u30c8\u306e\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3092\u4f5c\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u307e\u3059":38,inada:[65,112],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":132,"\u65e5":160,authent:165,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":135,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":132,found:[95,47,112,6,99,89,65,163,10],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":81,with_posit:[100,95,3,79,159,60,160,83,27,62,101,122,66,131,158],procedur:[6,65,112],realli:[95,158,131],ftp:148,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":132,ftb:36,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":85,nest:[6,46,112,138,65],grn_column_index_upd:107,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":15,grn_user_data:[46,25,44,37],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":39,grn_table_hash_kei:[99,47],"\u3053\u3053\u3067":63,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":67,clumn:122,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":148,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":61,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":127,"\u5b9f\u969b\u306b\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3057\u3087\u3046":160,"\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":64,major:121,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":126,n_result:99,number:[118,121],"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[135,99,67,107],"\u3042\u308b\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u3064\u3044\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":136,file_corrupt:151,"org\u304c\u30db\u30b9\u30c8\u3092":132,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":107,relationship:[6,12,50,66,65],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":132,dpkg:132,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":132,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":136,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":30,"\u307e\u305f\u540c\u6642\u306b":148,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":81,reus:82,grn_ctx_set_match_escalation_threshold:53,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":128,comput:[131,108,122,6,74,42,65],toybox:12,grn_hook_entri:81,"\u95a2\u6570\u306e\u8ffd\u52a0":1,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":143,gted:105,"\u8fd4\u4fe1\u5148\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7":160,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u53cd\u6620\u3055\u308c\u308b\u307e\u3067\u3057\u3070\u3089\u304f\u6642\u9593\u304c\u304b\u304b\u308a\u307e\u3059":132,documenataion:120,self:148,also:[46,145,37,72,118,15,6,65,75,105],"keybuf\u306e\u30b5\u30a4\u30ba":99,"\u8a18\u53f7":[60,85],"sortby\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b\u6607\u964d\u9806\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":95,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":67,lexcon:3,"\u30bf\u30b0\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b":38,"\u81ea\u5df1\u7d39\u4ecb\u6587\u3092\u5bfe\u8c61\u306b\u691c\u7d22\u3092\u3057\u307e\u3059":160,plai:118,plan:145,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":132,table_pat_kei:[95,158,72,83,85,27,112,101,50,159,139,92,65,114,131,55],cover:[118,27],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":148,umemoto:23,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":95,ext:77,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":111,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[99,67,107],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":139,microsoft:89,"\u3057\u304b\u3057":[60,39,127],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":127,cache_limit:[46,26,37],escape_charact:71,session:[117,151],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":148,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":136,columnn:[6,65],"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":132,solut:[46,33],"\u304c\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570\u3092\u8d85\u3048\u306a\u3044\u7bc4\u56f2\u3067\u30ec\u30b3\u30fc\u30c9\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":95,factor:[65,95],"\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":60,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":132,"\u8907\u6570\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":160,"\u826f\u3044\u306e\u304b":111,"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306e\u3088\u3046\u306b":116,"8\u307e\u3067\u306e\u6570\u5024\u304c\u6307\u5b9a\u53ef\u80fd\u3067":85,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:99,"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":126,column1:[95,59,131,112,6,65],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":59,column2:[95,59,131,112,6,65],set:[16,95,145,125,72,13,112,6,133,17,65,67,115,103],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[148,85],grn_dat_repair:[65,98],startup:[6,65],touch:122,see:[145,46,115,163,37,72,20,118,13,15,6,133,17,110,65,76,68],"\u306e2\u5358\u8a9e\u6271\u3044":127,sec:17,sea:[42,77],juman:[145,115],speed:[23,10,82],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":69,"\u30c6\u30b9\u30c8\u7528\u30c7\u30fc\u30bf\u3092\u30ed\u30fc\u30c9\u3057\u307e\u3059":160,mutex:[65,112],"chroot\u74b0\u5883\u306e":132,javascript:[23,8,90],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":92,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":136,bodi:[65,112],last:[6,65,15],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":135,"\u7d9a\u3044\u3066":60,whole:[65,112],"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":148,load:[46,37,136,112,6,65,23,98],"256kib":122,"\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":128,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":135,"\u4f4d\u7f6e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30ab\u30e9\u30e0\u306e\u578b\u3068\u3057\u3066":63,"5367431640625e":4,devic:118,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":60,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":51,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":59,nonexist:95,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":135,"\u672c\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067":38,shinya:[6,65],func:[44,15],"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u3068favorites\u30ab\u30e9\u30e0":160,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":75,oldvalu:107,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":62,error:[145,16,115,47,46,118,13,98,112,15,6,133,89,121,65,23,163,71],rep_gqpt:148,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":156,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":148,user_data:[34,44],grn_table_at:[65,99,67,98,136],needleess:[6,65],"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":15,n_builtin_type_nam:70,nanosecond:[120,130],x64:[89,132],grn_result_too_larg:2,shorter:100,"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":156,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":155,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":106,"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":64,alert:[5,65,7,8,130],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":127,grn_db_create_optarg:70,stack:[65,112],recent:103,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":51,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":113,person:[46,121],"\u81ea\u52d5\u7684\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059":38,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":113,do_gqtp:148,"\u3067\u691c\u7d22\u3057\u305f\u5834\u5408\u3068\u540c\u4e00\u306e\u7d50\u679c\u3092\u8fd4\u3059\u3053\u3068\u306b\u3088\u3063\u3066":79,mysql:[145,95,36,72,118,13,119,27,133,115,164,154,10],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u3053\u3053\u3067\u306f\u6587\u66f8\u30c6\u30fc\u30d6\u30eb\u3068\u547c\u3073\u307e\u3059":79,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306f":160,"\u30bd\u30fc\u30c8":[46,138],parenth:49,grn_tokenizer_error:2,input:[120,3,108,74,112,49,90,23,42,65,10],format:[46,36,37,26,6,65,98,105],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":39,"\u5f15\u6570\u540d":[30,85],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":60,"\u691c\u7d22\u3092\u884c\u3044\u305f\u3044\u3068\u3057\u307e\u3059":[38,66],"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":39,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":85,encount:[145,115,13,133,89,121],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":135,sampl:[95,11,159,117,84,148,27,6,101,96,8,9,65,54,149],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":81,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"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":15,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":59,"56058502197266e":4,"aramaki\u3055\u3093":136,"ongaeshi\u3055\u3093\u304c\u5831\u544a":136,wget:[145,115,20,13,133,163],"\u6587\u5b57\u5217\u578b\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306f":116,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":99,grn_expr_pars:71,grn_cursor_lt:135,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":60,"\u6587\u5b57\u5217\u578b":79,"\u884c\u3059\u308b":132,repair:[65,98],"\u5f15\u6570\u3068\u3057\u3066":59,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,manag:[163,82,27,15,118,90,110,68,154,45,8],pcre:[6,65,8],span:[96,27],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":99,line_numb:120,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":160,submit:[75,132],custom:[95,77,158,165,130,140,119,27,112,6,164,8,65,163,23,68,55],madrid:11,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":132,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[158,116,12,6,90,65,131],line:[105,110,120,40,85,6,89,8,65,23,163,155,68],int8:[12,65,39,136,112],"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":148,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":62,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":132,"\u8907\u6570\u306e\u8a9e\u53e5\u304c\u4ed8\u4e0e\u3055\u308c\u3066\u3044\u307e\u3059":38,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":64,element1:[131,72],element2:[131,72],element3:72,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":132,msg_id:132,"char":[34,70,52,109,15,99,67,71,44,107],sholud:163,taro:38,invalid:[95,117,109,112,6,65,23,55],"grn_op_and\u306f":59,"\u5168\u6587\u691c\u7d22\u306e\u30b9\u30b3\u30a2\u304c\u4ee3\u5165\u3055\u308c\u3066\u3044\u308b\u4eee\u60f3\u7684\u306a\u30ab\u30e9\u30e0\u304c\u4ed8\u4e0e\u3055\u308c\u308b\u3053\u3068\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u30bd\u30fc\u30c8\u306e\u9805\u76ee\u3067\u8aac\u660e\u3057\u307e\u3057\u305f":63,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":67,lucid:[65,136,112,132],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":44,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":127,wrongli:23,ago:42,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306b\u7f6e\u63db\u3055\u308c\u3066\u304b\u3089\u691c\u7d22\u3055\u308c\u308b\u305f\u3081":79,algorithm:[23,11,103],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":155,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":132,fresh:100,hello:[100,131],code:[46,132,37,120,26,112,6,65,75,105],partial:[42,59,10,151],"\u7a7a\u306e\u5834\u5408":[31,94],send:75,table_list:[46,37,136,26,6,65,23],"\u30ab\u30e9\u30e0\u540d1":95,sent:45,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":148,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":81,"\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":99,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":93,tri:17,"\u30ab\u30e9\u30e0\u540dn":95,"\u306e\u5834\u5408\u306f":111,"try":[75,17,165],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":132,"\u5b9f\u969b\u306b":38,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":136,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":136,video:38,odd:131,"1\u5358\u8a9e\u6271\u3044":127,"blog1\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u308a":66,cenos6:[6,65],let:[95,11,3,72,12,100],ubuntu:[46,68,132,121,110],layout:132,nterm:113,thatn:95,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":44,greas:12,ctx:[34,35,47,106,70,67,81,18,15,16,135,99,59,52,53,93,71,44,104,107],"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":64,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":135,menu:89,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":135,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":132,location_str:160,"200byte":27,firefox:105,"\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":132,"geo_distance\u95a2\u6570\u306b\u4e0e\u3048\u308b\u6587\u5b57\u5217\u306f":63,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":75,"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":95,zip:[46,132,121],rid_min:106,doubl:[49,95,77,3,158,82,119,112,6,65,23,131,55],upgrad:[6,65,165],next:[65,47,3,44,118],process:[2,37,6,89,8,9,65,46,131,13,50,105,145,112,23,115,158,118,26,120,133,121],doubt:116,"\u30af\u30a8\u30ea\u62e1\u5f35\u6a5f\u80fd\u3092\u4f7f\u7528\u3059\u308b\u305f\u3081\u306b\u306f":79,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":95,"\u7d4c\u7def\u5ea6":63,comparison:[6,46,65],"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":160,socket_is_already_connect:151,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":59,"\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":148,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":136,"\u8ffd\u52a0\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a":126,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":127,high:[118,95,140,72],"\u304a\u6c17\u306b\u5165\u308a\u306e\u30b3\u30e1\u30f3\u30c8\u4e00\u89a7":160,"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":99,"column\u306e\u5024\u304c":59,"128515259x503187188":[38,63],defalt:136,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u306e\u969b\u306b\u6587\u5b57\u5217\u304b\u3089\u30ad\u30e3\u30b9\u30c8\u3055\u308c":160,"\u30b3\u30e1\u30f3\u30c8id":160,"\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":132,surfac:40,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,alloc:[16,95,46,69,15,6,33,65,71],essenti:[133,13,8],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":136,seriou:[6,65],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":148,element:[120,2,3,72,12,27,112,6,65],issu:75,"\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":132,allow:[3,118,27,6,133,90,65,54],posted_bi:160,"centos\u306e\u5834\u5408":132,"\u30a8\u30ed\u3044\u304a\u3063\u3055\u3093":160,move:[6,73,65,89,23],sen_sel_term_extract:36,comma:[12,49,3,131,116],yamaguchi:23,perfect:118,mitsuo:[65,112],hobbi:130,"2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":59,total:[6,56,113,65],"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[46,25,37],murakami:[65,112],python:[132,110],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":136,billiard:[60,127],lzo:121,"\u3053\u308c\u306b\u5bfe\u3057\u3066":127,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":132,grn_file_too_larg:2,bump:[65,112],meta:[6,65,83],"static":[23,3],grn_too_many_symbolic_link:2,"table\u306ecolumn":99,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[69,88,5,61,62,113,7,137,139,141,21,92,31,123,94],"\u4f4d\u7f6e\u60c5\u5831":63,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":136,builtin_type_nam:70,"\u7def\u5ea6\u306e\u30df\u30ea\u79d2":63,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":35,"\u30e6\u30fc\u30b6\u30fcid":160,"com\u3067\u3082\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u307e\u3059":132,"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":155,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":132,could:[6,12,65],mxcl:132,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":155,softwar:75,"\u5206":160,"\u5f15\u6570\u540d1":[30,85],"\u5f15\u6570\u540d2":[30,85],owner:[65,8,112],index_messag:66,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":99,expnas:154,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":113,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":113,"\u30cb\u30db\u30f3\u30b4":42,licens:[6,65,36,132],system:[0,95,158,20,118,39,13,27,112,100,12,8,122,65,23,163,131],"\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":64,hash_kei:82,grn_table_get_kei:99,termin:[3,15,6,8,65,71,44],articles2:66,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":51,itagaki:136,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":60,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":143,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":97,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":132,"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":153,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":127,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":15,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":95,"\u30e6\u30fc\u30b6\u30fc\u5225":160,"\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":132,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":111,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":136,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":136,subject:[65,112],thesauru:95,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":44,oracl:[46,121],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":143,segment:[6,65,113],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":148,latin1:[6,65,163],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":136,grn_cursor_by_kei:135,"\u3067\u3059\u306d":111,brew:[76,110],grn_column_name_score_len:107,fact:95,"\u62e1\u5f35\u5b50\u306f":148,dbm:[118,27],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[99,67,107],"\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":70,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":132,nois:108,freq2:74,freq1:74,should:[145,49,95,164,158,72,154,13,115,6,133,108,89,151,121,110,65,68,71,55],"\u691c\u7d22\u7d50\u679c\u3092\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3068\u30e6\u30fc\u30b6\u30fc\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3057":160,articles_cont:66,"\u30b3\u30e1\u30f3\u30c8\u884c":148,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":126,"\u6a19\u6e96\u5165\u529b":[69,88,5,61,62,113,7,137,139,141,21,92,31,123,94],"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":64,jiro:38,db1:45,db2:45,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":135,grn_column_t:107,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":64,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":85,"hat\u7cfb":132,candidate_1:117,grn_geo_cursor_next:47,candidate_2:117,"\u4e16\u754c\u6e2c\u5730\u7cfb":39,host_name_or_ip_address:90,"\u99c4\u76ee\u306a\u4f8b":111,grn_obj_lock:67,"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":132,"\u3066\u3057\u307e\u3044\u307e\u3059":111,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":113,memri:122,encodiong:131,max_command_vers:[90,69,3,4,8],grn_obj_user_data:104,"ueno\u3055\u3093\u304c\u5831\u544a":128,tld:116,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[52,99,93],"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":99,"\u3053\u3053\u3067\u306f\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3068\u547c\u3073\u307e\u3059":79,grn_type_cr:52,"\u6307\u5b9a\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u8ab0\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b\u306e\u304b\u3092\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":160,zenigata:38,"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":127,grn_ii_buff:18,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":44,quotat:[77,119],"\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":136,"\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":136,immedi:[118,8],"\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":60,grn_obj_unlock:67,grn_cache_clos:16,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":92,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u63d0\u4f9b\u3059\u308b\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":43,spain:11,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":136,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3057\u30661\u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u65b9\u5f0f\u3067\u3059":66,"\u691c\u7d22\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u3092\u8907\u6570\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u3059":66,"\u304c\u305d\u308c\u305e\u308c2\u4ef6\u305a\u3064\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":160,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":148,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":69,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":148,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":99,ultra:38,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":51,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":44,site:[38,3,116,12,63,90,139,140,65],archiv:[46,163,132,121,105],"\u30e6\u30fc\u30b6\u304c\u6307\u5b9a\u3057\u305f\u691c\u7d22\u6587\u5b57\u5217\u3092\u9069\u5b9c\u62e1\u5f35\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":79,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":136,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":69,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":135,"\u306e\u3082\u306e\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":160,output_column:[6,65,137,112,72],"\u30ad\u30fc\u30ef\u30fc\u30c9":128,expans:[95,6,101,65,23,154],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":67,"dist\u3067\u751f\u6210\u3057\u305ftar":132,kisk:[6,65],php:[6,65,132],expand:[46,95,37,112,6,9,65],off:[23,8,65],dinam:140,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":95,exampl:[144,118,75],command:[16,136,37,46,105,118,72,112,15,6,89,110,91,23,65,163,68],ecmascript:[6,65,95,131,140],cutter_check_leak:155,value_2:[3,90],web:[95,158,108,134,8,74,163],jinja:110,uncontinu:[6,65],end_of_data:151,geo_in_circl:[46,37,112,65,23,142],"\u7d50\u679c\u306f\u4e0a\u306e\u4f8b\u3068\u540c\u3058\u306b\u306a\u308a\u307e\u3059":66,"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":30,broken_pip:151,"185428000x":11,dest:[12,156,85],"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b":63,five:[120,3,84],"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":106,"\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":136,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":113,"\u3053\u306e\u3088\u3046\u306bn":60,"\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":126,rep_gqtp:148,grn_plugin_regist:128,interact:[3,90],"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":60,daylight:65,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":94,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":99,avoid:[46,33,112,65],hash_index:160,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":135,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":30,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":23,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":132,iwai:[6,65,98,112],"scorer\u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8":[46,138],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":60,"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":67,event_queri:[108,134,161,74,42,54],merg:[6,65,118,105],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":85,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":132,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":39,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":21,"com\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30da\u30fc\u30b8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":132,"function":[46,36,132,37,117,118,120,112,6,8,65,155],cutter_debug:155,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":69,"\u691c\u7d22\u4f8b4":75,"\u691c\u7d22\u4f8b3":75,"\u691c\u7d22\u4f8b2":75,"\u691c\u7d22\u4f8b1":75,sigstop:[65,112],"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":136,count:[118,95],grn_table_cursor_delet:135,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":39,otherwis:[62,3,131,159,16,101,50,149,84,114,67,68],problem:[16,158,12,112,122,6,8,23,65,131],yuki:23,"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":132,bigram:[60,160,148,161],"int":[34,16,47,106,4,81,18,15,6,135,99,17,107,52,53,65,67,71,44,70],updated_at:60,jessi:[46,121],redcloth:132,againt:95,inc:65,grn_obj_key_norm:99,"init\u76f4\u5f8c\u306e\u72b6\u614b":15,varieti:38,variabl:[131,20,98,83,112,6,12,151,23,65,154],"edge\u306equeue\u306benqueue\u3055\u308c\u308b":143,repeat:[118,105],"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":59,grn_geo:[46,25,37],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":113,"string\u306b":59,document_version_ful:132,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":85,rule:45,dbmss:118,"scr\u3067\u3059":148,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":127,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":85,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":39,lgpl:36,"const":[34,70,52,109,98,15,99,135,65,67,71,44,107],"\u6bb5\u843d\u60c5\u5831":107,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":99,spec:[6,23,112,65],"\u524d\u63d0\u6761\u4ef6":75,secsion:120,editrc:23,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":135,"status\u30b3\u30de\u30f3\u30c9":1,"\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570":95,grn_cache_set_max_n_entri:16,upload:132,msyql:72,unmanag:113,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":64,"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":99,entries_local_nam:139,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":67,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":132,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u306e\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u3092\u4f5c\u6210\u3057\u3066\u307f\u307e\u3057\u3087\u3046":160,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":99,zunda:23,"\u547c\u51fa\u5074\u3067\u6e96\u5099":35,"groonga_github_com_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":132,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":85,"\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":85,"\u7de8\u96c6\u8ddd\u96e2":1,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":75,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":107,"obj\u3092unlock\u3057\u307e\u3059":67,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":148,"\u9759\u7684\u89e3\u6790":75,"\u3092\u8ffd\u52a0":[23,136],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":23,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":85,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":137,column_remov:[46,26,37],"\u305d\u308c\u3067\u306f\u5b9f\u969b\u306b":79,kytea:[6,65,77,112,163],"\u73fe\u5728\u5730":160,"\u30d6\u30ed\u30b0\u306e\u30c6\u30fc\u30d6\u30eb\u3067":66,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":148,word:[95,125,158,108,118,140,6,159,74,42,65,154,10,131],work:[118,75,132],"\u3042\u308a\u304c\u3068\u3046":160,era:118,"\u3068\u3044\u3046\u540d\u524d\u306e":63,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"16gb":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":148,geo_in_rectangl:[46,1,37,136,112,65,23,142],indic:[11,3,112,77,65,130],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":148,"\u305f\u3081\u3057\u306b\u6771\u4eac\u99c5\u3068\u65b0\u5bbf\u99c5\u3068\u3064\u3044\u3066":63,basebal:[38,66],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":99,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u540d\u524d":[46,37],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":132,length:[6,12,65],pseudo_column:[125,107],"\u30ec\u30b3\u30fc\u30c9\u306e\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u4e21\u65b9\u306e\u6761\u4ef6\u306b\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":160,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":92,recogn:118,"builtin_type_names\u306b\u306f":70,after:[105,47,3,131,89,12,82,112,122,6,117,164,90,8,110,23,65,163,17],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":127,lat:148,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":135,grn_is_a_directori:2,"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,n_queri:[90,69,3,4,8],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":136,"128484216x502919856":160,confiugr:122,opaqu:[16,151],localnam:139,grn_fals:67,too_large_offset:151,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":30,wgs84geopoint:[38,47,116,12,160,39,63,11,90,23],order:[95,3,158,116,118,40,112,6,151,65],"2\u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4f5c\u6210\u65b9\u5f0f\u304c\u3042\u308a\u307e\u3059":66,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":60,offici:[23,115,145,132,101],"\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u95a2\u4fc2\u3092\u9006\u306b\u305f\u3069\u308b\u691c\u7d22\u304c\u3067\u304d\u307e\u3057\u305f":38,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":106,"3\u30ea\u30ea\u30fc\u30b9":65,grn_default_query_logger_set_path:[6,65],flexibl:[101,140,118],"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":59,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":132,grn_network_is_down:2,"\u4e16\u754c\u6e2c\u5730\u7cfb\u3067\u306f":63,grn_unknown_error:2,grn_obj_column_scalar:107,them:[0,62,95,11,3,158,72,133,73,105,13,115,49,12,145,17,122,120,163,90],thei:[77,4,82,8,9,130,163,10,45,49,95,131,72,100,140,108,20,159,154,158,119,27,74,42,122],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":51,fragment:31,comment_index:160,"break":[6,23,65],"\u6570\u304c\u5927\u304d\u3044\u307b\u3069\u591a\u304f\u306e\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":85,jinja2:[132,110],deatil:95,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":148,"\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":59,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":127,"1\u3064\u306e\u52d5\u753b\u306b\u306f":38,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":75,ruby_load:[46,26,112,37,65],serach:108,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":155,"\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":53,logo:[6,65],network:[6,65,151,45],morpholog:[118,163,131],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":81,palal:132,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":64,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,standard:[49,39,3,8,90],vector_column:[42,112,65],sequence_dataset:161,"\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":95,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":143,"\u8fd4\u4fe1\u5148\u60c5\u5831\u306a\u3069":160,"\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":148,"\u7def\u5ea6\u7d4c\u5ea6\u5ea7\u6a19":160,"\u4e3b\u30ad\u30fc\u306e\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3082\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":126,regress:[65,112],grn_qlog_path:[6,65],"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":148,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":136,"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":155,independ:118,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,153],"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":132,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":67,john:149,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":132,latitude_in_degreexlongitude_in_degre:131,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":97,target:[16,95,47,3,158,67,72,12,27,6,101,77,89,110,163,23,65,49,71,45,55],provid:[3,4,165,82,83,6,8,42,10,45,145,11,13,15,101,108,65,154,68,115,116,117,118,25,133,74,164,90],minut:[130,42,131,108],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":31,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":132,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":70,"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":75,latter:[164,154],indexbuf:107,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":51,"\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":111,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,usernam:[38,89],"\u3092\u7528\u3044\u305f\u7d5e\u8fbc":63,"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":155,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":30,"128551935x502796434":160,"128551935x502796433":160,gronnga:10,excut:[65,112],"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":111,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":113,"\u7d4c\u7def\u5ea6\u304c\u6307\u5b9a\u306e\u77e9\u5f62\u9818\u57df\u5185\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b":63,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":127,protocol:[46,115,2,4,145,118,13,85,124,6,133,8,65,148,30,45],"column\u306f":107,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":60,latenc:148,"\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":132,"\u3055\u3089\u306b":[38,160],"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306ffreecod":132,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u306f":63,liblzo2:[133,13],keyword2:[6,65],keyword1:[6,65],grn_obj_key_with_si:99,"query\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b":63,"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831":160,optimum:8,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":75,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":139,suffixsearchterm:[158,131],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":111,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,"table\u304c":99,accord:[12,11],hai:59,res_tabl:148,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":127,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":99,address_is_in_us:151,howev:118,"\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":139,grn_obj_check:67,"\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":92,com:[95,3,132,116,12,63,90,91,105,45,68],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":21,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":132,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":64,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":148,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":44,"\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":132,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":136,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[146,163,90],"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":132,macport:[46,121],snippet3:27,enginen:42,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":148,"\u30b3\u30de\u30f3\u30c9\u306bquery_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066":79,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":99,"\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,inhibit:[65,98],grn_ctx_db:15,gnu:[46,121,110],zlib:121,sourceforg:[132,22],grn_obj_prepend:67,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":113,aio:[65,112],cond:[65,112],conf:[146,124,8,122],"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":113,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":155,grn_cach:[46,25,37],perform:[118,23,95,112,65],"\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":39,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":53,warri:121,descend:[134,95],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":136,"\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u691c\u7d22\u3057\u305f\u5834\u5408\u306b":79,"\u6771\u4eac":[60,160,127],unsupported_command_vers:151,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":15,hana:38,hang:[65,112],hand:[159,12,118,101,8,66],"\u52d5\u753b\u306e\u30bf\u30b0\u60c5\u5831\u3092tags\u30ab\u30e9\u30e0\u306btag\u30c6\u30fc\u30d6\u30eb\u578b\u3067\u8907\u6570\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059":38,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":81,blog_bodi:60,o_binari:[6,65],client:[6,65,124,8,151],thi:[145,77,3,4,119,83,6,89,8,65,129,42,163,114,45,49,95,11,131,72,12,162,13,16,101,50,103,110,142,54,55,144,58,108,20,146,130,112,62,159,151,84,23,66,67,154,68,115,160,158,116,117,118,25,26,27,161,120,133,121,74,122,75,76,90],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":132,"_score":[38,95,11,3,107,72,60,134,74,112,6,101,63,108,51,42,23,65,160,66,131],no_such_devic:151,"table_list\u306f":92,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":127,"\u30e6\u30fc\u30b6\u30fc\u306e\u81ea\u5df1\u7d39\u4ecb":160,grn_default_logger_set_path:[6,65],"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":136,"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u306b\u3042\u308b\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8\u3092\u9006\u5f15\u304d\u3057\u307e\u3059":160,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":75,"\u8ad6\u7406\u7a4d":59,grn_ctx_per_db:[23,15],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u306ebase_version\u306e\u66f4\u65b0":132,scan_build:155,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":92,"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":132,night:100,grn_column_name_id_len:107,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":52,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":160,normallexicon:164,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":21,tokenbigramsplitsymbolalphadigit:[60,101,147,32,108],grn_obj_renam:67,tasuku:36,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":127,"\u30b3\u30e1\u30f3\u30c8\u306e\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u4e00\u89a7":160,shift_ji:163,grn_inappropriate_i_o_control_oper:2,repositori:[75,150,132],post:[95,47,132,112,6,65],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":148,obj:[35,67,70,81,113,93,71,44,104,107],comment2:66,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":156,zxvf:132,"\u3068\u306a\u308a":60,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":111,"float":[6,65,120,11],bound:65,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":127,grn_ctx:[16,107,37,46,25,6,17,65],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":75,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":15,coverag:155,accordingli:8,wai:[0,4,116,72,118,112,6,101,8,140,65,75,54],"hiroshi\u3055\u3093":136,conbin:[95,140],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":29,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":107,event_dataset:[54,161],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7ba1\u7406\u30e1\u30cb\u30e5\u30fc\u304b\u3089":132,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":60,"true":[1,88,3,79,5,83,7,9,129,114,94,100,95,11,131,72,12,49,101,50,137,21,55,38,58,61,112,62,159,63,96,84,65,66,153,126,158,116,160,27,29,149,164],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":85,"\u4e00\u822c\u7684\u306b\u306f":67,maximum:[56,95,3,131,12,146,151,84],inaccur:[6,65],creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:[6,65],mte:36,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[69,88,5,61,62,113,7,137,139,141,21,92,31,123,94],fedoraproject:115,score1:59,score2:59,resource_deadlock_avoid:151,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":148,"\u8a9e":113,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":85,test:[145,115,3,132,12,13,148,6,133,89,8,121,65,66,155,90],freecod:75,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":136,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":62,"\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210":[46,138],max_siz:135,tajima:[6,65],"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":15,"\u5c0f\u6570\u90e8\u5206\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u30de\u30a4\u30af\u30ed\u79d2\u6570\u3067\u306e\u6307\u5b9a\u304c\u53ef\u80fd\u3067\u3059":160,masaharu:[6,65,98,112],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":111,global:[6,46,25,37,65],"s3ki\u3055\u3093":136,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":111,"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":59,hubeni:11,value_typ:99,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":148,graph:118,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":5,tracker:75,takiuchi:[65,112],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":85,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":59,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":126,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":62,administr:[6,46,65],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":67,grn_obj_unlink:67,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":132,"4gbyte":56,upper:[23,3,55],version:[69,64,4,132,20,148,13,85,112,15,6,11,102,36,89,8,65,23,164,165],"\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":64,"groonga\u3084mysql\u306erpm":132,cost:100,admin_html:[23,85],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":104,appear:[95,77,3,158,118,27,2,154,131],"\u7def\u5ea6\u306f":39,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":111,"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":132,gener:75,satisfi:[49,65,112],minagawa:[65,112],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":148,redmin:0,table_hash_kei:[95,11,131,72,100,101,96,139,84,92,164,149,55],trial:118,"\u305d\u306e\u969b":132,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":85,behav:[117,11],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":64,"\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":153,"\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":135,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":111,"\u691c\u7d22\u7d50\u679c":95,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":155,output_typ:[30,4],freq0:74,mobil:118,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":136,httpd:[43,16,115,145,132,37,46,13,112,6,133,65,23,98],"\u30b0\u30eb\u30fc\u30d7\u5316\u306e\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":95,grn_dat:23,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":67,"648\u4ee5\u4e0a2":39,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[75,150],key_typ:99,furigana:134,"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":132,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":60,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":155,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":67,daiki:[6,23,136,128,65],prepar:[8,27],grn_table_sort_kei:99,grn_illegal_byte_sequ:2,can:[34,0,124,2,3,4,82,83,40,85,103,6,77,89,90,9,129,42,65,163,10,45,49,95,11,131,72,12,134,13,15,16,101,50,17,110,142,55,105,58,108,146,130,140,98,112,145,100,62,159,96,151,84,23,66,154,68,115,164,158,116,118,25,119,27,120,133,74,122,76,71,8],clearlock:[6,46,26,37,65],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":23,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":99,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,topic:75,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":85,occur:[62,47,134,120,112,15,6,50,122,65,163,154],multipl:[16,95,77,158,46,117,118,83,72,119,112,6,101,149,65],mpaa:84,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[90,69,3,4,8],write:[95,158,98,85,110,65,66,163,32,131],grn_table_select:75,familiar:116,flanc:11,grn_cursor_ascend:135,"\u5b9f\u969b\u306b\u306f":95,product:8,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":113,southern:[6,65],uint:[6,65],"rb\u3092\u8ffd\u52a0":136,grn_too_many_open_files_in_system:2,favorit:[160,105],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":113,increas:[95,77,72,118,147,11,41,129,122],tagger:118,still:[73,112,50,65,105,165],ieee:39,dynam:[98,65,3,8,118],"\u5171\u901a\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u3066\u3082":66,window:[46,132,121],"\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":59,non:[120,95,158,112,6,65,131],loaded_valu:58,recal:[118,140],rake:132,col2:67,col3:67,col1:67,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":99,"geopoint\u578b\u3067\u3059":160,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":35,half:164,alisa:101,now:[46,58,145,37,72,98,9,62,110,129,65,163,142,105],discuss:[0,22],nor:95,introduct:[75,14],drop:[6,23,112,65],"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":92,januari:[117,131],grn_encod:[46,25,37],domain:[73,83,85,6,50,92,65,67,71],replai:8,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":132,"takahiro\u3055\u3093\u304c\u5831\u544a":136,significantli:118,year:[130,131,84],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":132,shown:3,"\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":153,space:[95,77,3,158,72,118,119,112,49,74,23,65],acccess:124,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":148,"\u30df\u30ea\u79d2\u8868\u8a18\u306e\u5834\u5408\u306f\u305d\u308c\u305e\u308c":63,"\u307e\u305f\u901a\u5e38\u306f":39,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":132,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":39,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":15,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":107,grn_db_kei:[65,98],care:[42,83,158,95,105],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":132,couldn:[6,65],arnaud:23,"175904000x8464000":11,grn_ctx_get_match_escalation_threshold:53,with_check:[65,119],rins:132,yourself:121,column_n:159,size:[56,145,115,107,113,82,83,13,27,112,6,133,89,8,121,65,23,71,52,122,55],silent:68,bookmark:72,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":132,"\u5ea6\u6570\u8868\u8a18\u306e\u5834\u5408\u306f\u305d\u308c\u305e\u308c":63,filter:[72,112,6,149,137,65,23],friend:[38,75],column_3:159,column_2:159,column_1:159,kenichi:[23,136],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":64,"\u6307\u5b9a\u3057\u305f\u5024\u306f":160,"\u4e8c":42,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":39,"\u30b9\u30b3\u30a2\u9806\u306b\u6607\u9806\u306b\u30bd\u30fc\u30c8\u3059\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u3066\u3044\u307e\u3059":63,"\u4f4d\u7f6e\u60c5\u5831\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3057\u3066":38,"\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":59,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":67,"\u7d4c\u5ea6\u304c139\u5ea642\u52060":63,than:[56,95,11,72,118,83,140,27,112,134,65,23,55],"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":127,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u5dee\u5206\u3092":148,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"\u30ad\u30fc\u30ef\u30fc\u30c9\u3068geopoint\u306e\u4e21\u65b9\u3092\u6761\u4ef6\u306b\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3059":160,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":44,browser:[163,90,105],analysi:[118,163,131],grn_obj_compress_lzo:107,"\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":160,your_new_db:23,"txt\u306e\u5185\u5bb9":132,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":67,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":92,"\u3059\u308b\u3068":155,begin:156,"6813819x139":[12,63],"\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":85,price:12,"\u30b3\u30e1\u30f3\u30c8\u3067\u5168\u6587\u691c\u7d22\u304c\u51fa\u6765\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3067\u3059":160,renam:[3,82,112,6,50,65,23],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\u3068\u308a\u3068\u3093":[158,131],"6909211x139":63,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":111,column_renam:[46,37,26,112,65,98],"\u306e\u3088\u3046\u306a\u30bf\u30b0\u3067\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f":38,"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":113,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"\u3053\u306e\u3068\u304d":[160,127],concurr:130,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":75,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":99,pakcag:145,onli:[124,2,3,82,40,6,77,89,8,129,114,45,49,95,96,131,12,134,13,16,101,110,55,145,100,159,149,103,84,65,66,154,68,115,164,158,118,27,133,121,105],"\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":60,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":59,"\u3050\u308b\u3093\u304c":[158,131],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":136,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":5,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18\u306e\u5ea6\u6570":63,"128mb":[6,65],allow_pragma:95,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":64,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":153,error_loc:120,"configure\u306e":23,ggdb3:132,sport:38,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":51,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[120,122,95,158,131],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":113,between:[46,95,37,40,112,6,50,65,23,67,142,55],"import":[16,95,77,158,132,72,118,26,112,15,6,8,65,23,163,154,45,55],"\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":132,pthread_:[65,112],"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":60,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":70,instroduc:[65,112],nearbi:118,"\u305f\u3068\u3048\u3070":[63,127,79],tutori:[6,34,65,162,46],grn_encoding_pars:109,"time\u578b\u306b\u3064\u3044\u3066\u306f":160,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":132,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":132,grn_too_many_link:2,exploit:118,"debian\u7cfb\u3082\u3057\u304f\u306fr":132,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[35,67],"\u30e6\u30fc\u30b6\u30fc\u306e\u540d\u524d\u3084\u81ea\u5df1\u7d39\u4ecb\u6587":160,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":156,emphas:96,rubi:[58,36,72,118,6,140,129,65,68],"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":85,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":67,"edge\u306fctx\u3092\u542b\u3080":143,"\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":15,"\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":15,grn_resource_temporarily_unavail:2,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":62,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":15,nnede:122,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":62,develop:[118,75],etc:[124,3,132,12,146,6,133,8,122,65,75,154,45],media:65,epoch:12,document:[118,75,132],finish:130,"\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":132,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":113,"\u30bf\u30b0\u691c\u7d22":[46,138],eito:[65,112],repoforg:[6,65,115],grn_permission_deni:2,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":60,"key_type\u306bt":99,"_post":132,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":136,grn_column_name_scor:107,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":85,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,isssu:65,mmap:[46,33,112,65],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":23,"groonga\u306a\u3046":160,"\u30ad\u30fc":85,grn_plugin_proc_get_var:[34,65],real:[118,27,122],swig:36,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":148,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":85,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u3068\u306f":160,"\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":95,invalid_argu:151,benefit:124,cascad:[65,112],output:75,unsplit:[95,59],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":99,index_friend:38,"\u51e6\u7406\u6642\u9593":95,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[88,5,61,7,137,21,94],"message\u30ab\u30e9\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u7528\u306bindex_message\u30ab\u30e9\u30e0\u3068":66,"\u30d9\u30af\u30bf\u306e\u5024\u3092":136,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,grn_no_such_file_or_directori:2,tomoatsu:[6,65,136],unicod:164,grn_bad_file_descriptor:2,src:[12,133],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":85,degre:[12,23,131,72],backup:139,processor:[145,133,115,13,118],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[126,132,60,160,127,148,139],insuffici:12,your:[118,75],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":156,log:[46,132,121],area:118,aren:[95,158,82,40,27,6,8,122,65,45,55],start:[100,95,11,4,117,120,158,112,130,6,50,89,65,23,131,154,45,105],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":39,lot:[65,112],"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":148,submiss:[42,134,108,74],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":153,ealier:[6,65],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":95,"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":148,"2\u884c\u76ee":148,grn_not_socket:2,"default":[118,121,110],"\u3068\u5171\u306b":107,invalid_seek:151,multibyt:23,pseudo:[49,95,158,116,112,6,65,131],"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":97,value_1:[3,90],prepend:[131,8,158],valid:[3,12,82,74,112,6,65,23],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":81,grn_obj_add_hook:81,you:[34,0,124,2,3,4,82,83,40,85,103,22,6,129,77,89,90,9,91,42,65,163,45,142,49,95,11,131,133,73,134,13,15,16,101,50,17,110,119,54,55,144,105,58,145,146,140,98,112,62,159,96,151,84,23,66,154,68,115,164,158,116,117,118,72,26,27,161,120,12,149,121,74,122,75,76,8],string2:97,string1:97,poor:154,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":135,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":67,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":135,reduc:[124,108,82,6,118,65,45],"n_builtin_type_names\u306b\u306f":70,naoya:[65,112],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":113,"\u3092\u683c\u7d0d\u3057\u307e\u3059":107,drilldown_offset:137,month:[38,131,130],"2\u3064\u76ee\u306e\u65b9\u6cd5\u306f":160,"4byte":151,"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":160,articl:66,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":62,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":148,zlib_error:151,mechan:[6,65,8,45],"\u3067\u6271\u3063\u305f":160,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":64,veri:[49,95,158,82,120,27,118,6,65,42,45,131],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":107,patsuffix:126,query_flag:[6,65],masafumi:[65,112],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":59,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":113,"\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":35,tokenkytea:[6,65],groonga_dir:132,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":127,"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":148,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":132,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":99,learner:[43,46,161,37],"\u95a2\u6570\u306f":[29,97,59,153,57],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":113,naoina:[6,65,112],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":148,too_many_symbolic_link:151,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":156,snippet1:27,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":135,snippet2:27,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":81,amount:[6,65],"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":135,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":155,score_1:117,score_2:117,hoge:[85,97],famili:[77,131],"1024r":132,"\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":132,"\u30c8\u30e2\u3061\u3083\u3093":38,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":67,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":132,bash:163,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":127,fulltext:[145,95,77,40,158,101,82,13,25,27,133,131,66,164,115,124,55],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:23,score_n:117,cutter_dir:132,histori:23,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":95,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":70,"\u3059\u3063\u3071\u3044\u30d6\u30c9\u30a6\u3068\u7518\u3044\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":79,grn_db_int:67,phrase:[6,65],"\u30e6\u30fc\u30b6\u306e\u6307\u5b9a\u3057\u305f\u691c\u7d22\u6587\u5b57\u5217\u3092\u7f6e\u63db\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb":79,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":104,anoth:[95,71,6,118,65,154],"scorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u304a\u3044\u3066":63,spreadsheet:154,snippet:[6,65,36,27],grn_expr_syntax_escap:71,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":132,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":107,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":132,"\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":85,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":30,allow_column:[95,158],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":126,grn_table_group:99,egg:66,narwhal:23,logrot:[6,65],"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":132,help:[73,121,105],soon:[40,27,45],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,paramet:[35,37,81,6,89,23,93,44,46,47,102,15,16,99,17,53,104,106,107,52,109,112,135,65,67,98,70,71],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":136,systemd:[6,65],"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":132,"\u5024\u306e\u7bc4\u56f2\u306f1":51,shimada:[6,65],comments_cont:66,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":60,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":59,"\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":148,range_error:151,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":135,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":99,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":95,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":132,fulli:[6,65,8],yito:[6,65,112],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":39,"video\u30c6\u30fc\u30d6\u30eb\u306etags\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092index_tags\u30ab\u30e9\u30e0\u306b\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059":38,"\u307e\u305a\u306f":[160,79],heavi:95,grn_column_nam:107,"\u30b9\u30ec\u30c3\u30c9\u6570":148,"\u30d5\u30a1\u30a4\u30eb":132,todo:[34,35,81,18,93,44,95,47,72,102,15,99,53,142,104,106,107,52,109,135,67,70,119,161,120,48,71],event:45,"\u3080\u308b\u3093\u304c":[158,131],"http\u30b5\u30fc\u30d0\u30fc":[43,46,8,37],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":132,proxy_pass:8,publish:[65,132],"\u691c\u7d22\u5bfe\u8c61\u306e":60,trusti:[65,13],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":62,"shutdown\u306f":123,textil:132,"1\u30ea\u30ea\u30fc\u30b9":65,"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":64,pub:[115,132],asc:132,reason:[95,116,146,124,6,65,42,163,45,55],base:[124,77,6,90,42,163,145,47,131,13,105,108,112,65,115,158,117,118,27,133,74,165,8],grn_ctx_fin:[6,65,15],put:[65,158,122,105],"groonga\u53ca\u3073groonga":148,rect:[6,65,11,153],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":148,due:[118,27],assign:[65,77,112],grn_obj_get_valu:[23,67],"\u4fee\u6b63":65,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":64,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":126,placehold:[65,112],miss:[6,23,154,112,65],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":99,conditional_probability_threshold:[23,134],station:40,zeromq:163,schema:[95,11,158,108,27,161,100,101,96,159,84,122,66,149,131],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":136,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":127,"max\u3068common":135,grep:[133,115,13,145],"\u30bf\u30a4\u30c8\u30eb\u3068\u5185\u5bb9\u3068\u304c\u305d\u308c\u305e\u308c\u5225\u306e\u30ab\u30e9\u30e0\u306b\u5165\u3063\u305f\u3082\u306e\u304c\u3042\u308b\u3068\u3057\u307e\u3057\u3087\u3046":66,jqueri:65,"\u4efb\u610f\u306edb\u540d":148,str:71,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":67,"windows\u5411\u3051":132,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"null":[16,58,47,103,95,92,27,15,6,77,96,59,65,23,112,71,44,55],"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":99,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":113,lib:[124,136,112,8,9,65],"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":132,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":95,elapsed_tim:[120,130],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":153,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":155,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":64,grn_snip:[6,65],tokenbigramsplitsymbol:[60,147,32],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":155,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":99,clear:[6,23,67,132,65],grn_too_many_open_fil:2,clean:[155,132],newvalu:107,weight_in_weight_vector:72,latest:[75,22],"scorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306b":63,grn_ctx_t:2,northern:[6,65],"\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":132,wanab:[65,112],yml:68,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":64,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":136,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":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":148,grn_get_default_encod:109,grn_obj_compress_zlib:107,remot:[46,138],"\u68ee\u7530":38,"\u82b1\u5b50":38,grn_hook_get:81,doc_bodi:79,"\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":132,grn_obj_is_lock:67,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":60,close:[49,82],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":62,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":148,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":155,isob:[65,112],numer:[46,158,138],no_locks_avail:151,both:[100,95,145,3,158,72,82,120,13,27,62,133,89,151,121,118,42,125,115,45,131],grn_range_error:2,geopoint:11,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[5,85],condition2:131,condition1:131,"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":136,"127975798x502919856":160,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":99,"000x":105,too_small_limit:151,header:[6,20,112,65],"\u623b\u308a\u5024\u3067\u3042\u308b":106,linux:[46,121,110],tokenbigramignoreblanksplitsymbol:[60,147,32],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":148,stamp:[130,42,108,74],"\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":59,"null\u306a\u3089temporari":70,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":107,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":94,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":126,grn_table_sort_desc:99,combind:158,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,153],grn_table_cursor_get_kei:135,"\u3082\u30461\u3064\u306f":66,coordin:[12,11],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,99,153],"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9":[46,138],unpatch:36,look:2,"\u5b9f\u306f":38,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":153,"while":[100,77,118,112,6,50,65],"\u691c\u7d22":[46,95,136,19],"\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":85,grn_zlib_error:2,grn_column_name_value_len:107,loop:[6,65],pack:121,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":148,readi:[95,158,6,110,65,163,131],readm:[65,112,132],fedora:[46,132,121,110],belong:[125,116],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":30,"\u51e6\u7406\u958b\u59cb\u6642\u9593":95,octal:131,"\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":67,src_kei:99,imagin:[95,116],grn_set_default_match_escalation_threshold:53,temporari:[6,46,11,37,65],user:[83,6,89,90,130,42,163,10,45,95,101,50,139,38,108,148,112,159,149,84,65,114,158,117,160,27,120,74,122,75,8],"takuto\u3055\u3093\u304c\u5831\u544a":136,"\u306e\u30ab\u30e9\u30e0":[31,94],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":44,"\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":85,input_output_error:151,"\u6307\u5b9a\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u3092\u53cb\u4eba\u30ea\u30b9\u30c8\u306b\u5165\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":38,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":99,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":99,"koi8r\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":85,nise_nab:65,"\u30af\u30a8\u30ea\u306e":60,recurs:[95,154,8],"56880000x":11,"\u3088\u3046\u3053\u305d":160,nginx:[145,115,13,112,6,133,65],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":99,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":111,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u304c1\u3064\u3057\u304b\u3042\u308a\u307e\u305b\u3093":66,address_is_not_avail:151,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":113,"\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc":[46,138],grn_table_sort:99,"match_columns\u30d1\u30e9\u30e1\u30fc\u30bf":[46,138],resolv:[6,23,31,72,65],elaps:[131,117,120,130,23,4],"32bit":[65,112],popular:[95,72],"\u30c7\u30d5\u30a9\u30eb\u30c8":59,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":99,creation:[23,3,112,65],some:[56,120,77,158,161,72,118,130,112,22,6,101,145,142,17,122,65,163,71,105],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":31,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":148,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[5,7],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"title\u3082\u3057\u304f\u306fmessage\u30ab\u30e9\u30e0\u3067\u306e\u691c\u7d22":66,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":30,"\u79cb\u8449\u539f\u99c5\u306e\u4f4d\u7f6e\u306f\u7def\u5ea6\u304c35\u5ea641\u520655":63,entry_bodi:62,run:[75,155,132,105],step:[3,12,89,74,163,105],"1\u3064\u76ee\u306e\u65b9\u6cd5\u306f":160,"\u6307\u5b9a\u3057\u305f\u6642\u9593\u3088\u308a\u3082\u524d\u306b\u6295\u7a3f\u3055\u308c\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,"\u3082\u3057test":148,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u305d\u3053\u3067":60,grn_no_memory_avail:2,"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":106,block:[12,65,8,112,55],libzmq:[133,13],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[59,71],within:[42,108],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":132,grn_obj_key_uint:52,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":132,patprefix:126,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":99,properli:[6,65,90,158],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":23,"\u30bd\u30fc\u30c8\u901f\u5ea6\u304c\u901f\u304f\u306a\u308a\u307e\u3059":38,pangolin:[6,65,13,132],tokenbigramignoreblanksplitalpha:32,hereaft:118,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":132,newer:110,info:[5,7,8],utc:[120,131],"0xc7":151,utf:[36,4,117,112,164,6,65,163,131],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":64,"column_create\u306f":62,munin:[133,115,121,145],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":59,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":148,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":111,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":132,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":109,grn_cas_error:2,doesn:[77,82,83,40,6,8,42,163,45,95,131,100,50,17,55,108,112,84,65,154,158,27,120,122,164,165],repres:[12,85,71,131,140],"homebrew\u306e\u66f4\u65b0":75,before_instal:68,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":132,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":67,pronounc:140,titl:[38,95,3,158,116,97,12,112,159,90,132,65,66,131],accross:[6,65],grn_ctx_close:[23,15],orangain:[65,112],"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22":[46,138],sigcont:[65,112],"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":136,draw:38,"groonga\u5358\u4f53\u3067test":148,"\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":136,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":67,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":111,eval:129,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":132,kawaji:[6,65],"0\u4ee5\u4e0a65":39,"\u51fa\u529b\u3092\u884c\u3046\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":64,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[155,132],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":99,ruby_script:129,friendli:[6,65],nippon:42,"\u4ed6\u306e\u578b\u3067\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306b\u6bd4\u3079\u3066\u4f4e\u901f\u3067\u3059":116,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":148,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":127,"\u5185\u90e8\u7684\u306a\u5909\u66f4":132,button:[6,65,112,105],hemispher:[6,65],"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":126,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":135,download:[145,115,132,20,13,133,89,163,76],grn_obj_decr:67,experiment:[16,58,119,27,112,6,23,129,65,98,165],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":132,"\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":70,becom:[12,11,36,118],accessor:99,convert:[12,82,2,164],convers:[23,8],blogroonga:75,"wgs84geopoint\u306e\uff12\u3064\u306e\u578b\u304c\u3042\u308a\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":160,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":148,chang:[118,110,112,6,65,23,163,98],"\u8868\u8a18\u306e\u63fa\u308c\u3092\u5438\u53ce\u3057\u3066\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f":79,"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":51,danger:[50,45],"boolean":[158,46,36,112,65],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":94,query_expand:[65,112,9],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":95,query_expans:[23,112,65],"\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":[88,61],soundkitchen:[6,23,65],grn_column_renam:107,about:[34,0,2,119,83,40,22,6,77,90,65,129,42,163,45,145,95,11,131,72,134,13,101,50,17,110,147,142,105,144,58,41,108,20,146,98,112,62,159,149,103,23,114,154,68,115,158,26,130,120,133,121,74,122,76,8],"23t02":131,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":132,"\u3068\u3044\u3063\u305f\u7d5e\u8fbc\u3082\u53ef\u80fd\u3067\u3059":63,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":136,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":99,"shibuya\u3055\u3093":136,retriev:[118,95],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":132,min_siz:135,meet:124,mitsuhiro:136,control:[84,6,101,8,140,65],"\u3042\u308b\u5730\u70b9\u304b\u3089\u4f55m\u4ee5\u5185\u306b\u5b58\u5728\u3059\u308b":63,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":132,sudo:[145,115,132,20,146,13,124,122,6,133,90,110,65,163,155,76],directory_not_empti:151,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":62,tokendelimit:[147,77,32,74],"\u6df1\u523b":60,lifecycl:68,narg:71,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":107,"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":132,int16:[65,39,136,112],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":99,decrib:8,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":132,"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":88,"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":127,rakutan:66,otehr:55,normalizernfkc51:41,"\u304c2\u4ef6":160,"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":85,least:[158,146,6,159,103,65,122],"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[67,107],"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":59,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":67,sysconfig:124,grn_socket_is_already_shutdown:2,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":136,"\u3053\u306e\u5834\u5408":[135,66],"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[99,67,107],read_only_file_system:151,grn_ctx_set_command_vers:15,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":62,handl:[2,12,82,112,122,8,146,65],auto:[6,65,134],succeeded_or_not:[50,149,114],"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":132,parameter1:8,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":132,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":148,column_information1:83,"0\u306e\u79d2\u8868\u8a18":60,column_information2:83,"\u6295\u7a3f\u8005\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":160,"\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":60,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":126,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306f":38,"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":69,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":148,chunk:[146,122,113],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":155,"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb\u3067\u3059":160,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":148,special:[105,95,2,3,158,27,112,120,77,90,65,163,71,17],groo:[117,95],"\u51fa\u529b\u5bfe\u8c61\u3068\u306a\u308b\u6700\u521d\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u756a\u53f7\u30920\u30d9\u30fc\u30b9\u3067\u6307\u5b9a\u3057\u307e\u3059":95,suitabl:[100,82,55],grn_geo_estimate_in_rectangl:[23,47],new_vers:132,"quit\u306f":141,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[135,107],manipul:140,grn_match_escal:[46,25,37],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":148,latitude_in_msecxlongitude_in_msec:131,keep:[56,100,72,15,16,23],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":136,geometri:23,largetext:82,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":155,grn_cursor_by_id:135,"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308buser\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057":38,"scorer\u306f":95,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":137,buf_siz:[99,67,107],"groonga\u30b3\u30de\u30f3\u30c9\u306b":136,mkdir:139,attach:[164,105],"\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":132,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[60,30,39,148],"final":[95,8,72],travi:144,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":132,exactli:146,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"groonga\u306f":[63,155],sequence_queri:161,extrct:131,stdin:[65,98],concatin:[6,65,112,117],msec:[23,17],tabl:[46,59],need:[77,3,4,82,6,89,8,9,42,65,163,45,95,131,72,15,16,110,55,108,20,146,151,23,66,154,68,115,164,158,117,118,119,27,120,74,122,105],border:[6,65,77,84],fluent:91,grn_obj_search:93,"0x08":151,"0x04":151,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":136,"\u305d\u306e1\u4f8b\u306b\u3059\u304e\u307e\u305b\u3093":38,"0x02":151,"\u30ed\u30b0\u3092":132,ifexist:49,singl:[77,3,72,119,112,49,65],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":95,"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":153,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":132,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":67,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":60,kazuhiro:[65,112],"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":30,url:[23,139,45],uri:8,grn_table_upd:99,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":39,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u4f5c\u3063\u3066\u307f\u307e\u3057\u305f":160,fontain:23,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":99,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":135,grn_index_cursor:[46,25,37],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":106,ssssss:130,object_corrupt:151,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":132,launchpad:[65,13],"\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":148,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[92,85],"\u3053\u308c\u3067":132,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":60,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":64,"drilldown\u6761\u4ef6\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u6bce\u306b\u3068\u308a\u307e\u3068\u3081\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":95,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":67,enabl:[75,132],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":132,"masahiro\u3055\u3093":136,gram:[118,77,3,131],"output_columns\u304b\u3089_value\u3092\u524a\u9664":136,contain:118,sho:[65,112],"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":60,orphan:[65,112],"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":59,latin:85,statu:[46,115,2,37,145,13,26,112,6,133,149,65],correctli:[6,65,3],wibowo:[65,112],tend:66,written:[110,9],benchmark:[43,46,37,112,6,65],grn_retry_max:2,all_record:[6,65],kei:[3,82,6,95,131,132,72,12,134,49,99,135,55,56,112,149,65,67,98,158,116,117,118,164],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":113,"\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":106,eclips:105,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18\u306e\u5ea6\u6570":63,"\u3053\u308c\u3082":160,"\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":60,admin:[6,23,136,112,65],polici:[65,112],"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"188\u79d2\u3067\u3059":63,"\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":111,cutter_source_path:132,"\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":139,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":67,"\u5185\u8a33\u306f":60,"\u304c\u3042\u308a\u307e\u3059":[30,132],quit:[46,26,132,37],quiz:38,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":132,treat:[95,77,131,108,40,112,6,65,42],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[88,5,61,7,137,21,94],downcas:164,"\u65e5\u672c":42,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":95,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":92,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":99,delimit:[77,12,118,112,74,65],drildown:[46,138],"12gb":146,glossari:68,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":23,longitude_in_msec:131,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":44,demo:38,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":60,welcom:[95,158,73,22,131,75,105],grn_table_cursor_t:135,"\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":60,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":39,speaker:22,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":136,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":137,crch:77,entry_selector:137,"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":39,nsubrecs_column:107,http:[85,6,89,8,163,46,96,132,72,13,139,105,145,20,148,112,65,68,156,115,117,118,133,30,76],"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":132,"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":60,effect:[6,49,160,65],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,rpmforg:115,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":75,well:[118,112,27,90,65,163,8],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,operation_would_block:151,undefin:12,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":67,lcov:155,distanc:[11,131,118,40,6,65],koi8r:[6,65,163],remove_blank:119,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":67,"\u306e\u30b3\u30e1\u30f3\u30c81\u4ef6\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":160,"log_reopen\u306f":21,bc009774:132,patricia:[3,158,82,112,6,65,23,131,55],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":132,grn_ctx_get_command_vers:15,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":39,"\u3067\u533a\u5207\u308a\u307e\u3059":85,logger:[6,65],"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":93,int32:[3,39,6,42,95,11,131,72,134,101,50,38,108,60,112,63,84,65,66,158,116,160,74],ryoji:65,pikonyan:38,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":51,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":148,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":113,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":148,dat_kei:82,tomita:136,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":156,grn_file_corrupt:2,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":132,"\u4e0b\u8a18":135,page:[46,112,22,6,65,105],"\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":136,lager:[65,112],use_offline_index:[65,98],assgin:131,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[156,85],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":60,home:[163,132],tatsuya:[6,65],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":62,index_column:65,nihon:42,estim:[146,47],grn_obj_key_float:52,grn_obj_remov:[23,67],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":127,"10t13":[42,108,74],win64:89,"\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":148,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":113,offset:[34,47,81,6,99,137,135,65,67,71],"blog_body\u7d22\u5f15":60,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":148,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u914d\u5217\u3067\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":160,empti:[95,158,83,112,65,23],f10399c0:132,groonga_query_log_path:[65,112],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":128,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":85,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":148,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":85,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":59,suzuki:[6,65],"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":127,gronga:[154,10],overflow:[12,23,112,65],ear:77,quetzal:[6,65],"\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":59,displai:[6,65],limit:46,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":113,"\u611f\u8b1d":65,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":127,evalu:[129,65,112,159,131],"\u521d\u671f\u5316\u3055\u308c\u305f":15,"aramaki\u3055\u3093\u304c\u5831\u544a":136,eric:84,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":67,blog1:66,blog2:66,new_valu:95,futur:[145,58,11,72,119,112,151,65,129,23,45],halfwidth:164,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":135,"\u7518\u6817\u3080\u3044\u3061\u3083\u3044\u307e\u3057\u305f\u7684\u306a\u611f\u3058\u3067":160,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,sphinx:[73,105,14,110],katagiri:[65,112],table_remov:[46,37,26,112,6,65],"\u3068\u540c\u3058\u610f\u5473":85,max_concurr:156,"\u5185\u5bb9\u306f\u4e0a\u306e\u4f8b\u3068\u307b\u307c\u540c\u3058\u3067\u3059\u304c":66,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":157,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":111,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":75,whose:[3,131],"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3057\u305f\u5404\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u305f\u306e\u3061\u306b":95,accur:[118,27],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":132,"0x20":158,escaped_queri:71,kentaro:[65,112],utf8mb4_general_ci:164,swap:122,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,"void":[70,109,99,135,102,17,53,65,67,98],voic:164,is_anim:12,affect:[6,65,112],"\u306f\u7121\u52b9\u3067\u3042\u308a":135,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":136,demerit:82,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":85,correct:[46,117,134,6,65,42,154,162],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":153,vector:[46,125,112,6,65,23],"\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":132,"10m":8,batch:[6,65],"10z":131,"\u30b0\u30eb\u30fc\u30d7\u5316":51,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":148,even:[62,115,131,145,118,13,6,133,89,121,65,42],"\u3064\u307e\u308atest":132,neg:[95,2,15,6,17,65,44],spokesman:75,"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":132,"\u3050\u308b\u3093\u304c\u592a\u90ce":38,"new":[118,75,132],net:[38,3,132,116,12,22,63,90],maverick:23,metadata:[6,65,58,129],elimin:[65,112],"\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9\u3084\u6295\u7a3f\u65e5\u6642":160,behavior:[6,65,84,101],never:[134,163],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":148,met:159,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":85,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":132,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":67,"\u30bf\u30a4\u30c8\u30eb\u3082\u3057\u304f\u306f\u5185\u5bb9\u306b\u7279\u5b9a\u306e\u5358\u8a9e\u3092\u542b\u3080":66,serch:[134,108],"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":95,"\u7d4c\u5ea6\u306e\u30df\u30ea\u79d2":63,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":156,grn_expr_exec:71,"\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":148,"\u826f\u3044\u4f8b":111,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":39,"\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":60,mysqlgenerallexicon:164,suit:[118,27],"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":60,overhead:124,typo:[108,112,6,65,42,23,154],recommend:[145,95,3,158,124,13,115,120,133,89,90,121,122,45,131],"tag\u30c6\u30fc\u30d6\u30eb\u3067\u306f":38,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":15,type:[35,77,125,4,82,83,40,6,129,2,8,65,91,42,44,45,46,95,11,131,72,134,50,138,55,107,108,148,112,62,159,47,151,23,98,158,117,119,149,74,71],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":102,under:[117,163,8,45,54],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":67,warn:[95,5,112,6,7,8,130,65,98],"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,"\u79cb\u8449\u539f\u99c5\u3068\u65b0\u5bbf\u99c5\u306f6720m\u96e2\u308c\u3066\u3044\u308b\u3088\u3046\u3067\u3059":63,"\u4ee5\u4e0b":148,"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":60,setup:[65,105,112,68],"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":153,akio:[6,23,112,65],root:[85,112,8,65,30,90],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":85,give:[101,118],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":59,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":53,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:156,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":75,unsign:[34,2,107,18,16,99,52,135,67,71,44],log_level:[46,26,37],n_kei:99,"128544408x502801502":160,updag:[6,65],config:[1,85,6,89,65,23,163],grn_arg_list_too_long:2,sitedomain:[90,116],"\u30b9\u30fc\u30d7":127,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":59,permission_deni:151,third:[12,83,95,131],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":51,"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":60,romaji:42,"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":111,"\u3053\u306e\u5834\u5408\u306f_id\u306e\u5024\u304c1\u4ee5\u4e0b\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u5f97\u3089\u308c\u307e\u3059":63,"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":132,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":70,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":61,privileg:[65,90,112],"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":153,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":97,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":44,"\u304c3\u4ef6\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":160,persist:[46,37,83,99,50,92,55],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":135,anim:38,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":136,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":153,leaner:[65,54],"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":132,grn_exec_format_error:2,conflict:124,cache_previ:16,side:[6,65,118],mean:[77,3,83,40,6,2,8,130,42,163,95,47,131,72,12,134,17,146,112,159,65,154,158,116,122,164,71],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":15,blog_comment_index:159,grn_obj_compar:67,extract:[46,105,118,27,6,159,89,65,163,55],"hiroshi\u3055\u3093\u304c\u5831\u544a":136,content:[120,95,96,151,158,159,122,83,27,112,100,101,8,65,23,66,45,131],rewrit:36,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":135,ncpu:76,lzo_error:151,"\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":136,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":15,iso:131,"\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":148,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067\u5b9f\u884c\u3057\u307e\u3059":148,wgs84geoppoint:47,cpuinfo:[133,115,13,145],grn_snip_clos:65,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":60,hook:68,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":148,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":136,"\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":127,grn_cache_get_max_n_entri:16,iptabl:[90,45],"\u5358\u4f4d":[52,153],"push\u3057\u3066groonga":132,"80ghz":148,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":85,"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":95,conveni:[118,23,163,165,42],keyword:[95,3,158,27,112,6,101,65,66,10,55],grn_expr_get_var_by_offset:71,mind:56,mine:118,"\u7d4c\u5ea6\u304c139\u5ea645\u520657":63,"\u304c\u304a\u304c\u304a":160,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":132,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":139,regular:[12,117,3,8],tradit:118,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":148,don:[3,4,83,8,23,163,45,16,95,131,72,55,15,49,105,151,65,154,158,121,74,164,90],doc:[79,132,73,110,112,6,8,23,65,98,105],"\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":60,doe:[95,3,158,72,12,118,112,6,159,8,134,65,124,131],logyyyymmddhhmmss:117,grn_not_enough_spac:2,dot:[6,65],"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":39,"\u3068\u8a18\u8ff0\u3057\u3066\u6307\u5b9a\u3057\u307e\u3059":160,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":111,keybuf:99,"\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":148,"\u5168\u3066\u306e\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,syntax:[46,37,72,112,6,65,71],"\u65e5\u672c\u8a9e":42,yoji:23,acquir:17,explain:[12,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":85,"\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":113,folder:89,cosmo0920:[65,112],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":135,stop:[95,112,6,50,8,65,23],"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":132,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":64,attr_setpshar:[65,112],bar:55,reload:154,bad:[65,112,118],"comments\u30c6\u30fc\u30d6\u30eb\u306elocation\u30ab\u30e9\u30e0\u306f":160,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":61,veres:45,"video\u30c6\u30fc\u30d6\u30eb\u3067\u306f":38,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":148,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":39,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":148,old_releas:132,"\u5b9f\u884c\u3067\u304d\u307e\u3059":132,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":127,item_:134,brazil:116,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,"or\u6307\u5b9a\u3092\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":63,grn_function_not_impl:2,"\u52d5\u753b\u306e\u30bf\u30a4\u30c8\u30eb\u3092title\u30ab\u30e9\u30e0\u306b":38,simplest:[118,163],illegal_byte_sequ:151,attribut:[77,96,41,119,147],nfkc51lexicon:164,threasd:85,"100x150":29,"\u6771\u4eac\u99c5\u3068\u79cb\u8449\u539f\u99c5\u306f2054m":63,"\u534a\u5f84":153,"takuto\u3055\u3093":136,replied_to:160,key_length:151,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":60,string_liter:65,"\u6539\u884c\u6587\u5b57\u306f":85,against:[95,158,72,118,108,6,74,42,65,71,131],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":155,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:[6,65],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":85,"twitter\u7de8":75,grn_op_cal:59,grn_expr_var:44,grn_obj_clos:[65,59,106,67,15],three:[145,95,11,3,140,116,72,12,13,112,120,133,50,108,65,42,66,115,124],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":132,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":64,"1285858800\u306f2010":60,interest:[75,3],basic:[6,46,118,65],"\u6642":160,"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":132,suppress:[6,65,98],"2\u30ea\u30ea\u30fc\u30b9":65,"\u73fe\u5728\u57f7\u7b46\u4e2d\u3067\u3059":87,servic:[124,108,118,112,6,122,65,68],"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e8\u3064\u3067\u3059":148,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":70,calcul:[11,117,40,112,6,129,65],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":132,"\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059":160,seven:3,datail:95,"key\u3092\u8fd4\u3057\u307e\u3059":67,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":85,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":67,"\u691c\u7d22\u306e\u6319\u52d5":46,receiv:[117,118,151,15,8,54,105],make:[118,75],column_list_head:83,"query\u30d1\u30e9\u30e1\u30fc\u30bf\u3068filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3068":63,"_kei":[3,79,83,6,8,42,114,45,126,95,11,131,72,12,134,49,50,51,139,38,107,108,112,159,63,96,84,65,66,67,158,116,160,120,149,74,122,164,90],zlib1g:[133,13],"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":135,"\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":59,"8byte":151,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":59,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":107,inherit:[65,112],"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":59,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":62,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":85,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,left:47,identifi:149,just:[16,115,163,70,105,145,20,13,112,6,133,89,121,23,65,67,68],sigusr1:23,"\u6771\u4eac\u90fd\u6c11":[60,127],human:[83,55],"\u73fe\u5728\u306f":[156,148],yamamoto:65,yet:[58,131,118,40,95,112,65,129,23,45],languag:[118,75],defrag:[46,37,26,112,65,23],uint16:[65,39,112],"worker\u306f":143,save:[117,146,66,132,65],"\u7d4c\u5ea6":[160,63],applic:[144,118,27,8,23,154,45],"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":127,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":132,"groonga\u958b\u767a\u5408\u5bbf\u306e\u305f\u3081\u7fbd\u7530\u7a7a\u6e2f\u306b\u6765\u307e\u3057\u305f":160,nomral:[95,158],daemon:[117,112,6,8,65,54],vdw:[63,3,116],manual:46,grn_obj_expir:67,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":94,mrubi:[129,65,58,112],unnecessari:122,cxxflag:[20,132],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,intern:[12,27,112,16,65,98],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":92,insensit:95,"groonga\u30bf\u30b0\u306e\u4ed8\u3044\u3066\u3044\u308b2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":127,"\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":127,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":126,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":59,localhost:[156,4,132,117,148,85,90,45,8],new_release_d:132,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":7,grn_cursor_gt:135,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":155,promot:[65,112],"\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":132,"\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":64,postgresql:[118,27],"\u65b0\u898f\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332\u3057\u307e\u3059":132,"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":132,"\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b":160,update_buffer_s:18,"\u30c6\u30b9\u30c8\u306f":155,commit:105,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[156,85],meerkat:23,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\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":53,sphr:[11,153],down:65,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":136,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":148,homepag:148,"\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u306b\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u304c\u305d\u308c\u305e\u308c\u30d2\u30c3\u30c8\u3057\u307e\u3059":79,editor:105,fraction:[12,118],storategi:95,fork:105,infom:15,tokenbigramignoreblanksplitsymbolalphadigit:[60,147],form:[95,3,158,117,140,112,8,65,23,164,90],forc:[6,65],grn_obj_db:70,"4e86e700":146,"txt\u306b\u307e\u3068\u3081\u307e\u3059":132,"\u6771\u4eac\u90fd\u4e2d\u91ce\u533a":160,grroonga:10,"\u5426\u5b9a":59,auth_basic_user_fil:[8,45],"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":139,"\u4f4d\u7f6e\u60c5\u5831\u306e\u3042\u308b\u3059\u3079\u3066\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,unrel:23,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":64,classif:116,featur:[118,105],kwic:27,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":57,grn_obj:[35,47,106,70,37,46,81,18,25,15,6,65,71,107],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":44,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":51,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":85,tokenbigramignoreblank:[60,147,32],excel:154,"defrag\u306f":31,matur:124,escaped_charact:71,why:[65,95,112,124],fsf:[6,65],data_set_nam:134,"scr\u306e\u4e2d\u8eab\u304c":148,vmstat:146,ignor:[95,77,70,82,119,112,6,149,65,23,154,158],reply_to:66,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":51,n_entri:103,skip:[65,3,112],segv:[65,112],"\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":31,depend:[118,75],"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":135,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":155,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":62,marku:[6,65],retri:17,must:[3,83,90,42,125,163,45,16,95,47,131,12,134,49,50,55,146,159,96,151,158,117,149,74,122,71],query_str:[65,112],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":23,"0mq":[65,112],"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":39,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f":[46,138],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":132,grn_obj_set_fin:44,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":62,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":132,form_1:3,iter:131,dic:145,item:[95,108,134,124,139,74,42,45,55],round:23,dir:148,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":99,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3059\u308b\u3068":38,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":132,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":136,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":148,"\u30ed\u30b0\u30ec\u30d9\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u30b3\u30e1\u30f3\u30c8\u306e\u6295\u7a3f\u6642\u9593\u3067\u691c\u7d22\u3092\u3057\u307e\u3059":160,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":57,deriv:[124,54],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":39,"\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\u3059":141,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":127,wait:17,box:95,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":51,"\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":64,grn_true:67,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":139,raccoon:38,bob:[95,158,101,50,8,84,114,45],modul:[118,46,136,65],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":113,result_too_larg:151,univers:13,perl:8,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":148,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":62,black:[40,164],grn_proc_typ:44,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[23,136],"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":30,ooo:82,apper:95,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":59,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":61,grn_plugin_proc_get_var_by_offset:[34,65],commands_column_list:83,tokyo:11,"\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":132,uniqu:117,"\u30d2\u30c3\u30c8\u6570":95,ull:77,"256kb":146,predict:[82,55],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":44,"\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":111,libmemcach:155,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":85,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":127,normalizs:55,map:[130,23,146,122,42],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":148,max:[16,112,6,23,135,65],mac:[46,121],grn_obj_append:67,assigend:158,mai:[144,82,83,6,8,23,129,163,45,134,16,50,55,56,58,112,65,66,154,118,119,120,122],underscor:55,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":39,table_dat_kei:[158,112,92,65,55,131],"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":127,"\u30b9\u30b3\u30a2\u5024_score\u3082\u51fa\u3057\u3066\u307f\u307e\u3057\u3087\u3046":160,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":156,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":30,talk:[65,112,22,132],"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":60,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":59,entiti:118,group:[95,118,112,6,159,65],monitor:[145,115,13,112,133,65],hiragana:[42,158,131],"\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":136,"\u5b9f\u9a13\u7684":65,main:133,resource_temporarily_unavail:151,initi:[6,23,65,117,15],lunch:118,"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":132,"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":132,"\u5fa9\u53f7\u3057\u305f\u9375":132,"wgs84\u76f8\u5f53":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":67,"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":132,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":148,"\u3053\u306e\u7d50\u679c\u306f":148,gzip_typ:45,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":136,continu:[77,108,85,112,6,65,68],ensur:108,nroonga:[101,66,68],"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":155,"3rd":[65,95,112],compress_lzo:62,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":64,tablenam:64,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":132,uint32:[3,79,39,6,90,92,114,126,95,131,72,100,50,83,55,38,60,112,159,63,149,84,65,66,158,116,120,122,164],"\u624b\u7d9a\u304d":44,earlier:[23,164],"\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":21,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":52,debootstrap:132,org:[38,115,163,3,116,72,133,20,105,13,148,12,63,96,89,8,139,132,145,76,90],prefix_search:[23,134],"128487316x502920929":[38,63],grn_table_renam:99,"\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":60,"\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":111,"marverick\u306b\u5909\u66f4":136,frequenc:134,"grn_op_adjust\u306f":59,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":92,"\u305d\u306e\u5834\u5408\u306f\u5404\u8981\u7d20\u3092or\u3067\u3064\u306a\u3052\u305f\u3082\u306e\u306b\u7f6e\u63db\u3055\u308c\u308b\u3068\u3044\u3046\u3053\u3068\u3092\u8a18\u8ff0\u3059\u308b":79,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":30,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":127,first:[124,3,83,89,8,23,163,45,95,131,12,15,105,112,65,66,154,158,117,27,120,55],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":132,kernel:[6,65,122],key_norm:[100,95,164,3,79,60,160,158,27,6,101,122,65,66,131,55],fast:[120,95,77,3,158,165,82,40,27,49,11,96,118,125,66,131,45,55],crit:[5,7],grn_geo_cursor_open_in_rectangl:47,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":60,adjac:158,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":23,memo:101,key_siz:99,"value\u304c\u5c5e\u3059\u308b\u578b":92,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":99,proxy_cache_valid:8,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":39,longitudexlatitud:[65,112],"\u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831":[46,138],yoshioka:[6,65],libgroonga:[144,3],grn_db_touch:[136,70],were:[11,3],zsh:163,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:163,grn_invalid_format:2,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":127,katakana:[42,164,134],squar:11,timeuot:17,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":148,"256gbyte":56,normal:[46,115,37,145,13,112,6,133,65,98],track:0,beta:36,pair:[108,12,74,42,154,10],"\u304c2\u3064\u306b":160,"143660000x419009000":11,synonym:[95,154,79],"\u6761\u4ef6\u306eand":63,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[31,94],"\u539f\u56e0":[46,33],shop:[100,127],lexicon:46,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u3092\u516c\u958b":136,show:[1,2,3,4,40,6,90,23,163,95,11,131,12,49,101,112,159,96,151,84,65,158,116,118,119,27,120,149],"javascript\u306e\u5f0f\u306b\u4f3c\u305f\u306a\u6587\u6cd5\u3067\u69d8\u3005\u306a\u6761\u4ef6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u62c5\u5f53\u8005":132,threshold:121,"\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":59,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":59,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u30c6\u30fc\u30d6\u30eb\u540d":[92,31,94],"\u8a08\u7b97\u3057\u305f\u5024\u3092\u7528\u3044\u305f\u30bd\u30fc\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u6587\u5b57\u5217\u3067\u65e5\u6642\u3068\u6642\u523b\u3092\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3067\u3059":160,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":60,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":30,variou:[46,138],get:[16,95,47,132,46,118,13,22,6,133,103,110,23,65,163,105],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[46,132,121],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":136,"\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":148,"\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":148,tokyogeopoint:[47,39,29,63,11,23,153],"\u691c\u7d22\u901f\u5ea6\u304c\u901f\u304f\u306a\u308a\u307e\u3059":38,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[46,112,37,65],wiki:8,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":99,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":60,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":23,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":39,sear:42,enci:148,masahiro:[65,136,112],japan:[149,90,116],infinit:[6,23,65,55],enumer:3,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":148,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":99,label:[65,112],enough:[146,66,118],across:11,parent:8,unknown_error:151,column_vector:[38,95,72,12,160,83,112,62,159,149,65],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":21,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[30,85],"\u5bfe\u7b56\u65b9\u6cd52":[46,33],"\u5bfe\u7b56\u65b9\u6cd51":[46,33],recrod:95,"\u3088\u3063\u3066":[39,63,87],"\u5206\u5272":127,grn_expr_clos:71,nogpgcheck:[6,65],"\u3060\u3068\u539f\u56e0\u306f":111,grn_cache_open:16,among:[6,12,65,138,46],grn_obj_delete_hook:81,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":148,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":148,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":127,inappropriate_i_o_control_oper:151,grn_proc:[46,25,37],"902\u79d2\u3067\u3059":63,"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":132,gnupg2:132,mark:[65,164,98,55],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":64,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":18,grn_too_small_offset:2,grn_init:[6,65,130],senboku:[65,112],i18n:[75,14],those:[95,11,3,4,20,82,140,158,27,118,12,164,131,74,65,163,98,10,45,105],sound:[164,108],hdd:148,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"8\u306b\u5bfe\u5fdc":136,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":85,advantag:[118,124,27],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":148,brasillia:11,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":148,"1\u3068command":64,pat:[6,65,98],candidate_n:117,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":75,same:[120,95,164,3,158,72,12,108,112,15,49,101,17,9,65,66,131,71,45,8],speech:118,pai:95,"\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":127,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":132,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":132,grn_command_version_st:102,grn_table_dat_kei:99,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,montywi:[65,98],"\u305d\u3057\u3066":160,grn_address_is_not_avail:2,macro:[23,112,65],markup:73,"drilldown\u7d50\u679c":95,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":15,argument2:131,"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":132,argument1:131,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":67,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":156,"groonga\u306f\u30c6\u30fc\u30d6\u30eb\u9593\u306e\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u9ad8\u901f\u306b\u884c\u3046\u305f\u3081\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":38,document_vers:132,execut:[77,3,79,119,83,6,89,8,9,129,42,65,114,126,100,95,11,131,72,12,134,49,101,50,140,147,54,55,38,58,41,108,112,69,159,63,96,103,84,23,66,160,158,116,117,118,92,27,120,149,74,164,90],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":85,"\u65b0\u5bbf\u99c5\u304b\u30895km\u4ee5\u5185\u306b\u3059\u3093\u3067\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3057\u305f\u3068\u3053\u308d":160,monei:38,mcdonald:40,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":106,"root\u306b\u5909\u66f4":136,enable_tokenized_delimit:77,weight2:[6,65,95,72],"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":67,"\u697d\u3057":[60,127],value_column:107,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":99,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3067\u3059":160,either:[0,95,158,84,65,131],"\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":85,rinse_1:132,quantal:[6,65,132],"\u3069\u3061\u3089\u306e\u30af\u30a8\u30ea\u6587\u5b57\u5217\u3082":79,operation_not_support:151,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":132,ascend:[95,40,3,116],testdb:[148,54],"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":99,confirm:75,table_no_kei:[95,158,27,100,101,149,139,92,131,55],valuebuf:35,"\u30cb\u30c3\u30dd\u30f3":42,event_typ:161,broken:[6,23,112,65],"128452975x503157902":[12,38,63,90],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":85,"_set_valu":[65,98],"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u6295\u7a3f\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,"x\u306e\u304a\u77e5\u3089\u305b":65,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":136,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":132,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":132,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u6587\u66f8\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":79,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":39,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":135,strip:96,"tomita\u3055\u3093\u304c\u5831\u544a":136,yyi:105,"\u540c\u6642\u306b":143,complianc:8,"\u5358\u8a9e\u306e\u91cd\u8981\u5ea6\u306a\u3069\u3092\u4fdd\u6301\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":87,"\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":148,"\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":30,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":67,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":35,arugment1:131,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":148,"groonga\u306e\u30c6\u30fc\u30d6\u30eb\u306f":126,possibl:23,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":132,embed:[118,154,8,27],"1_all":132,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":137,file:[75,132],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":136,fill:[117,131],again:[100,8,17],field:83,location_in_groonga:120,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":148,architectur:[118,132],sequenc:[158,108,134,74,112,130,151,65,42,23,131],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":135,"\u30bf\u30b0\u691c\u7d22\u306fgroonga\u306e\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u3044\u3046\u30c7\u30fc\u30bf\u69cb\u9020\u3092\u7528\u3044\u3066\u9ad8\u901f\u306b\u884c\u308f\u308c\u307e\u3059":38,"6gib":122,konishi:[65,112],"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":99,escal:121,"\u5168\u6587\u691c\u7d22\u306e\u30b9\u30b3\u30a2\u3092\u4e71\u6570\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3044\u307e\u3059":63,unload:[6,65],"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":39,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":88,"x\u3067\u306frealloc":136,descript:[41,83,119,112,6,65],escap:[6,65,71,112],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":136,represent:[109,105,71,72],forget:72,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[65,98,158],suno:65,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":75,file_too_larg:151,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":81,libmsgpack:[133,13],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc":79,"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":132,"\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":95,objnam:[31,94],grn_op_and:[93,59],grn_op_or:[93,59],"geopoint\u578b\u306e\u30ab\u30e9\u30e0\u3067\u691c\u7d22\u3092\u3057\u307e\u3059":160,fals:[1,158,132,159,12,39,62,101,50,149,84,65,114,131,126],"\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u683c\u7d0d\u3059\u308busername\u30ab\u30e9\u30e0":38,"\u3053\u3053\u3067\u3082":60,offlin:[46,37,112,6,65,98],util:8,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":136,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":64,sub_filt:[46,142,112,37,65],hottolink:36,grn_hook_set:81,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":113,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":85,puropos:77,"\u305d\u308c\u3092\u65e7ji":135,zero:[95,125,72,12,151,164,154],further:12,"sortby\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u306f":63,"\u3053\u3053\u3067\u306f":[60,160,63],aba:[63,3,116],"drilldown_offset\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":95,grn_info_typ:35,"\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":111,fffe:77,tokenbigramignoreblanksplitalphadigit:32,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u5225\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u51fa\u3057\u307e\u3059":160,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":113,"public":132,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":85,"\u6e96\u5099":[46,138],valu:[35,2,125,72,18,120,112,15,6,135,118,17,65,163,23,67,98,44],grn_table_setoper:99,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":21,narrow:65,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u95a2\u4fc2\u5f0f\u306f":59,commands_table_cr:92,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":135,"groonga\u306epackag":132,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":153,establish:[3,90],distinct:[56,117],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":132,regist:[46,37,118,26,112,6,65,119],libev:[163,65,13,98,133],groonga_path:148,"check\u30b3\u30de\u30f3\u30c9\u306f":113,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":85,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":62,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":135,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,jsonp:117,desin:124,none:[95,77,119,151,85,161,8,66,163,55],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":156,hour:[130,17,131],dev:[132,13,112,22,6,133,65,23,155],"\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:[65,112,130],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":136,deb:[132,13,112,6,133,65,23],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":60,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":132,share:[16,118,85,112,22,6,8,23,65,66,163,17],shard:82,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":59,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":135,minimum:[34,131],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[29,153],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":75,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":107,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":127,secur:[46,138,122],"\u691c\u7d22\u7d50\u679c1":95,"13\u7528rpm\u306e\u63d0\u4f9b":136,needl:59,grn_command_vers:[46,25,37],number2:131,number1:131,"\u672c\u6587\u306emessage\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":66,mariadb:[65,112],associ:[95,3,12,49,149,23],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":132,spheric:11,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":141,"\u3053\u306e\u578b\u3067\u306e\u5024\u306e\u6307\u5b9a\u306f":160,hypertext:[46,138],no_buff:151,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":60,through:[118,8],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":75,"\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f":[38,160],"\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":51,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"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":99,good:[95,77,158,118,100,131,66,163,105],"tokenmecab\u3067\u306f":60,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":132,grn_get_lock_timeout:17,grn_obj_vector:67,"_valu":[65,51,107,112],rank:3,"db\u3068\u306a\u308a\u307e\u3059":70,"\u3044\u308f\u3086\u308b\u30bf\u30b0\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":38,micro:[12,131],name_2:[3,90],name_1:[3,90],hard:122,idea:95,"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":135,connect:[6,65,3,90],rlimit_nofil:[65,112,130],"127678039x502643091":160,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":132,flower:12,"\u672c\u6765\u30e6\u30fc\u30b6\u304c\u5fc5\u8981\u3068\u3059\u308b\u7d50\u679c\u3092\u3088\u308a\u3082\u308c\u306a\u304f\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":79,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":132,"release\u306e\u5b9f\u884c":75,print:90,name_s:[34,107,52,15,99,67,71,44],definion:131,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":59,entries_content_index:[122,95,158,131],"975mbyte":148,tahr:[65,13],"\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":132,grntest:[132,136,6,65,91,23],"tokenmecab\u306e\u5834\u5408":60,tritonn:[95,158,131],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":99,suggest_prepar:[42,134,108,74],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":111,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":85,done:[16,95,8,17],stack_over_flow:151,"\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":39,stabl:[134,64],"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":132,"indexbuf\u306e\u30b5\u30a4\u30ba":107,"com\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":132,"5th":95,construct:[6,46,112,37,65],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":139,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":60,"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":99,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":60,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:23,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":59,pari:11,selector:[6,65],part:[3,12,118,27,120,163],pars:[109,71,140],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\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":132,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3092\u4f7f\u3063\u3066":38,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":30,"\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":111,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":148,"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":127,"\u30c6\u30fc\u30d6\u30eb":94,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":59,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":60,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":[95,139],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":61,built:[46,77,37,118,26,112,11,8,163,65,67,119,142],build:[46,132,118,121,110,155,68],tool:[46,68,121,110,14,105],distribut:[145,115,132,13,6,133,89,121,65,163],"\u30d0\u30fc\u30b8\u30e7\u30f30":65,"\u30d0\u30fc\u30b8\u30e7\u30f31":65,previou:[116,12,112,6,65,66],chart:23,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":57,most:[95,47,3,72,12,26,15,45],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":67,myisam:118,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[75,150],groonga_log_level:[65,112],cas_error:151,roughli:12,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":127,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":46,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":155,carefulli:72,"bom\u4ed8\u304dutf":136,find:[164,3,108,99,110,27,118,134,50,89,74,42,75,163,105],grn_no_such_process:2,grn_index_cursor_open:106,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":70,grn_logger:[6,65],"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":30,grn_obj_defrag:67,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":156,"\u30bf\u30b0\u691c\u7d22\u306f":38,rest:154,"\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":79,restart:[122,154,9],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":148,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":60,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":148,map_hugetlb:23,common:[95,158,82,140,13,6,99,65,135,23,66,131,55],table_cr:[46,95,37,72,83,26,6,50,149,139,65],grn_api:71,"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":99,grn_interrupted_function_cal:2,"status\u30b3\u30de\u30f3\u30c9\u306f":69,lion:[6,65],"\u521d\u671f\u5024\u306f10\u3067\u3059":156,reserv:62,blog_cont:159,"00\u4ee5\u524d\u306b\u66f8\u304b\u308c\u305f\u30b3\u30e1\u30f3\u30c85\u4ef6\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":148,"\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":95,gemfil:[6,65],"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":148,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":155,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":137,network_is_down:151,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":60,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3059\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":116,point:[47,158,72,117,118,40,112,29,50,11,65,23,153,98],hideki:[65,112],shutdown:[46,26,37],"geo_distance\u95a2\u6570\u306f":63,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":60,"\u6587\u5b57\u5217\u3067\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3092\u884c\u3044\u305f\u3044\u5834\u5408\u306b\u306f":116,weight_in_match_column:72,ran:42,secret:132,ram:148,"\u4ee5\u4e0b\u3067":60,gat:[63,3,116],understand:[95,3],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":64,bill:[60,127],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":127,opear:131,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":113,anonym:82,gb87d9f8:4,everyon:90,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,manner:[95,3],"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":148,"\u6c11":127,itself:[65,77,154,158,72],cento:[46,132,121,110],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3059\u308b\u6642\u306e\u307f\u6709\u52b9\u3067\u3059":85,"\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":132,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":127,"\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":95,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":59,res2:99,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":60,"\u30b3\u30e1\u30f3\u30c8\u306e\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3092\u4e00\u89a7\u3067\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb\u3067\u3059":160,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":139,keyr:[6,65,133],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":21,"\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":60,task:[6,65,118],sortbi:[23,137,112,65],entri:[159,49,95,88,158,139,81,61,112,16,62,149,137,103,131,122,65,31,94],parenthes:3,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":148,spend:[158,131],"build\u3092\u7528\u3044\u3066":155,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":57,shape:40,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":148,"\u3053\u306e\u64cd\u4f5c\u306f":99,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":139,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":59,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":132,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":30,bin:[163,89],key_column:107,big:8,"\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":136,tokendelimitnul:[147,32],motoi:[65,112],"\u30c6\u30fc\u30d6\u30eb\u3078\u306e\u53c2\u7167\u306e\u914d\u5217\u30c7\u30fc\u30bf\u3092\u7528\u3044\u308b\u3053\u3068\u306b\u3088\u3063\u3066":38,"\u6c38\u7d9a\u7684\u306a":67,bit:[145,115,158,133,20,13,148,12,89,121,131,68],"\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":39,semi:[23,55],groogna_default_command_vers:45,followe:160,often:84,sji:[163,36,85],grn_ctx_set_fin:15,back:8,"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8\u306b\u304a\u3051\u308b\u53cb\u4eba\u95a2\u4fc2\u3092\u9006\u5f15\u304d\u691c\u7d22\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":38,evaluated_valu:129,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":99,scale:[118,45],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":148,per:[117,118,6,8,65,23],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":95,substitut:[101,95,105,158,68],larg:[158,12,82,122,6,118,65,131,45,55],"\u304c\u8fd4\u3055\u308c\u307e\u3059":67,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":94,reproduc:[65,112],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,"\u305d\u308c\u3067\u306f":160,"\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":59,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":113,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":128,grn_default_logger_get_path:[6,65],grn_expr_compil:71,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":94,"\u6e96\u5099\u3057\u305fsynonym\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":79,"\u3068\u5165\u529b\u3057\u3066\u3082":79,nsi:132,pair_dataset:[161,74],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,includ:[58,77,3,131,73,83,95,119,27,120,50,84,9,129,65,154,115,45],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":29,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":155,str_size:71,translat:75,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":75,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":132,default_command_vers:[90,69,3,4,8],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":99,remaind:131,grn_tabl:[46,25,37],grn_db_creat:70,"\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7":160,no_space_left_on_devic:151,curl:[163,4,117,6,8,65,76,45,68],"\u30b3\u30e1\u30f3\u30c8\u3092\u66f8\u3044\u305f\u30e6\u30fc\u30b6\u30fc":160,"\u305d\u308c\u305e\u308c\u306b\u3064\u3044\u3066\u7d50\u679c\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u307e\u3059":95,"\u5168\u6587\u691c\u7d22\u304c\u9ad8\u901f\u306b\u884c\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":38,"\u90fd\u6c11":[60,127],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":59,"\u6587\u5b57\u5217\u578b\u3092\u4e3b\u30ad\u30fc\u3068\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":116,grn_no_locks_avail:2,"\u3042\u308b\u7bc4\u56f2\u5185\u3067\u66f8\u304b\u308c\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,"\u30c7\u30fc\u30bf\u578b":[46,11,37,55],"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":132,"\u30b7\u30a7\u30eb\u4e0a":148,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":95,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":148,"\u3053\u306e\u4f5c\u696d\u306f":132,"tokenbigram\u306a\u3069":60,ellip:[11,153],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"\u95a2\u6570\u3082\u5b58\u5728\u3057\u307e\u3059":63,getaddrinfo:[6,65],"\u5f62\u5f0f1":[30,85],"\u5f62\u5f0f2":[30,85],"\u308d\u3086\u304d":126,"\u4e21\u65b9\u306e\u6761\u4ef6\u3092\u6e80\u305f\u3059\u30b3\u30e1\u30f3\u30c8\u304c1\u4ef6\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":107,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":132,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":132,grn_db:[46,25,98,37,65],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":69,fatal:65,db_path:[90,30,3,4,8],comment_cont:159,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":132,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,geograph:[12,11],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":7,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":39,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[31,94],"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":85,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":132,"0x0":[12,65,39,98],object1:131,object2:131,carlo:[50,114],append:[6,65,71],"\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":127,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":64,"video\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":38,access:[46,165,118,112,122,6,50,8,65,23,105,17],"32gib":122,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":156,interrupted_function_cal:151,"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":67,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":136,vertic:55,sinc:[100,11,107,145,12,120,85,6,130,65,131,55],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":113,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,"\u3053\u306e\u30ab\u30e9\u30e0\u306f":160,grn_resource_deadlock_avoid:[2,67],grn_too_large_offset:2,"\u30bf\u30b0\u6587\u5b57\u5217\u3092\u4e3b\u30ad\u30fc\u306b\u683c\u7d0d\u3057":38,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":85,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":153,"\u30c6\u30fc\u30d6\u30eb\u4f5c\u6210\u6642\u306b\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":126,groonga_github_com_path:132,"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":132,ii_buff:18,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":136,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":132,name2:131,name1:131,account:22,"\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":64,alic:[95,158,101,50,8,84,114,45],obvious:12,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":132,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":127,fetch:[66,74],abcd:119,tab:[154,4,151],commnad:[64,89],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":44,"\u6295\u7a3f\u5834\u6240":160,onlin:[46,37],users_loc:160,grn_ii_buffer_commit:18,gcc:[145,115,20,112,6,23,65,163],groonga_n_record:[65,112],afr:[63,3,116],"\u30b3\u30de\u30f3\u30c9":[6,65],"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":62,inst:[65,112],physic:113,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":135,bind:[144,36,140,85,6,65,23,68],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u306eindexblog1\u30c6\u30fc\u30d6\u30eb\u3082\u4f5c\u308a":66,correspond:[164,108,134,74,42,67,10],"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":67,grn_geo_select_in_circl:23,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":136,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":136,hiroshi:23,replies2:66,"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":132,"\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":132,meter:11,report:75,effici:[118,66,72],"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":99,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":92,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":153,euc:[65,85,112],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":148,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":99,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":59,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":85,nvar:44,spell:154,dai:[100,130,131],dat:[6,65,98,112],mention:159,rubygem:[6,65],"8\u30ea\u30ea\u30fc\u30b9":[65,132],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":92,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":148,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":132,grn_table_lcp_search:99,"tomotaka_ito\u3055\u3093":23,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":60,column_index:[38,95,3,79,72,60,160,83,27,100,62,101,159,84,122,66,131,158],"\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":31,"\u306e\u66f4\u65b0":75,normalizerauto:[77,119,101,41,92,55],"\u3067\u3042\u308c\u3070":148,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":67,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":132,stub:65,rel:[23,95],"\u30ab\u30ec\u30fc":127,red:75,"\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":60,frank:84,standalon:54,test_loc:148,releas:[145,115,89,132],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":85,groonga_log_path:[65,112],"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":136,"\u767b\u9332\u3057\u3066\u307f\u307e\u3057\u305f\u3088\u30fc":160,tokenizer_error:151,"tag\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":38,natti:[23,132],messag:[132,121],"\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":60,monkei:12,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":132,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":132,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":148,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[90,69,3,4,8],"\u6295\u7a3f\u8005\u306f":160,ipad:[145,115],"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":85,structur:[118,82,120,65],charact:[77,3,158,108,154,130,85,27,112,6,118,164,119,65,23,131,71,55],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":59,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":113,have:[124,2,3,165,83,40,8,125,163,45,49,95,131,73,134,100,105,108,154,164,158,118,120,12,74,122,55,90],"\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":85,"\u5927\u91cf\u306e\u4f4d\u7f6e\u60c5\u5831\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3059\u308b\u5834\u5408\u306b":38,min:[156,148,6,17,135,65],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":148,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":107,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":132,mix:[134,72],builtin:11,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":67,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":127,gurun:140,bottom_right:[23,29],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":31,"\u6e2c\u5730\u7cfb":39,"takahiro\u3055\u3093\u304c\u63d0\u6848":136,mail_column:148,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":59,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":155,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":127,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":60,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":95,"grn_bool\u578b\u3092\u8ffd\u52a0":136,hsiomaneki:160,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":132,elfr:[6,65],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u3068\u308a\u307e\u3068\u3081\u3066":95,"\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":59,grn_ii_buffer_append:18,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":60,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":126,escaped_str:71,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":70,integr:[6,12,68,112,65],"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":132,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u3059":38,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":148,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":132,with_weight:[62,65,83,72],"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":60,pattern:[120,118,131],"\u304c\u66f8\u304d\u8fbc\u3093\u30604\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":155,progress:130,superior:[118,27],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":148,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":52,plugin:[46,115,145,133,121,91,105],shorttext:[3,79,82,39,85,90,42,92,114,126,95,47,131,72,12,134,100,101,50,139,83,55,38,108,60,148,62,159,63,11,84,66,96,158,116,160,27,120,149,74,122,164],"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":15,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":102,equat: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":127,comment:[160,112,159,139,65,66,154],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":81,"1\u3064\u306f":66,log_repoen:[6,65],test_str:155,"hook\u306e\u5b9f\u884c\u9806\u4f4d":81,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":85,json:[6,23,72,136,65],grn_obj_table_no_kei:[135,99],grn_table_group_flag:99,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":155,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":85,"\u4f8b\u3048\u3070":[38,126,60,148,127,85,87,66,67],bulk:71,multi:[118,8,65,23,163,165],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":39,plain:96,defin:[3,131,161,100,151,154],buildabl:23,replies_cont:66,ill:127,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":155,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":75,almost:[23,122,146],caplit:65,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":148,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":132,too_many_open_files_in_system:151,japanes:[0,158,118,22,6,65,42,131,105],"pc\u306bgroonga":128,auth_bas:[8,45],optarg:[93,70],hostnam:[148,85,6,8,65,30,90],"\u884c":155,column_nam:49,grn_column_name_key_len:107,francisco:11,"\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":132,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22":[46,138],center:[118,153],builder:18,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":7,choos:[12,49,8],update_not_allow:151,"1byte":151,usual:[12,54,15],unari:[65,112],"\u4eca\u5ea6\u306f":160,"5\u30ea\u30ea\u30fc\u30b9":65,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":155,takayuki:23,gmo:65,"30ac":164,lake:40,add:75,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":132,grn_ctx_at:[6,65,15],match:121,"\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":113,grn_obj_table_pat_kei:[135,99],"\u3067\u306f\u306a\u304ffree":136,grn_obj_path_by_id:[65,67,98],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":70,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":67,substit:95,"\u8ffd\u52a0\u306e\u5c5e":62,string:[46,59,67,72,98,109,112,15,6,65,120,23,49,71,44],qwik:139,insert:[6,65,3,27],like:[95,11,107,116,72,134,83,40,131,22,159,50,8,140,42,163,45,158],success:[16,71,15],grn_obj_id:67,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":67,"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":39,"\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":136,"com\u304cedge\u3092\u4f5c\u308b":143,socket_is_already_shutdown:151,soft:122,snippet_html:[46,37,112,6,65,142],normalizer_list:[46,26,37,65],"\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":59,specfi:47,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":70,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":139,proper:120,grn_column_cr:107,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":148,tmp:[3,132,117,134,83,85,112,50,90,92,65,154,45],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":148,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u5f62\u5f0f":30,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":60,"\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":60,"repositories\u914d\u4e0b\u306b":132,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":60,host:[23,148,90,68],although:8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":132,"\u30c0\u30e1\u30fc\u30b8":60,sbin:76,actual:[12,65,3,8,112],socket:[6,65],"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":15,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":107,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":148,"mooz\u3055\u3093\u304c\u4fee\u6b63":23,statement:131,"\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":[75,150],tomo:38,discard:[65,112],syntax_error:151,"\u51fa\u529b\u3059\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":95,"\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":59,dataset:[43,46,37,134,112,65],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":60,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":132,"\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":132,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":60,conbind:158,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":95,daijiro:160,rch:77,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":64,"\u691c\u7d22\u3059\u308b\u6587\u5b57\u5217\u306fquery\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u307e\u3059":66,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":51,glib:[65,112],unexpect:[6,65],"\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":[75,150],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":39,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":107,uninstal:[6,65],bug:75,grn_obj_set:67,"\u3068\u3044\u3046\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059":63,binlib:132,"point\u578b\u306e\u5024":[29,153],tokenmecab:[6,60,147,65],"\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":137,epel:[6,65,115],"shimada\u3055\u3093":136,colum:[122,66],dure:[6,65,3],pid:[23,1,163,85],saer:[134,108],grn_too_small_limit:2,implement:[58,36,131,82,95,6,11,8,65,129,23,165,105],pip:110,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":99,probabl:134,"\u305f\u3060\u3057":[135,30,127,51,85],detail:[124,77,3,83,6,8,9,130,163,145,95,72,12,13,101,105,148,65,115,116,118,133,122,75,55],virtual:[65,112],comment_nam:159,grn_expr_create_for_queri:59,engi:[42,134],is_a_directori:151,"\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a":[46,138,160],"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[135,106],grn_obj_flag:[52,99,71,107],"\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":59,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":123,"drilldown_offset\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":95,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":59,"\u306e\u30ab\u30e9\u30e0\u306e\u5024\u304c\u7f6e\u63db\u5f8c\u306e\u6587\u5b57\u5217\u3068\u306a\u308a\u307e\u3059":79,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":60,"\u6539\u826f":65,"\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":132,tweet:[100,22],"\u4e21\u8005\u306e\u6761\u4ef6\u3092\u3068\u3082\u306b\u6e80\u305f\u3059\u30ec\u30b3\u30fc\u30c9\u304c\u7d50\u679c\u3068\u3057\u3066\u8fd4\u308a\u307e\u3059":63,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":64,concret:[66,116],"\u554f\u984c\u306fgroonga":148,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":135,everi:116,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":75,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":85,"24byte":151,grn_encoding_to_str:109,not_a_directori:151,x86_64:[115,132],properti:[130,13],naiv:116,not_enough_spac:151,direct:[6,65,112],"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":107,aim:[65,112],hide:[65,112],introspect:[6,65],"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":67,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":59,"82pre":36,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u7fbd\u7530":160,grn_tokenizer_query_open:[6,65],"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":155,studio:[6,65,89,112],path:[132,121,110],"\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":136,httprewritemodul:8,"\u95a2\u4fc2\u5f0f":75,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":127,functin:131,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":75,precis:[120,3,132,118,13,6,65,42],"\u306e3\u30d5\u30e9\u30b0\u306f":135,"\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":128,orilldown:116,portabl:[23,8,112,65],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":59,"\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":67,describ:[34,0,77,3,119,83,40,89,129,42,163,114,145,95,96,131,72,162,13,49,50,103,110,142,55,144,58,108,20,159,151,66,154,68,115,164,158,25,26,120,133,121,74,122,75,105,76],noarch:[145,115],"groonga\u306e\u7d44\u8fbc\u578b\u304b":62,namebuf:[67,107],autogen:[6,65,132,105],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":39,"msg\u306fcom\u306b\u3088\u3063\u3066":143,chracter:[164,27,55],"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":59,"grn_op_but\u306f":59,grn_obj_with_sect:107,join:22,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":127,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":153,overrid:163,enourm:74,end:[156,131,11,4,158],eng:[42,134],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":75,env:154,rroonga:[159,112,16,101,140,65,66,68],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":148,grn_set_default_command_vers:102,befor:[95,3,72,12,98,108,6,8,9,42,65,163,154,10,103],xcode:76,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":64,parallel:118,"\u540c\u4e00\u306e\u8a18\u6cd5\u3067\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":66,exclud:[6,49,84,112,65],environ:[115,98,112,89,8,121,65,23,163,154,68],enter:[65,3,90,112],composit:164,over:[146,112,6,90,118,65],"\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":132,becaus:[124,3,4,82,6,8,9,42,10,45,145,95,131,12,100,101,50,55,108,62,159,151,84,65,66,154,158,117,118,27,120,74,122,164,165],london:11,"\u3053\u306e\u9805\u76ee\u306b\u3064\u3044\u3066\u306f":87,gqtp:[156,46,115,2,145,118,13,148,112,28,6,133,65],"\u304bwgs84geopoint":[29,153],digest:45,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":106,tokenizer_list:[46,26,37,65],"\u95a2\u6570\u3092\u7528\u3044\u308b\u3053\u3068\u306b\u3088\u308a":63,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":64,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":136,oneir:[23,112,132,65],"\u7d4c\u7def\u5ea6\u306f\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u306e\u5f62\u5f0f\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u6307\u5b9a\u3057\u307e\u3059":63,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":59,choic:118,grn_pat_at:136,"title\u3068message\u306e2\u3064\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5171\u901a\u306b\u306a\u3063\u3066\u304a\u308a":66,each:[77,3,82,83,130,8,65,42,163,95,131,72,12,134,49,101,147,56,41,108,146,112,151,23,66,116,117,118,121,74],searc:42,"0\u30ea\u30ea\u30fc\u30b9":65,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"groonga\u306e\u30ab\u30e9\u30e0\u306f":39,goo:[158,131],msgpack:[4,45,151],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":64,newli:[16,100,27,118],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":97,got:[65,112],"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":30,"\u69cb\u9020\u4f53\u306e\u914d\u5217":44,"offset\u306f":99,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":30,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":113,"\u53cb\u4eba\u30ea\u30b9\u30c8\u306b\u5165\u3063\u3066\u3044\u308b\u6570\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":38,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":132,"16gib":122,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":148,score_column:107,onto:122,rand:[46,142,37],rang:[46,95,125,83,112,6,50,65],"\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":135,edit_dist:[46,1,142,37],restrict:[6,65,90,45,112],alreadi:[100,77,3,49,17,122,66,163,54],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":67,primari:[12,49,3,116],"\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":111,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":67,top:[47,116],mercuri:[132,110],too:[131,72,12,112,65,66],tom:101,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[75,150],"\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":132,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"path\u3092":136,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":113,tood:34,consol:8,"groonga\u3067\u306f":[63,87,66,79],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":92,user_ag:84,wareohji:[6,65],grn_obj_set_valu:[135,67],ga54c5f8:148,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":132,expr:71,obata:[23,136,112,65],"\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":59,"\u5b9f\u969b\u306b\u6587\u66f8\u30c6\u30fc\u30d6\u30eb\u3068\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u3066\u307f\u307e\u3057\u3087\u3046":79,thu:[118,54,161,158],rab:[63,3,116],indexblog2:66,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":92,indexblog1:66,raw:[65,112,68],shell:[163,158],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":60,with_sect:[62,65,66,83,160],unresolv:23,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":127,hanako:149,bad_file_descriptor:151,contact:105,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":132,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[99,107],"message\u30ab\u30e9\u30e0\u306e\u307f\u3067\u306e\u691c\u7d22":66,"\u4ee5\u5916\u306b":79,though:[6,42,118,65],"\u3044\u307e\u3059":111,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":148,bsd:[23,163],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":99,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":59,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":66,"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":132,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":148,mininum:[133,115,13,124,145],flow:75,abbrev:11,radix:131,"0\u30d9\u30fc\u30b9\u3067":[135,99],abl:27,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":64,pkg:[115,20,136,6,23,65,163],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":139,"\u3067\u4f5c\u6210\u3057\u305f":15,"\u3082\u3057\u304f\u306f":[135,39,99],absolut:9,top_left_point:47,configur:[75,155,132,105],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":132,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":67,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":148,"\u3092\u6e96\u5099\u3057\u307e\u3059":79,"\u542b\u3081\u308b\u3082\u306e":132,item_queri:[42,134,108,161,74],watch:132,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":85,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":62,normalized_text:119,"\u6771\u4eac\u90fd\u306b\u4f4f\u3093\u3067\u3044\u308b":160,"\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":69,method:[65,3,8,112],twice:[95,158],hendro:[65,112],"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":64,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":136,"\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":156,"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":95,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":53,"\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":126,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":132,nul:23,"\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":126,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":135,databas:[82,83,6,8,9,92,65,163,46,131,50,16,99,140,147,49,54,55,144,41,112,23,67,158,117,118,27,161,122,164,165],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":148,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":67,algolithm:140,"\u30bf\u30a4\u30c8\u30eb\u6587\u5b57\u5217\u306etitle\u30ab\u30e9\u30e0":66,approach:11,exec_format_error:151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":85,"\u683c\u7d0d\u3055\u308c\u307e\u3059":160,weak:[118,27],"\u3053\u306e\u7d50\u679c\u3092\u898b\u308b\u3068":63,grn_invalid_argu:[135,99,2,67],fault:[6,65],"4gib":[82,151],"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":39,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":160,"\u3053\u306e\u4f8b\u3067\u306f":[160,79],"_score\u306e\u5024\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":160,"\u52d5\u753b\u60c5\u5831\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057":38,grn_table_pat_kei:99,trust:132,id_column:107,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":85,evalud:129,been:[50,132],"\u3072\u308d\u3042\u304d":126,accumul:95,geo_distance2:[23,11],geo_distance3:[23,11],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":132,quickli:100,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":141,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,xxx:[65,85,112,131],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":107,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":148,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u6295\u7a3f\u65e5\u6642":160,surrond:27,tasukuchan:160,"grn_op_or\u306f":59,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[99,107],suggest:[46,37,136,26,112,128,6,65,23,163,98],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":136,complex:[6,65,95,112,131],unix_time_when_command_is_start:120,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":44,complet:[46,117,134,9,112,65,23,98,162],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":99,sen_index_delimit:36,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[30,85],quotient:131,"groonga\u306b\u306fhtml":30,"\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":132,"0x01":151,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":136,"\u5024":85,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":143,grn_column_name_valu:107,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":30,ceekz:[65,112],"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":135,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":59,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":107,"mooz\u3055\u3093":23,unstabl:[65,98,132,133],poedit:105,el5:115,escaps:27,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,log_reopen:[5,46,7,26,37],"\u7d44\u8fbc\u95a2\u6570\u306f":[157,29,97,153,57],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":136,"\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":132,line_cont:120,grn_op_but:59,core:[117,118,148,8,163,165],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":59,surround:[6,65,27],dinner:118,ppa:[46,121],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":35,"\u578b":52,encod:121,two:[0,124,77,3,83,40,8,130,45,95,11,15,101,54,55,108,112,62,159,65,66,158,116,119,27,120,74,164,71,165],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":23,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":15,"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,version4:64,git:[91,132,105],version1:64,version2:64,version3:64,"\u30d0\u30fc\u30b8\u30e7\u30f3":132,"256gib":56,head:[156,95,8,151],medium:[145,115,13,133,89,121],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":39,removep:67,drilldown_sortbi:137,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":135,deafult:23,autoconf:23,grn_expr_syntax_escape_queri:71,trie:[3,158,82,112,6,65,23,131,55],decrypt:132,bad_address:151,check:[46,2,132,37,120,136,26,112,6,65,91,23,67,155],ongaeshi:[6,65,112],"clearlock\u306f":94,successfulli:3,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":113,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":59,"\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":148,when:[3,6,8,9,42,65,163,95,11,72,134,49,101,110,55,112,62,159,96,23,158,117,118,120,75,164,90],groonga_dist:[6,65],"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":126,tid:106,saerch:[134,108],node:[6,65,115,68],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,grn_op_and_not:93,"\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":85,sql:116,faster:[23,163,112,65],top_left:[23,29],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":51,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":127,backward:[6,65,45],grn_obj_table_dat_kei:23,"6\u30ea\u30ea\u30fc\u30b9":65,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":95,focus:3,llt:77,ngx_http_proxy_modul:8,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":153,row:[118,27],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":62,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":132,readabl:[65,98],"\u554f\u984c\u3042\u308a":23,jumand:[145,115],sourc:[46,132,73,121,110,105,68],"\u306b\u8a2d\u5b9a\u3059\u308b":132,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":148,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":106,"\u3092\u8fd4\u3057\u307e\u3059":[81,135,99,67],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":51,level:[116,5,85,112,6,7,8,130,65,151],brother:158,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":107,slower:11,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":113,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":39,port:[124,36,4,117,148,85,112,90,65,30,76,45,8],repli:66,"sh\u306e\u307f\u306a\u3089\u305a":155,ken:38,grn_expr_append_const:[59,71],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":156,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":69,connection_refus:151,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":132,"\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":67,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":132,"\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":95,"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":30,"1st":[95,84],grn_table_cursor_clos:135,"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":97,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":62,"\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":64,grn_obj_clear_lock:[23,67],file_exist:151,memori:[145,16,115,136,46,13,62,112,15,6,133,89,121,65,23,163,55],todai:118,"\u3053\u308c\u306f":[60,63],criteria:3,capit:3,target_charact:71,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":44,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":136,proxy_cache_path:8,entries_key_index:[122,95,158,131],lc_messag:105,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":153,purpos:[65,101,3,90,72],backslash:[65,71,112,158],critic:[6,65,163,130],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[46,138],satoh:23,alwai:[151,158,118,83,120,134,8,122,42,131],"\u3053\u308c\u3092\u4f7f\u3046\u3053\u3068\u3067":66,grn_table_update_by_id:99,"users\u30c6\u30fc\u30d6\u30eb\u306efavorites\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":160,"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":127,"\u305d\u3057\u3066comments\u30c6\u30fc\u30d6\u30eb\u306ereplied_users\u30ab\u30e9\u30e0\u306f":160,clone:[91,75,132],"4th":95,"0\u4ee5\u4e0a18":39,key_with_si:[126,131,158,55],"\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":136,ueno:[6,23,65],inform:[16,58,118,83,112,22,130,6,9,129,65,164,98,105],combin:[95,118,6,101,84,65,55],"\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u4e00\u89a7\u306a\u3069":160,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":60,midnight:131,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":148,mainli:65,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":81,normalizermysqlunicodeci:164,platform:[121,105],meridian:11,cutter:[155,132],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":132,"\u6b21\u306b":[59,79],"\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":[137,85],"output_type\u306b\u306fjson":30,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":67,term:[56,62,95,158,113,118,85,27,112,6,101,65],name:[34,62,52,107,98,118,83,109,61,112,15,6,113,99,65,120,23,67,71,44,105],"\u65e5\u3005":111,"\u3053\u3053\u3067\u306f\u30df\u30ea\u79d2\u8868\u8a18\u3067\u767b\u9332\u3057\u307e\u3057\u3087\u3046":63,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":85,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":135,"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":64,"\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":59,no_memory_avail:151,"\u3053\u306e\u578b\u3067\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u306f2\u3064\u3042\u308a\u307e\u3059":160,grn_itoh:23,grn_bool:67,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":136,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3057\u305f\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":160,"base_version\u306ftar":132,"groonga_clone_dir\u306b\u3066autogen":132,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":15,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":62,"\u30af\u30a8\u30ea\u62e1\u5f35":[23,138,46],compress_zlib:62,migrat:[65,95,158,131],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":59,ruby19:[6,65,132],"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":15,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":148,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":132,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":95,"\u7def\u5ea6\u7d4c\u5ea6\u5ea7\u6a19\u306e\u305f\u3081":160,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":67,place:[163,22],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":92,origin:[95,112,120,139,65,105],"\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":60,redhat:[23,163],"\u6e96\u5099\u3057\u305f\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f7f\u3063\u3066\u307f\u307e\u3057\u3087\u3046":79,arrai:[120,95,41,158,72,83,119,27,6,113,77,65,147,23,55],string_siz:71,given:[6,65,112,101],"\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":132,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":23,domain_error:151,circl:[118,40],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,white:[3,158],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":106,grn_table_add:99,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":155,copi:[6,65,50],specifi:[77,125,83,40,6,8,9,129,163,44,46,95,47,72,134,15,49,50,54,55,105,58,112,62,149,103,84,65,114,98,70,117,118,119,161,120,31,76],"\u30d1\u30a4\u30d7":62,"\u521d\u671f\u5316\u6e08\u307f\u306e":70,enclos:[49,3],pragma:95,serv:[12,65,132],wide:[23,163,3,118],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\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":136,grn_table_cursor:[46,25,106,37],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":51,"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":132,posix:131,posit:[95,77,3,47,72,83,2,65],grn_column_index:107,seri:3,"808\u4ee5\u4e0a9":39,local_nam:139,ann:132,"query_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bselect\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3063\u3066\u691c\u7d22\u3057\u3066\u307f\u307e\u3059":79,ani:[58,77,158,159,118,95,119,27,49,101,8,134,129,163,154,115,45],grn_unsupported_command_vers:2,grn_obj_set_mask:67,operation_timeout:151,"\u691c\u7d22\u7d50\u679cn":95,"\u306b\u306a\u308a\u307e\u3059":15,sure:3,multipli:131,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":155,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":132,geoindex:38,time_column:148,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":59,"com\u306f1\u30b9\u30ec\u30c3\u30c9":143,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":85,grn_table_cursor_set_valu:135,permiss:163,sitecountri:[90,116],explicitli:[6,65,8,110],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[60,127],state:[6,65,11,151,149],analyz:[6,23,118,8,65],grn_obj_column_vector:107,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[46,33],"\u3092\u6307\u5b9a\u3057":[135,31,94],"45ea3034":130,ssh:132,"\u8a73\u7d30\u306f":[60,30,155],reveal:118,"\u542b\u3081\u306a\u3044\u3082\u306e":132,grn_geo_select_in_rectangl:[23,47],"shibuya\u3055\u3093\u304c\u5831\u544a":136,"\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":132,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":67,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":99,"ongaeshi\u3055\u3093":136,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":39,"\u8b66\u544a\u3092\u9664\u53bb":136,detect:[77,6,8,65,23,163],"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc":[46,138],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":111,"\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u308b\u3053\u3068\u3067":160,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":132,grn_query_expander_tsv_synonyms_fil:154,grn_db_register_by_nam:128,"59\u74b0\u5883\u306b\u304a\u3044\u3066":23,"\u30d2\u30c3\u30c8\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u304b\u3089\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3055\u308c\u305f\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":160,come:40,"\u63a5\u7d9a\u3059\u308bgroonga":148,region:40,quiet:151,reference_vector_column:[65,112],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306e\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":160,"\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":60,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\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":51,color:164,whombx:[65,112],period:65,pole:11,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":136,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":67,"ueno\u3055\u3093":[136,128],lexicon2:66,item_exampl:42,log_put:[5,46,26,37],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":132,frequency_threshold:[23,108,74,134,42],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":136,"s3ki\u3055\u3093\u304c\u5831\u544a":136,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[67,107],"\u5168\u6587\u691c\u7d22\u306b\u7528\u3044\u308b\u305f\u3081\u306e\u8a9e\u610f\u8868\u304c\u30c6\u30fc\u30d6\u30eb\u3068\u3057\u3066\u6271\u3048\u307e\u3059":87,not_socket:151,grn_command_version_max:102,"case":[72,40,112,15,16,65,23,163],"\u3042\u308a\u307e\u305b\u3093":[21,69,141,123,92],cast:[6,23,98,112,65],"\u3068\u3044\u3046\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u8a18\u8ff0\u3059\u308b\u3053\u3068\u3067":160,grn_db_open:70,out_loc:148,favorited_bi:160,grn_expr_alloc:71,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":59,"define_selector\u306f":137,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":99,query_s:71,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":132,saerc:[134,108],"4\u884c\u76ee":148,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":107,author:8,alphabet:[108,77,55],users_index:160,grn_get_default_match_escalation_threshold:53,"\u304c1\u3064\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":160,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":59,grn_cursor_rk:135,expresss:140,messagepack:[6,23,163,98,65],status:[2,151],"\u305d\u308c\u305e\u308c\u306e\u30ab\u30e9\u30e0\u306b1\u3064\u305a\u3064\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u65b9\u5f0f\u3067\u3059":66,"com\u306edoc":132,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":85,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":95,"_nsubrec":[38,95,107,116,160,51],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[75,150],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":135,"po\u306e\u5b9f\u884c":75,sed:[6,23,65],overcommit_memori:[6,65],without:[100,95,158,72,118,27,112,6,101,8,159,9,65,103,165,98,131],model:151,"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":136,"\u3067\u78ba\u4fdd\u3057\u305f":15,"groonga\u3092build\u3059\u308b\u969b\u306b":69,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":135,"\u305d\u308c\u305e\u308c\u306e\u7570\u306a\u308b\u8868\u8a18\u306e\u6587\u66f8\u3092\u3082\u308c\u306a\u304f\u691c\u7d22\u3059\u308b\u305f\u3081\u306e\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":79,rose:12,except:[145,58,77,158,72,82,40,27,122,6,8,65,129,23,95,55],blog:[95,131,132,60,100,159,66,158],hino:[65,112],hyphen:[3,55],grn_obj_nam:67,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":85,grn_table_cursor_open:[135,136],consid:[124,45,55],"\u30e6\u30fc\u30b6\u304c":79,realtim:[134,74],with_typ:119,comamnd:45,grn_rc:[35,47,107,67,81,18,109,99,15,16,135,102,17,53,93,71,44],rsync:132,grn_cache_current_set:16,freed:[16,65],garbag:[23,112,113,65],inspect:[65,112],tokenbigramsplitsymbolalpha:[60,147,95,77,32],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[67,107],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":70,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":136,"\u8a9e\u5f59\u3054\u3068\u306b\u8907\u6570\u306e\u60c5\u5831\u3092\u4fdd\u6301\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":87,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":132,tokentrigram:[147,77,32],scorer:137,"\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3067\u306f":79,libmecab:[133,13,132],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":113,rescord:140,strict:65,interfac:[6,65,3,4,117],chracterist:82,regard:[65,112,158],grn_obj_key_var_s:52,untag:96,longer:[36,15],notat:[6,65,112,131],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":67,"\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":64,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":85,"\u6307\u5b9a\u3057\u305f\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u3064\u3044\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u306e\u4e00\u89a7\u3092\u51fa\u3059\u3053\u3068\u304c\u51fa\u6765\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":160,grn_expr_creat:71,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":132,"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":136,strongli:[145,115,13,133,89,121],"a\u3092\u6307\u5b9a\u3057\u3066tabl":99,user_column:148,grn_index_cursor_next:[65,106,112],gettext:105,orient:[12,118,27],remove_tokenized_delimit:119,"\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":148,allow_upd:[95,158],comments_loc:160,directori:[117,112,6,8,65,23,163,154,54,105],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1":[46,138],potenti:[65,112],"\u30c7\u30fc\u30e2\u30f3":85,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":15,all:[77,3,82,83,6,8,9,129,42,65,163,45,100,95,47,131,72,49,50,140,105,58,151,84,23,114,164,158,118,130,74,122,55,103],grn_table_column:99,dist:132,"ctx_new\u3068\u3044\u3046queue\u306b":143,scalar:[83,125,72],follow:[34,77,3,4,83,40,22,6,89,8,65,42,163,10,45,95,11,131,72,12,134,49,101,50,110,147,54,55,56,41,107,108,146,130,112,159,151,23,154,68,158,116,117,160,119,27,161,120,74,122,105,90],disk:[66,55],ptr:136,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":136,init:[6,65,163,44,112],program:[117,83,112,6,8,65,54],"\u95be\u5024\u3092\u8d8a\u3048\u308b":60,liter:[158,27,112,6,65,23],"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":60,rand_max:57,systemctl:124,failur:[6,65,17,132],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":51,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":135,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":85,longtext:[39,47],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":132,"\u52d5\u753b\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b":38,"\u304a\u3088\u3073":132,"\u5e74":160,"help\u3067\u51fa\u529b\u3055\u308c\u308b":23,yappo:[65,36,112],tex:77,rate:[65,112,84],design:[6,12,95,65],sug:10,what:[134,71,159],sub:[118,132],sum:95,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":107,themselv:[154,105],noraml:77,bottom_right_point:47,behaviour:65,solari:[46,121],grn_ctx_init:[23,15],serihiro:[6,65],"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":21,memcach:[46,138,118],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,matsuu:136,grn_bad_address:2,gtihub:23,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":111,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":60,tokenunigram:[147,32],"\u30ea\u30ea\u30fc\u30b9\u65e5":132,deprec:[95,64,85,112,6,11,65,23,55],ocelot:[23,112,65],suddenli:[65,112],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[23,136],"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":132,"\u4ee5\u964d\u3092\u7121\u8996":136,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":136,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[46,33],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":39,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":137,grn_syntax_error:2,src_key_siz:99,flag:[62,106,107,72,52,83,98,99,15,6,113,50,65,135,23,67,71],"\u306e\u7d4c\u7def\u5ea6\u3092\u4fdd\u5b58\u3057\u307e\u3059":63,"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":93,known:[3,131,118,27,112,90,65,163],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":81,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":39,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":85,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":94,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":148,omit:[95,11,3,4,82,9,120,42,23],"\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":137,cours:116,newlin:[23,98,65],divid:[12,118,131],rather:[100,83,95,72],rep_loc:148,divis:65,"\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":160,resourc:[100,65],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[31,94],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":107,overcommit:122,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":107,"\u6307\u5b9a\u3059\u308b":70,resours:16,"request\u3092\u9001\u308a\u307e\u3059":132,"\u5168\u6587\u691c\u7d22\u3092\u884c\u3063\u305f\u7d50\u679c\u306e\u5404\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u51e6\u7406\u3092\u884c\u3046\u305f\u3081\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3067\u3059":63,"short":[8,72],geo_dist:[46,37,112,6,65,23,142],caus:[158,12,112,6,65,23,131,55],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":67,mailarch:132,yahppo:[65,112],grn_table_trunc:[23,99],logal:68,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":99,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":136,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"7\u30ea\u30ea\u30fc\u30b9":65,"\u4f4d\u7f6e\u60c5\u5831\u30ec\u30b3\u30fc\u30c9\u3092\u7528\u3044\u3066\u30bd\u30fc\u30c8\u3059\u308b\u5834\u5408\u306b":38,soccer:38,"return":[16,47,107,37,46,109,26,112,15,6,99,17,65,120,23,67,71],do_loc:148,grn_table_sort_asc:99,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":59,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":107,ff9e:164,innodb:118,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":123,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":88,truncat:[46,37,26,112,65,23],"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":132,weight:[6,65,112],needless:[6,65,98,112],yoshida:[65,112],expect:12,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":99,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":67,"\u7def\u5ea6":[160,63],socket_is_not_connect:151,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[99,67],footnot:[11,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":153,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":23,"\u5b9f\u969b\u306b\u691c\u7d22\u3057\u3066\u307f\u307e\u3057\u3087\u3046":66,advanc:[129,58,36],differ:[0,95,11,4,117,12,158,6,101,65,66,131,45,55],content_type_len:[6,65],thread:[117,118,85,112,15,130,65,45],"\u306exml\u51fa\u529b\u5bfe\u5fdc":136,"\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":59,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":99,"apt\u306e\u5834\u5408":132,groonga_database_auto_cr:[6,65,112],blank:164,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":148,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":127,"\u691c\u7d22\u3092\u884c\u3044\u307e\u3057\u3087\u3046":38,gpl:36,"\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":136,script:[46,37,112,6,65,163,71],goronga:89,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":132,gpg:132,exclude_t:[65,112],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":155,grn_column_name_id:107,"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":127,option:[120,115,145,70,110,20,83,13,112,6,133,103,23,65,163,98,76],"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":132,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"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":132,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[67,107],"\u4e16\u754c\u6e2c\u5730\u7cfb\u3067\u306e\u4f4d\u7f6e\u60c5\u5831\u3092\u4fdd\u5b58\u3057\u3066\u307f\u307e\u3057\u3087\u3046":63,kind:[118,3,116],similar_search:[6,65,134],remov:[20,112,6,12,149,8,9,23,65,67,98],"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":148,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":155,grn_post:[47,106],ruby_ev:[46,26,112,37,65],expir:[8,103],"\u7d4c\u5ea6\u304c139\u5ea646\u520627":63,"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":148,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":39,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":136,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":85,"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":157,"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":60,function_not_impl:151,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":51,reach:122,"\u30e1\u30fc\u30c8\u30eb":153,grn_obj_incr:67,fuzzi:55,latitude_in_degre:131,"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":99,grn_column_name_kei:107,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[88,5,61,7,137,21,94],penalti:65,firewood:[6,65,112],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":15,underflow:12,hit:[65,95,112,140],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":39,pair_queri:[42,134,108,161,74],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":99,longest:[23,99,131],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":30,"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":60,grn_column_name_nsubrec:107,grn_obj_persist:[99,107],"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":127,grn_success:[95,2,15,16,17,130,71],"\u6570\u5024":127,"\u30b3\u30df\u30c3\u30c8":132,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":75,art:131,dump:[46,37,136,26,112,6,65,23],arc:77,tobbi:101,grn_obj_with_weight:107,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":107,"\u524d\u8005\u306f\u65e5\u672c\u6e2c\u5730\u7cfb":63,grn_table_differ:99,"\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":136,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":75,korea:116,"\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":60,succeed:[2,3,62,149,114,163],"com\u3078\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332":75,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":136,solv:12,solr:131,socket_not_initi:151,grn_table_get:[65,99,98],threashold:[60,136],"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":60,context:[27,16,159,8,23,67],"1x139":12,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":107,grn_table_sort_flag:99,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":85,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":64,additional_configure_opt:[65,112],"\u5f93\u3063\u3066":95,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":81,"\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":132,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":39,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":153,conifugr:68,grn_file_exist:2,beforehand:145,demand:124,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":148,packag:[46,115,132,145,133,121,76,105],"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":148,nakai:[65,112],abov:[3,6,89,8,42,163,95,96,55,101,105,108,159,84,65,66,154,68,116,117,74,164],kana:[42,134,108,161,74],input_file_nam:120,xvzf:[145,115,20,13,133,163,76],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":60,"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":148,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":132,rid:18,"\u540c\u69d8\u306b":38,minim:[8,84],grn_obj_column:67,"\u5065\u4f5c":38,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":136,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":39,higher:[134,95],"\u975e\u4e92\u63db":23,x86:[23,89],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":113,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":148,"\u3067\u6271\u3063\u3066\u3044\u307e\u3059":160,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":127,"\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059":63,lower:[95,77,3,55],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":148,searchabl:100,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":99,propos:[95,10],"\u3042\u308b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":160,table_:[82,55],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":57,"3\u884c\u76ee":148,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":59,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":67,grn_plugin_get_system_plugins_dir:23,table2:99,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":59,gem1:132,table1:99,docutil:[132,110],retry_max:151,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":132,collect:[120,118],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":99,"\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":132,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":59,"\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":64,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":64,invalid_format:151,"log\u3067\u3059":85,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[35,70,81,67,44,104,107],blog_titl:3,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":135,necessari:[23,3],leftmost:131,proc:[145,95,81,13,112,133,115,65,44,104],form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":[125,107],squeez:[65,112,132],maximium:95,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":15,dialog:[65,112],"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":148,"\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[46,138],grn_cache_current_get:16,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":135,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":21,"\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":155,shimoda:136,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":132,question:66,live:55,"long":[53,65,18,112,55],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":51,arithmet:[65,112],"query\u3068":160,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":148,grn_proc_get_info:44,"users\u30c6\u30fc\u30d6\u30eb\u306elocation\u30ab\u30e9\u30e0\u3068":160,wno:23,"436218z":131,"\u554f\u984c\u3092\u4fee\u6b63":136,aramaki:23,consist:[151,3,158,74],"benchmark\u306f":148,caller:44,"\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":95,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":85,test_text_otoj:155,radious_or_point:153,"\u3059\u308b\u3068groonga":132,horikoshi:23,unauthent:[6,65,133],grn_expr_append_const_int:71,"\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":127,grn_socket_not_initi:2,"\u540c\u3058\u3067\u3059":148,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":136,weight3:72,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":93,weight1:[6,65,95,72],comments2:66,grn:[8,139],gro:[117,27],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":127,nice:100,"\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":148,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3068query\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u7570\u306a\u308b\u70b9\u306f":63,grn_expr_add_var:71,drilldown:[46,51,112,137,65,23],"\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":132,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u304a\u3044\u3066":63,"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":139,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":75,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":69,"\u65b0\u5bbf\u99c5\u306f\u7def\u5ea6\u304c35\u5ea641\u520627":63,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":128,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":132,grn_set_default_encod:109,"\u7e70\u308a\u8fd4\u3057\u6570":148,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":62,mainstream:118,w64:132,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":59,"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc\u30b8\u30e5\u30fc\u30b9\u3068\u30b4\u30fc\u30e4\u30c1\u30e3\u30f3\u30d7\u30eb":79,"grn_expr\u306f":59,relev:[118,3],ranguba:72,"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[46,37],"\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":132,nfkc:164,pleas:[0,3,22,65,75,163,105],smaller:[11,72,118,100,130,55],"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":132,compat:[145,115,13,119,133,8,164,45],compar:[95,158,118,27,6,65],jekyl:132,grn_info:[46,25,37],"314e":131,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,usag:[118,46,112,37,65],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":39,larger:[95,72,82,27,151,74,122],"_name":55,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":30,typic:95,appli:[36,71],approxim:[6,23,11,65],"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":132,apt:[132,13,6,133,110,65,68],api:[75,14],from:[118,46,40,121,110],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":60,usa:116,"\u8a9e\u5f59\u306e\u51fa\u73fe\u6570\u3084\u691c\u7d22\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u306e\u30d5\u30e9\u30b0":87,few:[45,165],usr:[85,8,9,163,155,76],sort:[46,95,82,40,112,118,134,65,23,138],"\u3068\u306a\u308a\u307e\u3059":63,"\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":137,tokenbigramignoreblanksplitsymbolalpha:[60,147],"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":136,"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":111,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":51,annot:[65,112],"\u4e0a\u8a18\u306e\u30af\u30a8\u30ea\u306f\u5b9f\u884c\u3055\u308c\u308b\u305f\u3073\u306b\u691c\u7d22\u7d50\u679c\u306e\u4e26\u3073\u9806\u304c\u30e9\u30f3\u30c0\u30e0\u306b\u5909\u308f\u308a\u307e\u3059":63,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":81,"\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":155,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":99,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":67,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":39,grn_column:[46,25,37],tar:[145,115,132,20,13,133,163,76],tag:[95,132,72,83,112,6,65,23],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":136,"\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":132,grn_set_lock_timeout:17,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":81,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":39,six:[130,3],"\u30e6\u30fc\u30b6\u30fc\u306e\u73fe\u5728\u5730":160,"100x100":153,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":92,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":99,instead:[82,40,85,6,89,90,23,163,145,95,11,131,140,55,112,65,68,158,27,121,164,8],express:[58,11,117,140,95,112,6,149,89,8,65,23,71],"\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":132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":132,"load\u30b3\u30de\u30f3\u30c9":1,attent:95,"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":59,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":136,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":156,light:50,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":92,"1\u884c\u76ee":148,freebsd:[46,37],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":155,"\u4eac\u90fd":[60,127],location_in_input:120,ouput:[65,112],"\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3057\u3087\u3046":38,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":75,"log_level\u306f":5,condtion:158,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":85,"homebrew\u3078pul":132,bye:[95,158,131],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":85,crash:[6,23,50,112,65],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":64,"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":132,keys_zon:8,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":62,devel:[145,115],"javascript\u306e\u5f0f\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u6761\u4ef6\u3092\u6307\u5b9a\u3059\u308b\u70b9\u3067\u3059":63,successor:131,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":155,edit:[75,132],"975\u79d2":63,grn_socket_is_already_connect:2,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":148,our:[22,105],grn_obj_column_index:[106,107],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":148,"gz\u306eversion\u304a\u3088\u3073vers":132,out:[145,115,159,13,133,89,121,91,65,66],longitude_in_degre:131,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":136,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":132,dcb314:65,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":143,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":60,grn_ctx_send: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":132,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":60,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,york:11,dictionari:[145,115,136,112,6,65,164],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,lte:77,"\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":132,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":67,"\u8aac\u660e":[46,37],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":136,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"request\u3092\u9001\u308a\u307e\u3057\u305f":132,tetsuharu:65,"\uff12\u70b9\u9593\u306e\u8ddd\u96e2\u304c\u6307\u5b9a\u306em\u4ee5\u4e0b\u306b\u304a\u3055\u307e\u308b\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,prioriti:[42,118],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":44,grn_obj_get:67,unknown:[65,109,98],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":51,"akio\u3055\u3093":136,"\u30b0\u30cb\u30e3\u30e9\u304f\u3093":160,"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":31,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":62,"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":135,practic:[12,118],"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":136,"\u3092\u4f5c\u6210\u3057\u307e\u3059":62,emac:105,no_such_file_or_directori:151,collaps:[6,65],"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":111,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":39,"4097byte":82,"\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":85,"shimada\u3055\u3093\u304c\u5831\u544a":136,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":67,"title\u30ab\u30e9\u30e0\u306e\u307f\u3067\u306e\u691c\u7d22":66,which:[124,77,3,85,6,90,129,42,145,95,11,131,12,101,54,58,112,159,96,65,66,158,116,117,118,119,149,160],grn_obj_delete_by_id:[23,67],"\u30db\u30b9\u30c8\u540d\u3068":148,who:[65,112],"\u7d44\u8fbc\u578b":[46,37],default_token:95,"class":[96,27],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":132,determin:[95,3,140],"_id":[3,79,90,42,114,126,95,131,72,134,100,50,51,139,38,107,108,60,63,149,84,66,67,158,116,120,74,164],"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":39,"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":135,word1:[6,65,95,158,131],word2:[6,65,95,158,131],"\u57f7\u7b46\u4e2d\u3067\u3059":66,your_github_account:105,grn_obj_with_posit:107,"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":126,local:[131,132,118,8,110,163,105],"\u3092\u4f7f\u3063\u3066":63,"150x100":29,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":127,grn_ctx_use:15,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":127,subrecord:[65,112],grn_cursor_prefix:135,"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9\u306e\u969b\u306b\u30de\u30a4\u30af\u30ed\u79d2\u3092\u5358\u4f4d\u3068\u3059\u308b\u6574\u6570\u5024\u306b\u5909\u63db\u5f8c":160,"\u3042\u308b\u8a9e\u53e5\u304c\u4ed8\u4e0e\u3055\u308c\u3066\u3044\u308b\u52d5\u753b\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b":38,candidate2:134,candidate1:134,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":148,view:[46,117,146,6,65,138],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":132,knowledg:118,"1073741824\u306e\u6574\u6570\u3067":51,"\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":85,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"10t22":108,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":135,index_tag:38,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":148,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":137,dll:[6,23,148,65],"v1\u306e\u5024\u306e\u4e2d\u306b":59,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":111,yaman:[65,112],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":153,job:148,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":39,homebrew:[46,132,121],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":111,addit:[46,115,77,37,145,118,13,119,133],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":[156,85],april:132,"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":132,"twitter\u306e\u3088\u3046\u306a\u77ed\u3044\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6295\u7a3f\u3059\u308b\u30d6\u30ed\u30b0\u3067\u3059":160,grn_logger_info:[6,65],"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":136,respect:[6,12,65],rpm:[145,115,132,112,6,65,23,98],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":23,"query_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u306b":79,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,mike:149,"\u30b3\u30e1\u30f3\u30c8\u306b\u95a2\u3059\u308b\u5185\u5bb9\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3067\u3059":160,"128423343x502929252":160,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":111,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,153],roonga:10,"\u30c6\u30fc\u30d6\u30ebentry\u306b":62,"21th":[65,112],cursor:[23,47],"\u691c\u7d22\u7d50\u679c\u306b\u306f":63,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":51,"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":60,customiz:27,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":39,"\u3072\u308d\u3086\u304d":126,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":132,avg:156,"\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":136,grn_expr_append_op:[59,71],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":148,"\u6ce8\u610f":99,"\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":136,difficult:118,"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":127,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[60,127],"\u3092\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u30b3\u30e1\u30f3\u30c8\u691c\u7d22\u3057\u305f\u7d50\u679c":160,"0x10":151,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":111,english:[0,95,110,112,22,23,42,65,105],uzulla:23,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":69,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":132,normalizermysqlgeneralci:164,users_nam:101,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":85,"\u3082\u3057groonga":148,euc_jp:163,"key\u306b\u306f":99,amd64:132,book:131,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":139,"\u30ab\u30e9\u30e0\u578b1":95,"\u307e\u305f\u306f":148,"table\u306fcolumn\u3068\u306f\u5225\u306b":99,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":109,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":67,know:[124,116],press:105,"\u95be\u5024\u3092\u3042\u3052\u308b":[46,33],"\u30ab\u30e9\u30e0\u578bn":95,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f10\u3067\u3059":95,earch:77,incres:65,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,exceed:146,no_child_process:151,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[23,112,65],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":60,column_inform:83,lead:[95,3,27],grn_obj_get_nhook:81,leak:[62,136,112,6,65,23,163],lear:74,grn_address_is_in_us:2,time_stamp:130,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":107,"title\u30ab\u30e9\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u306bindex_title\u30ab\u30e9\u30e0":66,investig:[146,112,116,65],acronym:151,tanab:[65,112],rare:[65,112],"\u305d\u308c\u305e\u308c":155,kanako:[65,112],disabl:[62,95,136,158,117,130,110,112,6,8,42,23,65,163,98],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":75,own:[6,12,131,118,65],grn_operation_timeout:2,"\u6570\u5b57":148,grn_ii:[46,25,37],"\u4f8b":[46,1,67,132],grn_id:[35,106,107,18,15,99,135,67,71],automat:[3,158,82,9,8,110,131,105],automak:136,grn_expr_append_const_str:71,grn_default_query_logger_get_path:[6,65],"145508000x":11,transfer:[46,124,151,138,118],grn_command_version_min:102,appl:164,replac:[65,54,161],"var":[124,59,83,85,8,163,44],"\u30ad\u30fc\u304c":85,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":132,"\u4ee5\u5916\u306e\u5834\u5408\u306f":95,"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":59,"\u73fe\u5728":21,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":85,"\u521d\u306e\u66f8\u304d\u8fbc\u307f":160,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":132,palallel:132,made:[6,23,3,65],whether:[95,2,158,159,12,146,140,6,101,11,8,84,134,65,67],troubl:105,record:[56,46,47,37,72,118,40,112,6,99,149,65,23,49,71],below:[49,91,50,158],"\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059":160,"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":67,"\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":[69,88,5,61,62,113,7,137,139,141,21,92,31,123,94],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":102,ff76:164,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u3067\u306f\u6607\u9806":99,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":132,makecach:[6,65,115],"fork\u3059\u308b\u70b9\u304c\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3068\u7570\u306a\u308b":85,"\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":132,other:[118,46,75,121,105],bool:[126,12,39,112,65,158],"command_version\u3092\u8fd4\u3057\u307e\u3059":15,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":85,grn_table_delete_by_id:99,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":67,"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":95,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":64,debian:[46,121,110],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":81,"\u4fdd\u5b58\u3057\u305f\u7d4c\u7def\u5ea6\u3092\u7528\u3044\u3066\u7d5e\u8fbc\u3084\u30bd\u30fc\u30c8\u304c\u3067\u304d\u307e\u3059":63,emerg:[5,130,7,8],allow_leading_not:95},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","suggest/introduction","reference/functions/geo_distance","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/api/global_configurations","reference/api/grn_ii","spec","install/solaris","reference/commands/log_reopen","community","news/1.2.x","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","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","geolocation_search","reference/commands/normalizer_list","suggest/completion","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_geo","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/api/grn_type","reference/api/grn_match_escalation","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/command/command_version","news","tutorial/match_columns","reference/api/grn_obj","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","contribution/documentation/c-api","suggest/suggestion","contribution","install/mac_os_x","reference/commands/tokenize","suggest/tutorial","tutorial/query_expansion","server/gqtp","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/commands/table_remove","install/windows","tutorial/network","contribution/development/repository","reference/commands/table_list","reference/api/grn_search","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","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","suggest/correction","reference/api/grn_encoding","contribution/documentation/introduction","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","reference/command/output_format","install","reference/tuning","reference/commands/shutdown","server/package","reference/column","tutorial/patricia_trie","spec/search","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","reference/api/grn_table_cursor","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","contribution/development/com","development","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/functions/geo_in_circle","reference/query_expanders/tsv","contribution/development/test","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","tutorial/micro_blog","reference/executables/groonga-suggest-create-dataset","suggest","install/others","reference/normalizers","server/http"],titles:["13.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","8.3.3. Return code","4.1. Basic operations","8.2. Output","8.3.16. log_level","Release 2.1.2 - 2013/01/29","8.3.17. log_put","8.1.4. groonga-httpd","8.3.22. register","5.1. Introduction","8.11.3. geo_distance","4.3. Various data types","2.4. Ubuntu","13.2. How to contribute in documentation topics","8.15.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","8.15.2. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","8.15.1. Global configurations","8.15.11. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","9. Specification","2.7. Oracle Solaris","8.3.18. log_reopen","3. Community","Release 1.2.9 - 2011/12/29","8.9. Query expanders","8.15. API","8.3. Command","8.11.10. snippet_html","7. Server","8.11.5. geo_in_rectangle","8.1.5. groonga HTTP\u30b5\u30fc\u30d0\u30fc","8.3.12. defrag","8.8. Tokenizers","11. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","8.15.22. Plugin","8.15.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","8. Reference manual","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","8.4. \u30c7\u30fc\u30bf\u578b","6. Geolocation Search","8.3.20. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","5.3. Completion","8.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","8.15.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","7.3.1. Comparison","Groonga documentation","8.15.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","Cast","8.3.15. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","8.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","\u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","8.15.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","8.15.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","8.1.8. groonga-suggest-learner","8.3.29. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","10. Limitations","8.11.9. rand","8.3.24. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","13.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","11.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","8.3.9. column_remove","8.3.7. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a","8.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","News","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","8.15.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","12.1. Travis CI","8.3.27. status","8.15.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","8.15.8. grn_expr","Vector column","13.2.3. C API","5.5. Suggestion","13. How to contribute to groonga","2.2. Mac OS X","8.3.32. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","5.2. Tutorial","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.2. GQTP","8.15.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","8.5. Tables","8.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","8.11.1. between","8.1.2. groonga command","7.3.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","8.3.31. table_remove","2.1. Windows","4.2. Remote access","13.3.1. Repository","8.3.30. table_list","8.15.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","8.3.6. clearlock","8.3.25. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","8.11.6. html_untag","8.11.2. edit_distance","Release 1.3.0 - 2012/01/29","8.15.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","8.12. Indexing","8.11.8. query","8.15.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","8.3.4. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","8.15.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","13.2.2. I18N","8.15.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","8.15.3. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","5.4. Correction","8.15.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","13.2.1. Introduction","13.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.1 - 2013/12/29","8.3.5. check","8.3.34. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","2.5. CentOS","4.5. Drilldown","8.1.7. groonga-suggest-httpd","1. Characteristics of Groonga","8.3.19. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","8.3.2. Output format","2. Install","8.14. Tuning","8.3.26. shutdown","7.1. Server packages","8.6. Column","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","9.2. \u691c\u7d22","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","8.3.23. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","8.13. Log","8.10.2. Script syntax","13.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","8.3.28. suggest","8.15.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","8.3.11. define_selector","4. Tutorial","8.3.14. dump","8.10. grn_expr","8.3.21. quit","8.11. Function","13.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12. Development","2.6. Fedora","11.2. How to avoid mmap Cannot allocate memory error","8.3.33. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","8.1.3. groonga-benchmark","8.3.13. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","13.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","9.1. GQTP","7.3.2. groonga","8.11.4. geo_in_circle","8.9.1. QueryExpanderTSV","13.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","8.1.1. grnslap","8.11.7. now","8.10.1. Query syntax","8.11.11. sub_filter","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","8.1.6. groonga-suggest-create-dataset","5. Suggest","2.8. Others","8.7. Normalizers","7.3. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[53,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[85,0,1,"cmdoption--cache-limit"],grn_get_default_match_escalation_threshold:[53,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[70,1,1,"c.grn_db_create"],grn_obj_get_hook:[81,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[67,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[135,1,1,"c.grn_table_cursor_close"],"-P":[156,0,1,"cmdoption-P"],grn_table_cursor_set_value:[135,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[71,1,1,"c.grn_expr_syntax_escape"],"-e":[85,0,1,"cmdoption-e"],"-d":[54,0,1,"cmdoption-d"],"-a":[85,0,1,"cmdoption-a"],"-c":[85,0,1,"cmdoption-c"],grn_obj_set_info:[35,1,1,"c.grn_obj_set_info"],"-m":[156,0,1,"cmdoption-m"],"-l":[54,0,1,"cmdoption-l"],"--disable-max-fd-check":[117,0,1,"cmdoption--disable-max-fd-check"],"-i":[148,0,1,"cmdoption-i"],"-h":[85,0,1,"cmdoption-h"],grn_db:[70,2,1,"c.grn_db"],"-t":[117,0,1,"cmdoption-t"],grn_command_version:[102,2,1,"c.grn_command_version"],grn_obj_set_element_info:[35,1,1,"c.grn_obj_set_element_info"],"-p":[117,0,1,"cmdoption-p"],"-s":[54,0,1,"cmdoption-s"],"-r":[54,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[34,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[15,1,1,"c.grn_ctx_at"],"--bind-address":[85,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[102,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[85,0,1,"cmdoption--config-path"],grn_table_size:[99,1,1,"c.grn_table_size"],"--query-log-path":[85,0,1,"cmdoption--query-log-path"],grn_ctx_use:[15,1,1,"c.grn_ctx_use"],grn_obj_defrag:[67,1,1,"c.grn_obj_defrag"],db:[148,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[17,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[135,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[109,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[67,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[18,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[67,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[47,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[99,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[107,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[67,1,1,"c.grn_obj_unlink"],grn_obj_id:[67,1,1,"c.grn_obj_id"],grn_obj_set_value:[67,1,1,"c.grn_obj_set_value"],grn_encoding:[109,2,1,"c.grn_encoding"],grn_proc_create:[44,1,1,"c.grn_proc_create"],GRN_COLUMN_NAME_VALUE:[107,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--ftp":[148,0,1,"cmdoption--ftp"],"--dir":[148,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[67,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[99,2,1,"c.grn_table_group_result"],grn_expr_close:[71,1,1,"c.grn_expr_close"],grn_obj_path:[67,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[16,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[70,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[47,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[67,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[99,1,1,"c.grn_table_lcp_search"],grn_table_create:[99,1,1,"c.grn_table_create"],grn_table_cursor_get_value:[135,1,1,"c.grn_table_cursor_get_value"],"--address":[85,0,1,"cmdoption--address"],"--daemon":[117,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[67,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[99,1,1,"c.grn_table_columns"],"--pid-path":[85,0,1,"cmdoption--pid-path"],"--encoding":[85,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[15,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[16,2,1,"c.grn_cache"],grn_table_delete_by_id:[99,1,1,"c.grn_table_delete_by_id"],grn_ii_buffer:[18,2,1,"c.grn_ii_buffer"],"--host":[148,0,1,"cmdoption--host"],grn_obj_set_finalizer:[44,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[16,1,1,"c.grn_cache_current_set"],grn_obj_lock:[67,1,1,"c.grn_obj_lock"],"--log-path":[85,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[107,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[148,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[67,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[71,1,1,"c.grn_expr_append_const"],grn_obj_clear_lock:[67,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[135,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[71,1,1,"c.grn_expr_alloc"],grn_expr_compile:[71,1,1,"c.grn_expr_compile"],grn_user_data:[104,2,1,"c.grn_user_data"],grn_obj_get_range:[67,1,1,"c.grn_obj_get_range"],grn_table_get:[99,1,1,"c.grn_table_get"],grn_ctx_fin:[15,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[47,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[85,0,1,"cmdoption--max-threads"],grn_ctx_init:[15,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[18,1,1,"c.grn_ii_buffer_close"],grn_column_table:[107,1,1,"c.grn_column_table"],GRN_OBJ_DECR:[67,3,1,"c.GRN_OBJ_DECR"],grn_obj_reinit:[67,1,1,"c.grn_obj_reinit"],grn_obj_rename:[67,1,1,"c.grn_obj_rename"],grn_table_group_flags:[99,2,1,"c.grn_table_group_flags"],grn_obj_check:[67,1,1,"c.grn_obj_check"],grn_table_at:[99,1,1,"c.grn_table_at"],grn_column_name:[107,1,1,"c.grn_column_name"],grn_table_difference:[99,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[117,0,1,"cmdoption--n-lines-per-log-file"],grn_cache_close:[16,1,1,"c.grn_cache_close"],grn_obj_close:[67,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[107,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[99,1,1,"c.grn_table_truncate"],grn_obj_get_value:[67,1,1,"c.grn_obj_get_value"],grn_cache_open:[16,1,1,"c.grn_cache_open"],"--server-id":[85,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[81,1,1,"c.grn_obj_delete_hook"],"-n":[85,0,1,"cmdoption-n"],"--port":[117,0,1,"cmdoption--port"],grn_ii:[18,2,1,"c.grn_ii"],"--log-base-path":[117,0,1,"cmdoption--log-base-path"],grn_obj_is_locked:[67,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[71,1,1,"c.grn_expr_exec"],"--log-level":[85,0,1,"cmdoption--log-level"],grn_table_rename:[99,1,1,"c.grn_table_rename"],GRN_COLUMN_NAME_NSUBRECS:[107,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COMMAND_VERSION_MAX:[102,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_index_cursor_next:[106,1,1,"c.grn_index_cursor_next"],grn_obj_get_element_info:[35,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[93,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[71,1,1,"c.grn_expr_append_const_str"],script:[148,0,1,"cmdoption-arg-script"],grn_expr_get_var_by_offset:[71,1,1,"c.grn_expr_get_var_by_offset"],grn_obj_add_hook:[81,1,1,"c.grn_obj_add_hook"],GRN_COMMAND_VERSION_MIN:[102,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_index_cursor_open:[106,1,1,"c.grn_index_cursor_open"],grn_proc_func:[44,2,1,"c.grn_proc_func"],grn_db_create_optarg:[70,2,1,"c.grn_db_create_optarg"],"--n-threads":[117,0,1,"cmdoption--n-threads"],grn_table_add:[99,1,1,"c.grn_table_add"],grn_obj_unlock:[67,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[16,1,1,"c.grn_cache_set_max_n_entries"],grn_proc_type:[44,2,1,"c.grn_proc_type"],grn_proc_get_info:[44,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[67,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[15,1,1,"c.grn_ctx_close"],grn_ctx:[15,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[107,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[107,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[107,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[135,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[67,1,1,"c.grn_obj_get_values"],grn_column_rename:[107,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[67,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[35,1,1,"c.grn_obj_get_info"],grn_ctx_db:[15,1,1,"c.grn_ctx_db"],"--protocol":[148,0,1,"cmdoption--protocol"],grn_table_cursor:[135,2,1,"c.grn_table_cursor"],grn_ctx_get:[15,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[53,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[70,1,1,"c.grn_db_open"],grn_column_index:[107,1,1,"c.grn_column_index"],grn_table_sort_key:[99,2,1,"c.grn_table_sort_key"],"--help":[85,0,1,"cmdoption--help"],"--groonga":[148,0,1,"cmdoption--groonga"],grn_table_setoperation:[99,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[107,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[67,3,1,"c.GRN_OBJ_SET"],"--document-root":[85,0,1,"cmdoption--document-root"],grn_info_type:[35,2,1,"c.grn_info_type"],grn_obj:[67,2,1,"c.grn_obj"],grn_obj_remove:[67,1,1,"c.grn_obj_remove"],grn_obj_user_data:[104,1,1,"c.grn_obj_user_data"],GRN_OBJ_GET:[67,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[71,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[71,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[18,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[47,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[17,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[18,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[93,1,1,"c.grn_obj_search"],"--send-endpoint":[117,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[99,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[81,2,1,"c.grn_hook_entry"],grn_expr_append_op:[71,1,1,"c.grn_expr_append_op"],grn_geo_point:[47,2,1,"c.grn_geo_point"],grn_table_cursor_table:[135,1,1,"c.grn_table_cursor_table"],grn_table_delete:[99,1,1,"c.grn_table_delete"],dest:[85,0,1,"cmdoption-arg-dest"],grn_ctx_open:[15,1,1,"c.grn_ctx_open"],grn_column_index_update:[107,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[67,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[15,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[85,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[135,1,1,"c.grn_table_cursor_delete"],grn_type_create:[52,1,1,"c.grn_type_create"],grn_obj_path_by_id:[67,1,1,"c.grn_obj_path_by_id"],grn_builtin_type:[52,2,1,"c.grn_builtin_type"],grn_table_get_key:[99,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[67,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[53,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[16,1,1,"c.grn_cache_current_get"],grn_expr_create:[71,1,1,"c.grn_expr_create"],grn_get_default_command_version:[102,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[71,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[109,1,1,"c.grn_encoding_parse"],grn_column_create:[107,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[15,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[99,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[81,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[109,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[102,1,1,"c.grn_set_default_command_version"],grn_encoding_to_string:[109,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[117,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[107,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[99,1,1,"c.grn_table_group"],command:[85,0,1,"cmdoption-arg-command"],grn_obj_name:[67,1,1,"c.grn_obj_name"],grn_db_touch:[70,1,1,"c.grn_db_touch"],grn_table_update:[99,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[70,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[70,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,136],code:2,senna:36,grn_type:52,"\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":132,queri:[95,158,118,101,8,130,24,90],global:17,localstatedir:163,"4\u30ea\u30ea\u30fc\u30b9":136,prefix:[59,158,42,163,45,131],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":132,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":132,value_typ:55,"\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9":85,depend:[163,110],"\u6539\u826f":[23,1,136,128],"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":132,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":132,drilldown_offset:95,send:[90,105],column_cr:62,column_or_valu:84,table_list:92,downtim:45,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[148,33],query_str:101,"\u524d\u63d0\u6761\u4ef6":132,grn_command_vers:102,sourc:[145,115,13,133,89,163,76],string:[12,77,119,131],groonga:[46,124,36,132,161,117,118,143,85,86,8,152,30,75,105,54,148,90],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":132,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":132,offlin:100,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":126,facebook:22,"\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,"\u30b5\u30f3\u30d7\u30eb":[156,148],greater_equ:59,brows:8,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":39,administr:[8,90],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":39,sub_filt:159,gnu:133,list:[0,2,22],vector:[12,72],drilldown_output_column:95,refer:[34,35,37,81,18,93,44,47,72,12,102,15,16,99,17,53,104,106,107,52,109,135,67,70,71],"\u30aa\u30d7\u30b7\u30e7\u30f3":[156,148,85],direct:8,sign:131,aggreg:118,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":127,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":127,index:[56,3,118,100,66,55],xor:131,learner:54,access:[90,45],delet:149,version:45,"new":[65,36,105],grn_info:35,full:[118,3,158],gener:[105,110],learn:[108,117,54,74,42,10],"\u30e6\u30fc\u30b6\u30fc\u306e\u304a\u6c17\u306b\u5165\u308a\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22":160,bodi:120,solari:20,ubuntu:13,path:[58,163,45],valu:[77,83,9,129,11,134,49,101,50,147,55,58,41,62,159,96,103,84,114,117,119,27,149],"\u95a2\u4fc2\u5f0f":59,table_hash_kei:82,search:[95,3,158,72,118,40,108,74,42,66,131],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":132,shift:131,blogroonga:132,memcach:90,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":132,chang:36,"\u9759\u7684\u89e3\u6790":155,"windows\u5411\u3051\u306e\u5834\u5408":132,match_column:[101,95],"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d":38,appli:72,modul:8,phrase:158,"debian\u7cfb\u306e\u5834\u5408":132,api:[73,25],grn_db:70,instal:[154,163,89,121,110],total:95,define_selector:137,select:95,httpd:[117,124,8,86,54],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":143,from:[145,115,13,133,89,163,54,76],zip:89,commun:22,query_expand:[101,95],regist:9,upgrad:45,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":60,column_remov:61,call:131,"\u30c6\u30b9\u30c8\u65b9\u6cd5":155,key_typ:55,scope:159,"\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":43,query_expans:95,"\u30d6\u30ed\u30b0":132,sort:[3,116],relat:[66,95,8,54],benchmark:148,flag:[77,119,151,55],cach:[95,8],"\u4f7f\u3044\u65b9":148,work:[42,108,105,74],tag:55,clearlock:94,"\u7279\u6b8a\u547d\u4ee4":148,control:131,grn_column:107,geo_in_rectangl:29,"geopoint\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22":160,process:[122,130],lock:118,topic:14,sphere:11,liter:131,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":111,groonga_cache_limit:8,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":155,onlin:100,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":132,unsign:131,"\u7406\u7531":111,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":126,multipl:[131,116],secur:90,"\u540d\u524d":[88,5,39,85,7,92,94,97,137,139,21,141,57,51,148,61,69,113,153,156,157,29,30,31,123],pseudo_column:51,divis:131,how:[0,72,146,108,100,90,74,42,75,14,105],"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u307e\u305f\u304c\u3063\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408":66,simpl:95,"\u30b3\u30de\u30f3\u30c9":[30,85],message_pack_install_prefix:163,max:[122,103,84],clone:105,geoloc:40,mac:76,date:12,log_level:5,data:[158,12,8,74,42,131,54,55],table_dat_kei:82,alloc:146,"\u66f8\u5f0f":[88,5,85,7,92,94,97,137,139,21,141,57,148,61,69,113,153,156,157,29,30,31,123],geo_dist:11,read:[42,118],grn_cach:16,explicit:158,issu:[0,90],callback:59,combin:158,normalizernfkc51:164,freebsd:122,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":132,cpu:45,origin:131,adjust:95,"\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":111,help:163,rand:57,hypertext:90,"3\u30ea\u30ea\u30fc\u30b9":136,gqtp:[124,151,90,80],paramet:[62,58,77,103,159,117,83,119,95,49,101,50,11,96,84,129,122,114,54,149,55],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":132,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":132,group:[158,131],thank:[6,23,98,112,65],grn_table_select:59,fix:[6,23,36,112,65],"\u5b9f\u9a13\u7684":23,platform:163,window:89,requir:[95,11,117,83,119,101,50,77,96,114],"users\u30c6\u30fc\u30d6\u30eb":160,persist:82,tsv:[120,154],mail:[0,22],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":155,"\u4f8b\u3048\u3070redmin":111,grn_hook:81,html_untag:96,"return":[77,83,2,9,129,11,134,49,101,50,147,55,58,41,62,159,96,103,84,114,117,119,27,149],greater:[59,158,131],worker_process:8,sid:133,rectangl:11,"8\u30ea\u30ea\u30fc\u30b9":136,lzo:163,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":155,"\u8fd4\u5024":[57,95,88,141,97,5,61,153,157,69,29,7,137,123,139,92,21,30,31,113,94],now:157,introduct:[10,110],term:131,name:[134,50,161,55],edit:105,revers:8,grn_ctx:15,authent:45,kern:122,token:[118,77,32],mode:59,ruby_load:58,updat:[118,42,105,132,110],"benchmark\u5b9f\u884c\u7d50\u679c":148,grn_encod:109,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":155,domain:116,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":64,weight:72,"0\u30ea\u30ea\u30fc\u30b9":[23,136,128],normalizerauto:164,maxfileperproc:122,proxy_cach:8,todo:[101,27],"http\u30b5\u30fc\u30d0\u30fc":30,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":111,develop:144,your:105,db_api:59,query_flag:95,"release\u306e\u5b9f\u884c":132,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":21,"\u30af\u30a8\u30ea\u62e1\u5f35":79,correct:[10,108],red:132,nofil:122,"1\u30ea\u30ea\u30fc\u30b9":[23,136],shut:8,proxi:8,advanc:95,free:118,grn_user_data:104,substitution_t:101,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":132,releas:[6,23,98,112,65],database_path:[117,54],grn_match_escal:53,launch:117,success:120,filter:95,synopsti:161,assign:[158,131],oper:[3,131],softwar:110,rang:[3,55],groonga_log_path:8,suffix:[59,158,131],"7\u30ea\u30ea\u30fc\u30b9":[1,136],"\u8aac\u660e":[88,5,39,85,7,92,94,97,137,139,21,141,57,51,148,61,69,113,153,156,157,29,30,31,123],arrai:131,number:[122,95,163],edit_dist:97,groonga_database_auto_cr:8,modulo:131,open:122,size:151,script:[129,131],"\u4fee\u6b63":[23,1,136,128],messag:163,expand:24,termin:90,store:[118,55],option:[11,117,134,119,161,101,77,54],travi:68,tool:[163,8,90],specifi:[11,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":64,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":59,than:[158,131],not_equ:59,remot:90,"grntest\u306e\u6e96\u5099":132,grn_table_cursor:135,exampl:[35,81,18,93,44,47,134,102,15,16,99,52,53,104,106,107,146,109,135,151,67,68,70,161,71],"\u6295\u7a3f\u6642\u9593\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,column_list:83,grn_expr:[59,71,140],latitud:[12,118],ruby_ev:129,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22":160,tabl:[56,95,3,82,83,50,160,66,54,55],"null":131,packag:[163,124,13],bitwis:131,drilldown_limit:95,built:164,min:84,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":59,also:[77,82,83,2,129,95,134,49,101,140,147,55,58,41,159,149,151,154,119,27,161,120,164,103],point2:11,client:90,build:[145,115,13,133,89,163,76],"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":155,mroonga:118,normal:[72,77,119,164,55],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[136,128],object:131,oracl:20,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":111,"\u7d44\u8fbc\u578b":39,default_token:55,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":132,groonga_log_level:8,geoindex:160,table_pat_kei:82,request:[117,8,105],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":59,"\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210":160,latest:132,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":127,"\u539f\u56e0":60,lexicon:[3,55],cache_limit:103,text:[118,3,158],grn_index_cursor:106,syntax:[77,83,9,129,95,11,131,49,101,50,147,55,58,41,62,159,96,103,84,114,158,119,27,149],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":132,threshold:163,"comments\u30c6\u30fc\u30d6\u30eb":160,xml:120,"files\u306e\u5b9f\u884c":132,explicitli:11,locat:[118,11,154],ellipsoid:11,grnslap:156,configur:[17,8,110,163,45,68],solut:146,max_bord:84,"benchmark\u547d\u4ee4":148,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":60,contribut:[75,14],variou:12,get:[117,3],express:158,stop:124,cannot:146,wheezi:133,report:0,geo:[118,131],restart:124,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":64,enabl:110,query_typ:151,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":111,patch:105,"default":[163,64],"\u95a2\u9023\u9805\u76ee":[5,21,7,137,94],contain:59,table_cr:55,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":155,summari:[34,35,2,81,82,83,77,8,9,129,96,93,44,16,95,47,72,99,102,15,49,101,50,17,18,53,54,104,55,58,41,106,107,52,109,147,62,135,11,103,84,114,67,154,70,159,117,119,27,120,149,122,164],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":132,set:[117,8],max_map_count:122,dump:139,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210":160,see:[77,82,83,2,129,95,134,49,101,140,147,55,58,41,159,149,151,154,119,27,161,120,164,103],result:[3,116],arg:59,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":155,statu:[69,151,161],"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc":63,databas:[3,45],column_renam:50,less_equ:59,score:95,between:84,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":132,numer:12,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":132,"\u5bfe\u7b56\u65b9\u6cd52":60,"\u5bfe\u7b56\u65b9\u6cd51":60,"com\u3078\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332":132,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":148,homebrew:76,addit:[164,131],instant:118,plugin:[34,163],equal:[59,158,131],facet:95,tutori:[78,138],logic:[158,131],improv:[36,112,6,65,23,98],"po\u306e\u5b9f\u884c":132,load:[49,3,8,72],among:66,defrag:31,point:131,overview:[12,118],period:36,header:[120,151],shutdown:123,"\u6e96\u5099":79,grn_proc:44,quit:141,"\u5236\u9650\u4e8b\u9805":148,invert:118,freecod:132,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":155,json:[49,120,134],"geopoint\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,basic:[3,131],"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":155,log_put:7,"2\u30ea\u30ea\u30fc\u30b9":136,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":132,"\u30ab\u30e9\u30e0\u3054\u3068\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408":66,i18n:105,"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9":160,"case":120,drildown:116,multi:45,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":132,zlib:163,cast:48,"\u691c\u7d22":[160,127,79],error:[120,146],pack:163,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":155,"\u6982\u8981":64,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":132,"\u5f15\u6570":[156,57,88,97,5,85,61,153,69,29,7,137,123,139,141,21,92,31,148,113,94],filter_str:159,archiv:13,cento:115,synopsi:[117,134,8,54],"version\u30d1\u30e9\u30e1\u30fc\u30bf":64,fedora:145,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":132,"\u691c\u7d22\u306e\u6319\u52d5":127,perform:[8,45],suggest:[162,117,134,161,54,74,10],make:[163,132],"\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22":160,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":155,binari:90,html:[96,105,110],"geopoint\u3068\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,output_column:95,document:[46,14,110],messagepack:120,complet:[42,10],http:[124,165,4,45,90],"bigram\u30c6\u30fc\u30d6\u30eb":160,"json\u5f62\u5f0f":[88,5,61,69,113,7,137,21,92,31,94],nest:66,temporari:82,"\u30bf\u30b0\u691c\u7d22":38,engin:118,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":143,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":132,tune:122,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22":66,desctipion:161,sortbi:95,overcommit_memori:122,person:13,without:45,command:[64,3,4,117,85,26,90,45],gzip:45,left:131,construct:100,protocol:[90,151],just:72,less:[59,158,131],"\u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831":87,min_bord:84,"5\u30ea\u30ea\u30fc\u30b9":136,languag:105,approximate_typ:11,point1:11,mmap:146,"\u30bd\u30fc\u30c8":63,"twitter\u7de8":111,add:105,macport:76,geo_in_circl:153,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":132,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":132,match:[163,158,131],table_nam:114,format:[120,3,134,49,130,154],"hashtags\u30c6\u30fc\u30d6\u30eb":160,nginx:8,"\u95be\u5024\u3092\u3042\u3052\u308b":60,characterist:[82,118],daemon:90,specif:[8,19],"\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc":63,"match_columns\u30d1\u30e9\u30e1\u30fc\u30bf":66,manual:37,integ:131,server:[118,124,90,28],"boolean":[12,131],cascad:149,output:[120,95,3,4,105],page:95,normalizer_list:41,old:65,twitter:22,linux:[133,122],log_reopen:21,sampl:[158,131],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":155,librari:[118,163],confirm:105,avoid:146,per:122,tracker:0,exit:161,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f":66,condit:[95,158],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":150,core:45,run:[90,110],"\u5168\u6587\u691c\u7d22":63,compress:45,view:3,usag:[77,4,83,8,9,129,95,11,72,49,101,50,147,54,55,58,41,62,159,96,103,84,114,154,117,119,27,149,122],tokenizer_list:147,"\u30d3\u30eb\u30c9\u6642\u306etip":132,"\u7591\u4f3c\u30ab\u30e9\u30e0":51,repositori:[91,105],offset:95,match_escalation_threshold:95,post:[8,45],subtract:131,comparison:[131,45],column:[56,11,3,158,116,72,118,125,66],memori:[146,122],snippet_html:27,truncat:114,"x\u306e\u304a\u77e5\u3089\u305b":[1,136,128],"scorer\u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8":63,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":155,ppa:13,"\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":126,grn_ii:18,"\u4f8b":[57,88,97,5,85,61,153,157,69,29,7,137,123,139,21,141,31,60,113,94],"float":131,encod:163,dataset:161,down:8,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":127,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":59,storag:118,groonga_query_log_path:8,"\u30e6\u30fc\u30b6\u30fcid\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,log:[130,163,54,45],transfer:90,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":148,support:40,"\u5909\u66f4":136,submit:0,custom:45,avail:8,start:124,arithmet:131,"\u306e\u66f4\u65b0":132,sharabl:118,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":64,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":132,"function":[142,131],"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":132,"\u691c\u7d22\u4f8b4":59,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":59,"\u691c\u7d22\u4f8b2":59,"\u691c\u7d22\u4f8b1":59,translat:105,drilldown_sortbi:95,line:[117,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":132,pull:105,new_nam:50,type:12,record:[82,95,3],limit:[56,95,116,72,82,154],similar:[59,131,108],grn_tabl:99,"\u611f\u8b1d":[23,1,136,128],featur:40,creat:[72,3,161,55],flow:105,grn_obj:67,groonga_databas:8,"homebrew\u306e\u66f4\u65b0":132,jessi:133,right:131,file:[161,122,154,54,45,105],check:113,"\u5bfe\u5fdc":111,table_remov:88,extract:[131,74],grn_search:93,other:163,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22":66,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":39,"\u30c7\u30fc\u30bf\u578b":39,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":160,grn_geo:47,"hat\u7cfb\u306e\u5834\u5408":132,scorer:95,cooccurr:[42,108,74],drilldown:[95,116],debian:133,longitud:[12,118],groonga_base_path:8,"\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a":63,escal:163,"\u691c\u7d22\u4f8b3":59,descript:134,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1":38,munin:163,queryexpandertsv:154,time:[12,131],escap:158,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":132,table_no_kei:82}})
1
+ Search.setIndex({envversion:42,terms:{localstatedir:[],four:[122,83,3,132],"\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":134,"\u811a\u6ce8":[29,39,155,62],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":150,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":125,your_db:23,column_cr:[],"\u65e5\u672c\u4eba":43,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":134,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":45,digit:[132,109,56],thread_tabl:150,command_vers:[65,3,4,145,27,41,70,97,8,30,91],"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":137,"takashi\u3055\u3093\u304c\u5831\u544a":23,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[],"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":138,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":96,"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":86,grn_plugin_win32_base_dir:34,drilldown_output_column:[],asami:113,"\u697d\u3057\u3044billiard":[61,129],accuml:113,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":134,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":100,grn_oper:[100,94,72,48,108],"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":63,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":134,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":150,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":31,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":45,"\u79cb\u8449\u539f\u99c5\u304b\u30895000m\u4ee5\u5185\u306b\u3042\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":137,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":86,grn_table_cursor_next:[137,138],here:[34,2,127,83,84,40,41,132,78,90,8,9,131,43,165,115,46,16,96,11,133,73,136,13,50,102,51,111,149,55,56,59,42,109,145,161,64,97,153,85,67,156,69,166,160,117,118,32,120,27,163,151,75,124,106,72,104],onga:27,china:[11,117],grn_enc_utf8:[137,110],ful:78,"\u4e0e\u3048":61,latitude_in_msec:133,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":121,"\u7a7a\u767d\u3084":86,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":86,match_column:[],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":150,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d":[],"_score\u3092\u901a\u3058\u3066\u30bd\u30fc\u30c8\u3067\u3082\u7528\u3044\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":157,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":23,substr:[160,133],unix:165,txt:[74,106],unit:[11,133,26,27,151,153],music:[38,132],until:[34,101,50,17,124,106],"\u30d6\u30ed\u30b0":[],grn_op_push:60,relax:124,relat:[],error_messag:122,notic:[5,7,8],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":134,thread_title_column:150,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":134,"byte\u9577":[100,68,108],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":141,"akio\u3055\u3093\u304c\u5831\u544a":138,"\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":68,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":112,grn_obj_reinit:68,cirit:8,no_such_device_or_address:153,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":150,want:[126,78,3,131,8,92,43,165,147,96,11,74,13,50,59,109,148,161,153,67,156,116,160,117,118,120,135,75,77],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":30,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":100,"\u30b3\u30de\u30f3\u30c9\u306f":30,type1:136,type2:136,"groonga_github_com_path\u306bgroonga":134,grn_filename_too_long:2,turn:8,grn_read_only_file_system:2,travel:162,grn_geo_point:48,grn_input_output_error:2,yum:[6,147,116,134,111],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":68,message_pack_install_prefix:[],groonga_clone_dir:134,moritar:67,wrong:[109,113,6,66,23,10],"\u79cb\u8449\u539f\u99c5\u304b\u3089\u306e\u8ddd\u96e2\u3092\u8868\u793a\u3055\u305b\u3066\u307f\u307e\u3057\u3087\u3046":[],"\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":71,"\u63d0\u6848\u3092\u884c\u3046":138,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":130,wing:[6,113],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":150,"\u6771\u4eac\u99c5\u306f\u7def\u5ea6\u304c35\u5ea640\u520652":[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":110,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u3057\u307e\u3059":162,vari:[34,57],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":96,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[137,100],"\u6e96\u5099\u3057\u305f\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f7f\u3063\u3066\u307f\u307e\u3057\u3087\u3046":80,hidden:119,fin:45,"\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":60,rectangl:[],"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":134,dcmake_install_prefix:90,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":86,timeout:[68,17,113],debug:[5,132,7,8,78],"obj\u3092lock\u3057\u307e\u3059":68,last_modifi:162,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":61,"akio\u3055\u3093\u304c\u63d0\u6848":138,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":150,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":138,grn_table_s:[100,60],grooon:118,"\u30e6\u30fc\u30b6\u30fc\u540d":162,moritapo:38,gregex:113,lexicon_t:150,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":150,input_typ:50,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":134,"\u79d2":[162,68],"\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":134,ringtail:113,"\u307e\u308d\u3086\u304d":128,libedit:[6,23,165,147],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":39,atv:[64,3,117],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":89,resource_busi:153,"\u3053\u308c\u307e\u3067\u5b66\u3093\u3060groonga\u306e\u6a5f\u80fd\u3092\u7528\u3044\u3066":162,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":65,mingw:134,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":137,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":134,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":86,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":134,"\u6307\u5b9a\u3055\u308c\u305f\u4f4d\u7f6e\u304b\u30895000m\u4ee5\u5185\u306b\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3057\u3066\u3044\u307e\u3059":162,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":100,master:[106,8,69],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":96,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":137,listen:[6,8,46,91],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,155],kinjir:38,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":134,"\u50241":[30,86],showen:2,second:[96,11,3,160,12,84,122,64,132,67,46,133],project:[0,126,133,134,119,92,76,69],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":100,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":150,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":86,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":150,"db_api\u306f":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":52,"\u3050\u308b\u3093\u304c\u6b21\u90ce":38,incompat:[6,113],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":134,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":61,"\u30bf\u30a4\u30c8\u30eb\u3068\u672c\u6587\u3092\u5168\u6587\u691c\u7d22\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"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":134,simplifi:113,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"10041\u756a":86,object:[],microsecond:[12,132],letter:166,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":150,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":53,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":150,incompatible_file_format:153,index_blog:67,"\u3053\u306e\u3088\u3046\u306b":[],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":134,expornenti:133,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":129,"\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:114,daemoinz:6,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,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":86,restaur:119,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":65,"2byte":[2,153],grn_obj_set_element_info:35,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\u306f\u306a\u304f":1,calro:85,source_file_nam:122,createrepo:134,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":39,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],maverick:23,"\u6587\u5b57\u5217":162,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":61,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":39,"\u7bc4\u56f2\u3092\u5e83\u304f\u6307\u5b9a\u3057\u305f\u305f\u3081":162,unexpectedli:113,etim:158,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":39,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210":[],"description\u306b":129,result:[],respons:[16,2,118,119,113,6,153,23,66,46],fail:[34,16,3,160,113,6,17,9,23,66,56],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":68,best:119,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":30,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":60,wikipedia:39,figur:40,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":65,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":150,extend:67,shidara:23,extens:4,"\u304c1\u3064":162,pat_kei:83,accident:113,grn_plugin_realloc:34,column_scalar:[80,84,41,96,11,133,101,102,51,141,38,61,145,63,161,97,85,67,160,117,162,27,151,124],"\u30e6\u30fc\u30b6\u30fc\u306e\u53cb\u4eba\u4e00\u89a7\u3092\u914d\u5217\u3067\u683c\u7d0d\u3059\u308bfriends\u30ab\u30e9\u30e0\u3068\u305d\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306eindex_friends\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":[],logic:[],countri:[151,91,117],login:124,"316\u79d2":[],"808\u4ee5\u4e0a9":39,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":129,"2nd":96,"\u95a2\u6570":157,grn_table_cursor_get_valu:137,assum:[45,15],summar:117,grn_search_optarg:94,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":128,"\u306e\u307b\u304b\u306b":39,"\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":65,"takashi\u3055\u3093":23,salamand:[66,13,113],res_column:150,"\u30ab\u30f3\u30de":141,worker:[8,113],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,dave:85,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":61,grn_table_delet:100,"\u6bb5\u843d\u60c5\u5831":108,"\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":60,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,sen_index_norm:36,"\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":155,"\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":65,cache_hit_r:[91,70,3,4,8],arg_list_too_long:153,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":70,grn_resource_busi:2,simil:133,split:[23,133,83],"\u6570\u304c\u5927\u304d\u3044\u307b\u3069\u591a\u304f\u306e\u30ed\u30b0\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":86,"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u4f7f\u3044\u307e\u3059":162,documents_content_index:[102,27],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":150,refin:[119,113],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":70,tune:[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":134,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[61,129],"time\u578b\u3067\u3059":162,"\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":60,out_gqtp:150,users_memo:102,gzip:[],unchang:34,"\u4e0a\u8a18\u306e\u5b9f\u884c\u4f8b\u3067\u306f":[],sleepi:101,hai:60,easi:[119,156,91,46,142],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":150,had:106,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],hat:165,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":60,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":134,koji:6,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":61,command_nam:91,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":150,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":134,measur:[23,119],specif:[],"filter\u306e\u4e21\u65b9\u3092\u4f7f\u7528\u3057\u305f\u5834\u5408":162,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\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":63,filename_too_long:153,"\u30d4\u30ea\u30aa\u30c9":63,sebastian:66,underli:119,grn_obj_table_hash_kei:[137,100],right:[],"\u5358\u8a9e":162,groogna:[6,99,96,90,160],kouhei:113,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":52,bottom:48,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":107,"146566000x":11,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":134,ichii:23,condit:[],yoku:[66,113],"select\u30b3\u30de\u30f3\u30c9\u306escorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306f":[],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":150,grn_builtin_typ:[53,68],grn_cursor_descend:137,grn_log_path:6,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":108,done:[16,96,8,17],"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":121,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":39,nginxhttpstubstatusmodul:66,"\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":54,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":96,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":60,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":39,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":60,suffici:34,support:[],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":58,offgao:162,avail:[],width:[23,166],joseph:128,call:[],inv_res_column:150,"\u3086\u304d\u3072\u308d":128,"\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:107,"135960000x":11,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":100,"\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":65,replied_us:162,"\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":112,later:[97,3,145,113,41,6,161,66,23,166],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":100,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":30,exist:[50,126,3,133,12,85,113,6,64,91,111,67,55,8],"object\u578b\u306fv1":39,column_name1:50,column_name2:50,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":93,grn_search:[],role:[102,119],notif:[132,113],intend:[6,161,67,160],moero:38,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":134,intens:8,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":138,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":108,grn_ii_buffer_open:18,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":94,exce:[6,113],time:[],push:106,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":93,chain:161,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[159,29,98,155,58],grn_obj_get_hook:82,netbsd:113,"\u3068\u3044\u3046\u4e71\u6570\u3092\u8fd4\u3059\u95a2\u6570\u3092\u7528\u3044\u3066":[],millisecond:[12,118,64,17,133],decid:156,hold:12,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":138,decim:[12,133],"\u305d\u306e\u4e3b\u30ad\u30fc\u304c\u7f6e\u63db\u524d\u306e\u6587\u5b57\u5217\u3068\u306a\u308a":80,downtim:[],"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u6761\u4ef6\u7d5e\u8fbc\u3084":[],"257662232kbyte":150,"\u3069\u3061\u3089\u306e\u5f62\u5f0f\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5b58\u5728\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u3082":[],score_adjust_express:96,lru:104,exact:[70,83,96,60,56],"\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":54,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":157,grn_plugin_mutex_lock:34,prevent:113,"\u8ad6\u7406\u548c":60,grn_table_group_result:100,index_point:38,sign:[],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":158,"\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":65,grn_broken_pip:2,takashi:151,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":68,current:[50,3,71,40,15,16,51,8,23,104,106,56],"\u3053\u308c\u306b\u3088\u308a":134,boost:43,"encoding\u306e\u5024\u304c":23,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"0\u4ee5\u4e0a4":39,address:[6,23,86,91,118],"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":60,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],throughput:[23,46],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],commonli:119,ipa:147,pentium:150,prefer:118,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[35,71,53,86,100,68,150,108],"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":23,instal:[],"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":100,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":86,value2:[50,133],value1:[50,8,133],"\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":[],peopl:119,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10041\u756a":[],"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":150,enhanc:36,visual:[122,119,113,6,90,66,23],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":39,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":137,"929\u79d2\u3067\u3059":[],"windows\u7cfb":134,genki:113,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":39,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":100,recycl:66,"takahiro\u3055\u3093":138,index_titl:67,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":137,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":65,chroot:134,"\u30bd\u30fc\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":150,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":157,"\u3064\u3065\u3044\u3066":162,"grnslap\u306f":158,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":150,date:[],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":86,data:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":108,stdin:99,cannot:[],int64:[66,39,113],grn_plugin_charlen:34,i686:150,grn_ja_skip_same_value_put:113,"\u30e6\u30fc\u30b6\u540d":150,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":107,implemnt:167,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":112,instantli:[119,27],grn_obj_init:68,"\u30e6\u30fc\u30b6\u306e\u6307\u5b9a\u3057\u305f\u691c\u7d22\u6587\u5b57\u5217\u3092\u7f6e\u63db\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb":80,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":21,"\u30de\u30a4\u30af\u30ed\u79d2\u6570\u306e\u5024\u304c\u683c\u7d0d\u3055\u308c\u307e\u3059":162,"\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":134,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":134,revers:[],separ:[50,96,78,3,4,117,136,84,120,6,153,133,156,160],"_dataset":[55,163],operation_not_permit:153,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":68,"\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":134,compil:[23,165,113],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":100,grn_obj_path:[68,113],gtar:20,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":134,blt:141,internet:[119,142],formula:[148,11],"\u6700\u5f8c\u306e":150,million:57,"\u6700\u5f8c\u306b":61,mime:46,"\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":54,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":100,"byte":[34,108,53,27,15,6,100,153,113,23,68,72,45],dest_key_s:100,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":35,grn_op_adjust:[94,60],brasil:11,"259\u79d2":[],"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":65,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":82,oper:[],grn_logger_reopen:6,onc:[96,117,6,23,67,166],beijin:11,"\u6587\u5b57\u5217\u578b\u306e\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3067\u3082\u53ef\u80fd\u3067\u3042\u308a":80,reopen:23,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":61,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":23,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":61,open:[],grn_obj_get_element_info:35,convens:6,convent:6,"\u81ea\u5df1\u7d39\u4ecb\u6587":162,return_cod:[122,132],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":61,citi:[11,40],groonga1:65,conveni:[119,23,165,167,43],"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":134,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":137,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":68,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":150,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u306e\u5024\u3092\u76f4\u63a5\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3067\u3059":162,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":30,set_port:150,grn_obj_get_info:35,fumiyasu:23,"\u307e\u305fgroonga":150,column_list:[],"\u90fd":[61,129],sai:[3,133],san:11,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":159,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,argument:[34,11,3,133,161,145,27,41,15,6,102,97,91,113,66,23,67],sae:[136,109],"\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9":162,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,drilldown_limit:[],uuuuuu:133,note:[34,3,6,8,131,46,147,96,97,133,12,56,59,148,113,151,23,117,118,119,124,91],"groonga\u306f\u30ab\u30e9\u30e0\u5024\u3068\u3057\u3066\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3078\u306e\u53c2\u7167\u306e\u914d\u5217\u3092\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u308b\u3053\u3068\u3092\u7d39\u4ecb\u3044\u305f\u3057\u307e\u3057\u305f":[],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":134,take:[126,42,3,84,51,149,115],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":52,"\u30cb\u30db\u30f3\u30b8\u30f3":43,noth:[43,165,8,10],grn1:67,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":31,grn3:67,grn2:67,buffer:[18,113,114,67,68,72],"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":7,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":93,homepag:150,"127972422x503117107":162,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":96,"\u30b5\u30fc\u30d0":86,max_valu:124,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":62,do_gqpt:150,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":155,"\u4ef6\u6570":96,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":150,grn_lzo_error:2,"obj\u306f":68,xml:[],slow:[83,8],"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":58,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":15,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":30,normalizermysqlunicodeciexceptkanacikanawithvoicedsoundmark:166,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":30,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":150,concaten:67,grn_obj_append:68,"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":60,grn_ii_buffer_clos:18,requir:[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":96,aptitud:157,privileg:[91,113],where:[12,2,165],"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":137,"\u7a7a\u767d":86,"\u305d\u306e\u52d5\u753b\u306e\u7279\u5fb4\u3092\u8868\u3059":[],"namebuf\u306e\u30b5\u30a4\u30ba":[68,108],ohzeki:66,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u306b\u4fdd\u5b58\u3055\u308c\u305f\u30c7\u30fc\u30bf\u306b\u66f4\u65b0\u304c\u3042\u3063\u305f\u3068\u304d":[],"\u30b3\u30ed\u30f3":63,mani:[106,96,3,117,73,12,83,27,163,113,126,8,124,119,23,76,165,167,10,46,56],"\u30ed\u30b0\u51fa\u529b":7,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":114,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":138,"\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":65,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":65,"\u3067\u6271\u3063\u305f\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3082\u884c\u3044\u307e\u3059":162,"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":35,"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":82,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":45,"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":134,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":35,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":86,score_adjust_expression2:96,score_adjust_expression1:96,msg_id:134,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":63,hashtag:162,former:[166,156],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":86,"\u8fd4\u4fe1\u5143\u306e\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9":162,ctrl:[3,91],ivh:[147,116],anim:38,set_host:150,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":100,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,ascii:[160,133],hash_tag:162,binari:[],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306e\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":162,grn_proc_creat:45,"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":134,utf8:[110,165,86],cmake:[6,165,90,113],grn_operation_not_support:2,"768\u4ee5\u4e0a32":39,"\u5358\u72ec\u306e\u5024":108,wiedenroth:66,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":150,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":158,grn_hook_select:82,"\u6771\u4eac\u90fd":[61,129],commands_column_renam:51,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":150,"\u30cb\u30db\u30f3":43,"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":134,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":100,haystack:60,ruby1:134,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":150,"4096byte":[57,83],around:[40,27],"10043\u756a":86,"\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":129,"\u795e\u5948\u5ddd\u770c":162,res1:100,bookmark_index:73,world:[39,64,113],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":65,intel:150,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":68,grn_no_locks_avail:2,integ:[],"\u5168\u6587\u691c\u7d22\u306e\u30b9\u30b3\u30a2\u304c\u4ee3\u5165\u3055\u308c\u3066\u3044\u308b\u4eee\u60f3\u7684\u306a\u30ab\u30e9\u30e0\u304c\u4ed8\u4e0e\u3055\u308c\u308b\u3053\u3068\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u30bd\u30fc\u30c8\u306e\u9805\u76ee\u3067\u8aac\u660e\u3057\u307e\u3057\u305f":[],"\uff12\u70b9\u9593\u306e\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],manag:[165,83,27,15,119,91,111,69,156,46,8],yyyi:[132,133],"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":68,"\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":71,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":114,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":71,"\u3092\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u30e6\u30fc\u30b6\u30fc\u691c\u7d22\u3057\u305f\u7d50\u679c":162,grn_obj_is_builtin:[23,68],"\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":134,edict2grn:66,definit:[96,11,160,161,145,27,41,6,102,97,85,151,133],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":45,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":134,exit:[],ddl:150,refer:[],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067\u5b9f\u884c\u3057":[],"\u5168\u6587\u691c\u7d22":[],power:96,"\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":61,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":39,"\u30d3\u30eb\u30c9\u6642\u306etip":[],grn_get_default_command_vers:103,starttim:[91,70,3,4,8],"2\u4ef6\u3068\u3082":162,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":86,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":129,normalzer_list:42,neighbor:119,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":134,"flags\u306b\u306f":100,match_escalation_threshold:[],effici:[119,67,73],"\u306b\u3042\u308b":68,agaist:6,hex:[38,133],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":65,"\u5f8c\u8005\u306f\u4e16\u754c\u6e2c\u5730\u7cfb":[],grn_proc_func:[34,45,15],"\u6771\u4eac\u90fd\u6e0b\u8c37\u533a":162,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,bundl:[6,66,106,113,102],"\u305d\u308c\u305e\u308c1\u30ab\u30e9\u30e0\u3054\u3068\u306b1\u3064\u305a\u3064\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":[],htpasswd:[8,46],no_kei:83,"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":86,categor:[96,78],pull:[],"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":63,"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":60,grn_ctx_get:[108,15],preconfigur:[135,116,13,126,147],reqular:118,gone:38,type_of_the_column:161,uid:134,creat:[],"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":86,certain:64,"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":138,grn_id_nil:[137,100],googl:[96,10,160],grn_select:96,grn_ctx_open:[23,15],shimomura:6,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":134,"\u4e00\u65b9":61,item_dataset:[163,75],"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":157,vocabulari:3,geodet:[39,64],"debug\u3092\u8ffd\u52a0":138,nagano:66,queryexpandertsv:[],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":134,cpu:[],senna:[],"\u6539\u826f":[],illustr:117,pluggabl:119,"\u521d\u671f\u5316\u3059\u308b":15,scr:150,number:[],"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":100,grn_obj_set_info:35,too_small_offset:153,tail:[153,134],kosuk:113,webclip:97,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],introduc:[66,76,8],candid:[118,43,136],too_many_open_fil:153,"4\u30ea\u30ea\u30fc\u30b9":[],"0\u30ea\u30ea\u30fc\u30b9":[],"yum\u306e\u5834\u5408":134,adjust:[],small:[83,160,113,133,56],"flags\u306b":[100,108],"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":107,past:6,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":60,pass:[11,3,160,134,102,8,23,99,91],grn_no_such_device_or_address:2,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":134,section:[34,78,18,84,90,8,131,43,165,115,147,96,11,73,164,13,50,51,104,120,56,146,59,108,109,20,113,153,67,156,69,116,160,117,144,25,26,135,123,75,124,76,106,77],"log_put\u306f":7,"debian\u7cfb":134,"files\u306e\u5b9f\u884c":[],delet:[],"\u4e2d\u91ce\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4\u306a\u3046\u306a\u3046":162,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":134,coremodul:8,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":65,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":129,hash:[133,83,113,6,23,56],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":134,table_renam:99,jennif:128,sender:[118,55],"\u6295\u7a3f\u65e5\u6642":162,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":15,social:38,action:113,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":82,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":138,localestatedir:[],"\u6b21\u306bgroonga\u306etest":134,no_such_process:153,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":129,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":71,grn_plugin_mutex_unlock:34,"\u6295\u7a3f\u3057\u305f\u5185\u5bb9\u306b\u5bfe\u3059\u308b\u30ec\u30d3\u30e5\u30fc\u304c\u904b\u55b6\u5074\u3067\u5b9f\u65bd\u3055\u308c\u308b\u306e\u3067":134,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":150,"comments\u30c6\u30fc\u30d6\u30eb\u306elast_modified\u30ab\u30e9\u30e0\u306f":162,mecab:[147,116,36,134,119,13,113,6,135,66,23,165,77],mori:141,morn:101,mecab_new2:6,"lucid\u304b\u3089":138,more:[34,126,3,128,83,84,6,8,127,165,10,46,96,133,73,12,136,15,101,102,55,56,57,109,113,161,153,66,156,160,119,27,124],yokoyama:[66,113],"\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":60,uint8:[39,138,84,113],"\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":134,function_nam:122,nomal:[6,96,8],cach:[],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":60,uint64:[39,113],"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":63,endpoint:[118,55],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":65,learn:[],"\u3092\u30af\u30ea\u30c3\u30af\u3057":134,"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":30,prompt:[6,90,3,4],scan:[157,145,160,41,133],accept:[11,3,118,119,85,6,64,91,66,23,67,46],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":23,groonga_cache_limit:[],exmapl:[160,133],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":150,"search\u3092\u884c\u3044":[137,100],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[65,157],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":150,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":128,referenc:[6,151,113,117,56],grn_obj_get_rang:68,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":155,conditin:160,"\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":15,"\u521d\u671f\u5316\u6e08\u307f\u306e":71,m64:20,tokenbigram:[78,3,80,83,86,41,93,96,133,101,102,149,56,109,61,145,161,67,160,162,27,124,32],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:145,grn_obj_key_int:53,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":114,sysctl:[148,124,77],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":134,i386:[23,116,134],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[70,86],"\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":139,grn_query_expander_tsv_synonyms_fil:156,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":100,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":138,sauci:[66,13,113],grn_cursor_rk:137,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":86,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":108,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":112,"drilldown_limit\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":96,"\u52d5\u753b\u5171\u6709\u30b5\u30a4\u30c8\u306e\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3092\u4f5c\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u307e\u3059":[],inada:113,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":134,"\u65e5":162,authent:[],"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":137,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":134,found:[96,48,113,6,100,90,165,10],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":82,with_posit:[101,96,3,80,161,61,162,84,27,41,63,102,124,67,133,145,160],procedur:[6,113],realli:[96,160,133],ftp:150,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":134,ftb:36,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":86,"\u305d\u308c\u305e\u308c\u306e\u30ab\u30e9\u30e0\u306b1\u3064\u305a\u3064\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u65b9\u5f0f\u3067\u3059":[],grn_column_index_upd:108,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":15,grn_user_data:[],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":39,grn_table_hash_kei:[100,48],"\u3053\u3053\u3067":[],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":68,clumn:124,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":150,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":62,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":129,"\u5b9f\u969b\u306b\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3057\u3087\u3046":162,"\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":65,major:123,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":128,n_result:100,grn_ctx_use_ql:66,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[137,100,68,108],"\u3042\u308b\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u3064\u3044\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":138,file_corrupt:153,repoforg:[6,116],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":108,relationship:[],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":134,dpkg:134,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":134,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":138,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":30,"\u307e\u305f\u540c\u6642\u306b":150,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":82,reus:83,grn_ctx_set_match_escalation_threshold:54,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":130,comput:[34,133,109,6,75,43,124],toybox:12,grn_hook_entri:82,"\u95a2\u6570\u306e\u8ffd\u52a0":1,packag:[],gted:106,"\u8fd4\u4fe1\u5148\u306e\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7":162,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u53cd\u6620\u3055\u308c\u308b\u307e\u3067\u3057\u3070\u3089\u304f\u6642\u9593\u304c\u304b\u304b\u308a\u307e\u3059":134,documenataion:122,self:150,also:[],"keybuf\u306e\u30b5\u30a4\u30ba":100,mroonga:[],"\u8a18\u53f7":[61,86],"sortby\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b\u6607\u964d\u9806\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":96,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":68,lexcon:3,"\u30bf\u30b0\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b":[],"\u81ea\u5df1\u7d39\u4ecb\u6587\u3092\u5bfe\u8c61\u306b\u691c\u7d22\u3092\u3057\u307e\u3059":162,plai:119,plan:[],"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":134,table_pat_kei:[],cover:[119,27],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":150,umemoto:23,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":96,ext:78,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":86,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[100,68,108],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":141,microsoft:90,"\u3057\u304b\u3057":[61,39,129],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":129,cache_limit:[],escape_charact:72,session:[118,153],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":150,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":138,columnn:6,"\u50242":[30,86],solut:[],"\u304c\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570\u3092\u8d85\u3048\u306a\u3044\u7bc4\u56f2\u3067\u30ec\u30b3\u30fc\u30c9\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":96,factor:[66,96],"\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":61,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":134,"\u8907\u6570\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":162,"\u826f\u3044\u306e\u304b":112,"\u3053\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306e\u3088\u3046\u306b":[],"8\u307e\u3067\u306e\u6570\u5024\u304c\u6307\u5b9a\u53ef\u80fd\u3067":86,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:100,end_tagn:145,"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":128,column1:[6,96,60,113,133],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":60,column2:[6,96,60,113,133],set:[],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[150,86],tree:66,startup:6,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":138,see:[],"\u306e2\u5358\u8a9e\u6271\u3044":129,sec:17,sea:[43,78],juman:147,grn_column_name_scor:108,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":70,"\u30c6\u30b9\u30c8\u7528\u30c7\u30fc\u30bf\u3092\u30ed\u30fc\u30c9\u3057\u307e\u3059":162,mutex:[34,113],"chroot\u74b0\u5883\u306e":134,javascript:[],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":93,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":138,bodi:[],last:[6,78,15],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":137,"\u7d9a\u3044\u3066":61,whole:113,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":150,load:[],"256kib":124,"\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":130,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":137,"\u4f4d\u7f6e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30ab\u30e9\u30e0\u306e\u578b\u3068\u3057\u3066":[],"5367431640625e":4,devic:119,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":61,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":52,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":60,nonexist:96,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":137,"\u672c\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3067":[],shinya:6,func:[34,45,15],"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u3068favorites\u30ab\u30e9\u30e0":162,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],oldvalu:108,grn_column_name_nsubrecs_len:108,error:[],rep_gqpt:150,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":158,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":150,user_data:[34,45],grn_table_at:[138,100,68,99],needleess:6,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":15,n_builtin_type_nam:71,nanosecond:[122,132],x64:[90,134],grn_result_too_larg:2,shorter: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":158,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":157,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"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":65,alert:[5,66,7,8,132],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":129,grn_db_create_optarg:71,stack:113,recent:104,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":52,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":114,person:[],"\u81ea\u52d5\u7684\u306b\u66f4\u65b0\u3055\u308c\u307e\u3059":[],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":114,do_gqtp:150,"\u3067\u691c\u7d22\u3057\u305f\u5834\u5408\u3068\u540c\u4e00\u306e\u7d50\u679c\u3092\u8fd4\u3059\u3053\u3068\u306b\u3088\u3063\u3066":80,mysql:[147,96,36,73,119,145,13,120,27,41,135,116,166,156,10],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u3053\u3053\u3067\u306f\u6587\u66f8\u30c6\u30fc\u30d6\u30eb\u3068\u547c\u3073\u307e\u3059":80,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306f":162,"\u30bd\u30fc\u30c8":[],parenth:50,grn_tokenizer_error:2,input:[122,3,109,75,113,50,91,23,43,10],format:[],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":39,"\u5f15\u6570\u540d":[30,86],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":61,"\u691c\u7d22\u3092\u884c\u3044\u305f\u3044\u3068\u3057\u307e\u3059":[],"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":39,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":86,encount:[147,116,13,135,90,123],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":137,sampl:[],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":82,port_numb:91,benefit:126,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":60,"56058502197266e":4,"aramaki\u3055\u3093":138,"ongaeshi\u3055\u3093\u304c\u5831\u544a":138,wget:[147,116,20,13,135,165],"gqtp\u306e\u5834\u5408":86,"\u6587\u5b57\u5217\u578b\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306f":[],improper_link:153,grn_expr_pars:72,grn_cursor_lt:137,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":61,"\u6587\u5b57\u5217\u578b":80,"\u884c\u3059\u308b":134,repair:99,"\u5f15\u6570\u3068\u3057\u3066":60,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],pcre:[6,8],span:[145,97,27,41],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":100,line_numb:122,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":162,submit:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":137,suit:[119,27],"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":134,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[160,117,12,6,91,66,133],line:[],int8:[12,39,138,113],"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":150,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":134,"\u8907\u6570\u306e\u8a9e\u53e5\u304c\u4ed8\u4e0e\u3055\u308c\u3066\u3044\u307e\u3059":[],"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":65,element1:[133,73],element2:[133,73],element3:73,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":134,parser:160,"char":[34,71,53,110,15,100,68,72,45,108],sholud:165,taro:38,invalid:[34,96,118,110,113,6,66,23,56],"grn_op_and\u306f":60,"\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u3067":162,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":68,lucid:[138,113,134],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":45,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":129,wrongli:23,ago:43,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306b\u7f6e\u63db\u3055\u308c\u3066\u304b\u3089\u691c\u7d22\u3055\u308c\u308b\u305f\u3081":80,algorithm:[23,11,104],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":60,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":134,fresh:101,hello:[101,133],code:[],partial:[43,60,10,153],"\u7a7a\u306e\u5834\u5408":[31,95],send:[],table_list:[],"\u30ab\u30e9\u30e0\u540d1":96,sent:46,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":150,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":82,"\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":100,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":94,tri:17,"\u30ab\u30e9\u30e0\u540dn":96,grn_no_such_file_or_directori:2,"try":[76,67,17,167],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":134,"\u5b9f\u969b\u306b":[],"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":138,"\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":143,video:38,odd:133,"1\u5358\u8a9e\u6271\u3044":129,rurema:66,"blog1\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u308a":[],cenos6:6,let:[38,96,11,3,73,12,101,64,67],ubuntu:[],layout:134,"\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":68,thatn:96,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":45,greas:12,ctx:[34,35,48,107,71,68,82,18,15,16,137,100,60,53,54,94,72,45,105,108],"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":65,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":137,menu:90,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":137,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":134,location_str:162,"200byte":27,firefox:106,"\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":134,"geo_distance\u95a2\u6570\u306b\u4e0e\u3048\u308b\u6587\u5b57\u5217\u306f":[],"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":96,zip:[],rid_min:107,doubl:[50,96,78,3,160,83,120,113,6,66,23,133,56],upgrad:[],next:[38,48,3,119,66,45],"\u8ffd\u52a0\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a":[],doubt:117,"http\u306e\u5834\u5408":86,"\u30af\u30a8\u30ea\u62e1\u5f35\u6a5f\u80fd\u3092\u4f7f\u7528\u3059\u308b\u305f\u3081\u306b\u306f":80,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":96,"\u7d4c\u7def\u5ea6":[],src:[12,135],"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":162,socket_is_already_connect:153,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":60,"\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":150,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":138,process:[],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":129,high:[119,96,142,73],"\u304a\u6c17\u306b\u5165\u308a\u306e\u30b3\u30e1\u30f3\u30c8\u4e00\u89a7":162,"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":100,"column\u306e\u5024\u304c":60,"128515259x503187188":[38,64],"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":134,defalt:138,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u306e\u969b\u306b\u6587\u5b57\u5217\u304b\u3089\u30ad\u30e3\u30b9\u30c8\u3055\u308c":162,"\u30b3\u30e1\u30f3\u30c8id":162,"\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":134,gcc:[147,116,20,113,6,23,165],"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,alloc:[],essenti:[135,13,8],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":138,seriou:6,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":150,element:[122,2,3,73,12,27,113,6,66],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":134,allow:[3,119,27,6,135,91,55],posted_bi:162,"centos\u306e\u5834\u5408":134,"\u30a8\u30ed\u3044\u304a\u3063\u3055\u3093":162,movi:38,move:[6,74,90,23],sen_sel_term_extract:36,comma:[12,50,3,133,117],"\u529b":[7,125],yamaguchi:23,perfect:119,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":114,hobbi:132,"2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":60,"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[],murakami:[66,113],python:[134,111],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":138,billiard:[61,129],lzo:[],highlight_ful:[],"\u3053\u308c\u306b\u5bfe\u3057\u3066":129,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":134,grn_file_too_larg:2,bump:[66,113],meta:[6,84],"static":[23,3],grn_too_many_symbolic_link:2,"table\u306ecolumn":100,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[70,89,5,62,63,114,7,139,141,143,21,93,31,125,95],"\u4f4d\u7f6e\u60c5\u5831":[],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":138,builtin_type_nam:71,"\u7def\u5ea6\u306e\u30df\u30ea\u79d2":[],"comments\u30c6\u30fc\u30d6\u30eb\u306elocation\u30ab\u30e9\u30e0\u306f":162,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"com\u3067\u3082\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767a\u4fe1\u3057\u3066\u3044\u307e\u3059":134,"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":157,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":134,could:[6,12],length:[6,34,12],outsid:66,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":157,softwar:[],"\u5206":162,"\u5f15\u6570\u540d1":[30,86],"\u5f15\u6570\u540d2":[30,86],"\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":54,index_messag:67,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":100,vector_column:[43,113],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":114,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":114,"\u30cb\u30db\u30f3\u30b4":43,licens:[6,36,134],system:[0,96,160,20,119,39,13,27,113,101,12,64,8,124,23,165,133],"\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":65,hash_kei:83,grn_table_get_kei:100,termin:[],articles2:67,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":129,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":95,itagaki:138,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":61,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":121,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":98,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":134,"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":155,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":129,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":15,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":96,"\u30e6\u30fc\u30b6\u30fc\u5225":162,"\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":134,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":112,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":138,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":138,highlight_html:[],thesauru:96,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":45,oracl:[],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":121,segment:[6,66,114],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":150,latin1:[6,165],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":138,grn_cursor_by_kei:137,"\u3067\u3059\u306d":112,"\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210":[],grn_column_name_score_len:108,fact:[38,96],"\u62e1\u5f35\u5b50\u306f":150,dbm:[119,27],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[100,68,108],"\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":71,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":134,nois:109,freq2:75,freq1:75,freq0:75,"\u691c\u7d22\u7d50\u679c\u3092\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3068\u30e6\u30fc\u30b6\u30fc\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3057":162,articles_cont:67,"\u30b3\u30e1\u30f3\u30c8\u884c":150,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":[],familiar:117,"\u30b7\u30a7\u30eb\u4e0a":150,"2\u884c\u76ee":150,jiro:38,db1:46,db2:46,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":137,"\u51e6\u7406\u958b\u59cb\u6642\u9593":96,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":65,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":86,"hat\u7cfb":134,candidate_1:118,"\u4e8c":43,candidate_2:118,"\u4e16\u754c\u6e2c\u5730\u7cfb":39,column_renam:[],"\u99c4\u76ee\u306a\u4f8b":112,grn_obj_lock:68,"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":134,"\u3066\u3057\u307e\u3044\u307e\u3059":112,candidate_n:118,memri:124,encodiong:133,grn_plugin_expr_var_init:[34,66],max_command_vers:[91,70,3,4,8],grn_obj_user_data:105,etc:[126,3,134,12,148,6,135,8,124,76,156,46],tld:117,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[53,100,94],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":61,"\u3053\u3053\u3067\u306f\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3068\u547c\u3073\u307e\u3059":80,grn_type_cr:53,"\u6307\u5b9a\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u8ab0\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b\u306e\u304b\u3092\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":162,zenigata:38,"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":129,index_friend:38,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":45,quotat:[78,120],"\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":138,insuffici:12,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":137,invalid_seek:153,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":98,grn_cache_clos:16,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":93,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u63d0\u4f9b\u3059\u308b\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":44,spain:11,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":138,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3057\u30661\u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u65b9\u5f0f\u3067\u3059":[],"\u691c\u7d22\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u3092\u8907\u6570\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u3059":[],tokenkytea:6,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":150,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":70,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":150,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":100,ultra:38,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":52,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":45,site:[38,3,117,12,64,91,141,142,66,67],archiv:[],"\u30e6\u30fc\u30b6\u304c\u6307\u5b9a\u3057\u305f\u691c\u7d22\u6587\u5b57\u5217\u3092\u9069\u5b9c\u62e1\u5f35\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":80,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":138,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":70,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":137,"\u306e\u3082\u306e\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":162,output_column:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":130,expans:[6,23,96,156,102],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":68,"dist\u3067\u751f\u6210\u3057\u305ftar":134,grn_obj_get_valu:[23,68],php:[6,66,134],expand:[],off:[23,8,66],dinam:142,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":96,exampl:[],command:[],ecmascript:[6,96,142,113,133],"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":139,prepend:[133,8,160],web:[38,96,160,109,136,8,75,165],jinja:111,uncontinu:6,end_of_data:153,combind:160,"\u7d50\u679c\u306f\u4e0a\u306e\u4f8b\u3068\u540c\u3058\u306b\u306a\u308a\u307e\u3059":[],"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":30,broken_pip:153,"185428000x":11,dest:[12,158,86],"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b":[],five:[122,3,85],recurs:[96,156,8],"\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":138,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":114,"\u3053\u306e\u3088\u3046\u306bn":61,"\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":128,rep_gqtp:150,resiz:34,grn_plugin_regist:[34,130],interact:[3,91],"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":61,daylight:66,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":[],grn_cas_error:2,avoid:[],"0\u4ee5\u4e0a65":39,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":137,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":30,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":23,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":134,iwai:[6,99,113],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":89,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":61,"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":68,"\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":150,merg:[6,119,106],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":86,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":134,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":39,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":21,"com\u306e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30da\u30fc\u30b8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":134,"function":[],cutter_debug:157,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":70,"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b1":[],sigstop:113,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":138,count:[38,96,119],grn_table_cursor_delet:137,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":39,otherwis:[34,63,3,133,161,16,102,51,151,85,115,68,69],problem:[16,160,12,113,6,8,124,23,133],yuki:23,"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":134,bigram:[61,162,150,163],"int":[34,16,48,107,4,82,18,15,6,137,100,17,108,53,54,68,72,45,71],updated_at:61,jessi:[],"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":61,againt:96,inc:66,grn_obj_key_norm:100,"init\u76f4\u5f8c\u306e\u72b6\u614b":15,varieti:38,assgin:133,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":121,francisco:11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":60,"class":[145,97,27,41],"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":114,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":114,quetzal:6,document_version_ful:134,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":86,rule:[78,46],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,dbmss:119,"scr\u3067\u3059":150,untrust:[],"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":129,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":86,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":39,lgpl:36,"const":[34,71,53,110,99,15,100,137,68,72,45,108],"localstatedir\u3092\u4f7f\u7528":138,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":100,spec:[6,23,113],"\u524d\u63d0\u6761\u4ef6":[],secsion:122,editrc:23,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":137,"status\u30b3\u30de\u30f3\u30c9":1,"\u30d2\u30c3\u30c8\u3057\u305f\u4ef6\u6570":96,grn_cache_set_max_n_entri:16,upload:134,msyql:73,unmanag:114,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":65,"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":100,entries_local_nam:141,"4byte":153,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":134,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u306e\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u3092\u4f5c\u6210\u3057\u3066\u307f\u307e\u3057\u3087\u3046":162,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u30b3\u30e1\u30f3\u30c8\u306e\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3092\u4e00\u89a7\u3067\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb\u3067\u3059":162,zunda:23,"\u547c\u51fa\u5074\u3067\u6e96\u5099":35,"groonga_github_com_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":134,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":86,"\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":86,"\u7de8\u96c6\u8ddd\u96e2":1,"\u30e6\u30fc\u30b6\u30fcid":162,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":108,"obj\u3092unlock\u3057\u307e\u3059":68,aki:66,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":150,"\u9759\u7684\u89e3\u6790":[],"\u3092\u8ffd\u52a0":[23,138],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":23,total:[],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":86,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":139,column_remov:[],"\u305d\u308c\u3067\u306f\u5b9f\u969b\u306b":80,kytea:[6,78,113,165],"\u73fe\u5728\u5730":162,"\u30d6\u30ed\u30b0\u306e\u30c6\u30fc\u30d6\u30eb\u3067":[],"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":150,word:[96,127,160,109,119,142,6,161,75,43,156,10,133],work:[],"\u3042\u308a\u304c\u3068\u3046":162,era:119,"\u3068\u3044\u3046\u540d\u524d\u306e":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"16gb":148,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":150,geo_in_rectangl:[],indic:[11,78,3,113,132],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":150,"\u305f\u3081\u3057\u306b\u6771\u4eac\u99c5\u3068\u65b0\u5bbf\u99c5\u3068\u3064\u3044\u3066":[],basebal:[38,67],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":100,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u540d\u524d":[],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":134,mxcl:134,pseudo_column:[],"\u30ec\u30b3\u30fc\u30c9\u306e\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":[],"\u4e21\u65b9\u306e\u6761\u4ef6\u306b\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":162,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":93,recogn:119,"builtin_type_names\u306b\u306f":71,after:[3,83,41,6,90,91,66,165,48,133,12,17,111,106,38,145,113,23,118,124,166,8],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":129,lat:150,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":68,grn_is_a_directori:2,averag:66,"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,n_queri:[91,70,3,4,8],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":138,"128484216x502919856":162,confiugr:124,opaqu:[16,153],localnam:141,grn_fals:68,too_large_offset:153,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":30,wgs84geopoint:[38,48,117,12,162,39,64,11,91,23],order:[96,3,160,117,119,40,113,6,64,153],"2\u3064\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4f5c\u6210\u65b9\u5f0f\u304c\u3042\u308a\u307e\u3059":[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":61,offici:[23,116,147,134,102],"\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u95a2\u4fc2\u3092\u9006\u306b\u305f\u3069\u308b\u691c\u7d22\u304c\u3067\u304d\u307e\u3057\u305f":[],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":107,"3\u30ea\u30ea\u30fc\u30b9":[],grn_default_query_logger_set_path:6,flexibl:[102,142,119],"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":60,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":134,grn_network_is_down:2,"\u4e16\u754c\u6e2c\u5730\u7cfb\u3067\u306f":[],grn_unknown_error:2,grn_obj_column_scalar:108,them:[0,63,96,11,3,160,73,135,74,106,13,116,50,12,64,147,17,124,122,165,91],thei:[78,4,83,41,132,8,9,43,165,10,46,50,96,133,73,101,142,109,20,145,161,156,160,120,27,75,124],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":52,fragment:31,comment_index:162,"break":[6,23],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":61,jinja2:[134,111],deatil:96,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":150,"\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":60,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":129,"1\u3064\u306e\u52d5\u753b\u306b\u306f":[],grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],ruby_load:[],serach:109,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":157,owner:[8,113],logo:6,network:[6,38,153,46],morpholog:[119,165,133],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":82,palal:134,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":65,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,standard:[50,39,3,8,91],expnas:156,sequence_dataset:163,"\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":96,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":121,"\u8fd4\u4fe1\u5148\u60c5\u5831\u306a\u3069":162,"\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":150,"\u7def\u5ea6\u7d4c\u5ea6\u5ea7\u6a19":162,"\u4e3b\u30ad\u30fc\u306e\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3082\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],regress:113,grn_qlog_path:6,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":150,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":138,"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":157,independ:119,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,155],"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":134,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":68,grn_proc_set_selector:66,john:[151,128],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":134,grn_obj_with_sect:108,latitude_in_degreexlongitude_in_degre:133,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":98,target:[78,3,41,6,90,165,46,50,96,48,73,12,16,102,111,56,145,23,67,68,160,27,72],provid:[3,4,167,83,84,6,8,43,10,46,147,11,13,15,102,109,156,69,116,117,118,119,25,135,75,166,91],minut:[132,43,64,133,109],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":[],manner:[96,3],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":71,"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:[166,156],indexbuf:108,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":52,"\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":112,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,usernam:[38,90],"\u3092\u7528\u3044\u305f\u7d5e\u8fbc":[],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":157,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":30,"128551935x502796434":162,"128551935x502796433":162,gronnga:10,excut:113,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":112,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":114,"\u7d4c\u7def\u5ea6\u304c\u6307\u5b9a\u306e\u77e9\u5f62\u9818\u57df\u5185\u3067\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b":[],"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":52,identifi:151,"column\u306f":108,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":61,latenc:150,"\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":134,"\u3055\u3089\u306b":162,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306ffreecod":134,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u306f":[],liblzo2:[135,13],keyword2:[6,145],keyword1:[6,145],grn_obj_key_with_si:100,"query\u30d1\u30e9\u30e1\u30fc\u30bf\u3068\u540c\u69d8\u306b":[],"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831":162,optimum:8,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],awar:34,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":141,suffixsearchterm:[160,133],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":112,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[],accord:[12,11],old_release_d:134,res_tabl:150,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":129,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":100,address_is_in_us:153,howev:119,"\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":141,grn_obj_check:68,"\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":93,com:[96,3,134,117,12,64,91,92,106,46,69],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":21,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":134,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":65,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":150,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":45,"\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":134,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":138,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[148,165,91],"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":134,macport:[],snippet3:27,enginen:43,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":150,"\u30b3\u30de\u30f3\u30c9\u306bquery_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066":80,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":100,"\u304c\u304a\u6c17\u306b\u5165\u308a\u306b\u5165\u308c\u3066\u3044\u308b2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,inhibit:99,grn_ctx_db:15,gnu:[],properti:[132,13],sourceforg:[134,22],grn_obj_prepend:68,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":114,aio:113,"\u5165\u529b":[5,21,95,93],cond:113,conf:[148,126,8,124],"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":114,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":157,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":39,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":54,warri:123,descend:[136,96],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":138,"\u3068\u3044\u3046\u6587\u5b57\u5217\u3067\u691c\u7d22\u3057\u305f\u5834\u5408\u306b":80,"\u6771\u4eac":[61,162,129],unsupported_command_vers:153,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":15,hana:38,hang:113,hand:[161,12,119,102,8,67],"\u52d5\u753b\u306e\u30bf\u30b0\u60c5\u5831\u3092tags\u30ab\u30e9\u30e0\u306btag\u30c6\u30fc\u30d6\u30eb\u578b\u3067\u8907\u6570\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059":[],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":82,blog_bodi:61,o_binari:6,client:[],thi:[34,78,3,4,120,84,41,6,90,8,66,131,43,165,115,46,50,96,11,133,73,12,164,13,16,102,51,104,111,144,145,56,146,59,109,20,148,132,113,147,63,161,64,153,85,23,67,68,156,69,116,162,160,117,118,119,25,26,27,163,122,135,123,75,124,76,77,91],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":134,"_score":[38,96,11,3,108,73,61,136,75,113,6,102,64,109,52,43,23,67,162,133],no_such_devic:153,"table_list\u306f":93,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":129,"\u30e6\u30fc\u30b6\u30fc\u306e\u81ea\u5df1\u7d39\u4ecb":162,grn_default_logger_set_path:6,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":138,"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u306b\u3042\u308b\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8\u3092\u9006\u5f15\u304d\u3057\u307e\u3059":162,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"\u8ad6\u7406\u7a4d":60,grn_ctx_per_db:[23,15],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u306ebase_version\u306e\u66f4\u65b0":134,scan_build:157,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":93,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":134,night:101,grn_column_name_id_len:108,grn_plugin_command_cr:[34,66],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":53,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":162,famili:[78,133],"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":21,tokenbigramsplitsymbolalphadigit:[61,102,149,32,109],grn_obj_renam:68,tasuku:36,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":129,"\u30b3\u30e1\u30f3\u30c8\u306e\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u4e00\u89a7":162,shift_ji:165,grn_inappropriate_i_o_control_oper:2,repositori:[],post:[],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":150,obj:[35,68,71,82,114,94,72,45,105,108],comment2:67,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":158,zxvf:134,"\u3068\u306a\u308a":61,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":112,"float":[],bound:66,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":129,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":15,coverag:157,accordingli:8,wai:[0,4,117,73,119,113,6,102,8,142,76,67,55],"hiroshi\u3055\u3093":138,conbin:[96,142],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":29,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":108,event_dataset:[55,163],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7ba1\u7406\u30e1\u30cb\u30e5\u30fc\u304b\u3089":134,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":61,"true":[1,89,3,80,5,84,41,7,9,131,115,95,101,96,11,133,73,12,50,102,51,139,21,56,38,59,145,62,113,63,161,64,97,85,67,155,128,160,117,162,27,29,151,166],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u4e00\u822c\u7684\u306b\u306f":68,maximum:[57,96,3,133,12,148,153,85],inaccur:6,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:6,mte:36,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[70,89,5,62,63,114,7,139,141,143,21,93,31,125,95],fedoraproject:116,score1:60,score2:60,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":150,"\u8a9e":114,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":86,test:[147,116,3,134,12,13,150,6,135,90,8,123,67,157,91],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":138,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,brew:[77,111],insensit:96,max_siz:137,outdat:66,tajima:6,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":15,"\u5c0f\u6570\u90e8\u5206\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u30de\u30a4\u30af\u30ed\u79d2\u6570\u3067\u306e\u6307\u5b9a\u304c\u53ef\u80fd\u3067\u3059":162,masaharu:[6,99,113],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":112,global:[],"s3ki\u3055\u3093":138,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":112,"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":60,hubeni:11,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":150,graph:119,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":5,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":128,takiuchi:113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":86,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":60,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":128,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":63,administr:[],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":68,grn_obj_unlink:68,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":134,"4gbyte":57,upper:[23,3,56],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":65,akihabara:64,"groonga\u3084mysql\u306erpm":134,cost:101,admin_html:[23,86],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":105,appear:[96,78,3,160,119,27,2,156,133],"\u7def\u5ea6\u306f":39,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":112,"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":134,gener:[],satisfi:[50,113],minagawa:[66,113],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":150,redmin:0,table_hash_kei:[],trial:119,"\u305d\u306e\u969b":134,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":86,behav:[118,11],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":65,"\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":155,"\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":137,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":112,"\u691c\u7d22\u7d50\u679c":96,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":157,output_typ:[30,4],should:[34,50,96,166,160,73,156,13,116,6,135,109,90,153,123,111,147,69,72,56],mobil:119,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":138,httpd:[],"\u30b0\u30eb\u30fc\u30d7\u5316\u306e\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":96,grn_dat:23,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":68,"648\u4ee5\u4e0a2":39,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],key_typ:[],furigana:136,"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":134,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":61,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":157,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":68,prepar:[8,41,27],grn_table_sort_kei:100,grn_illegal_byte_sequ:2,can:[34,0,126,2,3,4,83,84,40,86,104,41,6,78,90,91,9,131,43,66,165,10,46,128,50,96,11,133,73,12,136,13,15,16,102,51,17,111,144,145,56,38,59,109,148,132,142,99,113,147,101,63,161,64,97,153,85,23,67,156,69,116,166,160,117,106,119,25,120,27,122,135,75,124,77,72,8],clearlock:[],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":23,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":100,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,topic:[],"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":86,occur:[63,48,136,122,113,15,6,51,124,66,165,156],multipl:[],mpaa:85,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[91,70,3,4,8],write:[96,160,99,86,111,67,165,32,133],grn_table_select:[],"\u6a19\u6e96\u5165\u529b":[70,89,62,63,114,139,141,143,31],flanc:11,grn_cursor_ascend:137,"\u5b9f\u969b\u306b\u306f":96,product:8,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":114,southern:6,uint:6,grn_plugin_malloc:34,"rb\u3092\u8ffd\u52a0":138,grn_too_many_open_files_in_system:2,favorit:[162,106],grn_plugin_log:34,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":65,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":114,increas:[96,78,73,119,149,11,42,131,124],tagger:119,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":134,still:[74,51,167,113,106],ieee:39,dynam:[99,119,3,8],"\u5171\u901a\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u3066\u3082":[],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":60,non:[122,96,133,113,6,160],loaded_valu:59,recal:[119,142],rake:134,col2:68,col3:68,col1:68,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":100,"geopoint\u578b\u3067\u3059":162,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":35,half:166,alisa:102,now:[],discuss:[0,22],nor:96,introduct:[],drop:[6,23,113,66],"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":93,"\uff4d\uff59\uff53\uff51\uff4c":[145,41],januari:[118,133],grn_encod:[],domain:[],replai:8,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":134,"takahiro\u3055\u3093\u304c\u5831\u544a":138,significantli:119,year:[132,133,85],"\u3067\u306f\u6607\u9806":100,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":134,shown:3,"\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":155,space:[34,96,78,3,160,73,119,120,113,50,75,23],acccess:126,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":150,"\u30df\u30ea\u79d2\u8868\u8a18\u306e\u5834\u5408\u306f\u305d\u308c\u305e\u308c":[],"\u307e\u305f\u901a\u5e38\u306f":39,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":134,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":39,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":15,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":108,grn_db_kei:99,care:[43,84,160,96,106],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":134,couldn:6,arnaud:23,"175904000x8464000":11,grn_ctx_get_match_escalation_threshold:54,with_check:[66,120],rins:134,yourself:123,column_n:161,size:[],silent:69,bookmark:73,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"\u5ea6\u6570\u8868\u8a18\u306e\u5834\u5408\u306f\u305d\u308c\u305e\u308c":[],filter:[],friend:[38,76],column_3:161,column_2:161,column_1:161,kenichi:[23,138],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":65,"\u6307\u5b9a\u3057\u305f\u5024\u306f":162,grn_geo_cursor_next:48,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":39,"\u30b9\u30b3\u30a2\u9806\u306b\u6607\u9806\u306b\u30bd\u30fc\u30c8\u3059\u308b\u3053\u3068\u3092\u610f\u5473\u3057\u3066\u3044\u307e\u3059":[],"\u4f4d\u7f6e\u60c5\u5831\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3057\u3066":[],"\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":60,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":68,"\u7d4c\u5ea6\u304c139\u5ea642\u52060":[],than:[],"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":129,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u5dee\u5206\u3092":150,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"\u30ad\u30fc\u30ef\u30fc\u30c9\u3068geopoint\u306e\u4e21\u65b9\u3092\u6761\u4ef6\u306b\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3059":162,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":45,browser:[165,91,106],fork:106,allow_column:[96,160],"\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":162,with_weight:[63,66,84,73],"txt\u306e\u5185\u5bb9":134,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":68,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":93,"\u3059\u308b\u3068":157,begin:158,"6813819x139":[12,64],"\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":86,price:12,"\u30b3\u30e1\u30f3\u30c8\u3067\u5168\u6587\u691c\u7d22\u304c\u51fa\u6765\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3067\u3059":162,renam:[3,83,113,6,51,23],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":23,"\u3068\u308a\u3068\u3093":[160,133],"6909211x139":64,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":112,host_name_or_ip_address:91,"\u306e\u3088\u3046\u306a\u30bf\u30b0\u3067\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3057\u305f":[],"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":114,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"\u3053\u306e\u3068\u304d":[162,129],concurr:132,"\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":100,pakcag:147,onli:[34,126,2,3,83,40,41,6,78,90,8,131,115,46,50,96,97,133,12,136,13,16,102,111,56,147,145,101,161,64,151,104,85,67,156,69,116,166,160,119,27,135,123,106],"\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":61,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":60,"\u3050\u308b\u3093\u304c":[160,133],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":138,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":5,overwritten:64,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18\u306e\u5ea6\u6570":[],"128mb":6,allow_pragma:96,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":65,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":155,error_loc:122,"configure\u306e":23,ggdb3:134,sport:38,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":52,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[122,124,96,160,133],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":114,between:[],"import":[16,96,78,160,134,73,119,26,113,15,6,8,23,165,156,46,56],"\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":134,pthread_:113,"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":61,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":71,instroduc:113,nearbi:119,"\u305f\u3068\u3048\u3070":[129,80],tutori:[],grn_encoding_pars:110,"time\u578b\u306b\u3064\u3044\u3066\u306f":162,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":134,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":134,grn_too_many_link:2,exploit:119,"debian\u7cfb\u3082\u3057\u304f\u306fr":134,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[35,68],"\u30e6\u30fc\u30b6\u30fc\u306e\u540d\u524d\u3084\u81ea\u5df1\u7d39\u4ecb\u6587":162,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":158,emphas:97,rubi:[59,36,73,119,145,41,6,142,131,66,69],"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":86,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":68,"edge\u306fctx\u3092\u542b\u3080":121,"\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":15,"\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":15,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":134,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,nnede:124,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":63,develop:[],"ueno\u3055\u3093\u304c\u5831\u544a":130,media:66,epoch:12,document:[],normalzi:145,finish:132,"\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":134,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":114,"\u30bf\u30b0\u691c\u7d22":[],eito:113,"org\u304c\u30db\u30b9\u30c8\u3092":134,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":100,"key_type\u306bt":100,"_post":134,touch:124,speed:[23,10,83],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":86,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,isssu:113,mmap:[],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":23,"groonga\u306a\u3046":162,"\u30ad\u30fc":86,grn_plugin_proc_get_var:[34,66],real:[119,27,124],swig:36,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":150,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":86,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u3068\u306f":162,"\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":96,invalid_argu:153,"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":15,cascad:[],output:[],unsplit:[96,60],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":100,grn_ii_buff:18,"\u51e6\u7406\u6642\u9593":96,refresh:38,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[89,5,62,7,139,21,95],"message\u30ab\u30e9\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u7528\u306bindex_message\u30ab\u30e9\u30e0\u3068":[],"\u30d9\u30af\u30bf\u306e\u5024\u3092":138,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"\u306e\u5834\u5408\u306f":112,tomoatsu:[6,138],unicod:166,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":150,grn_bad_file_descriptor:2,comparison:[],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":86,degre:[12,23,64,133,73],backup:141,processor:[147,135,116,13,119],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[128,134,61,162,129,150,141],"\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":138,your:[],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":158,ngx_http_proxy_modul:8,area:119,aren:[96,160,83,40,27,6,8,124,66,46,56],start:[],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":39,lot:113,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":150,submiss:[43,136,109,75],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":155,ealier:6,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":96,"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":150,immedi:[119,8],grn_not_socket:2,"default":[],"\u6a19\u6e96\u5165":[7,125],"\u3068\u5171\u306b":108,"\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":61,multibyt:23,data_set_nam:136,grn_obj_unlock:68,value_1:[3,91],value_2:[3,91],valid:[3,12,83,75,113,6,66,23],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":82,grn_obj_add_hook:82,you:[34,0,126,2,3,4,104,83,84,40,86,144,41,6,131,78,90,91,9,92,43,66,165,145,46,128,50,96,11,133,135,74,136,13,15,16,102,51,17,111,120,55,56,146,38,59,153,147,148,118,142,99,113,63,161,64,97,22,85,23,67,156,69,116,166,160,117,106,119,73,26,27,163,122,12,151,123,75,124,76,77,8],string2:98,string1:98,poor:156,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":137,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":68,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":137,reduc:[126,109,83,113,6,119,46],"n_builtin_type_names\u306b\u306f":71,naoya:[66,113],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":114,"\u3092\u683c\u7d0d\u3057\u307e\u3059":108,drilldown_offset:[],month:[38,133,132],"2\u3064\u76ee\u306e\u65b9\u6cd5\u306f":162,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":68,"users\u30c6\u30fc\u30d6\u30eb\u306efollower\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":162,articl:67,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":63,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":150,zlib_error:153,mechan:[6,8,46],"\u3067\u6271\u3063\u305f":162,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":65,veri:[50,96,160,38,83,122,27,41,6,119,43,145,46,133],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":108,patsuffix:128,query_flag:[],masafumi:[66,113],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":60,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":114,"\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":35,"\u304c\u305d\u308c\u305e\u308c2\u4ef6\u305a\u3064\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":162,groonga_dir:134,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":129,"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":150,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":134,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":100,learner:[],"\u95a2\u6570\u306f":[29,98,60,155,58],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":114,naoina:[6,113],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":150,too_many_symbolic_link:153,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":158,snippet1:27,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":137,snippet2:27,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":82,amount:6,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":137,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":157,score_1:118,score_2:118,hoge:[86,98],normallexicon:166,"1024r":134,"\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":134,"\u30c8\u30e2\u3061\u3083\u3093":38,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":68,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":134,bash:165,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":129,fulltext:[147,96,40,160,102,83,145,13,25,41,27,135,78,133,67,166,116,126,56],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:23,score_n:118,cutter_dir:134,histori:23,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":96,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":71,"\u3059\u3063\u3071\u3044\u30d6\u30c9\u30a6\u3068\u7518\u3044\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":80,grn_db_int:68,phrase:[],string:[],"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":105,anoth:[6,156,96,72,119],"scorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u304a\u3044\u3066":[],spreadsheet:156,snippet:[6,36,27,113],grn_expr_syntax_escap:72,grn_socket_is_not_connect:2,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":108,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":134,"\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":86,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":30,grn_obj_compress_lzo:108,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":128,grn_table_group:100,egg:67,narwhal:23,logrot:6,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":134,help:[],grn_proc_funct:34,soon:[40,27,46],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":158,paramet:[],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":138,systemd:6,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":134,"\u5024\u306e\u7bc4\u56f2\u306f1":52,shimada:6,comments_cont:67,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":61,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":60,"\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":150,range_error:153,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":137,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":100,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":96,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":134,fulli:[6,8],yito:[6,113],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":39,"video\u30c6\u30fc\u30d6\u30eb\u306etags\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092index_tags\u30ab\u30e9\u30e0\u306b\u683c\u7d0d\u3057\u3066\u3044\u307e\u3059":[],"\u307e\u305a\u306f":[162,80],heavi:96,grn_column_nam:108,"\u30b9\u30ec\u30c3\u30c9\u6570":150,"\u30d5\u30a1\u30a4\u30eb":134,todo:[],event:46,"\u3080\u308b\u3093\u304c":[160,133],"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":134,proxy_pass:8,publish:[66,134],"\u691c\u7d22\u5bfe\u8c61\u306e":61,trusti:[66,13],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":63,"shutdown\u306f":125,textil:134,"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":65,pub:[116,134],asc:134,reason:[96,117,148,126,6,43,165,46,56],base:[126,78,41,6,91,43,165,147,48,133,13,55,106,109,145,113,116,160,118,119,27,135,75,167,8],grn_ctx_fin:[6,15],put:[66,160,124,106],"groonga\u53ca\u3073groonga":150,rect:[6,11,155],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":150,assign:[],"\u4fee\u6b63":[],"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":65,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],placehold:113,"\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u306e\u5f62\u5f0f\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":[],miss:[6,23,156,113,66],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":100,conditional_probability_threshold:[23,136],station:[64,40],zeromq:165,schema:[96,11,160,109,145,27,41,101,102,97,163,161,85,124,67,151,133],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":138,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":129,"max\u3068common":137,grep:[135,116,13,147],"\u30bf\u30a4\u30c8\u30eb\u3068\u5185\u5bb9\u3068\u304c\u305d\u308c\u305e\u308c\u5225\u306e\u30ab\u30e9\u30e0\u306b\u5165\u3063\u305f\u3082\u306e\u304c\u3042\u308b\u3068\u3057\u307e\u3057\u3087\u3046":[],jqueri:66,"\u4efb\u610f\u306edb\u540d":150,str:72,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":68,"windows\u5411\u3051":134,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"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":100,option:[],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":114,lib:[126,138,8,113,9],"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":134,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":96,elapsed_tim:[122,132],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":155,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":157,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":65,grn_snip:[6,66],tokenbigramsplitsymbol:[61,149,32],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":157,grn_proc_get_typ:66,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":100,clear:[6,23,68,134,66],grn_too_many_open_fil:2,clean:[157,134],newvalu:108,weight_in_weight_vector:73,usual:[12,67,55,15],"scorer\u30d1\u30e9\u30e1\u30fc\u30bf\u306b":[],grn_ctx_t:2,northern:6,"\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":134,wanab:113,yml:69,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":65,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":138,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":157,"\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":150,grn_get_default_encod:110,grn_obj_compress_zlib:108,similar_search:[6,136],"\u68ee\u7530":38,"\u82b1\u5b50":38,grn_hook_get:82,doc_bodi:80,"\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":134,grn_obj_is_lock:68,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":61,resource_deadlock_avoid:153,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":63,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":150,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":63,isob:113,numer:[],no_locks_avail:153,both:[3,83,90,43,46,147,96,133,73,13,101,127,63,64,153,116,160,119,27,122,135,123],grn_range_error:2,geopoint:11,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[5,86],condition2:133,condition1:133,"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":138,"127975798x502919856":162,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":100,"000x":106,too_small_limit:153,header:[],"\u623b\u308a\u5024\u3067\u3042\u308b":107,linux:[],tokenbigramignoreblanksplitsymbol:[61,149,32],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":150,stamp:[132,43,109,75],"\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":60,"null\u306a\u3089temporari":71,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":108,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":95,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":[],"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":95,grn_table_sort_desc:100,geo_in_circl:[],"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[29,155],grn_table_cursor_get_kei:137,"\u3082\u30461\u3064\u306f":[],coordin:[12,11],"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9":[],unpatch:36,look:2,"\u5b9f\u306f":[],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":155,"while":[101,78,119,113,6,51],"\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":86,grn_zlib_error:2,grn_column_name_value_len:108,loop:[6,66],pack:[],"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":150,readi:[96,133,6,111,165,160],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":103,fedora:[],belong:[127,117],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":30,octal:133,conflict:126,src_kei:100,imagin:[96,117],grn_set_default_match_escalation_threshold:54,temporari:[],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067\u5b9f\u884c\u3057\u307e\u3059":[],"takuto\u3055\u3093\u304c\u5831\u544a":138,bob:[96,160,102,51,8,85,115,46],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":45,"\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":86,input_output_error:153,"\u6307\u5b9a\u3057\u305f\u30e6\u30fc\u30b6\u30fc\u3092\u53cb\u4eba\u30ea\u30b9\u30c8\u306b\u5165\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":158,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":100,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":100,"koi8r\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":86,nise_nab:66,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":61,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"56880000x":11,"\u3088\u3046\u3053\u305d":162,nginx:[],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":100,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":112,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u304c1\u3064\u3057\u304b\u3042\u308a\u307e\u305b\u3093":[],address_is_not_avail:153,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":114,"\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc":[],grn_table_sort:100,"match_columns\u30d1\u30e9\u30e1\u30fc\u30bf":[],resolv:[6,23,31,73],elaps:[133,118,122,132,23,4],"32bit":113,popular:[96,73],update_buffer_s:18,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":100,creation:[23,3,113],grn_obj_db:71,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":31,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":150,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[5,7],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"title\u3082\u3057\u304f\u306fmessage\u30ab\u30e9\u30e0\u3067\u306e\u691c\u7d22":[],"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":30,"\u79cb\u8449\u539f\u99c5\u306e\u4f4d\u7f6e\u306f\u7def\u5ea6\u304c35\u5ea641\u520655":[],entry_bodi:63,run:[],step:[3,12,90,75,165,106],"1\u3064\u76ee\u306e\u65b9\u6cd5\u306f":162,"\u6307\u5b9a\u3057\u305f\u6642\u9593\u3088\u308a\u3082\u524d\u306b\u6295\u7a3f\u3055\u308c\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,"\u3082\u3057test":150,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u305d\u3053\u3067":61,grn_no_memory_avail:2,"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":107,block:[12,8,113,56],libzmq:[135,13],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[60,72],within:[43,64,109],ensur:109,grn_obj_key_uint:53,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":134,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":61,patprefix:128,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":100,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":129,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":23,"\u30bd\u30fc\u30c8\u901f\u5ea6\u304c\u901f\u304f\u306a\u308a\u307e\u3059":[],pangolin:[6,13,134],tokenbigramignoreblanksplitalpha:32,hereaft:119,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":134,newer:[66,111],info:[5,7,8],utc:[122,133],"0xc7":153,utf:[36,4,118,113,166,6,165,133],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":65,"\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":150,munin:[],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":60,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":150,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":150,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":134,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":110,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":100,doesn:[34,78,83,84,40,6,8,43,165,46,96,133,101,51,17,56,109,113,85,66,156,160,27,122,124,166,167],repres:[38,133,12,86,142,72],"homebrew\u306e\u66f4\u65b0":[],before_instal:69,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":134,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":68,pronounc:142,titl:[38,96,3,160,117,98,12,113,161,91,134,67,133],accross:6,grn_ctx_close:[23,66,15],orangain:113,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22":[],sigcont:113,ooo:83,draw:38,"groonga\u5358\u4f53\u3067test":150,"\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":138,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":68,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":112,eval:131,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":134,kawaji:6,hash_index:162,"\u51fa\u529b\u3092\u884c\u3046\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":96,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":65,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[157,134],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":100,ruby_script:131,friendli:6,nippon:43,"\u4ed6\u306e\u578b\u3067\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u306b\u6bd4\u3079\u3066\u4f4e\u901f\u3067\u3059":[],"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":150,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":129,"\u5185\u90e8\u7684\u306a\u5909\u66f4":134,button:[6,113,106],definion:133,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":86,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":128,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":137,download:[147,116,134,20,13,135,90,165,77],grn_obj_decr:68,onigmo:66,experiment:[16,59,145,120,27,41,113,6,66,131,23,99,167],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":134,"\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":71,becom:[12,11,36,119],accessor:100,convert:[12,83,2,166],convers:[23,8],blogroonga:[],"wgs84geopoint\u306e\uff12\u3064\u306e\u578b\u304c\u3042\u308a\u307e\u3059":[],"\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":162,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":150,chang:[],"\u8868\u8a18\u306e\u63fa\u308c\u3092\u5438\u53ce\u3057\u3066\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3057\u305f":80,"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":52,danger:[51,46],grn_plugin_mutex_clos:34,"boolean":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":95,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":96,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":[89,62],remaind:133,benchmark:[],about:[34,0,2,120,84,40,22,6,78,91,66,131,43,165,46,147,96,11,133,73,136,13,102,51,17,111,149,144,106,146,59,42,109,20,148,99,113,63,161,64,151,104,23,115,156,69,116,160,26,132,122,135,123,75,124,77,8],"23t02":133,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":134,"\u3068\u3044\u3063\u305f\u7d5e\u8fbc\u3082\u53ef\u80fd\u3067\u3059":[],"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":138,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":100,"shibuya\u3055\u3093":138,retriev:[119,96],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":134,min_siz:137,meet:[64,126],mitsuhiro:138,control:[],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":155,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":134,sudo:[147,116,134,20,148,13,126,6,135,91,111,124,165,157,77],directory_not_empti:153,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":63,tokendelimit:[149,78,32,75],"\u6df1\u523b":61,narg:72,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":108,"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":134,int16:[39,138,113],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":100,decrib:8,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":134,"scorer\u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8":[],"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":129,rakutan:67,otehr:56,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":129,"\u304c2\u4ef6":162,kisk:6,"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":86,least:[160,148,6,161,104,124],"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[68,108],syntax_error:153,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":60,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":68,sysconfig:126,grn_socket_is_already_shutdown:2,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":138,"\u3053\u306e\u5834\u5408":137,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[100,68,108],grn_plugin_proc_alloc:34,read_only_file_system:153,grn_ctx_set_command_vers:15,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":63,handl:[2,12,83,113,124,8,148,66],auto:[6,136],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":31,succeeded_or_not:[51,151,115],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":7,parameter1:8,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":134,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":150,column_information1:84,"0\u306e\u79d2\u8868\u8a18":61,column_information2:84,"\u6295\u7a3f\u8005\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":162,"\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":61,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":128,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306f":[],"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":70,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":150,chunk:[148,124,114],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":157,"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u305f\u3081\u306e\u30c6\u30fc\u30d6\u30eb\u3067\u3059":162,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":150,special:[106,96,2,3,160,145,27,41,113,122,78,91,165,72,17],groo:[118,96],"\u51fa\u529b\u5bfe\u8c61\u3068\u306a\u308b\u6700\u521d\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u756a\u53f7\u30920\u30d9\u30fc\u30b9\u3067\u6307\u5b9a\u3057\u307e\u3059":96,suitabl:[101,83,56],grn_geo_estimate_in_rectangl:[23,48],new_vers:134,"quit\u306f":143,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[137,108],manipul:142,grn_match_escal:[],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":150,latitude_in_msecxlongitude_in_msec:133,keep:[57,101,73,15,16,23],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":138,geometri:23,largetext:83,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":157,grn_cursor_by_id:137,"\u30e6\u30fc\u30b6\u30fc\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308buser\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057":[],"scorer\u306f":96,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":139,buf_siz:[100,68,108],"groonga\u30b3\u30de\u30f3\u30c9\u306b":138,mkdir:141,attach:[166,106],"\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":134,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[61,30,39,150],"final":[34,96,8,73],fuzzi:56,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":134,exactli:148,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"groonga\u306f":157,sequence_queri:163,extrct:133,"\u52d5\u753b\u60c5\u5831\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057":[],concatin:[6,118,113],msec:[23,17],tabl:[],need:[78,3,4,83,41,6,90,8,9,43,66,165,46,96,133,73,15,16,111,56,109,20,148,64,153,23,67,156,69,116,166,160,118,119,120,27,122,75,124,106],border:[6,78,85],"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,grn_obj_search:94,"0x08":153,"0x04":153,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":138,"0x01":153,"0x02":153,"\u30ed\u30b0\u3092":134,ifexist:50,singl:[78,3,73,120,113,50],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":96,"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":155,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":134,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":68,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":61,kazuhiro:113,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":30,url:[23,141,46],uri:8,grn_table_upd:100,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u4f5c\u3063\u3066\u307f\u307e\u3057\u305f":162,fontain:23,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":100,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":137,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":134,grn_index_cursor:[],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":158,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":107,ssssss:132,object_corrupt:153,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":134,launchpad:[66,13],"\u3053\u308c\u306f":61,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[93,86],"\u3053\u308c\u3067":134,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":61,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":65,"drilldown\u6761\u4ef6\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u6bce\u306b\u3068\u308a\u307e\u3068\u3081\u3089\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":96,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":68,enabl:[],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":134,"masahiro\u3055\u3093":138,gram:[119,78,3,133],"output_columns\u304b\u3089_value\u3092\u524a\u9664":138,contain:[],sho:[66,113],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":157,orphan:113,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":60,latin:86,statu:[],correctli:[6,3],wibowo:113,tend:67,state:[6,11,153,151],grn_retry_max:2,ken:38,kei:[],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":114,"\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":107,eclips:106,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18\u306e\u5ea6\u6570":[],"\u3053\u308c\u3082":162,"\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":61,admin:[6,23,138,113,66],"\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":138,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":139,"188\u79d2\u3067\u3059":[],"\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":112,cutter_source_path:134,"\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":141,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":68,"\u5185\u8a33\u306f":61,"\u304c\u3042\u308a\u307e\u3059":[30,134],quit:[],addition:64,quiz:38,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":134,treat:[96,78,133,109,40,113,6,43],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[89,5,62,7,139,21,95],downcas:166,"\u65e5\u672c":43,"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":96,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":93,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":100,delimit:[12,119,78,113,75],drildown:[],"12gb":148,glossari:69,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":23,longitude_in_msec:133,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":45,demo:38,redcloth:134,welcom:[96,160,74,22,133,76,106],grn_table_cursor_t:137,"\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":61,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":39,speaker:22,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":138,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":139,crch:78,entry_selector:139,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":61,nsubrecs_column:108,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":134,"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":61,effect:[6,50,162],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,rpmforg:116,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],grn_post:[48,107],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":143,"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":61,undefin:12,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":68,lcov:157,distanc:[11,133,119,40,6,64],koi8r:[6,165],remove_blank:120,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":68,"\u306e\u30b3\u30e1\u30f3\u30c81\u4ef6\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":162,"log_reopen\u306f":21,jeff:128,bc009774:134,patricia:[],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":134,grn_ctx_get_command_vers:15,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":39,"\u3067\u533a\u5207\u308a\u307e\u3059":86,logger:6,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":94,int32:[3,39,6,43,96,11,133,73,136,102,51,38,109,61,113,64,85,66,67,160,117,162,75],ryoji:66,pikonyan:38,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":52,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":150,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":114,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":150,dat_kei:83,tomita:138,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":158,grn_file_corrupt:2,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":134,"\u4e0b\u8a18":137,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":138,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":150,use_offline_index:99,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[158,86],"436218z":133,out_http:150,home:[165,134],tatsuya:6,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":63,index_column:66,nihon:43,estim:[148,48],grn_obj_key_float:53,grn_obj_remov:[23,68],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":129,"10t13":[43,109,75],win64:90,"\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":150,grn_geo:[],offset:[],"blog_body\u7d22\u5f15":61,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":150,due:[119,27],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u914d\u5217\u3067\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":162,empti:[96,160,84,113,66,23],groonga_query_log_path:[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":130,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":86,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":150,"\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":134,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":86,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":60,suzuki:6,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":129,gronga:[156,10],overflow:[12,23,113,66],ear:78,"string\u306b":60,"\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":60,displai:6,limit:[],"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":114,"\u611f\u8b1d":[],"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":129,evalu:[131,161,113,133],"\u521d\u671f\u5316\u3055\u308c\u305f":15,"aramaki\u3055\u3093\u304c\u5831\u544a":138,eric:85,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":68,blog1:67,blog2:67,new_valu:96,futur:[59,11,73,120,113,153,131,23,46],halfwidth:166,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":137,"\u7518\u6817\u3080\u3044\u3061\u3083\u3044\u307e\u3057\u305f\u7684\u306a\u611f\u3058\u3067":162,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":23,sphinx:[74,106,14,111],katagiri:113,table_remov:[],"\u3068\u540c\u3058\u610f\u5473":86,max_concurr:158,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":65,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":159,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":112,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],whose:[3,133],"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3057\u305f\u5404\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u305f\u306e\u3061\u306b":96,accur:[119,27],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":134,"0x20":160,escaped_queri:72,kentaro:113,utf8mb4_general_ci:166,swap:124,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":29,"void":[34,71,110,100,137,103,17,54,68,99],voic:166,is_anim:12,affect:[6,66,113],"\u306f\u7121\u52b9\u3067\u3042\u308a":137,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":138,demerit:83,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":138,correct:[],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":155,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":134,"10m":8,batch:6,"10z":133,"\u30b0\u30eb\u30fc\u30d7\u5316":52,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":150,even:[63,116,133,147,119,13,113,6,135,90,123,43,67],"\u3064\u307e\u308atest":134,neg:[34,96,2,15,6,17,45],spokesman:76,"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":134,"\u3050\u308b\u3093\u304c\u592a\u90ce":38,"new":[],net:[38,3,134,117,12,22,64,91],ever:113,metadata:[6,131,59],elimin:113,"\u30b3\u30e1\u30f3\u30c8\u5185\u5bb9\u3084\u6295\u7a3f\u65e5\u6642":162,abov:[3,6,90,8,43,165,96,97,56,102,106,109,161,64,85,67,156,69,117,118,75,166],never:[136,165],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":150,met:161,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":86,grn_log_level:34,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":134,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":68,jame:128,"\u30bf\u30a4\u30c8\u30eb\u3082\u3057\u304f\u306f\u5185\u5bb9\u306b\u7279\u5b9a\u306e\u5358\u8a9e\u3092\u542b\u3080":[],serch:[136,109],"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":96,"\u7d4c\u5ea6\u306e\u30df\u30ea\u79d2":[],"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":158,grn_expr_exec:72,"\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":150,"\u826f\u3044\u4f8b":112,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":39,"\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":61,mysqlgenerallexicon:166,concret:[38,67,117],overhead:126,typo:[109,113,6,66,43,23,156],recommend:[147,96,3,160,126,13,116,122,135,90,91,123,124,46,133],"tag\u30c6\u30fc\u30d6\u30eb\u3067\u306f":[],"\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":61,type:[],readm:[113,134],"\u554f\u984c\u306fgroonga":150,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":68,warn:[96,5,113,6,7,8,132,99],"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u79cb\u8449\u539f\u99c5\u3068\u65b0\u5bbf\u99c5\u306f6720m\u96e2\u308c\u3066\u3044\u308b\u3088\u3046\u3067\u3059":[],"\u4ee5\u4e0b":150,"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":61,setup:[106,113,69],"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":155,akio:[6,23,113],root:[30,86,8,113,91],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":86,give:[102,119],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":60,"\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":54,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:158,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],unsign:[],log_level:[],quot:[78,3,160,120,113,50],"128544408x502801502":162,updag:6,config:[1,86,6,90,23,165],grn_arg_list_too_long:2,sitedomain:[91,117],"\u30b9\u30fc\u30d7":129,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":60,permission_deni:153,third:[12,84,96,133],grn_text_printf:66,"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":61,romaji:43,"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":112,"\u3053\u306e\u5834\u5408\u306f_id\u306e\u5024\u304c1\u4ee5\u4e0b\u306e\u30ec\u30b3\u30fc\u30c9\u304c\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u5f97\u3089\u308c\u307e\u3059":[],"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":134,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":71,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":62,washida:113,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":155,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":98,better:[119,67,96],"\u304c3\u4ef6\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":162,persist:[],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":137,html_untag:[],"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":138,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":155,leaner:[66,55],"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":134,grn_exec_format_error:2,"\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":68,cache_previ:16,side:[6,119],mean:[34,2,3,84,40,6,78,8,132,43,165,96,48,133,73,12,136,17,148,113,161,64,156,160,117,124,166,72],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":15,enorm:38,blog_comment_index:161,grn_obj_compar:68,extract:[],"hiroshi\u3055\u3093\u304c\u5831\u544a":138,content:[34,38,96,97,153,160,161,124,84,27,113,101,102,8,66,122,23,67,46,133],rewrit:36,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":137,ncpu:77,lzo_error:153,"\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":138,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":15,iso:133,isn:[50,59,153,160,109,136,84,96,27,113,6,131,8,116,122,43,104,165,156,10,56],user:[84,41,6,90,91,132,43,165,10,46,96,102,51,141,38,109,150,113,161,151,85,66,115,160,118,162,27,122,75,124,76,8],wgs84geoppoint:48,cpuinfo:[135,116,13,147],grn_snip_clos:66,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":61,hook:69,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":150,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":138,sometim:66,"\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":129,grn_cache_get_max_n_entri:16,iptabl:[91,46],"\u5358\u4f4d":[53,155],direct:[],"80ghz":150,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":112,"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":96,fullfil:126,keyword:[38,96,3,160,145,27,41,113,6,102,67,10,56],grn_expr_get_var_by_offset:72,mind:57,mine:119,"\u7d4c\u5ea6\u304c139\u5ea645\u520657":[],"\u304c\u304a\u304c\u304a":162,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":134,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":141,regular:[12,118,3,8],tradit:119,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":150,don:[3,4,84,8,23,165,46,16,96,133,73,56,15,50,106,153,66,156,160,123,75,166,91],doc:[80,134,74,111,113,6,8,23,66,99,106],"\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":61,doe:[96,3,160,73,12,119,113,6,161,8,136,126,133],logyyyymmddhhmmss:118,grn_not_enough_spac:2,dot:6,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":39,"\u3068\u8a18\u8ff0\u3057\u3066\u6307\u5b9a\u3057\u307e\u3059":162,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":112,keybuf:100,"\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":150,"\u5168\u3066\u306e\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],syntax:[],"\u65e5\u672c\u8a9e":43,yoji:23,acquir:17,explain:[12,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":86,"\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":114,folder:90,custom:[],cosmo0920:[66,113],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":137,stop:[],grn_plugin_fin:34,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":134,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":65,attr_setpshar:113,bar:56,travi:[],reload:156,bad:[66,113,119],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":35,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":62,veres:46,all_record:6,"video\u30c6\u30fc\u30d6\u30eb\u3067\u306f":[],"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":150,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":39,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":150,old_releas:134,"\u5b9f\u884c\u3067\u304d\u307e\u3059":134,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":129,subject:113,brazil:117,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,"or\u6307\u5b9a\u3092\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":[],grn_function_not_impl:2,"\u52d5\u753b\u306e\u30bf\u30a4\u30c8\u30eb\u3092title\u30ab\u30e9\u30e0\u306b":[],simplest:[119,165],illegal_byte_sequ:153,attribut:[78,97,42,120,149],nfkc51lexicon:166,threasd:86,"100x150":29,"\u6771\u4eac\u99c5\u3068\u79cb\u8449\u539f\u99c5\u306f2054m":[],"\u534a\u5f84":155,str_ptr:34,"takuto\u3055\u3093":138,replied_to:162,key_length:153,"\u30af\u30a8\u30ea\u306e":61,string_liter:66,"\u6539\u884c\u6587\u5b57\u306f":86,against:[],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":157,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:6,"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":86,"twitter\u7de8":[],grn_op_cal:60,grn_expr_var:[34,45],grn_obj_clos:[66,60,107,68,15],three:[147,96,11,3,142,117,73,12,145,13,113,122,135,51,109,43,67,116,126],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":134,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":65,"1285858800\u306f2010":61,interest:[76,3],basic:[],"\u6642":162,"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":134,suppress:[6,66,99],"2\u30ea\u30ea\u30fc\u30b9":[],"\u73fe\u5728\u57f7\u7b46\u4e2d\u3067\u3059":88,servic:[126,109,119,113,6,124,66,69],"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e8\u3064\u3067\u3059":[],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":71,calcul:[11,118,40,113,6,64,131,66],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":134,"\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059":162,seven:3,datail:96,"key\u3092\u8fd4\u3057\u307e\u3059":68,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":86,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":137,"\u691c\u7d22\u306e\u6319\u52d5":[],receiv:[118,119,153,15,8,55,106],make:[],column_list_head:84,"query\u30d1\u30e9\u30e1\u30fc\u30bf\u3068filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3068":[],"_kei":[3,80,84,6,8,43,115,46,128,96,11,133,73,12,136,50,51,52,141,38,108,109,113,161,64,97,85,66,67,68,160,117,162,122,151,75,124,166,91],zlib1g:[135,13],"\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":60,"8byte":153,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":108,inherit:113,"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":60,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":63,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":86,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":158,left:[],protocol:[],just:[],sigusr1:23,"\u6771\u4eac\u90fd\u6c11":[61,129],human:[84,56],"\u73fe\u5728\u306f":[158,150],yamamoto:66,yet:[59,133,119,40,96,113,131,23,46],"table\u304c":100,defrag:[],uint16:[39,113],"worker\u306f":121,save:[118,148,67,134,66],"\u7d4c\u5ea6":162,applic:[146,119,27,8,23,156,46],"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":129,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":134,"groonga\u958b\u767a\u5408\u5bbf\u306e\u305f\u3081\u7fbd\u7530\u7a7a\u6e2f\u306b\u6765\u307e\u3057\u305f":162,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":134,nomral:[96,160],daemon:[],vdw:[64,3,117],manual:[],grn_obj_expir:68,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":95,mrubi:[131,66,59,113],unnecessari:124,cxxflag:[20,134],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,intern:[12,27,113,16,66,99],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":93,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"groonga\u30bf\u30b0\u306e\u4ed8\u3044\u3066\u3044\u308b2\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":129,"\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":129,tracker:[],"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":60,localhost:[158,4,134,118,150,86,91,46,8],new_release_d:134,compress:[],grn_cursor_gt:137,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":157,promot:113,"\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":134,"\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":65,postgresql:[119,27],"\u65b0\u898f\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332\u3057\u307e\u3059":134,"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":134,"\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b":162,"\u30c7\u30d5\u30a9\u30eb\u30c8":60,"\u30c6\u30b9\u30c8\u306f":157,grn_ctx_recv:66,commit:106,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[158,86],meerkat:23,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\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":54,sphr:[11,155],down:[],"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":138,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":150,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"\u6307\u5b9a\u3055\u308c\u305f\u6587\u5b57\u5217\u306b\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u304c\u305d\u308c\u305e\u308c\u30d2\u30c3\u30c8\u3057\u307e\u3059":80,editor:106,fraction:[12,119],storategi:96,analysi:[119,165,133],infom:15,tokenbigramignoreblanksplitsymbolalphadigit:[61,149],form:[96,3,160,118,113,8,142,23,166,91],forc:6,some:[57,122,78,160,163,73,119,113,22,6,102,147,144,17,132,124,165,72,106],"4e86e700":148,"txt\u306b\u307e\u3068\u3081\u307e\u3059":134,"\u6771\u4eac\u90fd\u4e2d\u91ce\u533a":162,grroonga:10,"\u5426\u5b9a":60,auth_basic_user_fil:[8,46],"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":141,"\u4f4d\u7f6e\u60c5\u5831\u306e\u3042\u308b\u3059\u3079\u3066\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,unrel:23,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":65,classif:117,featur:[],kwic:27,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":58,grn_obj:[],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":45,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":52,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":15,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":86,tokenbigramignoreblank:[61,149,32],excel:156,"defrag\u306f":31,matur:126,escaped_charact:72,fsf:6,pseudo:[50,96,160,117,113,6,64,66,133],"scr\u306e\u4e2d\u8eab\u304c":150,vmstat:148,ignor:[96,78,71,83,120,113,6,151,23,156,160],reply_to:67,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":52,n_entri:104,skip:[66,3,113],segv:113,"\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":31,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":137,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":157,marku:6,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":137,must:[34,3,84,91,43,127,165,46,16,96,48,133,12,136,50,51,55,56,148,161,97,153,160,118,151,75,124,72],query_str:[],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":23,"0mq":113,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":39,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f":[],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":134,grn_obj_set_fin:45,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":134,proc:[34,147,96,82,13,113,135,116,45,105],iter:133,dic:147,item:[96,109,136,126,141,75,43,46,56],round:23,dir:150,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":100,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3059\u308b\u3068":[],"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":134,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":138,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":150,"\u30ed\u30b0\u30ec\u30d9\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u30b3\u30e1\u30f3\u30c8\u306e\u6295\u7a3f\u6642\u9593\u3067\u691c\u7d22\u3092\u3057\u307e\u3059":162,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":58,deriv:[126,55],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":39,"\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\u3059":[],"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":129,wait:[34,17],box:96,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":52,"\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":65,grn_true:68,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":141,raccoon:38,"\u306e\u30ab\u30e9\u30e0":[31,95],modul:[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":114,result_too_larg:153,univers:13,perl:8,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":150,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":63,black:[40,166],grn_proc_typ:45,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[23,138],too_many_link:153,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":138,apper:96,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":60,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":62,grn_plugin_proc_get_var_by_offset:[34,66],commands_column_list:84,tokyo:[64,11],"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":128,"\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":134,uniqu:118,"\u30d2\u30c3\u30c8\u6570":96,ull:78,"256kb":148,predict:[83,56],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":45,"\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":112,libmemcach:157,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":86,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":129,normalizs:56,map:[132,23,148,124,43],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":150,max:[],mac:[],clang:[6,66,113,157],assigend:160,mai:[146,83,84,6,8,23,131,165,46,136,16,51,56,57,38,59,113,66,67,156,119,120,122,124],underscor:56,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":39,table_dat_kei:[],"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":129,"\u30b9\u30b3\u30a2\u5024_score\u3082\u51fa\u3057\u3066\u307f\u307e\u3057\u3087\u3046":162,fluent:92,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":158,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":30,talk:[113,22,134],"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":61,pointer:34,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":60,entiti:119,group:[],monitor:[135,116,13,113,147],polici:113,"\u5b9f\u9a13\u7684":[],main:135,resource_temporarily_unavail:153,initi:[6,23,34,118,15],lunch:119,"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":134,"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":134,"\u5fa9\u53f7\u3057\u305f\u9375":134,"wgs84\u76f8\u5f53":[],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":68,"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":134,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":150,"\u3053\u306e\u7d50\u679c\u306f":150,gzip_typ:46,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":138,continu:[78,109,86,113,6,66,69],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":134,unlock:34,nroonga:[102,67,69],"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":157,"3rd":[96,113],compress_lzo:63,"\u5185\u5bb9\u306f\u4e0a\u306e\u4f8b\u3068\u307b\u307c\u540c\u3058\u3067\u3059\u304c":[],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":150,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":134,uint32:[3,80,39,6,91,93,115,128,96,133,73,101,51,84,56,38,61,113,161,64,151,85,67,160,117,122,124,166],"\u624b\u7d9a\u304d":45,earlier:[23,166],"\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":21,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":53,debootstrap:134,org:[38,116,165,3,117,73,135,20,106,13,150,12,64,97,90,8,141,134,147,77,91],prefix_search:[23,136],"128487316x502920929":[38,64],grn_table_renam:100,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":15,"\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":112,"marverick\u306b\u5909\u66f4":138,frequenc:[66,136],"grn_op_adjust\u306f":60,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":93,"\u305d\u306e\u5834\u5408\u306f\u5404\u8981\u7d20\u3092or\u3067\u3064\u306a\u3052\u305f\u3082\u306e\u306b\u7f6e\u63db\u3055\u308c\u308b\u3068\u3044\u3046\u3053\u3068\u3092\u8a18\u8ff0\u3059\u308b":80,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":129,first:[34,126,3,84,41,90,8,165,46,96,133,12,15,106,38,145,113,23,67,156,160,118,27,122,56],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":134,kernel:[6,124],key_norm:[101,96,166,3,80,61,162,160,27,6,102,124,67,133,56],"long":[54,18,113,56],crit:[5,7],grn_geo_cursor_open_in_rectangl:48,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":61,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":52,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":23,memo:102,key_siz:100,"value\u304c\u5c5e\u3059\u308b\u578b":93,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":100,proxy_cache_valid:8,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":39,longitudexlatitud:113,"\u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831":[],yoshioka:6,libgroonga:[146,3],grn_db_touch:[138,71],were:[11,3],zsh:165,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:165,grn_invalid_format:2,properli:[6,91,160],katakana:[43,166,136],squar:11,timeuot:17,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":150,"256gbyte":57,normal:[],track:0,beta:36,pair:[109,12,75,43,156,10],"\u304c2\u3064\u306b":162,"143660000x419009000":11,synonym:[96,156,80],"\u6761\u4ef6\u306eand":[],"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[31,95],"\u539f\u56e0":[],shop:[101,129],lexicon:[],"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u3092\u516c\u958b":138,show:[1,2,3,4,40,41,6,91,23,165,96,11,133,12,50,102,38,145,113,161,64,97,153,85,66,160,117,119,120,27,122,151],"javascript\u306e\u5f0f\u306b\u4f3c\u305f\u306a\u6587\u6cd5\u3067\u69d8\u3005\u306a\u6761\u4ef6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u62c5\u5f53\u8005":134,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":60,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":60,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u30c6\u30fc\u30d6\u30eb\u540d":[93,31,95],"\u8a08\u7b97\u3057\u305f\u5024\u3092\u7528\u3044\u305f\u30bd\u30fc\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u6587\u5b57\u5217\u3067\u65e5\u6642\u3068\u6642\u523b\u3092\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3067\u3059":162,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":61,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":30,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":138,"\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":150,"column_create\u306f":63,tokyogeopoint:[48,39,29,64,11,23,155],median:66,"\u691c\u7d22\u901f\u5ea6\u304c\u901f\u304f\u306a\u308a\u307e\u3059":[],"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[],wiki:8,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":100,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":61,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":23,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":39,sear:43,enci:150,masahiro:[66,138,113],japan:[64,151,91,117],infinit:[6,23,66,56],enumer:3,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":112,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":100,label:113,enough:[148,67,119],across:11,parent:8,unknown_error:153,column_vector:[38,96,73,12,162,84,113,63,161,151,66],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":21,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[30,86],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u7b56\u65b9\u6cd51":[],recrod:96,"\u3088\u3063\u3066":[39,88],"\u5206\u5272":129,grn_expr_clos:72,nogpgcheck:6,"\u3060\u3068\u539f\u56e0\u306f":112,grn_cache_open:16,among:[],grn_obj_delete_hook:82,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":150,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":150,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":129,inappropriate_i_o_control_oper:153,grn_proc:[],"902\u79d2\u3067\u3059":[],"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":134,gnupg2:134,mark:[166,99,56],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":65,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":18,grn_too_small_offset:2,grn_init:[6,132],senboku:113,i18n:[],those:[96,11,3,4,20,83,142,160,27,119,12,166,75,133,165,99,10,46,106],sound:[166,109],hdd:150,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"8\u306b\u5bfe\u5fdc":138,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":86,advantag:[119,126,27],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":150,brasillia:11,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":150,"1\u3068command":65,pat:[6,99],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],same:[122,96,3,160,73,12,109,113,15,50,102,64,17,9,133,67,166,72,46,8],speech:119,pai:96,"\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":129,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":134,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,grn_command_version_st:103,grn_table_dat_kei:100,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,montywi:99,"\u305d\u3057\u3066":162,grn_address_is_not_avail:2,macro:[23,113,66],markup:74,"drilldown\u7d50\u679c":96,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":15,argument2:133,"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":134,argument1:133,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":68,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":158,"groonga\u306f\u30c6\u30fc\u30d6\u30eb\u9593\u306e\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d\u3092\u9ad8\u901f\u306b\u884c\u3046\u305f\u3081\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],document_vers:134,execut:[78,3,80,120,84,41,6,90,8,9,131,43,66,115,128,101,96,11,133,73,12,136,50,102,51,142,149,55,56,38,59,42,109,145,113,70,161,64,97,104,85,23,67,162,160,117,118,119,93,27,122,151,75,166,91],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":86,"\u65b0\u5bbf\u99c5\u304b\u30895km\u4ee5\u5185\u306b\u3059\u3093\u3067\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3057\u305f\u3068\u3053\u308d":162,monei:38,mcdonald:40,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":107,"root\u306b\u5909\u66f4":138,enable_tokenized_delimit:78,weight2:[6,96,73],"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":68,"\u697d\u3057":[61,129],value_column:108,grn_table_delete_by_id:100,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":100,evaluated_valu:131,either:[0,96,133,113,85,67,160],"\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":86,rinse_1:134,quantal:[6,134],"\u3069\u3061\u3089\u306e\u30af\u30a8\u30ea\u6587\u5b57\u5217\u3082":80,operation_not_support:153,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":134,ascend:[64,40,3,96,117],testdb:[150,55],"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":100,confirm:[],table_no_kei:[],valuebuf:35,str_length:34,"\u30cb\u30c3\u30dd\u30f3":43,event_typ:163,broken:[6,23,113],regexp:66,"128452975x503157902":[12,38,64,91],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":86,"_set_valu":99,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u6295\u7a3f\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,"x\u306e\u304a\u77e5\u3089\u305b":[],"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":138,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":134,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":134,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u3068query\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u7570\u306a\u308b\u70b9\u306f":[],"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":39,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":137,strip:97,"tomita\u3055\u3093\u304c\u5831\u544a":138,yyi:106,"\u540c\u6642\u306b":121,grn_ctx_batch_mod:66,complianc:8,"\u5358\u8a9e\u306e\u91cd\u8981\u5ea6\u306a\u3069\u3092\u4fdd\u6301\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":88,"\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":150,"\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":30,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":68,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":134,arugment1:133,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":150,hsiomaneki:162,possibl:23,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":134,embed:[119,156,8,41,27],"1_all":134,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":139,file:[],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":138,fill:[118,133],again:[101,66,8,17],field:84,location_in_groonga:122,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":150,architectur:[119,134],resolut:[],sequenc:[160,109,136,113,132,153,75,43,23,133],goo:[160,133],"\u30bf\u30b0\u691c\u7d22\u306fgroonga\u306e\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u3044\u3046\u30c7\u30fc\u30bf\u69cb\u9020\u3092\u7528\u3044\u3066\u9ad8\u901f\u306b\u884c\u308f\u308c\u307e\u3059":[],"6gib":124,konishi:113,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":100,escal:[],"\u5168\u6587\u691c\u7d22\u306e\u30b9\u30b3\u30a2\u3092\u4e71\u6570\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3044\u307e\u3059":[],unload:6,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":39,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":70,"x\u3067\u306frealloc":138,descript:[],escap:[],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":138,represent:[110,106,72,73],forget:73,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[99,160],suno:66,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],file_too_larg:153,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":82,libmsgpack:[135,13],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc":80,"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":134,"\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":96,objnam:[31,95],grn_op_and:[94,60],grn_op_or:[94,60],"geopoint\u578b\u306e\u30ab\u30e9\u30e0\u3067\u691c\u7d22\u3092\u3057\u307e\u3059":162,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30e6\u30fc\u30b6\u30fc\u540d\u3092\u683c\u7d0d\u3059\u308busername\u30ab\u30e9\u30e0":[],"\u3053\u3053\u3067\u3082":61,offlin:[],util:8,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":138,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":65,sub_filt:[],hottolink:36,grn_hook_set:82,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":114,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3057\u307e\u3059":86,puropos:78,"\u305d\u308c\u3092\u65e7ji":137,zero:[96,127,73,12,153,166,156],further:12,"sortby\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u306f":[],"\u3053\u3053\u3067\u306f":[61,162],aba:[64,3,117],"drilldown_offset\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":96,grn_info_typ:35,"\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":112,fffe:78,tokenbigramignoreblanksplitalphadigit:32,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u5225\u306e\u30ab\u30a6\u30f3\u30c8\u3092\u51fa\u3057\u307e\u3059":162,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":114,"public":[66,134],"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":86,"\u6e96\u5099":[],valu:[],grn_table_setoper:100,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":21,narrow:[],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u95a2\u4fc2\u5f0f\u306f":60,commands_table_cr:93,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":137,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":137,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":155,establish:[3,91],distinct:[57,118],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":134,regist:[],libev:[165,135,13,99],"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"check\u30b3\u30de\u30f3\u30c9\u306f":114,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u521d\u306e\u66f8\u304d\u8fbc\u307f":162,"\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":150,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":63,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":137,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,jsonp:118,desin:126,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":138,none:[96,78,120,153,86,163,8,67,165,56],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":158,hour:[132,17,133],dev:[134,13,113,22,6,135,66,23,157],grn_set_default_encod:110,"\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:[132,113],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":138,deb:[134,13,113,6,135,66,23],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":61,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":134,share:[16,38,119,86,113,22,6,8,23,67,165,17],shard:83,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":60,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":137,minimum:[34,147,116,133,13,135],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[29,155],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],strlen:34,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":108,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":129,secur:[],"\u691c\u7d22\u7d50\u679c1":96,"13\u7528rpm\u306e\u63d0\u4f9b":138,needl:60,grn_command_vers:[],number2:133,number1:133,"\u672c\u6587\u306emessage\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059":[],mariadb:113,associ:[34,38,96,3,12,50,151,23],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":134,"\u691c\u7d22\u7d50\u679cn":96,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":143,"\u3053\u306e\u578b\u3067\u306e\u5024\u306e\u6307\u5b9a\u306f":162,hypertext:[],no_buff:153,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":61,through:[119,8],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u4ee5\u4e0b\u306e\u4f8b\u3067\u306f":162,"\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":52,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"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":100,good:[96,78,160,119,101,133,67,165,106],"tokenmecab\u3067\u306f":61,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":134,grn_get_lock_timeout:17,grn_obj_vector:68,"_valu":[52,108,113],rank:3,"db\u3068\u306a\u308a\u307e\u3059":71,comamnd:46,micro:[12,133],name_2:[3,91],name_1:[3,91],hard:124,idea:96,"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":137,connect:[6,3,91],rlimit_nofil:[132,113],"127678039x502643091":162,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":134,flower:12,"\u672c\u6765\u30e6\u30fc\u30b6\u304c\u5fc5\u8981\u3068\u3059\u308b\u7d50\u679c\u3092\u3088\u308a\u3082\u308c\u306a\u304f\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":80,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":134,"release\u306e\u5b9f\u884c":[],print:91,name_s:[34,108,53,15,100,68,72,45],hemispher:6,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":60,entries_content_index:[124,96,160,133],"975mbyte":150,omit:[96,78,3,4,83,9,122,11,43,23],"\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":134,grntest:[6,23,138,134,92],"tokenmecab\u306e\u5834\u5408":61,tritonn:[96,160,133],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":100,suggest_prepar:[43,136,109,75],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":112,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":86,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":30,stack_over_flow:153,"\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":39,stabl:[136,65],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[100,68],"indexbuf\u306e\u30b5\u30a4\u30ba":108,"com\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":134,"5th":96,construct:[],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":141,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":61,"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":100,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":61,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:23,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":60,pari:11,selector:6,part:[3,12,119,27,122,165],pars:[110,72,142],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":100,"\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":134,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3092\u4f7f\u3063\u3066":[],"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":30,"\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":112,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":150,"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":129,"\u30c6\u30fc\u30d6\u30eb":95,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":60,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":61,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":114,consol:8,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":62,built:[],build:[],tool:[],distribut:[147,116,134,13,6,135,90,123,66,165],"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],previou:[6,12,67,113,117],chart:23,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":58,most:[96,48,3,73,12,26,15,46],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":68,myisam:119,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],groonga_log_level:[],grn_plugin_mutex:34,cas_error:153,roughli:12,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":129,"\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":157,carefulli:73,"bom\u4ed8\u304dutf":138,find:[166,3,109,100,145,75,27,41,119,136,51,90,111,43,76,165,106],grn_no_such_process:2,grn_index_cursor_open:107,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":71,grn_logger:6,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":30,grn_obj_defrag:68,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":158,"\u30bf\u30b0\u691c\u7d22\u306f":[],rest:[34,156],"\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":80,restart:[],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":150,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":61,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":150,map_hugetlb:23,common:[96,160,83,13,6,100,142,137,23,67,133,56],table_cr:[],grn_api:72,"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":100,grn_interrupted_function_cal:2,"status\u30b3\u30de\u30f3\u30c9\u306f":70,lion:6,"\u521d\u671f\u5024\u306f10\u3067\u3059":158,reserv:63,blog_cont:161,"00\u4ee5\u524d\u306b\u66f8\u304b\u308c\u305f\u30b3\u30e1\u30f3\u30c85\u4ef6\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":150,"\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":96,gemfil:6,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":150,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":157,network_is_down:153,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":61,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3059\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":[],point:[],hideki:113,shutdown:[],"geo_distance\u95a2\u6570\u306f":[],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":61,"\u6587\u5b57\u5217\u3067\u306e\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3092\u884c\u3044\u305f\u3044\u5834\u5408\u306b\u306f":[],weight_in_match_column:73,indexblog2:67,secret:134,indexblog1:67,"\u4ee5\u4e0b\u3067":61,gat:[64,3,117],understand:[96,3],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":65,bill:[61,129],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":129,opear:133,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":114,anonym:83,gb87d9f8:4,everyon:91,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":60,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":150,"\u6c11":129,itself:[160,78,156,113,73],cento:[],"\u65b0\u305f\u306a\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3059\u308b\u6642\u306e\u307f\u6709\u52b9\u3067\u3059":86,"\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":134,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":129,"\u306b\u3088\u3063\u3066\u7b97\u51fa\u3055\u308c\u308b\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":96,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":60,res2:100,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":61,inv_thread_column:150,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":141,keyr:[6,135],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":21,"\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":61,task:[6,119],sortbi:[],entri:[161,50,96,89,160,141,82,145,62,113,41,16,63,151,139,104,133,124,67,31,95],parenthes:3,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":150,spend:[160,133],"build\u3092\u7528\u3044\u3066":157,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":58,shape:40,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":150,"\u3053\u306e\u64cd\u4f5c\u306f":100,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":141,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":60,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":134,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":30,bin:[165,90],key_column:108,big:8,"\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":138,tokendelimitnul:[149,32],"\u30c6\u30fc\u30d6\u30eb\u3078\u306e\u53c2\u7167\u306e\u914d\u5217\u30c7\u30fc\u30bf\u3092\u7528\u3044\u308b\u3053\u3068\u306b\u3088\u3063\u3066":[],"\u6c38\u7d9a\u7684\u306a":68,bit:[147,116,160,135,20,13,150,12,90,123,133,69],"\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":39,semi:[23,56],groogna_default_command_vers:46,followe:162,often:85,sji:[165,36,86],grn_ctx_set_fin:15,back:8,"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8\u306b\u304a\u3051\u308b\u53cb\u4eba\u95a2\u4fc2\u3092\u9006\u5f15\u304d\u691c\u7d22\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0\u3067\u3059":162,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":100,scale:[119,46],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":150,per:[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":96,substitut:[102,96,106,160,69],larg:[160,12,83,6,119,124,133,46,56],"\u304c\u8fd4\u3055\u308c\u307e\u3059":68,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":95,reproduc:113,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,"\u305d\u308c\u3067\u306f":162,"\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":60,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":114,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":130,grn_default_logger_get_path:6,grn_expr_compil:72,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":95,"\u30c6\u30fc\u30d6\u30ebterm\u306b":63,"\u3068\u5165\u529b\u3057\u3066\u3082":80,nsi:134,"\u6a19\u6e96":[5,21,95,93],pair_dataset:[163,75],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":39,includ:[59,78,3,133,74,84,96,120,27,113,122,51,85,9,131,66,156,116,46],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":29,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":157,str_size:72,translat:[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":134,default_command_vers:[91,70,3,4,8],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":100,soundkitchen:[6,23],grn_tabl:[],"\u3068\u306a\u308a\u307e\u3059":[],"\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u4e00\u89a7":162,no_space_left_on_devic:153,curl:[165,4,118,6,8,77,46,69],"\u30b3\u30e1\u30f3\u30c8\u3092\u66f8\u3044\u305f\u30e6\u30fc\u30b6\u30fc":162,"\u305d\u308c\u305e\u308c\u306b\u3064\u3044\u3066\u7d50\u679c\u30ec\u30b3\u30fc\u30c9\u3092\u51fa\u529b\u3057\u307e\u3059":96,"\u5168\u6587\u691c\u7d22\u304c\u9ad8\u901f\u306b\u884c\u3048\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":[],"\u90fd\u6c11":[61,129],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":60,"\u6587\u5b57\u5217\u578b\u3092\u4e3b\u30ad\u30fc\u3068\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":[],"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":65,"\u3042\u308b\u7bc4\u56f2\u5185\u3067\u66f8\u304b\u308c\u305f\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,"\u30c7\u30fc\u30bf\u578b":[],libwinpthread:66,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":134,grn_column_renam:108,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":96,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":150,"\u3053\u306e\u4f5c\u696d\u306f":134,"tokenbigram\u306a\u3069":61,ellip:[11,155],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"\u95a2\u6570\u3082\u5b58\u5728\u3057\u307e\u3059":[],getaddrinfo:6,jason:128,"\u5f62\u5f0f1":[30,86],"\u5f62\u5f0f2":[30,86],"\u308d\u3086\u304d":128,"\u4e21\u65b9\u306e\u6761\u4ef6\u3092\u6e80\u305f\u3059\u30b3\u30e1\u30f3\u30c8\u304c1\u4ef6\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":108,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":134,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":134,grn_db:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":70,fatal:66,db_path:[91,30,3,4,8],comment_cont:161,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":134,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":39,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,geograph:[12,11],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":7,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":39,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[31,95],"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":86,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":134,"0x0":[12,39,99],object1:133,object2:133,carlo:[51,115],append:[6,72],"\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":129,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":65,"video\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":[],access:[],"32gib":124,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":158,interrupted_function_cal:153,"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":68,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":138,vertic:56,sinc:[101,11,108,147,12,86,6,132,122,133,56],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":114,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,"\u3053\u306e\u30ab\u30e9\u30e0\u306f":162,grn_resource_deadlock_avoid:[2,68],grn_too_large_offset:2,"\u30bf\u30b0\u6587\u5b57\u5217\u3092\u4e3b\u30ad\u30fc\u306b\u683c\u7d0d\u3057":[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":86,"\u3042\u308b\u5730\u70b9\u304b\u3089\u4f55m\u4ee5\u5185\u306b\u5b58\u5728\u3059\u308b":[],"\u30c6\u30fc\u30d6\u30eb\u4f5c\u6210\u6642\u306b\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":[],groonga_github_com_path:134,"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":134,ii_buff:18,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":138,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":134,name2:133,name1:133,account:22,"\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":65,alic:[96,160,102,51,8,85,115,46],obvious:12,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":134,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":129,fetch:[67,75],abcd:120,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":138,commnad:[65,90],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":45,"\u6295\u7a3f\u5834\u6240":162,onlin:[],users_loc:162,grn_ii_buffer_commit:18,surfac:40,groonga_n_record:113,afr:[64,3,117],"\u30b3\u30de\u30f3\u30c9":[],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":63,inst:113,physic:114,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":137,bind:[146,36,145,86,41,6,142,23,69],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u306eindexblog1\u30c6\u30fc\u30d6\u30eb\u3082\u4f5c\u308a":[],correspond:[166,109,136,75,43,68,10],"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":68,grn_geo_select_in_circl:23,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":138,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":138,hiroshi:23,replies2:67,"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":134,"\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":134,meter:[64,11],report:[],cflag:[20,134],"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":100,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":15,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":93,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":155,euc:[86,113],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":150,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":100,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":60,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":86,nvar:45,spell:156,dai:[101,132,133],dat:[6,99,113],mention:161,rubygem:6,"8\u30ea\u30ea\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":150,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":134,grn_table_lcp_search:100,"tomotaka_ito\u3055\u3093":23,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":61,column_index:[38,96,3,80,73,61,162,84,27,41,101,63,102,161,85,124,67,133,145,160],"\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":31,"\u306e\u66f4\u65b0":[],normalizerauto:[],"\u3067\u3042\u308c\u3070":150,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":68,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":134,stub:66,rel:[23,96],"\u30ab\u30ec\u30fc":129,red:[],"\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":61,frank:85,standalon:55,test_loc:150,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":86,groonga_log_path:[],"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":138,"\u767b\u9332\u3057\u3066\u307f\u307e\u3057\u305f\u3088\u30fc":162,tokenizer_error:153,"tag\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u307e\u3059":[],natti:[23,134],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":61,monkei:12,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":134,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":150,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[91,70,3,4,8],"\u6295\u7a3f\u8005\u306f":162,ipad:147,"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":86,structur:[119,83,38,122,66],charact:[34,78,3,160,109,156,132,86,27,41,113,6,119,166,120,66,23,133,72,145,56],"\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":128,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":114,have:[126,2,3,167,84,40,8,127,165,46,50,96,133,74,136,101,106,109,156,166,160,119,122,12,75,124,56,91],close:[50,83,145],"\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":86,"\u5927\u91cf\u306e\u4f4d\u7f6e\u60c5\u5831\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3059\u308b\u5834\u5408\u306b":[],min:[],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":150,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":108,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":134,mix:[136,73],builtin:11,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":68,gurun:142,bottom_right:[23,29],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":31,"\u6e2c\u5730\u7cfb":39,"takahiro\u3055\u3093\u304c\u63d0\u6848":138,grn_plugin_init:34,mail_column:150,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":60,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":157,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":129,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":61,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":96,"grn_bool\u578b\u3092\u8ffd\u52a0":138,"groonga\u306e\u30c6\u30fc\u30d6\u30eb\u306f":[],"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":134,elfr:6,"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u3068\u308a\u307e\u3068\u3081\u3066":96,"\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":60,grn_ii_buffer_append:18,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":61,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":128,escaped_str:72,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":71,integr:[6,12,113,69],"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":134,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u3053\u3068\u304c\u51fa\u6765\u307e\u3059":[],"\u691c\u7d22\u3092\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":134,your_new_db:23,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":61,pattern:[122,119,133],"\u304c\u66f8\u304d\u8fbc\u3093\u30604\u4ef6\u306e\u30b3\u30e1\u30f3\u30c8\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":157,progress:132,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":150,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":53,plugin:[],shorttext:[3,80,83,39,86,41,91,43,93,115,128,96,48,133,73,12,136,101,102,51,141,84,56,38,109,61,145,150,63,161,64,11,85,67,97,160,117,162,27,122,151,75,124,166],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":86,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":114,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":103,equat:11,grn_permission_deni:2,comment:[162,113,161,141,67,156],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":82,"1\u3064\u306f":[],log_repoen:6,test_str:157,"hook\u306e\u5b9f\u884c\u9806\u4f4d":82,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":86,json:[],grn_obj_table_no_kei:[137,100],grn_table_group_flag:100,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":157,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":86,"\u4f8b\u3048\u3070":[128,61,150,129,86,88,68],bulk:72,multi:[],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":39,plain:97,defin:[3,133,163,101,153,156],buildabl:23,replies_cont:67,ill:129,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":157,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],almost:[23,124,148],caplit:[66,113],grn_plugin_mutex_open:34,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":150,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":134,too_many_open_files_in_system:153,japanes:[0,160,119,22,6,66,43,133,106],"pc\u306bgroonga":130,auth_bas:[8,46],optarg:[94,71],hostnam:[150,86,6,8,30,91],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":63,column_nam:50,grn_column_name_key_len:108,document_index:[145,41],"\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":134,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22":[],center:[119,155],builder:18,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":134,choos:[12,50,8],error_cod:34,update_not_allow:153,"1byte":153,latest:[],unari:113,"\u4eca\u5ea6\u306f":162,"5\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,takayuki:23,gmo:66,"30ac":166,lake:40,add:[],successor:133,grn_ctx_at:[6,15],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":114,grn_obj_table_pat_kei:[137,100],"\u3067\u306f\u306a\u304ffree":138,grn_obj_path_by_id:[68,99],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":71,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":68,substit:96,"\u8ffd\u52a0\u306e\u5c5e":63,qwik:141,insert:[6,3,27],like:[],success:[],grn_obj_id:68,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":68,"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":39,"\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":138,"com\u304cedge\u3092\u4f5c\u308b":121,socket_is_already_shutdown:153,soft:124,snippet_html:[],normalizer_list:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":141,"\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":60,specfi:48,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":71,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":141,proper:122,grn_column_cr:108,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":150,tmp:[3,134,118,136,84,86,113,51,91,93,156,46],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":150,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u5f62\u5f0f":30,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":61,"\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":61,"repositories\u914d\u4e0b\u306b":134,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":61,host:[23,150,91,69],although:8,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":134,"\u30c0\u30e1\u30fc\u30b8":61,sbin:77,actual:[12,3,8,113],socket:6,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":15,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":108,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":150,"mooz\u3055\u3093\u304c\u4fee\u6b63":23,lifecycl:69,"\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:38,fals:[1,160,134,161,12,39,113,63,102,51,151,85,133,115,145,128],discard:113,groonga_path:150,"\u51fa\u529b\u3059\u308b\u30ab\u30e9\u30e0\u540d\u306e\u30ea\u30b9\u30c8\u3092\u30ab\u30f3\u30de":96,"\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":60,dataset:[],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":61,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":134,"\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":134,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":61,conbind:160,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":96,daijiro:162,rch:78,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":65,"\u691c\u7d22\u3059\u308b\u6587\u5b57\u5217\u306fquery\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u307e\u3059":[],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":52,glib:113,unexpect:[6,66],"\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":39,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":108,uninstal:6,bug:[],grn_obj_set:68,"\u3068\u3044\u3046\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059":[],binlib:134,"point\u578b\u306e\u5024":[29,155],quickli:101,"\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":139,epel:[6,116],"shimada\u3055\u3093":138,colum:[124,67],dure:[6,3],pid:[23,1,165,86],saer:[136,109],grn_too_small_limit:2,implement:[59,36,133,83,96,6,11,8,66,131,23,167,106],pip:111,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":143,probabl:136,"\u305f\u3060\u3057":[137,30,129,52,86],detail:[34,126,78,3,84,6,8,9,132,165,147,96,73,12,13,102,106,150,113,64,66,116,117,119,135,124,76,56],virtual:113,comment_nam:161,grn_expr_create_for_queri:60,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":150,engi:[43,136],is_a_directori:153,log:[],"\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a":[],"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[137,107],grn_obj_flag:[34,53,100,72,108],"\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":60,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":125,"drilldown_offset\u306b\u8ca0\u306e\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":96,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":60,"\u306e\u30ab\u30e9\u30e0\u306e\u5024\u304c\u7f6e\u63db\u5f8c\u306e\u6587\u5b57\u5217\u3068\u306a\u308a\u307e\u3059":80,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":61,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":134,tweet:[101,22],"\u4e21\u8005\u306e\u6761\u4ef6\u3092\u3068\u3082\u306b\u6e80\u305f\u3059\u30ec\u30b3\u30fc\u30c9\u304c\u7d50\u679c\u3068\u3057\u3066\u8fd4\u308a\u307e\u3059":[],"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":65,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":61,under:[118,165,8,46,55],everi:117,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":86,"24byte":153,grn_encoding_to_str:110,not_a_directori:153,x86_64:[116,134],zlib:[],naiv:117,not_enough_spac:153,"push\u3057\u3066groonga":134,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":108,aim:113,hide:113,introspect:6,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":68,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":60,"82pre":36,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"\u7fbd\u7530":162,grn_tokenizer_query_open:6,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":157,studio:[6,90,113],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":138,httprewritemodul:8,"\u95a2\u4fc2\u5f0f":[],tasukuchan:162,functin:133,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],precis:[122,3,134,119,13,6,43],"\u306e3\u30d5\u30e9\u30b0\u306f":137,"\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":130,orilldown:117,portabl:[23,8,113],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":60,"\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":68,describ:[34,0,78,3,120,84,40,90,131,43,165,115,147,96,97,133,73,164,13,50,51,104,111,144,56,146,59,109,20,161,153,67,156,69,116,166,160,25,26,122,135,123,75,124,76,106,77],noarch:[147,116],"groonga\u306e\u7d44\u8fbc\u578b\u304b":63,namebuf:[68,108],autogen:[6,134,106],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":39,"msg\u306fcom\u306b\u3088\u3063\u3066":121,chracter:[166,27,56],"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":60,"grn_op_but\u306f":60,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":39,join:22,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":129,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":155,overrid:165,enourm:75,end:[158,133,11,4,160],eng:[43,136],hiragana:[43,160,133],env:156,rroonga:[161,145,113,41,16,102,142,66,67,69],tablenam:65,grn_set_default_command_vers:103,befor:[96,3,73,12,99,109,6,8,9,43,165,156,10,104],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":65,parallel:119,"\u540c\u4e00\u306e\u8a18\u6cd5\u3067\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],exclud:[6,50,113,85],environ:[116,99,113,90,8,123,23,165,156,69],enter:[3,91,113],composit:166,over:[148,145,113,6,91,119],"\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":134,becaus:[126,3,4,83,6,8,9,43,10,46,147,96,133,12,101,102,51,56,38,109,63,161,153,85,66,67,156,160,118,119,27,122,75,124,166,167],london:11,"\u3053\u306e\u9805\u76ee\u306b\u3064\u3044\u3066\u306f":88,gqtp:[],"\u304bwgs84geopoint":[29,155],digest:46,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":107,"\u8aac\u660e":[],"\u95a2\u6570\u3092\u7528\u3044\u308b\u3053\u3068\u306b\u3088\u308a":[],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":138,"\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":129,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":138,oneir:[23,113,134],"\u7d4c\u7def\u5ea6\u306f\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u306e\u5f62\u5f0f\u306e\u6587\u5b57\u5217\u3068\u3057\u3066\u6307\u5b9a\u3057\u307e\u3059":[],"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":60,choic:119,grn_pat_at:138,"title\u3068message\u306e2\u3064\u306e\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u5171\u901a\u306b\u306a\u3063\u3066\u304a\u308a":[],each:[],searc:43,colleagu:76,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"groonga\u306e\u30ab\u30e9\u30e0\u306f":39,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":137,msgpack:[4,46,153],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":65,newli:[16,101,27,119],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":98,got:113,"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":30,"\u69cb\u9020\u4f53\u306e\u914d\u5217":45,"offset\u306f":100,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":30,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":114,"\u53cb\u4eba\u30ea\u30b9\u30c8\u306b\u5165\u3063\u3066\u3044\u308b\u6570\u306e\u4e00\u89a7\u3092\u8868\u793a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":134,"16gib":124,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":150,score_column:108,onto:124,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":137,edit_dist:[],restrict:[6,91,46,113],alreadi:[34,101,78,3,50,17,124,67,165,55],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":68,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":112,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":68,top:[48,117],mercuri:[134,111],too:[12,133,67,113,73],tom:102,"\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":134,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"path\u3092":138,"\u3044\u308f\u3086\u308b\u30bf\u30b0\u691c\u7d22\u3092\u884c\u3046\u3053\u3068\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":[],tood:34,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":[96,141],"groonga\u3067\u306f":[80,88],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":93,user_ag:85,wareohji:6,grn_obj_set_valu:[137,68],ga54c5f8:150,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":23,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":134,expr:72,obata:[23,138,113],"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5b9f\u969b\u306b\u6587\u66f8\u30c6\u30fc\u30d6\u30eb\u3068\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u3066\u307f\u307e\u3057\u3087\u3046":80,thu:[160,119,163,64,67,55],rab:[64,3,117],ran:43,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":93,ram:150,raw:[113,69],"\u30b0\u30cb\u30e3\u30e9\u304f\u3093":162,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":61,with_sect:[63,66,67,84,162],unresolv:23,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":129,hanako:151,bad_file_descriptor:153,contact:106,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":134,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[100,108],"message\u30ab\u30e9\u30e0\u306e\u307f\u3067\u306e\u691c\u7d22":[],"\u4ee5\u5916\u306b":80,though:[6,43,67,113,119],"\u3044\u307e\u3059":112,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":150,bsd:[23,165],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":100,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":60,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":[],"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":134,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":150,mininum:126,flow:[],abbrev:11,radix:133,"0\u30d9\u30fc\u30b9\u3067":[137,100],abl:27,random:64,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":65,pkg:[116,20,138,6,23,165],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,"\u3067\u4f5c\u6210\u3057\u305f":15,"\u3082\u3057\u304f\u306f":[137,39,100],absolut:9,top_left_point:48,configur:[],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":134,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":68,"\u3092\u6e96\u5099\u3057\u307e\u3059":80,"\u542b\u3081\u308b\u3082\u306e":134,item_queri:[43,136,109,163,75],watch:134,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":86,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":63,normalized_text:120,"\u6771\u4eac\u90fd\u306b\u4f4f\u3093\u3067\u3044\u308b":162,"\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":70,method:[3,8,113],twice:[96,160],hendro:113,contrast:[102,3,8,119],"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":138,"\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":158,"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":96,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":54,"\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":128,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":134,nul:[34,23],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":60,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":137,grn_plugin_error:34,databas:[],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":150,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":68,no_such_file_or_directori:153,algolithm:142,"\u30bf\u30a4\u30c8\u30eb\u6587\u5b57\u5217\u306etitle\u30ab\u30e9\u30e0":[],approach:11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":86,"\u683c\u7d0d\u3055\u308c\u307e\u3059":162,weak:[119,27],"\u3053\u306e\u7d50\u679c\u3092\u898b\u308b\u3068":[],grn_invalid_argu:[137,100,2,68],fault:6,"4gib":[83,153],"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":39,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u691c\u7d22\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":162,"\u3053\u306e\u4f8b\u3067\u306f":[162,80],"_score\u306e\u5024\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":162,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":134,grn_table_pat_kei:100,trust:134,id_column:108,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":86,evalud:131,been:[51,134],"\u3072\u308d\u3042\u304d":128,accumul:96,geo_distance2:[23,11],geo_distance3:[23,11],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":134,tokenmecab:[6,61,149],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":100,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,xxx:[86,113,133],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":108,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":150,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,surrond:[],"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":129,"grn_op_or\u306f":60,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[100,108],suggest:[],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":138,complex:[6,96,113,133],unix_time_when_command_is_start:122,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,niku:66,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":45,complet:[],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":100,sen_index_delimit:36,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[30,86],quotient:133,"groonga\u306b\u306fhtml":30,"\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":134,"\u305d\u306e1\u4f8b\u306b\u3059\u304e\u307e\u305b\u3093":[],via:[6,106,2,75],"\u5024":86,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":121,grn_column_name_valu:108,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":30,ceekz:113,"groonga\u306epackag":134,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":60,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":108,"mooz\u3055\u3093":23,unstabl:[135,99,134],poedit:106,el5:116,escaps:[145,27,41],"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,log_reopen:[],"select\u30b3\u30de\u30f3\u30c9\u306efilter\u30d1\u30e9\u30e1\u30fc\u30bf\u306f":[],"\u7d44\u8fbc\u95a2\u6570\u306f":[159,29,98,155,58],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":138,"\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":134,line_cont:122,grn_op_but:60,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":60,surround:[6,145,27,41],dinner:119,ppa:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":35,"\u578b":53,encod:[],two:[0,126,78,3,84,40,8,132,46,96,11,15,102,55,56,38,109,113,63,161,64,67,160,117,120,27,122,75,166,72,167],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":23,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":15,version4:65,git:[92,134,106],version1:65,version2:65,version3:65,"\u30d0\u30fc\u30b8\u30e7\u30f3":134,"256gib":57,head:[158,96,8,153],medium:[147,116,13,135,90,123],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":39,removep:68,drilldown_sortbi:[],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":134,deafult:23,autoconf:23,grn_expr_syntax_escape_queri:72,trie:[],decrypt:134,bad_address:153,variabl:[34,133,20,99,84,113,6,12,153,23,66,156],check:[],ongaeshi:[6,113],"clearlock\u306f":95,successfulli:[34,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":114,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":60,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":86,when:[3,6,8,9,43,66,165,96,11,73,136,50,102,111,56,38,113,63,161,97,23,160,118,119,122,76,166,91],groonga_dist:6,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":128,tid:107,saerch:[136,109],node:[6,116,69],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,grn_op_and_not:94,"\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":86,sql:117,faster:[23,165,113],top_left:[23,29],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":52,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":129,backward:[6,46],grn_obj_table_dat_kei:23,"6\u30ea\u30ea\u30fc\u30b9":[],"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":96,focus:3,llt:78,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":155,row:[119,27],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":63,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":134,readabl:99,"\u554f\u984c\u3042\u308a":23,jumand:147,sourc:[],"\u306b\u8a2d\u5b9a\u3059\u308b":134,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":150,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":107,"6elz":66,"\u3092\u8fd4\u3057\u307e\u3059":[82,137,100,68],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":52,level:[34,117,5,86,113,6,7,8,132,66,55,153],brother:160,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":108,slower:[11,117],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":114,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":39,port:[126,36,4,118,150,86,113,91,66,30,77,46,8],repli:67,"sh\u306e\u307f\u306a\u3089\u305a":157,grn_expr_append_const:[60,72],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":158,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":70,connection_refus:153,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":134,"\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":68,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":134,normalizeauto:145,"\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":96,"benchmark\u304c\u52d5\u4f5c\u3057":150,"1st":[96,85],grn_table_cursor_clos:137,"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":98,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":63,"\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":65,grn_obj_clear_lock:[23,68],file_exist:153,memori:[],todai:119,"\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":150,criteria:3,capit:3,target_charact:72,comments2:67,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":138,proxy_cache_path:8,entries_key_index:[124,96,160,133],lc_messag:106,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":155,purpos:[102,3,91,113,73],collaps:6,backslash:[72,113,160],critic:[6,34,165,132],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[],satoh:23,alwai:[153,160,119,84,122,136,8,124,43,133],"\u3053\u308c\u3092\u4f7f\u3046\u3053\u3068\u3067":[],grn_table_update_by_id:100,"users\u30c6\u30fc\u30d6\u30eb\u306efavorites\u30ab\u30e9\u30e0\u306b\u5bfe\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":162,grn_plugin_isspac:34,"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":129,"\u305d\u3057\u3066comments\u30c6\u30fc\u30d6\u30eb\u306ereplied_users\u30ab\u30e9\u30e0\u306f":162,clone:[],"4th":96,"0\u4ee5\u4e0a18":39,repeat:[119,106],key_with_si:[128,133,160,56],"\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":138,ueno:[6,23],inform:[],combin:[],"\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u4e00\u89a7\u306a\u3069":162,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":61,midnight:133,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":150,mainli:66,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":82,normalizermysqlunicodeci:166,platform:[],meridian:11,cutter:[157,134],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":29,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":134,"\u6b21\u306b":[60,80],"\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":[139,86],"output_type\u306b\u306fjson":30,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":68,term:[],name:[],"\u65e5\u3005":112,"\u3053\u3053\u3067\u306f\u30df\u30ea\u79d2\u8868\u8a18\u3067\u767b\u9332\u3057\u307e\u3057\u3087\u3046":[],"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":137,"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":65,"\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":60,no_memory_avail:153,"\u3053\u306e\u578b\u3067\u306e\u5024\u3092\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u306f2\u3064\u3042\u308a\u307e\u3059":162,grn_itoh:23,grn_bool:68,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":138,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3057\u305f\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":162,"base_version\u306ftar":134,"groonga_clone_dir\u306b\u3066autogen":134,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":15,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":63,"\u30af\u30a8\u30ea\u62e1\u5f35":[],compress_zlib:63,"\u6e96\u5099\u3057\u305fsynonym\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u3066\u307f\u307e\u3057\u3087\u3046":80,migrat:[66,96,160,133],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":60,ruby19:[6,134],"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":15,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":86,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":150,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":134,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":96,"\u7def\u5ea6\u7d4c\u5ea6\u5ea7\u6a19\u306e\u305f\u3081":162,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":68,place:[165,22],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":93,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":61,redhat:[23,165],"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":61,"\u6708":162,arrai:[],string_siz:72,given:[6,38,113,102],"\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":134,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":23,domain_error:153,circl:[119,40],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,white:[3,160],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":107,grn_table_add:100,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":100,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":157,copi:[6,34,51],specifi:[],"\u30d1\u30a4\u30d7":63,github:[0,63,134,106,113,6,66,92,23,165,69],enclos:[50,3],pragma:96,serv:[12,66,134],wide:[23,165,3,119],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":68,"\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":138,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":52,"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":134,posix:133,posit:[34,96,2,3,73,84,48,78,66],grn_column_index:108,seri:3,kazuhiko:6,local_nam:141,ann:134,"query_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bselect\u30b3\u30de\u30f3\u30c9\u3092\u4f7f\u3063\u3066\u691c\u7d22\u3057\u3066\u307f\u307e\u3059":80,ani:[59,78,160,161,119,145,96,120,27,41,50,102,8,136,131,165,156,116,46],grn_unsupported_command_vers:2,grn_obj_set_mask:68,n_kei:100,operation_timeout:153,moreov:64,spheric:11,"\u306b\u306a\u308a\u307e\u3059":15,sure:3,multipli:133,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":157,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":134,geoindex:[],time_column:150,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":60,"com\u306f1\u30b9\u30ec\u30c3\u30c9":121,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":86,grn_table_cursor_set_valu:137,permiss:165,sitecountri:[91,117],explicitli:[],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[61,129],written:[111,9],analyz:[6,23,8,119],grn_obj_column_vector:108,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u3092\u6307\u5b9a\u3057":[137,31,95],"45ea3034":132,ssh:134,"\u8a73\u7d30\u306f":[61,30,157],reveal:119,"\u542b\u3081\u306a\u3044\u3082\u306e":134,grn_geo_select_in_rectangl:[23,48],"shibuya\u3055\u3093\u304c\u5831\u544a":138,"\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":134,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":68,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":100,"ongaeshi\u3055\u3093":138,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":39,"\u8b66\u544a\u3092\u9664\u53bb":138,detect:[6,23,78,8,165],"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc":[],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":112,"\u3053\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u308b\u3053\u3068\u3067":162,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":134,dest_kei:100,grn_db_register_by_nam:130,"59\u74b0\u5883\u306b\u304a\u3044\u3066":23,"\u30d2\u30c3\u30c8\u3057\u305f\u30b3\u30e1\u30f3\u30c8\u304b\u3089\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u3055\u308c\u305f\u7d50\u679c\u3082\u8fd4\u3063\u3066\u304d\u3066\u304a\u308a":162,come:40,"\u63a5\u7d9a\u3059\u308bgroonga":150,region:[64,40],quiet:153,reference_vector_column:113,"\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":61,"\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":61,"\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":68,"\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":52,color:166,whombx:113,period:[],pole:11,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":138,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"ueno\u3055\u3093":[138,130],lexicon2:67,item_exampl:43,log_put:[],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":134,frequency_threshold:[23,109,75,136,43],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":138,"s3ki\u3055\u3093\u304c\u5831\u544a":138,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[68,108],"\u5168\u6587\u691c\u7d22\u306b\u7528\u3044\u308b\u305f\u3081\u306e\u8a9e\u610f\u8868\u304c\u30c6\u30fc\u30d6\u30eb\u3068\u3057\u3066\u6271\u3048\u307e\u3059":88,not_socket:153,grn_command_version_max:103,"case":[],"\u3042\u308a\u307e\u305b\u3093":[21,70,143,125,93],cast:[],"\u3068\u3044\u3046\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u8a18\u8ff0\u3059\u308b\u3053\u3068\u3067":162,grn_db_open:71,out_loc:150,favorited_bi:162,grn_expr_alloc:72,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":60,"define_selector\u306f":139,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":100,query_s:72,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":134,saerc:[136,109],"4\u884c\u76ee":150,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":108,author:8,alphabet:[109,78,56],users_index:162,grn_get_default_match_escalation_threshold:54,"\u304c1\u3064\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":162,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":60,html:[],expresss:142,messagepack:[],status:[2,153],nest:[],"com\u306edoc":134,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":86,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":96,"_nsubrec":[38,96,108,117,162,52],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":23,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":137,"po\u306e\u5b9f\u884c":[],overcommit_memori:[],without:[],model:153,"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":138,"\u3067\u78ba\u4fdd\u3057\u305f":15,"groonga\u3092build\u3059\u308b\u969b\u306b":70,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":137,"\u305d\u308c\u305e\u308c\u306e\u7570\u306a\u308b\u8868\u8a18\u306e\u6587\u66f8\u3092\u3082\u308c\u306a\u304f\u691c\u7d22\u3059\u308b\u305f\u3081\u306e\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":80,rose:12,except:[147,59,78,160,73,83,40,27,124,6,8,66,131,23,96,56],blog:[96,133,134,61,101,161,67,160],vulner:66,hino:113,grn_logger_info:6,grn_obj_nam:68,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":86,grn_table_cursor_open:[137,138],consid:[38,67,126,46,56],"\u30e6\u30fc\u30b6\u304c":80,realtim:[136,75],with_typ:120,madrid:11,grn_rc:[34,35,48,108,68,82,18,110,100,15,16,137,103,17,54,94,72,45],rsync:134,grn_cache_current_set:16,freed:[16,66],garbag:[23,113,114,66],inspect:[66,113],tokenbigramsplitsymbolalpha:[61,149,96,78,32],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[68,108],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":71,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":138,"\u8a9e\u5f59\u3054\u3068\u306b\u8907\u6570\u306e\u60c5\u5831\u3092\u4fdd\u6301\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":88,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":65,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":134,tokentrigram:[149,78,32],scorer:[],"\u7f6e\u63db\u30c6\u30fc\u30d6\u30eb\u3067\u306f":80,libmecab:[135,13,134],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":114,rescord:142,strict:66,interfac:[6,118,3,4],chracterist:83,regard:[113,160],grn_obj_key_var_s:53,untag:97,longer:[36,15],notat:[6,113,133],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":68,"\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":65,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":86,"\u6307\u5b9a\u3057\u305f\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u306e\u3064\u3044\u3066\u3044\u308b\u30b3\u30e1\u30f3\u30c8\u306e\u4e00\u89a7\u3092\u51fa\u3059\u3053\u3068\u304c\u51fa\u6765\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":162,grn_expr_creat:72,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":134,"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":138,strongli:[147,116,13,135,90,123],"a\u3092\u6307\u5b9a\u3057\u3066tabl":100,user_column:150,grn_index_cursor_next:[107,113],gettext:106,orient:[12,119,27],remove_tokenized_delimit:120,event_queri:[109,136,163,75,43,55],allow_upd:[96,160],comments_loc:162,directori:[34,118,113,6,8,66,23,165,156,55,106],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1":[],potenti:113,"\u30c7\u30fc\u30e2\u30f3":86,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":15,all:[78,3,83,84,6,8,9,131,43,66,165,46,101,96,48,133,73,50,51,142,106,59,153,85,23,115,166,160,119,132,75,124,56,104],grn_table_column:100,dist:134,"ctx_new\u3068\u3044\u3046queue\u306b":121,scalar:[84,127,73],follow:[34,78,3,4,84,40,41,6,90,8,66,43,165,145,10,46,96,11,133,73,12,136,50,102,51,153,111,149,55,56,57,38,42,108,109,148,132,113,161,64,22,23,156,69,160,117,118,162,120,27,163,122,75,124,106,91],disk:[67,56],ptr:[34,138],item_:136,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":138,init:[6,165,45,113],program:[118,84,113,6,8,55],"\u95be\u5024\u3092\u8d8a\u3048\u308b":61,liter:[],"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":61,libgcc_s_sjlj:66,rand_max:58,systemctl:126,failur:[6,17,134],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":52,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":137,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":86,longtext:[39,48],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":134,"\u52d5\u753b\u306e\u60c5\u5831\u3092\u4fdd\u5b58\u3059\u308b":[],"\u304a\u3088\u3073":134,"\u5e74":162,"help\u3067\u51fa\u529b\u3055\u308c\u308b":23,yappo:[66,36,113],tex:78,rate:[113,85],design:[6,12,96],sug:10,what:[136,72,161],sub:[119,134],sum:96,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":108,themselv:[156,106],noraml:78,bottom_right_point:48,behaviour:113,solari:[],cutter_check_leak:157,n_var:34,grn_ctx_init:[23,15],serihiro:6,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":21,memcach:[],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":39,matsuu:138,grn_bad_address:2,gtihub:23,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":112,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":61,tokenunigram:[149,32],"\u30ea\u30ea\u30fc\u30b9\u65e5":134,deprec:[96,65,86,113,6,11,66,23,56],ocelot:[23,113],suddenli:113,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[23,138],"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":134,"\u4ee5\u964d\u3092\u7121\u8996":138,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":138,"\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":39,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":139,grn_syntax_error:2,src_key_siz:100,flag:[],"\u306e\u7d4c\u7def\u5ea6\u3092\u4fdd\u5b58\u3057\u307e\u3059":[],"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":94,known:[3,133,119,27,113,91,165],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":82,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":39,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":86,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":95,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":150,tahr:[66,13],"\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":139,cours:117,newlin:[23,99],divid:[12,119,133],rather:[101,84,96,73],rep_loc:150,divis:[],"\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3057\u305f":162,resourc:[101,66],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[31,95],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":108,overcommit:124,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":108,"\u6307\u5b9a\u3059\u308b":71,resours:16,"request\u3092\u9001\u308a\u307e\u3059":134,"\u5168\u6587\u691c\u7d22\u3092\u884c\u3063\u305f\u7d50\u679c\u306e\u5404\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u51e6\u7406\u3092\u884c\u3046\u305f\u3081\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3067\u3059":[],"short":[8,73],geo_dist:[],caus:[160,12,113,6,66,23,133,56],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":68,mailarch:134,yahppo:113,grn_table_trunc:[23,100],logal:69,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":100,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":138,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"7\u30ea\u30ea\u30fc\u30b9":[],"\u4f4d\u7f6e\u60c5\u5831\u30ec\u30b3\u30fc\u30c9\u3092\u7528\u3044\u3066\u30bd\u30fc\u30c8\u3059\u308b\u5834\u5408\u306b":[],soccer:38,"return":[],do_loc:150,grn_table_sort_asc:100,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":60,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":108,ff9e:166,innodb:119,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":125,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":89,friendship:38,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":134,grn_text_vprintf:66,weight:[],needless:[6,99,113],yoshida:113,expect:[12,66],"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":100,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":68,"\u7def\u5ea6":162,socket_is_not_connect:153,"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":134,footnot:[11,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":155,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":23,"\u5b9f\u969b\u306b\u691c\u7d22\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],advanc:[],differ:[0,96,11,4,118,12,160,6,102,64,66,67,133,46,56],content_type_len:6,thread:[34,118,119,86,113,15,132,46],"\u306exml\u51fa\u529b\u5bfe\u5fdc":138,"\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":60,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":100,grn_selector_func:66,"apt\u306e\u5834\u5408":134,groonga_database_auto_cr:[],blank:166,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":150,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":129,"\u691c\u7d22\u3092\u884c\u3044\u307e\u3057\u3087\u3046":[],gpl:36,"\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":138,script:[],goronga:90,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":134,gpg:134,exclude_t:113,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":157,"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":129,"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":129,statement:133,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":134,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"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":134,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[68,108],"\u4e16\u754c\u6e2c\u5730\u7cfb\u3067\u306e\u4f4d\u7f6e\u60c5\u5831\u3092\u4fdd\u5b58\u3057\u3066\u307f\u307e\u3057\u3087\u3046":[],kind:[119,64,3,117],remot:[],remov:[20,113,6,12,151,8,9,23,66,68,99],rep_http:150,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":150,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":157,well:[119,113,27,91,165,8],ruby_ev:[],expir:[8,104],"\u7d4c\u5ea6\u304c139\u5ea646\u520627":[],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":150,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":39,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":138,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":86,"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":159,operation_would_block:153,function_not_impl:153,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":52,reach:124,"\u30e1\u30fc\u30c8\u30eb":155,grn_obj_incr:68,latitude_in_degre:133,"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":100,grn_column_name_kei:108,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":61,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[89,5,62,7,139,21,95],penalti:113,firewood:[6,113],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":15,underflow:12,grn_plugin_fre:34,hit:[96,113,142],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":39,pair_queri:[43,136,109,163,75],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":100,obtain:34,longest:[23,100,133],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":30,"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":61,grn_column_name_nsubrec:108,grn_obj_persist:[100,108],"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":129,grn_success:[34,96,2,15,16,17,132,72],"\u6570\u5024":129,"\u30b3\u30df\u30c3\u30c8":134,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],art:133,dump:[],highight_ful:145,arc:78,tobbi:102,grn_obj_with_weight:108,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":108,"\u524d\u8005\u306f\u65e5\u672c\u6e2c\u5730\u7cfb":[],grn_table_differ:100,"\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":138,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],korea:117,"\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":61,succeed:[2,3,63,151,115,165],"com\u3078\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332":[],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":138,solv:12,solr:133,socket_not_initi:153,grn_table_get:[100,99],threashold:[61,138],"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":39,context:[27,16,161,8,23,68],"1x139":12,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":108,grn_table_sort_flag:100,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":86,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":65,additional_configure_opt:113,"\u5f93\u3063\u3066":96,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":82,f10399c0:134,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":39,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":155,conifugr:69,grn_file_exist:2,beforehand:147,close_tag1:145,demand:126,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":150,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":121,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":150,nakai:113,behavior:[6,66,85,102],input_file_nam:122,xvzf:[147,116,20,13,135,165,77],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":61,"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":150,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":134,rid:18,"\u540c\u69d8\u306b":[],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":150,minim:[8,85],grn_obj_column:68,grn_column_t:108,"\u5065\u4f5c":38,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":138,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":39,higher:[136,96],"\u975e\u4e92\u63db":23,x86:[23,90],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":114,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":150,"\u3067\u6271\u3063\u3066\u3044\u307e\u3059":162,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":129,"\u3092\u6307\u5b9a\u3057\u3066\u3044\u307e\u3059":[],lower:[96,78,3,56],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":150,searchabl:101,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":100,propos:[96,10],"\u3042\u308b\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3057\u307e\u3059":162,table_:[83,56],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":58,"3\u884c\u76ee":150,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":60,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":139,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":68,grn_plugin_get_system_plugins_dir:23,table2:100,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":60,gem1:134,table1:100,docutil:[134,111],retry_max:153,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":134,collect:[122,119],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":100,"\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":134,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":60,"\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":65,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":65,invalid_format:153,"log\u3067\u3059":86,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[35,71,82,68,45,105,108],blog_titl:3,retri:17,necessari:[23,3],leftmost:133,form_1:3,form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":[],squeez:[113,134],maximium:96,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":137,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":15,dialog:113,lager:113,"\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[],grn_cache_current_get:16,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":137,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":21,"\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":157,shimoda:138,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":134,question:67,live:56,fast:[38,96,78,3,160,167,83,127,40,27,41,50,11,97,119,122,67,133,145,46,56],adjac:160,arithmet:[],"query\u3068":162,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":150,grn_proc_get_info:45,"users\u30c6\u30fc\u30d6\u30eb\u306elocation\u30ab\u30e9\u30e0\u3068":162,wno:23,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u554f\u984c\u3092\u4fee\u6b63":138,aramaki:23,consist:[153,3,160,75],"benchmark\u306f":150,caller:45,"\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":96,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":86,test_text_otoj:157,highlight:[145,41],radious_or_point:155,"\u3059\u308b\u3068groonga":134,horikoshi:23,unauthent:[6,135],grn_expr_append_const_int:72,"\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":129,grn_socket_not_initi:2,"\u540c\u3058\u3067\u3059":150,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":138,weight3:73,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":94,weight1:[6,96,73],grn:[8,141],gro:[118,27],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":129,nice:101,"\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":150,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u6587\u66f8\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":80,grn_expr_add_var:72,drilldown:[],"\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":134,"filter\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u304a\u3044\u3066":[],"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":141,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,"\u65b0\u5bbf\u99c5\u306f\u7def\u5ea6\u304c35\u5ea641\u520627":[],"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":130,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":134,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":86,xcode:77,"\u7e70\u308a\u8fd4\u3057\u6570":150,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":63,mainstream:119,w64:134,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":60,"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc\u30b8\u30e5\u30fc\u30b9\u3068\u30b4\u30fc\u30e4\u30c1\u30e3\u30f3\u30d7\u30eb":80,"grn_expr\u306f":60,relev:[119,3],ranguba:73,"\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":134,nfkc:166,pleas:[0,3,22,66,76,165,106],smaller:[11,73,119,101,132,56],"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":134,compat:[147,116,13,120,135,8,166,46],compar:[6,119,96,27,160],mainlin:66,jekyl:134,grn_info:[],"314e":133,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,usag:[],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":39,larger:[96,73,83,27,153,75,124,55],"_name":56,mitsuo:113,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":30,typic:96,appli:[],approxim:[6,23,11],motoi:113,apt:[134,13,6,135,111,69],api:[],from:[],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":61,usa:117,"\u8a9e\u5f59\u306e\u51fa\u73fe\u6570\u3084\u691c\u7d22\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u306e\u30d5\u30e9\u30b0":88,few:[46,167],usr:[86,8,9,165,157,77],sort:[],grn_db_creat:71,"\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":139,tokenbigramignoreblanksplitsymbolalpha:[61,149],"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":138,"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":112,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":52,annot:113,"\u4e0a\u8a18\u306e\u30af\u30a8\u30ea\u306f\u5b9f\u884c\u3055\u308c\u308b\u305f\u3073\u306b\u691c\u7d22\u7d50\u679c\u306e\u4e26\u3073\u9806\u304c\u30e9\u30f3\u30c0\u30e0\u306b\u5909\u308f\u308a\u307e\u3059":[],"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":82,"\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":157,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":100,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":68,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":39,grn_column:[],tar:[147,116,134,20,13,135,165,77],tag:[],tab:[156,4,153],"\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":134,grn_set_lock_timeout:17,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":82,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":39,six:[132,3],"\u30e6\u30fc\u30b6\u30fc\u306e\u73fe\u5728\u5730":162,"100x100":155,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":93,sid:[],instead:[83,40,86,41,6,90,91,23,165,147,96,11,133,142,56,145,113,66,69,160,27,123,166,8],express:[],"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":134,"load\u30b3\u30de\u30f3\u30c9":1,attent:96,"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":60,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":138,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":158,light:51,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":93,"1\u884c\u76ee":150,freebsd:[],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":157,"\u4eac\u90fd":[61,129],location_in_input:122,ouput:113,own:[6,12,133,119],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":150,superior:[119,27],"log_level\u306f":5,condtion:160,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":15,"homebrew\u3078pul":134,bye:[96,160,133],"\u4f8b":[],crash:[6,23,51,113,66],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":65,"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":134,keys_zon:8,"\u884c":157,devel:[147,116],"javascript\u306e\u5f0f\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u6761\u4ef6\u3092\u6307\u5b9a\u3059\u308b\u70b9\u3067\u3059":[],shinjyuku:64,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":134,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":157,edit:[],"975\u79d2":[],grn_socket_is_already_connect:2,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":150,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":134,our:[22,106],grn_obj_column_index:[107,108],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":150,"gz\u306eversion\u304a\u3088\u3073vers":134,out:[147,116,161,13,135,90,123,92,66,67],longitude_in_degre:133,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":138,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":134,dcb314:66,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":121,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":61,grn_ctx_send: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":134,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":61,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,york:11,dictionari:[6,138,166,113,147],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,lte:78,"\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":134,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":68,tokenizer_list:[],"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":65,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"request\u3092\u9001\u308a\u307e\u3057\u305f":134,tetsuharu:66,"\uff12\u70b9\u9593\u306e\u8ddd\u96e2\u304c\u6307\u5b9a\u306em\u4ee5\u4e0b\u306b\u304a\u3055\u307e\u308b\u304b\u3069\u3046\u304b\u3092\u5224\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],prioriti:[43,119],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":45,grn_obj_get:68,unknown:[110,99],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":52,"akio\u3055\u3093":138,grn_dat_repair:99,shell:[165,160],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":31,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":63,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":137,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":150,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":138,"\u3092\u4f5c\u6210\u3057\u307e\u3059":63,emac:106,sed:[6,23],exec_format_error:153,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":112,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":39,"4097byte":83,"\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":86,"shimada\u3055\u3093\u304c\u5831\u544a":138,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":68,"title\u30ab\u30e9\u30e0\u306e\u307f\u3067\u306e\u691c\u7d22":[],which:[34,126,78,3,128,86,6,91,131,43,147,96,11,133,12,102,55,38,59,113,161,64,97,66,67,160,117,118,119,120,151,162],grn_obj_delete_by_id:[23,68],"\u30db\u30b9\u30c8\u540d\u3068":150,who:[38,113],"\u7d44\u8fbc\u578b":[],default_token:[],why:[96,113,126],"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":137,determin:[96,3,142],"_id":[3,80,91,43,115,128,96,133,73,136,101,51,52,141,38,108,109,61,64,151,85,67,68,160,117,122,75,166],"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":39,"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":137,word1:[6,96,160,133],word2:[6,96,160,133],"\u57f7\u7b46\u4e2d\u3067\u3059":[],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":134,your_github_account:106,practic:[12,119],grn_obj_with_posit:108,daiki:[6,23,138,130],local:[133,134,119,8,111,165,106],"\u3092\u4f7f\u3063\u3066":[],"150x100":29,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":129,grn_ctx_use:15,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":129,subrecord:113,grn_cursor_prefix:137,"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9\u306e\u969b\u306b\u30de\u30a4\u30af\u30ed\u79d2\u3092\u5358\u4f4d\u3068\u3059\u308b\u6574\u6570\u5024\u306b\u5909\u63db\u5f8c":162,"\u3042\u308b\u8a9e\u53e5\u304c\u4ed8\u4e0e\u3055\u308c\u3066\u3044\u308b\u52d5\u753b\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3059\u308b":[],candidate2:136,candidate1:136,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":150,view:[],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":134,knowledg:119,"1073741824\u306e\u6574\u6570\u3067":52,"\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":86,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"10t22":109,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":137,index_tag:38,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":150,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":139,dll:[6,23,34,66],"v1\u306e\u5024\u306e\u4e2d\u306b":60,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":112,yaman:113,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":155,job:150,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":39,homebrew:[],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":112,addit:[],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":158,april:134,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,100,155],"twitter\u306e\u3088\u3046\u306a\u77ed\u3044\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6295\u7a3f\u3059\u308b\u30d6\u30ed\u30b0\u3067\u3059":162,hyphen:[3,56],"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":138,respect:[6,12,64],rpm:[147,116,134,113,6,66,23,99],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":23,"query_expander\u30d1\u30e9\u30e1\u30fc\u30bf\u306b":80,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":39,mike:151,"\u30b3\u30e1\u30f3\u30c8\u306b\u95a2\u3059\u308b\u5185\u5bb9\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3067\u3059":162,"128423343x502929252":162,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":112,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[29,155],roonga:10,"\u30c6\u30fc\u30d6\u30ebentry\u306b":63,"21th":113,cursor:[23,48],"\u691c\u7d22\u7d50\u679c\u306b\u306f":[],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":52,"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":61,customiz:27,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":39,"\u3072\u308d\u3086\u304d":128,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":134,avg:158,"\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":138,grn_expr_append_op:[60,72],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":150,"\u6ce8\u610f":100,"\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":138,difficult:119,grn_column_name_id:108,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[61,129],"\u3092\u30ad\u30fc\u30ef\u30fc\u30c9\u306b\u30b3\u30e1\u30f3\u30c8\u691c\u7d22\u3057\u305f\u7d50\u679c":162,"0x10":153,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":112,english:[0,96,111,113,22,23,43,66,106],uzulla:23,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":70,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":134,do_http:150,normalizermysqlgeneralci:166,users_nam:102,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":86,"\u3082\u3057groonga":150,euc_jp:165,"key\u306b\u306f":100,amd64:134,other:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u30ab\u30e9\u30e0\u578b1":96,"\u307e\u305f\u306f":150,"table\u306fcolumn\u3068\u306f\u5225\u306b":100,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":110,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":68,know:[38,126,117],press:106,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u30ab\u30e9\u30e0\u578bn":96,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f10\u3067\u3059":96,earch:78,incres:66,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":23,exceed:148,no_child_process:153,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[23,113,66],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":61,column_inform:84,lead:[96,3,27],grn_obj_get_nhook:82,leak:[63,138,113,6,66,23,165],lear:75,grn_address_is_in_us:2,time_stamp:132,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":108,"title\u30ab\u30e9\u30e0\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7528\u306bindex_title\u30ab\u30e9\u30e0":[],investig:[148,113,117],acronym:153,tanab:113,rare:113,"\u305d\u308c\u305e\u308c":157,kanako:113,disabl:[63,96,138,160,118,132,111,113,6,8,43,23,165,99],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],freecod:[],grn_operation_timeout:2,"\u6570\u5b57":150,grn_ii:[],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":86,grn_id:[34,35,107,108,18,15,100,137,68,72],automat:[38,3,160,83,9,8,111,133,106],automak:138,grn_expr_append_const_str:72,grn_default_query_logger_get_path:6,"145508000x":11,transfer:[],grn_command_version_min:103,appl:166,replac:[66,55,163],"var":[34,126,60,84,86,8,165,45],"\u30ad\u30fc\u304c":86,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":134,"\u4ee5\u5916\u306e\u5834\u5408\u306f":96,"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":60,"\u73fe\u5728":21,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":86,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":63,kana:[43,136,109,163,75],palallel:134,made:[6,23,3],whether:[96,2,160,161,12,148,142,6,102,11,8,85,136,66,68],troubl:106,record:[],below:[50,92,51,160],"\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059":162,"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":68,"\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":[70,89,5,62,63,114,7,139,141,143,21,93,31,125,95],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":103,ff76:166,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":35,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":134,makecach:[6,116],"fork\u3059\u308b\u70b9\u304c\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u3068\u7570\u306a\u308b":86,"\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":134,book:133,bool:[12,39,128,113,160],"command_version\u3092\u8fd4\u3057\u307e\u3059":15,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":86,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":93,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":68,"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":96,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":65,debian:[],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":82,"\u4fdd\u5b58\u3057\u305f\u7d4c\u7def\u5ea6\u3092\u7528\u3044\u3066\u7d5e\u8fbc\u3084\u30bd\u30fc\u30c8\u304c\u3067\u304d\u307e\u3059":[],emerg:[5,132,7,8],allow_leading_not:96},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","suggest/introduction","reference/functions/geo_distance","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/api/global_configurations","reference/api/grn_ii","spec","install/solaris","reference/commands/log_reopen","community","news/1.2.x","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","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","geolocation_search","reference/functions/highlight_html","reference/commands/normalizer_list","suggest/completion","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_geo","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/api/grn_type","reference/api/grn_match_escalation","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/command/command_version","news","tutorial/match_columns","reference/api/grn_obj","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","contribution/documentation/c-api","suggest/suggestion","contribution","install/mac_os_x","reference/commands/tokenize","suggest/tutorial","tutorial/query_expansion","server/gqtp","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/commands/table_remove","install/windows","tutorial/network","contribution/development/repository","reference/commands/table_list","reference/api/grn_search","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","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","suggest/correction","reference/api/grn_encoding","contribution/documentation/introduction","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","install","reference/tuning","reference/commands/shutdown","server/package","reference/column","tutorial/patricia_trie","spec/search","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","reference/api/grn_table_cursor","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","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/functions/geo_in_circle","reference/query_expanders/tsv","contribution/development/test","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","tutorial/micro_blog","reference/executables/groonga-suggest-create-dataset","suggest","install/others","reference/normalizers","server/http"],titles:["13.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","8.3.3. Return code","4.1. Basic operations","8.2. Output","8.3.16. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013/01/29","8.3.17. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","8.1.4. groonga-httpd","8.3.22. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","5.1. Introduction","8.11.3. geo_distance","4.3. Various data types","2.4. Ubuntu","13.2. How to contribute in documentation topics","8.15.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","8.15.2. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","8.15.1. Global configurations","8.15.11. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","9. Specification","2.7. Oracle Solaris","8.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","3. Community","Release 1.2.9 - 2011/12/29","8.9. Query expanders","8.15. API","8.3. Command","8.11.12. snippet_html","7. Server","8.11.5. geo_in_rectangle","8.1.5. groonga HTTP\u30b5\u30fc\u30d0\u30fc","8.3.12. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","8.8. Tokenizers","11. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","8.15.22. Plugin","8.15.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","8. Reference manual","4.6. Tag search and reverse resolution of reference relationships","8.4. \u30c7\u30fc\u30bf\u578b","6. Geolocation Search","8.11.7. highlight_html","8.3.20. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","5.3. Completion","8.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","8.15.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","7.3.1. Comparison","Groonga documentation","8.15.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","Cast","8.3.15. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","8.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","\u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","8.15.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","8.15.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","8.1.8. groonga-suggest-learner","8.3.29. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","10. Limitations","8.11.11. rand","8.3.24. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","13.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","11.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","8.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","8.3.7. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. Various search conditions","8.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","News","4.7. match_columns parameter","8.15.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","12.1. Travis CI","8.3.27. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","8.15.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","8.15.8. grn_expr","Vector column","13.2.3. C API","5.5. Suggestion","13. How to contribute to groonga","2.2. Mac OS X","8.3.32. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","5.2. Tutorial","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.2. GQTP","8.15.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","8.5. Tables","8.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","8.11.1. between","8.1.2. groonga command","7.3.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","8.3.31. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","2.1. Windows","4.2. Remote access","13.3.1. Repository","8.3.30. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","8.15.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","8.3.6. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","8.3.25. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","8.11.8. html_untag","8.11.2. edit_distance","Release 1.3.0 - 2012/01/29","8.15.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","8.12. Indexing","8.11.10. query","8.15.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","8.3.4. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","8.15.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","13.2.2. I18N","8.15.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","8.15.3. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","5.4. Correction","8.15.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","13.2.1. Introduction","13.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","8.3.5. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","8.3.34. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","2.5. CentOS","4.5. Drilldown","8.1.7. groonga-suggest-httpd","1. Characteristics of Groonga","8.3.19. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","13.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","8.3.2. Output format","2. Install","8.14. Tuning","8.3.26. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","7.1. Server packages","8.6. Column","4.8. Prefix search with patricia trie","9.2. \u691c\u7d22","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","8.3.23. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","8.13. Log","8.10.2. Script syntax","13.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","8.3.28. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","8.15.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","8.3.11. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","8.3.14. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","8.10. grn_expr","8.3.21. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","8.11. Function","8.11.6. highlight_full","12. Development","2.6. Fedora","11.2. How to avoid mmap Cannot allocate memory error","8.3.33. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","8.1.3. groonga-benchmark","8.3.13. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","13.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","9.1. GQTP","7.3.2. groonga","8.11.4. geo_in_circle","8.9.1. QueryExpanderTSV","13.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","8.1.1. grnslap","8.11.9. now","8.10.1. Query syntax","8.11.13. sub_filter","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","8.1.6. groonga-suggest-create-dataset","5. Suggest","2.8. Others","8.7. Normalizers","7.3. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[54,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[86,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[68,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[54,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[71,1,1,"c.grn_db_create"],grn_plugin_charlen:[34,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[82,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[68,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[137,1,1,"c.grn_table_cursor_close"],"-P":[158,0,1,"cmdoption-P"],grn_table_cursor_set_value:[137,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[72,1,1,"c.grn_expr_syntax_escape"],"-e":[86,0,1,"cmdoption-e"],"-d":[55,0,1,"cmdoption-d"],"-a":[86,0,1,"cmdoption-a"],"-c":[86,0,1,"cmdoption-c"],grn_obj_set_info:[35,1,1,"c.grn_obj_set_info"],"-m":[158,0,1,"cmdoption-m"],"-l":[55,0,1,"cmdoption-l"],"--disable-max-fd-check":[118,0,1,"cmdoption--disable-max-fd-check"],"-i":[150,0,1,"cmdoption-i"],"-h":[86,0,1,"cmdoption-h"],grn_db:[71,2,1,"c.grn_db"],"-t":[118,0,1,"cmdoption-t"],grn_command_version:[103,2,1,"c.grn_command_version"],grn_obj_set_element_info:[35,1,1,"c.grn_obj_set_element_info"],"-p":[118,0,1,"cmdoption-p"],"-s":[55,0,1,"cmdoption-s"],"-r":[55,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[34,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[15,1,1,"c.grn_ctx_at"],"--bind-address":[86,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[103,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[86,0,1,"cmdoption--config-path"],grn_table_size:[100,1,1,"c.grn_table_size"],"--query-log-path":[86,0,1,"cmdoption--query-log-path"],grn_ctx_use:[15,1,1,"c.grn_ctx_use"],grn_obj_defrag:[68,1,1,"c.grn_obj_defrag"],db:[150,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[17,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[137,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[110,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[68,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[18,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[68,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[48,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[100,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[108,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[68,1,1,"c.grn_obj_unlink"],grn_obj_id:[68,1,1,"c.grn_obj_id"],grn_obj_set_value:[68,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[34,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[110,2,1,"c.grn_encoding"],grn_proc_create:[45,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[34,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[108,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--ftp":[150,0,1,"cmdoption--ftp"],"--dir":[150,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[68,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[100,2,1,"c.grn_table_group_result"],grn_expr_close:[72,1,1,"c.grn_expr_close"],grn_obj_path:[68,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[16,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[71,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[48,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[68,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[100,1,1,"c.grn_table_lcp_search"],grn_table_create:[100,1,1,"c.grn_table_create"],grn_table_cursor_get_value:[137,1,1,"c.grn_table_cursor_get_value"],"--address":[86,0,1,"cmdoption--address"],"--daemon":[55,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[68,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[100,1,1,"c.grn_table_columns"],"--pid-path":[86,0,1,"cmdoption--pid-path"],"--encoding":[86,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[15,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[16,2,1,"c.grn_cache"],grn_table_delete_by_id:[100,1,1,"c.grn_table_delete_by_id"],grn_plugin_mutex:[34,2,1,"c.grn_plugin_mutex"],grn_ii_buffer:[18,2,1,"c.grn_ii_buffer"],"--host":[150,0,1,"cmdoption--host"],grn_obj_set_finalizer:[45,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[16,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[105,1,1,"c.grn_obj_user_data"],grn_obj_lock:[68,1,1,"c.grn_obj_lock"],"--log-path":[55,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[108,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[150,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[68,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[72,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[34,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[68,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[137,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[72,1,1,"c.grn_expr_alloc"],grn_expr_compile:[72,1,1,"c.grn_expr_compile"],grn_user_data:[105,2,1,"c.grn_user_data"],grn_obj_get_range:[68,1,1,"c.grn_obj_get_range"],grn_table_get:[100,1,1,"c.grn_table_get"],grn_ctx_fin:[15,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[48,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[86,0,1,"cmdoption--max-threads"],grn_ctx_init:[15,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[18,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[68,3,1,"c.GRN_OBJ_DECR"],GRN_PLUGIN_REGISTER:[34,1,1,"c.GRN_PLUGIN_REGISTER"],grn_table_sort_key:[100,2,1,"c.grn_table_sort_key"],grn_obj_rename:[68,1,1,"c.grn_obj_rename"],grn_table_group_flags:[100,2,1,"c.grn_table_group_flags"],grn_obj_check:[68,1,1,"c.grn_obj_check"],grn_table_at:[100,1,1,"c.grn_table_at"],grn_column_name:[108,1,1,"c.grn_column_name"],grn_table_difference:[100,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[118,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[34,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[16,1,1,"c.grn_cache_close"],grn_obj_close:[68,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[108,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[100,1,1,"c.grn_table_truncate"],grn_obj_get_value:[68,1,1,"c.grn_obj_get_value"],grn_cache_open:[16,1,1,"c.grn_cache_open"],"--server-id":[86,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[82,1,1,"c.grn_obj_delete_hook"],"-n":[86,0,1,"cmdoption-n"],"--port":[118,0,1,"cmdoption--port"],grn_ii:[18,2,1,"c.grn_ii"],"--log-base-path":[55,0,1,"cmdoption--log-base-path"],grn_obj_is_locked:[68,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[72,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[34,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[55,0,1,"cmdoption--log-level"],grn_table_rename:[100,1,1,"c.grn_table_rename"],GRN_COLUMN_NAME_NSUBRECS:[108,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[34,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[103,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[34,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[35,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[94,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[72,1,1,"c.grn_expr_append_const_str"],script:[150,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[34,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[103,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[72,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[34,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[82,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[34,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[107,1,1,"c.grn_index_cursor_open"],grn_proc_func:[45,2,1,"c.grn_proc_func"],grn_db_create_optarg:[71,2,1,"c.grn_db_create_optarg"],grn_column_table:[108,1,1,"c.grn_column_table"],grn_table_add:[100,1,1,"c.grn_table_add"],grn_obj_unlock:[68,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[16,1,1,"c.grn_cache_set_max_n_entries"],grn_proc_type:[45,2,1,"c.grn_proc_type"],grn_proc_get_info:[45,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[68,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[15,1,1,"c.grn_ctx_close"],grn_ctx:[15,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[108,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[108,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[108,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[137,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[68,1,1,"c.grn_obj_get_values"],grn_column_rename:[108,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[68,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[35,1,1,"c.grn_obj_get_info"],grn_ctx_db:[15,1,1,"c.grn_ctx_db"],"--protocol":[150,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[34,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[137,2,1,"c.grn_table_cursor"],grn_ctx_get:[15,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[54,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[71,1,1,"c.grn_db_open"],grn_column_index:[108,1,1,"c.grn_column_index"],"--n-threads":[118,0,1,"cmdoption--n-threads"],"--help":[86,0,1,"cmdoption--help"],"--groonga":[150,0,1,"cmdoption--groonga"],grn_table_setoperation:[100,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[108,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[68,3,1,"c.GRN_OBJ_SET"],"--document-root":[86,0,1,"cmdoption--document-root"],grn_info_type:[35,2,1,"c.grn_info_type"],grn_obj:[68,2,1,"c.grn_obj"],grn_obj_remove:[68,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[34,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[68,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[72,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[72,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[18,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[48,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[17,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[18,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[94,1,1,"c.grn_obj_search"],"--send-endpoint":[55,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[100,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[82,2,1,"c.grn_hook_entry"],grn_expr_append_op:[72,1,1,"c.grn_expr_append_op"],grn_geo_point:[48,2,1,"c.grn_geo_point"],grn_table_cursor_table:[137,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[107,1,1,"c.grn_index_cursor_next"],grn_table_delete:[100,1,1,"c.grn_table_delete"],dest:[86,0,1,"cmdoption-arg-dest"],grn_ctx_open:[15,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[34,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[108,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[68,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[15,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[86,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[137,1,1,"c.grn_table_cursor_delete"],grn_type_create:[53,1,1,"c.grn_type_create"],grn_obj_path_by_id:[68,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[34,1,1,"c.grn_plugin_command_create"],grn_builtin_type:[53,2,1,"c.grn_builtin_type"],grn_table_get_key:[100,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[68,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[54,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[16,1,1,"c.grn_cache_current_get"],grn_expr_create:[72,1,1,"c.grn_expr_create"],grn_get_default_command_version:[103,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[72,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[110,1,1,"c.grn_encoding_parse"],grn_column_create:[108,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[15,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[100,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[82,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[110,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[103,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[34,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[110,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[55,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[108,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[100,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[34,1,1,"c.GRN_PLUGIN_FIN"],command:[86,0,1,"cmdoption-arg-command"],grn_obj_name:[68,1,1,"c.grn_obj_name"],grn_plugin_mutex_close:[34,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[71,1,1,"c.grn_db_touch"],grn_table_update:[100,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[71,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[71,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,138],code:2,senna:36,"\u6539\u826f":[23,1,138,130],"\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":134,queri:[96,160,119,102,8,132,24,91],global:17,localstatedir:165,"4\u30ea\u30ea\u30fc\u30b9":138,prefix:[60,160,133,43,165,46,128],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":134,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":134,keywordn:145,value_typ:56,"\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9":86,depend:[165,111],grn_type:53,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":134,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":134,drilldown_offset:96,send:[91,106],column_cr:63,column_or_valu:85,table_list:93,downtim:46,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[150,33],query_str:102,"\u524d\u63d0\u6761\u4ef6":134,grn_command_vers:103,sourc:[147,116,13,135,90,165,77],string:[12,78,120,133],groonga:[47,126,36,134,163,118,119,121,86,87,8,154,30,76,106,55,150,91],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":134,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":134,offlin:101,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[],facebook:22,"\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,"\u30b5\u30f3\u30d7\u30eb":[158,150],syntax:[78,5,84,41,7,89,9,131,93,95,96,11,133,136,50,102,51,139,141,21,143,56,59,42,145,149,62,63,114,64,97,104,85,115,70,160,161,120,27,151,31,125],brows:8,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":39,administr:[8,91],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":39,sub_filt:161,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":134,list:[0,2,22],vector:[12,73],drilldown_output_column:96,"\u30aa\u30d7\u30b7\u30e7\u30f3":[158,150,86],direct:8,sign:133,aggreg:119,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":129,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":129,index:[57,38,3,119,101,67,56],xor:133,learner:55,access:[91,46],delet:151,version:46,"new":[66,36,106],grn_info:35,full:[119,64,3,67,160],gener:[106,111],learn:[109,118,55,75,43,10],"\u30e6\u30fc\u30b6\u30fc\u306e\u304a\u6c17\u306b\u5165\u308a\u30b3\u30e1\u30f3\u30c8\u3092\u691c\u7d22":162,bodi:122,solari:20,ubuntu:13,path:[59,165,46],valu:[78,5,84,41,7,89,9,131,93,95,11,136,50,102,51,139,141,21,143,56,59,42,145,149,62,63,114,97,104,85,115,70,161,118,120,27,151,31,125],"\u95a2\u4fc2\u5f0f":60,table_hash_kei:83,search:[38,96,3,160,73,119,40,64,109,75,43,67,133,128],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":134,shift:133,blogroonga:134,memcach:91,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":134,chang:36,narrow:64,"\u9759\u7684\u89e3\u6790":157,"twitter\u7de8":112,"windows\u5411\u3051\u306e\u5834\u5408":134,match_column:[102,67,96],"\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d":[],appli:73,modul:8,phrase:160,"debian\u7cfb\u306e\u5834\u5408":134,api:[74,25],grn_db:71,instal:[156,165,90,123,111],total:96,define_selector:139,select:96,httpd:[118,126,8,87,55],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":121,from:[147,116,13,135,90,165,55,77],zip:90,commun:22,query_expand:[102,96],regist:9,upgrad:46,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":61,column_remov:62,call:133,"\u30c6\u30b9\u30c8\u65b9\u6cd5":157,key_typ:56,scope:161,"\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":44,query_expans:96,"\u30d6\u30ed\u30b0":134,sort:[64,3,117],relat:[67,96,8,55],benchmark:150,flag:[78,120,153,56],cach:[96,8],sphere:11,work:[43,109,106,75],tag:[38,56],clearlock:95,"\u7279\u6b8a\u547d\u4ee4":150,control:133,grn_column:108,geo_in_rectangl:29,"geopoint\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22":162,process:[124,132],lock:119,topic:14,"\u4f7f\u3044\u65b9":150,liter:133,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":112,groonga_cache_limit:8,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":157,onlin:101,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":134,unsign:133,"\u7406\u7531":112,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":128,multipl:[67,133,117],secur:91,"\u540d\u524d":[158,58,159,98,150,39,86,29,52,30,155],pseudo_column:52,divis:133,grn_table_select:60,open_tagn:145,sid:135,simpl:96,updat:[119,43,106,134,111],message_pack_install_prefix:165,max:[124,104,85],clone:106,geoloc:40,mac:77,date:12,log_level:5,data:[160,12,8,75,43,133,55,56],table_dat_kei:83,alloc:148,"\u66f8\u5f0f":[158,58,159,98,150,86,29,30,155],not_equ:60,"\u691c\u7d22\u306e\u6319\u52d5":129,explicit:160,issu:[0,91],callback:60,combin:160,normalizernfkc51:166,freebsd:124,suggest:[164,118,136,163,55,75,10],origin:133,adjust:96,help:165,rand:58,hypertext:91,"3\u30ea\u30ea\u30fc\u30b9":138,gqtp:[126,153,91,81],paramet:[78,5,84,41,7,89,131,93,115,95,96,11,136,50,102,51,139,141,21,143,55,56,59,145,62,63,114,97,104,85,67,70,161,118,120,151,124,31,125],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":134,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":134,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":134,group:[160,133],thank:[6,23,99,113,66],how:[0,73,148,109,101,91,75,43,76,14,106],fix:[6,23,36,113,66],"\u5b9f\u9a13\u7684":23,platform:165,window:90,restart:126,"users\u30c6\u30fc\u30d6\u30eb":162,persist:83,tsv:[122,156],mail:[0,22],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":157,"\u4f8b\u3048\u3070redmin":112,grn_hook:82,html_untag:97,"return":[78,5,84,41,2,89,9,131,93,95,11,136,50,102,51,139,141,21,143,151,56,59,42,145,149,62,63,114,97,104,85,115,70,161,118,120,27,7,31,125],greater:[60,160,133],worker_process:8,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u306b\u307e\u305f\u304c\u3063\u305f\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408":[],rectangl:11,"8\u30ea\u30ea\u30fc\u30b9":138,lzo:165,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":157,"\u8fd4\u5024":[58,96,159,98,29,30,155],now:159,highlight_ful:145,introduct:[10,111],term:133,name:[51,67,163,56],table_no_kei:83,edit:106,revers:[38,8],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":129,authent:46,kern:124,token:[119,78,32],mode:[78,60],each:67,ruby_load:59,"\u30b3\u30de\u30f3\u30c9":[30,86],"benchmark\u5b9f\u884c\u7d50\u679c":150,grn_encod:110,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":157,domain:117,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":65,weight:[67,73],"0\u30ea\u30ea\u30fc\u30b9":[23,138,130],normalizerauto:166,http:[126,167,4,46,91],todo:[102,27],"http\u30b5\u30fc\u30d0\u30fc":30,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":112,groonga_query_log_path:8,db_api:60,query_flag:96,"release\u306e\u5b9f\u884c":134,normalizer_nam:145,"\u95a2\u9023\u9805\u76ee":[],"\u30af\u30a8\u30ea\u62e1\u5f35":80,"\u5bfe\u5fdc":112,correct:[10,109],red:134,nofil:124,"1\u30ea\u30ea\u30fc\u30b9":[23,138],shut:8,proxi:8,advanc:96,free:119,grn_user_data:105,substitution_t:102,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":134,releas:[6,23,99,113,66],database_path:[118,55],grn_match_escal:54,launch:118,filter:96,synopsti:163,assign:[160,133],oper:[3,133],softwar:111,rang:[3,56],groonga_log_path:8,suffix:[60,160,133],"7\u30ea\u30ea\u30fc\u30b9":[1,138],"\u8aac\u660e":[158,58,159,98,150,39,86,29,52,30,155],arrai:133,number:[124,96,165],edit_dist:98,groonga_database_auto_cr:8,max_map_count:124,open:124,primari:128,size:153,script:[131,133],"\u4fee\u6b63":[23,1,138,130],messag:165,tune:124,"version\u30d1\u30e9\u30e1\u30fc\u30bf":65,termin:91,store:[119,56],option:[11,118,120,163,102,78,55],relationship:38,travi:69,tool:[165,8,91],specifi:[11,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":65,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":60,than:[160,133],geo_dist:11,remot:91,"grntest\u306e\u6e96\u5099":134,maxfileperproc:124,exampl:[35,82,18,94,45,48,103,15,16,100,53,137,105,107,108,148,110,54,153,68,69,71,163,72],"\u6295\u7a3f\u6642\u9593\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,column_list:84,grn_expr:[60,72,142],latitud:[12,119],ruby_ev:131,"\u3042\u308b\u30e6\u30fc\u30b6\u30fc\u3092\u30d5\u30a9\u30ed\u30fc\u3057\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u306e\u691c\u7d22":162,tabl:[57,96,3,83,84,51,162,67,55,56],"null":133,packag:[165,126,13],bitwis:133,drilldown_limit:96,built:166,min:85,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":60,also:[78,5,83,84,41,2,131,95,96,136,50,102,139,142,21,56,59,42,145,149,161,151,153,156,120,27,163,122,7,166,104],point2:11,client:91,build:[147,116,13,135,90,165,77],highlight_html:41,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":157,mroonga:119,normal:[73,78,120,166,56],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[138,130],object:133,oracl:20,statu:[70,153,163],"\u7d44\u8fbc\u578b":39,default_token:56,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":134,groonga_log_level:8,geoindex:162,table_pat_kei:83,request:[118,8,106],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":60,"\u30c6\u30fc\u30d6\u30eb\u306e\u4f5c\u6210":162,left:133,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":129,"\u539f\u56e0":61,lexicon:[3,56],cache_limit:104,text:[119,64,3,67,160],grn_index_cursor:107,greater_equ:60,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":134,threshold:165,"comments\u30c6\u30fc\u30d6\u30eb":162,xml:122,"files\u306e\u5b9f\u884c":134,explicitli:11,locat:[38,64,11,156,119],ellipsoid:11,grnslap:158,configur:[17,8,111,165,46,69],solut:148,max_bord:85,use_html_escap:145,"benchmark\u547d\u4ee4":150,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":61,contribut:[76,14],variou:[12,64],get:[118,3],express:160,stop:126,cannot:148,wheezi:135,report:0,geo:[38,133,119],requir:[96,11,118,84,120,102,51,78,97,115],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":65,enabl:111,query_typ:153,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":112,patch:106,new_nam:51,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":21,contain:60,table_cr:56,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":157,summari:[34,35,2,5,83,84,41,78,89,8,9,131,93,94,145,45,137,95,16,96,48,73,136,100,103,15,50,82,51,139,17,141,18,54,143,55,105,56,59,42,107,108,53,110,149,62,63,21,11,104,151,85,115,68,156,102,70,166,71,114,118,97,120,27,122,7,161,124,31,125],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":134,set:[118,8],modulo:133,dump:141,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210":162,see:[78,5,83,84,41,2,131,95,96,136,50,102,139,142,21,56,59,42,145,149,161,151,153,156,120,27,163,122,7,166,104],result:[3,117],arg:60,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":157,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":112,"javascript\u306b\u4f3c\u305f\u6587\u6cd5\u3067\u306e\u7d5e\u8fbc":[],"hashtags\u30c6\u30fc\u30d6\u30eb":162,databas:[3,46],column_renam:51,less_equ:60,score:96,between:85,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":134,kei:128,numer:12,javascript:64,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":134,"\u5bfe\u7b56\u65b9\u6cd52":61,"\u5bfe\u7b56\u65b9\u6cd51":61,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":152,"com\u3078\u30ea\u30ea\u30fc\u30b9\u60c5\u5831\u3092\u767b\u9332":134,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":150,homebrew:77,addit:[166,133],instant:119,plugin:[34,165],equal:[60,160,133],against:67,facet:96,tutori:[79,140],logic:[160,133],improv:[36,113,6,66,23,99],"po\u306e\u5b9f\u884c":134,load:[50,3,8,73],among:67,point:133,overview:[12,119],period:36,header:[122,153],close_tagn:145,shutdown:125,"\u6e96\u5099":80,grn_proc:45,quit:143,"\u5236\u9650\u4e8b\u9805":150,invert:119,freecod:134,add:106,json:[50,122],"geopoint\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,basic:[3,133],"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":157,log_put:7,resolut:38,"2\u30ea\u30ea\u30fc\u30b9":138,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":134,"\u30ab\u30e9\u30e0\u3054\u3068\u306b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4ed8\u4e0e\u3059\u308b\u5834\u5408":[],i18n:106,"\u30c7\u30fc\u30bf\u306e\u30ed\u30fc\u30c9":162,"case":122,drildown:117,multi:46,gnu:135,zlib:165,cast:49,"\u691c\u7d22":[162,129,80],error:[122,148],pack:165,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":157,"\u6982\u8981":65,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":134,"\u5f15\u6570":[158,58,98,86,150,29,155],filter_str:161,archiv:13,cento:116,synopsi:[118,8,55],develop:146,fedora:147,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":134,grn_cach:16,perform:[8,46],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":134,make:[165,134],"\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30e6\u30fc\u30b6\u30fc\u691c\u7d22":162,"\u4f4d\u7f6e\u60c5\u5831\u3092\u7528\u3044\u305f\u7d5e\u8fbc":[],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":157,binari:91,html:[97,106,111],"geopoint\u3068\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,output_column:96,document:[47,14,111],messagepack:122,complet:[43,10],proxy_cach:8,"bigram\u30c6\u30fc\u30d6\u30eb":162,"json\u5f62\u5f0f":[],nest:67,temporari:83,"\u30bf\u30b0\u691c\u7d22":[],engin:119,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":121,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":134,expand:24,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u540d\u3092\u6307\u5b9a\u3057\u305f\u5168\u6587\u691c\u7d22":[],desctipion:163,sortbi:96,overcommit_memori:124,grn_table_cursor:137,person:13,without:46,command:[65,3,4,118,86,26,91,46],gzip:46,latest:134,construct:101,protocol:[91,153],just:73,less:[60,160,133],"\u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831":88,min_bord:85,"5\u30ea\u30ea\u30fc\u30b9":138,"\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":[],languag:106,approximate_typ:11,point1:11,mmap:148,"\u30bd\u30fc\u30c8":[],defrag:31,patricia:128,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":157,macport:77,geo_in_circl:155,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":134,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":134,match:[165,160,133],table_nam:115,format:[50,156,122,3,132],read:[43,119],nginx:8,"\u95be\u5024\u3092\u3042\u3052\u308b":61,characterist:[83,119],truncat:115,like:64,daemon:91,success:122,specif:[67,8,19],"match_columns\u30d1\u30e9\u30e1\u30fc\u30bf":[],manual:37,integ:133,server:[119,126,91,28],"boolean":[12,133],cascad:151,output:[122,96,3,4,106],page:96,normalizer_list:42,old:66,twitter:22,linux:[135,124],log_reopen:21,sampl:[160,133],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":157,librari:[119,165],confirm:106,avoid:148,per:124,tracker:0,exit:163,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u91cd\u307f":[],condit:[64,96,160],refer:[34,35,37,82,18,94,45,48,73,12,103,15,16,100,17,54,105,38,107,108,53,110,137,68,71,72],core:46,run:[91,111],"\u5168\u6587\u691c\u7d22":[],compress:46,view:3,usag:[78,4,5,84,41,7,89,8,9,131,93,95,96,11,73,136,50,102,51,139,141,21,143,55,56,59,42,145,149,62,63,114,97,104,85,115,156,70,161,118,120,27,151,124,31,125],tokenizer_list:149,"\u30d3\u30eb\u30c9\u6642\u306etip":134,"\u7591\u4f3c\u30ab\u30e9\u30e0":52,repositori:[92,106],offset:96,post:[8,46],subtract:133,comparison:[133,46],column:[57,11,3,160,117,73,119,145,41,127,67],memori:[148,124],snippet_html:27,"\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":112,"x\u306e\u304a\u77e5\u3089\u305b":[1,138,130],"scorer\u3092\u5229\u7528\u3057\u305f\u30bd\u30fc\u30c8":[],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":157,ppa:13,match_escalation_threshold:96,grn_ii:18,"\u4f8b":[58,159,98,61,86,29,155],"float":133,encod:165,dataset:163,down:[64,8],grn_ctx:15,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":60,storag:119,your:106,"\u30e6\u30fc\u30b6\u30fcid\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,log:[132,165,55,46],transfer:91,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":150,support:40,"\u5909\u66f4":138,submit:0,custom:46,avail:8,start:126,arithmet:133,"\u306e\u66f4\u65b0":134,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":65,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":134,"function":[144,133],"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":134,"\u691c\u7d22\u4f8b4":60,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":60,"\u691c\u7d22\u4f8b2":60,"\u691c\u7d22\u4f8b1":60,translat:106,drilldown_sortbi:96,line:[118,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":134,pull:106,munin:165,type:12,record:[83,96,3],limit:[57,96,117,73,83,156],inform:64,similar:[60,133,109],grn_tabl:100,"\u611f\u8b1d":[23,1,138,130],featur:40,creat:[67,73,3,163,56],trie:128,flow:106,grn_obj:68,groonga_databas:8,"homebrew\u306e\u66f4\u65b0":134,jessi:135,right:133,file:[163,124,156,55,46,106],check:114,sharabl:119,extract:[133,75],grn_search:94,"default":[165,65],other:165,"\u8907\u6570\u306e\u30ab\u30e9\u30e0\u3092\u5bfe\u8c61\u3068\u3057\u305f\u5168\u6587\u691c\u7d22":[],"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":39,"\u30c7\u30fc\u30bf\u578b":39,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0\u3067\u30b3\u30e1\u30f3\u30c8\u691c\u7d22":162,grn_geo:48,"hat\u7cfb\u306e\u5834\u5408":134,scorer:[64,96],cooccurr:[43,109,75],drilldown:[96,117],debian:135,longitud:[12,119],groonga_base_path:8,"\u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a":[],escal:165,"\u691c\u7d22\u4f8b3":60,descript:[],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u4ed8\u304d\u30b8\u30aa\u30b5\u30fc\u30c1":[],table_remov:89,queryexpandertsv:156,time:[12,133],escap:160,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":134,cpu:46}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7. Server &mdash; Groonga v4.0.1-127-g9422d50 documentation</title>
10
+ <title>7. Server &mdash; Groonga v4.0.4-214-gb1aaec1 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '4.0.1-127-g9422d50',
18
+ VERSION: '4.0.4-214-gb1aaec1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,11 +25,11 @@
25
25
  <script type="text/javascript" src="_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v4.0.1-127-g9422d50 documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v4.0.4-214-gb1aaec1 documentation" href="index.html" />
29
29
  <link rel="next" title="7.1. Server packages" href="server/package.html" />
30
30
  <link rel="prev" title="6. Geolocation Search" href="geolocation_search.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="geolocation_search.html" title="6. Geolocation Search"
61
61
  accesskey="P">previous</a> |</li>
62
- <li><a href="index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v4.0.4-214-gb1aaec1 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>7. Server<a class="headerlink" href="#server" title="Permalink to this headline">¶</a></h1>
@@ -93,7 +93,7 @@
93
93
  </div>
94
94
  </div>
95
95
  </div>
96
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
96
+ <div class="sphinxsidebar">
97
97
  <div class="sphinxsidebarwrapper">
98
98
  <h4>Previous topic</h4>
99
99
  <p class="topless"><a href="geolocation_search.html"
@@ -101,14 +101,12 @@
101
101
  <h4>Next topic</h4>
102
102
  <p class="topless"><a href="server/package.html"
103
103
  title="next chapter">7.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">
104
+ <h3>This Page</h3>
105
+ <ul class="this-page-menu">
106
+ <li><a href="_sources/server.txt"
107
+ rel="nofollow">Show Source</a></li>
108
+ </ul>
109
+ <div id="searchbox" style="display: none">
112
110
  <h3>Quick search</h3>
113
111
  <form class="search" action="search.html" method="get">
114
112
  <input type="text" name="q" />
@@ -125,7 +123,7 @@
125
123
  </div>
126
124
  <div class="clearer"></div>
127
125
  </div>
128
- <div class="related" role="navigation" aria-label="related navigation">
126
+ <div class="related">
129
127
  <h3>Navigation</h3>
130
128
  <ul>
131
129
  <li class="right" style="margin-right: 10px">
@@ -137,10 +135,10 @@
137
135
  <li class="right" >
138
136
  <a href="geolocation_search.html" title="6. Geolocation Search"
139
137
  >previous</a> |</li>
140
- <li><a href="index.html">Groonga v4.0.1-127-g9422d50 documentation</a> &raquo;</li>
138
+ <li><a href="index.html">Groonga v4.0.4-214-gb1aaec1 documentation</a> &raquo;</li>
141
139
  </ul>
142
140
  </div>
143
- <div class="footer" role="contentinfo">
141
+ <div class="footer">
144
142
  &copy; Copyright 2009-2014, Brazil, Inc.
145
143
  </div>
146
144
  </body>