rroonga 5.0.1-x64-mingw32 → 5.0.2-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (731) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +1 -1
  3. data/ext/groonga/rb-grn-logger.c +159 -3
  4. data/ext/groonga/rb-grn-plugin.c +17 -1
  5. data/ext/groonga/rb-grn-query-logger.c +129 -3
  6. data/ext/groonga/rb-grn.h +1 -1
  7. data/lib/1.9/groonga.so +0 -0
  8. data/lib/2.0/groonga.so +0 -0
  9. data/lib/2.1/groonga.so +0 -0
  10. data/lib/2.2/groonga.so +0 -0
  11. data/lib/groonga/query-logger.rb +48 -3
  12. data/lib/groonga/schema.rb +16 -3
  13. data/rroonga-build.rb +3 -3
  14. data/test/test-logger.rb +97 -2
  15. data/test/test-plugin.rb +5 -1
  16. data/test/test-query-logger.rb +149 -0
  17. data/test/test-schema.rb +19 -0
  18. data/vendor/local/bin/grndb.exe +0 -0
  19. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  20. data/vendor/local/bin/groonga.exe +0 -0
  21. data/vendor/local/bin/libgroonga-0.dll +0 -0
  22. data/vendor/local/bin/libmecab-1.dll +0 -0
  23. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  24. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  25. data/vendor/local/bin/libonig-5.dll +0 -0
  26. data/vendor/local/bin/lz4.exe +0 -0
  27. data/vendor/local/bin/lz4c.exe +0 -0
  28. data/vendor/local/bin/lz4cat +0 -0
  29. data/vendor/local/bin/mecab-config +2 -2
  30. data/vendor/local/bin/mecab.exe +0 -0
  31. data/vendor/local/bin/onig-config +1 -1
  32. data/vendor/local/bin/zlib1.dll +0 -0
  33. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  34. data/vendor/local/include/groonga/groonga.h +1 -0
  35. data/vendor/local/include/groonga/groonga/groonga.h +12 -6
  36. data/vendor/local/include/groonga/groonga/portability.h +158 -0
  37. data/vendor/local/include/msgpack.h +1 -0
  38. data/vendor/local/include/msgpack.hpp +2 -1
  39. data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
  40. data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
  41. data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
  42. data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
  43. data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
  44. data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
  45. data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
  46. data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
  47. data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
  48. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
  49. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
  50. data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
  51. data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
  52. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
  53. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
  54. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
  55. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
  56. data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
  57. data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
  58. data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
  59. data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
  60. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
  61. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
  62. data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
  63. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
  64. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
  65. data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
  66. data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
  67. data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
  68. data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
  69. data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
  70. data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
  71. data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
  72. data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
  73. data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
  74. data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
  75. data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
  76. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
  77. data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
  78. data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
  79. data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
  80. data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
  81. data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
  82. data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
  83. data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
  84. data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
  85. data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
  86. data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
  87. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
  88. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
  89. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
  90. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
  91. data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
  92. data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
  93. data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
  94. data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
  95. data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
  96. data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
  97. data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
  98. data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
  99. data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
  100. data/vendor/local/include/msgpack/fbuffer.h +3 -4
  101. data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
  102. data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
  103. data/vendor/local/include/msgpack/iterator.hpp +42 -0
  104. data/vendor/local/include/msgpack/object.h +51 -30
  105. data/vendor/local/include/msgpack/object.hpp +564 -273
  106. data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
  107. data/vendor/local/include/msgpack/pack.h +23 -17
  108. data/vendor/local/include/msgpack/pack.hpp +889 -164
  109. data/vendor/local/include/msgpack/pack_define.h +2 -2
  110. data/vendor/local/include/msgpack/pack_template.h +452 -356
  111. data/vendor/local/include/msgpack/sbuffer.h +43 -37
  112. data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
  113. data/vendor/local/include/msgpack/sysdep.h +48 -53
  114. data/vendor/local/include/msgpack/type.hpp +35 -17
  115. data/vendor/local/include/msgpack/unpack.h +62 -44
  116. data/vendor/local/include/msgpack/unpack.hpp +1578 -217
  117. data/vendor/local/include/msgpack/unpack_define.h +49 -47
  118. data/vendor/local/include/msgpack/unpack_template.h +344 -284
  119. data/vendor/local/include/msgpack/util.h +23 -0
  120. data/vendor/local/include/msgpack/version.h +12 -6
  121. data/vendor/local/include/msgpack/version.hpp +44 -0
  122. data/vendor/local/include/msgpack/version_master.h +3 -0
  123. data/vendor/local/include/msgpack/versioning.hpp +77 -0
  124. data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
  125. data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
  126. data/vendor/local/include/msgpack/zbuffer.h +79 -79
  127. data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
  128. data/vendor/local/include/msgpack/zone.h +65 -42
  129. data/vendor/local/include/msgpack/zone.hpp +10 -445
  130. data/vendor/local/include/msgpack_fwd.hpp +28 -0
  131. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  132. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  133. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  134. data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
  135. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  136. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  137. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  138. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  139. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  140. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  141. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  142. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  143. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  144. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  145. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  146. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  147. data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
  148. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
  149. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
  150. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
  151. data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -0
  152. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  153. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  154. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  155. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  156. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  157. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  158. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  159. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  160. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  161. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  162. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  163. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  164. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  165. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  166. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  167. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  168. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
  169. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
  170. data/vendor/local/lib/libgroonga.a +0 -0
  171. data/vendor/local/lib/libgroonga.dll.a +0 -0
  172. data/vendor/local/lib/libgroonga.la +2 -2
  173. data/vendor/local/lib/liblz4.a +0 -0
  174. data/vendor/local/lib/liblz4.dll +0 -0
  175. data/vendor/local/lib/liblz4.dll.1 +0 -0
  176. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  177. data/vendor/local/lib/libmecab.a +0 -0
  178. data/vendor/local/lib/libmecab.dll.a +0 -0
  179. data/vendor/local/lib/libmecab.la +2 -2
  180. data/vendor/local/lib/libmsgpack.a +0 -0
  181. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  182. data/vendor/local/lib/libmsgpack.la +4 -4
  183. data/vendor/local/lib/libmsgpackc.a +0 -0
  184. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  185. data/vendor/local/lib/libmsgpackc.la +2 -2
  186. data/vendor/local/lib/libonig.a +0 -0
  187. data/vendor/local/lib/libonig.dll.a +0 -0
  188. data/vendor/local/lib/libonig.la +2 -2
  189. data/vendor/local/lib/libz.a +0 -0
  190. data/vendor/local/lib/libz.dll.a +0 -0
  191. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  192. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  193. data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
  194. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  195. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  196. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  197. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  198. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  199. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  200. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  201. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  202. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  203. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  204. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +69 -52
  205. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
  206. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
  207. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  208. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  209. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +7 -7
  210. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  211. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
  212. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
  213. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
  214. data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
  215. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
  216. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
  218. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
  219. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
  220. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
  221. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
  222. data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
  228. data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
  229. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
  230. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
  231. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  232. data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
  233. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  234. data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
  235. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
  236. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
  237. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
  238. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
  239. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
  240. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
  241. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
  242. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
  243. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
  244. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
  245. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
  246. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
  247. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  248. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
  249. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  250. data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
  251. data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
  252. data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
  253. data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
  254. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
  255. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
  256. data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
  257. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
  258. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
  259. data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
  260. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  261. data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
  262. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
  263. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
  264. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
  265. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
  266. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
  267. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
  268. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
  269. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
  270. data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
  271. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  272. data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
  273. data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
  274. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
  275. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
  276. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
  277. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
  278. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
  279. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
  280. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
  281. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
  283. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
  284. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
  285. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
  286. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
  287. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
  288. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
  289. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
  290. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
  291. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
  292. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
  293. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
  298. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
  299. data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
  300. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
  301. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
  302. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
  303. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
  304. data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
  305. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
  306. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
  307. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
  308. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
  309. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
  348. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
  349. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
  350. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
  351. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
  352. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
  353. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
  354. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  355. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
  356. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
  357. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
  358. data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
  359. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
  360. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
  361. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
  362. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
  363. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
  364. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
  365. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
  366. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
  367. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
  368. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
  369. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
  370. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
  374. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
  375. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
  376. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
  377. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
  378. data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
  379. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
  380. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
  381. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
  382. data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
  383. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
  384. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
  385. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
  386. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
  387. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
  388. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
  389. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
  390. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
  391. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
  392. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
  393. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
  394. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
  395. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
  396. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
  397. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
  398. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
  399. data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
  400. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  401. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  402. data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
  403. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
  404. data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
  405. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
  406. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
  407. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
  408. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
  409. data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
  410. data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
  411. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
  412. data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
  413. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  414. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  415. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  416. data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
  417. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
  418. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
  419. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
  420. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
  421. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
  422. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
  423. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
  424. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
  425. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
  426. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
  427. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
  428. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  429. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
  430. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
  431. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
  432. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  433. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  434. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +7 -7
  435. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  436. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
  456. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  457. data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
  458. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  459. data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
  460. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
  461. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
  462. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
  463. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
  464. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
  465. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
  466. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
  467. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  468. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  469. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
  470. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
  471. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  472. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  473. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
  474. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  475. data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
  476. data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
  477. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
  478. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
  479. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
  480. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
  481. data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
  482. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
  483. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
  484. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
  485. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  486. data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
  487. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
  488. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
  489. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
  490. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
  491. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
  492. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
  493. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
  494. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
  495. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
  496. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  497. data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
  498. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
  499. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
  500. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
  501. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
  502. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
  503. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
  504. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
  505. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
  506. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
  507. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
  508. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
  509. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
  510. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
  511. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
  512. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
  513. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
  514. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
  515. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
  516. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
  517. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
  518. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
  519. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
  520. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
  521. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
  522. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
  523. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
  524. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
  525. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
  526. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
  527. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
  528. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
  529. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
  530. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
  531. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
  532. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
  533. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
  534. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
  535. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
  536. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
  537. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
  538. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
  539. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
  540. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
  541. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
  542. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
  543. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
  544. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
  545. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
  546. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
  547. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
  548. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
  549. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
  550. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
  551. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
  552. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
  553. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
  554. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
  555. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
  556. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
  557. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
  558. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
  559. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
  560. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
  561. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
  562. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
  563. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
  564. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
  565. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
  566. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
  567. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
  568. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
  573. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
  574. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
  575. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
  576. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
  577. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
  578. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
  579. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  580. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
  581. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
  582. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
  583. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
  584. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
  585. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
  586. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
  587. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
  588. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
  589. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
  590. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
  591. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
  592. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
  593. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
  594. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
  595. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
  596. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
  597. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
  598. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
  599. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
  600. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
  601. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
  602. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
  603. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
  604. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
  605. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
  606. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
  607. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
  608. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
  609. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
  610. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
  611. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
  612. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
  613. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
  614. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
  615. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
  616. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
  617. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
  618. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
  619. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
  620. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
  621. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
  622. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
  623. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
  624. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
  625. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  626. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  627. data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
  628. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
  629. data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
  630. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
  631. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
  632. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
  633. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
  634. data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
  635. data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
  636. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
  637. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
  638. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  639. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  640. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  641. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
  642. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
  643. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
  644. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
  645. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
  646. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
  647. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
  648. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
  649. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
  650. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
  651. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
  652. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
  653. data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
  654. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  655. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  656. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  657. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  658. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  659. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  660. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  661. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  662. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  663. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  664. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  665. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  666. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  667. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  668. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  669. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
  670. data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
  671. data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
  672. data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
  673. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
  674. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
  675. data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
  676. data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
  677. data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
  678. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
  679. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
  680. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
  681. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
  682. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
  683. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
  684. data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
  685. data/vendor/local/share/groonga/html/admin/404.html +133 -0
  686. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  687. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
  688. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  689. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  690. data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
  691. data/vendor/local/share/groonga/html/admin/index.html +9 -297
  692. data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
  693. data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
  694. data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
  695. data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
  696. data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
  697. data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
  698. data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
  699. data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
  700. data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
  701. data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
  702. data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
  703. data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
  704. data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
  705. data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
  706. data/vendor/local/share/license/groonga-admin/README.md +79 -0
  707. data/vendor/local/share/license/msgpack/AUTHORS +0 -1
  708. data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
  709. data/vendor/local/share/man/man1/groonga.1 +812 -99
  710. metadata +138 -55
  711. data/doc/text/install.textile +0 -145
  712. data/doc/text/tutorial.textile +0 -510
  713. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  714. data/vendor/local/include/msgpack/type/define.hpp +0 -3465
  715. data/vendor/local/include/msgpack/type/deque.hpp +0 -77
  716. data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
  717. data/vendor/local/include/msgpack/type/float.hpp +0 -102
  718. data/vendor/local/include/msgpack/type/int.hpp +0 -276
  719. data/vendor/local/include/msgpack/type/list.hpp +0 -77
  720. data/vendor/local/include/msgpack/type/map.hpp +0 -205
  721. data/vendor/local/include/msgpack/type/raw.hpp +0 -94
  722. data/vendor/local/include/msgpack/type/set.hpp +0 -122
  723. data/vendor/local/include/msgpack/type/string.hpp +0 -62
  724. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
  725. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
  726. data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
  727. data/vendor/local/include/msgpack/type/vector.hpp +0 -81
  728. data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
  729. data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
  730. data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
  731. data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>Search &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>Search &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/searchtools.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.3 documentation" href="index.html" />
30
30
  <script type="text/javascript">
31
31
  jQuery(function() { Search.loadIndex("searchindex.js"); });
32
32
  </script>
@@ -47,7 +47,7 @@
47
47
 
48
48
  <div class="other-language-links">
49
49
  <ul>
50
- <li><a href="../../ja/html/search.html"><img src="_static/jp.png" alt="日本語">日本語版はこちら</a></li>
50
+ <li><a href="../../ja/html/search.html">日本語</a></li>
51
51
  </ul>
52
52
  </div>
53
53
  </div>
@@ -59,7 +59,7 @@
59
59
  <li class="right" style="margin-right: 10px">
60
60
  <a href="genindex.html" title="General Index"
61
61
  accesskey="I">index</a></li>
62
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
@@ -107,7 +107,7 @@
107
107
  <li class="right" style="margin-right: 10px">
108
108
  <a href="genindex.html" title="General Index"
109
109
  >index</a></li>
110
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
110
+ <li><a href="index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
111
111
  </ul>
112
112
  </div>
113
113
  <div class="footer">
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{localstatedir:[],four:[135,94,3,148],"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":151,profil:184,"\u811a\u6ce8":[34,45,168,72],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":167,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":140,your_db:27,grn_fin:5,column_cr:[],"\u65e5\u672c\u4eba":176,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":151,digit:[108,18,148,178,38,80,65],thread_tabl:167,command_vers:[11,3,4,161,32,47,82,172,109,9,36,102],dewangga:77,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":63,"takashi\u3055\u3093\u304c\u5831\u544a":27,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":143,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":154,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":108,"groonga\u306f\u5217\u6307\u5411\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u9ad8\u901f\u3067\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb\u306a\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u3067\u3059":97,grn_plugin_win32_base_dir:40,drilldown_output_column:[],asami:125,"\u697d\u3057\u3044billiard":[70,144],accuml:125,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":151,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":113,grn_oper:[113,56,84,121,110],"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":151,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":167,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":37,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":53,grn_socket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":97,grn_table_cursor_next:[63,154],here:[40,92,2,71,5,94,95,68,47,48,46,100,101,9,103,10,147,148,106,127,54,58,108,75,12,85,153,14,16,17,115,59,18,90,20,166,150,64,65,22,163,49,23,61,122,161,182,74,170,172,96,78,174,175,176,81,189,83,130,131,38,109,181,133,32,186,136,178,35,188,139,119,84,117],onga:32,china:[75,130],grn_enc_utf8:[63,123],ful:90,"\u4e0e\u3048":70,latitude_in_msec:150,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":134,"\u7a7a\u767d\u3084":97,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,match_column:[],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":167,engi:[153,176],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":177,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":27,substr:[181,150],unix:[188,80],txt:[87,38,119],unit:[75,150,31,32,170,172,38],tokenizs:[],music:[44,148],until:[40,114,108,58,19,139,80,119],"\u30d6\u30ed\u30b0":[],grn_op_push:69,relax:139,relat:[],error_messag:135,notic:[6,122,8,97,9],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":151,thread_title_column:167,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":151,"byte\u9577":[113,79,121],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":157,"akio\u3055\u3093\u304c\u5831\u544a":154,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":79,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":124,grn_obj_reinit:79,cirit:9,no_such_device_or_address:172,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":167,want:[141,90,3,91,46,48,147,100,9,104,188,164,108,75,87,14,58,18,68,165,182,172,77,78,175,176,80,178,129,181,130,131,133,152,38,89],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":36,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":113,"\u30b3\u30de\u30f3\u30c9\u306f":36,type1:153,type2:153,"grnslap\u306f":179,grn_filename_too_long:2,turn:9,grn_read_only_file_system:2,travel:184,grn_geo_point:110,grn_input_output_error:2,enviromn:77,yum:[7,164,129,151,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":79,message_pack_install_prefix:[],groonga_clone_dir:151,moritar:78,wrong:[125,7,169,18,61,77,27,80],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u63d0\u6848\u3092\u884c\u3046":154,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":146,wing:[7,125],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":167,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":123,vari:[40,66],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":108,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[63,113],hidden:132,fin:53,easier:12,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":69,rectangl:[],stop_word:[163,46],"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":151,dcmake_install_prefix:101,cancel_request_is_accepted_or_not:103,timeout:[79,19,125],debug:[90,151,6,97,8,9,148,77,80],"obj\u3092lock\u3057\u307e\u3059":79,last_modifi:184,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":70,"akio\u3055\u3093\u304c\u63d0\u6848":154,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":167,ideograph:77,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":154,grn_table_s:[113,69],grooon:131,moritapo:44,gregex:125,grn_no_such_device_or_address:2,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":167,input_typ:58,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":151,"\u79d2":79,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,ringtail:125,"\u307e\u308d\u3086\u304d":143,libedit:[7,27,188,164,77],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":45,atv:[74,3,130],pagin:3,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,"\u30ab\u30e9\u30e0\u306b\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u518d\u5e30\u7684\u306b\u524a\u9664\u3055\u308c\u307e\u3059":145,confus:[38,178],resource_busi:172,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:151,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":63,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":151,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":97,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":151,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":113,master:[119,9,81],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":108,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":63,listen:[7,172,9,54,102],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,168],kinjir:44,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":151,"\u50241":[36,97],tree:80,second:[108,75,3,181,12,13,184,95,135,74,103,148,78,54,150],project:[0,141,150,151,132,104,88,80,81],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":113,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":167,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":167,boston:184,"db_api\u306f":69,parenthes:3,"\u3050\u308b\u3093\u304c\u6b21\u90ce":44,increment:35,incompat:[7,77,125,80],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":151,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,"0\u306e\u79d2\u8868\u8a18":70,suenaga:77,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":151,simplifi:[100,125],unknow:80,port_numb:[51,102,172],"10041\u756a":97,"key_type\u306bt":113,object:[],microsecond:[13,148],letter:189,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":167,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":62,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":167,camp:184,incompatible_file_format:172,index_blog:78,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":151,expornenti:150,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,nterm:126,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,grnslap:[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":97,restaur:132,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,172],grn_obj_set_element_info:41,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u306f\u306a\u304f":1,serv:[13,151,80],source_file_nam:135,ff1f:77,createrepo:151,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":45,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],ever:125,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":70,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":45,unexpectedli:125,etim:179,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":45,"description\u306b":144,result:[],respons:[17,2,131,132,125,7,80,103,27,54,172],fail:[22,17,3,181,40,125,7,19,10,27,174,80,65],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":79,best:132,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":36,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":69,wikipedia:45,figur:92,score:[],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":11,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":167,extend:[78,91,80,178],shidara:27,extens:4,pat_kei:94,accident:125,grn_plugin_realloc:40,column_scalar:[91,12,95,46,47,100,109,127,108,75,150,115,114,70,59,157,44,163,23,122,161,73,182,170,96,78,178,181,130,184,32,136,139],logic:[],countri:[170,102,130],login:139,"808\u4ee5\u4e0a9":45,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":144,"2nd":108,"\u95a2\u6570":177,grn_table_cursor_get_valu:63,assum:[53,103,16],summar:130,duplic:80,grn_search_optarg:[77,56],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":143,"\u306e\u307b\u304b\u306b":45,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":11,"takashi\u3055\u3093":27,much:38,salamand:[125,80],res_column:167,"\u30ab\u30f3\u30de":157,worker:[9,125],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,dave:96,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":70,grn_table_delet:113,"\u6bb5\u843d\u60c5\u5831":121,spil:77,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":1,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,sen_index_norm:42,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":168,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":11,cache_hit_r:[3,4,82,102,9,172],arg_list_too_long:172,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":82,grn_resource_busi:2,simil:150,split:[27,77,38,150,94],big:[9,80],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":70,documents_content_index:[115,32],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":167,refin:[132,125],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":82,tune:[],techniqu:[122,12],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":151,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[70,144],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":69,out_gqtp:167,users_memo:115,gzip:[],unchang:40,bellow:38,sleepi:114,hai:69,easi:[12,132,54,158,175,80,102],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":167,had:[12,119],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],hat:188,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":69,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":151,koji:7,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":70,command_nam:102,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":167,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":151,measur:[27,132],specif:[],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":73,filename_too_long:172,"\u30d4\u30ea\u30aa\u30c9":73,sebastian:80,underli:132,grn_obj_table_hash_kei:[63,113],right:[],groogna:[7,112,108,101,181],kouhei:125,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,bottom:110,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":120,"146566000x":[184,75],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":151,ichii:27,condit:[],scorer_tf_at_most:[],yoku:[125,80],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":167,grn_builtin_typ:[62,79],grn_cursor_descend:63,grn_log_path:7,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":121,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":134,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,nginxhttpstubstatusmodul:80,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":108,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":69,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":69,suffici:40,support:[],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":67,avail:[],width:[27,189],joseph:143,call:[],inv_res_column:167,"\u3086\u304d\u3072\u308d":143,"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":1,rid_max:120,pagerank:[122,28,12],"135960000x":75,arg1_nam:178,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":113,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,replied_us:184,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":124,later:[109,23,161,125,47,7,182,27,3,189,80,178],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":113,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":36,exist:[141,3,12,7,100,9,103,150,13,58,61,20,64,125,74,172,96,77,78,80,83,187,38],"object\u578b\u306fv1":45,column_name1:58,column_name2:58,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":105,grn_search:[],"_yyyymmdd":[142,23],role:[132,115],notif:[148,125],intend:[7,182,78,181,80],moero:44,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,grn_ptr_value_at:[84,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":154,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":121,grn_ii_buffer_open:86,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":56,exce:[7,77,125],time:[],push:[119,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":105,chain:182,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[180,34,111,168,67],grn_obj_get_hook:93,netbsd:125,millisecond:[13,131,74,19,150],decid:175,hold:[13,99],"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":154,decim:[13,150],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":177,downtim:[],"257662232kbyte":167,score_adjust_express:108,lru:117,exact:[82,94,108,69,65],"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":177,grn_plugin_mutex_lock:40,prevent:125,"\u8ad6\u7406\u548c":69,grn_table_group_result:113,index_point:44,sign:[],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":179,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":11,grn_broken_pip:2,takashi:170,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":79,current:[58,3,83,92,119,184,16,17,59,9,27,117,106,65],"\u3053\u308c\u306b\u3088\u308a":151,boost:176,"encoding\u306e\u5024\u304c":27,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":79,"0\u4ee5\u4e0a4":45,modif:77,address:[131,97,7,102,77,27,172],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":69,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],throughput:[27,54],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],commonli:[132,178],ipa:164,pentium:167,prefer:131,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,62,97,113,79,167,121],mitani:80,instal:[],"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":97,droonga:100,value2:[58,150],value1:[58,100,9,150],neologd:38,peopl:[132,38],grn_default_logger_get_path:7,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":167,enhanc:42,visual:[135,132,125,7,101,77,27,80],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":63,valuen:100,pgroonga:12,"windows\u7cfb":151,genki:125,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":45,improper_link:172,recycl:80,"takahiro\u3055\u3093":154,index_titl:78,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":63,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:151,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":167,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":177,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":143,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":167,date:[],data:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,stdin:112,cannot:[],int64:[45,108,80,125],grn_plugin_charlen:40,i686:167,grn_ja_skip_same_value_put:125,"\u30e6\u30fc\u30b6\u540d":167,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":120,implemnt:191,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":124,instantli:[132,32],grn_obj_init:79,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":190,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":151,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,didn:80,separ:[58,108,90,3,4,130,175,95,133,150,46,7,172,153,77,106,38,181],"_dataset":[64,186],operation_not_permit:172,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":79,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":151,compil:[27,188,125,80,77],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":113,grn_obj_path:[79,125],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":151,blt:157,internet:[132,158],formula:[165,75],"\u6700\u5f8c\u306e":167,million:66,"\u6700\u5f8c\u306b":70,mime:[77,54],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":113,"byte":[40,108,121,35,62,32,16,7,113,172,125,77,27,79,84,53,80],dest_key_s:113,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":41,grn_op_adjust:[56,69],brasil:75,"\u30b9\u30fc\u30d7":144,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,oper:[],grn_logger_reopen:7,onc:[108,130,5,184,7,27,78,189,80],beijin:75,reopen:27,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":70,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":70,open:[],grn_obj_get_element_info:41,convens:7,convent:7,return_cod:[135,148],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,citi:[92,75,184],groonga1:11,conveni:[23,132,187,27,188,176,191],"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":151,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":63,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":79,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":167,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":79,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":36,set_port:167,grn_obj_get_info:41,fumiyasu:27,grn_ctx_set_output_typ:16,"\u307e\u305fgroonga":167,column_list:[],"\u90fd":[70,144,38],sai:[3,150],san:75,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":180,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,argument:[40,3,12,47,7,100,102,51,75,150,16,115,161,125,182,109,172,27,78,80,178,32],sae:[153,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,drilldown_limit:[],uuuuuu:150,note:[40,3,7,9,103,77,147,54,164,108,109,150,13,65,68,23,165,125,170,27,80,130,131,132,139,102],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,take:[141,49,3,61,95,136,59,103,166,127],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u30cb\u30db\u30f3\u30b8\u30f3":176,noth:[108,97,169,9,61,106,176],grn1:78,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":37,grn3:78,grn2:78,buffer:[86,125,16,126,77,78,79,84],"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":105,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":108,"\u30b5\u30fc\u30d0":97,max_valu:139,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":72,do_gqpt:167,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,"\u4ef6\u6570":108,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":167,grn_lzo_error:2,"obj\u306f":79,xml:[],slow:[94,150,9,178,181],"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":67,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":36,grn_float_valu:77,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":36,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":167,grn_obj_append:79,"dump\u30b3\u30de\u30f3\u30c9":1,grn_invalid_seek:2,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,grn_ii_buffer_clos:86,requir:[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":108,aptitud:177,privileg:[102,125],where:[13,2,188],"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":63,"\u7a7a\u767d":97,regexplexicon:178,"namebuf\u306e\u30b5\u30a4\u30ba":[79,121],"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":113,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":73,mani:[141,3,12,94,9,188,54,108,150,85,13,119,122,125,169,27,80,178,181,130,132,32,186,139,88,65,191],"\u30ed\u30b0\u51fa\u529b":8,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":126,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":11,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":11,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":41,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":93,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":53,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":151,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":41,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":97,score_adjust_expression2:108,score_adjust_expression1:108,msg_id:151,resolut:[],logical_range_filt:[],former:[189,175],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":97,ctrl:[97,3,172],ivh:[164,129],anim:44,set_host:167,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":113,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[34,168],ascii:[38,181,150],hash_tag:184,binari:[],grn_proc_creat:53,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,utf8:[123,188,97],cmake:[7,77,188,101,125],grn_operation_not_support:2,"146710080x":184,"768\u4ee5\u4e0a32":45,"\u5358\u72ec\u306e\u5024":121,wiedenroth:80,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":167,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":179,grn_hook_select:93,"\u6771\u4eac\u90fd":[70,144,38],rest:[40,175],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":167,"\u30cb\u30db\u30f3":176,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":113,haystack:69,ruby1:151,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":167,"4096byte":[66,94],around:[92,32],"10043\u756a":97,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":144,res1:113,bookmark_index:85,world:[45,38,74,80,125],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:167,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":79,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":11,integ:[],manag:[188,35,83,132,94,32,16,103,102,61,20,81,175,54,9],yyyi:[148,150],"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":79,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":83,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":151,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":83,grn_obj_is_builtin:[27,79],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":151,edict2grn:80,definit:[108,75,181,12,182,122,161,32,47,7,115,100,96,109,178,170,150],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":53,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":151,exit:[],ddl:[167,80],refer:[],power:[108,178],"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":70,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"\u30d3\u30eb\u30c9\u6642\u306etip":[],grn_get_default_command_vers:116,starttim:[3,4,82,102,9,172],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":97,ffef:38,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,neighbor:132,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":151,"flags\u306b\u306f":113,match_escalation_threshold:[],effici:[132,78,85],"\u306b\u3042\u308b":79,agaist:7,charli:184,hex:[44,150],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[27,154],grn_proc_func:[40,53,16],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,bundl:[125,7,115,77,80,119],htpasswd:[9,54],no_kei:94,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":97,categor:[108,90,46],pull:[],"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":69,grn_ctx_get:[121,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":151,preconfigur:[152,129,14,141,164],reqular:131,gone:44,type_of_the_column:182,uid:151,creat:[],"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":97,certain:74,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":154,grn_id_nil:[63,113,84,16],googl:[108,181,12,122,169,28],grn_select:108,grn_ctx_open:[27,16],shimomura:7,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":151,writabl:80,"\u4e00\u65b9":70,logical_count:[],item_dataset:[186,48],"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":177,vocabulari:3,geodet:[45,74],"debug\u3092\u8ffd\u52a0":154,nagano:80,queryexpandertsv:[],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":151,cpu:[],senna:[],"\u6539\u826f":[],illustr:130,pluggabl:132,"\u521d\u671f\u5316\u3059\u308b":16,scr:167,number:[],"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,grn_obj_set_info:41,too_small_offset:172,tail:[172,151],kosuk:125,webclip:109,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],introduc:[77,88,9,80],candid:[131,153,176],too_many_open_fil:172,"4\u30ea\u30ea\u30fc\u30b9":[],"0\u30ea\u30ea\u30fc\u30b9":[],"yum\u306e\u5834\u5408":151,adjust:[],small:[181,94,125,184,77,150,38,80,65],"flags\u306b":[113,121],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":120,past:7,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":69,pass:[75,3,83,151,181,115,178,9,103,77,27,150,112,102],lexicon_t:167,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":151,section:[40,52,90,142,12,86,95,46,48,101,9,103,147,188,127,160,164,108,75,85,14,58,122,59,18,117,61,178,133,65,162,119,68,23,121,136,24,125,172,185,77,78,175,176,80,81,129,181,130,184,30,31,152,137,139,88,89,50],"log_put\u306f":8,"debian\u7cfb":151,"files\u306e\u5b9f\u884c":[],delet:[],"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":151,coremodul:9,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":11,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":144,hash:[],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":151,table_renam:112,jennif:143,sender:[131,64],grn_column_renam:121,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:44,action:125,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":93,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u6b21\u306bgroonga\u306etest":151,no_such_process:172,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,grn_plugin_mutex_unlock:40,define_selector:[],select:[],"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":167,mecab:[164,129,42,151,132,14,125,7,152,77,27,188,38,80,89],mori:157,morn:114,mecab_new2:7,"lucid\u304b\u3089":154,more:[40,3,143,12,94,95,7,100,9,71,188,54,108,150,85,13,153,16,114,115,18,61,64,65,66,163,122,125,169,172,77,175,80,178,181,182,132,32,184,139,38],yokoyama:[125,80],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":69,uint8:[45,154,95,125],"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":151,function_nam:135,grn_ctx_get_all_t:[77,16],nomal:[7,108,9],cach:[],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":69,uint64:[45,125,80],"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":73,endpoint:[131,64],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:178,learn:[],"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":36,prompt:[7,101,3,4],scan:[177,161,181,47,150],accept:[75,3,91,131,132,172,96,7,74,80,103,35,27,78,184,127,54,150],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":27,groonga_cache_limit:[],"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":167,"search\u3092\u884c\u3044":[63,113],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,177],simpl:[],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":167,"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":143,referenc:[108,130,125,7,170,65],bm25:[122,12],grn_obj_get_rang:79,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":168,conditin:181,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":16,"\u521d\u671f\u5316\u6e08\u307f\u306e":83,m64:24,tokenbigram:[],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:161,grn_obj_key_int:62,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,sysctl:[165,139,89],trade:38,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,i386:[27,129,151],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[82,97],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,grn_query_expander_tsv_synonyms_fil:175,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":154,sauci:[125,80],grn_cursor_rk:63,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":97,grn_bulk:84,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":121,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":124,inada:125,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":151,"\u65e5":38,authent:[],achiev:23,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":151,found:[108,110,125,7,169,113,101,188,38],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":93,with_posit:[122,114,163,3,91,12,182,70,184,95,108,32,47,73,115,178,139,78,150,161,181],procedur:[7,125],realli:[150,108,91,181],ftp:167,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":151,ftb:42,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":97,occurr:122,grn_column_index_upd:121,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":45,grn_table_hash_kei:[113,110],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":79,clumn:139,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":167,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":72,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":144,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":11,major:137,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":143,n_result:113,grn_ctx_use_ql:80,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,113,79,121],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":154,file_corrupt:172,"org\u304c\u30db\u30b9\u30c8\u3092":151,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":121,relationship:[],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":151,grace:77,dpkg:151,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":151,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":154,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":36,"\u307e\u305f\u540c\u6642\u306b":167,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":93,reus:94,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":146,comput:[40,150,12,122,48,7,18,139,176],toybox:13,grn_hook_entri:93,"\u95a2\u6570\u306e\u8ffd\u52a0":1,packag:[],gted:119,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":97,documenataion:135,self:167,also:[],"keybuf\u306e\u30b5\u30a4\u30ba":113,"\u8a18\u53f7":[70,97],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":79,lexcon:3,plai:[132,91],"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":151,table_pat_kei:[],cover:[132,32],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":167,umemoto:27,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,ext:90,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":97,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[113,79,121],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":157,microsoft:101,"\u3057\u304b\u3057":[70,45,144],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":144,cache_limit:[],escape_charact:84,session:[131,172],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":167,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"\u50242":[36,97],solut:[],factor:[108,80],"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":70,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":151,"\u826f\u3044\u306e\u304b":124,mainten:38,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:113,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":143,column1:[108,69,150,12,125,7,80],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":69,column2:[108,69,150,12,125,7,80],set:[],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[167,97],showen:2,startup:7,grn_obj_is_selector_proc:77,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":154,see:[],"\u306e2\u5358\u8a9e\u6271\u3044":144,sec:19,sea:[90,176],juman:164,grn_column_name_scor:121,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":82,mutex:[40,125],"chroot\u74b0\u5883\u306e":151,javascript:[],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":105,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":154,bodi:[],last:[7,77,90,38,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[70,144],whole:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":167,load:[],"256kib":139,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":146,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"5367431640625e":4,devic:132,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":69,nonexist:[108,80],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,searchu0000http:38,shinya:7,funa:80,func:[40,53,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],oldvalu:121,grn_column_name_nsubrecs_len:121,error:[],rep_gqpt:167,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":179,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":167,user_data:[40,53],grn_table_at:[154,113,79,112],needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[77,141],n_builtin_type_nam:83,nanosecond:[135,148],x64:[101,151],grn_result_too_larg:2,shorter:114,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":179,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":177,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":11,"org\u306edoc":151,alert:[6,97,8,9,148,80],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,stack:125,recent:117,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":60,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":126,person:[],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,do_gqtp:167,construct:[],mysql:[164,108,42,12,85,132,161,14,133,32,47,152,169,189,175,129,80],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":113,parenth:58,grn_tokenizer_error:2,input:[135,108,3,150,125,48,58,169,18,172,27,106,176],format:[],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":45,"\u5f15\u6570\u540d":[36,97],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":70,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":97,encount:[164,129,14,152,101,137],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":63,sampl:[],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":93,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":56,benefit:141,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":69,"56058502197266e":4,machin:80,keyword_cont:84,"aramaki\u3055\u3093":154,"ongaeshi\u3055\u3093\u304c\u5831\u544a":154,wget:[164,129,24,14,152,188],"gqtp\u306e\u5834\u5408":97,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":113,grn_expr_pars:84,grn_cursor_lt:63,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":70,"\u884c\u3059\u308b":151,repair:112,"\u5f15\u6570\u3068\u3057\u3066":69,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,pcre:[7,9],span:[161,109,32,47],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":113,line_numb:135,submit:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":63,suit:[132,32,80],"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[108,181,130,13,7,102,80,150],line:[],int8:[13,45,154,125,80],"10000cent":38,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":167,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":151,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,element1:[150,85],element2:[150,85],element3:85,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":151,parser:[181,178],"char":[40,83,62,123,16,113,79,84,53,80,121],sholud:188,taro:44,logyyyymmddhhmmss:131,invalid:[40,108,131,123,125,7,77,27,80,65],"grn_op_and\u306f":69,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":79,lucid:[154,125],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":144,wrongli:27,ago:176,algorithm:[27,75,117],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":69,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":151,fresh:114,hello:[46,150,108,163,114,38],code:[],partial:[169,69,172,176],"\u7a7a\u306e\u5834\u5408":[37,107],"\u672c\u8a9e":38,send:[],table_list:[],"\u30ab\u30e9\u30e0\u540d1":108,sent:54,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":167,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":93,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":113,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":56,tri:[184,19],"\u30ab\u30e9\u30e0\u540dn":108,grn_no_such_file_or_directori:2,"try":[184,19,88,38,78,191],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":151,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":154,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e":159,video:44,odd:150,"1\u5358\u8a9e\u6271\u3044":144,usage_default_and_custom_scor:12,obvious:13,cenos6:7,let:[],ubuntu:[],layout:151,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":79,thatn:108,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,greas:13,ctx:[40,41,69,120,83,79,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":11,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":63,menu:[108,101],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":63,"6\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":151,location_str:184,"200byte":32,firefox:119,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":151,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,zip:[],rid_min:120,doubl:[58,108,90,3,181,94,133,125,7,77,27,150,80,65],upgrad:[],next:[44,110,3,132,53,80],doubt:130,"http\u306e\u5834\u5408":97,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":108,src:[13,152],socket_is_already_connect:172,grn_obj_is_function_proc:77,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":69,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":167,drill:184,"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":124,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":154,process:[],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":144,high:[132,108,158,85],onlin:[],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":113,"column\u306e\u5024\u304c":69,"128515259x503187188":[44,74],defalt:154,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":151,surfac:92,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,alloc:[],essenti:[152,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,seriou:[7,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":167,element:[135,2,3,85,13,32,125,7,80],issu:[],"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,allow:[3,132,32,7,152,102,64],okapi:[122,12],posted_bi:184,"centos\u306e\u5834\u5408":151,movi:44,move:[7,87,101,27],lz4:[],sen_sel_term_extract:42,naist:38,comma:[3,150,130,13,58,77],"2st":108,"\u529b":[8,140],yamaguchi:27,perfect:[122,132],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,hobbi:148,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":69,"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[],murakami:[77,125,80],python:[151,20],kisk:7,billiard:[70,144],lzo:[7,27,73,125,80],highlight_ful:[],"\u3053\u308c\u306b\u5bfe\u3057\u3066":144,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":151,grn_file_too_larg:2,bump:[77,125,80],consum:80,meta:[7,95],"static":[27,3,80],grn_too_many_symbolic_link:2,variabl:[40,108,150,24,112,95,125,7,13,172,27,77,175,80],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[82,145,6,72,73,126,8,155,157,159,190,105,37,140,107],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":154,builtin_type_nam:83,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],log:[],"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":177,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":151,could:[7,13],length:[7,40,13],outsid:80,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":177,softwar:[],"\u5f15\u6570\u540d1":[36,97],"\u5f15\u6570\u540d2":[36,97],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":151,index_messag:78,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,vector_column:125,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":126,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":126,"\u30cb\u30db\u30f3\u30b4":176,licens:[7,42,151,80],system:[108,181,24,132,45,14,32,125,114,13,74,9,139,77,27,188,80,150],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":11,hash_kei:94,grn_table_get_kei:113,termin:[],articles2:78,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":60,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":107,itagaki:154,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":70,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":111,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":151,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":168,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,correspond:[108,23,153,48,169,18,79,176],"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":151,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":124,satoshi:80,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":154,source_column_nam:77,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":154,highlight_html:[],subject:125,thesauru:108,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,oracl:[],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":134,segment:[7,126,80],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":167,latin1:[7,188],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":154,grn_cursor_by_kei:63,"\u3067\u3059\u306d":124,brew:[89,20],grn_column_name_score_len:121,fact:[44,108],"\u62e1\u5f35\u5b50\u306f":167,dbm:[132,32],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[113,79,121],borderlin:[142,23],"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":83,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":151,nois:[18,38],freq2:48,freq1:48,freq0:48,jan:184,articles_cont:78,"\u30b3\u30e1\u30f3\u30c8\u884c":167,"\u6a19\u6e96\u5165\u529b":[82,145,72,73,126,155,157,159,37],"\u30b7\u30a7\u30eb\u4e0a":167,"2\u884c\u76ee":167,jiro:44,db1:54,db2:54,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,"\u51e6\u7406\u958b\u59cb\u6642\u9593":108,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":97,"hat\u7cfb":151,candidate_1:131,"\u4e8c":176,candidate_2:131,"\u4e16\u754c\u6e2c\u5730\u7cfb":45,host_name_or_ip_address:[102,172],"\u99c4\u76ee\u306a\u4f8b":124,grn_obj_lock:79,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":1,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":151,"\u3066\u3057\u307e\u3044\u307e\u3059":124,candidate_n:131,memri:139,encodiong:150,grn_plugin_expr_var_init:[40,80],max_command_vers:[3,4,82,102,9,172],grn_obj_user_data:118,etc:[141,3,151,13,165,7,152,9,139,88,175,54],tld:130,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[62,113,56],"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":113,grn_type_cr:62,zenigata:44,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,grn_ii_buff:86,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,quotat:[90,133],"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":154,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,grn_db_create_optarg:83,invalid_seek:172,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":111,grn_cache_clos:17,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":105,spain:75,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":167,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,cve:80,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":60,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":53,site:[44,108,3,130,13,136,74,102,157,158,78,80],archiv:[],"_avg":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":154,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":82,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,output_column:[],"\u30ad\u30fc\u30ef\u30fc\u30c9":146,expans:[],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":79,"dist\u3067\u751f\u6210\u3057\u305ftar":151,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":154,php:[7,151,80],expand:[],off:[27,38,9,80],dinam:158,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":108,exampl:[],command:[],ecmascript:[7,108,158,125,150],"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":155,akira:80,prepend:[150,9,181],web:[44,108,181,153,48,18,9,188],uncontinu:7,end_of_data:172,combind:181,"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":36,broken_pip:172,"185428000x":75,dest:[13,179,97],five:[135,3,96],"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":154,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":126,"\u3053\u306e\u3088\u3046\u306bn":70,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":143,rep_gqtp:167,resiz:40,grn_plugin_regist:[40,146],interact:[3,172],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":97,daylight:80,grn_cas_error:2,avoid:[],"0\u4ee5\u4e0a65":45,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":36,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":27,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":151,stage:80,iwai:[7,112,125],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":145,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":70,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":79,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":167,merg:[7,132,119],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":97,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":151,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":45,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":190,"function":[],cutter_debug:177,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":82,"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b1":[],sigstop:125,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":154,count:[132,108,184,23,44],grn_table_cursor_delet:63,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":45,otherwis:[40,73,3,150,136,17,115,59,100,182,103,96,127,79,170,81],problem:[17,181,13,125,139,7,9,27,77,38,150],yuki:[27,80],"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":151,bigram:[],"int":[40,17,110,120,4,93,86,16,7,25,113,19,121,62,63,79,84,53,83],updated_at:70,jessi:[125,80],redcloth:151,againt:108,inc:80,grn_obj_key_norm:113,grn_int32_value_float_valu:77,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:77,varieti:44,assgin:150,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":134,francisco:75,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":69,"class":[],"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,quetzal:7,document_version_ful:151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":97,rule:[108,90,80,54],dbmss:132,"scr\u3067\u3059":167,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":97,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":45,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"localstatedir\u3092\u4f7f\u7528":154,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":113,spec:[7,27,125],"\u524d\u63d0\u6761\u4ef6":[],secsion:135,editrc:27,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":63,"status\u30b3\u30de\u30f3\u30c9":1,grn_cache_set_max_n_entri:17,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":27,upload:151,msyql:85,unmanag:126,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":72,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":11,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":113,entries_local_nam:157,"4byte":172,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":151,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":113,zunda:27,"\u547c\u51fa\u5074\u3067\u6e96\u5099":41,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":97,lock_clear:[],"\u7de8\u96c6\u8ddd\u96e2":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":121,"obj\u3092unlock\u3057\u307e\u3059":79,aki:80,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":167,"\u9759\u7684\u89e3\u6790":[],"\u3092\u8ffd\u52a0":[27,154],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":27,request_cancel:[],total:[],highli:[122,28,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":155,column_remov:[],kytea:[7,90,125,188],search_result:108,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":167,word:[163,175,71,181,12,182,132,158,108,48,7,169,18,184,99,38,176,80,150],exit_failur:5,work:[],era:132,select_opt:150,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"16gb":165,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":167,geo_in_rectangl:[],indic:[75,90,3,125,148],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":167,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":45,basebal:[44,78],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":113,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u540d\u524d":[],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":151,mxcl:151,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":105,u0000http:38,recogn:132,"builtin_type_names\u306b\u306f":83,ahost1:178,after:[3,5,94,47,7,101,102,188,110,150,13,19,20,119,44,163,161,125,27,80,131,139,189,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":144,lat:167,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":79,grn_is_a_directori:2,averag:[108,80],"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,n_queri:[3,4,82,102,9,172],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":154,confiugr:139,opaqu:[17,172],localnam:157,grn_fals:79,too_large_offset:172,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":36,wgs84geopoint:[44,75,130,13,184,45,74,110,102,27],order:[],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,offici:[27,129,164,151,115],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":120,"3\u30ea\u30ea\u30fc\u30b9":[],grn_default_query_logger_set_path:7,flexibl:[132,158,115],"web\u7ba1\u7406\u753b\u9762":1,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":69,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":151,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:121,them:[3,12,13,188,164,108,75,85,87,14,58,19,119,73,74,172,77,178,129,181,84,135,152,139,38],thei:[90,4,12,94,47,48,9,10,148,188,54,58,108,150,85,114,122,18,158,22,24,161,169,174,175,176,181,182,133,32,139,38],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":60,fragment:37,comment_index:184,grn_plugins_dir:77,"break":[7,27,80,61],jinja2:151,deatil:108,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":167,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":144,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":[],ruby_load:[],serach:18,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":177,owner:[9,125],"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":154,network:[7,44,172,54],morpholog:[132,188,38,150],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":93,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":126,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,standard:[58,45,3,9,172],expnas:175,sequence_dataset:186,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":108,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":134,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":167,regress:[77,125,80],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":167,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":154,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":177,independ:132,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,168],"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":151,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":79,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":151,grn_proc_set_selector:80,john:[170,143],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":151,grn_obj_with_sect:121,tokenfilterstem:[],latitude_in_degreexlongitude_in_degre:150,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,target:[90,3,47,7,101,103,188,54,58,108,110,85,13,17,115,20,65,121,161,27,78,79,80,181,83,32,136,84],provid:[141,3,4,12,94,95,48,7,9,54,164,75,5,14,16,115,18,178,52,169,175,176,80,81,129,130,131,132,30,152,187,191,102],shuhei:80,minut:[150,184,74,18,148,176],manner:[108,3],grn_text_valu:84,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":1,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":[],latter:[189,175],indexbuf:121,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":60,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":124,usernam:[44,101],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":177,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":36,gronnga:169,excut:125,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":124,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":126,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,identifi:170,"column\u306f":121,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,latenc:167,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":151,liblzo2:[152,14],keyword2:[7,161],keyword1:[7,161],grn_obj_key_with_si:113,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],awar:40,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u3059\u3079\u3066\u306e\u30c7\u30fc\u30bf\u3092\u51fa\u529b":157,suffixsearchterm:[181,150],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[],accord:[13,75],old_release_d:151,res_tabl:167,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":113,address_is_in_us:172,howev:132,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":157,grn_obj_check:79,grn_ptr_init:[84,16],"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":105,com:[108,189,3,151,130,13,74,102,104,119,81],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":190,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":151,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":11,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":167,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":53,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":151,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[165,188,102,91],"\u672c":38,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":151,uint16:[45,125],snippet3:32,enginen:176,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":167,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,drilldown_calc_typ:[],"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,inhibit:112,grn_ctx_db:16,gnu:[],properti:[148,14],sourceforg:[151,26],grn_obj_prepend:79,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,aio:125,"\u5165\u529b":[6,105,190,107],adisk:178,cond:125,conf:[165,141,9,139,77],arg2_valu:178,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":177,grn_cach:[],perform:[],"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,warri:137,descend:[153,108],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":154,"\u6771\u4eac":[70,144,38],unsupported_command_vers:172,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:44,hang:125,evil:150,hand:[108,182,13,132,115,9,78],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,thu:[23,91,132,186,99,74,78,64,80,181],o_binari:7,contact:119,thi:[90,3,4,12,7,9,75,13,14,16,17,18,20,23,24,182,27,30,31,32,38,40,47,48,50,54,164,188,58,59,61,65,52,68,73,74,77,78,79,80,81,83,152,88,117,91,95,97,100,101,102,103,106,108,85,115,121,122,161,125,127,129,130,131,132,133,135,136,137,139,142,147,148,150,160,162,46,165,172,96,174,175,176,178,181,183,184,185,186,89],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":151,"_score":[3,12,48,7,27,108,75,150,85,153,70,18,60,44,121,122,125,74,77,78,176,184,115],no_such_devic:172,"table_list\u306f":105,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":144,grn_default_logger_set_path:7,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"\u8ad6\u7406\u7a4d":69,grn_ctx_per_db:[27,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u306ebase_version\u306e\u66f4\u65b0":151,scan_build:177,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":105,grn_op_but:69,night:[114,91],grn_column_name_id_len:121,grn_plugin_command_cr:[40,80],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":62,famili:[90,150],"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":190,tokenbigramsplitsymbolalphadigit:[],grn_obj_renam:79,tasuku:[77,42],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":144,overcom:23,grn_text_len:84,grn_pvector:[84,16],shift_ji:[188,38],grn_inappropriate_i_o_control_oper:2,repositori:[],post:[],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":167,obj:[41,79,83,93,126,56,84,53,118,121],comment2:78,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":179,zxvf:151,"\u3068\u306a\u308a":70,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":124,"float":[],bound:80,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":144,grn_ctx:[],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":16,coverag:177,accordingli:9,wai:[0,4,130,85,132,158,125,7,115,9,184,88,78,64,80,91],"hiroshi\u3055\u3093":154,conbin:[108,158],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":34,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":121,event_dataset:[64,186],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"true":[1,145,3,91,12,6,95,163,47,136,46,100,103,10,147,109,127,107,114,108,75,150,85,13,190,58,115,59,155,143,65,22,44,68,23,122,161,72,125,168,73,182,74,170,96,78,174,80,178,181,130,184,32,34,8,189],"\u4e00\u822c\u7684\u306b\u306f":79,maximum:[66,108,23,150,12,13,165,96,172,35,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:42,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[82,145,6,72,73,126,8,155,157,159,190,105,37,140,107],fedoraproject:129,score1:69,score2:69,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":167,expresss:158,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":97,test:[164,129,3,177,151,13,184,14,167,7,152,101,9,137,77,78,38,80,102],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":154,memos_tag:100,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,insensit:[108,178],scorer:[],outdat:80,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:80,masaharu:[7,112,125],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":124,global:[],"s3ki\u3055\u3093":154,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":124,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,hubeni:75,value_typ:[],"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":167,graph:132,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":143,takiuchi:125,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":97,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":69,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":143,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":41,octob:80,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":157,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":73,administr:[],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":79,grn_obj_unlink:[79,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":151,"4gbyte":66,upper:[27,3,80,65],version:[],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":11,akihabara:74,"groonga\u3084mysql\u306erpm":151,cost:[114,38],admin_html:[27,97],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":118,tables_buff:16,appear:[108,90,3,175,12,132,32,2,150,38,80,181],"\u7def\u5ea6\u306f":45,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":124,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,gener:[],satisfi:[58,77,125],minagawa:[125,80],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":167,redmin:80,table_hash_kei:[],trial:132,"\u305d\u306e\u969b":151,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":97,behav:[131,75],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":11,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":168,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":63,regardless:77,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u691c\u7d22\u7d50\u679c":108,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":177,output_typ:[36,4],should:[40,7,101,164,108,150,85,14,16,58,18,20,65,172,127,175,81,129,181,35,152,137,189,84],mobil:132,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,httpd:[],grn_dat:27,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":79,"648\u4ee5\u4e0a2":45,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],key_typ:[],furigana:153,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":151,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":177,"_sum":108,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":151,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":79,prepar:[],grn_table_sort_kei:113,grn_illegal_byte_sequ:2,can:[2,3,4,5,7,90,9,10,75,12,13,14,16,17,18,19,20,22,23,182,27,30,32,35,38,40,92,46,47,48,54,164,188,58,59,61,65,44,68,73,74,77,78,80,81,83,84,152,89,0,94,95,97,99,100,101,102,103,106,108,109,85,112,114,115,117,119,122,161,125,127,129,130,132,133,135,139,141,143,147,148,150,153,158,160,163,165,169,172,96,174,175,176,178,181,184,187,189],clearlock:[],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":27,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":113,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,topic:[],abort:80,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":97,occur:[73,110,91,153,135,125,16,7,59,139,77,175,80],"\u30c6\u30b9\u30c8\u306f":177,multipl:[],mpaa:96,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,82,102,9,172],write:[108,142,181,184,97,99,136,178,20,76,78,188,112,80,150],grn_table_select:[],familiar:130,flanc:75,grn_cursor_ascend:63,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":126,southern:7,uint:7,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":69,"rb\u3092\u8ffd\u52a0":154,grn_too_many_open_files_in_system:2,favorit:[],grn_plugin_log:40,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,grn_operation_would_block:2,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":126,approv:80,increas:[108,90,85,122,132,75,49,147,139,166,38,178],tagger:132,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":151,still:[87,125,59,103,80,119],ieee:45,dynam:[112,132,3,9],window:[],"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":69,"\u8a9e\u306e":38,non:[135,108,181,125,7,61,38,150],loaded_valu:68,recal:[132,38,158],rake:151,col2:79,col3:79,col1:79,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":113,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,half:189,alisa:115,now:[],discuss:[0,26],nor:108,introduct:[],drop:[7,27,125,80,77],u0000ful:38,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":105,"\uff4d\uff59\uff53\uff51\uff4c":[161,47],januari:[131,150],grn_encod:[],domain:[],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":151,"takahiro\u3055\u3093\u304c\u5831\u544a":154,significantli:132,year:[184,96,150,148],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":151,shown:[3,150],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":121,space:[40,108,90,3,181,85,132,133,125,48,58,27,38,178],acccess:141,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":167,"\u307e\u305f\u901a\u5e38\u306f":45,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":151,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":45,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":16,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":121,grn_db_kei:112,care:[108,23,181,122,95,176,119],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":151,couldn:7,arnaud:27,ohzeki:80,"175904000x8464000":75,british:91,grn_ctx_get_match_escalation_threshold:25,directli:[184,150],with_check:[133,80],yourself:137,column_n:182,size:[],silent:81,bookmark:85,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":151,friend:[44,88],column_3:182,column_2:182,column_1:182,kenichi:[27,154],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,grn_geo_cursor_next:110,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":45,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":69,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":79,than:[],n_keyword:84,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":144,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5dee\u5206\u3092":167,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":53,browser:[188,102,119],fork:[97,119],grn_column_trunc:[121,80],allow_column:[108,181],your_new_db:27,"txt\u306e\u5185\u5bb9":151,recover:[83,61],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":79,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":105,"\u3059\u308b\u3068":177,begin:[179,38,178],"6813819x139":[13,74],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":97,price:13,renam:[3,94,125,7,59,27],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\u3068\u308a\u3068\u3093":[181,150],"6909211x139":74,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":124,column_renam:[],"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":126,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u3053\u306e\u3068\u304d":144,concurr:148,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":113,pakcag:164,onli:[40,92,141,2,3,5,94,47,7,90,101,9,103,147,150,106,78,54,58,108,109,12,136,13,153,14,17,115,61,178,65,164,122,161,114,182,74,170,117,96,28,175,80,81,129,189,181,127,132,32,152,137,119,38],"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":70,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":69,"\u3050\u308b\u3093\u304c":[181,150],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":154,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":6,overwritten:74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"128mb":7,allow_pragma:108,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,error_loc:135,"configure\u306e":27,sport:44,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":60,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[135,139,108,181,150],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":126,between:[],"import":[90,12,99,7,9,188,54,108,151,85,16,17,65,122,125,27,28,175,181,132,31,38],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":151,pthread_:125,"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":70,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":83,instroduc:125,nearbi:132,"\u305f\u3068\u3048\u3070":144,tutori:[],grn_encoding_pars:123,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":151,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":151,grn_too_many_link:2,exploit:132,"debian\u7cfb\u3082\u3057\u304f\u306fr":151,rebuild:77,invers:[122,80,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[41,79],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":179,emphas:109,rubi:[68,42,151,12,85,132,161,47,7,158,147,178,80,81],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":97,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":79,"edge\u306fctx\u3092\u542b\u3080":134,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,grn_resource_temporarily_unavail:2,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":151,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":34,nnede:139,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,develop:[],"ueno\u3055\u3093\u304c\u5831\u544a":146,media:80,epoch:[13,184],document:[],do_loc:167,finish:[148,103,5],"\u5225\u9014deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u6700\u65b0\u7248\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":151,someon:184,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":126,eito:125,repoforg:[7,129],theater:91,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,appveyor:80,key_nam:108,"_post":151,sentens:77,touch:139,speed:[27,169,94],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":97,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,isssu:125,mmap:[],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":27,"\u30ad\u30fc":97,grn_plugin_proc_get_var:[40,80],real:[132,32,139],swig:42,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":167,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":97,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":108,invalid_argu:172,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,cascad:[],output:[],unsplit:[108,69],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":113,index_friend:44,"\u51e6\u7406\u6642\u9593":108,logical_filt:142,"146249000x":184,refresh:44,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[145,6,72,8,155,190,107],name2:150,"\u30d9\u30af\u30bf\u306e\u5024\u3092":154,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"\u306e\u5834\u5408\u306f":124,tomoatsu:[7,154],unicod:189,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":167,grn_bad_file_descriptor:2,comparison:[],central:184,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":97,degre:[13,27,74,150,85],backup:[83,157],processor:[164,132,129,14,152],unregist:[22,174],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[143,151,70,144,167,157],insuffici:13,your:[],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":179,ngx_http_proxy_modul:9,area:132,aren:[92,108,181,94,32,7,9,139,77,80,54,65],start:[],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":45,lot:125,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":167,submiss:[153,18,176,48],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":168,ealier:7,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":108,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":167,immedi:[132,9,103,77],grn_not_socket:2,"default":[],"\u6a19\u6e96\u5165":[8,140],"\u3068\u5171\u306b":121,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":70,multibyt:27,data_set_nam:153,grn_obj_unlock:79,decreas:[77,38],"table\u306ecolumn":113,value_1:[3,102],value_2:[3,102],valid:[108,3,181,13,94,125,48,7,27,80,150],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":93,grn_obj_add_hook:93,you:[2,3,4,5,7,90,9,10,75,12,87,14,16,17,19,20,22,23,182,27,28,31,32,35,38,40,92,13,46,47,48,54,164,188,58,59,61,64,65,44,68,73,74,77,78,80,81,83,84,152,88,89,0,91,94,95,97,26,100,101,102,103,104,106,108,109,85,112,115,117,119,121,122,161,125,127,129,130,131,132,133,135,136,137,139,141,142,143,147,150,153,158,160,162,163,165,170,172,96,174,175,176,178,181,184,186,187,189],string2:111,string1:111,poor:175,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":63,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":79,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,reduc:[141,91,132,125,7,18,94,77,54,178],"n_builtin_type_names\u306b\u306f":83,naoya:[77,125,80],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":126,"\u3092\u683c\u7d0d\u3057\u307e\u3059":121,drilldown_offset:[],month:[148,44,150,184],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":151,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,articl:78,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":167,zlib_error:172,mechan:[7,9,54],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[58,108,181,12,44,132,161,32,47,7,94,135,178,176,54,150],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":121,patsuffix:143,atsushi:[77,80],query_flag:[],masafumi:[125,80],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":69,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":126,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":41,groonga_dir:151,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":144,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":167,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":113,learner:[],"\u95a2\u6570\u306f":[34,111,69,168,67],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":126,naoina:[7,125],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":167,too_many_symbolic_link:172,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":179,snippet1:32,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":63,snippet2:32,ultra:44,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":93,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":177,score_1:131,score_2:131,hoge:[97,111],normallexicon:189,"1024r":151,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":151,"\u30c8\u30e2\u3061\u3083\u3093":44,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":79,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":151,bash:[77,188],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,fulltext:[164,92,108,90,181,115,94,161,14,30,47,32,152,150,78,189,129,141,65],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:27,score_n:131,cutter_dir:151,histori:27,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,user_input:150,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":83,grn_db_int:79,phrase:[],"0mq":125,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":118,anoth:[7,132,108,175,84],spreadsheet:175,snippet:[7,42,32,125],grn_expr_syntax_escap:84,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":151,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":97,unlink:84,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":36,grn_obj_compress_lzo:121,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":143,grn_table_group:113,egg:78,narwhal:27,logrot:[7,80],akinori:77,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":151,help:[],grn_ii_estimate_size_for_lexicon_cursor:77,grn_proc_funct:40,soon:[92,32,54],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,paramet:[],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":154,systemd:7,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":151,"\u5024\u306e\u7bc4\u56f2\u306f1":60,shimada:7,comments_cont:78,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":69,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,range_error:172,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":108,"groonga_org_path\u306bgroonga":151,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":151,fulli:[7,9],yito:[7,125],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":45,heavi:108,grn_column_nam:121,"\u30b9\u30ec\u30c3\u30c9\u6570":167,"\u30d5\u30a1\u30a4\u30eb":151,todo:[],event:54,"\u3080\u308b\u3093\u304c":[181,150],"http\u30b5\u30fc\u30d0\u30fc":[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":151,proxy_pass:9,publish:[151,80],"\u691c\u7d22\u5bfe\u8c61\u306e":70,trusti:[14,151,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":73,"shutdown\u306f":140,textil:151,"1\u30ea\u30ea\u30fc\u30b9":[],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":11,pub:[129,151],asc:151,reason:[108,150,130,165,141,7,61,178,38,176,54,65],base:[141,90,12,47,48,7,9,103,188,164,108,110,150,14,18,64,119,122,161,125,183,176,80,129,181,131,132,32,152,184,191,38,102],grn_ctx_fin:[7,16],put:[181,122,139,119,80,178],"groonga\u53ca\u3073groonga":167,rect:[7,75,168],basi:3,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":167,assign:[],grn_obj_get_valu:[27,79],"\u4fee\u6b63":[],"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:125,miss:[125,7,77,27,175,80],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":113,conditional_probability_threshold:[27,153],station:[92,74,184],zeromq:188,schema:[12,47,100,108,75,150,114,115,18,23,122,161,182,109,96,78,178,181,32,186,170,139],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":154,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,"max\u3068common":63,grep:[152,129,14,164],jqueri:80,"\u4efb\u610f\u306edb\u540d":167,str:84,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":79,"windows\u5411\u3051":151,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"null":[],"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":113,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,lib:[22,141,154,125,9,61,10,174],"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":151,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,elapsed_tim:[135,148],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":168,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":177,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,80],tokenbigramsplitsymbol:[],"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":177,grn_proc_get_typ:80,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,clear:[121,151,7,136,27,79,80],grn_too_many_open_fil:2,clean:[77,177,151],newvalu:121,weight_in_weight_vector:85,usual:[13,78,64,16],grn_ctx_t:2,pretti:80,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":151,wanab:125,yml:81,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":154,grn_connection_refus:2,max_siz:63,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":177,"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":167,grn_get_default_encod:123,grn_obj_compress_zlib:121,similar_search:[7,153],"\u68ee\u7530":44,"\u82b1\u5b50":44,grn_hook_get:93,doc_bodi:91,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":151,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":108,grn_obj_is_lock:79,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":70,resource_deadlock_avoid:172,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":73,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":167,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":73,isob:125,numer:[],no_locks_avail:172,both:[3,94,101,71,54,164,108,150,85,14,114,122,73,74,172,77,176,178,129,181,184,32,135,152,137,132],grn_range_error:2,geopoint:[],"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[6,97],condition2:150,condition1:150,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":154,jeff:143,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":113,"000x":119,too_small_limit:172,header:[],"\u623b\u308a\u5024\u3067\u3042\u308b":120,linux:[],tokenbigramignoreblanksplitsymbol:[],"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":167,stamp:[148,18,176,48],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":69,"null\u306a\u3089temporari":83,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":107,grn_table_sort_desc:113,geo_in_circl:[],"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,168],grn_table_cursor_get_kei:63,coordin:[13,75],unpatch:42,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":168,"while":[114,90,132,125,7,136,59],"\u691c\u7d22":[],"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":97,grn_zlib_error:2,grn_column_name_value_len:121,loop:[7,80],pack:[],malloc:80,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":167,readi:[108,150,7,178,20,188,181],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":116,fedora:[],belong:[71,130],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":36,grand:184,octal:150,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":79,src_kei:113,imagin:[108,130],optim:80,grn_set_default_match_escalation_threshold:25,temporari:[],user:[],"takuto\u3055\u3093\u304c\u5831\u544a":154,bob:[108,181,184,115,59,9,96,127,54],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":97,input_output_error:172,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":113,nise_nab:80,"\u30af\u30a8\u30ea\u306e":70,recurs:[108,151,136,9,104,175],"56880000x":75,nginx:[],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":113,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":124,address_is_not_avail:172,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,grn_table_sort:113,signal:80,resolv:[12,85,122,7,27,28,37],elaps:[150,131,135,148,27,4],"32bit":[77,125],popular:[77,108,85],update_buffer_s:86,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":113,creation:[27,3,125],grn_obj_db:83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":37,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[6,8],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,slash:150,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":36,entry_bodi:73,run:[],stem:[152,163,14,80],step:[3,13,48,101,178,188,119],"\u3082\u3057test":167,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":70,grn_no_memory_avail:2,idf:[122,80,12],"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":120,block:[13,150,9,125,65],libzmq:[152,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[69,84],within:[184,74,18,176],ensur:18,grn_obj_key_uint:62,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":151,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,nokubi:80,askmonti:80,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":113,properli:[7,77,102,181],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":27,pangolin:[7,14],tokenbigramignoreblanksplitalpha:38,hereaft:132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":151,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,info:[6,97,122,8,9,178],utc:[135,150],"0xc7":172,utf:[42,4,131,125,189,7,188,38,150],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":167,munin:[],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":69,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":167,"_max":108,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":167,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":123,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,doesn:[40,92,90,91,12,94,95,7,9,103,188,54,108,150,114,59,18,19,65,163,122,125,96,77,175,176,80,178,181,32,135,139,189,38,191],repres:[44,91,13,97,158,178,84,150],"homebrew\u306e\u66f4\u65b0":[],before_instal:81,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":151,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":79,pronounc:158,titl:[44,108,3,181,12,111,13,125,136,122,102,182,151,78,130,28,80,150],drilldown_calc_target:[],accross:7,grn_ctx_close:[27,80,16],orangain:125,sigcont:125,ooo:94,draw:44,"groonga\u5358\u4f53\u3067test":167,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":79,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":124,eval:147,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":151,kawaji:7,hash_index:184,groonga_org_path:151,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":11,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[177,151],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"146741340x":184,ruby_script:147,friendli:7,nippon:176,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":167,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":144,"\u5185\u90e8\u7684\u306a\u5909\u66f4":151,button:[7,125,119],definion:150,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":143,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,download:[164,129,151,24,14,152,101,188,89],click:108,grn_obj_decr:79,onigmo:[77,80,178],experiment:[142,47,7,103,27,147,17,61,68,23,122,161,125,77,174,112,80,178,83,183,133,32,38],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":151,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":83,becom:[13,132,42,75],accessor:113,convert:[2,150,13,94,184,189,80],convers:[27,9],blogroonga:[],"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":167,chang:[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":60,danger:[136,59,83,54,121],grn_plugin_mutex_clos:40,"boolean":[],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,query_expand:[],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,query_expans:[],"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[145,72],remaind:150,mismatch:80,about:[],"23t02":150,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":151,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":154,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":113,"shibuya\u3055\u3093":154,retriev:[132,108,150],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":151,min_siz:63,meet:[184,74,80],mitsuhiro:154,control:[],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":168,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":151,sudo:[164,129,151,24,165,14,141,7,152,102,20,139,188,177,89],directory_not_empti:172,grn_domain_error:2,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,tokendelimit:[],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,lifecycl:81,narg:84,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":121,"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":151,tokenregexp:[],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":113,decrib:9,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,syscal:80,otehr:65,normalizernfkc51:[],table_token:[],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[79,121],"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":69,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,sysconfig:141,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":154,"\u3053\u306e\u5834\u5408":63,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[113,79,121],grn_plugin_proc_alloc:40,read_only_file_system:172,grn_ctx_set_command_vers:16,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":151,handl:[2,13,94,125,16,9,165,139,38,80],auto:[7,153,80],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,succeeded_or_not:[136,59,170,127],"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":151,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":151,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":167,column_information1:95,column_information2:95,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":70,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":1,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":82,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":167,chunk:[165,139,126,77],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":177,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":167,special:[108,2,3,181,161,32,47,125,135,172,90,19,178,188,84,119],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":167,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,suitabl:[108,12,122,94,114,38,80,65],grn_geo_estimate_in_rectangl:[27,110],new_vers:151,"quit\u306f":159,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[63,121],manipul:158,grn_match_escal:[],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":167,latitude_in_msecxlongitude_in_msec:150,keep:[66,114,85,16,17,27,38],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":154,geometri:27,largetext:94,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":177,grn_cursor_by_id:63,"scorer\u306f":108,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":155,buf_siz:[113,79,121],"groonga\u30b3\u30de\u30f3\u30c9\u306b":154,mkdir:157,attach:[163,189,119],"\u7d44\u8fbc\u578b":[],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":151,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[70,36,45,167],"final":[40,108,9,5,85],fuzzi:65,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":151,exactli:165,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"20km":184,"groonga\u306f":177,beg:[38,178],sequence_queri:186,extrct:150,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":151,concatin:[7,131,125],logs_20150205:23,logs_20150204:23,logs_20150203:[142,23],tabl:[],"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[113,121],border:[7,90,96],"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,grn_obj_search:56,"0x08":172,"0x04":172,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":154,"0x01":172,"0x02":172,"\u30ed\u30b0\u3092":151,ifexist:58,singl:[108,90,3,85,133,125,58,80],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":108,"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":168,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":151,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":79,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,kazuhiro:125,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":36,url:[27,80,54,157],uri:9,grn_table_upd:113,fontain:27,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":113,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":63,grn_index_cursor:[],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":179,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,ssssss:148,object_corrupt:172,"146867000x":184,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":151,grn_obj_is_proc_proc:77,launchpad:[14,151,80],"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":167,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[105,97],"\u3053\u308c\u3067":151,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":70,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":11,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":79,enabl:[],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":151,"masahiro\u3055\u3093":154,gram:[132,90,3,150],"output_columns\u304b\u3089_value\u3092\u524a\u9664":154,contain:[],sho:[125,80],"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":70,orphan:125,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":69,korea:130,scorer_tf_idf:[],statu:[],correctli:[7,3],wibowo:125,tend:78,state:[7,75,172,170],grn_retry_max:2,all_record:7,kei:[],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,regular_express:178,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":120,eclips:119,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":70,admin:[7,27,154,125,80],jersei:184,polici:125,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"po\u306e\u5b9f\u884c":[],"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":124,cutter_source_path:151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u5185\u306e\u30b9\u30ad\u30fc\u30de\u3068\u7279\u5b9a\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u30c7\u30fc\u30bf\u306e\u307f\u51fa\u529b":157,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":79,"\u5185\u8a33\u306f":70,"\u304c\u3042\u308a\u307e\u3059":[36,151],quit:[],addition:[77,74],cent:38,quiz:44,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,treat:[92,108,90,23,150,142,125,7,18,77,176,80],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[145,6,72,8,155,190,107],downcas:189,"\u65e5\u672c":[38,176],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":108,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":105,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":113,delimit:[90,13,132,125,48,77,38],replic:12,"12gb":165,glossari:81,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":27,longitude_in_msec:150,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":53,demo:44,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":70,welcom:[108,181,87,184,26,150,88,119],grn_table_cursor_t:63,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":70,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":155,crch:90,entry_selector:155,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":70,nsubrecs_column:121,http:[],"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":70,effect:[7,58,97,184],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,rpmforg:129,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],grn_post:[110,120],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":159,operation_would_block:172,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":79,lcov:177,distanc:[92,75,150,132,7,74],koi8r:[7,188,97],remove_blank:133,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":79,"log_reopen\u306f":190,bc009774:151,patricia:[],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":151,grn_ctx_get_command_vers:16,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":45,"\u3067\u533a\u5207\u308a\u307e\u3059":97,logger:7,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":56,int32:[3,12,45,48,7,127,108,75,150,85,153,70,59,18,44,122,125,74,96,78,176,80,181,130,184,115],ryoji:80,pikonyan:44,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":60,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":167,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":126,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":167,dat_kei:94,tomita:154,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":179,grn_file_corrupt:2,necessari:[27,3],"\u4e0b\u8a18":63,page:[],"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":154,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":167,use_offline_index:112,revers:[],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[179,97],"436218z":150,out_http:167,home:[188,38,151],tatsuya:7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":73,index_column:80,nihon:176,estim:[165,110,77],grn_obj_key_float:62,grn_obj_remov:[27,79],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"10t13":[18,176,48],win64:101,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":1,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":167,grn_geo:[],offset:[],"blog_body\u7d22\u5f15":70,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":167,due:[132,32],empti:[108,181,95,125,77,27,80],f10399c0:151,groonga_query_log_path:[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":146,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":97,museum:184,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":167,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":97,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":144,gronga:[169,175],overflow:[13,27,125,80],ear:90,"string\u306b":69,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":69,fullwidth:77,displai:7,limit:[],"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,"\u611f\u8b1d":[],"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,evalu:[150,181,125,182,147,38,178],kanji:38,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":154,eric:96,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":79,blog1:78,blog2:78,new_valu:108,futur:[68,75,23,85,133,125,172,147,27,54,178],rememb:108,halfwidth:189,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":63,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,sphinx:[87,15,119,80,20],katagiri:125,table_remov:[],"\u3068\u540c\u3058\u610f\u5473":97,max_concurr:179,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":180,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":124,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],whose:[3,150],accur:[132,32],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":151,grn_io_vers:80,"0x20":181,escaped_queri:84,kentaro:125,swap:139,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":34,"void":[40,83,5,123,113,25,116,19,63,79,112],voic:189,is_anim:13,affect:[7,77,125,80],"\u306f\u7121\u52b9\u3067\u3042\u308a":63,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":154,demerit:94,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":97,correct:[],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":168,vector:[],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"10m":9,batch:7,"10z":150,"\u30b0\u30eb\u30fc\u30d7\u5316":60,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":167,even:[164,129,23,150,122,132,14,125,7,152,101,137,78,176,80],"\u3064\u307e\u308atest":151,neg:[40,108,2,16,7,19,53],spokesman:88,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"\u3050\u308b\u3093\u304c\u592a\u90ce":44,"new":[],net:[44,3,151,130,13,26,74,102],maverick:27,metadata:[68,12,122,184,7,147,28],elimin:125,abov:[3,91,48,7,100,101,9,103,188,108,109,115,18,119,23,182,74,96,77,78,175,176,81,189,130,131,184,65,38],never:[153,188],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":167,met:182,"\u3053\u306e\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8\u3067\u306f":97,grn_log_level:40,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":151,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":79,jame:143,sji:[188,42,97],serch:[153,18],yamada:80,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":108,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":179,grn_expr_exec:[84,16],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":167,"\u826f\u3044\u4f8b":124,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":70,concret:[44,78,130],overhead:[141,80],typo:[125,7,18,27,175,176,80],recommend:[164,108,3,181,141,14,129,54,135,152,100,101,102,137,139,178,38,80,150],"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":70,type:[],readm:[125,151],"\u554f\u984c\u306fgroonga":167,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":79,warp:80,warn:[108,6,97,125,7,122,8,9,148,112,80,178],"\u4ee5\u4e0b":167,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":70,setup:[119,125,81],neolog:38,akio:[7,27,125],root:[36,97,9,125,102],give:[132,115],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":69,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:179,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],unsign:[],rid:86,recov:[],log_level:[],quot:[90,3,181,133,125,58,150],updag:7,config:[1,97,7,101,27,188],grn_arg_list_too_long:2,sitedomain:[102,130],geoloc:[],"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,permission_deni:172,third:[13,95,108,150],maintain:38,grn_text_printf:80,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":70,romaji:176,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":124,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":151,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":83,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":72,washida:125,keyboard:108,copyright:80,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":168,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":111,better:[132,78,108,80,150],persist:[],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":63,html_untag:[],"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":154,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":168,leaner:64,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":151,grn_exec_format_error:2,cache_previ:17,side:[7,132,108],mean:[40,92,2,142,95,97,7,90,9,103,148,3,188,108,106,150,85,13,153,19,23,122,165,125,182,74,110,77,175,176,80,178,181,130,84,136,139,189,38],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:44,blog_comment_index:182,grn_obj_compar:79,extract:[],"hiroshi\u3055\u3093\u304c\u5831\u544a":154,content:[40,12,95,9,54,108,109,150,114,115,44,163,125,182,172,27,78,80,181,184,32,135,139],rewrit:42,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":63,situat:108,ncpu:89,mdev:77,lzo_error:172,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:178,iso:150,isn:[95,7,9,147,188,108,153,16,58,18,65,68,125,169,172,77,175,176,80,129,181,32,135,38,117],wgs84geoppoint:110,cpuinfo:[152,129,14,164],plugin_regist:[],grn_snip_clos:80,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":70,hook:81,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":167,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":154,sometim:80,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":144,grn_cache_get_max_n_entri:17,iptabl:[102,54],"\u5358\u4f4d":[62,168],direct:[],"80ghz":167,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":124,mkostemp:80,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,fullfil:141,keyword:[],older:[77,184],grn_expr_get_var_by_offset:84,modern:184,mind:66,mine:132,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":157,regular:[],tradit:[132,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":167,don:[3,4,12,95,48,9,27,106,54,17,108,188,150,85,16,58,65,122,172,77,28,175,80,189,181,84,136,137,119,38,102],doc:[91,151,87,20,125,7,9,27,77,112,80,119],"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,doe:[108,3,181,85,13,132,125,7,182,9,61,153,141,150],musha:77,grn_not_enough_spac:2,dot:7,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":45,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":124,keybuf:113,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,syntax:[],"\u65e5\u672c\u8a9e":176,yoji:27,acquir:19,explain:[13,3],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":97,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":126,folder:101,custom:[],cosmo0920:[125,80],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,stop:[],grn_plugin_fin:40,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":151,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:125,bar:65,reload:175,bad:[132,125,80],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":72,veres:54,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":167,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":167,old_releas:151,"\u5b9f\u884c\u3067\u304d\u307e\u3059":151,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,item_:153,brazil:130,"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,grn_function_not_impl:2,simplest:[132,188,12,35],illegal_byte_sequ:172,attribut:[90,109,49,133,166],nfkc51lexicon:189,threasd:97,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":97,"100x150":34,"\u534a\u5f84":168,str_ptr:40,"takuto\u3055\u3093":154,replied_to:184,key_length:172,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":70,string_liter:80,"\u6539\u884c\u6587\u5b57\u306f":97,against:[],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":177,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":[],grn_op_cal:69,grn_expr_var:[40,53],g721d5c7:82,grn_obj_clos:[69,120,80,79,16],three:[108,75,23,130,85,13,161,125,135,122,59,18,158,3,78,176],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":151,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":70,interest:[88,3,178],basic:[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":151,suppress:[7,112,80],"2\u30ea\u30ea\u30fc\u30b9":[],multithread:103,servic:[141,132,125,7,18,139,80,81],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":83,calcul:[92,108,75,131,184,125,7,74,147,80],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":151,groonga_cli:150,seven:[23,3],datail:108,theatr:91,"key\u3092\u8fd4\u3057\u307e\u3059":79,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":97,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":63,"\u691c\u7d22\u306e\u6319\u52d5":[],receiv:[150,131,132,172,16,9,64,119],make:[],column_list_head:95,"_kei":[3,91,12,95,46,48,7,100,9,109,127,54,143,108,75,150,85,13,153,58,59,18,60,157,44,163,121,125,182,74,170,96,78,79,176,80,181,130,184,135,139,189,102],zlib1g:[152,14],unicorn:14,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":63,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":69,"8byte":172,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":121,inherit:125,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":73,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":97,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,left:[],protocol:[],just:[],sigusr1:27,"\u6771\u4eac\u90fd\u6c11":[70,144],human:[95,65],"\u73fe\u5728\u306f":[179,167],yamamoto:80,yet:[92,68,23,150,12,122,132,108,125,147,27,54],"table\u304c":113,defrag:[],macport:[],"worker\u306f":134,save:[131,165,78,151,80],applic:[162,150,132,32,54,9,27,175,80],"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":144,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":151,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":151,nomral:[108,181],daemon:[],vdw:[74,3,130],manual:[],grn_obj_expir:79,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":107,mrubi:[68,151,125,147,77,80],unnecessari:139,cxxflag:24,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,intern:[13,32,16,17,125,77,106,112,80],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":144,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":144,tracker:[],"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":69,localhost:[179,4,151,131,167,97,9,103,54,172],range_filt:[],new_release_d:151,compress:[],grn_cursor_gt:63,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":177,promot:125,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":11,postgresql:[132,32],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8":69,grn_between_too_many_index_match_ratio:80,grn_ctx_recv:80,commit:[80,119],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[179,97],meerkat:27,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,sphr:[75,168],down:[],"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":167,homepag:167,editor:119,fraction:[13,132,184],storategi:108,analysi:[132,188,150],"143660000x419009000":75,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[108,3,181,131,184,172,158,125,9,51,27,189,102],sub1:108,forc:7,some:[90,5,26,7,84,103,148,188,164,12,85,115,19,178,160,119,66,163,23,125,80,150,181,132,186,135,187,35,139,65,38],"4e86e700":165,"txt\u306b\u307e\u3068\u3081\u307e\u3059":151,grroonga:169,"\u5426\u5b9a":69,auth_basic_user_fil:[9,54],"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":157,unrel:27,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":11,classif:130,featur:[],kwic:32,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":67,grn_obj:[],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":53,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":60,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,score_function2:12,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":97,tokenbigramignoreblank:[],excel:175,"defrag\u306f":37,matur:[141,187,23],escaped_charact:84,faction:184,calc_typ:108,fsf:7,pseudo:[],"scr\u306e\u4e2d\u8eab\u304c":167,vmstat:165,ignor:[108,90,83,175,94,133,125,7,170,103,77,27,38,80,181],reply_to:78,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,logs_message_index:178,n_entri:117,"152489000x":184,skip:[77,3,125,80],segv:125,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":37,depend:[],"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":177,marku:7,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,must:[40,3,5,95,48,102,103,142,110,188,54,17,108,109,150,13,153,58,59,61,178,64,65,23,121,165,71,182,170,172,176,80,181,83,131,84,136,139,38],query_str:[],"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":27,string:[],"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":45,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":151,grn_obj_set_fin:53,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":151,form_1:3,iter:150,dic:164,item:[141,153,108,48,18,157,176,54,65],round:27,dir:167,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":113,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":151,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":154,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":167,shinoda:[77,80],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":67,deriv:[141,64],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":45,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":144,wait:[40,19],box:108,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":60,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":11,grn_true:79,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":157,raccoon:44,"\u306e\u30ab\u30e9\u30e0":[37,107],grn_content_json:106,modul:[],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":126,result_too_larg:172,univers:14,perl:9,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":167,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":73,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,grn_proc_typ:53,"_min":108,too_many_link:172,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":154,apper:108,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":69,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":72,grn_plugin_proc_get_var_by_offset:[40,80],commands_column_list:95,tokyo:[74,75],"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":143,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":151,uniqu:[131,103],"\u30d2\u30c3\u30c8\u6570":108,ull:90,"256kb":165,predict:[94,38,65],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":124,libmemcach:177,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":97,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,normalizs:65,map:[23,165,139,27,148,176],groo:[131,108],max:[],mac:[],clang:[7,77,177,125,80],assigend:181,mai:[162,12,94,95,7,9,103,77,147,188,78,54,150,153,17,59,61,178,65,66,44,68,23,121,122,125,27,28,175,80,181,83,132,133,135,136,139,38],underscor:65,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":45,table_dat_kei:[],grn_expr_get_keyword:84,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,fluent:104,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":179,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":36,talk:[77,125,26,151],"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":70,pointer:40,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,entiti:132,group:[],monitor:[152,129,14,125,164],"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u5b9f\u9a13\u7684":[],main:152,resource_temporarily_unavail:172,initi:[40,5,131,16,7,77,27,80],lunch:132,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":1,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":151,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":151,"\u5fa9\u53f7\u3057\u305f\u9375":151,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":79,massachusett:184,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":151,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":167,"\u3053\u306e\u7d50\u679c\u306f":167,gzip_typ:54,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":154,continu:[90,97,125,7,18,38,80,81],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":151,unlock:40,nroonga:[115,78,81],"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":177,"3rd":[108,125],compress_lzo:73,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":11,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":167,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":151,uint32:[3,91,45,7,102,105,127,143,108,150,85,114,59,95,65,44,163,70,125,182,74,170,96,78,80,178,181,130,135,139,189],"\u624b\u7d9a\u304d":53,earlier:[27,127,189],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":190,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":62,debootstrap:151,org:[3,101,9,188,164,109,151,85,13,14,157,119,44,24,167,74,102,80,129,130,152,89],prefix_search:[27,153],"128487316x502920929":[44,74],grn_table_renam:113,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":124,"marverick\u306b\u5909\u66f4":154,frequenc:[12,122,153,99,183,77,80],"grn_op_adjust\u306f":69,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":105,thing:77,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":144,think:[122,28,108,12,150],frequent:12,first:[40,141,3,91,12,95,47,101,9,103,27,188,54,108,150,13,16,65,44,161,125,77,78,175,80,178,181,131,184,32,135,119,38],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":151,key_norm:[114,108,189,3,91,70,184,181,32,7,115,139,78,150,65],"long":[103,86,125,61,25,77,80,65],crit:[6,8],grn_geo_cursor_open_in_rectangl:110,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":70,workaround:[77,80],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":60,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":27,memo:[163,12,122,115,100,28],key_siz:113,broadcast:184,"value\u304c\u5c5e\u3059\u308b\u578b":105,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,proxy_cache_valid:9,patprefix:143,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,longitudexlatitud:125,yoshioka:7,libgroonga:[162,3],grn_db_touch:[154,83],were:[75,3],zsh:188,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:188,grn_invalid_format:2,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":144,katakana:[153,189,38,176],squar:75,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":167,"256gbyte":66,normal:[],beta:42,pair:[108,13,48,169,18,175,176],grn_content_tsv:106,synonym:[108,175,91],"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[37,107],"\u539f\u56e0":[],shop:[114,144],lexicon:[],newer:[77,80],"\u3092\u516c\u958b":154,show:[92,1,2,3,4,12,47,7,102,51,106,108,75,150,13,58,115,44,23,122,161,125,182,74,170,172,96,27,80,178,181,130,132,133,32,135,184,188,109,38],"\u62c5\u5f53\u8005":151,threshold:[],"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":69,black:[92,189],"\u30c6\u30fc\u30d6\u30eb\u540d":[105,37,107],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":70,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":36,tamano:80,variou:[],get:[],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":154,gem:151,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":167,"column_create\u306f":73,tokyogeopoint:[75,45,34,74,110,27,168],median:80,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[],wiki:9,kernel:[7,139],"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":70,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":27,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":45,sear:176,enci:167,masahiro:[154,125,80],japan:[74,170,102,130,176],infinit:[7,27,80,65],enumer:3,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":124,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,label:[],enough:[132,78,80,165],across:75,parent:[108,9],unknown_error:172,column_vector:[44,108,85,13,184,95,125,73,182,170,80],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":190,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[36,97],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u7b56\u65b9\u6cd51":[],recrod:108,"\u3088\u3063\u3066":45,"\u5206\u5272":144,grn_expr_clos:84,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":124,grn_cache_open:17,among:[],grn_obj_delete_hook:93,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":167,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":167,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,inappropriate_i_o_control_oper:172,cancel:[35,103,80],grn_proc:[],"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":151,gnupg2:151,mark:[163,184,112,141,77,189,38,80,65],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":11,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":86,grn_too_small_offset:2,grn_init:[7,148,5],senboku:125,i18n:[],those:[108,75,3,4,169,24,132,158,181,32,48,13,189,94,150,188,112,54,119],sound:[18,189],hdd:167,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"8\u306b\u5bfe\u5fdc":154,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":97,advantag:[132,141,32],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":167,brasillia:75,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":167,"1\u3068command":11,pat:[7,112],drilldown_result2:108,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],drilldown_result1:108,same:[3,12,9,103,10,54,108,150,85,13,16,58,115,18,19,22,122,125,74,77,78,178,181,35,135,189,84],speech:[132,38],pai:108,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":144,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":151,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,grn_command_version_st:116,grn_table_dat_kei:113,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,"\u540c\u3058\u3067\u3059":167,montywi:112,grn_address_is_not_avail:2,macro:[27,125,80],markup:87,"drilldown\u7d50\u679c":108,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":16,argument2:[150,12],"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":151,argument1:[150,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":79,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":179,document_vers:151,execut:[],grn_obj_fin:[84,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":97,monei:44,mcdonald:92,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":120,"root\u306b\u5909\u66f4":154,enable_tokenized_delimit:90,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":79,"\u697d\u3057":[70,144],value_column:121,grn_table_delete_by_id:113,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":113,evaluated_valu:147,either:[0,108,150,125,96,78,178,181],rinse_1:151,quantal:7,operation_not_support:172,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":151,ascend:[92,74,3,108,130],testdb:[167,64],"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,confirm:[],table_no_kei:[],valuebuf:41,str_length:40,"\u30cb\u30c3\u30dd\u30f3":176,event_typ:186,broken:[83,125,7,136,61,77,27,80,121],regexp:80,"128452975x503157902":[13,44,74,102],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"_set_valu":112,"x\u306e\u304a\u77e5\u3089\u305b":[],"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":154,"textile\u30d5\u30a1\u30a4\u30eb\u306epublish":151,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":151,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":45,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":63,strip:109,"tomita\u3055\u3093\u304c\u5831\u544a":154,yyi:119,drilldown:[],grn_ctx_batch_mod:80,complianc:9,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":167,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":36,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":79,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":151,arugment1:150,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":167,possibl:27,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":151,embed:[132,32,47,9,77,175],"1_all":151,grn_operation_not_permit:2,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,file:[],logo:7,fill:[131,150],again:[114,9,80,19],field:95,location_in_groonga:135,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":167,architectur:[132,151,80],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":73,sequenc:[108,181,35,125,48,153,18,172,148,27,176,150],goo:[181,150],"6gib":139,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":[],"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":113,escal:[],unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":45,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":82,"x\u3067\u306frealloc":154,descript:[108,49,172,181,131,133,95,144,97,125,7,90,9,184,166,150,178,176,80,65],escap:[],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,sergei:80,forget:85,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[112,181],suno:80,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],file_too_larg:172,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":93,libmsgpack:[152,14],"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":108,objnam:[37,107],grn_op_and:[56,69],grn_op_or:[56,69],fals:[1,103,151,136,13,45,125,73,115,59,100,182,170,96,143,150,127,161,80,181],"\u3053\u3053\u3067\u3082":70,offlin:[],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":154,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":11,sub_filt:[],hottolink:42,grn_hook_set:93,puropos:90,"\u305d\u308c\u3092\u65e7ji":63,zero:[163,71,85,13,38,108,172,189,175],further:13,"\u3053\u3053\u3067\u306f":70,aba:[74,3,130],abi:77,grn_info_typ:41,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":124,fffe:90,tokenbigramignoreblanksplitalphadigit:38,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":126,"public":80,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":97,tokenbigramsplitxxx:38,grn_table_pat_kei:113,valu:[],grn_table_setoper:113,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":190,fff0:38,narrow:[],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u95a2\u4fc2\u5f0f\u306f":69,commands_table_cr:105,transit:141,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":63,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":168,establish:[3,172],distinct:[66,131],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":151,regist:[],libev:[188,152,14,112],groonga_path:167,"check\u30b3\u30de\u30f3\u30c9\u306f":126,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":167,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":73,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,jsonp:[131,77],desin:141,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[108,90,133,172,97,46,186,136,9,78,188,65],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":179,hour:[184,150,19,148],dev:[151,14,125,26,7,152,177,77,27,80],grn_set_default_encod:123,"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":1,remain:[148,125,178],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":154,deb:[151,14,125,7,152,27,80],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":70,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":151,share:[17,23,83,44,132,142,97,125,26,7,9,121,27,78,188,19],shard:[94,142,23,77],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":63,minimum:[40,164,108,150,14,129,152],"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],strlen:40,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":121,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,secur:[],"\u691c\u7d22\u7d50\u679c1":108,"13\u7528rpm\u306e\u63d0\u4f9b":154,arg2_nam:178,needl:69,grn_command_vers:[],number2:150,number1:150,mariadb:[125,80],associ:[40,44,108,3,13,58,170,27],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":151,kuriyama:[77,80],"\u691c\u7d22\u7d50\u679cn":108,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":159,hypertext:[],no_buff:172,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":70,through:[132,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":151,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":79,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":60,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,good:[163,90,181,132,108,114,46,150,78,188,38,119],timestamp:[184,23],"tokenmecab\u3067\u306f":70,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":151,grn_get_lock_timeout:19,grn_obj_vector:[79,84,16],"_valu":[108,60,121,80,125],rank:[3,80],"db\u3068\u306a\u308a\u307e\u3059":83,comamnd:54,easili:80,name_2:[3,102],name_1:[3,102],hard:139,idea:108,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,connect:[7,77,187,3,172],rlimit_nofil:[148,125],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":151,flower:13,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":151,"release\u306e\u5b9f\u884c":[],print:[172,80],name_s:[40,121,62,16,113,79,84,53],hemispher:7,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":69,entries_content_index:[139,108,181,150],database_path:[],"975mbyte":167,omit:[22,108,90,3,4,94,135,136,75,10,27,174,176],"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":151,grntest:[7,27,154,151,104],"tokenmecab\u306e\u5834\u5408":70,tritonn:[108,181,150],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":113,suggest_prepar:[153,18,176,48],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":124,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":97,done:[17,108,9,80,19],stack_over_flow:172,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":45,stabl:[153,11,80],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[113,79],"indexbuf\u306e\u30b5\u30a4\u30ba":121,"5th":108,least:[181,165,7,182,117,139],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":157,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":70,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":70,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:27,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":69,pari:75,selector:7,part:[23,13,132,142,32,135,184,3,188,38],pars:[123,84,80,158],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":113,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth\u304c\u5fc5\u8981\u3067\u3059":151,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":36,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":124,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":167,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":144,"\u30c6\u30fc\u30d6\u30eb":107,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":69,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":70,plugin_unregist:[],consol:9,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":72,built:[],build:[],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":151,distribut:[164,129,151,14,7,152,101,137,188,80],"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],previou:[141,130,12,13,125,7,78,80,178],chart:27,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":67,most:[108,110,3,181,85,13,31,16,54,178,38,80,150],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_cache_current_get:17,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],groonga_log_level:[],grn_plugin_mutex:40,cas_error:172,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":177,carefulli:85,"bom\u4ed8\u304dutf":154,find:[113,163,189,3,132,161,108,32,47,48,153,59,18,101,20,88,188,38,176,119],grn_no_such_process:2,grn_index_cursor_open:120,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":83,grn_logger:7,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":36,unus:80,grn_in_values_too_many_index_match_ratio:80,grn_obj_defrag:79,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":179,commands_column_renam:59,restart:[],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":167,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":70,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":167,map_hugetlb:27,common:[108,181,94,14,7,113,158,63,27,78,150,65],table_cr:[],grn_api:84,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":113,grn_interrupted_function_cal:[2,103],"status\u30b3\u30de\u30f3\u30c9\u306f":82,lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":179,blog_cont:182,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":167,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":167,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":177,network_is_down:172,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":70,is_stop_word:[163,46,80],simpli:122,point:[],hideki:[125,80],shutdown:[],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,weight_in_match_column:85,indexblog2:78,secret:151,indexblog1:78,"\u4ee5\u4e0b\u3067":70,gat:[74,3,130],understand:[108,3,80],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":11,bill:[70,144],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":144,opear:150,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":126,anonym:94,gb87d9f8:4,everyon:102,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":167,"\u6c11":144,itself:[90,181,85,125,175,80,178],cento:[],"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":151,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":69,res2:113,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":70,inv_thread_column:167,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":157,keyr:[7,152],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":190,usage_multiple_scor:12,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":70,task:[7,132],sortbi:[],entri:[145,93,47,107,17,108,150,58,155,157,161,72,125,73,182,170,117,78,181,184,136,139,37],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":60,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":167,spend:[181,150],"build\u3092\u7528\u3044\u3066":177,from:[],"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":67,shape:92,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":167,"\u3053\u306e\u64cd\u4f5c\u306f":113,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":157,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":69,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":151,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":36,bin:[188,101,20],key_column:121,kashihara:80,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,tokendelimitnul:[],"\u6c38\u7d9a\u7684\u306a":79,bit:[164,108,181,152,24,14,167,129,13,101,137,150,81],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":45,semi:[27,65],groogna_default_command_vers:54,in_valu:[],followe:184,often:96,grn_ctx_set_fin:16,back:[178,9,150],grn_plugin_init:40,sizeof:[77,84,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,scale:[132,54],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":167,per:[],newark:184,substitut:[108,181,115,150,81,119],larg:[181,13,132,7,61,94,139,150,38,54,65],"\u304c\u8fd4\u3055\u308c\u307e\u3059":79,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":107,reproduc:125,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:80,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":126,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":146,tanuma:80,grn_expr_compil:84,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":107,"\u30c6\u30fc\u30d6\u30ebterm\u306b":73,nsi:151,grn_db_recov:[83,80],"\u6a19\u6e96":[6,105,190,107],errno:80,pair_dataset:[186,48],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,includ:[90,142,12,95,10,147,3,54,108,150,87,59,22,68,23,122,125,96,77,174,175,80,129,133,32,135,38],score_funct:12,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":34,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":177,str_size:84,translat:[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],concaten:78,default_command_vers:[3,4,82,102,9,172],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":113,soundkitchen:[7,27],grn_tabl:[],exit_success:5,no_space_left_on_devic:172,curl:[188,4,131,97,7,9,103,89,54,81],"\u90fd\u6c11":[70,144],sequenti:[181,77,150,38,80,178],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":69,grn_content_msgpack:106,grn_no_locks_avail:2,"\u30c7\u30fc\u30bf\u578b":[],libwinpthread:80,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":151,benchmark:[],"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":167,"\u3053\u306e\u4f5c\u696d\u306f":151,"tokenbigram\u306a\u3069":70,ellip:[75,168],grn_bulk_vsiz:[84,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,getaddrinfo:7,jason:143,"\u5f62\u5f0f1":[36,97],"\u5f62\u5f0f2":[36,97],"\u308d\u3086\u304d":143,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":121,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":151,sensit:38,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":151,grn_db:[],becam:[141,80],reference_column:[108,80],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":82,fatal:80,db_path:[3,4,172,102,77,36,51,9],comment_cont:182,"2rd":108,"rinse\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u53e4\u3044\u3068cento":151,grn_obj_is_scorer_proc:77,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,geograph:[13,75],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":8,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":45,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[37,107],"groonga\u30b3\u30de\u30f3\u30c9\u304bc\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u901a\u3057\u3066\u64cd\u4f5c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":97,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":151,"0x0":[13,45,112],object1:150,object2:150,leakag:91,carlo:[59,127],append:[7,84],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":144,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[],"32gib":139,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":179,interrupted_function_cal:172,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":79,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":154,vertic:65,sinc:[114,141,75,121,164,13,184,97,148,7,150,10,135,127,107,65],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":126,masatoshi:77,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":180,grn_resource_deadlock_avoid:[2,79],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":97,grn_mecab_chunk_size_threshold:77,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":151,ii_buff:86,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,score_function1:12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":151,score_function3:12,set_token_filt:80,grn_content_typ:[],name1:150,account:[26,80],"146607190x":184,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":11,alic:[108,181,184,115,59,9,96,127,38,54],rurema:80,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":151,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,fetch:[78,80,48],abcd:133,calc_target:108,commnad:[11,101],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,msvc:77,users_loc:184,grn_ii_buffer_commit:86,gcc:[164,129,24,125,7,27,188],groonga_n_record:125,afr:[74,3,130],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":73,inst:125,physic:126,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":63,bind:[162,42,161,158,97,47,7,77,27,81],amazon:108,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_geo_select_in_circl:27,"\u6df1\u523b":70,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":154,hiroshi:[27,80,77],replies2:78,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,meter:[74,75],report:[],cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":113,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":105,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":168,euc:[97,38,125],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":167,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":113,tsv:[],"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":69,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":97,nvar:53,spell:[175,91],dai:[114,184,23,150,148],dat:[7,112,125],mention:182,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":167,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":151,grn_table_lcp_search:113,"tomotaka_ito\u3055\u3093":27,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":70,column_index:[3,91,12,95,47,100,108,150,85,114,70,44,163,122,161,73,182,115,96,78,80,178,181,184,32,139],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":37,"\u306e\u66f4\u65b0":[],normalizerauto:[],"\u3067\u3042\u308c\u3070":167,int16:[45,154,125],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":79,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":151,stub:80,rel:[27,108,80],"\u30ab\u30ec\u30fc":144,ref:150,red:[],clarifi:80,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":70,frank:96,standalon:64,test_loc:167,releas:[],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":97,groonga_log_path:[],drilldown_xxx:108,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":154,pgp:151,tokenizer_error:172,natti:27,messag:[],"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":70,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":167,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,82,102,9,172],ipad:[164,38],"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":97,rakutan:78,structur:[135,132,44,80,94],charact:[],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":143,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":126,have:[92,141,2,3,191,95,48,9,71,188,54,114,108,106,150,87,153,58,18,65,163,175,80,181,189,83,132,135,13,139,119,38,102],close:[58,94,161],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":97,min:[],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":167,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":121,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":151,mix:[153,38,85],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":79,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":144,gurun:158,bottom_right:[27,34],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":37,"\u6e2c\u5730\u7cfb":45,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":154,mail_column:167,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":69,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":177,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":144,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":70,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":108,"grn_bool\u578b\u3092\u8ffd\u52a0":154,bernard:77,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":73,elfr:7,grn_plugin_malloc:40,grn_ii_buffer_append:86,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":70,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":143,escaped_str:84,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":83,integr:[7,13,125,81],"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":151,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,with_weight:[73,95,80,85],"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":70,pattern:[135,132,178,181,150],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":177,progress:148,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":167,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":62,plugin:[],shorttext:[3,91,12,94,45,97,46,47,48,100,102,105,110,127,143,122,108,75,150,85,13,153,114,115,59,18,157,95,65,44,163,70,161,167,73,182,74,170,96,78,109,176,80,178,181,130,184,32,135,136,139,189],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":97,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":116,equat:75,grn_permission_deni:2,comment:[],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":93,log_repoen:7,test_str:177,"hook\u306e\u5b9f\u884c\u9806\u4f4d":93,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":97,"\u52c9\u5f37":38,json:[],grn_obj_table_no_kei:[63,113],grn_table_group_flag:113,grn_ii_cursor_set_min_en:77,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":177,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":97,"\u4f8b\u3048\u3070":[143,70,167,144,97,79],bulk:84,multi:[],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":45,plain:[77,109],defin:[3,150,186,114,172,77,175,176],buildabl:27,replies_cont:78,ill:144,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":177,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],almost:[27,108,139,165],caplit:[125,80],grn_plugin_mutex_open:40,power8:80,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":167,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":73,too_many_open_files_in_system:172,japanes:[0,181,132,26,7,150,38,176,80,119],"pc\u306bgroonga":146,auth_bas:[9,54],utop:[14,151],optarg:[56,83],hostnam:[167,97,7,9,36,172],"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,column_nam:58,grn_column_name_key_len:121,document_index:[161,47],"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":151,content_index:12,center:[132,168],builder:86,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,choos:[108,13,58,9,38,80,178],error_cod:40,update_not_allow:172,"1byte":172,latest:[],unari:125,"5\u30ea\u30ea\u30fc\u30b9":[],"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":177,takayuki:27,gmo:80,"30ac":189,lake:92,add:[],successor:150,grn_ctx_at:[7,16],match:[],"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":126,grn_obj_table_pat_kei:[63,113],"\u3067\u306f\u306a\u304ffree":154,grn_obj_path_by_id:[79,112],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":83,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,substit:108,"\u8ffd\u52a0\u306e\u5c5e":73,qwik:157,insert:[7,3,32],like:[],success:[],groongau0000ful:38,grn_obj_id:79,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":79,"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":45,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":154,"com\u304cedge\u3092\u4f5c\u308b":134,socket_is_already_shutdown:172,soft:139,snippet_html:[],normalizer_list:[],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":157,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,specfi:110,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":157,proper:[135,184,23,80],grn_column_cr:121,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":167,tmp:[3,151,131,153,95,97,125,59,102,105,178,175,54,172],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":167,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5f62\u5f0f":36,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":70,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":70,"repositories\u914d\u4e0b\u306b":151,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":70,host:[27,172,167,102,81],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":151,"\u30c0\u30e1\u30fc\u30b8":70,sbin:89,actual:[23,12,13,142,125,9,3,80],socket:7,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":16,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":121,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":167,"mooz\u3055\u3093\u304c\u4fee\u6b63":27,statement:150,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[],tomo:44,discard:125,nested_reference_column:108,syntax_error:172,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":69,dataset:[],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":70,guard:122,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":151,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":70,ayumu:80,conbind:181,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":108,rch:90,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[77,80],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":60,glib:125,unexpect:[7,80],"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":45,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":121,uninstal:7,bug:[],grn_obj_set:79,binlib:151,"point\u578b\u306e\u5024":[34,168],quickli:114,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,epel:[7,129],"shimada\u3055\u3093":154,colum:[139,78],dure:[7,3],pid:[27,1,188,97,77],saer:[153,18],grn_too_small_limit:2,implement:[68,42,23,150,122,94,108,7,75,9,77,147,27,191,80,119],pip:20,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":159,probabl:153,"\u305f\u3060\u3057":[63,36,144,60,97],detail:[40,141,90,3,95,7,9,10,148,188,164,108,150,85,13,14,115,65,22,46,167,125,74,77,174,80,178,129,181,130,132,152,187,35,139,88,119],virtual:125,comment_nam:182,grn_expr_create_for_queri:69,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":167,is_a_directori:172,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,120],grn_obj_flag:[40,62,113,84,121],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":140,represent:[123,119,84,85],"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":69,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":70,grn_type:[],"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":151,tweet:[114,26],umask:80,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":70,under:[131,54,9,188,64,80],everi:130,risk:80,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"24byte":172,grn_encoding_to_str:123,not_a_directori:172,x86_64:[129,151],zlib:[],naiv:130,not_enough_spac:172,"push\u3057\u3066groonga":151,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":121,aim:125,hide:125,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":79,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":69,"82pre":42,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":177,studio:[7,77,101,125],path:[],"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":154,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":[],functin:150,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],precis:[135,3,151,132,14,7,38,176],"\u306e3\u30d5\u30e9\u30b0\u306f":63,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":146,orilldown:130,portabl:[27,9,125],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":69,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":79,describ:[40,0,90,3,12,92,133,95,46,48,101,50,103,147,142,188,127,164,108,109,150,85,14,58,122,59,18,117,61,20,178,160,65,162,68,23,24,52,185,182,172,78,175,176,80,81,129,189,181,136,184,30,31,135,152,137,139,88,119,38,89],noarch:[164,129],"groonga\u306e\u7d44\u8fbc\u578b\u304b":73,namebuf:[79,121],autogen:[7,151,119],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":45,"msg\u306fcom\u306b\u3088\u3063\u3066":134,chracter:[189,32,65],"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":69,"grn_op_but\u306f":69,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,strerror:80,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":168,overrid:188,enourm:48,end:[179,75,150,181,178,38,4],eng:[153,176],hiragana:[176,38,181,150],env:175,rroonga:[12,182,161,125,47,17,115,100,158,78,80,81],grn_content_non:106,tablenam:11,grn_set_default_command_vers:116,befor:[22,108,3,5,85,13,112,7,169,18,9,178,10,188,175,176,117],"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:132,exclud:[58,142,125,7,96,23,80],environ:[129,112,125,101,9,137,77,27,188,175,80,81],enter:[3,125,172],composit:189,over:[132,161,125,7,102,165,77,80],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,becaus:[141,3,4,12,94,48,7,100,9,10,54,91,164,108,150,13,114,115,59,18,65,22,44,163,23,122,73,169,172,96,78,175,176,80,178,181,182,131,132,32,135,139,189,38,191],london:75,gqtp:[],"\u304bwgs84geopoint":[34,168],digest:54,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,tokenizer_list:[],"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":144,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":154,oneir:[27,125],"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":69,choic:[],grn_pat_at:154,each:[],searc:176,colleagu:88,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"groonga\u306e\u30ab\u30e9\u30e0\u306f":45,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,msgpack:[4,54,172],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[114,132,32,17,127,80],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,got:[125,80],"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":36,"\u69cb\u9020\u4f53\u306e\u914d\u5217":53,"offset\u306f":113,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,filter:[],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":151,"16gib":139,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":167,score_column:121,onto:139,rand:[],rang:[],"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":63,edit_dist:[],restrict:[7,102,54,125],alreadi:[40,114,90,3,58,19,139,78,64,80],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":79,primari:[],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":124,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":79,top:[110,130],mercuri:151,too:[108,150,85,13,125,77,78],tom:115,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":151,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"path\u3092":154,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":126,tood:40,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":157,tool:[],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":105,user_ag:96,wareohji:7,grn_obj_set_valu:[63,79],ga54c5f8:167,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":151,expr:84,obata:[27,154,125],"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,blog_bodi:70,rab:[74,3,130],ran:176,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":105,ram:167,raw:[125,81],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,with_sect:[73,184,78,95,80],unresolv:27,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":144,hanako:170,bad_file_descriptor:172,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":151,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[113,121],travi:[],though:[23,132,125,7,78,176,80],"\u3044\u307e\u3059":124,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":167,bsd:[27,188,80],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":113,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":69,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":151,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":167,mininum:141,flow:[],abbrev:75,radix:150,"0\u30d9\u30fc\u30b9\u3067":[63,113],abl:[122,28,32,12],random:74,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[129,24,154,7,27,188],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u306f":[63,45,113],absolut:[22,174,10],top_left_point:110,configur:[],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":151,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":79,"\u542b\u3081\u308b\u3082\u306e":151,item_queri:[153,18,176,186,48],label1:[108,80],label2:108,watch:151,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":97,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,normalized_text:133,reconstruct:80,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":82,method:[3,125,9,77,38,176],twice:[108,181],hendro:125,contrast:[3,5,132,97,115,9,80],"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":154,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":179,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":143,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":151,nul:[40,27,38],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,grn_plugin_error:40,databas:[],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":167,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":79,no_such_file_or_directori:172,algolithm:158,approach:75,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":97,weak:[132,32],grn_invalid_argu:[63,113,2,79],fault:7,"4gib":[94,172],facet:108,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":45,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":151,trust:151,id_column:121,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":97,evalud:147,been:[59,151],"\u3072\u308d\u3042\u304d":143,accumul:108,geo_distance2:[27,75],geo_distance3:[27,75],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":151,tokenmecab:[],"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":113,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[27,19],xxx:[97,125,80,150],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":121,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":167,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"grn_op_or\u306f":69,need:[90,3,4,5,94,47,48,7,101,9,103,10,150,77,106,78,54,91,108,188,12,85,16,17,122,18,20,178,65,22,23,24,165,74,172,27,28,175,176,80,81,129,189,181,127,132,133,32,135,38,139,119,84,131],message_index:122,suggest:[],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":154,complex:[7,108,178,125,150],unix_time_when_command_is_start:135,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,niku:80,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":53,complet:[],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":113,sen_index_delimit:42,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[36,97],quotient:150,"groonga\u306b\u306fhtml":36,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":151,via:[7,119,2,48],"\u5024":97,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,els:[77,80],grn_column_name_valu:121,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":36,ceekz:125,"groonga\u306epackag":151,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":69,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,"mooz\u3055\u3093":27,unstabl:112,poedit:119,el5:129,escaps:[161,32,47],"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":121,log_reopen:[],grn_obj_is_t:77,"\u7d44\u8fbc\u95a2\u6570\u306f":[180,34,111,168,67],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":154,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":1,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,line_cont:135,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":151,core:[],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,surround:[7,161,32,47,150],dinner:132,ppa:[],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":41,"\u578b":62,encod:[],two:[0,92,141,90,3,95,48,100,9,148,54,164,108,75,14,16,115,18,64,65,44,125,73,182,74,77,78,80,178,129,181,130,84,133,32,135,152,184,189,38,191],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":27,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,version4:11,git:[104,151,119],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":151,"256gib":66,head:[179,108,9,80,172],medium:[164,129,184,14,152,101,137],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":45,removep:79,drilldown_sortbi:[],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":151,deafult:27,grn_expr_estimate_s:77,autoconf:27,grn_expr_syntax_escape_queri:84,trie:[],decrypt:151,bad_address:172,check:[],ongaeshi:[7,77,125],"clearlock\u306f":107,successfulli:[40,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":126,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":69,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":97,when:[3,97,7,100,9,10,77,108,75,85,153,58,115,20,178,65,22,44,121,125,73,182,109,172,27,176,80,181,83,131,132,135,184,88,189,38],groonga_dist:7,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":143,tid:120,saerch:[153,18],node:[7,129,81],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,grn_op_and_not:56,"\u5217\u6307\u5411\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u6a5f\u80fd\u3092\u6301\u3064\u5168\u6587\u691c\u7d22\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":97,sql:[108,23,130,12],faster:[27,188,38,125,80],top_left:[27,34],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":60,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":144,backward:[7,127,80,54],grn_obj_table_dat_kei:27,"6\u30ea\u30ea\u30fc\u30b9":[],grn_db_float:77,focus:3,llt:90,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":168,row:[132,32],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":73,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":151,readabl:[112,80],"\u554f\u984c\u3042\u308a":27,jumand:164,sourc:[],"\u306b\u8a2d\u5b9a\u3059\u308b":151,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":167,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":120,"6elz":80,"\u3092\u8fd4\u3057\u307e\u3059":[63,93,113,79],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":60,level:[40,130,6,97,125,7,8,9,148,64,80,172],brother:181,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":121,slower:[122,75,130,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":126,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":45,port:[141,42,4,131,167,172,97,125,80,102,36,89,54,9],repli:[184,78],arg1_valu:178,"sh\u306e\u307f\u306a\u3089\u305a":177,ken:44,grn_expr_append_const:[69,84],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":179,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":82,connection_refus:172,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":151,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":79,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":151,normalizeauto:161,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":108,"benchmark\u304c\u52d5\u4f5c\u3057":167,"1st":96,grn_table_cursor_clos:63,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":111,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":73,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":11,grn_obj_clear_lock:[27,79],file_exist:172,memori:[],todai:132,"\u3053\u308c\u306f":70,criteria:3,capit:3,target_charact:84,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":154,proxy_cache_path:9,entries_key_index:[139,108,181,150],lc_messag:119,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":168,purpos:[23,85,125,115,102,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":154,collaps:7,stream:80,backslash:[84,125,181],critic:[7,40,188,97,148],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[],satoh:27,alwai:[108,172,181,132,95,135,153,9,139,77,176,80,150],grn_table_update_by_id:113,grn_plugin_isspac:40,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":144,clone:[],"4th":108,"0\u4ee5\u4e0a18":45,repeat:[132,119],key_with_si:[143,150,181,65],"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":154,ueno:[7,27],predic:77,inform:[],combin:[],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":70,midnight:150,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":167,mainli:[184,80],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":93,platform:[],meridian:75,cutter:[177,151],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":151,"\u6b21\u306b":69,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[155,97],"output_type\u306b\u306fjson":36,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":79,term:[],name:[],"\u65e5\u3005":124,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":63,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":69,no_memory_avail:172,request_id:[35,103],osanai:80,grn_itoh:27,grn_bool:79,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":154,end_tagn:161,"base_version\u306ftar":151,"groonga_clone_dir\u306b\u3066autogen":151,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,compress_zlib:73,candidate1:153,migrat:[108,181,80,150],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":69,ruby19:7,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":16,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":97,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":167,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":151,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":108,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":79,place:[184,188,26],kawada:80,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":105,origin:[],"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":70,redhat:[27,188],arrai:[],string_siz:84,given:[7,44,125,115],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":151,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":27,domain_error:172,circl:[132,92],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,white:[38,3,181],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":120,grn_table_add:113,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":177,copi:[7,40,59],specifi:[],"\u30d1\u30a4\u30d7":73,github:[0,73,189,151,125,7,77,104,27,119,80,81],enclos:[58,3],pragma:108,calro:96,wide:[27,188,3,178,132],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":154,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":38,grn_table_cursor:[],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":60,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,posix:[77,150],posit:[40,108,2,3,110,85,95,46,90,38,80],grn_column_index:121,seri:3,kazuhiko:[7,80],local_nam:157,ann:151,ani:[90,12,46,47,9,147,188,54,108,153,58,115,68,161,182,77,175,129,181,132,133,32,38],grn_unsupported_command_vers:2,grn_obj_set_mask:79,n_kei:113,operation_timeout:172,moreov:74,spheric:75,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:150,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":177,geoindex:[],time_column:167,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":69,"com\u306f1\u30b9\u30ec\u30c3\u30c9":134,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":97,grn_table_cursor_set_valu:63,permiss:[188,80],sitecountri:[102,130],explicitli:[],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[70,144],written:[22,184,10,20,127,80],analyz:[7,27,38,9,132],grn_obj_column_vector:121,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u3092\u6307\u5b9a\u3057":[63,37,107],"45ea3034":148,ssh:151,takatsugu:80,"\u8a73\u7d30\u306f":[70,36,177],pipermail:80,reveal:132,"\u542b\u3081\u306a\u3044\u3082\u306e":151,tokenfilterstopword:[],grn_geo_select_in_rectangl:[27,110],"shibuya\u3055\u3093\u304c\u5831\u544a":154,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":151,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":79,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":113,"ongaeshi\u3055\u3093":154,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":45,"\u8b66\u544a\u3092\u9664\u53bb":154,detect:[7,27,90,9,188],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":124,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":151,dest_kei:113,grn_db_register_by_nam:146,"59\u74b0\u5883\u306b\u304a\u3044\u3066":27,come:[92,184],"\u63a5\u7d9a\u3059\u308bgroonga":167,region:[92,74],quiet:172,reference_vector_column:125,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":70,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":70,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,color:189,whombx:125,period:[],pole:75,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":1,"ueno\u3055\u3093":[154,146],lexicon2:78,item_exampl:176,log_put:[],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":151,frequency_threshold:[27,153,18,176,48],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":154,"s3ki\u3055\u3093\u304c\u5831\u544a":154,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],not_socket:172,grn_command_version_max:116,"case":[],"\u3042\u308a\u307e\u305b\u3093":[82,105,190,140,159],cast:[],grn_db_open:83,out_loc:167,favorited_bi:184,grn_expr_alloc:84,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":69,"define_selector\u306f":155,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":113,query_s:84,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":151,saerc:[153,18],"4\u884c\u76ee":167,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,author:9,alphabet:[108,90,18,38,80,65],users_index:184,grn_get_default_match_escalation_threshold:25,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":69,html:[],"\u5f37":38,"\u8a9e":[126,38],messagepack:[],status:[2,172],nest:[],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":97,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"_nsubrec":[44,108,121,130,184,60,80],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":63,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,113,168],overcommit_memori:[],without:[],model:[172,80],"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":154,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":82,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":63,rose:13,except:[164,92,68,90,181,85,94,108,32,7,100,9,139,147,27,178,38,80,65],blog:[],"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":154,vulner:80,hino:125,grn_logger_info:7,grn_obj_nam:79,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":97,grn_table_cursor_open:[63,154],realtim:[153,48],with_typ:133,madrid:75,grn_rc:[40,41,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],unrecover:83,micro:[],grn_cache_current_set:17,freed:[17,80],garbag:[27,125,80,126],inspect:[77,125,80],n_tabl:16,tokenbigramsplitsymbolalpha:[],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":83,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":154,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":151,tokentrigram:[],consid:[44,141,23,91,54,78,80,65],libmecab:[152,14,151],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":126,rescord:158,strict:[77,80],interfac:[7,131,3,4],chracterist:94,regard:[125,181],jun:[77,80],grn_obj_key_var_s:62,untag:109,longer:[42,16],notat:[7,125,150],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":79,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":11,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":97,grn_expr_creat:84,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":151,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":154,strongli:[164,129,14,152,101,137],"a\u3092\u6307\u5b9a\u3057\u3066tabl":113,user_column:167,incorrect:80,grn_db_text:84,grn_index_cursor_next:[120,125],gettext:[119,20],orient:[13,132,32],oneself:80,symbol:38,remove_tokenized_delimit:133,event_queri:[153,186,64,18,48,176],allow_upd:[108,181],comments_loc:184,hmm:184,directori:[40,131,125,7,9,77,27,188,175,64,80,119],potenti:125,"\u30c7\u30fc\u30e2\u30f3":97,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,all:[90,3,91,94,95,68,48,7,9,10,147,148,77,188,54,114,108,110,150,85,189,16,58,59,158,65,22,163,121,46,172,96,27,127,176,80,178,184,181,132,136,35,139,119,38,117],grn_table_column:113,dist:151,"ctx_new\u3068\u3044\u3046queue\u306b":134,scalar:[],follow:[],disk:[77,78,178,65],ptr:[40,154],"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":154,init:[7,188,53,80,125],program:[150,131,95,125,7,187,9,64],"\u95be\u5024\u3092\u8d8a\u3048\u308b":70,neglig:80,liter:[],drildown:[],"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":70,libgcc_s_sjlj:80,rand_max:67,systemctl:141,failur:[7,77,19,80,151],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":97,longtext:[45,110],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":151,"\u304a\u3088\u3073":151,"help\u3067\u51fa\u529b\u3055\u308c\u308b":27,yappo:[42,125,80],tex:90,rate:[125,96],design:[7,13,108],sug:169,what:[],sub:[132,151],sum:[108,80,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,libstemm:80,themselv:[175,119],noraml:90,bottom_right_point:110,behaviour:125,shouldn:80,solari:[],cutter_check_leak:177,n_var:40,grn_ctx_init:[27,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":190,memcach:[],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,matsuu:154,grn_bad_address:2,grn_ctx_get_output_typ:16,gtihub:27,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":124,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":70,tokenunigram:[],"\u30ea\u30ea\u30fc\u30b9\u65e5":151,deprec:[108,11,97,125,7,75,10,27,107,80,65],ocelot:[27,125],suddenli:125,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[27,154],"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":151,"\u4ee5\u964d\u3092\u7121\u8996":154,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":154,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":155,grn_syntax_error:2,src_key_siz:113,flag:[],"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":56,known:[23,150,12,132,32,125,102,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":93,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":97,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":107,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":167,mecab_strerror:80,tahr:[14,80],grndb:[],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,cours:130,newlin:[27,112],divid:[13,132,150,122],rather:[108,12,85,122,95,114,28,38,178],rep_loc:167,divis:[],cmp0014:80,resourc:[114,80,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[37,107],"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":168,overcommit:139,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6307\u5b9a\u3059\u308b":83,resours:17,"request\u3092\u9001\u308a\u307e\u3059":151,"short":[9,85],geo_dist:[],postfix:[142,23],caus:[181,13,125,7,27,150,80,65],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,mailarch:151,yahppo:125,grn_table_trunc:[27,113],logal:81,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":113,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":154,style:[],"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"7\u30ea\u30ea\u30fc\u30b9":[],soccer:44,"return":[],normalzi:161,grn_table_sort_asc:113,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":69,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":121,ff9e:189,innodb:132,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":140,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":145,friendship:44,truncat:[],"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,grn_text_vprintf:80,weight:[],needless:[7,77,112,125],yoshida:125,expect:[13,38,80,178],errror:178,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":113,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":79,socket_is_not_connect:172,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,footnot:[75,3],"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":168,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":27,advanc:[],differ:[0,108,75,4,12,131,13,181,7,115,74,80,178,77,78,150,38,54,65],content_type_len:7,thread:[40,83,131,132,97,125,16,136,54,148,80,121],"\u306exml\u51fa\u529b\u5bfe\u5fdc":154,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":69,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":113,grn_selector_func:80,"apt\u306e\u5834\u5408":151,notifi:103,feel:80,groonga_database_auto_cr:[],blank:[189,38],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":167,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,gpl:42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":154,script:[],goronga:101,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":151,gpg:151,exclude_t:125,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":177,grn_column_name_id:121,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":144,option:[],"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":151,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":151,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[79,121],kind:[132,74,3,91,130],remot:[],remov:[163,83,24,125,7,13,170,9,10,27,79,112,80,46],rep_http:167,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":167,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":177,well:[23,132,32,125,102,188,9],ruby_ev:[],expir:[9,117],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":167,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":154,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":97,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":1,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":180,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":70,park:184,function_not_impl:172,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":60,reach:139,keyword_s:84,"\u30e1\u30fc\u30c8\u30eb":168,grn_obj_incr:79,latitude_in_degre:150,"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":113,grn_column_name_kei:121,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":168,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":70,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[145,6,72,8,155,190,107],penalti:125,firewood:[7,125],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":16,underflow:13,grn_plugin_fre:40,hit:[108,125,158],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":45,pair_queri:[153,18,176,186,48],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":113,obtain:40,longest:[27,113,150],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":36,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":70,grn_column_name_nsubrec:121,grn_obj_persist:[113,121],"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":144,grn_success:[40,108,2,83,5,16,17,19,148,84,121],armhf:80,"\u6570\u5024":144,"\u30b3\u30df\u30c3\u30c8":151,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],art:[184,150],dump:[],highight_ful:161,ff01:77,arc:90,tobbi:115,grn_obj_with_weight:121,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":121,jemalloc:80,grn_table_differ:113,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":154,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],latin:97,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,succeed:[2,3,73,136,170,127,188],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,solv:[13,122,12],solr:150,socket_not_initi:172,grn_table_get:[113,112],"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":45,context:[32,16,17,182,9,27,79,84],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":121,grn_table_sort_flag:113,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":97,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:125,"\u5f93\u3063\u3066":108,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":151,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":45,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":168,conifugr:81,grn_file_exist:2,beforehand:164,close_tag1:161,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":167,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":134,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":167,nakai:125,behavior:[7,115,38,80,96],input_file_nam:135,xvzf:[164,129,24,14,152,188,89],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":167,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":151,table_buff:16,score_valu:77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":167,minim:[9,96],grn_obj_column:79,grn_column_t:121,"\u5065\u4f5c":44,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":154,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":45,higher:[153,108],"\u975e\u4e92\u63db":27,x86:[27,101,77],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":126,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":167,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":144,lower:[108,90,3,65],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":167,searchabl:114,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":113,propos:[169,108],table_:[94,65],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":67,"3\u884c\u76ee":167,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":69,teruya:77,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":79,grn_plugin_get_system_plugins_dir:27,table2:113,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":69,gem1:151,table1:113,docutil:151,retry_max:172,collect:[135,132,184],"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":69,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":11,invalid_format:172,"log\u3067\u3059":97,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,93,79,53,118,121],blog_titl:3,retri:19,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":151,leftmost:150,proc:[40,164,108,93,14,125,152,129,53,118],form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":60,squeez:[125,151],maximium:108,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,brooklyn:184,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:125,lager:125,myisam:132,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":190,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":177,shimoda:154,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":151,question:[77,78],live:[184,65],fast:[92,90,3,12,94,47,100,71,54,108,75,150,58,65,44,122,161,109,78,178,181,132,32,135,191],adjac:[38,181],arithmet:[],"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":167,grn_proc_get_info:53,wno:27,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u554f\u984c\u3092\u4fee\u6b63":154,aramaki:27,piro:80,consist:[108,3,181,48,172,38,80],"benchmark\u306f":167,caller:53,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":108,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":97,test_text_otoj:177,highlight:[161,47],radious_or_point:168,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,"\u3059\u308b\u3068groonga":151,horikoshi:27,unauthent:[7,152],grn_expr_append_const_int:84,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":144,grn_socket_not_initi:2,oniguruma:77,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":154,weight3:85,weight2:[7,108,85],weight1:[7,108,85],comments2:78,grn:[9,157],gro:[131,32],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":144,nice:114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":167,grn_expr_add_var:84,"\u540c\u6642\u306b":134,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":151,konishi:125,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":145,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":146,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":151,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":97,xcode:89,"\u7e70\u308a\u8fd4\u3057\u6570":167,mainstream:132,w64:151,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":69,"grn_expr\u306f":69,relev:[132,3],ranguba:[80,85],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":151,nfkc:189,pleas:[0,141,3,83,12,122,26,77,28,188,88,80,119],smaller:[75,85,132,114,148,65],memset:77,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":151,compat:[164,129,14,133,54,152,9,77,127,189,80],compar:[108,181,132,32,7,80],mainlin:[77,80],jekyl:151,grn_info:[],"314e":150,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":154,usag:[],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":45,larger:[108,85,94,32,48,172,139,64,80],larget:103,"_name":65,mitsuo:125,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":36,typic:108,appli:[],approxim:[7,27,75],motoi:125,apt:[151,14,7,152,20,81],api:[],feb:23,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,usa:130,few:[108,54,191],usr:[22,174,97,9,10,188,177,89],sort:[],grn_db_creat:83,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,tokenbigramignoreblanksplitsymbolalpha:[],memos_cont:163,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":154,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":124,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,annot:125,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":177,endian:80,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":79,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":45,grn_column:[],tar:[164,129,151,24,14,152,188,89],tag:[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":154,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":151,grn_set_lock_timeout:19,pure:38,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":45,six:[148,3],"100x100":168,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":105,sid:[27,151,80,126],instead:[92,141,91,94,97,47,7,101,9,10,77,188,107,164,108,75,150,16,158,178,65,161,125,172,27,80,81,181,32,137,189],express:[],"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":151,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":151,"load\u30b3\u30de\u30f3\u30c9":1,attent:108,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":69,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":154,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":179,light:59,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":105,"1\u884c\u76ee":167,freebsd:[],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":177,"\u4eac\u90fd":[70,144,38],location_in_input:135,ouput:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":167,superior:[132,32],"log_level\u306f":6,condtion:181,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"homebrew\u3078pul":151,bye:[46,150,163,108,181],"\u4f8b":[],crash:[125,7,136,59,77,27,80],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":11,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":151,keys_zon:9,"\u884c":177,devel:[164,129],shinjyuku:74,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":151,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":177,edit:[],grn_socket_is_already_connect:2,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":167,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":151,our:[26,119],grn_obj_column_index:[120,121],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":167,"gz\u306eversion\u304a\u3088\u3073vers":151,out:[164,129,182,14,152,101,137,104,78,80],longitude_in_degre:150,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":154,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":151,dcb314:80,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":134,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,grn_ctx_send:[17,106,16],"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":151,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":70,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,york:[184,75],dictionari:[164,154,125,7,189,38,80],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,column3:12,lte:90,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":151,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,"\u8aac\u660e":[],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":154,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"request\u3092\u9001\u308a\u307e\u3057\u305f":151,tetsuharu:80,prioriti:[132,108,176],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":53,grn_obj_get:79,unknown:[123,112],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"akio\u3055\u3093":154,grn_dat_repair:112,shell:[77,188,181,178],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":37,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":63,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":167,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":154,"\u3092\u4f5c\u6210\u3057\u307e\u3059":73,emac:119,sed:[7,27],exec_format_error:172,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":124,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":45,"4097byte":94,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":97,"shimada\u3055\u3093\u304c\u5831\u544a":154,grn_ii_estimate_size_for_queri:77,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":79,which:[40,141,90,142,91,5,97,46,7,100,102,147,3,143,164,108,75,150,13,115,64,44,68,23,125,182,74,170,172,78,176,80,181,130,131,132,133,187,184,109],grn_obj_delete_by_id:[27,79],"\u30db\u30b9\u30c8\u540d\u3068":167,who:[],"100cent":38,default_token:[],why:[108,125,141],"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,determin:[108,3,158],"_id":[3,91,48,100,102,127,143,108,150,85,153,114,59,18,60,157,44,163,121,70,74,170,96,78,79,176,80,178,181,130,135,189],someth:80,grn_mecab_chunked_tokenize_en:77,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":63,word1:[7,108,181,150],word2:[7,108,181,150],memo_index:80,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":151,your_github_account:119,practic:[13,132,80],grn_obj_with_posit:121,daiki:[7,27,154,146],local:[150,151,132,97,9,20,188,119],"150x100":34,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":144,grn_ctx_use:16,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":144,subrecord:125,grn_cursor_prefix:63,candidate2:153,partit:23,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":167,view:[],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":151,knowledg:132,"1073741824\u306e\u6574\u6570\u3067":60,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":97,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":63,index_tag:44,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":167,entranc:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,dll:[7,27,40,80],"v1\u306e\u5024\u306e\u4e2d\u306b":69,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":124,yaman:[125,80],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":168,job:167,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":45,homebrew:[],exclam:77,addit:[],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":179,april:151,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":151,hyphen:[3,65],"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":154,respect:[7,13,74,184],rpm:[164,129,151,125,7,27,112,80],target_nam:[],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":27,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,mike:170,spammer:[122,12],"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":124,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,168],roonga:[169,181,150],"\u30c6\u30fc\u30d6\u30ebentry\u306b":73,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":168,"21th":125,cursor:[27,110],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":60,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":70,layer:77,customiz:32,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":45,"\u3072\u308d\u3086\u304d":143,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":151,avg:[179,108,80],"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":154,grn_expr_append_op:[69,84],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":167,"\u6ce8\u610f":113,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":154,difficult:132,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,"\u7d9a\u3044\u3066":70,"0x10":172,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":124,english:[0,108,125,26,20,27,38,176,80,119],grn_content_xml:106,uzulla:27,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":82,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":151,do_http:167,users_nam:115,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":97,"\u3082\u3057groonga":167,euc_jp:188,"key\u306b\u306f":113,amd64:151,other:[],host2:178,host1:178,"\u30ab\u30e9\u30e0\u578b1":108,"\u307e\u305f\u306f":167,"table\u306fcolumn\u3068\u306f\u5225\u306b":113,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":123,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":79,know:[44,108,130,184,61,77,38],press:119,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u30ab\u30e9\u30e0\u578bn":108,earch:90,incres:80,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,exceed:165,no_child_process:172,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[27,125,80,20],vojtovich:80,column_inform:95,lead:[108,3,32],grn_obj_get_nhook:93,leak:[73,154,125,7,27,80],lear:48,grn_address_is_in_us:2,time_stamp:148,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":121,investig:[165,125,130],acronym:172,tanab:125,rare:[77,125],"\u305d\u308c\u305e\u308c":177,kanako:125,disabl:[108,154,181,131,148,20,125,7,9,77,27,188,112,176,80],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],own:[23,150,13,132,7,84],grn_operation_timeout:2,"\u6570\u5b57":167,grn_ii:[],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":97,grn_id:[40,41,120,121,86,16,113,63,79,84],yuya:80,automat:[22,44,3,181,94,9,61,10,150,174,119],automak:154,grn_expr_append_const_str:84,grn_default_query_logger_get_path:7,"145508000x":75,transfer:[],grn_command_version_min:116,appl:189,replac:[150,186,77,178,64,80,91],"var":[40,141,69,95,97,9,61,188,53],"\u30ad\u30fc\u304c":97,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":151,"\u4ee5\u5916\u306e\u5834\u5408\u306f":108,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":69,"\u73fe\u5728":190,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":97,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,kana:[153,18,176,186,48],palallel:151,made:[7,27,3],tab:[77,106,175,4,172],grn_logical_range_filter_en:77,whether:[108,2,23,83,115,13,165,158,96,7,75,100,182,9,61,153,142,127,79,80,181],troubl:119,record:[],below:[58,104,59,181],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":79,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[82,145,6,72,73,126,8,155,157,159,190,105,37,140,107],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":116,ff76:189,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u3067\u306f\u6607\u9806":113,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":151,makecach:[7,129],"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":151,book:150,bool:[163,181,13,45,125,46,143],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":97,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":105,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":79,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":108,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":11,debian:[],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":93,emerg:[6,148,8,97,9],allow_leading_not:108},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/table_remove","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. Return code","4.1. Basic operations","7.2. Output","7.20.1. Overview","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013/01/29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. Correction","7.20.2. Global configurations","12.2.1. Introduction","8. Specification","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","Release 1.2.9 - 2011/12/29","&lt;no title&gt;","7.10. Query expanders","7.20. API","7.3. Command","7.14.13. snippet_html","5. Server","7.14.5. geo_in_rectangle","7.3.3. Request ID","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. Tokenizers","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. Reference manual","4.6. Tag search and reverse resolution of reference relationships","7.4. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.16. Suggest","5.4. Memcached binary protocol","7.1. Executables","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. Comparison","Groonga documentation","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. Column","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. Various search conditions","7.14.3. geo_distance","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","Release 4.1.1 - 2015-01-29","11.1. Travis CI","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.20.11. grn_expr","7.6.2. Vector column","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. How to contribute to groonga","2.2. Mac OS X","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.15.1. Geolocation Search","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. Tables","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. groonga command","5.2.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.14.9. in_values","2.1. Windows","4.2. Remote access","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","Release 1.3.0 - 2012/01/29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. Indexing","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","Release 3.1.2 - 2014/01/29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. Drilldown","7.1.8. groonga-suggest-httpd","1. Characteristics of Groonga","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.18. Log","7.6.1. Scalar column","7.12.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. Introduction","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. Regular expression","7.1.2. grnslap","7.14.10. now","7.12.1. Query syntax","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. Let's create micro-blog","7.15. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[179,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"-e":[97,0,1,"cmdoption-e"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[179,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[167,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[167,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[167,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[167,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[167,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[167,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[167,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[167,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[167,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,154],code:2,senna:42,"\u6539\u826f":[27,1,154,146],"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":151,queri:[108,91,132,115,9,148,29,181],global:19,localstatedir:188,"4\u30ea\u30ea\u30fc\u30b9":154,prefix:[69,150,143,188,176,54,181],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,follow:184,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,keywordn:161,value_typ:65,depend:[188,20],grn_type:62,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":151,drilldown_offset:108,specif:[184,78,9,21],send:[102,119],column_cr:73,column_or_valu:96,table_list:105,downtim:54,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[167,39],query_str:115,"\u524d\u63d0\u6761\u4ef6":151,grn_command_vers:116,sourc:[164,129,14,152,101,188,89],string:[13,46,90,133,150],groonga:[55,141,42,151,186,131,132,134,97,98,9,173,36,88,64,167,119],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":151,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,drilldown_calc_target:108,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[179,167],syntax:[90,142,6,95,97,46,47,100,145,103,10,147,105,107,108,75,150,153,190,58,115,59,155,61,166,159,65,22,68,49,23,157,161,72,73,126,74,170,117,96,76,127,174,178,82,181,182,133,32,136,8,109,37,140],brows:9,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":45,administr:[9,102],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":45,sub_filt:182,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":151,list:[0,2,26],scalar:149,vector:[13,85],drilldown_output_column:108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[179,167],direct:9,sign:150,aggreg:132,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":144,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":144,index:[66,44,3,132,114,138,78,178,65],what:38,xor:150,learner:64,"files\u306e\u5b9f\u884c":151,delet:170,version:54,"new":[77,42,119],grn_info:41,full:[3,181,132,99,74,78],hash:184,gener:[119,20],learn:[131,64,169,18,48,176],lock_clear:136,bodi:135,let:184,solari:24,ubuntu:14,path:[68,188,54],grn_user_data:118,valu:[90,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,184,133,32,136,8,109,37,140],"\u95a2\u4fc2\u5f0f":69,table_hash_kei:94,search:[44,108,3,91,92,132,85,48,74,18,184,143,150,78,99,176,181],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":151,shift:150,blogroonga:151,memcach:51,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":151,chang:42,narrow:74,"\u9759\u7684\u89e3\u6790":177,point:150,"windows\u5411\u3051\u306e\u5834\u5408":151,match_column:[115,78,108],tokenbigramsplitsymbolalpha:38,appli:85,modul:9,phrase:181,"debian\u7cfb\u306e\u5834\u5408":151,api:[87,30],grn_db:83,request_cancel:103,instal:[175,188,101,137,20],total:108,define_selector:155,select:108,httpd:[131,141,9,98,64],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,from:[164,129,14,152,101,188,64,89],zip:101,commun:26,query_expand:[115,108],regist:10,upgrad:54,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":70,column_remov:72,call:150,"\u30c6\u30b9\u30c8\u65b9\u6cd5":177,key_typ:65,scope:182,query_expans:108,"\u30d6\u30ed\u30b0":151,sort:[74,3,130],token_filt:[90,65],relat:[78,108,9,64],benchmark:167,flag:[46,90,133,172,65],grn_content_typ:106,tokenbigramignoreblanksplitsymbolalpha:38,cach:[108,9],"\u4f7f\u3044\u65b9":167,prepar:91,work:[119,18,176,48],tag:[44,184,65],clearlock:107,"\u7279\u6b8a\u547d\u4ee4":167,control:150,grn_column:121,geo_in_rectangl:34,process:[139,148],lock:132,topic:15,sphere:75,liter:150,avoid:165,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":124,groonga_cache_limit:9,grndb:61,onlin:114,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":151,unsign:150,filter:[142,163,23,108],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":143,multipl:[78,150,130],secur:[102,150],"\u540d\u524d":[179,67,180,111,45,167,34,60,36,168],divis:150,grn_table_select:69,open_tagn:161,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":177,simpl:108,updat:[132,119,176,151,20],message_pack_install_prefix:188,tokenregexp:38,"\u7406\u7531":124,max:[142,96,23,117,139],clone:119,geoloc:[92,184],mac:89,offlin:114,date:13,log_level:6,data:[181,13,184,176,48,9,150,64,65],table_dat_kei:94,alloc:165,"\u66f8\u5f0f":[179,67,180,111,167,34,36,168],tokenbigram:38,tokendelimit:38,explicit:181,issu:[0,102],callback:69,combin:181,normalizernfkc51:189,freebsd:139,suggest:[131,153,186,48,169,50,64],table_token:46,order:142,origin:150,adjust:108,help:188,rand:67,hypertext:102,lz4:188,"3\u30ea\u30ea\u30fc\u30b9":154,gqtp:[141,172,128],paramet:[90,142,6,95,97,46,47,8,145,109,103,147,105,127,107,108,75,153,58,115,59,155,157,190,159,64,65,68,23,161,72,73,126,170,117,96,78,82,182,131,133,136,100,139,37,140],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":151,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":151,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":151,group:[178,181,150],thank:[125,7,77,27,112,80],how:[0,85,165,172,48,114,18,102,35,88,15,176,119],fix:[42,125,7,77,27,80],"\u5b9f\u9a13\u7684":27,platform:188,window:101,restart:141,persist:94,tsv:[135,175],mail:[0,26],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":177,"\u4f8b\u3048\u3070redmin":124,grn_hook:93,html_untag:109,"return":[90,2,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,133,32,136,8,109,37,140],greater:[69,181,150],worker_process:9,rectangl:75,"8\u30ea\u30ea\u30fc\u30b9":154,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":177,"\u8fd4\u5024":[67,108,180,111,34,36,168],now:180,highlight_ful:161,introduct:[169,20],choic:178,term:150,name:[59,78,186,65],edit:119,revers:[44,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":144,authent:54,kern:139,micro:184,token:[132,163,90,38],exampl:[41,5,93,86,56,53,110,116,16,17,113,62,25,118,120,121,165,123,63,172,79,81,83,186,84],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":171,each:78,ruby_load:68,"\u30b3\u30de\u30f3\u30c9":36,"benchmark\u5b9f\u884c\u7d50\u679c":167,grn_encod:123,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,domain:130,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[78,85],"0\u30ea\u30ea\u30fc\u30b9":[27,154,146],normalizerauto:189,http:[141,191,4,54,102],todo:[115,32],"http\u30b5\u30fc\u30d0\u30fc":36,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":124,groonga_query_log_path:9,db_api:69,query_flag:108,"release\u306e\u5b9f\u884c":151,normalizer_nam:161,quantifi:178,"\u5bfe\u5fdc":124,correct:[169,18],red:151,nofil:139,"1\u30ea\u30ea\u30fc\u30b9":[27,154],shut:9,proxi:9,advanc:108,free:132,target_valu:100,substitution_t:115,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":151,releas:[125,7,77,27,112,80],database_path:[131,64],grn_match_escal:25,launch:131,recov:61,synopsti:186,assign:[35,181,150],oper:[185,3,150],softwar:20,rang:[3,65],plugin_regist:22,groonga_log_path:9,suffix:[69,181,150],"7\u30ea\u30ea\u30fc\u30b9":[1,154],"\u8aac\u660e":[179,67,180,111,45,167,34,60,36,168],arrai:150,number:[139,108,188],edit_dist:111,groonga_database_auto_cr:9,max_map_count:139,open:139,primari:143,size:172,script:[147,150],"\u4fee\u6b63":[27,1,154,146],messag:188,tune:139,termin:172,store:[132,65],option:[46,75,142,131,133,97,186,115,90,23,64],relationship:44,travi:81,tool:[188,9,102],specifi:[75,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":11,tokenfilterstem:163,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":69,than:[181,150],not_equ:69,keyword:184,remot:102,"grntest\u306e\u6e96\u5099":151,grn_table_cursor:63,charact:178,column_list:95,grn_expr:[69,84,158],latitud:[13,132],favorit:184,ruby_ev:147,plugin_unregist:174,tabl:[66,108,3,94,95,46,59,184,78,64,65],"null":150,packag:[188,141,14],bitwis:150,drilldown_limit:108,built:[189,38,12],min:[142,23,96],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":69,also:[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,172,76,174,175,35,133,32,186,135,8,189,117],builtin:97,without:54,build:[164,129,14,152,101,188,89],highlight_html:47,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,mroonga:132,"\u691c\u7d22\u306e\u6319\u52d5":144,normal:[85,90,133,189,65],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[154,146],object:150,oracl:24,statu:[82,172,186],regular:[178,181,150],"\u7d44\u8fbc\u578b":45,default_token:65,"class":178,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":151,groonga_log_level:9,geoindex:184,table_pat_kei:94,request:[131,35,9,119],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":69,left:150,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":144,"\u539f\u56e0":70,lexicon:[99,3,65],cache_limit:117,text:[3,181,132,99,74,78],grn_index_cursor:120,greater_equ:69,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":151,threshold:188,xml:135,access:[102,54],explicitli:75,locat:[132,74,75,175,44],execut:52,ellipsoid:75,grnslap:179,configur:[19,9,20,188,54,81],solut:165,max_bord:[142,23,96],use_html_escap:161,"benchmark\u547d\u4ee4":167,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":70,contribut:[88,15],variou:[13,74],get:[131,3],express:[178,181,150],stop:141,cannot:165,wheezi:152,report:0,geo:[132,150,44],requir:[108,75,23,131,95,133,46,115,59,90,109,103,142,127],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:172,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":124,patch:119,new_nam:59,tokenfilterstopword:163,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":190,contain:69,table_cr:65,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":177,summari:[2,12,6,90,9,10,75,5,190,16,17,19,86,106,22,23,25,32,8,37,38,40,41,145,163,47,53,110,58,59,61,63,64,65,68,49,72,73,76,79,82,83,93,94,95,97,100,103,105,56,107,108,109,85,116,115,113,118,120,121,122,161,126,127,131,35,133,135,136,139,140,142,147,149,153,155,157,159,123,46,62,166,170,117,96,174,175,178,182,183,138,189],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":151,set:[131,9],modulo:150,dump:157,geo_dist:75,see:[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,172,76,174,175,35,133,32,186,135,8,189,117],result:[3,130],arg:69,scorer_tf_idf:122,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":177,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":124,databas:[3,54],column_renam:59,label:108,less_equ:69,score:108,between:96,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":151,kei:[108,143],numer:13,javascript:74,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":151,style:108,"\u5bfe\u7b56\u65b9\u6cd52":70,"\u5bfe\u7b56\u65b9\u6cd51":70,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":167,homebrew:89,addit:[189,150,99],instant:132,plugin:[40,188],geopoint:184,equal:[69,181,150],against:78,tutori:156,logic:[181,150],improv:[42,125,7,77,27,112,80],"po\u306e\u5b9f\u884c":151,load:[58,184,3,9,85],among:78,"twitter\u7de8":124,overview:[13,132,5],period:42,patricia:143,header:[135,172],close_tagn:161,shutdown:140,linux:[152,139],grn_proc:53,tokenbigramignoreblanksplitsymbol:38,quit:159,"\u5236\u9650\u4e8b\u9805":167,target_nam:[136,127],invert:132,"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,add:119,json:[58,135],basic:[3,150],tokenmecab:38,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,log_put:8,drilldown_calc_typ:108,resolut:44,"2\u30ea\u30ea\u30fc\u30b9":154,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":151,logical_range_filt:142,i18n:119,in_valu:100,"case":135,drildown:130,multi:54,gnu:152,zlib:188,cast:57,"\u691c\u7d22":144,error:[135,165],anchor:178,pack:188,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":177,"\u6982\u8981":11,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":151,"\u5f15\u6570":[179,67,111,167,34,168],filter_str:182,archiv:14,cento:129,synopsi:[131,9,64],develop:162,fedora:164,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":151,grn_cach:17,perform:[9,54],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,make:[188,151],who:184,"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,binari:51,html:[109,119,20],output_column:[108,142],document:[55,15,20],messagepack:135,complet:[169,176],proxy_cach:9,expans:91,nest:78,temporari:94,user:184,engin:132,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":151,expand:29,desctipion:186,sortbi:108,overcommit_memori:139,person:14,client:[187,172],command:[11,3,4,131,97,31,102,61,54],gzip:54,latest:151,comment:184,construct:114,protocol:[51,102,172],just:85,less:[69,181,150],min_bord:[142,23,96],"5\u30ea\u30ea\u30fc\u30b9":154,languag:119,approximate_typ:75,hashtag:184,point1:75,mmap:165,defrag:37,point2:75,blog:184,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":177,macport:89,geo_in_circl:168,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":151,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":151,tokenunigram:38,match:[188,181,150],format:[135,108,3,58,148,175],read:[132,176],tokendelimitnul:38,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":70,characterist:[132,94],truncat:127,daemon:172,like:74,success:135,maxfileperproc:139,manual:43,integ:150,server:[132,141,172,102,33],logical_t:[142,23],"boolean":[13,150],cascad:170,output:[135,108,3,4,119],snippet_html:32,normalizer_list:49,old:77,twitter:26,log_reopen:190,sampl:[181,150],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":177,librari:[132,188],tokenbigramsplitsymbolalphadigit:38,confirm:119,table_no_kei:94,per:139,tracker:0,exit:186,condit:[74,108,181],scorer_tf_at_most:183,refer:[40,41,43,93,86,106,53,56,5,85,13,116,16,17,113,19,25,118,44,120,121,62,123,63,110,79,83,84],core:54,range_filt:76,run:[172,102,20],tokenizs:38,compress:54,view:3,usag:[90,142,4,12,6,95,97,46,47,100,145,9,103,10,147,105,107,108,75,85,153,190,58,115,59,155,61,166,159,64,65,22,68,49,23,157,122,161,72,149,73,126,170,117,96,76,127,174,175,178,82,182,131,138,109,133,32,136,8,139,37,140],tokenizer_list:166,tokenbigramsplitsymbol:38,"\u30d3\u30eb\u30c9\u6642\u306etip":151,repositori:[104,119],offset:[108,142],post:[184,9,54],subtract:150,comparison:[150,54],about:99,column:[66,149,75,3,181,130,85,132,161,47,60,138,71,78],memori:[165,139],page:108,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":124,"x\u306e\u304a\u77e5\u3089\u305b":[1,154,146],tokentrigram:38,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":177,ppa:14,match_escalation_threshold:108,grn_ii:86,"\u4f8b":[67,168,111,70,34,180],"float":150,encod:188,dataset:186,down:[74,9],grn_ctx:16,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,storag:132,your:119,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":45,log:[148,188,64,54],transfer:102,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":167,support:92,"\u5909\u66f4":154,submit:0,custom:54,avail:[163,9],start:141,arithmet:150,"\u306e\u66f4\u65b0":151,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":151,"function":[160,150],tokenbigramignoreblanksplitsymbolalphadigit:38,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":151,"\u691c\u7d22\u4f8b4":69,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":69,"\u691c\u7d22\u4f8b2":69,"\u691c\u7d22\u4f8b1":69,translat:119,drilldown_sortbi:108,line:[131,97,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":151,pull:119,munin:188,type:[13,184],record:[94,108,3],limit:[66,108,130,85,94,175],inform:[74,99],similar:[18,150,69],grn_tabl:113,"\u611f\u8b1d":[27,1,154,146],featur:92,bigram:184,creat:[3,85,184,186,78,65],trie:143,flow:119,grn_obj:79,groonga_databas:9,mode:[46,90,69],"homebrew\u306e\u66f4\u65b0":151,right:150,file:[186,139,175,64,54,119],check:[126,61],sharabl:132,tokenbigramignoreblank:38,extract:[150,48],grn_search:56,"default":[188,11],other:[188,178],logical_count:23,"\u30c7\u30fc\u30bf\u578b":45,grn_geo:110,"hat\u7cfb\u306e\u5834\u5408":151,scorer:[74,108,12],cooccurr:[18,176,48],drilldown:[108,130],debian:152,longitud:[13,132],groonga_base_path:9,escal:188,"\u691c\u7d22\u4f8b3":69,pseudo:60,cpu:54,table_remov:145,queryexpandertsv:175,time:[13,184,150],escap:[181,178],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":151,shard_kei:[142,23]}})
1
+ Search.setIndex({envversion:42,terms:{localstatedir:137,four:[135,94,3,97,149],"\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":152,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u811a\u6ce8":[34,45,169,72],"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":168,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":140,your_db:27,grn_fin:5,column_cr:[55,43,85,31,27,80],"\u65e5\u672c\u4eba":177,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":152,no_such_device_or_address:173,thread_tabl:168,command_vers:[11,3,4,162,32,47,82,173,109,9,148,36,102],dewangga:77,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":63,"takashi\u3055\u3093\u304c\u5831\u544a":27,"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22":143,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":155,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":108,cancel_request_is_accepted_or_not:103,grn_plugin_win32_base_dir:40,drilldown_output_column:[156,80],asami:125,"\u697d\u3057\u3044billiard":[70,144],dump_index:77,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":152,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":113,grn_oper:[113,56,84,121,110],grn_column_name_nsubrecs_len:121,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":152,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":168,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":37,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":53,grn_socket_is_already_shutdown:2,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":97,grn_table_cursor_next:[63,155],here:[40,92,2,71,5,94,95,97,68,47,48,46,145,100,101,9,103,10,148,149,106,127,54,58,108,75,12,85,154,14,16,17,115,59,18,90,20,167,151,64,65,22,164,49,23,61,122,162,183,74,171,173,96,78,175,176,177,81,190,83,130,158,131,38,109,182,133,32,187,136,179,35,189,139,119,84,117],onga:32,china:[75,130],grn_enc_utf8:[63,123],ful:90,"\u4e0e\u3048":70,latitude_in_msec:151,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":134,"\u7a7a\u767d\u3084":97,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,match_column:[55,85,125,156,77,80],"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":168,engi:[154,177],"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":178,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":27,substr:[182,151],unix:[189,80],txt:[87,38,119],unit:[75,151,31,32,171,173,38],tokenizs:[55,43],music:[44,149],until:[40,114,108,58,19,139,80,119],"\u30d6\u30ed\u30b0":88,grn_op_push:69,token_filt:158,relax:139,relat:[55,129,189,165,132,14,125,26,7,153,77,104,27,88,79,80,81],error_messag:135,notic:[6,122,8,97,9],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":152,hold:[13,99],"\u6c11":144,"byte\u9577":[113,79,121],"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":158,"akio\u3055\u3093\u304c\u5831\u544a":155,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":79,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":124,grn_obj_reinit:79,cirit:9,digit:[108,18,149,179,38,80,65],"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":168,want:[141,90,3,91,128,97,46,48,145,100,9,104,189,165,108,75,87,14,58,18,68,166,183,173,77,78,176,177,80,179,129,182,130,131,133,153,38,89],"\u3053\u308c\u3089\u306e\u5f62\u5f0f\u3067\u306f":36,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":113,"\u30b3\u30de\u30f3\u30c9\u306f":36,type1:154,type2:154,"grnslap\u306f":180,grn_filename_too_long:2,turn:9,grn_read_only_file_system:2,travel:185,grn_geo_point:110,grn_input_output_error:2,enviromn:77,yum:[7,165,129,152,20],"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":79,message_pack_install_prefix:137,groonga_clone_dir:152,moritar:78,wrong:[125,7,170,18,61,77,27,80],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u63d0\u6848\u3092\u884c\u3046":155,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":147,"virtualbox\u306fsourc":152,wing:[7,125],"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":168,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":123,vari:[40,66],"drilldown\u51e6\u7406\u306e\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":108,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":88,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[63,113],hidden:132,fin:53,easier:12,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":69,rectangl:[7,27,110,132],stop_word:[164,46,158],"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":152,dcmake_install_prefix:101,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":155,timeout:[79,19,125],debug:[90,152,6,97,8,9,149,77,80],"obj\u3092lock\u3057\u307e\u3059":79,last_modifi:185,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":70,"akio\u3055\u3093\u304c\u63d0\u6848":155,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":168,ideograph:77,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":155,grn_table_s:[113,69],grooon:131,moritapo:44,gregex:125,lexicon_t:168,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":168,input_typ:58,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":152,"\u79d2":79,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,ringtail:125,"\u307e\u308d\u3086\u304d":143,libedit:[7,27,189,165,77],"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":45,atv:[74,3,130],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":146,confus:[38,179],resource_busi:173,accuml:125,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":11,mingw:152,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":63,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":152,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":97,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":152,"\u304a\u3070\u305f\u3055\u3093":1,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":113,master:[119,9,81],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u3092\u8d77\u70b9\u3068\u3057\u305f\u79d2\u6570\u3092\u5c0f\u6570\u3067\u8fd4\u3057\u307e\u3059":108,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":63,listen:[7,173,9,54,102],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,169],kinjir:44,"\u50242":[36,97],"\u50241":[36,97],tree:80,second:[108,75,3,182,12,13,185,95,135,74,103,149,78,54,151],project:[0,141,151,152,132,104,88,80,81],"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":113,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":168,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":168,boston:185,"db_api\u306f":69,parenthes:3,"\u3050\u308b\u3093\u304c\u6b21\u90ce":44,increment:35,incompat:[7,77,125,80],"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":152,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,"0\u306e\u79d2\u8868\u8a18":70,suenaga:77,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":152,simplifi:[100,125],unknow:80,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"10041\u756a":97,"key_type\u306bt":113,object:[40,17,49,71,83,79,85,113,133,32,16,7,136,59,90,167,159,148,27,37,80],microsecond:[13,149],letter:190,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":168,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":62,"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":168,camp:185,incompatible_file_format:173,index_blog:78,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":152,expornenti:151,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":79,daemoinz:7,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,grnslap:[52,55,43],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":97,restaur:132,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":11,"2byte":[2,173],grn_obj_set_element_info:41,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u306f\u306a\u304f":1,serv:[13,152,80],source_file_nam:135,ff1f:77,createrepo:152,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":45,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[55,31,80,43,16],maverick:27,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":70,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u3084":45,unexpectedli:125,etim:180,"\u4efb\u610f\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5c5e\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3059":45,"description\u306b":144,result:[4,94,48,7,103,77,145,157,55,108,75,151,13,112,114,115,113,18,61,64,119,68,69,125,183,27,176,177,80,179,131,132,133,32,135,190,38],respons:[17,2,131,132,125,7,80,103,27,54,173],fail:[22,17,3,182,40,125,7,19,10,27,77,175,80,65],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":79,best:132,"get\u30e1\u30bd\u30c3\u30c9\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059":36,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":69,wikipedia:45,figur:92,score:[7,77,59,85],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":11,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":168,extend:[78,91,80,179],shidara:27,extens:4,pat_kei:94,"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":105,grn_plugin_realloc:40,column_scalar:[91,12,95,46,47,100,109,127,108,75,151,115,114,70,59,158,44,164,23,122,162,73,183,171,96,78,179,182,130,185,32,136,139],logic:[7,142,108,23],countri:[171,102,130],login:139,kazuhiko:[7,80],"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":144,"2nd":108,"\u95a2\u6570":178,grn_table_cursor_get_valu:63,assum:[53,103,16],summar:130,duplic:80,grn_search_optarg:[77,56],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u4f7f\u3063\u3066\u3044\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":143,"\u306e\u307b\u304b\u306b":45,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":11,"takashi\u3055\u3093":27,much:38,salamand:[125,80],"\u30ab\u30f3\u30de":158,worker:[9,125],"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,dave:96,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":70,grn_table_delet:113,"localstatedir\u3092\u4f7f\u7528":155,spil:77,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":1,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,sen_index_norm:42,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":169,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":11,select_opt:151,arg_list_too_long:173,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u5185\u90e8\u3067\u30a2\u30ed\u30b1\u30fc\u30c8\u3055\u308c":82,grn_resource_busi:2,simil:151,split:[27,77,38,151,94],big:[9,80],"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":70,documents_content_index:[115,32],"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":168,refin:[132,125],"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u3066\u304b\u3089\u7d4c\u904e\u3057\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":82,tune:[55,108,125,43,85],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":152,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[70,144],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":69,out_gqtp:168,users_memo:115,gzip:[7,189,192],unchang:40,bellow:38,sleepi:114,old_release_d:152,easi:[12,132,97,54,159,176,80,102],"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":168,had:[12,119],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":88,hat:189,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":69,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":152,koji:7,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":70,command_nam:102,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":168,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":152,measur:[27,132],specif:[55,68,23,85,132,108,125,7,158,154,145,189,80],"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":73,filename_too_long:173,"\u30d4\u30ea\u30aa\u30c9":73,sebastian:80,underli:132,grn_obj_table_hash_kei:[63,113],right:[110,80],groogna:[7,112,108,101,182],kouhei:125,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,bottom:110,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":120,"146566000x":[185,75],"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":152,ichii:27,condit:[66,55,125,7,77,84],scorer_tf_at_most:[77,12],yoku:[125,80],"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":168,grn_builtin_typ:[62,79],grn_cursor_descend:63,grn_log_path:7,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":121,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":134,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,nginxhttpstubstatusmodul:80,"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":152,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,"\u30ad\u30e3\u30c3\u30b7\u30e5\u5bb9\u91cf\u306f\u6709\u9650\u3067\u3059":108,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":69,"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":69,suffici:40,support:[40,42,7,90,9,103,27,145,189,114,108,151,14,58,115,64,119,68,125,77,112,80,81,190,182,132,186,32,188,65],"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":67,avail:[40,55,108,42,43,119,132,95,133,125,135,90,61,154,189,77,106,65],width:[27,190],joseph:143,call:[40,68,75,5,85,108,32,16,7,59,125,159,145,80],inv_res_column:168,"\u3086\u304d\u3072\u308d":143,"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":1,rid_max:120,pagerank:[122,28,12],"135960000x":75,type:[41,90,71,4,12,92,94,95,48,7,145,2,9,103,77,104,110,106,53,54,55,108,75,151,85,154,16,59,18,157,65,121,122,168,125,73,183,171,173,27,28,112,177,80,179,182,131,38,133,84],"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":113,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,replied_us:185,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":124,later:[109,23,162,97,125,47,7,183,27,3,190,80,179],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":113,"http\u3067\u901a\u4fe1\u53ef\u80fd\u306b\u306a\u308a\u307e\u3059":36,exist:[141,3,12,97,7,100,9,103,151,13,58,61,20,64,125,74,173,96,77,78,80,83,188,38],"object\u578b\u306fv1":45,column_name1:58,column_name2:58,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":105,grn_search:[55,30,43],"_yyyymmdd":[142,23],role:[132,115],notif:[149,125],intend:[7,183,78,182,80],moero:44,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":152,grn_ptr_value_at:[84,16],intens:9,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":155,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":121,grn_ii_buffer_open:86,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":56,exce:[7,77,125],time:[55,23,103,131,132,135,168,32,125,7,154,19,61,77,27,80,182],push:[119,16],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":105,chain:183,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[181,34,111,169,67],grn_obj_get_hook:93,netbsd:125,millisecond:[13,131,74,19,151],decid:176,thread_title_column:168,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":155,decim:[13,151],"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":178,downtim:192,"257662232kbyte":168,score_adjust_express:108,lru:117,exact:[82,94,108,69,65],"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":178,grn_plugin_mutex_lock:40,prevent:125,"\u8ad6\u7406\u548c":69,grn_table_group_result:113,index_point:44,sign:[7,2,152],"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":180,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":11,grn_broken_pip:2,takashi:171,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":79,current:[58,3,83,92,119,185,16,17,59,9,27,117,106,65],"\u3053\u308c\u306b\u3088\u308a":152,construnct:77,boost:177,"encoding\u306e\u5024\u304c":27,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":79,"0\u4ee5\u4e0a4":45,modif:77,address:[131,97,7,102,77,27,173],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":69,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":88,throughput:[27,54],"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":88,commonli:[132,179],ipa:165,pentium:168,prefer:131,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,62,97,113,79,168,121],mitani:80,instal:[132,88,178,152],grn_pat_del:77,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":97,droonga:100,value2:[58,151],value1:[58,100,9,151],neologd:38,peopl:[132,38],tanuma:80,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":168,enhanc:42,visual:[135,132,125,7,101,77,27,80],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u79d2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":45,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":63,valuen:100,pgroonga:12,"windows\u7cfb":152,genki:125,"\u30ab\u30e9\u30e0\u306e\u578b\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u53c2\u7167\u30ad\u30fc\u3068\u306a\u308a\u307e\u3059":45,improper_link:173,recycl:80,"takahiro\u3055\u3093":155,index_titl:78,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":63,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":11,chroot:152,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":168,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":178,"\u578b\u306e\u5024\u3092\u76f4\u611f\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u306e\u3067":143,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":168,date:[132,75,168,157,55],data:[71,93,95,7,101,27,55,108,85,154,14,17,158,58,66,23,165,125,171,77,112,80,81,129,83,132,153,137],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,quot:[90,3,182,133,125,58,151],cannot:[55,108,182,94,114,39,151,190,54,65],int64:[45,108,80,125],grn_plugin_charlen:40,i686:168,grn_ja_skip_same_value_put:125,"\u30e6\u30fc\u30b6\u540d":168,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":120,implemnt:192,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u77e5\u308c\u307e\u305b\u3093":124,instantli:[132,32],grn_obj_init:79,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":191,"\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":152,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,didn:80,separ:[58,108,90,3,4,130,176,95,133,151,46,7,173,154,77,106,38,182],"_dataset":[64,187],operation_not_permit:173,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":79,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":152,compil:[27,189,125,80,77],"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":113,grn_obj_path:[79,125],gtar:24,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":152,vervet:[77,14],internet:[132,159],formula:[166,75],"\u6700\u5f8c\u306e":168,million:66,"\u6700\u5f8c\u306b":70,mime:[77,54],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":25,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":113,"byte":[40,108,121,35,62,32,16,7,113,173,125,77,27,79,84,53,80],dest_key_s:113,"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":41,grn_op_adjust:[56,69],brasil:75,"\u30b9\u30fc\u30d7":144,recov:83,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,oper:[55,108,110,43,125,7,136,59,159,189,84,80],grn_logger_reopen:7,onc:[108,130,5,185,7,27,78,190,80],beijin:75,reopen:27,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":70,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":70,open:[17,190,83,149,125,7,110,61,27,77,58,162,81],grn_obj_get_element_info:41,convens:7,convent:7,return_cod:[135,149],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":70,citi:[92,75,185],groonga1:11,fullfil:141,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":152,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":63,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":79,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":168,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":79,grn_stack_over_flow:2,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u30b3\u30de\u30f3\u30c9\u3092\u6307\u5b9a\u3057\u307e\u3059":36,set_port:168,grn_obj_get_info:41,fumiyasu:27,grn_ctx_set_output_typ:16,"\u307e\u305fgroonga":168,column_list:[55,43,155,31,7,27,80],"\u90fd":[70,144,38],sai:[3,151],san:75,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":181,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,argument:[40,3,12,97,47,7,100,102,148,51,75,151,16,115,162,125,183,109,173,27,78,80,179,32],sae:[154,18],"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,drilldown_limit:156,uuuuuu:151,note:[40,3,97,7,9,103,77,145,54,165,108,109,151,13,65,68,23,166,125,171,27,80,130,131,132,139,102],"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,take:[141,49,3,61,95,136,59,103,167,127],"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,"\u30cb\u30db\u30f3\u30b8\u30f3":177,noth:[108,97,170,9,61,148,106,177],grn1:78,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":37,grn3:78,grn2:78,buffer:[86,125,16,126,77,78,79,84],compress:[73,125,7,27,189,80,192],"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":105,homepag:168,"\u51e6\u7406\u306b\u304b\u304b\u3063\u305f\u79d2\u6570\u3092\u8fd4\u3057\u307e\u3059":108,"\u30b5\u30fc\u30d0":97,max_valu:139,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":72,do_gqpt:168,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":169,"\u4ef6\u6570":108,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":168,grn_lzo_error:2,"obj\u306f":79,xml:[125,7,27,106,112,80],slow:[94,151,9,179,182],"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":16,too_many_link:173,grn_float_valu:77,"\u5024\u306furl\u30a8\u30f3\u30b3\u30fc\u30c9\u304c\u5fc5\u8981\u3067\u3059":36,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":168,clang:[7,77,178,125,80],"dump\u30b3\u30de\u30f3\u30c9":1,grn_invalid_seek:2,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,grn_ii_buffer_clos:86,requir:[165,129,24,132,14,125,7,153,101,27,189],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":108,aptitud:178,washida:125,where:[13,2,189],"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":63,"\u7a7a\u767d":97,regexplexicon:179,"namebuf\u306e\u30b5\u30a4\u30ba":[79,121],ohzeki:80,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30b3\u30ed\u30f3":73,mani:[141,3,12,128,94,9,189,54,108,151,85,13,119,122,125,170,27,80,179,182,130,132,32,187,139,88,65,192],"\u30ed\u30b0\u51fa\u529b":8,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":126,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":155,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":11,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":11,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":41,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":93,better:[132,78,108,80,151],"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":152,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":41,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":97,score_adjust_expression2:108,score_adjust_expression1:108,parser:[182,179],resolut:[55,157],logical_range_filt:[55,31,43,77],former:[190,176],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":97,ctrl:[97,3,173],ivh:[165,129],html_untag:[55,161,125,43],set_host:168,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":113,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,ascii:[38,182,151],hash_tag:185,binari:[55,4,132,45,125,33,7,188,101,9,135,80,54,151],grn_proc_creat:53,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,utf8:[123,189,97],"\u90fd\u6c11":[70,144],grn_operation_not_support:2,"146710080x":185,"768\u4ee5\u4e0a32":45,"\u5358\u72ec\u306e\u5024":121,wiedenroth:80,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":168,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":180,grn_hook_select:93,"\u6771\u4eac\u90fd":[70,144,38],rest:[40,176],"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":168,"\u30cb\u30db\u30f3":177,"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":152,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":113,haystack:69,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":168,"4096byte":[66,94,77],around:[92,32],"10043\u756a":97,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":144,res1:113,bookmark_index:85,world:[45,38,74,80,125],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,intel:168,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":79,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":11,integ:[77,108,2,97,85],manag:[189,35,83,97,132,94,32,16,103,102,61,20,81,176,54,9],yyyi:[149,151],"\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":83,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":83,grn_obj_is_builtin:[27,79],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":152,edict2grn:80,definit:[108,75,182,12,183,122,162,32,47,7,115,100,96,148,109,179,171,151],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":53,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":152,exit:[7,77,97,125,61],ddl:[168,80],refer:[55,132,125,77,27,80],power:[108,179],"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":70,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"\u30d3\u30eb\u30c9\u6642\u306etip":88,grn_get_default_command_vers:116,starttim:[3,4,82,102,9,173],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":97,ffef:38,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,neighbor:132,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":88,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":152,"flags\u306b\u306f":113,match_escalation_threshold:[155,189,16],effici:[132,78,85],"\u306b\u3042\u308b":79,agaist:7,charli:185,hex:[44,151],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":11,"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[27,155],grn_proc_func:[40,53,16],sid:[27,152,80,126],"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,bundl:[125,7,115,77,80,119],htpasswd:[9,54],no_kei:94,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":97,categor:[108,90,46],pull:152,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":69,grn_ctx_get:[121,16],"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":152,preconfigur:[153,129,14,141,165],reqular:131,gone:44,type_of_the_column:183,uid:152,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":97,certain:74,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":155,grn_id_nil:[63,113,84,16],googl:[108,182,12,122,170,28],grn_select:108,grn_ctx_open:[27,16],shimomura:7,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":152,writabl:80,"\u4e00\u65b9":70,logical_count:[55,31,43,77],item_dataset:[187,48],"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":69,vocabulari:3,geodet:[45,74],"debug\u3092\u8ffd\u52a0":155,nagano:80,queryexpandertsv:[22,55,43,125,7,115,10,175,29],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":152,cpu:[131,189,168,9,192],senna:77,grn_type:[55,30,43],illustr:130,pluggabl:132,"\u521d\u671f\u5316\u3059\u308b":16,scr:168,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":88,grn_obj_set_info:41,too_small_offset:173,tail:[173,152],kosuk:125,webclip:109,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[55,155],introduc:[77,88,9,80],candid:[131,154,177],too_many_open_fil:173,"4\u30ea\u30ea\u30fc\u30b9":77,colleagu:88,"yum\u306e\u5834\u5408":152,adjust:[125,80,85],small:[182,94,125,185,77,151,38,80,65],"flags\u306b":[113,121],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":120,past:7,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,pass:[75,3,83,152,182,115,179,9,103,77,27,151,112,102],grn_no_such_device_or_address:2,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":152,section:[40,52,90,142,12,86,95,97,46,48,101,9,103,145,189,127,161,165,108,75,85,14,58,122,59,18,117,61,179,133,65,163,119,68,23,121,136,24,125,173,186,77,78,176,177,80,81,129,182,130,185,30,31,153,137,139,88,89,50],"log_put\u306f":8,"debian\u7cfb":152,"files\u306e\u5b9f\u884c":88,delet:[55,1,43,155,31,125,7,20,27,79,80],"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":152,coremodul:9,contrast:[3,5,132,97,115,9,80],"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":144,hash:[151,94,125,7,77,27,65],"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":152,table_renam:112,jennif:143,sender:[131,64],grn_column_renam:121,out_loc:168,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":16,social:44,action:125,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":93,via:[7,119,2,48],"\u6b21\u306bgroonga\u306etest":152,grn_logical_range_filter_threshold:77,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":67,define_selector:[55,31,43],select:[17,11,110,43,55,35,85,31,125,147,7,59,171,117,103,77,76,27,84,155,80],"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":168,mecab:[165,129,42,152,132,14,125,7,153,77,27,189,38,80,89],morn:114,mecab_new2:7,"lucid\u304b\u3089":155,more:[40,3,143,12,94,95,97,7,100,9,71,189,54,108,151,85,13,154,16,114,115,18,61,64,65,66,164,122,125,170,173,77,176,80,179,182,183,132,32,185,139,38],yokoyama:[125,80],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":69,uint8:[45,155,95,125],"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":152,function_nam:135,grn_ctx_get_all_t:[77,16],"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":152,nomal:[7,108,9],cach:[17,1,132,125,7,117,77,79],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":69,uint64:[45,125,80],"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":152,endpoint:[131,64],"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":11,arg3_valu:179,learn:[154,108,125],"\u306b\u3088\u3063\u3066\u9759\u7684\u30da\u30fc\u30b8\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3068":36,prompt:[7,101,3,4],scan:[178,162,182,47,151],accept:[75,3,91,131,132,173,96,97,7,74,80,103,35,27,78,185,127,54,151],"delete\u30b3\u30de\u30f3\u30c9":1,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":27,groonga_cache_limit:125,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":168,"search\u3092\u884c\u3044":[63,113],"select\u30b3\u30de\u30f3\u30c9":1,"\u5b9f\u884c\u4f8b":[11,178],simpl:[49,23,95,133,59,80],isn:[95,97,7,9,145,189,108,154,16,58,18,65,68,125,170,173,77,176,177,80,129,182,32,135,38,117],"\u691c\u7d22\u6642\u306b\u306foriginal\u30ab\u30e9\u30e0\u304c":143,referenc:[108,130,125,7,171,65],bm25:[122,12],grn_obj_get_rang:79,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":169,conditin:182,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":16,"\u521d\u671f\u5316\u6e08\u307f\u306e":83,m64:24,tokenbigram:[164,90,182,12,183,122,94,162,108,97,32,47,114,115,18,46,167,105,151,65],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":1,open_tag1:162,grn_obj_key_int:62,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,sysctl:[166,139,89],trade:38,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":152,i386:[27,129,152],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":[82,97],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,dest_kei:113,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":155,sauci:[125,80],html:[88,152],creat:[40,17,83,43,55,125,147,16,7,27,84,80,119],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":97,grn_bulk:84,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":121,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":124,inada:125,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":152,"\u65e5":38,authent:192,achiev:23,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":152,found:[108,110,125,7,170,113,101,189,38],"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":93,with_posit:[122,114,164,3,91,12,183,70,185,95,108,32,47,73,115,179,139,78,151,162,182],procedur:[7,125],realli:[151,108,91,182],ftp:[168,152],"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":152,ftb:42,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":97,occurr:122,grn_column_index_upd:121,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":16,grn_user_data:[55,30,53,43],"1970\u5e741\u67081\u65e50\u66420\u52060\u79d2\u304b\u3089\u306e\u7d4c\u904e\u6642\u9593\u3092":45,grn_table_hash_kei:[113,110],"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":79,clumn:139,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":168,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":72,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":144,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":11,major:137,"\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u306e\u4e21\u65b9\u304c\u53ef\u80fd\u3068\u306a\u308a\u307e\u3059":143,n_result:113,number:[132,137],"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,113,79,121],"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":155,file_corrupt:173,"org\u304c\u30db\u30b9\u30c8\u3092":152,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":121,relationship:[7,13,59,157,55],"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":152,grace:77,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":152,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":155,"javascript\u3067\u5b9f\u88c5\u3055\u308c\u305f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u6a19\u6e96\u3067\u4ed8\u5c5e\u3057\u3066\u3044\u307e\u3059":36,"\u307e\u305f\u540c\u6642\u306b":168,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":93,reus:94,grn_ctx_set_match_escalation_threshold:25,arrang:3,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":147,comput:[40,151,12,122,48,7,18,139,177],toybox:13,grn_hook_entri:93,"\u95a2\u6570\u306e\u8ffd\u52a0":1,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":134,gted:119,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":97,documenataion:135,self:168,also:[55,43,85,132,7,88,119],"keybuf\u306e\u30b5\u30a4\u30ba":113,"\u8a18\u53f7":[70,97],"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":79,lexcon:3,brooklyn:185,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":152,table_pat_kei:[12,95,97,47,100,105,108,151,85,115,59,158,65,46,122,162,125,183,127,179,182,32],cover:[132,32],"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":168,umemoto:27,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u578b\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,ext:90,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":124,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[113,79,121],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":158,microsoft:[77,101],"\u3057\u304b\u3057":[70,45,144],"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":144,cache_limit:[55,31,43,77],escape_charact:84,session:[131,173,128],"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":168,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":1,columnn:7,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":152,solut:[55,38,39],factor:[108,80],"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":70,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":152,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":152,"\u826f\u3044\u306e\u304b":124,mainten:38,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":1,grn_table_cr:113,"table_create\u30b3\u30de\u30f3\u30c9\u306eflags\u30aa\u30d7\u30b7\u30e7\u30f3\u306btable_pat_key\u3068key_with_sis\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":143,column1:[108,69,151,12,125,7,80],"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":69,column2:[108,69,151,12,125,7,80],set:[17,108,165,71,85,14,125,16,7,153,19,77,117,79,129,80,46],"647\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[168,97],showen:2,startup:7,grn_obj_is_selector_proc:77,touch:139,see:[40,55,129,189,43,85,24,132,14,125,16,7,153,188,165,19,20,77,89,80,81],sed:[7,27],sec:19,sea:[90,177],"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":152,juman:165,speed:[27,170,94],"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u8868\u793a":82,mutex:[40,125],"chroot\u74b0\u5883\u306e":152,javascript:[55,152,9,27,157,102],"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":105,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":155,bodi:125,last:[7,77,90,38,16],"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[70,144],whole:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":168,load:[55,43,155,125,7,77,27,112,80],rdiscount:152,"256kib":139,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":147,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"5367431640625e":4,devic:132,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":69,nonexist:[77,108,80],"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,searchu0000http:38,shinya:7,funa:80,func:[40,53,16],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":88,oldvalu:121,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,error:[40,5,7,101,27,189,165,110,14,16,17,121,55,125,77,112,80,129,83,132,153,137,84],rep_gqpt:168,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":180,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":168,user_data:[40,53],grn_table_at:[155,113,79,112],needleess:7,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":16,obsolet:[77,141],n_builtin_type_nam:83,nanosecond:[135,149],x64:[101,152],grn_result_too_larg:2,shorter:114,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":180,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":178,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":11,"org\u306edoc":152,alert:[6,97,8,9,149,80],"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,grn_db_create_optarg:83,stack:125,recent:117,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":60,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":126,person:[55,137],"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,do_gqtp:168,construct:[55,151,43,125,7,77,80],mysql:[165,108,42,12,85,132,162,14,133,32,47,153,170,190,176,129,80],"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":113,parenth:58,grn_tokenizer_error:2,input:[135,108,3,151,125,48,58,170,18,173,27,106,177],format:[40,55,42,43,31,7,106,112,80,119],"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":45,"\u5f15\u6570\u540d":[36,97],"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":70,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u5171\u901a\u3068\u306a\u308a\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":97,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":152,encount:[165,129,14,153,101,137],"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":63,sampl:[22,108,75,183,131,162,96,168,32,47,7,115,100,9,158,10,148,109,175,64,171],"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":93,port_numb:[51,102,173],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":69,"56058502197266e":4,machin:[97,80],keyword_cont:84,"aramaki\u3055\u3093":155,"ongaeshi\u3055\u3093\u304c\u5831\u544a":155,wget:[165,129,24,14,153,189],"gqtp\u306e\u5834\u5408":97,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":113,grn_expr_pars:84,grn_cursor_lt:63,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":70,"1gb":77,"\u884c\u3059\u308b":152,repair:112,"\u5f15\u6570\u3068\u3057\u3066":69,"64bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,pcre:[7,9],span:[162,109,32,47],"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":113,line_numb:135,submit:88,custom:[90,12,46,7,9,27,149,189,108,158,159,65,164,125,77,177,80,81,182,133,32,190,192],suit:[132,32,80],"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":152,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":1,link:[108,182,130,13,7,102,80,151],line:[119,135,20,16,7,101,178,77,27,189,80,81],int8:[13,45,155,125,80],"10000cent":38,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":168,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":152,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":11,element1:[151,85],element2:[151,85],element3:85,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":152,msg_id:152,"char":[40,83,62,123,16,113,79,84,53,80,121],taro:44,musha:77,invalid:[40,108,131,123,125,7,77,27,80,65],"grn_op_and\u306f":69,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":79,lucid:[155,125],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":144,wrongli:27,ago:177,algorithm:[27,75,117],"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":178,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":178,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":152,fresh:114,hello:[46,151,108,164,114,38],code:[55,5,43,135,31,125,7,152,77,88,84,80,119],partial:[77,177,69,173,170],"\u7a7a\u306e\u5834\u5408":[37,107],"\u672c\u8a9e":38,send:88,table_list:[55,43,155,31,7,27],"\u30ab\u30e9\u30e0\u540d1":108,sent:54,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":168,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":93,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":113,"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":56,tri:[185,19],"\u30ab\u30e9\u30e0\u540dn":108,"\u306e\u5834\u5408\u306f":124,"try":[185,97,19,88,38,78,192],"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":152,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":155,"\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":160,video:44,odd:151,"1\u5358\u8a9e\u6271\u3044":144,tomoatsu:[7,155],obvious:13,cenos6:7,let:[55,108,75,23,44,13,85,114,3,78,38,157],ubuntu:[55,81,152,137,20],layout:152,nterm:126,thatn:108,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,greas:13,ctx:[40,41,69,120,83,79,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":11,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":63,menu:[108,101],"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":63,location_str:185,"200byte":32,firefox:119,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":152,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":88,"\u691c\u7d22\u6761\u4ef6\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,zip:[55,152,137],rid_min:120,grn_plugin_get_ruby_suffix:77,doubl:[58,108,90,3,182,94,133,125,7,77,27,151,80,65],upgrad:[7,80,192],next:[44,110,3,132,53,80],doubt:130,"http\u306e\u5834\u5408":97,"\u3053\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u6709\u52b9\u3067\u3059":108,comparison:[7,55],socket_is_already_connect:173,folder:101,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":69,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":168,drill:185,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":155,process:[2,43,97,7,101,9,10,77,55,151,136,14,59,119,22,121,165,125,27,80,182,129,83,132,31,135,153,137,65],"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":144,high:[132,108,159,85],onlin:[55,43],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":113,"column\u306e\u5024\u304c":69,"128515259x503187188":[44,74],defalt:155,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":152,gcc:[165,129,24,125,7,27,189],"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,alloc:[40,17,108,55,16,7,39,82,84,80],essenti:[153,14,9],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":155,seriou:[7,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":168,element:[135,2,3,85,13,32,125,7,80],issu:88,"\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":152,allow:[3,132,32,7,153,102,64],okapi:[122,12],posted_bi:185,"centos\u306e\u5834\u5408":152,movi:44,move:[7,87,101,27],lz4:137,sen_sel_term_extract:42,naist:38,comma:[3,151,130,13,58,77],"2st":108,"\u529b":[8,140],yamaguchi:27,perfect:[122,132],mitsuo:125,hobbi:149,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":69,total:[7,66,126],"\u5de6\u4e0a":1,"\u5de6\u4e0b":1,grn_hook:[55,30,43],murakami:[77,125,80],python:[128,152,20],kisk:7,billiard:[70,144],lzo:[7,27,73,125,80],highlight_ful:[55,161,80,43],"\u3053\u308c\u306b\u5bfe\u3057\u3066":144,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":152,grn_file_too_larg:2,bump:[77,125,80],meta:[7,95],"static":[27,3,80],grn_too_many_symbolic_link:2,"table\u306ecolumn":113,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[82,146,6,72,73,126,8,156,158,160,191,105,37,140,107],"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":155,builtin_type_nam:83,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":88,ngx_http_proxy_modul:9,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":178,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":152,could:[7,13],mxcl:152,outsid:80,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":178,softwar:88,"\u5f15\u6570\u540d1":[36,97],"\u5f15\u6570\u540d2":[36,97],owner:[9,125],"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":152,index_messag:78,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,expnas:176,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":126,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":126,"\u30cb\u30db\u30f3\u30b4":177,licens:[7,42,152,80],system:[108,182,24,132,45,14,97,32,125,114,13,74,9,139,77,27,189,80,151],"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":11,hash_kei:94,grn_table_get_kei:113,termin:[40,97,16,7,9,77,84,53],articles2:78,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":107,itagaki:155,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":70,grn_end_of_data:2,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":111,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":152,"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":169,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":16,correspond:[108,23,154,48,170,18,79,177],"\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":152,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":124,satoshi:80,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":155,source_column_nam:77,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":155,highlight_html:[55,162,161,80,43],thesauru:108,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,oracl:[55,137],"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":134,segment:[7,126,80],"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":168,latin1:[7,189],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":155,grn_cursor_by_kei:63,"\u3067\u3059\u306d":124,brew:[89,20],grn_column_name_score_len:121,fact:[44,108],"\u62e1\u5f35\u5b50\u306f":168,dbm:[132,32],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[113,79,121],borderlin:[142,23],"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":83,bring:3,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":152,nois:[18,38],freq2:48,freq1:48,should:[40,7,101,189,165,108,151,85,14,16,58,18,20,65,173,127,176,81,129,182,35,153,137,190,84],jan:185,articles_cont:78,"\u30b3\u30e1\u30f3\u30c8\u884c":168,familiar:130,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":11,jiro:44,db1:54,db2:54,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,grn_column_t:121,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":97,"hat\u7cfb":152,candidate_1:131,grn_geo_cursor_next:110,candidate_2:131,"\u4e16\u754c\u6e2c\u5730\u7cfb":45,column_renam:[55,43,31,125,112,80],"\u99c4\u76ee\u306a\u4f8b":124,grn_obj_lock:79,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":1,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":152,"\u3066\u3057\u307e\u3044\u307e\u3059":124,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,memri:139,encodiong:151,grn_plugin_expr_var_init:[40,80],max_command_vers:[3,4,82,102,9,173],grn_obj_user_data:118,"ueno\u3055\u3093\u304c\u5831\u544a":147,tld:130,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[62,113,56],"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,grn_type_cr:62,zenigata:44,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,index_friend:44,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,quotat:[90,133],"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":155,insuffici:13,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":63,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":70,grn_obj_unlock:79,grn_cache_clos:17,accident:125,spain:75,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":155,tokenkytea:7,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":168,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bstatus\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":82,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":168,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,ultra:44,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":60,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":53,site:[44,108,3,130,13,136,74,102,158,159,78,80],archiv:[55,189,152,137,119],"_avg":108,grn_ii_estimate_size_for_lexicon_cursor:77,"count\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u305f\u306a\u3089\u3070":82,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,output_column:[7,156,125,80,85],"\u30ad\u30fc\u30ef\u30fc\u30c9":147,expans:[55,108,7,115,27,176,157],"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":79,"dist\u3067\u751f\u6210\u3057\u305ftar":152,grn_obj_get_valu:[27,79],php:[7,152,80,128],expand:[22,55,108,43,125,7,10,175],off:[27,38,9,80],dinam:159,"\u7d9a\u3044\u3066\u30a8\u30e9\u30fc\u5185\u5bb9\u3092\u793a\u3059":108,exampl:[163,132,88],command:[40,17,155,43,55,119,132,85,125,16,7,101,20,104,27,77,189,80,81],ecmascript:[7,108,159,125,151],cutter_check_leak:178,akira:80,value_2:[3,102],orangain:125,web:[44,108,182,154,48,18,9,189],uncontinu:7,end_of_data:173,geo_in_circl:[27,161,125,43,55],"root\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306f\u7ba1\u7406\u30c4\u30fc\u30eb\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u30d1\u30b9\u304c\u6307\u5b9a\u3055\u308c\u305f\u3068\u307f\u306a\u3055\u308c\u307e\u3059\u306e\u3067":36,broken_pip:173,"185428000x":75,dest:[13,180,97],five:[135,3,96],recurs:[108,152,136,9,104,176],"\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":155,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":126,"\u3053\u306e\u3088\u3046\u306bn":70,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3068\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u3068\u306e\u533a\u5225\u3092\u3064\u3051\u308b\u305f\u3081\u306b":143,rep_gqtp:168,resiz:40,grn_plugin_regist:[40,147],"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":97,daylight:80,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":113,avoid:[55,108,39,80,125],hash_index:185,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,"output_type\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066":36,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":27,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":152,stage:80,iwai:[7,112,125],"\u30c6\u30fc\u30d6\u30eb\u306e\u524a\u9664":146,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":70,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":79,event_queri:[154,187,64,18,48,177],virtualbox:152,merg:[7,132,119],"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":97,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":152,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":45,"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":191,"function":[40,55,42,152,43,131,132,135,178,125,16,7,9,77,80],cutter_debug:178,"\u307e\u3060\u89e3\u653e\u3055\u308c\u3066\u306a\u3044\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af\u306e\u6570\u3092\u793a\u3057\u307e\u3059":82,"\u691c\u7d22\u4f8b4":88,"\u691c\u7d22\u4f8b3":88,"\u691c\u7d22\u4f8b2":88,"\u691c\u7d22\u4f8b1":88,sigstop:125,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":155,count:[44,108,23,132,185,77],grn_table_cursor_delet:63,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u306f":45,otherwis:[40,73,3,151,136,17,115,59,100,183,103,96,127,79,171,81],problem:[17,182,13,125,139,7,9,27,77,38,151],yuki:[27,80],"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":152,bigram:[70,168,38,187],"int":[40,17,110,120,4,93,86,16,7,25,113,19,121,62,63,79,84,53,83],updated_at:70,jessi:[55,137],"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":70,againt:108,inc:[77,80],grn_obj_key_norm:113,mizuhara:77,grn_int32_value_float_valu:77,"init\u76f4\u5f8c\u306e\u72b6\u614b":16,nonexistent_command:77,varieti:44,variabl:[40,108,151,24,112,95,125,7,13,173,27,77,176,80],"edge\u306equeue\u306benqueue\u3055\u308c\u308b":134,repeat:[132,119],"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":69,grn_geo:[55,30,43],"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,"string\u306b":69,document_version_ful:152,kanji:38,rule:[108,90,80,54],dbmss:132,"scr\u3067\u3059":168,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":97,"754\u5f62\u5f0f\u306e\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570\u70b9\u6570\u3067\u3042\u308a":45,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"\u6bb5\u843d\u60c5\u5831":121,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":113,spec:[7,27,125],"\u524d\u63d0\u6761\u4ef6":88,secsion:135,editrc:27,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":63,"status\u30b3\u30de\u30f3\u30c9":1,grn_cache_set_max_n_entri:17,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":27,upload:152,msyql:85,unmanag:126,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":72,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":11,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":152,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":113,zunda:27,"\u547c\u51fa\u5074\u3067\u6e96\u5099":41,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":97,lock_clear:[55,31,80,43,107],"\u7de8\u96c6\u8ddd\u96e2":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":121,"obj\u3092unlock\u3057\u307e\u3059":79,aki:80,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":168,"\u9759\u7684\u89e3\u6790":88,"\u3092\u8ffd\u52a0":[27,155],"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":27,request_cancel:[55,31,80,43,35],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":113,highli:[122,28,12],"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":156,column_remov:[55,31,80,43],kytea:[7,90,125,189],search_result:108,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":168,word:[164,176,71,182,12,183,132,159,108,48,7,170,18,185,99,38,177,80,151],exit_failur:5,work:[132,88,152],era:132,cache_hit_r:[3,4,82,102,9,173],"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"16gb":166,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":168,geo_in_rectangl:[55,1,43,155,125,27,161],indic:[75,90,3,125,149],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":168,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":45,basebal:[44,78],"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":113,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u540d\u524d":[55,43],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":152,length:[7,40,13],"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":105,u0000http:38,recogn:132,"builtin_type_names\u306b\u306f":83,ahost1:179,after:[3,5,94,47,7,101,102,77,189,110,151,13,19,20,119,44,164,162,125,27,80,131,139,190,9],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":144,lat:168,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":63,grn_is_a_directori:2,averag:[108,80],"535\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,n_queri:[3,4,82,102,9,173],"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":155,confiugr:139,opaqu:[17,173],grn_fals:79,too_large_offset:173,"groonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3059\u308b\u6642\u306b":36,wgs84geopoint:[44,75,130,13,185,45,74,110,102,27],order:[7,132,125,77],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,offici:[27,129,165,152,115],"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":120,"3\u30ea\u30ea\u30fc\u30b9":77,grn_default_query_logger_set_path:7,flexibl:[132,159,115],"web\u7ba1\u7406\u753b\u9762":1,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":69,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":152,grn_network_is_down:2,grn_unknown_error:2,grn_obj_column_scalar:121,them:[3,12,13,189,165,108,75,85,87,14,58,19,119,73,74,173,77,179,129,182,84,135,153,139,38],thei:[90,4,12,94,47,48,9,10,149,189,54,58,108,151,85,114,122,18,159,22,24,162,170,175,176,177,182,183,133,32,139,38],"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":60,fragment:37,comment_index:185,grn_plugins_dir:77,"break":[7,27,80,61],jinja2:152,deatil:108,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":168,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":144,grn_improper_link:2,"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":88,ruby_load:[55,31,125,43],serach:18,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":178,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":155,network:[7,44,173,54],morpholog:[132,189,38,151],"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":93,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":126,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,standard:[58,45,3,9,173],vector_column:125,sequence_dataset:187,"\u30ad\u30e3\u30c3\u30b7\u30e5\u3057\u3066\u518d\u5229\u7528\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u4f4e\u3044\u30af\u30a8\u30ea\u306b\u5bfe\u3057\u3066\u7528\u3044\u307e\u3059":108,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":134,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":168,regress:[77,125,80],grn_qlog_path:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":168,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":155,"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":178,independ:132,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,169],"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"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":152,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":79,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":152,grn_proc_set_selector:80,john:[171,143],"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":152,tokenfilterstem:[153,14,80],latitude_in_degreexlongitude_in_degre:151,"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,target:[90,47,7,101,103,189,58,108,110,85,17,115,20,65,121,162,27,79,80,83,32,136,84],provid:[141,3,4,12,94,95,97,48,7,9,54,165,75,5,14,16,115,18,179,52,170,176,177,80,81,129,130,131,132,30,153,188,192,102],shuhei:80,minut:[151,185,74,18,149,177],"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":152,grn_text_valu:84,"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":1,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":88,latter:[190,176],indexbuf:121,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":60,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":124,usernam:[44,101],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":178,"http\u30ea\u30af\u30a8\u30b9\u30c8\u306b\u6307\u5b9a\u3055\u308c\u305furi\u306b\u5bfe\u5fdc\u3059\u308b":36,gronnga:170,excut:125,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":124,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":126,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":60,protocol:[165,55,129,2,4,128,132,14,97,33,7,153,188,9,168,36,80,54],"column\u306f":121,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,latenc:168,"\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":152,liblzo2:[153,14],keyword2:[7,162],keyword1:[7,162],grn_obj_key_with_si:113,optimum:9,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":88,awar:40,suffixsearchterm:[182,151],"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":1,languag:[132,88,188],accord:[13,75],hai:69,res_tabl:168,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":113,address_is_in_us:173,ill:144,"\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":158,grn_obj_check:79,grn_ptr_init:[84,16],"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":105,com:[108,190,3,152,130,13,74,102,104,119,81],"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":191,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":152,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":11,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":168,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":53,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":152,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,modifi:[166,189,102,91],"\u672c":38,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":152,macport:[55,137],snippet3:32,enginen:177,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":168,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":113,drilldown_calc_typ:80,"drilldown_output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,inhibit:112,grn_ctx_db:16,gnu:[55,152,137,20],zlib:137,sourceforg:[152,26],grn_obj_prepend:79,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,aio:125,"\u5165\u529b":[6,105,191,107],adisk:179,cond:125,conf:[166,141,9,139,77],arg2_valu:179,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":178,grn_cach:[55,30,43],perform:[108,132,125,77,27,80],"\u307e\u305f\u306f\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":25,warri:137,descend:[77,108,154],"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":155,exclam:77,gurunavi:77,"\u6771\u4eac":[70,144,38],unsupported_command_vers:173,"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":16,hana:44,hang:125,evil:151,hand:[108,183,13,132,115,9,78],"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,thu:[23,91,132,187,99,74,78,64,80,182],o_binari:7,contact:119,thi:[90,3,4,12,7,9,75,13,14,16,17,18,20,23,24,183,27,30,31,32,38,40,47,48,50,54,165,189,58,59,61,65,52,68,73,74,77,78,79,80,81,83,153,88,117,91,95,97,100,101,102,103,106,108,85,115,121,122,162,125,127,129,130,131,132,133,135,136,137,139,142,148,145,149,151,161,163,46,166,173,96,175,176,177,179,182,184,185,186,187,89],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":152,"_score":[3,12,48,7,27,108,75,151,85,154,70,18,60,44,121,122,125,74,77,78,177,185,115],no_such_devic:173,"table_list\u306f":105,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":144,grn_default_logger_set_path:7,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":88,"\u8ad6\u7406\u7a4d":69,grn_ctx_per_db:[27,16],"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":113,arai:77,"\u306ebase_version\u306e\u66f4\u65b0":152,scan_build:178,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":105,grn_op_but:69,night:[114,91],grn_column_name_id_len:121,grn_plugin_command_cr:[40,80],"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":62,normallexicon:190,grn_default_logger_get_rotate_threshold_s:77,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":191,tokenbigramsplitsymbolalphadigit:[167,115,18],grn_obj_renam:79,tasuku:[77,42],"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":144,overcom:23,grn_text_len:84,grn_pvector:[84,16],shift_ji:[189,38],grn_inappropriate_i_o_control_oper:2,repositori:[88,172,152],post:[108,110,152,125,7,77,80],"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":168,obj:[41,79,83,93,126,56,84,53,118,121],comment2:78,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":180,zxvf:152,"\u3068\u306a\u308a":70,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":124,"float":[7,77,108,75,135],bound:80,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":144,grn_ctx:[17,121,43,55,30,7,19],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":88,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":16,coverag:178,accordingli:9,wai:[0,4,130,85,132,159,125,7,115,9,185,88,78,64,80,91],"hiroshi\u3055\u3093":155,conbin:[108,159],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":34,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":121,event_dataset:[64,187],"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":152,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"true":[1,146,3,91,12,6,95,164,47,136,46,145,100,103,10,148,109,127,107,114,108,75,151,85,13,191,58,115,59,156,143,65,22,44,68,23,122,162,72,125,169,73,183,74,171,96,78,175,80,179,182,130,185,32,34,8,190],"\u4e00\u822c\u7684\u306b\u306f":79,maximum:[66,108,23,151,12,13,166,96,173,35,3],inaccur:7,creteria:3,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":1,emit:7,mte:42,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[82,146,6,72,73,126,8,156,158,160,191,105,37,140,107],fedoraproject:129,score1:69,score2:69,resource_deadlock_avoid:173,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":168,"\u8a9e":[126,38],"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":97,test:[165,129,3,178,152,13,185,14,168,7,153,101,9,137,77,78,38,80,102],"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":155,memos_tag:100,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,scorer:[55,156,43,77],outdat:80,tajima:7,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":16,concept:80,masaharu:[7,112,125],"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":124,consum:80,"s3ki\u3055\u3093":155,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":124,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,hubeni:75,value_typ:113,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":168,graph:132,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":6,tracker:88,takiuchi:125,grn_default_query_logger_set_rotate_threshold_s:77,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":97,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":69,"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059original\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u3066":143,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":41,octob:80,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ab\u30e9\u30e0\u540d\u306f":73,administr:[7,55,80],"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":79,grn_obj_unlink:[79,16],"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":152,"4gbyte":66,upper:[27,3,80,65],version:[42,142,4,97,7,100,101,9,103,10,148,77,107,11,151,152,136,14,16,122,116,61,179,22,23,121,24,168,125,82,75,27,127,175,80,182,83,184,35,153,190,38,192],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":11,akihabara:74,"groonga\u3084mysql\u306erpm":152,geoloc:[55,186,80,43],cost:[114,38],admin_html:[27,97],"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":118,tables_buff:16,appear:[108,90,3,176,12,132,32,2,151,38,80,182],"\u7def\u5ea6\u306f":45,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063":124,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,gener:88,satisfi:[58,77,125],minagawa:[125,80],"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":168,redmin:80,table_hash_kei:[108,75,151,12,85,100,136,114,115,171,109,158,96,148,105,190,65],trial:132,"\u305d\u306e\u969b":152,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":97,behav:[131,75],"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":11,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":169,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":63,regardless:77,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":124,"\u691c\u7d22\u7d50\u679c":108,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":178,output_typ:[36,4],freq0:48,mobil:132,"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":155,httpd:[52,17,129,165,152,43,55,14,125,7,153,103,77,27,112,80],grn_dat:27,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":79,"648\u4ee5\u4e0a2":45,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[88,172],key_typ:113,furigana:154,"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":152,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":70,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":178,"_sum":108,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":152,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":79,daiki:[7,27,155,147],prepar:[157,55,9,47,32],grn_table_sort_kei:113,cat:152,grn_illegal_byte_sequ:2,can:[2,3,4,5,7,90,9,10,75,12,13,14,16,17,18,19,20,22,23,183,27,30,32,35,38,40,92,46,47,48,54,165,189,58,59,61,65,44,68,73,74,77,78,80,81,83,84,153,89,0,128,94,95,97,99,100,101,102,103,106,108,109,85,112,114,115,117,119,122,162,125,127,129,130,132,133,135,139,141,143,145,149,151,154,158,159,161,164,166,170,173,96,175,176,177,179,182,185,188,190],clearlock:[7,55,31,80,43],"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":27,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":113,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,topic:88,abort:80,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":97,occur:[73,110,91,154,135,125,16,7,59,139,77,176,80],grn_between_too_many_index_match_ratio:80,multipl:[17,108,90,23,103,55,131,132,95,85,133,125,7,115,100,171,46,77,162,80,182],mpaa:96,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,uptim:[3,4,82,102,9,173],write:[108,142,182,185,97,99,136,179,20,76,78,189,112,80,151],grn_table_select:88,"\u6a19\u6e96\u5165\u529b":[82,146,72,73,126,156,158,160,37],flanc:75,grn_cursor_ascend:63,product:9,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":126,southern:7,uint:7,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":69,"rb\u3092\u8ffd\u52a0":155,grn_too_many_open_files_in_system:2,favorit:119,grn_plugin_log:40,grn_operation_would_block:2,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":126,approv:80,increas:[108,90,85,122,132,75,49,139,145,77,167,38,179],tagger:132,still:[87,125,59,103,80,119],ieee:45,dynam:[112,132,3,9],window:[55,152,137],"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":69,"\u8a9e\u306e":38,non:[135,108,182,125,7,61,38,151],loaded_valu:68,recal:[132,38,159],rake:152,col2:79,col3:79,col1:79,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":113,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,half:190,alisa:115,now:[55,68,43,85,112,73,20,145,165,189,161,80,119],discuss:[0,26],nor:108,introduct:[88,15],drop:[7,27,125,80,77],u0000ful:38,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":105,"\uff4d\uff59\uff53\uff51\uff4c":[162,47],januari:[131,151],grn_encod:[55,30,43],domain:[40,87,95,97,7,59,77,105,79,84,80],replai:9,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":152,"takahiro\u3055\u3093\u304c\u5831\u544a":155,significantli:132,year:[185,96,151,149],grn_socket_is_not_connect:2,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":152,shown:[3,151],"\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":169,space:[40,108,90,3,182,85,132,133,125,48,58,27,38,179],acccess:141,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":168,"\u307e\u305f\u901a\u5e38\u306f":45,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":152,"\u305d\u308c\u4ee5\u5916\u3092\u6307\u5b9a\u3059\u308b\u3068true\u306b\u306a\u308a\u307e\u3059":45,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":16,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":121,grn_db_kei:112,care:[108,23,182,122,95,177,119],"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":152,couldn:7,arnaud:27,"175904000x8464000":75,british:91,grn_ctx_get_match_escalation_threshold:25,directli:[185,151],with_check:[133,80],yourself:137,column_n:183,size:[40,94,95,7,101,9,27,148,165,14,65,66,121,62,125,126,77,80,129,35,32,153,137,139,84],silent:81,bookmark:[158,85],"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":152,friend:[44,88],column_3:183,column_2:183,column_1:183,kenichi:[27,155],"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":11,"\u4e8c":177,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":45,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":69,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":79,than:[66,108,75,85,132,95,159,32,125,154,27,80,65],n_keyword:84,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":144,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5dee\u5206\u3092":168,"32bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":53,browser:[189,102,119],analysi:[132,189,151],grn_column_trunc:[121,80],grn_obj_compress_lzo:121,with_weight:[73,95,80,85],"txt\u306e\u5185\u5bb9":152,recover:[83,61],"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":79,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":105,"\u3059\u308b\u3068":178,begin:[180,38,179],"6813819x139":[13,74],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":97,price:13,renam:[3,94,125,7,59,27],"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":27,"\u3068\u308a\u3068\u3093":[182,151],"6909211x139":74,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":124,host_name_or_ip_address:[102,173],"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":126,"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u3053\u306e\u3068\u304d":144,concurr:149,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":88,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":113,pakcag:165,onli:[40,92,141,2,3,5,94,97,47,7,90,101,9,103,145,151,106,78,54,58,108,109,12,136,13,154,14,17,115,61,179,65,158,165,122,162,114,183,74,171,117,96,28,176,80,81,129,190,182,127,132,32,153,137,119,38],"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":70,"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":69,"\u3050\u308b\u3093\u304c":[182,151],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":155,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":6,overwritten:74,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"128mb":7,allow_pragma:108,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":11,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":169,error_loc:135,"\u3084red":152,"configure\u306e":27,sport:44,"\u304c\u5fc5\u8981\u3067\u3059":152,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":60,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":1,n_like:[135,139,108,182,151],"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":126,between:[55,108,43,97,125,7,59,27,79,161,64,80,65],"import":[90,12,99,7,9,189,54,108,152,85,16,17,65,122,125,27,28,176,182,132,31,38],"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":152,pthread_:125,"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":70,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":83,instroduc:125,nearbi:132,"\u305f\u3068\u3048\u3070":144,tutori:[7,40,80,55],grn_encoding_pars:123,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":152,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":152,grn_too_many_link:2,exploit:132,"debian\u7cfb\u3082\u3057\u304f\u306fr":152,rebuild:77,invers:[122,80,12],"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[41,79],"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":180,emphas:109,rubi:[68,42,152,12,85,132,162,128,47,7,145,159,148,179,80,81],"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":152,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":97,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":79,"edge\u306fctx\u3092\u542b\u3080":134,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":16,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":1,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,grn_resource_temporarily_unavail:2,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":73,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":16,nnede:139,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":73,develop:[132,88],etc:[141,3,152,13,166,7,153,9,139,88,176,54],media:80,epoch:[13,185],document:[132,88,152],do_loc:168,finish:[149,103,5],someon:185,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":126,eito:125,repoforg:[7,129],theater:91,grn_permission_deni:2,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":113,appveyor:80,key_nam:108,"_post":152,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":113,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":155,grn_column_name_scor:121,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":97,"8bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,isssu:125,mmap:[55,39,125],"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":27,desktop:101,"\u30ad\u30fc":97,grn_plugin_proc_get_var:[40,80],real:[132,32,139],swig:42,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":168,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":97,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u51fa\u529b\u4ef6\u6570\u3092\u5236\u9650\u3057\u305f\u5834\u5408\u306f\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u6570\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093":108,invalid_argu:173,benefit:141,cascad:[125,80],output:88,unsplit:[108,69],"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":113,grn_ii_buff:86,"\u51e6\u7406\u6642\u9593":108,logical_filt:142,"146249000x":185,ff9e:190,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[146,6,72,8,156,191,107],name2:151,"\u30d9\u30af\u30bf\u306e\u5024\u3092":155,"615\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,grn_no_such_file_or_directori:2,usage_default_and_custom_scor:12,"table_remove\u306f\u30c6\u30fc\u30d6\u30eb\u3068\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":168,grn_bad_file_descriptor:2,src:[13,153,152],central:185,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":97,degre:[13,27,74,151,85],backup:[83,158],processor:[165,132,129,14,153],unregist:[22,175],"\u53f3\u4e0b":1,"\u53f3\u4e0a":1,"\u305d\u306e\u305f\u3081":[143,152,70,144,168,158],"\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":155,your:[132,88],"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":180,log:[55,152,137],area:132,aren:[92,108,182,94,32,7,9,139,77,80,54,65],start:[40,4,7,101,149,54,108,75,151,114,59,119,23,125,170,27,176,177,80,182,131,135,38],"\u7a7a\u6587\u5b57\u5217\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3068false\u306b\u306a\u308a":45,lot:125,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":168,submiss:[154,18,177,48],"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":169,ealier:7,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679c":108,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":168,"2\u884c\u76ee":168,grn_not_socket:2,"default":[132,137,20],"\u6a19\u6e96\u5165":[8,140],"\u3068\u5171\u306b":121,invalid_seek:173,multibyt:27,pseudo:[55,71,121,43,125,7,80],"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":111,decreas:[77,38],value_1:[3,102],prepend:[151,9,182],valid:[108,3,182,13,94,125,48,7,27,80,151],"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":93,grn_obj_add_hook:93,you:[2,3,4,5,7,90,9,10,75,12,87,14,16,17,19,20,22,23,183,27,28,31,32,35,38,40,92,13,46,47,48,54,165,189,58,59,61,64,65,44,68,73,74,77,78,80,81,83,84,153,88,89,0,91,128,94,95,97,26,100,101,102,103,104,106,108,109,85,112,115,117,119,121,122,162,125,127,129,130,131,132,133,135,136,137,139,141,142,143,145,151,154,158,159,161,163,164,166,171,173,96,175,176,177,179,182,185,187,188,190],string2:111,string1:111,poor:176,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":63,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":79,grn_object_corrupt:2,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,reduc:[141,91,132,125,7,18,94,77,54,179],"n_builtin_type_names\u306b\u306f":83,naoya:[77,125,80],"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":126,"\u3092\u683c\u7d0d\u3057\u307e\u3059":121,drilldown_offset:156,month:[149,44,151,185],"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":152,"4byte":173,articl:78,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":168,zlib_error:173,mechan:[7,9,54],"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":11,veri:[58,108,182,12,44,132,162,32,47,7,94,135,179,177,54,151],"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":121,patsuffix:143,atsushi:[77,80],query_flag:7,masafumi:[125,80],"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":69,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":126,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":41,groonga_dir:152,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":144,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":168,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":152,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":113,learner:[52,55,80,43,187],"\u95a2\u6570\u306f":[34,111,69,169,67],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":126,naoina:[7,125],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":168,too_many_symbolic_link:173,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":180,snippet1:32,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":63,snippet2:32,cve:80,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":93,amount:7,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":63,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":178,score_1:131,score_2:131,hoge:[97,111],famili:[90,151],"1024r":152,"\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":152,"\u30c8\u30e2\u3061\u3083\u3093":44,"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":79,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":152,almost:[27,108,128,139,166],bash:[77,189],"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":144,fulltext:[165,92,108,90,182,115,94,162,14,97,30,47,32,153,151,78,190,129,141,65],"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":1,groonga_vers:27,score_n:131,cutter_dir:152,histori:27,nine:3,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,user_input:151,"grn_rc\u306b\u5bfe\u5fdc\u3059\u308b\u6570\u5024\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":83,grn_db_int:79,phrase:7,string:[40,55,69,79,85,35,123,112,125,16,7,135,27,58,84,53,80],"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":118,anoth:[7,132,108,176,84],spreadsheet:176,snippet:[7,42,32,125],grn_expr_syntax_escap:84,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":152,"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":152,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":97,unlink:84,"\u4ed6\u306e\u30e2\u30fc\u30c9\u3067\u8d77\u52d5\u3057\u305fgroonga\u3068\u540c\u3058\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u7528\u3067\u304d\u307e\u3059":36,allow_column:[108,182],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u307f\u691c\u7d22\u3059\u308b\u305f\u3081\u306b":143,assign:125,grn_table_group:113,egg:78,narwhal:27,logrot:[7,80],akinori:77,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":152,help:[87,137,119],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":155,grn_proc_funct:40,soon:[92,32,54],"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,paramet:[40,41,43,93,7,101,27,56,53,55,110,116,16,17,113,19,25,118,120,121,62,123,125,63,77,79,112,80,83,35,84],"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":155,systemd:7,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":152,"\u5024\u306e\u7bc4\u56f2\u306f1":60,shimada:7,comments_cont:78,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":69,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":168,range_error:173,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":63,sentens:77,"\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u3067\u5024\u304c\u8fd4\u5374\u3055\u308c\u307e\u3059":108,"groonga_org_path\u306bgroonga":152,iff:3,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":152,fulli:[7,9],yito:[7,125],"\u4e3b\u30ad\u30fc\u306e\u578b\u3068\u30ab\u30e9\u30e0\u306e\u578b\u306b\u306f":45,heavi:[108,128],grn_column_nam:121,"\u30b9\u30ec\u30c3\u30c9\u6570":168,"\u30d5\u30a1\u30a4\u30eb":152,todo:[41,142,93,86,56,53,108,110,85,116,16,113,25,161,118,120,121,62,123,150,63,76,79,83,138,133,187,135,57,84],event:54,"\u3080\u308b\u3093\u304c":[182,151],"http\u30b5\u30fc\u30d0\u30fc":[80,55,52,9,43],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":152,proxy_pass:9,publish:[152,80],"\u691c\u7d22\u5bfe\u8c61\u306e":70,trusti:[14,152,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":73,"shutdown\u306f":140,"1\u30ea\u30ea\u30fc\u30b9":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":11,pub:[129,152],asc:152,reason:[108,151,130,166,141,7,61,179,38,177,54,65],base:[141,90,12,47,48,7,9,103,189,165,108,110,151,14,18,64,119,122,162,125,184,177,80,129,182,131,132,32,153,185,192,38,102],grn_ctx_fin:[7,16],put:[182,122,139,77,179,80,119],"groonga\u53ca\u3073groonga":168,rect:[7,75,169],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":168,due:[132,32],interact:[3,173],"\u4fee\u6b63":77,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":11,placehold:125,miss:[125,7,77,27,176,80],"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":113,conditional_probability_threshold:[27,154],station:[92,74,185],"100cent":38,zeromq:189,schema:[12,47,100,148,108,75,151,114,115,18,158,23,122,162,183,109,96,78,179,182,32,187,171,139],"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":155,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,"max\u3068common":63,grep:[153,129,14,165],jqueri:80,"\u4efb\u610f\u306edb\u540d":168,str:84,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":79,"windows\u5411\u3051":152,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"null":[40,90,47,7,105,53,108,110,16,17,65,68,69,162,125,109,117,27,80,32,136,84],"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":113,option:[135,129,165,83,20,24,95,14,125,7,153,117,27,77,189,112,80,89],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":126,lib:[22,141,155,125,9,61,10,175],"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":152,"\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u540d\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,elapsed_tim:[135,149],"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":169,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":178,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":11,grn_snip:[7,80],tokenbigramsplitsymbol:167,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":178,grn_proc_get_typ:80,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,clear:[121,152,7,136,27,79,80],grn_too_many_open_fil:2,clean:[77,178,152],newvalu:121,weight_in_weight_vector:85,latest:[88,26],grn_ctx_t:2,pretti:80,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":152,wanab:125,yml:81,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":11,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":155,grn_connection_refus:2,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":178,"\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":168,grn_get_default_encod:123,grn_obj_compress_zlib:121,remot:[55,97,173,157],"\u68ee\u7530":44,"\u82b1\u5b50":44,grn_hook_get:93,doc_bodi:91,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":152,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":108,grn_obj_is_lock:79,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":70,close:[58,94,162],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":73,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":168,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":73,isob:125,numer:[55,182,157,151],no_locks_avail:173,both:[3,94,101,71,54,165,108,151,85,14,114,122,73,74,173,77,177,179,129,182,185,32,135,153,137,132],grn_range_error:2,geopoint:75,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":1,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[6,97],condition2:151,condition1:151,"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":155,jeff:143,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":113,"000x":119,too_small_limit:173,header:[7,24,125,80,77],"\u623b\u308a\u5024\u3067\u3042\u308b":120,linux:[55,152,137,20],tokenbigramignoreblanksplitsymbol:167,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":168,stamp:[149,18,177,48],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":69,"null\u306a\u3089temporari":83,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":107,grn_table_sort_desc:113,combind:182,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[34,169],grn_table_cursor_get_kei:63,coordin:[13,75],unpatch:42,look:2,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":169,"while":[114,90,132,125,7,136,59],"\u691c\u7d22":[7,55,108,155,21],"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":97,grn_zlib_error:2,grn_column_name_value_len:121,loop:[7,80],pack:137,malloc:80,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":168,readi:[108,151,7,179,20,189,182],readm:[125,152],fedora:[55,152,137,20],belong:[71,130],"xml\u304c\u6307\u5b9a\u53ef\u80fd\u3067\u3059":36,"\u51e6\u7406\u958b\u59cb\u6642\u9593":108,grand:185,octal:151,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":79,src_kei:113,imagin:[108,130],optim:80,grn_set_default_match_escalation_threshold:25,temporari:[7,55,75,97,43],user:[95,47,48,7,101,9,103,149,189,54,108,151,115,59,18,44,23,168,125,170,171,96,77,127,177,80,182,183,131,35,32,135,139,88],"takuto\u3055\u3093\u304c\u5831\u544a":155,bob:[108,182,185,115,59,9,96,127,54],"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":53,older:[77,185],input_output_error:173,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":113,nise_nab:80,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":70,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"56880000x":75,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":152,nginx:[165,129,14,125,7,153,77,80],"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":113,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":124,address_is_not_avail:173,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,grn_table_sort:113,signal:80,resolv:[12,85,122,7,27,28,37],elaps:[151,131,135,149,27,4],"32bit":[77,125],"\u304c\u306a\u3044\u5834\u5408":152,popular:[77,108,97,85],"\u30c7\u30d5\u30a9\u30eb\u30c8":69,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":113,creation:[27,3,125],some:[90,5,26,7,84,103,149,189,165,12,85,115,19,179,161,119,66,164,23,125,77,80,151,182,132,187,135,188,35,139,65,38],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":37,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":168,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[6,8],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,slash:151,"output_type\u3068\u3044\u3046\u5f15\u6570\u540d\u3092\u7528\u3044\u3066output_type\u3092\u6307\u5b9a\u3057\u307e\u3059":36,entry_bodi:73,run:[88,178,152,119],stem:[153,164,14,80],step:[3,13,48,101,179,189,119],"\u3082\u3057test":168,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u305d\u3053\u3067":70,grn_no_memory_avail:2,idf:[122,80,12],"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":120,block:[13,151,9,125,65],libzmq:[153,14],grn_no_space_left_on_devic:2,"93933868408203e":4,grn_expr_append_obj:[69,84],within:[185,74,18,177],ensur:18,grn_obj_key_uint:62,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":152,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":168,askmonti:80,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":113,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":144,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":27,pangolin:[7,14],tokenbigramignoreblanksplitalpha:38,hereaft:132,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":152,newer:[77,80],info:[6,97,122,8,9,179],utc:[135,151],"0xc7":173,utf:[42,4,131,125,190,7,189,38,151],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":11,"column_create\u306f":73,munin:[153,129,137,165],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":69,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":168,"_max":108,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":124,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":152,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":123,grn_cas_error:2,doesn:[40,92,90,91,12,94,95,7,9,103,189,54,108,151,114,59,18,19,65,164,122,125,96,77,176,177,80,179,182,32,135,139,190,38,192],repres:[44,91,13,97,159,179,84,151],"homebrew\u306e\u66f4\u65b0":88,before_instal:81,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":152,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":79,pronounc:159,titl:[44,108,3,182,12,111,13,125,136,122,183,102,158,152,78,130,28,80,151],drilldown_calc_target:80,accross:7,grn_ctx_close:[27,80,16],"root\u306b\u5909\u66f4":155,sigcont:125,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":155,draw:44,"groonga\u5358\u4f53\u3067test":168,"\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":155,"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":79,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":124,eval:145,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":152,kawaji:7,"0\u4ee5\u4e0a65":45,groonga_org_path:152,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":11,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[178,152],"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"146741340x":185,ruby_script:145,friendli:7,nippon:177,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":168,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":144,"\u5185\u90e8\u7684\u306a\u5909\u66f4":152,button:[7,125,119],hemispher:7,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":97,"\u4e00\u5de5\u592b\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":143,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":63,download:[165,129,152,24,14,153,101,189,89],click:108,grn_obj_decr:79,onigmo:[77,80,179],experiment:[142,47,7,103,27,145,17,61,68,23,122,162,125,77,175,112,80,179,83,184,133,32,38],"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":152,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":83,becom:[13,132,42,75],accessor:[77,113],convert:[2,151,13,94,185,190,80],copyright:80,blogroonga:88,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":168,chang:[132,20,125,7,77,27,189,112,80],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":60,danger:[136,59,83,54,121],grn_plugin_mutex_clos:40,"boolean":[55,42,125,182],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":107,query_expand:[22,175,125,10],"drilldown\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306e\u5024\u306e\u7570\u306a\u308a\u6570\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,query_expans:[27,125],"\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":[146,72],soundkitchen:[7,27],mismatch:80,about:[40,0,2,12,92,133,95,97,46,26,48,7,100,9,103,77,145,149,189,127,54,122,55,108,75,151,85,154,14,115,59,18,19,90,20,167,179,161,157,119,163,68,49,23,165,24,166,112,125,73,183,171,117,186,27,28,176,177,80,81,129,182,136,35,31,135,153,137,139,38,89],"23t02":151,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":152,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":155,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":113,"shibuya\u3055\u3093":155,retriev:[132,108,151],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":152,min_siz:63,meet:[185,74,80],mitsuhiro:155,control:[159,7,115,9,96,80],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":169,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":152,sudo:[165,129,152,24,166,14,141,7,153,102,20,139,189,178,89],directory_not_empti:173,grn_domain_error:2,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,tokendelimit:[167,90,48],"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":155,narg:84,"\u6a19\u6e96":[6,105,191,107],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":152,int16:[45,155,125],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":113,decrib:9,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,rakutan:78,otehr:65,normalizernfkc51:49,table_token:[55,31,43],"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[79,121],syntax_error:173,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":69,"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,sysconfig:141,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":155,"\u3053\u306e\u5834\u5408":63,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[113,79,121],grn_plugin_proc_alloc:40,read_only_file_system:173,grn_ctx_set_command_vers:16,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":152,handl:[2,13,94,125,16,9,139,166,77,38,80],auto:[7,154,80],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,succeeded_or_not:[136,59,171,127],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":8,parameter1:9,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":152,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":168,column_information1:95,column_information2:95,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":70,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":1,"\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":82,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":168,chunk:[166,139,126,77],"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":178,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":168,special:[108,2,3,182,162,32,47,125,135,173,90,19,179,189,84,119],groo:[131,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":69,suitabl:[108,12,122,94,97,114,38,80,65],goroo:128,grn_geo_estimate_in_rectangl:[27,110],new_vers:152,"quit\u306f":160,"\u3092\u6307\u5b9a\u3059\u308b\u3068":[63,121],manipul:159,grn_match_escal:[55,30,43],"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":168,latitude_in_msecxlongitude_in_msec:151,keep:[66,114,85,16,17,27,38],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":155,geometri:27,largetext:94,"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":178,grn_cursor_by_id:63,"scorer\u306f":108,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":156,buf_siz:[113,79,121],"groonga\u30b3\u30de\u30f3\u30c9\u306b":155,mkdir:158,attach:[164,190,119],"\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":152,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[70,36,45,168],"final":[40,108,9,5,85],travi:163,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":152,exactli:166,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":1,"20km":185,"groonga\u306f":178,beg:[38,179],sequence_queri:187,extrct:151,stdin:112,concatin:[7,131,125],logs_20150205:23,logs_20150204:23,logs_20150203:[142,23],tabl:[55,69],need:[90,3,4,5,94,97,47,48,7,101,9,103,10,151,77,106,78,54,91,108,189,12,85,16,17,122,18,20,179,65,22,23,24,166,74,173,27,28,176,177,80,81,129,190,182,127,132,133,32,135,38,139,119,84,131],border:[7,90,96],fluent:104,grn_obj_search:56,"0x08":173,"0x04":173,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":155,"0x01":173,"0x02":173,"\u30ed\u30b0\u3092":152,ifexist:58,singl:[108,90,3,85,133,125,58,80],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u95a2\u3059\u308b\u52d5\u4f5c\u3092\u8a2d\u5b9a\u3057\u307e\u3059":108,"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":169,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":152,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":79,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,kazuhiro:125,"\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":36,url:[27,80,54,158],uri:9,grn_table_upd:113,"\u4e3b\u30ad\u30fc\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,fontain:27,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":113,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":63,grn_index_cursor:[55,30,43],"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":180,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,ssssss:149,object_corrupt:173,"146867000x":185,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":152,grn_obj_is_proc_proc:77,launchpad:[14,152,80],"\u3053\u308c\u306f":70,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[105,97],"\u3053\u308c\u3067":152,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":70,"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":11,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":79,enabl:[88,152],"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":152,"masahiro\u3055\u3093":155,gram:[132,90,3,151],"output_columns\u304b\u3089_value\u3092\u524a\u9664":155,contain:132,kawada:80,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":70,orphan:125,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":69,korea:130,"_groonga":97,scorer_tf_idf:12,statu:[55,129,2,43,165,14,31,125,7,153,171,80],correctli:[7,3],wibowo:125,tend:78,written:[22,185,10,20,127,80],benchmark:[52,55,43,125,7,80],grn_retry_max:2,ken:44,kei:[66,58,23,152,55,132,142,85,125,7,113,171,103,63,77,79,112,80],grn_no_child_process:2,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,regular_express:179,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":120,eclips:119,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":70,admin:[155,125,7,77,27,80],jersei:185,"\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":155,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"po\u306e\u5b9f\u884c":88,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":124,cutter_source_path:152,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":79,"\u5185\u8a33\u306f":70,"\u304c\u3042\u308a\u307e\u3059":[36,152],quit:[55,31,152,43],addition:[77,74],cent:38,quiz:44,"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,treat:[92,108,90,23,151,142,125,7,18,77,177,80],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[146,6,72,8,156,191,107],downcas:190,"\u65e5\u672c":[38,177],"\u6709\u52b9\u306a\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u591a\u304f\u30d2\u30c3\u30c8\u3059\u308b\u305f\u3081\u306b":108,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":105,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":113,delimit:[90,13,132,125,48,77,38],drildown:[55,157],main:[153,152],"12gb":166,glossari:81,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":27,longitude_in_msec:151,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":53,demo:44,redcloth:152,welcom:[108,182,87,185,26,151,88,119],grn_table_cursor_t:63,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":70,"\u30ab\u30e9\u30e0\u306e\u578b\u306b\u4ed6\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5834\u5408\u306f":45,speaker:26,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":155,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":156,crch:90,entry_selector:156,"\u4ee5\u4e0b\u306e\u578b\u304c\u7d44\u8fbc\u578b\u3068\u3057\u3066\u3042\u3089\u304b\u3058\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":45,nsubrecs_column:121,http:[97,7,100,101,9,103,189,55,109,152,85,14,158,119,165,24,168,125,77,80,81,180,129,131,132,153,188,36,190,89],"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":152,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":70,effect:[7,58,97,185],"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,rpmforg:129,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":88,well:[23,132,32,125,102,189,9],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":160,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":70,undefin:13,"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":79,lcov:178,distanc:[92,75,151,132,7,74],koi8r:[7,189,97],remove_blank:133,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":79,"log_reopen\u306f":191,bc009774:152,patricia:[55,3,182,94,125,7,77,27,151,157,65],"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":152,grn_ctx_get_command_vers:16,"text\u578b\u3068longtext\u578b\u306b\u3064\u3044\u3066\u306f":45,"\u3067\u533a\u5207\u308a\u307e\u3059":97,logger:7,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":56,int32:[3,12,45,48,7,127,108,75,151,85,154,70,59,18,44,122,125,74,96,78,177,80,182,130,185,115],ryoji:80,pikonyan:44,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":60,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":168,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":126,title_index:12,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":168,dat_kei:94,tomita:155,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":180,grn_file_corrupt:2,necessari:[27,3],"\u4e0b\u8a18":63,page:[7,55,125,26,119],"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":155,lager:125,use_offline_index:112,revers:[55,152],assgin:151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[180,97],"436218z":151,out_http:168,home:[189,38,152],tatsuya:7,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":73,index_column:80,nihon:177,estim:[166,110,77],grn_obj_key_float:62,grn_obj_remov:[27,79],"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"10t13":[18,177,48],win64:101,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":1,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":168,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":126,offset:[40,110,93,7,113,156,63,77,79,84],"blog_body\u7d22\u5f15":70,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":168,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":1,empti:[108,182,95,125,77,27,80],groonga_query_log_path:[125,80],"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":147,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":97,museum:185,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":168,"\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":152,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":97,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,suzuki:7,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":178,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":144,gronga:[170,176],overflow:[13,27,125,80],ear:90,quetzal:7,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":69,fullwidth:77,displai:7,limit:55,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":126,"\u611f\u8b1d":77,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,evalu:[151,182,125,183,145,38,179],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":97,"\u521d\u671f\u5316\u3055\u308c\u305f":16,"aramaki\u3055\u3093\u304c\u5831\u544a":155,eric:96,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":79,blog1:78,blog2:78,new_valu:108,futur:[68,75,23,85,133,125,173,145,27,54,179],rememb:108,halfwidth:190,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":63,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":27,sphinx:[87,15,119,80,20],katagiri:125,table_remov:[7,55,31,125,43],"\u3068\u540c\u3058\u610f\u5473":97,max_concurr:180,"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":181,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":124,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":88,whose:[3,151],accur:[132,32],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":152,grn_io_vers:80,"0x20":182,escaped_queri:84,kentaro:125,swap:139,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":34,"void":[40,83,5,123,113,25,116,19,63,79,112],voic:190,is_anim:13,affect:[7,77,125,80],"\u306f\u7121\u52b9\u3067\u3042\u308a":63,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":155,demerit:94,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":97,correct:[55,43,131,154,7,50,176,177,80],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":169,vector:[55,71,43,125,7,77,27,80],"\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":152,"10m":9,batch:7,"10z":151,"\u30b0\u30eb\u30fc\u30d7\u5316":60,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":168,even:[165,129,23,151,122,132,14,125,7,153,101,137,78,177,80],"\u3064\u307e\u308atest":152,neg:[40,108,2,16,7,19,77,53],spokesman:88,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"\u3050\u308b\u3093\u304c\u592a\u90ce":44,"new":[132,88,152],net:[44,3,152,130,13,26,74,102],ever:125,metadata:[68,12,122,185,7,145,28],elimin:125,behavior:[7,115,38,80,96],never:[77,189,154],"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":168,met:183,grn_log_level:40,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":152,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":79,jame:143,sji:[189,42,97],serch:[154,18],yamada:80,"\u691c\u7d22\u7d50\u679c\u3092\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u6b8b\u3057\u307e\u305b\u3093":108,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":180,grn_expr_exec:[84,16],"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":168,"\u826f\u3044\u4f8b":124,"754\u5f62\u5f0f\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":70,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":70,overhead:[141,80],typo:[125,7,18,27,176,177,80],recommend:[165,108,3,182,141,128,14,129,54,135,153,100,101,102,137,139,179,38,80,151],"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":16,arg1_nam:179,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":116,under:[131,54,9,189,64,80],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":79,warp:80,warn:[108,6,97,125,7,122,8,9,149,112,80,179],"\u4ee5\u4e0b":168,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":70,setup:[119,125,81],neolog:38,akio:[7,27,125],root:[36,97,9,125,102],give:[132,115],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":69,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,max_tp:180,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":88,unsign:[40,2,121,86,17,113,62,63,79,84,53,80],"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":152,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":11,log_level:[55,31,43],n_kei:113,updag:7,config:[1,97,7,101,27,189],grn_arg_list_too_long:2,sitedomain:[102,130],ff01:77,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,permission_deni:173,third:[13,95,108,151],maintain:38,grn_text_printf:80,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":70,romaji:177,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":124,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":152,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":83,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":72,privileg:[102,125],keyboard:108,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":169,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":111,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":53,persist:[55,43,95,113,59,105,65],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":63,anim:44,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":155,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":169,leaner:64,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":152,grn_exec_format_error:2,cache_previ:17,side:[7,132,108],mean:[40,92,2,142,95,97,7,90,9,103,149,3,189,108,106,151,85,13,154,19,23,122,166,125,183,74,110,77,176,177,80,179,182,130,84,136,139,190,38],"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":16,enorm:44,blog_comment_index:183,grn_obj_compar:79,extract:[119,132,32,47,7,183,101,189,84,80,65],"hiroshi\u3055\u3093\u304c\u5831\u544a":155,content:[40,12,95,9,54,108,109,151,114,115,44,164,125,183,173,27,78,80,182,185,32,135,139],rewrit:42,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":63,situat:108,ncpu:89,mdev:77,lzo_error:173,"\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":155,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":16,isk:179,iso:151,"\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":168,wgs84geoppoint:110,cpuinfo:[153,129,14,165],plugin_regist:[55,31,158,43],grn_snip_clos:80,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":70,hook:81,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":168,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":155,sometim:80,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":144,grn_cache_get_max_n_entri:17,iptabl:[102,54],"\u5358\u4f4d":[62,169],"push\u3057\u3066groonga":152,"80ghz":168,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":97,mkostemp:80,"limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,conveni:[23,132,188,27,189,177,192],keyword:[44,108,3,182,12,170,122,162,32,47,125,7,115,78,84,65],"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":97,grn_expr_get_var_by_offset:84,modern:185,mind:66,mine:132,"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":158,regular:[131,55,9,43,77],tradit:[132,80],"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":168,don:[3,4,12,95,97,48,9,27,106,54,17,108,189,151,85,16,58,65,122,173,77,28,176,80,190,182,84,136,137,119,38,102],doc:[91,152,87,20,125,7,9,27,77,112,80,119],"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,doe:[108,3,182,85,13,132,125,7,183,9,61,154,141,151],logyyyymmddhhmmss:131,grn_not_enough_spac:2,dot:7,"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":45,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":124,keybuf:113,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":168,syntax:[55,43,85,125,7,77,84,80],"\u65e5\u672c\u8a9e":177,yoji:27,acquir:19,explain:[13,3],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":1,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":97,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":126,grn_obj_is_function_proc:77,cosmo0920:[125,80],"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,stop:[164,12,122,97,108,125,7,59,9,77,27,28,80],grn_plugin_fin:40,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":152,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":11,attr_setpshar:125,bar:65,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":152,reload:176,bad:[132,125,80],"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":41,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":72,veres:54,all_record:7,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":168,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":45,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":168,old_releas:152,"\u5b9f\u884c\u3067\u304d\u307e\u3059":152,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,subject:125,brazil:130,libgroonga:[163,3],"095\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,grn_function_not_impl:2,simplest:[132,189,12,35],illegal_byte_sequ:173,attribut:[90,109,49,133,167],nfkc51lexicon:190,threasd:97,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":97,"100x150":34,"\u534a\u5f84":169,str_ptr:40,"takuto\u3055\u3093":155,replied_to:185,key_length:173,"\u30af\u30a8\u30ea\u306e":70,string_liter:80,"\u6539\u884c\u6587\u5b57\u306f":97,against:[55,108,83,44,182,132,85,97,48,7,18,157,151,127,84,177,80,121],"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":178,"\u95a2\u6570\u304c\u5f15\u6570\u3092":1,grn_queri:7,"twitter\u7de8":88,grn_op_cal:69,grn_expr_var:[40,53],g721d5c7:82,grn_obj_clos:[69,120,80,79,16],three:[108,75,23,130,85,13,162,125,135,122,59,18,159,3,78,177],"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":152,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":11,"1285858800\u306f2010":70,interest:[88,3,179],basic:[7,132,108,80,55],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":152,suppress:[7,112,80],"2\u30ea\u30ea\u30fc\u30b9":77,multithread:103,servic:[141,132,125,7,18,139,80,81],"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":83,calcul:[92,108,75,131,185,125,7,74,145,80],"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":152,groonga_cli:151,seven:[23,3],datail:108,theatr:91,"key\u3092\u8fd4\u3057\u307e\u3059":79,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":97,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":79,"\u691c\u7d22\u306e\u6319\u52d5":55,receiv:[151,131,132,173,97,16,9,64,119],make:[132,88],column_list_head:95,meetup:77,"_kei":[3,91,12,95,46,48,7,100,9,148,109,127,54,143,108,75,151,85,13,154,58,59,18,60,158,44,164,121,125,183,74,171,96,78,79,177,80,182,130,185,135,139,190,102],zlib1g:[153,14],unicorn:14,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":69,"8byte":173,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":121,inherit:125,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":73,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":97,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,left:110,identifi:171,just:[17,129,189,83,5,165,24,119,14,125,7,153,101,137,77,27,79,80,81],sigusr1:27,"\u6771\u4eac\u90fd\u6c11":[70,144],human:[95,65],"\u73fe\u5728\u306f":[180,168],yamamoto:80,yet:[92,68,23,151,12,122,132,108,125,145,27,54],"table\u304c":113,defrag:[27,31,125,43,55],uint16:[45,125],"worker\u306f":134,save:[131,166,78,152,80],applic:[163,151,132,97,32,54,9,27,176,80],"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":144,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":152,background:97,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":152,nomral:[108,182],daemon:[7,125,80],vdw:[74,3,130],manual:[55,80],grn_obj_expir:79,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":107,mrubi:[68,152,125,145,77,80],unnecessari:139,cxxflag:24,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,intern:[13,32,16,17,125,77,106,112,80],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,insensit:[108,179],"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":144,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":144,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u306f":143,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":69,localhost:[180,4,152,131,168,97,9,103,54,173],range_filt:[55,31,80,43],new_release_d:152,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":8,grn_cursor_gt:63,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":178,promot:125,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":11,postgresql:[132,32],"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":152,update_buffer_s:86,"\u30c6\u30b9\u30c8\u306f":178,grn_ctx_recv:80,commit:[80,119],"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[180,97],meerkat:27,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":25,sphr:[75,169],down:[55,125,80],contrib:152,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":155,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":168,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,editor:119,fraction:[13,132,185],storategi:108,fork:[97,119],grn_content_tsv:106,infom:16,tokenbigramignoreblanksplitsymbolalphadigit:167,form:[108,3,182,131,185,173,159,125,9,51,27,190,102],sub1:108,forc:7,grn_obj_db:83,"4e86e700":166,"txt\u306b\u307e\u3068\u3081\u307e\u3059":152,grroonga:170,"\u5426\u5b9a":69,auth_basic_user_fil:[9,54],"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":158,unrel:27,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":11,classif:130,featur:[90,142,186,97,47,7,9,103,27,108,75,85,154,16,115,61,159,167,65,49,23,162,77,175,80,182,83,132,133,32,119],kwic:32,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":67,grn_obj:[41,110,120,83,43,55,93,86,30,16,7,77,84,80,121],"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":53,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":60,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":34,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":97,tokenbigramignoreblank:167,excel:176,"defrag\u306f":37,"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":152,matur:[141,188,23],escaped_charact:84,faction:185,why:[108,125,141],calc_typ:108,fsf:7,data_set_nam:154,"scr\u306e\u4e2d\u8eab\u304c":168,vmstat:166,ignor:[108,90,83,176,94,133,125,7,171,103,77,27,38,80,182],reply_to:78,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,logs_message_index:179,n_entri:117,"152489000x":185,skip:[77,3,125,80],segv:125,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":37,depend:[132,88],"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":178,marku:7,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,must:[40,3,5,95,48,102,103,142,110,189,54,17,108,109,151,13,154,58,59,61,179,64,65,23,121,166,71,183,171,173,177,80,182,83,131,84,136,139,38],query_str:125,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":27,"0mq":125,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u306f":45,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":152,grn_obj_set_fin:53,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":73,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":152,proc:[40,165,108,93,14,125,153,129,53,118],iter:151,dic:165,item:[141,154,108,48,18,177,54,65],round:27,dir:168,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":113,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":152,strerror:80,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":155,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":168,shinoda:[77,80],"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":67,deriv:[141,64],"\u53d6\u308a\u5f97\u308b\u5024\u306ftrue\u3068false\u3067\u3059":45,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":144,wait:[40,19],box:108,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":60,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":11,grn_true:79,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":158,raccoon:44,"\u306e\u30ab\u30e9\u30e0":[37,107],grn_content_json:106,modul:[132,155,80,55],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":126,result_too_larg:173,sako:77,univers:14,perl:9,nokubi:80,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":73,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,grn_proc_typ:53,"_min":108,"\u5f15\u6570\u306b\u306f\u305d\u308c\u305e\u308c\u540d\u524d\u304c\u3042\u308a\u307e\u3059":36,ooo:94,apper:108,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":69,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":72,grn_plugin_proc_get_var_by_offset:[40,80],commands_column_list:95,tokyo:[74,75],"\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":152,uniqu:[131,103],"\u30d2\u30c3\u30c8\u6570":108,ull:90,"256kb":166,predict:[94,38,65],"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":124,libmemcach:178,grn_no_buff:2,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,normalizs:65,map:[23,166,139,27,149,177],"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":168,max:[17,125,7,27,63,77,80],mac:[55,137],grn_obj_append:79,assigend:182,mai:[163,12,94,95,7,9,103,77,145,189,78,54,151,154,17,59,61,179,65,66,44,68,23,121,122,125,27,28,176,80,182,83,132,133,135,136,139,38],underscor:65,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":45,table_dat_kei:[182,125,105,65,80,151],grn_expr_get_keyword:84,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":144,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":180,"protocol\u30aa\u30d7\u30b7\u30e7\u30f3\u306bhttp\u3092\u6307\u5b9a\u3059\u308b\u3068":36,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":155,talk:[77,125,26,152],feb:23,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":70,pointer:40,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":69,entiti:132,group:[108,132,125,7,183,80],monitor:[153,129,14,125,165],polici:125,"\u5b9f\u9a13\u7684":77,vector_s:[55,161,43,77],resource_temporarily_unavail:173,initi:[40,5,131,16,7,77,27,80],lunch:132,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":1,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":152,"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":152,"\u5fa9\u53f7\u3057\u305f\u9375":152,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":79,massachusett:185,"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":152,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":168,"\u3053\u306e\u7d50\u679c\u306f":168,gzip_typ:54,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":155,continu:[90,97,125,7,18,38,80,81],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":152,unlock:40,nroonga:[115,78,81],"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":178,"3rd":[108,125],compress_lzo:73,"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":11,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":168,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":152,uint32:[3,91,45,7,102,105,127,143,108,151,85,114,59,95,65,44,164,70,125,183,74,171,96,78,80,179,182,130,135,139,190],"\u624b\u7d9a\u304d":53,earlier:[27,127,190],"\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":191,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":62,debootstrap:152,org:[3,101,9,189,165,109,152,85,13,14,158,119,44,24,168,74,102,80,129,130,153,89],prefix_search:[27,154],"128487316x502920929":[44,74],grn_table_renam:113,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":70,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":124,"marverick\u306b\u5909\u66f4":155,frequenc:[12,122,154,99,184,77,80],"grn_op_adjust\u306f":69,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":105,thing:77,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":144,think:[122,28,108,12,151],frequent:12,first:[40,141,3,91,12,95,47,101,9,103,27,189,54,108,151,13,16,65,44,162,125,77,78,176,80,179,182,131,185,32,135,119,38],"295\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":152,"vmware\u306a\u3069":152,key_norm:[114,108,190,3,91,70,185,182,32,7,115,139,78,151,65],fast:[92,90,3,12,94,47,100,71,54,108,75,151,58,65,44,122,162,109,78,179,182,132,32,135,192],crit:[6,8],grn_geo_cursor_open_in_rectangl:110,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":70,workaround:[77,80],"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":60,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":27,memo:[164,12,122,115,100,148,28],key_siz:113,broadcast:185,"value\u304c\u5c5e\u3059\u308b\u578b":105,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,proxy_cache_valid:9,patprefix:143,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":45,longitudexlatitud:125,yoshioka:7,poyonga:128,grn_db_touch:[155,83],were:[75,3],zsh:189,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":1,dash:189,grn_invalid_format:2,properli:[7,77,102,182],katakana:[154,190,38,177],squar:75,timeuot:19,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":168,"256gbyte":66,normal:[55,129,43,165,14,125,16,7,153,106,112,80],beta:42,pair:[108,13,48,170,18,176,177],"143660000x419009000":75,synonym:[108,176,91],grn_default_query_logger_get_rotate_threshold_s:77,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[37,107],"\u539f\u56e0":[55,39],shop:[114,144],lexicon:[55,158,77],"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u3092\u516c\u958b":155,show:[92,1,2,3,4,12,47,7,102,77,51,106,108,75,151,13,58,115,44,23,122,162,125,183,74,171,173,96,27,80,179,182,130,132,133,32,135,185,189,109,38],"\u62c5\u5f53\u8005":152,threshold:137,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":69,black:[92,190],"\u30c6\u30fc\u30d6\u30eb\u540d":[105,37,107],"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":70,"\u30b3\u30de\u30f3\u30c9\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":36,tamano:80,variou:[55,157],get:[40,17,108,90,152,55,132,14,97,46,26,16,7,153,110,117,20,27,189,80,119],"\u3092\u8a08\u7b97\u3059\u308b":1,wheezi:[55,152,137],"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":155,gem:152,"\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":168,"\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":168,tokyogeopoint:[75,45,34,74,110,27,169],median:80,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":1,summari:[55,125,43],wiki:9,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":113,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":70,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":27,"\u30ab\u30e9\u30e0\u306e\u5024\u306f\u3044\u305a\u308c\u3082\u4f55\u3089\u304b\u306e\u578b\u306b\u5c5e\u3057\u307e\u3059":45,sear:177,enci:168,masahiro:[155,125,80],japan:[74,171,102,130,177],therubyrac:152,infinit:[7,27,80,65],enumer:3,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":168,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":113,label:[125,80],enough:[132,78,80,166],"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":97,across:75,parent:[108,9],unknown_error:173,column_vector:[44,108,85,13,185,95,125,73,183,171,148,80],"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":191,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":[36,97],"\u5bfe\u7b56\u65b9\u6cd52":[55,39],"\u5bfe\u7b56\u65b9\u6cd51":[55,39],recrod:108,"\u3088\u3063\u3066":45,dump_plugin:77,"\u5206\u5272":144,grn_expr_clos:84,nogpgcheck:7,"\u3060\u3068\u539f\u56e0\u306f":124,grn_cache_open:17,among:[7,13,44,157,55],grn_obj_delete_hook:93,"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":168,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":168,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,inappropriate_i_o_control_oper:173,cancel:[35,103,80],grn_proc:[55,30,43],"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":152,gnupg2:152,mark:[164,185,112,141,77,190,38,80,65],"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":11,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":86,grn_too_small_offset:2,grn_init:[7,149,5],senboku:125,i18n:[88,15],those:[108,75,3,4,170,24,132,159,182,32,48,13,190,94,151,189,112,54,119],sound:[18,190],hdd:168,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"8\u306b\u5bfe\u5fdc":155,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":97,advantag:[132,141,32],"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":168,brasillia:75,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":168,"1\u3068command":11,pat:[7,112],candidate_n:131,drilldown_result2:108,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":88,drilldown_result1:108,same:[3,12,128,9,103,10,54,108,151,85,13,16,58,115,18,19,22,122,125,74,77,78,179,182,35,135,190,84],speech:[132,38],pai:108,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":144,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":152,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,grn_command_version_st:116,grn_table_dat_kei:113,"64bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,oniguruma:77,montywi:112,grn_address_is_not_avail:2,macro:[27,125,80],markup:87,"drilldown\u7d50\u679c":108,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":16,argument2:[151,12],"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":152,argument1:[151,12],"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":79,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":180,document_vers:152,execut:[90,43,95,46,7,101,103,10,145,105,77,189,55,108,85,154,16,58,59,167,65,22,68,49,23,125,82,171,117,27,127,175,80,132,133,135,136],grn_obj_fin:[84,16],"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":97,monei:44,mcdonald:92,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":120,enable_tokenized_delimit:90,weight2:[7,108,85],"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":79,"\u697d\u3057":[70,144],value_column:121,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":113,evaluated_valu:145,either:[0,108,151,125,96,78,179,182],quantal:7,operation_not_support:173,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":152,ascend:[92,74,3,108,130],testdb:[168,64],"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,confirm:88,table_no_kei:[108,23,182,136,122,162,32,47,114,115,179,171,158,77,105,151,80,65],valuebuf:41,str_length:40,"\u30cb\u30c3\u30dd\u30f3":177,event_typ:187,broken:[83,125,7,136,61,77,27,80,121],regexp:[77,80],"128452975x503157902":[13,44,74,102],"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":97,"_set_valu":112,"x\u306e\u304a\u77e5\u3089\u305b":77,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":155,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":152,"\u683c\u7d0d\u3059\u308b\u30c7\u30fc\u30bf\u306e\u578b\u3092\u533a\u5225\u3057\u307e\u3059":45,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":63,strip:109,"tomita\u3055\u3093\u304c\u5831\u544a":155,yyi:119,"\u540c\u6642\u306b":134,grn_ctx_batch_mod:80,complianc:9,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":168,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":1,"http\u3067groonga\u30b5\u30fc\u30d0\u3068\u901a\u4fe1\u3059\u308b\u969b\u306b\u306f":36,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":79,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":152,arugment1:151,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":168,possibl:27,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":152,embed:[132,97,32,47,9,77,176],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":156,file:[88,152],logo:7,fill:[131,151],again:[114,77,9,80,19],field:95,location_in_groonga:135,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":168,architectur:[132,97,152,80],"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":73,sequenc:[108,182,35,125,48,154,18,173,149,27,177,151],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"6gib":139,konishi:125,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":113,escal:137,unload:7,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":45,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":146,"x\u3067\u306frealloc":155,descript:[108,49,173,182,131,133,95,144,97,125,7,90,9,185,167,151,179,177,80,65],escap:[7,162,84,125,80],"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":155,represent:[123,119,84,85],forget:85,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":1,interpret:[112,182,152],suno:80,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":88,file_too_larg:173,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":93,libmsgpack:[153,14],"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":108,objnam:[37,107],grn_op_and:[56,69],grn_op_or:[56,69],fals:[1,103,152,136,13,45,125,73,115,59,100,183,171,96,143,151,127,162,80,182],"\u3053\u3053\u3067\u3082":70,offlin:[55,43,125,7,77,112,80],util:9,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":155,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":11,sub_filt:[55,161,125,43],hottolink:42,grn_hook_set:93,puropos:90,"\u305d\u308c\u3092\u65e7ji":63,zero:[164,71,85,13,38,108,173,190,176],further:13,"\u3053\u3053\u3067\u306f":70,aba:[74,3,130],abi:77,grn_info_typ:41,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":124,fffe:90,tokenbigramignoreblanksplitalphadigit:38,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":126,"public":80,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":97,tokenbigramsplitxxx:38,grn_table_pat_kei:113,valu:[40,41,2,71,86,7,27,106,53,189,85,16,19,63,121,125,77,79,112,80,132,135],grn_table_setoper:113,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":121,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":191,fff0:38,narrow:[157,55,108,125,80],"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u95a2\u4fc2\u5f0f\u306f":69,commands_table_cr:105,transit:141,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":63,"groonga\u306epackag":152,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":169,establish:[3,173],distinct:[66,131],"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":152,regist:[22,40,23,43,55,132,142,31,125,7,158,77,133],libev:[189,153,14,112],"16bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"check\u30b3\u30de\u30f3\u30c9\u306f":126,"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":97,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":73,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":63,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":178,jsonp:[131,77],desin:141,memo6:12,memo5:12,memo4:12,memo3:12,memo2:12,memo1:12,none:[108,90,133,173,97,46,187,136,9,78,189,65],"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":180,hour:[185,151,19,149],dev:[152,14,125,26,7,153,178,77,27,80],"\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:[149,125,179],paragraph:3,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":155,deb:[152,14,125,7,153,27,80],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":70,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":152,share:[17,23,83,44,132,142,97,125,26,7,9,121,27,78,189,19],shard:[94,142,23,77],"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":69,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":63,minimum:[40,165,108,151,14,129,153],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[34,169],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":88,strlen:40,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":121,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,secur:[55,80,77],"\u691c\u7d22\u7d50\u679c1":108,"13\u7528rpm\u306e\u63d0\u4f9b":155,arg2_nam:179,needl:69,grn_command_vers:[55,30,43],number2:151,number1:151,mariadb:[125,80],associ:[40,44,108,3,13,58,171,27],"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":152,kuriyama:[77,80],spheric:75,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":160,rotat:77,hypertext:[55,157],no_buff:173,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":70,through:[132,9],"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":152,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":88,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":79,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":60,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":113,good:[164,90,182,132,108,114,46,151,78,189,38,119],timestamp:[185,23],"tokenmecab\u3067\u306f":70,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":152,grn_get_lock_timeout:19,grn_obj_vector:[79,84,16],"_valu":[108,60,121,80,125],rank:[3,80],"db\u3068\u306a\u308a\u307e\u3059":83,comamnd:54,easili:80,name_2:[3,102],name_1:[3,102],hard:139,idea:108,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,connect:[3,97,7,188,173,77],rlimit_nofil:[149,125],"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":152,flower:13,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":152,"release\u306e\u5b9f\u884c":88,print:[173,80],foreground:97,definion:151,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":69,entries_content_index:[139,108,182,151],database_path:61,"975mbyte":168,tahr:[14,80],"\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":152,grntest:[7,27,155,152,104],"tokenmecab\u306e\u5834\u5408":70,tritonn:[108,182,151],"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":113,suggest_prepar:[154,18,177,48],"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":124,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":97,done:[17,108,9,80,19],stack_over_flow:173,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":45,stabl:[154,11,80],"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":152,"indexbuf\u306e\u30b5\u30a4\u30ba":121,"5th":108,least:[182,166,7,183,117,77,139],"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":158,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":70,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":70,"libedit\u5bfe\u5fdc":1,grn_plugin_get_suffix:27,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":69,pari:75,selector:7,part:[23,13,132,142,32,135,185,3,189,38],pars:[123,84,80,159],"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":113,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,"\u7279\u6b8a\u306a\u5f15\u6570\u3067\u3042\u308b":36,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":124,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":168,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":144,"\u30c6\u30fc\u30d6\u30eb":107,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":69,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":70,plugin_unregist:[22,55,31,43,77],consol:9,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":72,built:[55,90,43,132,31,125,75,9,189,77,79,133,161],build:[55,152,132,137,20,178,81],"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":152,distribut:[165,129,152,14,7,153,101,137,189,80],"\u30d0\u30fc\u30b8\u30e7\u30f30":77,"\u30d0\u30fc\u30b8\u30e7\u30f31":77,previou:[141,130,12,13,125,7,78,80,179],chart:27,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":67,most:[108,110,3,182,85,13,31,16,54,179,38,80,151],"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_cache_current_get:17,grn_incompatible_file_format:2,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[88,172],groonga_log_level:125,mainlin:[77,80],cas_error:173,roughli:13,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":144,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":55,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":178,carefulli:85,"bom\u4ed8\u304dutf":155,find:[113,164,190,3,132,162,108,32,47,48,154,59,18,101,20,88,189,38,177,119],grn_no_such_process:2,grn_index_cursor_open:120,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":83,grn_logger:7,"http\u3092\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305fgroonga\u30b5\u30fc\u30d0\u306b\u5bfe\u3057\u3066\u3082":36,unus:80,grn_in_values_too_many_index_match_ratio:80,grn_obj_defrag:79,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":180,commands_column_renam:59,restart:[22,139,176,10],"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":168,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":70,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":168,map_hugetlb:27,common:[108,182,94,14,97,7,113,159,63,27,78,151,65],table_cr:[55,108,23,43,85,95,31,7,136,59,171,158,80],grn_api:84,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":113,grn_interrupted_function_cal:[2,103],"status\u30b3\u30de\u30f3\u30c9\u306f":82,lion:7,"\u521d\u671f\u5024\u306f10\u3067\u3059":180,blog_cont:183,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":168,gemfil:7,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":168,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":178,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":156,network_is_down:173,hiroyuki:77,is_stop_word:[164,46,80],simpli:122,point:[40,75,182,85,131,132,125,34,59,100,103,77,27,110,169,112],hideki:[77,125,80],shutdown:[31,23,43,55],"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,weight_in_match_column:85,ran:177,secret:152,indexblog1:78,"\u4ee5\u4e0b\u3067":70,gat:[74,3,130],understand:[108,3,80],convers:[27,9],"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":11,bill:[70,144],"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":144,opear:151,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":126,anonym:94,gb87d9f8:4,everyon:102,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,manner:[108,3],"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":168,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":152,itself:[90,182,85,125,176,80,179],cento:[55,152,137,20],"\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":152,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":69,res2:113,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":70,inv_thread_column:168,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":158,keyr:[7,153],"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":191,usage_multiple_scor:12,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":70,task:[7,132],sortbi:[27,156,125],entri:[146,93,47,107,17,108,151,58,156,162,72,125,73,183,171,117,78,182,185,136,139,37],"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":60,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":168,spend:[182,151],"build\u3092\u7528\u3044\u3066":178,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":67,shape:92,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":168,"\u3053\u306e\u64cd\u4f5c\u306f":113,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":158,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":69,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":152,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u3084\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306f":36,bin:[189,101,20],key_column:121,kashihara:80,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,tokendelimitnul:167,motoi:125,"\u6c38\u7d9a\u7684\u306a":79,bit:[165,108,182,153,24,14,168,129,13,101,137,151,81],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":45,semi:[27,65],groogna_default_command_vers:54,in_valu:[55,161,80,43,77],followe:185,often:96,grn_ctx_set_fin:16,back:[179,9,151],grn_plugin_init:40,sizeof:[77,84,16],"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,scale:[132,54],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":168,per:[23,131,132,7,9,27,38],newark:185,substitut:[108,182,115,151,81,119],larg:[182,13,132,139,7,61,94,77,151,38,54,65],"\u304c\u8fd4\u3055\u308c\u307e\u3059":79,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":107,reproduc:125,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":1,s10:80,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":126,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":147,grn_default_logger_get_path:7,"markdown\u30d1\u30fc\u30b5\u30fc":152,grn_expr_compil:84,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":107,"\u30c6\u30fc\u30d6\u30ebterm\u306b":73,nsi:152,bsd:[27,189,80],errno:[77,80],pair_dataset:[187,48],"647\u30d0\u30a4\u30c8\u4ee5\u4e0b\u306e\u6587\u5b57\u5217\u3092\u8868\u3057\u307e\u3059":45,includ:[90,142,12,95,10,145,3,54,108,151,87,59,22,68,23,122,125,96,77,175,176,80,129,133,32,135,38],score_funct:12,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":34,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":178,str_size:84,translat:88,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":88,concaten:78,default_command_vers:[3,4,82,102,9,173],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":113,remaind:151,grn_tabl:[55,30,43],exit_success:5,no_space_left_on_devic:173,curl:[189,4,131,97,7,9,103,89,54,81],cmake:[7,77,189,101,125],sequenti:[182,77,151,38,80,179],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":69,grn_content_msgpack:106,grn_no_locks_avail:2,"\u30c7\u30fc\u30bf\u578b":[55,75,43,65],libwinpthread:80,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":152,"\u30b7\u30a7\u30eb\u4e0a":168,"output_columns\u306b\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066":108,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":168,"\u3053\u306e\u4f5c\u696d\u306f":152,"tokenbigram\u306a\u3069":70,ellip:[75,169],grn_bulk_vsiz:[84,16],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":1,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":152,getaddrinfo:7,jason:143,"\u5f62\u5f0f1":[36,97],"\u5f62\u5f0f2":[36,97],"\u308d\u3086\u304d":143,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":121,"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":152,sensit:38,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":152,grn_db:[55,30,112,43],becam:[141,80],reference_column:[108,80],"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067":82,fatal:80,db_path:[3,4,128,173,97,102,77,36,51,9],comment_cont:183,"2rd":108,grn_obj_is_scorer_proc:77,"8bit\u7b26\u53f7\u306a\u3057\u6574\u6570\u3067\u3042\u308a":45,"807\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,geograph:[13,75],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":8,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":45,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[37,107],"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":152,"0x0":[13,45,112],object1:151,object2:151,leakag:91,carlo:[59,127],append:[7,84],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":144,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":11,access:[55,108,121,192,132,125,48,7,59,18,9,139,27,119,177,80,19],"32gib":139,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":180,interrupted_function_cal:173,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":79,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":155,vertic:65,sinc:[114,141,75,121,165,13,185,135,97,149,7,151,10,77,127,107,65],"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":126,masatoshi:77,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":181,grn_resource_deadlock_avoid:[2,79],grn_too_large_offset:2,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":97,grn_mecab_chunk_size_threshold:77,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":152,ii_buff:86,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":155,score_function1:12,score_function2:12,score_function3:12,set_token_filt:80,grn_content_typ:[55,30,43],name1:151,account:[26,80],"146607190x":185,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":11,alic:[108,182,185,115,59,9,96,127,38,54],rurema:80,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":152,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,fetch:[78,80,48],abcd:133,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":155,commnad:[11,101],"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":53,msvc:77,users_loc:185,grn_ii_buffer_commit:86,surfac:92,groonga_n_record:125,afr:[74,3,130],"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":73,inst:125,physic:126,"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":63,bind:[163,42,162,159,97,47,7,77,27,81],amazon:108,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":79,grn_geo_select_in_circl:27,"\u6df1\u523b":70,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":155,hiroshi:[27,80,77],replies2:78,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"\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":152,meter:[74,75],report:88,cflag:24,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":113,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":16,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":105,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":169,euc:[97,38,125],"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":168,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":113,tsv:77,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":69,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":97,nvar:53,spell:[176,91],dai:[114,185,23,151,149],dat:[7,112,125],mention:183,rubygem:7,"8\u30ea\u30ea\u30fc\u30b9":[77,152],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":105,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":168,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":152,grn_table_lcp_search:113,"tomotaka_ito\u3055\u3093":27,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":70,column_index:[3,91,12,95,47,100,108,151,85,114,70,158,44,164,122,162,73,183,115,96,78,80,179,182,185,32,139],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":37,"\u306e\u66f4\u65b0":88,normalizerauto:[108,90,162,133,46,47,115,49,77,105,65],"\u3067\u3042\u308c\u3070":168,tokenregexp:179,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":79,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":152,stub:80,rel:[27,108,80],"\u30ab\u30ec\u30fc":144,ref:151,red:88,clarifi:80,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":70,frank:96,test_loc:168,releas:[165,129,101,152],"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":97,groonga_log_path:125,drilldown_xxx:108,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":155,pgp:152,tokenizer_error:173,natti:27,messag:[152,137],"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":70,monkei:13,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":152,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":168,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":1,alloc_count:[3,4,173,97,82,102,9],ipad:[165,38],"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":97,syscal:80,structur:[135,132,44,80,94],charact:[40,108,90,176,132,149,182,97,32,47,125,7,190,133,77,27,151,84,162,80,65],"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":69,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":126,have:[92,141,2,3,192,95,48,9,71,189,54,114,108,106,151,87,154,58,18,65,164,176,80,182,190,83,132,135,13,139,119,38,102],"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":97,min:[7,63,19,80],"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":168,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":121,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":152,mix:[154,38,85],"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":79,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":144,gurun:159,bottom_right:[27,34],eight:3,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":37,"\u6e2c\u5730\u7cfb":45,hardcod:23,"takahiro\u3055\u3093\u304c\u63d0\u6848":155,mail_column:168,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":69,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":178,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":144,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":70,"\u51e6\u7406\u3092\u958b\u59cb\u3057\u305f\u6642\u9593\u306b\u3064\u3044\u3066":108,"grn_bool\u578b\u3092\u8ffd\u52a0":155,bernard:77,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":73,elfr:7,grn_plugin_malloc:40,grn_ii_buffer_append:86,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":70,"\u3082\u691c\u7d22\u6761\u4ef6\u306b\u52a0\u3048\u307e\u3059":143,escaped_str:84,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":83,integr:[7,13,125,81],"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":152,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,malfunct:77,your_new_db:27,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":70,pattern:[151,132,135,77,179,182],"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":178,progress:149,superior:[132,32],"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":168,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":62,plugin:[55,129,165,153,137,104,119],shorttext:[3,91,12,94,45,97,46,47,48,100,102,148,105,110,127,143,122,108,75,151,85,13,154,114,115,59,18,158,95,65,44,164,70,162,168,73,183,74,171,96,78,109,177,80,179,182,130,185,32,135,136,139,190],"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":16,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":126,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":116,equat:75,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":144,comment:[183,78,176,125],grn_update_not_allow:2,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":93,log_repoen:7,test_str:178,"hook\u306e\u5b9f\u884c\u9806\u4f4d":93,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":97,"\u52c9\u5f37":38,json:[85,155,7,27,106,80],grn_obj_table_no_kei:[63,113],grn_table_group_flag:113,grn_ii_cursor_set_min_en:77,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":178,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":97,"\u4f8b\u3048\u3070":[143,70,168,144,97,79],bulk:84,multi:[132,9,77,27,189,80,192],"\u771f\u507d\u5024\u3092\u8868\u3057\u307e\u3059":45,res_column:168,defin:[3,151,187,114,173,77,176,177],buildabl:27,replies_cont:78,howev:132,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":178,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":88,kernel:[7,139],caplit:[125,80],grn_plugin_mutex_open:40,power8:80,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":168,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":73,too_many_open_files_in_system:173,japanes:[0,182,132,26,7,151,38,177,80,119],"pc\u306bgroonga":147,auth_bas:[9,54],utop:[14,152],optarg:[56,83],hostnam:[168,97,7,9,36,173],"\u884c":178,column_nam:58,grn_column_name_key_len:121,document_index:[162,47],francisco:75,"\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":152,content_index:12,center:[132,169],builder:86,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":152,choos:[108,13,97,58,9,38,80,179],error_cod:40,update_not_allow:173,"1byte":173,usual:[13,78,64,16],unari:125,"5\u30ea\u30ea\u30fc\u30b9":77,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":178,takayuki:27,gmo:80,"30ac":190,lake:92,add:88,"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":152,grn_ctx_at:[7,16],match:137,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":126,grn_obj_table_pat_kei:[63,113],"\u3067\u306f\u306a\u304ffree":155,grn_obj_path_by_id:[79,112],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":83,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":79,substit:108,"\u8ffd\u52a0\u306e\u5c5e":73,insert:[7,3,32],like:[92,128,95,97,26,9,189,54,55,108,75,151,85,154,59,157,159,121,122,183,77,177,80,179,182,130,185,38],success:[40,83,5,16,17,84,121],groongau0000ful:38,grn_obj_id:79,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":79,"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":45,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":155,"com\u304cedge\u3092\u4f5c\u308b":134,socket_is_already_shutdown:173,soft:139,snippet_html:[55,43,125,7,161,80],normalizer_list:[55,31,80,43],"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":158,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":69,specfi:110,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":158,proper:[135,185,23,80],grn_column_cr:121,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":168,tmp:[3,152,131,154,95,97,125,59,102,105,179,176,54,173],"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":168,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u5f62\u5f0f":36,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":70,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":70,"repositories\u914d\u4e0b\u306b":152,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":70,host:[168,97,173,27,81,102],although:9,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":152,"\u30c0\u30e1\u30fc\u30b8":70,sbin:89,actual:[23,12,13,142,125,9,3,80],socket:7,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":16,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":121,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":168,"mooz\u3055\u3093\u304c\u4fee\u6b63":27,lifecycl:81,"\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":[88,172],tomo:44,discard:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":168,groonga_path:168,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":69,dataset:[52,55,125,43,154],"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":70,guard:122,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":152,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":70,ayumu:80,conbind:182,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u7d50\u679cn":108,rch:90,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":11,hatak:[77,80],"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":60,glib:125,unexpect:[7,80],"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":1,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[88,172],"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":45,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":121,uninstal:7,bug:88,grn_obj_set:79,dump_record:77,binlib:152,"point\u578b\u306e\u5024":[34,169],tokenmecab:[7,167],"\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":156,epel:[7,129],"shimada\u3055\u3093":155,colum:[139,78],dure:[7,3],pid:[27,1,189,97,77],saer:[154,18],grn_too_small_limit:2,implement:[68,42,23,151,128,122,94,108,7,75,9,77,145,27,192,80,119],pip:20,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":113,probabl:154,"\u305f\u3060\u3057":[63,36,144,60,97],detail:[40,141,90,3,95,7,9,10,149,189,165,108,151,85,13,14,115,65,22,46,168,125,74,77,175,80,179,129,182,130,132,153,188,35,139,88,119],virtual:125,comment_nam:183,grn_expr_create_for_queri:69,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":168,is_a_directori:173,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,120],grn_obj_flag:[40,62,113,84,121],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":140,sergei:80,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":69,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":70,"\u6539\u826f":77,"\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":152,tweet:[114,26],umask:80,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,concret:[44,78,130],"\u554f\u984c\u306fgroonga":168,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":63,everi:130,risk:80,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":88,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":97,"24byte":173,grn_encoding_to_str:123,not_a_directori:173,x86_64:[129,152],properti:[149,14],naiv:130,not_enough_spac:173,direct:[7,125],"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":121,aim:125,hide:125,introspect:7,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":73,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":79,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":69,"82pre":42,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,grn_tokenizer_query_open:7,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":178,studio:[7,77,101,125],path:[152,137,20],"\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":155,httprewritemodul:9,"\u95a2\u4fc2\u5f0f":88,functin:151,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":113,precis:[135,3,152,132,14,7,38,177],"\u306e3\u30d5\u30e9\u30b0\u306f":63,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":147,orilldown:130,portabl:[27,9,125],"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":69,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":79,describ:[40,0,90,3,12,92,133,95,97,46,48,101,50,103,145,142,189,127,165,108,109,151,85,14,58,122,59,18,117,61,20,179,161,65,163,68,23,24,52,186,183,173,78,176,177,80,81,129,190,182,136,185,30,31,135,153,137,139,88,119,38,89],noarch:[165,129],"groonga\u306e\u7d44\u8fbc\u578b\u304b":73,namebuf:[79,121],autogen:[7,152,119],"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":45,"msg\u306fcom\u306b\u3088\u3063\u3066":134,chracter:[190,32,65],"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":69,"grn_op_but\u306f":69,grn_obj_with_sect:121,join:26,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":144,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":169,overrid:189,enourm:48,dump_schema:77,end:[180,75,151,182,179,38,4],eng:[154,177],vagrant:152,hiragana:[177,38,182,151],env:176,rroonga:[12,183,162,125,47,17,115,100,159,148,78,80,81],grn_content_non:106,tablenam:11,grn_set_default_command_vers:116,befor:[22,108,3,5,85,13,112,7,170,18,9,179,10,189,176,177,117],xcode:89,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":11,parallel:132,exclud:[58,142,125,7,158,96,23,80],environ:[129,112,125,101,9,137,77,27,189,176,80,81],enter:[3,125,173],composit:190,over:[132,162,125,7,102,166,77,80],"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,becaus:[141,3,4,12,128,94,48,7,100,9,10,54,91,165,108,151,13,114,115,59,18,65,22,44,164,23,122,73,170,173,96,77,78,176,177,80,179,182,183,131,132,32,135,139,190,38,192],london:75,gqtp:[180,55,129,2,165,132,14,97,125,33,7,153,188,168,77,80],"\u304bwgs84geopoint":[34,169],digest:54,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":120,"\u8aac\u660e":[55,43],"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":11,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":155,oneir:[27,125],"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":69,choic:132,grn_pat_at:155,each:[90,142,12,94,95,48,149,9,103,77,3,189,108,151,85,13,154,58,115,18,167,44,49,23,166,162,125,173,27,99,177,130,131,132,137,35,84],searc:177,"0\u30ea\u30ea\u30fc\u30b9":77,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"groonga\u306e\u30ab\u30e9\u30e0\u306f":45,goo:[182,151],msgpack:[4,54,173],"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":11,newli:[114,132,32,17,127,80],"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":111,got:[125,80],"\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u5229\u7528\u3067\u304d\u307e\u3059":36,"\u69cb\u9020\u4f53\u306e\u914d\u5217":53,"offset\u306f":113,"\u30d1\u30b9\u914d\u4e0b\u306b\u7f6e\u304b\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u51fa\u529b\u3057\u307e\u3059":36,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":126,filter:[55,43,85,14,125,7,153,171,156,77,27,80],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":152,"16gib":139,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":168,score_column:121,onto:139,rand:[55,161,43],rang:[55,108,71,95,125,7,59,77,80],"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":63,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":152,edit_dist:[55,1,161,43],restrict:[7,102,54,125],alreadi:[40,114,90,3,58,19,139,78,64,80],"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":79,primari:[55,3,130,44,13,58,157],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":124,"\u3092\u4f7f\u7528\u3057\u307e\u3059":152,"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":79,top:[110,130],mercuri:152,too:[108,151,85,13,125,77,78],tom:115,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[88,172],"\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":152,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"path\u3092":155,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":126,tood:40,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":158,tool:[55,81,137,20,15,119],"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":105,user_ag:96,wareohji:7,grn_obj_set_valu:[63,79],ga54c5f8:168,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":27,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":152,expr:84,obata:[27,155,125],"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":69,blog_bodi:70,rab:[74,3,130],indexblog2:78,"column_list\u30b3\u30de\u30f3\u30c9":1,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":105,ram:168,raw:[125,81],"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":70,with_sect:[73,185,78,95,80],unresolv:27,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":144,hanako:171,bad_file_descriptor:173,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":152,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[113,121],fuzzi:65,though:[23,132,125,7,78,177,80],"\u3044\u307e\u3059":124,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":168,grn_db_recov:[83,80],"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":113,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":69,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":168,mininum:141,flow:88,abbrev:75,radix:151,"0\u30d9\u30fc\u30b9\u3067":[63,113],abl:[122,28,32,12],random:74,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":11,pkg:[129,24,155,7,27,189],"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":158,"\u3067\u4f5c\u6210\u3057\u305f":16,"\u3082\u3057\u304f\u306f":[63,45,113],absolut:[22,175,10],top_left_point:110,configur:[88,178,152,119],"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":152,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":79,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":168,"\u542b\u3081\u308b\u3082\u306e":152,item_queri:[154,18,177,187,48],label1:[108,80],label2:108,watch:152,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":97,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,normalized_text:133,reconstruct:80,"\u4e3b\u306bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":82,method:[3,125,9,77,38,177],twice:[108,182],hendro:125,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":11,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":155,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":180,"drilldown_limit\u306b\u3088\u3063\u3066\u6307\u5b9a\u3055\u308c\u305f\u6761\u4ef6\u306b\u5f93\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":108,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":25,"\u30c7\u30fc\u30bf\u3092\u8ffd\u52a0\u3059\u308b\u969b\u306b\u5f8c\u65b9\u4e00\u81f4\u7528\u306e\u30ec\u30b3\u30fc\u30c9\u3082\u8ffd\u52a0\u3055\u308c\u3066\u3057\u307e\u3044\u307e\u3059":143,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":152,nul:[40,27,38],"\u5143\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u52a0\u3048\u3066\u81ea\u52d5\u7684\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u307e\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3057\u307e\u3044\u307e\u3059":143,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,grn_plugin_error:40,databas:[163,94,95,97,7,9,10,105,189,55,151,113,16,17,59,61,159,167,58,64,65,22,49,158,125,27,79,80,182,83,131,132,32,187,136,139,190,192],"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":168,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":79,no_such_file_or_directori:173,algolithm:159,approach:75,exec_format_error:173,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":97,weak:[132,32],grn_invalid_argu:[63,113,2,79],fault:7,"4gib":[94,173],facet:108,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u79d2\u5358\u4f4d\u3088\u308a\u8a73\u7d30\u306a\u65e5\u6642\u3092\u6307\u5b9a\u3059\u308b\u306b\u306f":45,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":152,trust:152,id_column:121,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":97,evalud:145,been:[59,152],"\u3072\u308d\u3042\u304d":143,accumul:108,geo_distance2:[27,75],geo_distance3:[27,75],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":152,quickli:114,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":160,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":1,msec:[27,19],xxx:[97,125,80,151],"767\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":121,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":168,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":1,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":144,"grn_op_or\u306f":69,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":88,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[113,121],message_index:122,suggest:[55,43,155,31,125,147,7,77,27,189,112,80],"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":155,complex:[7,108,179,125,151],unix_time_when_command_is_start:135,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,niku:80,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":53,complet:[22,55,43,131,154,125,50,10,27,175,112],"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":113,sen_index_delimit:42,"44001770019531e":4,"\u30b3\u30de\u30f3\u30c9\u540d":[36,97],quotient:151,"groonga\u306b\u306fhtml":36,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":152,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,geosit:44,"\u5024":97,no_such_process:173,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":134,els:[77,80],grn_column_name_valu:121,"command_version\u306f\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u6307\u5b9a\u3057\u307e\u3059":36,ceekz:125,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":63,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":69,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":121,"mooz\u3055\u3093":27,unstabl:112,poedit:119,el5:129,escaps:[162,32,47],"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,log_reopen:[6,55,8,31,43],grn_obj_is_t:77,grn_plugin_mutex_unlock:40,"\u7d44\u8fbc\u95a2\u6570\u306f":[181,34,111,169,67],"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":155,"\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":152,line_cont:135,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":152,core:[131,132,168,9,189,192],"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,surround:[7,162,32,47,151],dinner:132,ppa:[55,152,137],"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":41,"\u578b":62,encod:137,two:[0,92,141,90,3,95,48,100,9,149,54,165,108,75,14,16,115,18,64,65,44,125,73,183,74,77,78,80,179,129,182,130,84,133,32,135,153,185,190,38,192],"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":27,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,version4:11,git:[104,152,119],version1:11,version2:11,version3:11,"\u30d0\u30fc\u30b8\u30e7\u30f3":152,"256gib":66,head:[180,108,9,80,173],medium:[165,129,185,14,153,101,137],"\u65e5\u6642\u3092\u8868\u3059\u578b\u3067\u3042\u308a":45,removep:79,drilldown_sortbi:156,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,deafult:27,grn_expr_estimate_s:77,autoconf:27,grn_expr_syntax_escape_queri:84,trie:[55,3,182,94,125,7,77,27,151,157,65],decrypt:152,bad_address:173,check:[55,2,83,43,135,155,31,125,7,178,77,104,27,79,152,80],ongaeshi:[7,77,125],"clearlock\u306f":107,successfulli:[40,3],"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":126,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":69,"\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":168,when:[3,128,97,7,100,9,10,77,108,75,85,154,58,115,20,179,65,22,44,121,125,73,183,109,173,27,177,80,182,83,131,132,135,185,88,190,38],groonga_dist:7,"key_with_sis\u30d5\u30e9\u30b0\u3092\u4ed8\u4e0e\u3059\u308b\u3068":143,tid:120,saerch:[154,18],rid:86,node:[7,77,129,152,81],"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,grn_op_and_not:56,consid:[44,141,23,91,54,78,80,65],sql:[108,23,130,12],faster:[128,125,27,189,38,80],top_left:[27,34],"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":60,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":144,backward:[7,127,80,54],grn_obj_table_dat_kei:27,"6\u30ea\u30ea\u30fc\u30b9":77,grn_db_float:77,focus:3,llt:90,memo7:12,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":169,row:[132,32],"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":73,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":152,readabl:[112,80],"\u554f\u984c\u3042\u308a":27,jumand:165,sourc:[55,152,87,137,20,119,81],"\u306b\u8a2d\u5b9a\u3059\u308b":152,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":168,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":120,"6elz":80,"\u3092\u8fd4\u3057\u307e\u3059":[63,93,113,79],"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":60,level:[40,130,6,97,125,7,8,9,149,64,80,173],brother:182,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":121,slower:[122,75,130,12],"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":126,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3059\u308b\u578b":45,port:[141,42,4,131,168,173,97,125,80,102,36,89,54,9],repli:[185,78],arg1_valu:179,"sh\u306e\u307f\u306a\u3089\u305a":178,grn_expr_append_const:[69,84],"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":180,"\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3057\u307e\u3059":82,connection_refus:173,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":152,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":79,grn_not_a_directori:2,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":152,normalizeauto:162,"\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u95a2\u4fc2\u306a\u304f\u5e38\u306b\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u6570\u306b\u306a\u308a\u307e\u3059":108,"benchmark\u304c\u52d5\u4f5c\u3057":168,"1st":96,grn_table_cursor_clos:63,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":111,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":73,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":11,grn_obj_clear_lock:[27,79],file_exist:173,vivid:[77,14],memori:[40,17,129,155,55,14,73,125,16,7,153,101,137,165,27,179,80,65],"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":152,todai:132,"\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":168,criteria:3,capit:3,target_charact:84,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":155,proxy_cache_path:9,entries_key_index:[139,108,182,151],lc_messag:119,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":169,purpos:[23,85,125,115,102,3],"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":155,stream:80,backslash:[84,125,182],critic:[7,40,189,97,149],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":[55,157],satoh:27,alwai:[108,173,182,132,95,135,154,9,139,77,177,80,151],grn_table_update_by_id:113,grn_plugin_isspac:40,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":144,clone:[104,88,152],"4th":108,"0\u4ee5\u4e0a18":45,key_with_si:[143,151,182,65],"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":155,ueno:[7,27],predic:77,inform:[22,17,68,149,55,132,44,108,26,125,7,10,145,77,190,112,95,157,119],combin:[108,132,7,115,96,80,65],"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":70,midnight:151,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":168,mainli:[185,80],"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":93,platform:[137,119],meridian:75,cutter:[178,152],"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":1,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":34,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":152,"\u6b21\u306b":69,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[156,97],"output_type\u306b\u306fjson":36,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":79,term:[66,73,108,182,126,132,162,97,32,47,125,7,115,77,80,46],name:[40,95,7,53,55,16,113,119,121,62,123,72,125,73,126,27,79,112,80,83,132,135,84],"\u65e5\u3005":124,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":97,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":63,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":69,no_memory_avail:173,request_id:[35,103],osanai:80,grn_itoh:27,grn_bool:79,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":155,end_tagn:162,"base_version\u306ftar":152,"groonga_clone_dir\u306b\u3066autogen":152,profil:185,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":73,compress_zlib:73,"65535byte":77,partit:23,migrat:[108,182,80,151],"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":69,ruby19:7,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":16,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":97,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":168,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":152,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":108,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":79,place:[185,189,26],sho:[125,80],"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":105,origin:[108,125,135,188,158,106,80,119],"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":70,redhat:[27,189],arrai:[135,108,49,182,85,95,133,32,7,126,90,167,27,80,65],"64kib":77,string_siz:84,given:[7,44,125,115],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":152,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":27,domain_error:173,circl:[132,92],"32bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,white:[38,3,182],"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":120,grn_table_add:113,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":178,copi:[7,40,59],specifi:[40,90,142,95,97,46,7,9,103,10,145,71,189,53,55,108,110,85,154,16,58,59,158,64,65,22,119,68,23,125,73,171,117,96,77,127,175,112,80,83,131,132,133,187,135,136,37,89],"\u30d1\u30a4\u30d7":73,github:[0,73,190,152,125,7,77,104,27,119,80,81],enclos:[58,3],pragma:108,calro:96,wide:[27,189,3,179,132],"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":79,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":155,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":38,grn_table_cursor:[55,30,120,43],"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":60,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":152,posix:[77,151],posit:[40,108,2,3,110,85,95,46,90,38,80],grn_column_index:121,seri:3,"808\u4ee5\u4e0a9":45,ann:152,ani:[90,12,97,46,47,9,145,189,54,108,154,58,115,68,162,183,77,176,129,182,132,133,32,38],grn_unsupported_command_vers:2,grn_obj_set_mask:79,techniqu:[122,12],operation_timeout:173,moreov:74,"\u691c\u7d22\u7d50\u679cn":108,"\u306b\u306a\u308a\u307e\u3059":16,sure:3,multipli:151,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":178,geoindex:44,time_column:168,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":69,"com\u306f1\u30b9\u30ec\u30c3\u30c9":134,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":97,grn_table_cursor_set_valu:63,"textile\u30d1\u30fc\u30b5\u30fc":152,permiss:[189,80],sitecountri:[102,130],explicitli:[7,9,20],"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[70,144],state:[7,75,173,171,128],analyz:[7,27,38,9,132],grn_obj_column_vector:121,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[55,39],"\u3092\u6307\u5b9a\u3057":[63,37,107],"45ea3034":149,ssh:152,takatsugu:80,"\u8a73\u7d30\u306f":[70,36,178],pipermail:80,reveal:132,"\u542b\u3081\u306a\u3044\u3082\u306e":152,tokenfilterstopword:[77,46,80],grn_geo_select_in_rectangl:[27,110],"shibuya\u3055\u3093\u304c\u5831\u544a":155,"\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":152,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":79,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":113,"ongaeshi\u3055\u3093":155,"\u30d6\u30fc\u30ea\u30a2\u30f3\u578b\u3084\u30d6\u30fc\u30eb\u578b\u306a\u3069\u3068\u547c\u3070\u308c\u308b\u578b\u3067\u3042\u308a":45,"\u8b66\u544a\u3092\u9664\u53bb":155,detect:[7,27,90,9,189],"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":124,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":152,grn_query_expander_tsv_synonyms_fil:176,grn_db_register_by_nam:147,"59\u74b0\u5883\u306b\u304a\u3044\u3066":27,come:[92,185],"\u63a5\u7d9a\u3059\u308bgroonga":168,region:[92,74],quiet:173,grn_default_logger_set_rotate_threshold_s:77,reference_vector_column:125,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":70,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":70,"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,color:190,whombx:125,period:77,pole:75,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":79,grn_ctx_use_ql:80,"ueno\u3055\u3093":[155,147],lexicon2:78,item_exampl:177,log_put:[6,55,31,43],"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":152,frequency_threshold:[27,154,18,177,48],"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":155,"s3ki\u3055\u3093\u304c\u5831\u544a":155,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],not_socket:173,grn_command_version_max:116,"case":[40,83,85,125,16,17,77,27,189,80],"\u3042\u308a\u307e\u305b\u3093":[82,105,191,140,160],cast:[7,27,112,125],grn_db_open:83,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":69,favorited_bi:185,grn_expr_alloc:84,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":69,"define_selector\u306f":156,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":113,query_s:84,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":152,saerc:[154,18],"4\u884c\u76ee":168,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":121,author:9,alphabet:[108,90,18,38,80,65],users_index:185,grn_get_default_match_escalation_threshold:25,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":69,grn_cursor_rk:63,"\u5f37":38,expresss:159,messagepack:[189,7,77,27,106,112],status:[2,173],nest:[55,125,7,80,77,157],"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":97,"\u6587\u5b57\u5217\u304c\u8fd4\u3055\u308c\u307e\u3059":108,"_nsubrec":[44,108,121,130,185,60,80],"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":27,immedi:[132,9,103,77],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[88,172],"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":63,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,113,169],overcommit_memori:7,without:[142,48,7,9,10,108,151,85,114,115,22,23,125,183,117,77,112,177,80,179,182,132,32,192],model:[97,173,80],"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":155,"4kib":77,"\u3067\u78ba\u4fdd\u3057\u305f":16,"groonga\u3092build\u3059\u308b\u969b\u306b":82,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":63,rose:13,except:[165,92,68,90,182,85,94,108,32,7,100,9,139,145,27,179,38,80,65],blog:[55,108,182,152,70,114,183,78,157,151],vulner:80,hino:125,hyphen:[3,65],grn_obj_nam:79,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":97,grn_table_cursor_open:[63,155],realtim:[154,48],with_typ:133,madrid:75,grn_rc:[40,41,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],unrecover:83,micro:[13,55,151,157],grn_cache_current_set:17,freed:[17,80],garbag:[27,125,80,126],inspect:[77,125,80],n_tabl:16,tokenbigramsplitsymbolalpha:[167,108,90],"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[79,121],"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":83,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":155,stand:128,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":152,tokentrigram:[167,90],max_siz:63,libmecab:[153,14,152],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":126,rescord:159,strict:[77,80],interfac:[7,131,3,4],chracterist:94,regard:[125,182],jun:[77,80],grn_obj_key_var_s:62,untag:109,longer:[42,16],notat:[7,125,151],"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":79,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":11,grn_expr_creat:84,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":152,"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":155,strongli:[165,129,14,153,101,137],"a\u3092\u6307\u5b9a\u3057\u3066tabl":113,user_column:168,incorrect:80,grn_db_text:84,grn_index_cursor_next:[120,125],gettext:[119,20],orient:[13,132,32],rdbm:97,oneself:80,symbol:38,remove_tokenized_delimit:133,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":168,allow_upd:[108,182],comments_loc:185,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":124,directori:[40,131,125,7,9,77,27,189,176,64,80,119],potenti:125,"\u30c7\u30fc\u30e2\u30f3":97,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":16,all:[90,3,91,94,95,68,48,7,9,10,145,149,77,189,54,114,108,110,151,85,190,16,58,59,158,159,65,22,164,121,46,173,96,27,127,177,80,179,185,182,132,136,35,139,119,38,117],grn_table_column:113,dist:152,"ctx_new\u3068\u3044\u3046queue\u306b":134,scalar:[55,71,43],follow:[40,92,90,3,4,12,128,95,97,47,48,7,101,9,77,148,51,189,162,54,108,75,5,85,13,154,58,115,59,18,179,20,167,151,64,65,66,44,49,121,122,166,149,125,170,26,27,176,177,80,81,182,130,183,131,133,32,187,135,139,119,38,173],disk:[77,78,179,65],ptr:[40,155],item_:154,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":155,init:[7,189,53,80,125],program:[151,131,95,97,125,7,188,9,64],"\u95be\u5024\u3092\u8d8a\u3048\u308b":70,neglig:80,liter:[182,162,32,47,125,7,27],replic:12,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":70,libgcc_s_sjlj:80,rand_max:67,systemctl:141,failur:[7,77,19,80,152],"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":60,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":63,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":97,longtext:[45,110],"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":152,"\u304a\u3088\u3073":152,"help\u3067\u51fa\u529b\u3055\u308c\u308b":27,yappo:[42,125,80],name_s:[40,121,62,16,113,79,84,53],tex:90,rate:[125,96],design:[7,13,108,128],sug:170,what:[55,43,154,183,84,179],sub:[132,152],sum:[108,80,12],"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":121,libstemm:80,themselv:[176,119],noraml:90,bottom_right_point:110,behaviour:[125,158],shouldn:80,solari:[55,137],n_var:40,grn_ctx_init:[27,16],serihiro:7,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":191,memcach:[132,188,55,33],"16bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u3067\u3042\u308a":45,matsuu:155,grn_bad_address:2,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":88,grn_ctx_get_output_typ:16,gtihub:27,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":124,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":70,tokenunigram:167,"\u30ea\u30ea\u30fc\u30b9\u65e5":152,deprec:[108,11,97,125,7,75,10,27,107,80,65],ocelot:[27,125],suddenli:125,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[27,155],"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":152,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":152,"\u4ee5\u964d\u3092\u7121\u8996":155,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":155,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[55,39],"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":156,grn_syntax_error:2,src_key_siz:113,flag:[40,73,120,121,85,62,95,112,113,16,7,126,59,63,27,79,84,80],"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":56,known:[23,151,12,132,32,125,102,3],"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":93,"2\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u3059":45,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":97,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":107,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":168,mecab_strerror:80,omit:[22,108,90,3,4,94,135,136,75,10,27,175,177],grndb:[52,55,80,43],"\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":156,cours:130,newlin:[27,112],divid:[13,132,151,122],rather:[108,12,85,122,95,128,114,28,38,179],rep_loc:168,divis:80,cmp0014:80,resourc:[114,80,5,16],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[37,107],"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":121,overcommit:139,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":121,"\u6307\u5b9a\u3059\u308b":83,resours:17,"request\u3092\u9001\u308a\u307e\u3059":152,"short":[9,85],geo_dist:[55,43,125,7,27,161],postfix:[142,23],caus:[182,13,125,7,77,27,151,80,65],"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,mailarch:152,yahppo:125,grn_table_trunc:[27,113],logal:81,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":113,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":155,style:[77,80],"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":169,"7\u30ea\u30ea\u30fc\u30b9":77,soccer:44,"return":[40,17,110,43,5,55,123,31,125,16,7,113,19,121,77,135,27,79,84,80,83],normalzi:162,grn_table_sort_asc:113,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":69,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":121,refresh:44,innodb:132,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":140,unicod:190,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":152,friendship:44,truncat:[55,121,43,31,125,136,77,27,80],"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":152,grn_text_vprintf:80,weight:[7,55,125,80],needless:[7,77,112,125],yoshida:125,expect:[13,38,80,179],errror:179,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":113,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":79,socket_is_not_connect:173,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[113,79],footnot:[75,3],"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":169,"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":27,advanc:[68,42,142,23,145,77],differ:[0,108,75,4,12,131,13,182,7,115,74,80,179,77,78,151,38,54,65],content_type_len:7,thread:[40,83,131,132,97,125,16,136,54,149,80,121],"\u306exml\u51fa\u529b\u5bfe\u5fdc":155,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":69,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":113,grn_selector_func:80,"apt\u306e\u5834\u5408":152,notifi:103,feel:80,groonga_database_auto_cr:[7,125],blank:[190,38],"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":168,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":144,gpl:42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":155,script:[55,43,125,7,77,189,84,80],goronga:101,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":152,gpg:152,exclude_t:125,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":178,grn_column_name_id:121,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":144,statement:151,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":152,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":152,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[79,121],kind:[132,74,3,91,130],similar_search:[7,154],remov:[164,83,24,125,7,13,171,9,10,27,77,79,112,80,46],rep_http:168,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":168,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":178,grn_post:[110,120],ruby_ev:[55,31,125,43],expir:[77,9,117],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":168,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":45,grn_directory_not_empti:2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":155,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":97,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":1,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":181,operation_would_block:173,park:185,function_not_impl:173,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":60,reach:139,keyword_s:84,"\u30e1\u30fc\u30c8\u30eb":169,grn_obj_incr:79,latitude_in_degre:151,"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":113,grn_column_name_kei:121,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":70,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[146,6,72,8,156,191,107],penalti:125,firewood:[7,125],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":16,underflow:13,grn_plugin_fre:40,hit:[108,125,159],"\u5b9f\u6570\u3092\u8868\u3057\u307e\u3059":45,pair_queri:[154,18,177,187,48],"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":113,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":97,longest:[27,113,151],"\u5f62\u5f0f1\u3068\u5f62\u5f0f2\u306f\u6df7\u5728\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":36,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":70,grn_column_name_nsubrec:121,grn_obj_persist:[113,121],"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":144,grn_success:[40,108,2,83,5,16,17,19,149,84,121],armhf:80,"\u6570\u5024":144,"\u30b3\u30df\u30c3\u30c8":152,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":88,art:[185,151],dump:[55,43,155,31,125,7,77,27,106,80],highight_ful:162,arc:90,tobbi:115,grn_obj_with_weight:121,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":121,jemalloc:80,grn_table_differ:113,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":155,"js\u306a\u3069":152,latin:97,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":70,succeed:[2,3,73,136,171,127,189],"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":155,solv:[13,122,12],solr:151,socket_not_initi:173,grn_table_get:[113,112],"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":70,context:[32,16,17,183,9,27,79,84],"1x139":13,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":121,grn_table_sort_flag:113,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":97,grn_no_such_devic:2,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":11,additional_configure_opt:125,"\u5f93\u3063\u3066":108,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":93,f10399c0:152,"\u305d\u306e\u30ab\u30e9\u30e0\u306f":45,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":169,conifugr:81,grn_file_exist:2,beforehand:165,close_tag1:162,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":168,packag:[55,129,152,165,153,137,89,119],"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":168,nakai:125,abov:[3,91,48,7,100,101,9,103,189,108,109,115,18,119,23,183,74,96,77,78,176,177,81,190,130,131,185,65,38],kana:[154,18,177,187,48],input_file_nam:135,xvzf:[165,129,24,14,153,189,89],"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":168,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":152,table_buff:16,score_valu:77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":168,minim:[9,96],grn_obj_column:79,"\u5065\u4f5c":44,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":155,"\u4e00\u3064\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u306e\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":45,higher:[154,108],"\u975e\u4e92\u63db":27,x86:[27,101,77],"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":126,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":168,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":144,lower:[108,90,3,65],"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":168,searchabl:[114,77],"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":113,propos:[170,108],table_:[94,65],"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":67,"3\u884c\u76ee":168,northern:7,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":69,teruya:77,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":79,grn_plugin_get_system_plugins_dir:27,table2:113,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":69,table1:113,docutil:152,retry_max:173,collect:[135,132,185],"\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":152,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":69,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":11,global:[7,55,30,125,43],"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":11,invalid_format:173,"log\u3067\u3059":97,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[41,83,93,79,53,118,121],blog_titl:3,retri:19,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":152,leftmost:151,form_1:3,form_2:3,"\u7591\u4f3c\u30ab\u30e9\u30e0":60,squeez:[125,152],maximium:108,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":63,plai:[132,91],"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":16,dialog:125,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":168,myisam:132,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":63,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":191,"\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":178,shimoda:155,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":152,question:[77,78],live:[185,65],"long":[103,86,125,61,25,77,80,65],adjac:[38,182],plain:[77,109],arithmet:125,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":168,grn_proc_get_info:53,wno:27,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":113,"\u554f\u984c\u3092\u4fee\u6b63":155,aramaki:27,piro:80,consist:[108,3,182,48,173,38,80],"benchmark\u306f":168,caller:53,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":108,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":70,test_text_otoj:178,highlight:[162,47],radious_or_point:169,vojtovich:80,"\u3059\u308b\u3068groonga":152,horikoshi:27,unauthent:[7,153],grn_expr_append_const_int:84,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":144,grn_socket_not_initi:2,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":152,"\u540c\u3058\u3067\u3059":168,"man\u3092\u8ffd\u52a0":1,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":155,weight3:85,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":56,weight1:[7,108,85],comments2:78,grn:[9,158],gro:[131,32],"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":144,nice:114,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":168,bookmark_titl:158,grn_expr_add_var:84,drilldown:[55,156,125,60,77,27,80],"\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":152,"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":158,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":88,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u4e0d\u6b63\u78ba\u306a\u5024\u3092\u8fd4\u3059\u5834\u5408\u304c\u3042\u308a\u307e\u3059":82,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":147,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":152,lear:48,grn_set_default_encod:123,"\u7e70\u308a\u8fd4\u3057\u6570":168,mainstream:132,w64:152,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":69,"grn_expr\u306f":69,relev:[132,3],ranguba:[80,85],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":[55,43],"\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":152,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":152,nfkc:190,pleas:[0,141,3,83,12,122,26,77,28,189,88,80,119],smaller:[75,85,132,114,149,65],memset:77,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":152,compat:[165,129,14,133,54,153,9,77,127,190,80],compar:[108,182,132,32,7,80],grn_plugin_mutex:40,jekyl:152,grn_info:[55,30,43],"314e":151,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":155,usag:[55,43,132,125,77,80],"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":45,larger:[108,85,94,32,48,173,139,77,64,80],larget:103,"_name":65,"\u8907\u6570\u306e\u5f15\u6570\u3092\u3068\u308a\u307e\u3059":36,typic:108,appli:[42,84],approxim:[7,27,75],"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":152,apt:[152,14,7,153,20,81],api:[88,15,188],from:[132,137,55],"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":70,usa:130,few:[108,54,192],usr:[22,175,97,9,10,189,178,89],proonga:128,sort:[92,108,55,94,125,132,154,77,27,157],grn_db_creat:83,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":156,tokenbigramignoreblanksplitsymbolalpha:167,memos_cont:164,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":155,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":124,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":60,annot:125,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":93,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":178,endian:80,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":113,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":79,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":45,grn_column:[55,30,43],tar:[165,129,152,24,14,153,189,89],tag:[55,108,152,85,95,125,7,27,80],calc_target:108,"\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":152,grn_set_lock_timeout:19,pure:38,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":93,"\u30de\u30a4\u30af\u30ed\u79d2\u5358\u4f4d\u306764bit\u7b26\u53f7\u4ed8\u304d\u6574\u6570\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":45,six:[149,3],"100x100":169,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":105,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":113,instead:[92,141,91,94,97,47,7,101,9,10,77,189,107,165,108,75,151,16,159,179,65,162,125,173,27,80,81,182,32,137,190],express:[55,68,75,43,131,159,108,125,7,171,101,9,77,27,84],"\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":152,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":152,"load\u30b3\u30de\u30f3\u30c9":1,attent:108,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":69,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":155,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":180,light:[59,128],"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":105,"1\u884c\u76ee":168,freebsd:[55,43,77],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":178,"\u4eac\u90fd":[70,144,38],location_in_input:135,ouput:125,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":168,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":88,"log_level\u306f":6,condtion:182,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":97,"homebrew\u3078pul":152,bye:[46,151,164,108,182],"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":97,crash:[125,7,136,59,77,27,80],"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":11,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":152,keys_zon:9,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":73,devel:[165,129],shinjyuku:74,successor:151,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":178,edit:[88,152],grn_socket_is_already_connect:2,nested_reference_column:108,our:[26,119],grn_obj_column_index:[120,121],"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":168,"gz\u306eversion\u304a\u3088\u3073vers":152,out:[165,129,183,14,153,101,137,104,78,80],longitude_in_degre:151,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":155,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":152,dcb314:80,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":134,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":70,grn_ctx_send:[17,106,16],"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":152,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":70,"0\u4ee5\u4e0a255\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,york:[185,75],dictionari:[165,155,125,7,190,38,80],"128\u4ee5\u4e0a127\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,column3:12,lte:90,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":152,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":79,tokenizer_list:[55,31,80,43],"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":155,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"request\u3092\u9001\u308a\u307e\u3057\u305f":152,tetsuharu:80,prioriti:[132,108,177],"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":53,grn_obj_get:79,unknown:[123,112],"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":60,"akio\u3055\u3093":155,grn_dat_repair:112,shell:[77,189,97,182,179],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":37,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":73,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":63,practic:[13,132,80],"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":155,"\u3092\u4f5c\u6210\u3057\u307e\u3059":73,emac:119,"\u306e2\u5358\u8a9e\u6271\u3044":144,collaps:7,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":124,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":45,"4097byte":94,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":97,"shimada\u3055\u3093\u304c\u5831\u544a":155,grn_ii_estimate_size_for_queri:77,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":79,which:[40,141,90,142,91,5,97,46,7,145,100,102,148,3,143,165,108,75,151,13,115,64,44,68,23,125,183,74,171,173,77,78,177,80,182,130,131,132,133,188,185,109],grn_obj_delete_by_id:[27,79],"\u30db\u30b9\u30c8\u540d\u3068":168,who:[77,38,125,44],"\u7d44\u8fbc\u578b":[55,43],default_token:108,"class":[162,109,32,47],"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":152,determin:[108,3,159],"_id":[3,91,48,100,102,127,143,108,151,85,154,114,59,18,60,158,44,164,121,70,74,171,96,77,78,79,177,80,179,182,130,135,190],someth:80,grn_mecab_chunked_tokenize_en:77,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":63,word1:[7,108,182,151],word2:[7,108,182,151],memo_index:80,your_github_account:119,grn_obj_with_posit:121,"\u5358\u7d14\u306b\u691c\u7d22\u3059\u308b\u3068":143,local:[151,152,132,97,9,20,189,119],"150x100":34,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":144,grn_ctx_use:16,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":144,subrecord:125,grn_cursor_prefix:63,candidate2:154,candidate1:154,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":168,view:[55,131,166,7,100,157],"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":152,knowledg:132,"1073741824\u306e\u6574\u6570\u3067":60,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":97,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"10t22":18,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":63,index_tag:44,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":168,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":156,dll:[7,27,40,80],"v1\u306e\u5024\u306e\u4e2d\u306b":69,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":124,yaman:[125,80],"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":169,job:168,"\u5c0f\u6570\u3092\u4f7f\u3044\u307e\u3059":45,homebrew:[55,152,137],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":124,addit:[55,108,90,43,165,132,14,133,129,153],"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":180,april:152,"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":152,grn_logger_info:7,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":155,respect:[7,13,74,185],rpm:[165,129,152,125,7,27,112,80],target_nam:80,"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":27,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":121,"535\u4ee5\u4e0b\u306e\u6574\u6570\u3092\u8868\u3057\u307e\u3059":45,mike:171,spammer:[122,12],hmm:185,"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[34,169],roonga:[170,182,151],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":70,"\u30c6\u30fc\u30d6\u30ebentry\u306b":73,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":169,"21th":125,cursor:[27,110],"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":60,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":70,layer:77,customiz:32,"groonga\u3067\u4e88\u3081\u5b9a\u7fa9\u6e08\u307f\u306e\u578b\u304b":45,"\u3072\u308d\u3086\u304d":143,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":152,avg:[180,108,80],"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":155,grn_expr_append_op:[69,84],"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":168,"\u6ce8\u610f":113,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":155,difficult:132,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":70,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":144,"\u7d9a\u3044\u3066":70,"0x10":173,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":124,english:[0,108,125,26,20,27,38,177,80,119],grn_content_xml:106,uzulla:27,"groonga\u30d7\u30ed\u30bb\u30b9\u304c\u8d77\u52d5\u3057\u305f\u6642\u523b\u306etvsec\u5024\u3092\u8fd4\u3057\u307e\u3059":82,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":152,do_http:168,users_nam:115,obtain:40,"\u3082\u3057groonga":168,euc_jp:189,"key\u306b\u306f":113,amd64:152,book:151,host2:179,host1:179,"\u30ab\u30e9\u30e0\u578b1":108,"\u307e\u305f\u306f":168,"table\u306fcolumn\u3068\u306f\u5225\u306b":113,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":123,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":79,know:[44,108,130,185,61,77,38],press:119,"\u95be\u5024\u3092\u3042\u3052\u308b":[55,39],"\u30ab\u30e9\u30e0\u578bn":108,earch:90,incres:80,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":27,exceed:166,no_child_process:173,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":1,"export":[27,125,80,20],"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":70,column_inform:95,lead:[108,3,32],grn_obj_get_nhook:93,leak:[73,155,125,7,27,80],"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":97,grn_address_is_in_us:2,time_stamp:149,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":121,investig:[166,125,130],acronym:[173,128],tanab:125,rare:[77,125],"\u305d\u308c\u305e\u308c":178,kanako:125,disabl:[108,155,182,131,149,20,125,7,9,77,27,189,112,177,80],"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":88,own:[23,151,13,132,7,84],grn_operation_timeout:2,"\u6570\u5b57":168,grn_ii:[55,30,43],"\u4f8b":[55,1,79,152],grn_id:[40,41,120,121,86,16,113,63,79,84],yuya:[77,80],automat:[22,44,3,182,94,9,61,10,151,175,119],automak:155,grn_expr_append_const_str:84,grn_default_query_logger_get_path:7,"145508000x":75,transfer:[55,141,128,132,173,157],grn_command_version_min:116,appl:190,replac:[151,187,77,179,64,80,91],"var":[40,141,69,95,97,9,61,189,53],"\u30ad\u30fc\u304c":97,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":152,"\u4ee5\u5916\u306e\u5834\u5408\u306f":108,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":69,"\u73fe\u5728":191,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":97,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":73,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":152,palallel:152,made:[7,27,3,77],tab:[77,106,176,4,173],grn_logical_range_filter_en:77,whether:[2,142,7,100,9,108,75,13,154,115,158,159,23,61,166,183,96,127,79,80,182,83],troubl:119,record:[66,55,110,23,43,85,132,125,7,113,171,158,77,27,58,84,80],below:[58,104,59,182],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":79,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[82,146,6,72,73,126,8,156,158,160,191,105,37,140,107],"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":116,ff76:190,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":41,"\u3067\u306f\u6607\u9806":113,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":152,makecach:[7,129],"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":152,other:[132,88,119,137,55],bool:[164,182,13,45,125,46,143],"command_version\u3092\u8fd4\u3057\u307e\u3059":16,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":97,grn_table_delete_by_id:113,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":79,"drilldown\u6761\u4ef6\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306e\u691c\u7d22\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":108,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":11,debian:[55,152,137,20],"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":93,emerg:[6,149,8,97,9],allow_leading_not:108},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. How to report a bug","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. Return code","4.1. Basic operations","7.2. Output","7.20.1. Overview","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","Release 2.1.2 - 2013-01-29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. Various data types","2.4. Ubuntu","12.2. How to contribute in documentation topics","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. Correction","7.20.2. Global configurations","12.2.1. Introduction","8. Specification","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. Community","Release 1.2.9 - 2011-12-29","&lt;no title&gt;","7.10. Query expanders","7.20. API","7.3. Command","7.14.13. snippet_html","5. Server","7.14.5. geo_in_rectangle","7.3.3. Request ID","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. Tokenizers","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. Reference manual","4.6. Tag search and reverse resolution of reference relationships","7.4. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. Suggestion","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.16. Suggest","5.4. Memcached binary protocol","7.1. Executables","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. Comparison","Groonga documentation","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. Pseudo column","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. Limitations","7.14.12. rand","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. Column","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. Various search conditions","7.14.3. geo_distance","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","News","4.7. match_columns parameter","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","Release 4.1.1 - 2015-01-29","11.1. Travis CI","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.20.11. grn_expr","7.6.2. Vector column","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. How to contribute to groonga","2.2. Mac OS X","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. Query expansion","7.15.1. Geolocation Search","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. Tables","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. Additional information about lexicon for full text search","7.14.9. in_values","2.1. Windows","4.2. Remote access","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. Repository","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","Release 1.3.0 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. Indexing","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. I18N","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","Release 3.1.2 - 2014-01-29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. Drilldown","7.1.8. groonga-suggest-httpd","1. Characteristics of Groonga","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. Output format","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. Install","7.6.4. Index column","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. Server packages","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. Prefix search with patricia trie","8.2. \u691c\u7d22","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. Scalar column","7.12.2. Script syntax","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. Tutorial","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. Function","7.14.6. highlight_full","11. Development","7.9. Token filters","2.6. Fedora","10.2. How to avoid mmap Cannot allocate memory error","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. Introduction","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. Completion","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. Regular expression","7.1.2. grnslap","7.14.10. now","7.12.1. Query syntax","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. Let's create micro-blog","7.15. Operations","7.1.7. groonga-suggest-create-dataset","6. Client","2.8. Others","7.7. Normalizers","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[180,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[168,0,1,"cmdoption--log-output-dir"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[180,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[168,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[168,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[168,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[168,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[97,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[168,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[168,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[168,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[168,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"6\u30ea\u30ea\u30fc\u30b9":[1,155],code:2,senna:42,"\u6539\u826f":[27,1,155,147],"\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":152,queri:[108,91,132,115,9,149,29,182],global:19,localstatedir:189,"4\u30ea\u30ea\u30fc\u30b9":155,prefix:[69,151,143,189,177,54,182],"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":152,follow:185,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":152,cache_limit:117,value_typ:65,depend:[189,20],grn_type:62,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":152,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":152,drilldown_offset:108,send:[102,119],column_cr:73,column_or_valu:96,table_list:105,downtim:54,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[168,39],query_str:115,"\u524d\u63d0\u6761\u4ef6":152,grn_command_vers:116,sourc:[165,129,14,153,101,189,89],string:[13,46,90,133,151],groonga:[55,141,42,152,187,131,132,134,97,98,9,174,36,88,64,168,119],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":152,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":152,drilldown_calc_target:108,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[180,168],greater_equ:69,brows:9,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e3b\u30ad\u30fc\u306b\u6307\u5b9a\u3067\u304d\u306a\u3044\u578b":45,administr:[9,102],"\u578b\u306b\u95a2\u3059\u308b\u5236\u9650\u4e8b\u9805":45,sub_filt:183,gnu:153,list:[0,2,26],scalar:150,vector:[13,85],drilldown_output_column:108,refer:[40,41,43,93,86,106,53,56,5,85,13,116,16,17,113,19,25,118,44,120,121,62,123,63,110,79,83,84],"\u30aa\u30d7\u30b7\u30e7\u30f3":[180,168],dump_index:158,direct:9,sign:151,range_filt:76,aggreg:132,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":144,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":144,index:[66,44,3,132,114,138,78,179,65],what:38,xor:151,learner:64,"files\u306e\u5b9f\u884c":152,delet:171,version:54,"new":[77,42,119],grn_info:41,full:[3,182,132,99,74,78],hash:185,gener:[119,20],learn:[131,64,170,18,48,177],lock_clear:136,bodi:135,let:185,solari:24,ubuntu:14,path:[68,189,54],target_valu:100,valu:[90,142,6,95,46,47,145,100,146,103,10,148,105,107,75,154,191,58,115,59,156,158,167,160,65,22,68,49,23,162,72,73,126,171,117,96,76,127,175,82,183,131,185,133,32,136,8,109,37,140],"\u95a2\u4fc2\u5f0f":69,table_hash_kei:94,search:[44,108,3,91,92,132,85,48,74,18,185,143,151,78,99,177,182],"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":152,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":152,shift:151,blogroonga:152,memcach:51,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":152,chang:42,narrow:74,"\u9759\u7684\u89e3\u6790":178,"windows\u5411\u3051\u306e\u5834\u5408":152,match_column:[115,78,108],repositori:[104,119],appli:85,modul:9,phrase:182,"debian\u7cfb\u306e\u5834\u5408":152,api:[87,30],grn_db:83,request_cancel:103,instal:[176,189,101,137,20],total:108,define_selector:156,select:108,"\u6982\u8981":11,httpd:[131,141,9,98,64],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,from:[165,129,14,153,101,189,64,89],zip:101,commun:26,query_expand:[115,108],regist:10,upgrad:54,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":70,column_remov:72,call:151,"\u30c6\u30b9\u30c8\u65b9\u6cd5":178,key_typ:65,scope:183,query_expans:108,"\u30d6\u30ed\u30b0":152,sort:[74,3,130],token_filt:[90,65],relat:[78,108,9,64],benchmark:168,flag:[46,90,133,173,65],grn_content_typ:106,tokenbigramignoreblanksplitsymbolalpha:38,cach:[108,9],sphere:75,prepar:91,work:[119,18,177,48],tag:[44,185,65],clearlock:107,"\u7279\u6b8a\u547d\u4ee4":168,control:151,grn_column:121,geo_in_rectangl:34,process:[139,149],lock:132,topic:15,"\u4f7f\u3044\u65b9":168,liter:151,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":124,groonga_cache_limit:9,grndb:61,onlin:114,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":152,unsign:151,filter:[142,164,23,108],"\u4e3b\u30ad\u30fc\u306b\u3088\u308b\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22":143,multipl:[78,151,130],secur:[102,151],"\u540d\u524d":[180,67,181,111,45,168,34,60,36,169],divis:151,how:[0,85,166,173,128,48,114,18,102,35,88,15,177,119],open_tagn:162,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":178,simpl:108,"\u30b3\u30de\u30f3\u30c9":36,message_pack_install_prefix:189,tokenregexp:38,"\u7406\u7531":124,max:[142,96,23,117,139],clone:119,geoloc:[92,185],mac:89,offlin:114,date:13,log_level:6,data:[182,13,185,177,48,9,151,64,65],table_dat_kei:94,alloc:166,"\u66f8\u5f0f":[180,67,181,111,168,34,36,169],not_equ:69,tokendelimit:38,favorit:185,issu:[0,102],callback:69,combin:182,normalizernfkc51:190,freebsd:139,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":152,table_token:46,order:142,origin:151,adjust:108,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":124,help:189,softwar:20,hypertext:102,lz4:189,"3\u30ea\u30ea\u30fc\u30b9":155,gqtp:[141,173,128],paramet:[90,142,6,95,97,46,47,145,8,146,109,103,148,105,127,107,108,75,154,58,115,59,156,158,191,160,64,65,68,23,162,72,73,126,171,117,96,78,82,183,131,133,136,100,139,37,140],"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":152,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":152,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":152,group:[179,182,151],thank:[125,7,77,27,112,80],grn_table_select:69,fix:[42,125,7,77,27,80],shard_kei:[142,23],"\u5b9f\u9a13\u7684":27,platform:189,window:101,requir:[108,75,23,131,95,133,46,115,59,90,109,103,142,127],persist:94,tsv:[135,176],mail:[0,26],vector_s:148,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":178,"\u4f8b\u3048\u3070redmin":124,grn_hook:93,html_untag:109,"return":[90,2,142,6,95,46,47,145,100,146,103,10,148,105,107,75,154,191,58,115,59,156,158,167,160,65,22,68,49,23,162,72,73,126,171,117,96,76,127,175,82,183,131,133,32,136,8,109,37,140],greater:[69,182,151],worker_process:9,rectangl:75,"8\u30ea\u30ea\u30fc\u30b9":155,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":178,"\u8fd4\u5024":[67,108,181,111,34,36,169],now:181,highlight_ful:162,introduct:[170,20],choic:179,term:151,name:[59,78,187,65],edit:119,revers:[44,9],grn_ctx:16,authent:54,kern:139,micro:185,token:[132,164,90,38],exampl:[41,5,93,86,56,53,110,116,16,17,113,62,25,118,120,121,166,123,63,173,79,81,83,187,84],"groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831":172,each:78,ruby_load:68,updat:[132,119,177,152,20],"benchmark\u5b9f\u884c\u7d50\u679c":168,grn_encod:123,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":178,domain:130,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":11,weight:[78,85],"0\u30ea\u30ea\u30fc\u30b9":[27,155,147],normalizerauto:190,proxy_cach:9,todo:[115,32],"http\u30b5\u30fc\u30d0\u30fc":36,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":124,develop:163,your:119,db_api:69,query_flag:108,"release\u306e\u5b9f\u884c":152,normalizer_nam:162,quantifi:179,correct:[170,18],red:152,nofil:139,"1\u30ea\u30ea\u30fc\u30b9":[27,155],shut:9,proxi:9,advanc:108,free:132,grn_user_data:118,substitution_t:115,standalon:97,releas:[125,7,77,27,112,80],database_path:[131,64],grn_match_escal:25,launch:131,success:135,dump_schema:158,recov:61,synopsti:187,assign:[35,182,151],oper:[186,3,151],rand:67,rang:[3,65],plugin_regist:22,groonga_log_path:9,suffix:[69,182,151],"7\u30ea\u30ea\u30fc\u30b9":[1,155],"\u8aac\u660e":[180,67,181,111,45,168,34,60,36,169],arrai:151,number:[139,108,189],edit_dist:111,groonga_database_auto_cr:9,modulo:151,open:139,primari:143,size:173,grn_cach:17,script:[145,151],"\u4fee\u6b63":[27,1,155,147],messag:189,expand:29,termin:173,store:[132,65],option:[46,75,142,131,133,97,187,115,90,158,23,64],relationship:44,travi:81,tool:[189,9,102],specifi:[75,3],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":11,tokenfilterstem:164,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":69,than:[182,151],tokenbigram:38,keyword:185,remot:102,"grntest\u306e\u6e96\u5099":152,grn_table_cursor:63,charact:179,column_list:95,grn_expr:[69,84,159],latitud:[13,132],explicit:182,ruby_ev:145,plugin_unregist:175,tabl:[66,108,3,94,95,46,59,158,185,78,64,65],"null":151,packag:[189,141,14],bitwis:151,drilldown_limit:108,built:[190,38,12],min:[142,23,96],"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":69,also:[2,6,94,95,68,47,46,90,103,10,145,107,108,154,191,58,115,156,159,167,65,22,164,49,122,162,183,171,173,76,175,176,35,133,32,187,135,8,190,117],builtin:97,without:54,build:[165,129,14,153,101,189,89],highlight_html:47,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":178,mroonga:132,normal:[85,90,133,190,65],"\u30d0\u30fc\u30b8\u30e7\u30f30":1,"\u30d0\u30fc\u30b8\u30e7\u30f31":[155,147],object:151,oracl:24,"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":124,regular:[179,182,151],"\u7d44\u8fbc\u578b":45,default_token:65,"class":179,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":152,groonga_log_level:9,geoindex:185,table_pat_kei:94,request:[131,35,9,119],"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":69,latest:152,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":144,"\u539f\u56e0":70,lexicon:[99,3,65],keywordn:162,text:[3,182,132,99,74,78],grn_index_cursor:120,syntax:[90,142,6,95,97,46,47,145,100,146,103,10,148,105,107,108,75,151,154,191,58,115,59,156,61,167,160,65,22,68,49,23,158,162,72,73,126,74,171,117,96,76,127,175,179,82,182,183,133,32,136,8,109,37,140],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":152,threshold:189,xml:135,access:[102,54],explicitli:75,locat:[132,74,75,176,44],just:85,ellipsoid:75,grnslap:180,configur:[19,9,20,189,54,81],solut:166,max_bord:[142,23,96],use_html_escap:162,"benchmark\u547d\u4ee4":168,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":70,contribut:[88,15],variou:[13,74],get:[131,3],express:[179,182,151],stop:141,cannot:166,wheezi:153,report:0,geo:[132,151,44],restart:141,target:148,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":11,enabl:20,query_typ:173,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":124,patch:119,"default":[189,11],tokenfilterstopword:164,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":191,contain:69,table_cr:65,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":178,summari:[2,12,6,90,9,10,75,5,191,16,17,19,86,106,22,23,25,32,8,37,38,40,41,146,164,47,53,110,58,59,61,63,64,65,68,49,72,73,76,79,82,83,128,93,94,95,97,100,103,105,56,107,108,109,85,116,115,113,118,120,121,122,162,126,127,131,35,133,135,136,139,140,142,145,148,150,154,156,158,160,123,46,62,167,171,117,96,175,176,179,183,184,138,190],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":152,set:[131,9],max_map_count:139,dump:158,geo_dist:75,see:[2,6,94,95,68,47,46,90,103,10,145,107,108,154,191,58,115,156,159,167,65,22,164,49,122,162,183,171,173,76,175,176,35,133,32,187,135,8,190,117],result:[3,130],arg:69,scorer_tf_idf:122,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":178,statu:[82,173,187],databas:[3,54],column_renam:59,label:108,less_equ:69,score:108,between:96,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":152,kei:[108,143],numer:13,javascript:74,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":152,style:108,"\u5bfe\u7b56\u65b9\u6cd52":70,"\u5bfe\u7b56\u65b9\u6cd51":70,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":168,homebrew:89,dump_plugin:158,addit:[190,151,99],instant:132,plugin:[40,189],geopoint:185,equal:[69,182,151],against:78,tutori:157,logic:[182,151],improv:[42,125,7,77,27,112,80],"po\u306e\u5b9f\u884c":152,point2:75,load:[58,185,3,9,85],among:78,defrag:37,point:151,overview:[13,132,5],period:42,header:[135,173],close_tagn:162,shutdown:140,linux:[153,139],grn_proc:53,tokenbigramignoreblanksplitsymbol:38,quit:160,"\u5236\u9650\u4e8b\u9805":168,target_nam:[136,127],invert:132,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":178,json:[58,135],basic:[3,151],tokenmecab:38,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":178,log_put:8,drilldown_calc_typ:108,resolut:44,"2\u30ea\u30ea\u30fc\u30b9":155,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":152,logical_range_filt:142,i18n:119,in_valu:100,"case":135,drildown:130,multi:54,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":152,zlib:189,cast:57,"\u691c\u7d22":144,error:[135,166],anchor:179,pack:189,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":178,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":152,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":152,"\u5f15\u6570":[180,67,111,168,34,169],filter_str:183,archiv:14,cento:129,synopsi:[131,9,64],"version\u30d1\u30e9\u30e1\u30fc\u30bf":11,fedora:165,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":152,"\u691c\u7d22\u306e\u6319\u52d5":144,perform:[9,54],suggest:[131,154,187,48,170,50,64],make:[189,152],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":178,binari:51,html:[109,119,20],output_column:[108,142],document:[55,15,20],messagepack:135,complet:[170,177],http:[141,192,4,54,102],expans:91,nest:78,temporari:94,user:185,engin:132,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":152,tune:139,desctipion:187,sortbi:108,overcommit_memori:139,person:14,client:[188,97,173],command:[11,3,4,131,97,31,102,61,54],gzip:54,left:151,comment:185,construct:114,protocol:[51,102,173],execut:[52,97],less:[69,182,151],min_bord:[142,23,96],"5\u30ea\u30ea\u30fc\u30b9":155,languag:119,approximate_typ:75,hashtag:185,point1:75,mmap:166,"twitter\u7de8":124,patricia:143,blog:185,add:119,macport:89,geo_in_circl:169,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":152,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":152,tokenunigram:38,match:[189,182,151],format:[135,108,3,58,149,176],read:[132,177],tokendelimitnul:38,nginx:9,"\u95be\u5024\u3092\u3042\u3052\u308b":70,characterist:[132,94],daemon:[97,173],like:74,specif:[185,78,9,21],maxfileperproc:139,manual:43,integ:151,server:[141,132,97,33,102,173],logical_t:[142,23],"boolean":[13,151],cascad:171,output:[135,108,3,4,119],snippet_html:32,normalizer_list:49,old:77,twitter:26,log_reopen:191,sampl:[182,151],"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":178,librari:[132,189],tokenbigramsplitsymbolalphadigit:38,confirm:119,avoid:166,per:139,tracker:0,exit:187,condit:[74,108,182],scorer_tf_at_most:184,mode:[46,90,97,69],core:54,who:185,run:[173,128,102,20],tokenizs:38,compress:54,view:3,usag:[90,142,4,12,6,95,97,46,47,145,100,146,9,103,10,148,105,107,108,75,85,154,191,58,115,59,156,61,167,160,64,65,22,68,49,23,158,122,162,72,150,73,126,171,117,96,76,127,175,176,179,82,183,131,138,109,133,32,136,8,139,37,140],tokenizer_list:167,tokenbigramsplitsymbol:38,"\u30d3\u30eb\u30c9\u6642\u306etip":152,tokenbigramsplitsymbolalpha:38,offset:[108,142],post:[185,9,54],subtract:151,comparison:[151,54],about:99,column:[66,150,75,3,182,130,85,132,162,47,60,138,71,78],memori:[166,139],page:108,truncat:127,"x\u306e\u304a\u77e5\u3089\u305b":[1,155,147],tokentrigram:38,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":178,ppa:14,match_escalation_threshold:108,grn_ii:86,"\u4f8b":[67,169,111,70,34,181],"float":151,encod:189,dataset:187,down:[74,9],"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":144,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,storag:132,groonga_query_log_path:9,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":45,log:[149,189,64,54],transfer:102,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":168,support:92,"\u5909\u66f4":155,submit:0,custom:54,avail:[164,9],start:141,arithmet:151,"\u306e\u66f4\u65b0":152,sharabl:132,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":152,"function":[161,151],tokenbigramignoreblanksplitsymbolalphadigit:38,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":152,"\u691c\u7d22\u4f8b4":69,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":69,"\u691c\u7d22\u4f8b2":69,"\u691c\u7d22\u4f8b1":69,translat:119,drilldown_sortbi:108,line:[131,97,4],bug:0,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":152,pull:119,dump_record:158,new_nam:59,type:[13,185],record:[94,108,3],limit:[66,108,130,85,94,176],inform:[74,99],similar:[18,151,69],grn_tabl:113,"\u611f\u8b1d":[27,1,155,147],featur:92,bigram:185,creat:[3,85,185,187,78,65],trie:143,flow:119,grn_obj:79,groonga_databas:9,"homebrew\u306e\u66f4\u65b0":152,jessi:153,right:151,file:[97,187,139,176,64,54,119],check:[126,61],"\u5bfe\u5fdc":124,tokenbigramignoreblank:38,table_remov:146,extract:[151,48],grn_search:56,other:[189,179],logical_count:23,"\u30c7\u30fc\u30bf\u578b":45,grn_geo:110,"hat\u7cfb\u306e\u5834\u5408":152,scorer:[74,108,12],cooccurr:[18,177,48],drilldown:[108,130],debian:153,longitud:[13,132],groonga_base_path:9,escal:189,"\u691c\u7d22\u4f8b3":69,pseudo:60,cpu:54,munin:189,queryexpandertsv:176,time:[13,185,151],escap:[182,179],"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":152,table_no_kei:94}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. Server &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5. Server &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="index.html" />
29
29
  <link rel="next" title="5.1. Server packages" href="server/package.html" />
30
30
  <link rel="prev" title="4.11. Query expansion" href="tutorial/query_expansion.html" />
31
31
  </head>
@@ -41,7 +41,7 @@
41
41
 
42
42
  <div class="other-language-links">
43
43
  <ul>
44
- <li><a href="../../ja/html/server.html"><img src="_static/jp.png" alt="日本語">日本語版はこちら</a></li>
44
+ <li><a href="../../ja/html/server.html">日本語</a></li>
45
45
  </ul>
46
46
  </div>
47
47
  </div>
@@ -59,7 +59,7 @@
59
59
  <li class="right" >
60
60
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
61
61
  accesskey="P">previous</a> |</li>
62
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
62
+ <li><a href="index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
@@ -84,7 +84,11 @@
84
84
  <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
85
85
  </ul>
86
86
  </li>
87
- <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a></li>
87
+ <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a><ul>
88
+ <li class="toctree-l2"><a class="reference internal" href="server/gqtp.html#summary">5.3.1. Summary</a></li>
89
+ <li class="toctree-l2"><a class="reference internal" href="server/gqtp.html#how-to-run">5.3.2. How to run</a></li>
90
+ </ul>
91
+ </li>
88
92
  <li class="toctree-l1"><a class="reference internal" href="server/memcached.html">5.4. Memcached binary protocol</a></li>
89
93
  </ul>
90
94
  </div>
@@ -136,7 +140,7 @@
136
140
  <li class="right" >
137
141
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
138
142
  >previous</a> |</li>
139
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
143
+ <li><a href="index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
140
144
  </ul>
141
145
  </div>
142
146
  <div class="footer">
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.3. GQTP &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.4. Memcached binary protocol" href="memcached.html" />
31
31
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../ja/html/server/gqtp.html"><img src="../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../ja/html/server/gqtp.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -72,8 +72,44 @@
72
72
 
73
73
  <div class="section" id="gqtp">
74
74
  <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
75
- <p>TODO</p>
76
- <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga command</em></a>.</p>
75
+ <div class="section" id="summary">
76
+ <h2>5.3.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
77
+ <p>GQTP is the acronym standing for &quot;Groonga Query Transfer Protocol&quot;.</p>
78
+ <p>GQTP is a protocol designed for Groonga. It's a stateful
79
+ protocol. You can send multiple commands in one session.</p>
80
+ <p>GQTP will be faster rather than <a class="reference internal" href="http.html"><em>HTTP</em></a> when you send many
81
+ light commands like <a class="reference internal" href="../reference/commands/status.html"><em>status</em></a>. GQTP will be
82
+ almost same performance as HTTP when you send heavy commands like
83
+ <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a>.</p>
84
+ <p>We recommend that you use HTTP for many cases. Because there are many
85
+ HTTP client libraries.</p>
86
+ <p>If you want to use GQTP, you can use the following libraries:</p>
87
+ <blockquote>
88
+ <div><ul class="simple">
89
+ <li>Ruby: <a class="reference external" href="https://github.com/ranguba/groonga-client">groonga-client</a></li>
90
+ <li>Python: <a class="reference external" href="https://github.com/hhatto/poyonga">poyonga</a></li>
91
+ <li>Go: <a class="reference external" href="https://github.com/hhatto/goroo">goroo</a></li>
92
+ <li>PHP: <a class="reference external" href="https://github.com/Yujiro3/proonga">proonga</a></li>
93
+ <li>C/C++: Groonga (Groonga can be also used as library)</li>
94
+ </ul>
95
+ </div></blockquote>
96
+ <p>It's not a library but you can use
97
+ <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> as a GQTP client.</p>
98
+ </div>
99
+ <div class="section" id="how-to-run">
100
+ <h2>5.3.2. How to run<a class="headerlink" href="#how-to-run" title="Permalink to this headline">¶</a></h2>
101
+ <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> is a GQTP server implementation.
102
+ You can run a Groonga server by the following command line:</p>
103
+ <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -s [options] DB_PATH
104
+ </pre></div>
105
+ </div>
106
+ <p>You can run a Groonga server as a daemon by the following command
107
+ line:</p>
108
+ <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -d [options] DB_PATH
109
+ </pre></div>
110
+ </div>
111
+ <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> for available <tt class="docutils literal"><span class="pre">options</span></tt>.</p>
112
+ </div>
77
113
  </div>
78
114
 
79
115
 
@@ -82,6 +118,15 @@
82
118
  </div>
83
119
  <div class="sphinxsidebar">
84
120
  <div class="sphinxsidebarwrapper">
121
+ <h3><a href="../index.html">Table Of Contents</a></h3>
122
+ <ul>
123
+ <li><a class="reference internal" href="#">5.3. GQTP</a><ul>
124
+ <li><a class="reference internal" href="#summary">5.3.1. Summary</a></li>
125
+ <li><a class="reference internal" href="#how-to-run">5.3.2. How to run</a></li>
126
+ </ul>
127
+ </li>
128
+ </ul>
129
+
85
130
  <h4>Previous topic</h4>
86
131
  <p class="topless"><a href="http/groonga-httpd.html"
87
132
  title="previous chapter">5.2.3. groonga-httpd</a></p>
@@ -122,7 +167,7 @@
122
167
  <li class="right" >
123
168
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
124
169
  >previous</a> |</li>
125
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
170
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
126
171
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
127
172
  </ul>
128
173
  </div>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. HTTP &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.2.1. Comparison" href="http/comparison.html" />
31
31
  <link rel="prev" title="5.1. Server packages" href="package.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../ja/html/server/http.html"><img src="../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../ja/html/server/http.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="package.html" title="5.1. Server packages"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -151,7 +151,7 @@ implementation. It is also fast and has many HTTP features.</p>
151
151
  <li class="right" >
152
152
  <a href="package.html" title="5.1. Server packages"
153
153
  >previous</a> |</li>
154
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
154
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
155
155
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
156
156
  </ul>
157
157
  </div>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.1. Comparison &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.2.1. Comparison &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
31
31
  <link rel="prev" title="5.2. HTTP" href="../http.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../../ja/html/server/http/comparison.html"><img src="../../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../../ja/html/server/http/comparison.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="../http.html" title="5.2. HTTP"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
65
65
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
@@ -449,7 +449,7 @@ following rules to use loading by POST.</p>
449
449
  <li class="right" >
450
450
  <a href="../http.html" title="5.2. HTTP"
451
451
  >previous</a> |</li>
452
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
452
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
453
453
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
454
454
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
455
455
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.3. groonga-httpd &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.2.3. groonga-httpd &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.3. GQTP" href="../gqtp.html" />
31
31
  <link rel="prev" title="5.2.2. groonga" href="groonga.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../../ja/html/server/http/groonga-httpd.html"><img src="../../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../../ja/html/server/http/groonga-httpd.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="groonga.html" title="5.2.2. groonga"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
65
65
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
@@ -122,7 +122,7 @@
122
122
  <li class="right" >
123
123
  <a href="groonga.html" title="5.2.2. groonga"
124
124
  >previous</a> |</li>
125
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
125
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
126
126
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
127
127
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
128
128
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.2. groonga &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.2.2. groonga &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.2.3. groonga-httpd" href="groonga-httpd.html" />
31
31
  <link rel="prev" title="5.2.1. Comparison" href="comparison.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../../ja/html/server/http/groonga.html"><img src="../../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../../ja/html/server/http/groonga.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="comparison.html" title="5.2.1. Comparison"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
65
65
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
@@ -122,7 +122,7 @@
122
122
  <li class="right" >
123
123
  <a href="comparison.html" title="5.2.1. Comparison"
124
124
  >previous</a> |</li>
125
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
125
+ <li><a href="../../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
126
126
  <li><a href="../../server.html" >5. Server</a> &raquo;</li>
127
127
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
128
128
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.4. Memcached binary protocol &mdash; Groonga v5.0.1-42-g4d10df1 documentation</title>
10
+ <title>5.4. Memcached binary protocol &mdash; Groonga v5.0.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.0.3 documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="6. Client" href="../client.html" />
31
31
  <link rel="prev" title="5.3. GQTP" href="gqtp.html" />
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../../ja/html/server/memcached.html"><img src="../_static/jp.png" alt="日本語">日本語版はこちら</a></li>
45
+ <li><a href="../../../ja/html/server/memcached.html">日本語</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="gqtp.html" title="5.3. GQTP"
62
62
  accesskey="P">previous</a> |</li>
63
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
63
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
64
64
  <li><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -126,7 +126,7 @@
126
126
  <li class="right" >
127
127
  <a href="gqtp.html" title="5.3. GQTP"
128
128
  >previous</a> |</li>
129
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> &raquo;</li>
129
+ <li><a href="../index.html">Groonga v5.0.3 documentation</a> &raquo;</li>
130
130
  <li><a href="../server.html" >5. Server</a> &raquo;</li>
131
131
  </ul>
132
132
  </div>