rroonga 7.1.1-x86-mingw32 → 9.0.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (980) hide show
  1. checksums.yaml +5 -5
  2. data/Rakefile +3 -3
  3. data/doc/text/news.md +22 -0
  4. data/ext/groonga/extconf.rb +29 -26
  5. data/ext/groonga/rb-grn.h +3 -3
  6. data/lib/2.2/groonga.so +0 -0
  7. data/lib/2.3/groonga.so +0 -0
  8. data/lib/2.4/groonga.so +0 -0
  9. data/lib/2.5/groonga.so +0 -0
  10. data/lib/groonga/expression-builder.rb +1 -1
  11. data/lib/groonga/schema.rb +13 -0
  12. data/rroonga-build.rb +4 -11
  13. data/test/test-expression-builder.rb +8 -0
  14. data/vendor/local/bin/cv2pdb.exe +0 -0
  15. data/vendor/local/bin/generate-pdb.bat +38 -36
  16. data/vendor/local/bin/grndb.exe +0 -0
  17. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  18. data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
  19. data/vendor/local/bin/groonga.exe +0 -0
  20. data/vendor/local/bin/libgroonga-0.dll +0 -0
  21. data/vendor/local/bin/libmecab-2.dll +0 -0
  22. data/vendor/local/bin/libmsgpackc.dll +0 -0
  23. data/vendor/local/bin/libonigmo-6.dll +0 -0
  24. data/vendor/local/bin/libpcre-1.dll +0 -0
  25. data/vendor/local/bin/libpcrecpp-0.dll +0 -0
  26. data/vendor/local/bin/libpcreposix-0.dll +0 -0
  27. data/vendor/local/bin/lz4.exe +0 -0
  28. data/vendor/local/bin/lz4c.exe +0 -0
  29. data/vendor/local/bin/{lz4cat → lz4cat.exe} +0 -0
  30. data/vendor/local/bin/mecab.exe +0 -0
  31. data/vendor/local/bin/pcre-config +1 -1
  32. data/vendor/local/bin/pcregrep.exe +0 -0
  33. data/vendor/local/bin/pcretest.exe +0 -0
  34. data/vendor/local/bin/unlz4.exe +0 -0
  35. data/vendor/local/bin/zlib1.dll +0 -0
  36. data/vendor/local/include/groonga/groonga.h +16 -1
  37. data/vendor/local/include/groonga/groonga/accessor.h +5 -1
  38. data/vendor/local/include/groonga/groonga/column.h +4 -0
  39. data/vendor/local/include/groonga/groonga/db.h +3 -1
  40. data/vendor/local/include/groonga/groonga/expr.h +5 -0
  41. data/vendor/local/include/groonga/groonga/groonga.h +124 -171
  42. data/vendor/local/include/groonga/groonga/highlighter.h +57 -0
  43. data/vendor/local/include/groonga/groonga/ii.h +2 -0
  44. data/vendor/local/include/groonga/groonga/index_column.h +31 -0
  45. data/vendor/local/include/groonga/groonga/memory.h +29 -0
  46. data/vendor/local/include/groonga/groonga/msgpack.h +50 -0
  47. data/vendor/local/include/groonga/groonga/obj.h +22 -1
  48. data/vendor/local/include/groonga/groonga/option.h +61 -0
  49. data/vendor/local/include/groonga/groonga/output.h +57 -2
  50. data/vendor/local/include/groonga/groonga/output_columns.h +38 -0
  51. data/vendor/local/include/groonga/groonga/plugin.h +5 -0
  52. data/vendor/local/include/groonga/groonga/raw_string.h +60 -0
  53. data/vendor/local/include/groonga/groonga/string.h +113 -0
  54. data/vendor/local/include/groonga/groonga/table.h +89 -1
  55. data/vendor/local/include/groonga/groonga/thread.h +15 -0
  56. data/vendor/local/include/groonga/groonga/time.h +1 -0
  57. data/vendor/local/include/groonga/groonga/token.h +60 -10
  58. data/vendor/local/include/groonga/groonga/token_cursor.h +59 -0
  59. data/vendor/local/include/groonga/groonga/token_filter.h +24 -0
  60. data/vendor/local/include/groonga/groonga/token_metadata.h +49 -0
  61. data/vendor/local/include/groonga/groonga/tokenizer.h +99 -25
  62. data/vendor/local/include/groonga/groonga/tokenizer_query_deprecated.h +50 -0
  63. data/vendor/local/include/groonga/groonga/vector.h +80 -0
  64. data/vendor/local/include/groonga/groonga/version.h +32 -0
  65. data/vendor/local/include/groonga/groonga/window_function.h +18 -8
  66. data/vendor/local/include/groonga/groonga/window_function_executor.h +68 -0
  67. data/vendor/local/include/lz4.h +504 -212
  68. data/vendor/local/include/lz4frame.h +433 -153
  69. data/vendor/local/include/lz4frame_static.h +47 -0
  70. data/vendor/local/include/lz4hc.h +281 -108
  71. data/vendor/local/include/msgpack.hpp +4 -0
  72. data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +1 -0
  73. data/vendor/local/include/msgpack/adaptor/adaptor_base_decl.hpp +1 -0
  74. data/vendor/local/include/msgpack/adaptor/array_ref_decl.hpp +1 -0
  75. data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant_decl.hpp +1 -0
  76. data/vendor/local/include/msgpack/adaptor/boost/string_view.hpp +15 -0
  77. data/vendor/local/include/msgpack/adaptor/check_container_size_decl.hpp +1 -0
  78. data/vendor/local/include/msgpack/adaptor/cpp17/optional.hpp +16 -0
  79. data/vendor/local/include/msgpack/adaptor/cpp17/string_view.hpp +16 -0
  80. data/vendor/local/include/msgpack/adaptor/define_decl.hpp +2 -0
  81. data/vendor/local/include/msgpack/adaptor/ext_decl.hpp +1 -0
  82. data/vendor/local/include/msgpack/adaptor/fixint_decl.hpp +1 -0
  83. data/vendor/local/include/msgpack/adaptor/int_decl.hpp +1 -0
  84. data/vendor/local/include/msgpack/adaptor/map_decl.hpp +1 -0
  85. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_decl.hpp +1 -0
  86. data/vendor/local/include/msgpack/adaptor/nil_decl.hpp +1 -0
  87. data/vendor/local/include/msgpack/adaptor/raw_decl.hpp +1 -0
  88. data/vendor/local/include/msgpack/adaptor/size_equal_only_decl.hpp +1 -0
  89. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +2 -2
  90. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +2 -2
  91. data/vendor/local/include/msgpack/adaptor/v4raw_decl.hpp +1 -0
  92. data/vendor/local/include/msgpack/cpp_config_decl.hpp +1 -0
  93. data/vendor/local/include/msgpack/create_object_visitor.hpp +17 -0
  94. data/vendor/local/include/msgpack/create_object_visitor_decl.hpp +16 -0
  95. data/vendor/local/include/msgpack/fbuffer.h +1 -1
  96. data/vendor/local/include/msgpack/fbuffer_decl.hpp +1 -0
  97. data/vendor/local/include/msgpack/gcc_atomic.hpp +0 -2
  98. data/vendor/local/include/msgpack/iterator_decl.hpp +2 -1
  99. data/vendor/local/include/msgpack/meta_decl.hpp +1 -0
  100. data/vendor/local/include/msgpack/null_visitor.hpp +17 -0
  101. data/vendor/local/include/msgpack/null_visitor_decl.hpp +16 -0
  102. data/vendor/local/include/msgpack/object.h +5 -0
  103. data/vendor/local/include/msgpack/object_decl.hpp +1 -0
  104. data/vendor/local/include/msgpack/object_fwd.hpp +1 -0
  105. data/vendor/local/include/msgpack/object_fwd_decl.hpp +1 -0
  106. data/vendor/local/include/msgpack/pack.h +1 -0
  107. data/vendor/local/include/msgpack/pack_decl.hpp +1 -0
  108. data/vendor/local/include/msgpack/parse.hpp +18 -0
  109. data/vendor/local/include/msgpack/parse_decl.hpp +16 -0
  110. data/vendor/local/include/msgpack/parse_return.hpp +17 -0
  111. data/vendor/local/include/msgpack/sbuffer_decl.hpp +1 -0
  112. data/vendor/local/include/msgpack/sysdep.h +34 -26
  113. data/vendor/local/include/msgpack/type.hpp +9 -0
  114. data/vendor/local/include/msgpack/unpack.h +12 -1
  115. data/vendor/local/include/msgpack/unpack.hpp +1 -0
  116. data/vendor/local/include/msgpack/unpack_decl.hpp +1 -0
  117. data/vendor/local/include/msgpack/unpack_exception.hpp +15 -0
  118. data/vendor/local/include/msgpack/unpack_template.h +22 -30
  119. data/vendor/local/include/msgpack/v1/adaptor/array_ref.hpp +6 -6
  120. data/vendor/local/include/msgpack/v1/adaptor/boost/fusion.hpp +49 -6
  121. data/vendor/local/include/msgpack/v1/adaptor/boost/msgpack_variant.hpp +6 -4
  122. data/vendor/local/include/msgpack/v1/adaptor/boost/string_view.hpp +87 -0
  123. data/vendor/local/include/msgpack/v1/adaptor/carray.hpp +11 -11
  124. data/vendor/local/include/msgpack/v1/adaptor/char_ptr.hpp +1 -1
  125. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array.hpp +1 -1
  126. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_char.hpp +8 -1
  127. data/vendor/local/include/msgpack/v1/adaptor/cpp11/array_unsigned_char.hpp +8 -1
  128. data/vendor/local/include/msgpack/v1/adaptor/cpp11/forward_list.hpp +1 -1
  129. data/vendor/local/include/msgpack/v1/adaptor/cpp11/tuple.hpp +2 -2
  130. data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_map.hpp +4 -4
  131. data/vendor/local/include/msgpack/v1/adaptor/cpp11/unordered_set.hpp +2 -2
  132. data/vendor/local/include/msgpack/v1/adaptor/cpp17/optional.hpp +90 -0
  133. data/vendor/local/include/msgpack/v1/adaptor/cpp17/string_view.hpp +86 -0
  134. data/vendor/local/include/msgpack/v1/adaptor/deque.hpp +1 -1
  135. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_array.hpp +1088 -32
  136. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_define_map.hpp +32 -16
  137. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp03_msgpack_tuple.hpp +32 -32
  138. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_convert_helper.hpp +45 -0
  139. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_array.hpp +4 -3
  140. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_define_map.hpp +4 -2
  141. data/vendor/local/include/msgpack/v1/adaptor/detail/cpp11_msgpack_tuple.hpp +2 -2
  142. data/vendor/local/include/msgpack/v1/adaptor/ext.hpp +1 -1
  143. data/vendor/local/include/msgpack/v1/adaptor/fixint.hpp +40 -24
  144. data/vendor/local/include/msgpack/v1/adaptor/float.hpp +4 -4
  145. data/vendor/local/include/msgpack/v1/adaptor/int.hpp +55 -33
  146. data/vendor/local/include/msgpack/v1/adaptor/list.hpp +1 -1
  147. data/vendor/local/include/msgpack/v1/adaptor/map.hpp +10 -10
  148. data/vendor/local/include/msgpack/v1/adaptor/pair.hpp +2 -2
  149. data/vendor/local/include/msgpack/v1/adaptor/set.hpp +2 -2
  150. data/vendor/local/include/msgpack/v1/adaptor/string.hpp +1 -1
  151. data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_map.hpp +2 -2
  152. data/vendor/local/include/msgpack/v1/adaptor/tr1/unordered_set.hpp +2 -2
  153. data/vendor/local/include/msgpack/v1/adaptor/vector.hpp +5 -5
  154. data/vendor/local/include/msgpack/v1/adaptor/vector_bool.hpp +1 -1
  155. data/vendor/local/include/msgpack/v1/adaptor/vector_char.hpp +9 -9
  156. data/vendor/local/include/msgpack/v1/adaptor/vector_unsigned_char.hpp +9 -9
  157. data/vendor/local/include/msgpack/v1/cpp_config.hpp +6 -0
  158. data/vendor/local/include/msgpack/v1/cpp_config_decl.hpp +6 -0
  159. data/vendor/local/include/msgpack/v1/detail/cpp03_zone.hpp +41 -34
  160. data/vendor/local/include/msgpack/v1/detail/cpp03_zone_decl.hpp +8 -0
  161. data/vendor/local/include/msgpack/v1/detail/cpp11_zone.hpp +25 -19
  162. data/vendor/local/include/msgpack/v1/detail/cpp11_zone_decl.hpp +8 -0
  163. data/vendor/local/include/msgpack/v1/meta.hpp +6 -0
  164. data/vendor/local/include/msgpack/v1/meta_decl.hpp +5 -0
  165. data/vendor/local/include/msgpack/v1/object.hpp +768 -393
  166. data/vendor/local/include/msgpack/v1/object_decl.hpp +11 -1
  167. data/vendor/local/include/msgpack/v1/object_fwd.hpp +4 -1
  168. data/vendor/local/include/msgpack/v1/object_fwd_decl.hpp +3 -1
  169. data/vendor/local/include/msgpack/v1/parse_return.hpp +36 -0
  170. data/vendor/local/include/msgpack/v1/unpack.hpp +39 -120
  171. data/vendor/local/include/msgpack/v1/unpack_decl.hpp +2 -9
  172. data/vendor/local/include/msgpack/v1/unpack_exception.hpp +122 -0
  173. data/vendor/local/include/msgpack/v1/vrefbuffer.hpp +2 -2
  174. data/vendor/local/include/msgpack/v2/create_object_visitor.hpp +250 -0
  175. data/vendor/local/include/msgpack/v2/create_object_visitor_decl.hpp +33 -0
  176. data/vendor/local/include/msgpack/v2/meta_decl.hpp +4 -0
  177. data/vendor/local/include/msgpack/v2/null_visitor.hpp +96 -0
  178. data/vendor/local/include/msgpack/v2/null_visitor_decl.hpp +29 -0
  179. data/vendor/local/include/msgpack/v2/object_decl.hpp +4 -0
  180. data/vendor/local/include/msgpack/v2/object_fwd.hpp +1 -1
  181. data/vendor/local/include/msgpack/v2/object_fwd_decl.hpp +2 -0
  182. data/vendor/local/include/msgpack/v2/pack_decl.hpp +1 -0
  183. data/vendor/local/include/msgpack/v2/parse.hpp +1072 -0
  184. data/vendor/local/include/msgpack/v2/parse_decl.hpp +79 -0
  185. data/vendor/local/include/msgpack/v2/parse_return.hpp +37 -0
  186. data/vendor/local/include/msgpack/v2/unpack.hpp +21 -1298
  187. data/vendor/local/include/msgpack/v2/unpack_decl.hpp +9 -45
  188. data/vendor/local/include/msgpack/v2/x3_parse.hpp +875 -0
  189. data/vendor/local/include/msgpack/v2/x3_parse_decl.hpp +36 -0
  190. data/vendor/local/include/msgpack/v2/x3_unpack.hpp +120 -0
  191. data/vendor/local/include/msgpack/v2/x3_unpack_decl.hpp +71 -0
  192. data/vendor/local/include/msgpack/v3/adaptor/adaptor_base.hpp +58 -0
  193. data/vendor/local/include/msgpack/v3/adaptor/adaptor_base_decl.hpp +52 -0
  194. data/vendor/local/include/msgpack/v3/adaptor/array_ref_decl.hpp +36 -0
  195. data/vendor/local/include/msgpack/v3/adaptor/boost/msgpack_variant_decl.hpp +42 -0
  196. data/vendor/local/include/msgpack/v3/adaptor/check_container_size_decl.hpp +39 -0
  197. data/vendor/local/include/msgpack/v3/adaptor/define_decl.hpp +23 -0
  198. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_array_decl.hpp +31 -0
  199. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_define_map_decl.hpp +31 -0
  200. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp03_msgpack_tuple_decl.hpp +43 -0
  201. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_array_decl.hpp +32 -0
  202. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_define_map_decl.hpp +31 -0
  203. data/vendor/local/include/msgpack/v3/adaptor/detail/cpp11_msgpack_tuple_decl.hpp +59 -0
  204. data/vendor/local/include/msgpack/v3/adaptor/ext_decl.hpp +34 -0
  205. data/vendor/local/include/msgpack/v3/adaptor/fixint_decl.hpp +43 -0
  206. data/vendor/local/include/msgpack/v3/adaptor/int_decl.hpp +54 -0
  207. data/vendor/local/include/msgpack/v3/adaptor/map_decl.hpp +33 -0
  208. data/vendor/local/include/msgpack/v3/adaptor/msgpack_tuple_decl.hpp +21 -0
  209. data/vendor/local/include/msgpack/v3/adaptor/nil_decl.hpp +42 -0
  210. data/vendor/local/include/msgpack/v3/adaptor/raw_decl.hpp +33 -0
  211. data/vendor/local/include/msgpack/v3/adaptor/size_equal_only_decl.hpp +35 -0
  212. data/vendor/local/include/msgpack/v3/adaptor/v4raw_decl.hpp +34 -0
  213. data/vendor/local/include/msgpack/v3/cpp_config_decl.hpp +84 -0
  214. data/vendor/local/include/msgpack/v3/create_object_visitor_decl.hpp +33 -0
  215. data/vendor/local/include/msgpack/v3/detail/cpp03_zone_decl.hpp +31 -0
  216. data/vendor/local/include/msgpack/v3/detail/cpp11_zone_decl.hpp +31 -0
  217. data/vendor/local/include/msgpack/v3/fbuffer_decl.hpp +32 -0
  218. data/vendor/local/include/msgpack/v3/iterator_decl.hpp +33 -0
  219. data/vendor/local/include/msgpack/v3/meta_decl.hpp +50 -0
  220. data/vendor/local/include/msgpack/v3/null_visitor_decl.hpp +29 -0
  221. data/vendor/local/include/msgpack/v3/object_decl.hpp +53 -0
  222. data/vendor/local/include/msgpack/v3/object_fwd.hpp +70 -0
  223. data/vendor/local/include/msgpack/v3/object_fwd_decl.hpp +75 -0
  224. data/vendor/local/include/msgpack/v3/pack_decl.hpp +55 -0
  225. data/vendor/local/include/msgpack/v3/parse.hpp +677 -0
  226. data/vendor/local/include/msgpack/v3/parse_decl.hpp +49 -0
  227. data/vendor/local/include/msgpack/v3/parse_return.hpp +35 -0
  228. data/vendor/local/include/msgpack/v3/sbuffer_decl.hpp +33 -0
  229. data/vendor/local/include/msgpack/v3/unpack.hpp +192 -0
  230. data/vendor/local/include/msgpack/v3/unpack_decl.hpp +304 -0
  231. data/vendor/local/include/msgpack/v3/vrefbuffer_decl.hpp +29 -0
  232. data/vendor/local/include/msgpack/v3/x3_parse_decl.hpp +34 -0
  233. data/vendor/local/include/msgpack/v3/x3_unpack.hpp +97 -0
  234. data/vendor/local/include/msgpack/v3/x3_unpack_decl.hpp +65 -0
  235. data/vendor/local/include/msgpack/v3/zbuffer_decl.hpp +29 -0
  236. data/vendor/local/include/msgpack/v3/zone_decl.hpp +21 -0
  237. data/vendor/local/include/msgpack/version_master.h +2 -2
  238. data/vendor/local/include/msgpack/versioning.hpp +5 -3
  239. data/vendor/local/include/msgpack/vrefbuffer.h +1 -2
  240. data/vendor/local/include/msgpack/vrefbuffer_decl.hpp +1 -0
  241. data/vendor/local/include/msgpack/x3_parse.hpp +15 -0
  242. data/vendor/local/include/msgpack/x3_parse_decl.hpp +16 -0
  243. data/vendor/local/include/msgpack/x3_unpack.hpp +16 -0
  244. data/vendor/local/include/msgpack/x3_unpack_decl.hpp +16 -0
  245. data/vendor/local/include/msgpack/zbuffer_decl.hpp +1 -0
  246. data/vendor/local/include/msgpack/zone_decl.hpp +1 -0
  247. data/vendor/local/include/pcre.h +6 -6
  248. data/vendor/local/lib/cmake/msgpack/msgpack-config-version.cmake +46 -0
  249. data/vendor/local/lib/cmake/msgpack/msgpack-config.cmake +47 -0
  250. data/vendor/local/lib/cmake/msgpack/msgpack-targets-noconfig.cmake +29 -0
  251. data/vendor/local/lib/cmake/msgpack/msgpack-targets.cmake +101 -0
  252. data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
  253. data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
  254. data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
  255. data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
  256. data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
  257. data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
  258. data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
  259. data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
  260. data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
  261. data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
  262. data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
  263. data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
  264. data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
  265. data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
  266. data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
  267. data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
  268. data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
  269. data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
  270. data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
  271. data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
  272. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  273. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  274. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  275. data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
  276. data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
  277. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
  278. data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
  279. data/vendor/local/lib/groonga/plugins/normalizers/mysql.la +2 -2
  280. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  281. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  282. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  283. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
  284. data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +150 -19
  285. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +123 -65
  286. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +528 -113
  287. data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +142 -40
  288. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  289. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  290. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  291. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
  292. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  293. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  294. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  295. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +1 -1
  296. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  297. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  298. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  299. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +1 -1
  300. data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +1 -1
  301. data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +64 -35
  302. data/vendor/local/lib/groonga/scripts/ruby/expression.rb +3 -1
  303. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +15 -21
  304. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +274 -0
  305. data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +8 -2
  306. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign.rb +22 -0
  307. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/assign_binary_operation.rb +24 -0
  308. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +206 -8
  309. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +16 -1
  310. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +30 -1
  311. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +6 -0
  312. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/member.rb +18 -0
  313. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/null.rb +17 -0
  314. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/reference.rb +18 -0
  315. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/table.rb +14 -0
  316. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/unary_operation.rb +26 -0
  317. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +4 -0
  318. data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +78 -8
  319. data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +10 -0
  320. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +2 -0
  321. data/vendor/local/lib/groonga/scripts/ruby/locale_output.rb +28 -0
  322. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +36 -4
  323. data/vendor/local/lib/groonga/scripts/ruby/record.rb +1 -1
  324. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +0 -3
  325. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +46 -5
  326. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data_size_estimator.rb +5 -136
  327. data/vendor/local/lib/groonga/scripts/ruby/table.rb +2 -2
  328. data/vendor/local/lib/libgroonga.a +0 -0
  329. data/vendor/local/lib/libgroonga.dll.a +0 -0
  330. data/vendor/local/lib/libgroonga.la +1 -1
  331. data/vendor/local/lib/liblz4.a +0 -0
  332. data/vendor/local/lib/liblz4.dll +0 -0
  333. data/vendor/local/lib/liblz4.dll.1 +0 -0
  334. data/vendor/local/lib/{liblz4.dll.1.5.0 → liblz4.dll.1.8.2} +0 -0
  335. data/vendor/local/lib/libmecab.dll.a +0 -0
  336. data/vendor/local/lib/libmsgpackc.a +0 -0
  337. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  338. data/vendor/local/lib/libonigmo.a +0 -0
  339. data/vendor/local/lib/libonigmo.dll.a +0 -0
  340. data/vendor/local/lib/libpcre.a +0 -0
  341. data/vendor/local/lib/libpcre.dll.a +0 -0
  342. data/vendor/local/lib/libpcre.la +2 -2
  343. data/vendor/local/lib/libpcrecpp.dll.a +0 -0
  344. data/vendor/local/lib/libpcrecpp.la +1 -1
  345. data/vendor/local/lib/libpcreposix.a +0 -0
  346. data/vendor/local/lib/libpcreposix.dll.a +0 -0
  347. data/vendor/local/lib/libpcreposix.la +2 -2
  348. data/vendor/local/lib/libz.dll.a +0 -0
  349. data/vendor/local/lib/pkgconfig/groonga-normalizer-mysql.pc +1 -1
  350. data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
  351. data/vendor/local/lib/pkgconfig/liblz4.pc +3 -3
  352. data/vendor/local/lib/pkgconfig/libpcre.pc +1 -1
  353. data/vendor/local/lib/pkgconfig/libpcrecpp.pc +1 -1
  354. data/vendor/local/lib/pkgconfig/libpcreposix.pc +1 -1
  355. data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
  356. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  357. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  358. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  359. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  360. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  361. data/vendor/local/share/doc/groonga-normalizer-mysql/README.md +14 -22
  362. data/vendor/local/share/doc/groonga-normalizer-mysql/news.md +22 -2
  363. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  364. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +113 -4
  365. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +46 -19
  366. data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +10 -0
  367. data/vendor/local/share/doc/groonga/en/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
  368. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -4
  369. data/vendor/local/share/doc/groonga/en/html/_static/language_data.js +297 -0
  370. data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +4 -0
  371. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +69 -322
  372. data/vendor/local/share/doc/groonga/en/html/characteristic.html +16 -24
  373. data/vendor/local/share/doc/groonga/en/html/client.html +15 -23
  374. data/vendor/local/share/doc/groonga/en/html/community.html +30 -38
  375. data/vendor/local/share/doc/groonga/en/html/contribution.html +23 -31
  376. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +15 -23
  377. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +15 -23
  378. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +58 -66
  379. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +51 -56
  380. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +52 -56
  381. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +27 -35
  382. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +19 -27
  383. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +26 -34
  384. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +167 -167
  385. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +16 -24
  386. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +28 -36
  387. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +15 -23
  388. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +15 -23
  389. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +59 -67
  390. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +31 -39
  391. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +18 -26
  392. data/vendor/local/share/doc/groonga/en/html/development.html +15 -23
  393. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +38 -43
  394. data/vendor/local/share/doc/groonga/en/html/genindex.html +50 -28
  395. data/vendor/local/share/doc/groonga/en/html/index.html +248 -234
  396. data/vendor/local/share/doc/groonga/en/html/install.html +43 -47
  397. data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -51
  398. data/vendor/local/share/doc/groonga/en/html/install/debian.html +52 -131
  399. data/vendor/local/share/doc/groonga/en/html/install/docker.html +155 -0
  400. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +41 -49
  401. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +29 -37
  402. data/vendor/local/share/doc/groonga/en/html/install/others.html +142 -150
  403. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +30 -38
  404. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +43 -51
  405. data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -41
  406. data/vendor/local/share/doc/groonga/en/html/limitations.html +36 -42
  407. data/vendor/local/share/doc/groonga/en/html/news.html +1586 -598
  408. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +83 -83
  409. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +147 -155
  410. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +26 -34
  411. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +225 -233
  412. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +48 -56
  413. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +378 -386
  414. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +320 -328
  415. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +442 -448
  416. data/vendor/local/share/doc/groonga/en/html/news/5.x.html +742 -860
  417. data/vendor/local/share/doc/groonga/en/html/news/6.x.html +544 -621
  418. data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -40
  419. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  420. data/vendor/local/share/doc/groonga/en/html/reference.html +208 -198
  421. data/vendor/local/share/doc/groonga/en/html/reference/alias.html +85 -93
  422. data/vendor/local/share/doc/groonga/en/html/reference/api.html +50 -57
  423. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +62 -77
  424. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +117 -149
  425. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +140 -176
  426. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +43 -55
  427. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +48 -56
  428. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +194 -254
  429. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +106 -138
  430. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +62 -82
  431. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +117 -137
  432. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +74 -98
  433. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +79 -103
  434. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +40 -48
  435. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +57 -73
  436. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +75 -99
  437. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +495 -0
  438. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +52 -68
  439. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +291 -357
  440. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +69 -89
  441. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +47 -59
  442. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +226 -306
  443. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +120 -160
  444. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +80 -103
  445. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +46 -58
  446. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +40 -52
  447. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +52 -66
  448. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +98 -122
  449. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +40 -26
  450. data/vendor/local/share/doc/groonga/en/html/reference/column.html +16 -24
  451. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +16 -24
  452. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +30 -34
  453. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +16 -24
  454. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +92 -100
  455. data/vendor/local/share/doc/groonga/en/html/reference/command.html +76 -84
  456. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +26 -34
  457. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +64 -72
  458. data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +21 -29
  459. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -33
  460. data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +32 -40
  461. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +105 -113
  462. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -50
  463. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +85 -73
  464. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +31 -37
  465. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +131 -139
  466. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +370 -326
  467. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +115 -117
  468. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +38 -44
  469. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +47 -53
  470. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +40 -48
  471. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +42 -50
  472. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +41 -49
  473. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +37 -45
  474. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +71 -63
  475. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +31 -37
  476. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +49 -51
  477. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +64 -71
  478. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +335 -138
  479. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +233 -87
  480. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +45 -53
  481. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +42 -48
  482. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +43 -51
  483. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +58 -64
  484. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +33 -38
  485. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +31 -38
  486. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +295 -218
  487. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +56 -64
  488. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +532 -214
  489. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +797 -388
  490. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +35 -43
  491. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +188 -196
  492. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +83 -90
  493. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +41 -48
  494. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +41 -49
  495. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +401 -403
  496. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +253 -261
  497. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +60 -68
  498. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +36 -44
  499. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +35 -43
  500. data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +21 -29
  501. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +22 -30
  502. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +21 -29
  503. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +39 -47
  504. data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +47 -53
  505. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
  506. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -45
  507. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -45
  508. data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +330 -338
  509. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +1545 -1194
  510. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +57 -65
  511. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +83 -91
  512. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +119 -133
  513. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +30 -38
  514. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +165 -174
  515. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +50 -50
  516. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +104 -112
  517. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +42 -50
  518. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +49 -57
  519. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +46 -54
  520. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +110 -117
  521. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +41 -48
  522. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +40 -46
  523. data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +37 -45
  524. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -27
  525. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +134 -114
  526. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +25 -31
  527. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +66 -66
  528. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +174 -182
  529. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +25 -33
  530. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +27 -35
  531. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +191 -199
  532. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +32 -40
  533. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +189 -163
  534. data/vendor/local/share/doc/groonga/en/html/reference/function.html +59 -64
  535. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +71 -79
  536. data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +210 -0
  537. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +49 -55
  538. data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +38 -46
  539. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +133 -142
  540. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +67 -73
  541. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +56 -62
  542. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +80 -88
  543. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +70 -78
  544. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +56 -64
  545. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +87 -94
  546. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +54 -62
  547. data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +55 -63
  548. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -48
  549. data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +36 -44
  550. data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +74 -82
  551. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +152 -160
  552. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +45 -52
  553. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +76 -84
  554. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +37 -45
  555. data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +39 -47
  556. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +76 -84
  557. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +37 -45
  558. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +278 -0
  559. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +37 -45
  560. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +36 -44
  561. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +36 -44
  562. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +36 -44
  563. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +36 -44
  564. data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +37 -45
  565. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +368 -0
  566. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +40 -48
  567. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +54 -62
  568. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +40 -47
  569. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +44 -52
  570. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +307 -316
  571. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +486 -492
  572. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +44 -52
  573. data/vendor/local/share/doc/groonga/en/html/reference/log.html +128 -147
  574. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +43 -92
  575. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +179 -0
  576. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +897 -0
  577. data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +162 -0
  578. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +26 -34
  579. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +48 -56
  580. data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +47 -55
  581. data/vendor/local/share/doc/groonga/en/html/reference/output.html +47 -55
  582. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -28
  583. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +93 -101
  584. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +228 -225
  585. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +59 -67
  586. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +50 -58
  587. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +57 -65
  588. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +76 -86
  589. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +43 -51
  590. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +159 -167
  591. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +93 -101
  592. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +85 -93
  593. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +88 -96
  594. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +142 -150
  595. data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +147 -0
  596. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +31 -223
  597. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +626 -0
  598. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +291 -0
  599. data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +287 -0
  600. data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +259 -0
  601. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +42 -1455
  602. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +368 -0
  603. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +221 -0
  604. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +240 -0
  605. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +270 -0
  606. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +292 -0
  607. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
  608. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +200 -0
  609. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +212 -0
  610. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +357 -0
  611. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +162 -0
  612. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +783 -0
  613. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +289 -0
  614. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +194 -0
  615. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +194 -0
  616. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +71 -79
  617. data/vendor/local/share/doc/groonga/en/html/reference/types.html +64 -72
  618. data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +29 -37
  619. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +38 -46
  620. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +38 -46
  621. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +38 -46
  622. data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +38 -46
  623. data/vendor/local/share/doc/groonga/en/html/search.html +13 -24
  624. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  625. data/vendor/local/share/doc/groonga/en/html/server.html +15 -23
  626. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +27 -35
  627. data/vendor/local/share/doc/groonga/en/html/server/http.html +18 -26
  628. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +94 -102
  629. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +15 -23
  630. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +15 -23
  631. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +18 -26
  632. data/vendor/local/share/doc/groonga/en/html/server/package.html +101 -109
  633. data/vendor/local/share/doc/groonga/en/html/spec.html +19 -27
  634. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +207 -215
  635. data/vendor/local/share/doc/groonga/en/html/spec/search.html +39 -39
  636. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +15 -23
  637. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +46 -50
  638. data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +27 -35
  639. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +26 -31
  640. data/vendor/local/share/doc/groonga/en/html/tutorial.html +17 -25
  641. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +46 -54
  642. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +63 -71
  643. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +30 -38
  644. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +88 -97
  645. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +19 -27
  646. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +61 -69
  647. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +108 -116
  648. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +24 -32
  649. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +19 -27
  650. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +32 -40
  651. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +52 -60
  652. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  653. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +113 -4
  654. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +46 -19
  655. data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +10 -0
  656. data/vendor/local/share/doc/groonga/ja/html/_static/{jquery-3.1.0.js → jquery-3.2.1.js} +474 -295
  657. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -4
  658. data/vendor/local/share/doc/groonga/ja/html/_static/language_data.js +124 -0
  659. data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +4 -0
  660. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +70 -150
  661. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +15 -23
  662. data/vendor/local/share/doc/groonga/ja/html/client.html +15 -23
  663. data/vendor/local/share/doc/groonga/ja/html/community.html +29 -37
  664. data/vendor/local/share/doc/groonga/ja/html/contribution.html +23 -31
  665. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +15 -23
  666. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +15 -23
  667. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +50 -58
  668. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +43 -48
  669. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +47 -51
  670. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +26 -34
  671. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +18 -26
  672. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +23 -31
  673. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +162 -162
  674. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +16 -24
  675. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +26 -34
  676. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +15 -23
  677. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +15 -23
  678. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +50 -58
  679. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +28 -36
  680. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -25
  681. data/vendor/local/share/doc/groonga/ja/html/development.html +15 -23
  682. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +32 -37
  683. data/vendor/local/share/doc/groonga/ja/html/genindex.html +50 -28
  684. data/vendor/local/share/doc/groonga/ja/html/index.html +247 -233
  685. data/vendor/local/share/doc/groonga/ja/html/install.html +41 -45
  686. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -52
  687. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +52 -121
  688. data/vendor/local/share/doc/groonga/ja/html/install/docker.html +155 -0
  689. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +40 -48
  690. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +28 -36
  691. data/vendor/local/share/doc/groonga/ja/html/install/others.html +116 -124
  692. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +28 -36
  693. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +43 -51
  694. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -37
  695. data/vendor/local/share/doc/groonga/ja/html/limitations.html +30 -36
  696. data/vendor/local/share/doc/groonga/ja/html/news.html +1234 -384
  697. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +82 -82
  698. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +146 -154
  699. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +25 -33
  700. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +191 -199
  701. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +41 -49
  702. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +283 -291
  703. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +229 -237
  704. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +274 -280
  705. data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +475 -593
  706. data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +313 -390
  707. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +31 -39
  708. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  709. data/vendor/local/share/doc/groonga/ja/html/reference.html +208 -198
  710. data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +70 -78
  711. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +50 -57
  712. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +57 -72
  713. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +107 -139
  714. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +137 -173
  715. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +40 -52
  716. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +46 -54
  717. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +184 -244
  718. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +99 -131
  719. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +57 -77
  720. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +100 -120
  721. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +71 -95
  722. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +75 -99
  723. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +37 -45
  724. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +54 -70
  725. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +71 -95
  726. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +487 -0
  727. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +49 -65
  728. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +286 -352
  729. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +64 -84
  730. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +44 -56
  731. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +219 -299
  732. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +116 -156
  733. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +70 -93
  734. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +42 -54
  735. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +36 -48
  736. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -62
  737. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +94 -118
  738. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +39 -25
  739. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +15 -23
  740. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +15 -23
  741. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -32
  742. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +15 -23
  743. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +76 -84
  744. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +76 -84
  745. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +25 -33
  746. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +51 -59
  747. data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +20 -28
  748. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +21 -29
  749. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +27 -35
  750. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +101 -109
  751. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +39 -45
  752. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +84 -72
  753. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -36
  754. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +104 -112
  755. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +271 -237
  756. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +100 -102
  757. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +37 -43
  758. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -47
  759. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +38 -46
  760. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +39 -47
  761. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +39 -47
  762. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +34 -42
  763. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +70 -62
  764. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -36
  765. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +42 -44
  766. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +59 -68
  767. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +300 -126
  768. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +212 -80
  769. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +42 -50
  770. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +40 -46
  771. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +41 -49
  772. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +57 -63
  773. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +32 -37
  774. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +30 -37
  775. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +246 -178
  776. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +51 -59
  777. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +479 -175
  778. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +718 -326
  779. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +34 -42
  780. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +145 -153
  781. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +78 -85
  782. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +40 -47
  783. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +36 -44
  784. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +360 -362
  785. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +221 -229
  786. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +47 -55
  787. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +32 -40
  788. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +33 -41
  789. data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +20 -28
  790. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +21 -29
  791. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +20 -28
  792. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +35 -43
  793. data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +42 -48
  794. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +57 -57
  795. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +36 -43
  796. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +36 -43
  797. data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +317 -325
  798. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +1246 -917
  799. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +50 -58
  800. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +77 -85
  801. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +109 -123
  802. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +29 -37
  803. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +131 -140
  804. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -49
  805. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +87 -95
  806. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +36 -44
  807. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +44 -52
  808. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +38 -46
  809. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +93 -100
  810. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +40 -47
  811. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +39 -45
  812. data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +36 -44
  813. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -27
  814. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +125 -107
  815. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +23 -29
  816. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +62 -62
  817. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +132 -140
  818. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +23 -31
  819. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +25 -33
  820. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +166 -174
  821. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +31 -39
  822. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +189 -165
  823. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +59 -64
  824. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +69 -77
  825. data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +208 -0
  826. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +48 -54
  827. data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +37 -45
  828. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +115 -124
  829. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +66 -72
  830. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +55 -61
  831. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +69 -77
  832. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +60 -68
  833. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +54 -62
  834. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +85 -93
  835. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +54 -62
  836. data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +54 -62
  837. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +39 -47
  838. data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +35 -43
  839. data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +67 -75
  840. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +130 -138
  841. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +44 -51
  842. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +61 -69
  843. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +36 -44
  844. data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +38 -46
  845. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +63 -71
  846. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +36 -44
  847. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +276 -0
  848. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +36 -44
  849. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +35 -43
  850. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +35 -43
  851. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +35 -43
  852. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +35 -43
  853. data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +36 -44
  854. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +353 -0
  855. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +39 -47
  856. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +52 -61
  857. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +38 -46
  858. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +38 -46
  859. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +200 -208
  860. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +375 -382
  861. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +39 -47
  862. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +125 -144
  863. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +36 -70
  864. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +168 -0
  865. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +887 -0
  866. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +160 -0
  867. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +26 -34
  868. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +38 -46
  869. data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +41 -49
  870. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +42 -50
  871. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -28
  872. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +68 -76
  873. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +178 -184
  874. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +38 -46
  875. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +38 -46
  876. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +39 -47
  877. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +63 -73
  878. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +43 -51
  879. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +130 -138
  880. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +72 -80
  881. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +68 -76
  882. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +76 -86
  883. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +129 -137
  884. data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +145 -0
  885. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +31 -215
  886. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +617 -0
  887. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +289 -0
  888. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +284 -0
  889. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +233 -0
  890. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +42 -1349
  891. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +344 -0
  892. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +219 -0
  893. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +237 -0
  894. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +267 -0
  895. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +287 -0
  896. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +179 -0
  897. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +199 -0
  898. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +209 -0
  899. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +344 -0
  900. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +160 -0
  901. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +764 -0
  902. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +284 -0
  903. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +191 -0
  904. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +191 -0
  905. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +65 -73
  906. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +48 -56
  907. data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +29 -37
  908. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +37 -45
  909. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +37 -45
  910. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +37 -45
  911. data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +37 -45
  912. data/vendor/local/share/doc/groonga/ja/html/search.html +13 -24
  913. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  914. data/vendor/local/share/doc/groonga/ja/html/server.html +15 -23
  915. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +22 -30
  916. data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -25
  917. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +82 -90
  918. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +15 -23
  919. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +15 -23
  920. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +16 -24
  921. data/vendor/local/share/doc/groonga/ja/html/server/package.html +99 -107
  922. data/vendor/local/share/doc/groonga/ja/html/spec.html +19 -27
  923. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +201 -209
  924. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +36 -36
  925. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +15 -23
  926. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +44 -48
  927. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +21 -29
  928. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +24 -29
  929. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +16 -24
  930. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +32 -40
  931. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +62 -70
  932. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -30
  933. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +77 -86
  934. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +15 -23
  935. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +56 -64
  936. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +84 -92
  937. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +20 -28
  938. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -26
  939. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +21 -29
  940. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +43 -51
  941. data/vendor/local/share/doc/pcre/AUTHORS +3 -3
  942. data/vendor/local/share/doc/pcre/ChangeLog +53 -0
  943. data/vendor/local/share/doc/pcre/LICENCE +3 -3
  944. data/vendor/local/share/doc/pcre/NEWS +6 -0
  945. data/vendor/local/share/doc/pcre/html/NON-AUTOTOOLS-BUILD.txt +8 -7
  946. data/vendor/local/share/groonga/mruby/LEGAL +35 -35
  947. data/vendor/local/share/license/cv2pdb/{README → README.MD} +28 -10
  948. data/vendor/local/share/license/groonga-normalizer-mysql/README.md +14 -22
  949. data/vendor/local/share/license/lz4/LICENSE +2 -2
  950. data/vendor/local/share/license/mruby/AUTHORS +3 -0
  951. data/vendor/local/share/license/mruby/MITL +1 -1
  952. data/vendor/local/share/license/mruby/README.md +1 -1
  953. data/vendor/local/share/license/msgpack/README.md +5 -34
  954. data/vendor/local/share/license/pcre/LICENCE +3 -3
  955. data/vendor/local/share/man/man1/lz4.1 +221 -86
  956. data/vendor/local/share/man/man1/lz4c.1 +222 -32
  957. data/vendor/local/share/man/man1/lz4cat.1 +221 -30
  958. data/vendor/local/share/man/man1/unlz4.1 +223 -0
  959. metadata +231 -87
  960. data/lib/2.1/groonga.so +0 -0
  961. data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +0 -147
  962. data/vendor/local/lib/groonga/scripts/ruby/expression_tree/options.rb +0 -14
  963. data/vendor/local/share/doc/groonga/en/html/_static/ajax-loader.gif +0 -0
  964. data/vendor/local/share/doc/groonga/en/html/_static/comment-bright.png +0 -0
  965. data/vendor/local/share/doc/groonga/en/html/_static/comment-close.png +0 -0
  966. data/vendor/local/share/doc/groonga/en/html/_static/comment.png +0 -0
  967. data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
  968. data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
  969. data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
  970. data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
  971. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +0 -808
  972. data/vendor/local/share/doc/groonga/ja/html/_static/ajax-loader.gif +0 -0
  973. data/vendor/local/share/doc/groonga/ja/html/_static/comment-bright.png +0 -0
  974. data/vendor/local/share/doc/groonga/ja/html/_static/comment-close.png +0 -0
  975. data/vendor/local/share/doc/groonga/ja/html/_static/comment.png +0 -0
  976. data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
  977. data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
  978. data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
  979. data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
  980. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +0 -808
@@ -1,40 +1,29 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>Search &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>Search &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: './',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+
13
+ <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
22
14
  <script type="text/javascript" src="_static/jquery.js"></script>
23
15
  <script type="text/javascript" src="_static/underscore.js"></script>
24
16
  <script type="text/javascript" src="_static/doctools.js"></script>
17
+ <script type="text/javascript" src="_static/language_data.js"></script>
18
+
25
19
  <script type="text/javascript" src="_static/searchtools.js"></script>
26
20
  <link rel="shortcut icon" href="_static/favicon.ico"/>
27
21
  <link rel="index" title="Index" href="genindex.html" />
28
22
  <link rel="search" title="Search" href="#" />
29
- <script type="text/javascript">
30
- jQuery(function() { Search.loadIndex("searchindex.js"); });
31
- </script>
32
-
33
- <script type="text/javascript" id="searchindexloader"></script>
23
+ <script type="text/javascript" src="searchindex.js" defer></script>
34
24
 
35
25
 
36
- </head>
37
- <body>
26
+ </head><body>
38
27
  <div class="header">
39
28
  <h1 class="title">
40
29
  <a id="top-link" href="index.html">
@@ -58,7 +47,7 @@
58
47
  <li class="right" style="margin-right: 10px">
59
48
  <a href="genindex.html" title="General Index"
60
49
  accesskey="I">index</a></li>
61
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
50
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
51
  </ul>
63
52
  </div>
64
53
 
@@ -106,11 +95,11 @@
106
95
  <li class="right" style="margin-right: 10px">
107
96
  <a href="genindex.html" title="General Index"
108
97
  >index</a></li>
109
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
98
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
110
99
  </ul>
111
100
  </div>
112
101
  <div class="footer" role="contentinfo">
113
- &#169; Copyright 2009-2018, Brazil, Inc.
102
+ &#169; Copyright 2009-2019, Brazil, Inc.
114
103
  </div>
115
104
  </body>
116
105
  </html>
@@ -1 +1 @@
1
- Search.setIndex({docnames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/5.x","news/6.x","news/senna","reference","reference/alias","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/request_timeout","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/config_delete","reference/commands/config_get","reference/commands/config_set","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_acquire","reference/commands/lock_clear","reference/commands/lock_release","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/object_inspect","reference/commands/object_list","reference/commands/object_remove","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/query_expand","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/schema","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_copy","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_rename","reference/commands/table_tokenize","reference/commands/thread_limit","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/configuration","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/fuzzy_search","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_records","reference/functions/in_values","reference/functions/math_abs","reference/functions/now","reference/functions/number_classify","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/string_length","reference/functions/string_substring","reference/functions/sub_filter","reference/functions/time_classify_day","reference/functions/time_classify_hour","reference/functions/time_classify_minute","reference/functions/time_classify_month","reference/functions/time_classify_second","reference/functions/time_classify_week","reference/functions/time_classify_year","reference/functions/vector_new","reference/functions/vector_size","reference/functions/vector_slice","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/operations/prefix_rk_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/sharding","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","reference/window_function","reference/window_functions/record_number","reference/window_functions/window_count","reference/window_functions/window_record_number","reference/window_functions/window_sum","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/memcached","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/how_to_analyze_error_message","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],envversion:53,filenames:["characteristic.rst","client.rst","community.rst","contribution.rst","contribution/development.rst","contribution/development/build.rst","contribution/development/build/unix_autotools.rst","contribution/development/build/unix_cmake.rst","contribution/development/build/windows_cmake.rst","contribution/development/com.rst","contribution/development/cooperation.rst","contribution/development/query.rst","contribution/development/release.rst","contribution/development/repository.rst","contribution/development/test.rst","contribution/documentation.rst","contribution/documentation/c-api.rst","contribution/documentation/i18n.rst","contribution/documentation/introduction.rst","contribution/report.rst","development.rst","development/travis-ci.rst","index.rst","install.rst","install/centos.rst","install/debian.rst","install/fedora.rst","install/mac_os_x.rst","install/others.rst","install/solaris.rst","install/ubuntu.rst","install/windows.rst","limitations.rst","news.rst","news/0.x.rst","news/1.0.x.rst","news/1.1.x.rst","news/1.2.x.rst","news/1.3.x.rst","news/2.x.rst","news/3.x.rst","news/4.x.rst","news/5.x.rst","news/6.x.rst","news/senna.rst","reference.rst","reference/alias.rst","reference/api.rst","reference/api/global_configurations.rst","reference/api/grn_cache.rst","reference/api/grn_column.rst","reference/api/grn_command_version.rst","reference/api/grn_content_type.rst","reference/api/grn_ctx.rst","reference/api/grn_db.rst","reference/api/grn_encoding.rst","reference/api/grn_expr.rst","reference/api/grn_geo.rst","reference/api/grn_hook.rst","reference/api/grn_ii.rst","reference/api/grn_index_cursor.rst","reference/api/grn_info.rst","reference/api/grn_match_escalation.rst","reference/api/grn_obj.rst","reference/api/grn_proc.rst","reference/api/grn_search.rst","reference/api/grn_table.rst","reference/api/grn_table_cursor.rst","reference/api/grn_thread.rst","reference/api/grn_type.rst","reference/api/grn_user_data.rst","reference/api/overview.rst","reference/api/plugin.rst","reference/cast.rst","reference/column.rst","reference/columns/index.rst","reference/columns/pseudo.rst","reference/columns/scalar.rst","reference/columns/vector.rst","reference/command.rst","reference/command/command_version.rst","reference/command/output_format.rst","reference/command/pretty_print.rst","reference/command/request_id.rst","reference/command/request_timeout.rst","reference/command/return_code.rst","reference/commands/cache_limit.rst","reference/commands/check.rst","reference/commands/clearlock.rst","reference/commands/column_copy.rst","reference/commands/column_create.rst","reference/commands/column_list.rst","reference/commands/column_remove.rst","reference/commands/column_rename.rst","reference/commands/config_delete.rst","reference/commands/config_get.rst","reference/commands/config_set.rst","reference/commands/database_unmap.rst","reference/commands/define_selector.rst","reference/commands/defrag.rst","reference/commands/delete.rst","reference/commands/dump.rst","reference/commands/io_flush.rst","reference/commands/load.rst","reference/commands/lock_acquire.rst","reference/commands/lock_clear.rst","reference/commands/lock_release.rst","reference/commands/log_level.rst","reference/commands/log_put.rst","reference/commands/log_reopen.rst","reference/commands/logical_count.rst","reference/commands/logical_parameters.rst","reference/commands/logical_range_filter.rst","reference/commands/logical_select.rst","reference/commands/logical_shard_list.rst","reference/commands/logical_table_remove.rst","reference/commands/normalize.rst","reference/commands/normalizer_list.rst","reference/commands/object_exist.rst","reference/commands/object_inspect.rst","reference/commands/object_list.rst","reference/commands/object_remove.rst","reference/commands/plugin_register.rst","reference/commands/plugin_unregister.rst","reference/commands/query_expand.rst","reference/commands/quit.rst","reference/commands/range_filter.rst","reference/commands/register.rst","reference/commands/reindex.rst","reference/commands/request_cancel.rst","reference/commands/ruby_eval.rst","reference/commands/ruby_load.rst","reference/commands/schema.rst","reference/commands/select.rst","reference/commands/shutdown.rst","reference/commands/status.rst","reference/commands/suggest.rst","reference/commands/table_copy.rst","reference/commands/table_create.rst","reference/commands/table_list.rst","reference/commands/table_remove.rst","reference/commands/table_rename.rst","reference/commands/table_tokenize.rst","reference/commands/thread_limit.rst","reference/commands/tokenize.rst","reference/commands/tokenizer_list.rst","reference/commands/truncate.rst","reference/configuration.rst","reference/executables.rst","reference/executables/grndb.rst","reference/executables/grnslap.rst","reference/executables/groonga.rst","reference/executables/groonga-benchmark.rst","reference/executables/groonga-httpd.rst","reference/executables/groonga-server-http.rst","reference/executables/groonga-suggest-create-dataset.rst","reference/executables/groonga-suggest-httpd.rst","reference/executables/groonga-suggest-learner.rst","reference/function.rst","reference/functions/between.rst","reference/functions/edit_distance.rst","reference/functions/fuzzy_search.rst","reference/functions/geo_distance.rst","reference/functions/geo_in_circle.rst","reference/functions/geo_in_rectangle.rst","reference/functions/highlight_full.rst","reference/functions/highlight_html.rst","reference/functions/html_untag.rst","reference/functions/in_records.rst","reference/functions/in_values.rst","reference/functions/math_abs.rst","reference/functions/now.rst","reference/functions/number_classify.rst","reference/functions/prefix_rk_search.rst","reference/functions/query.rst","reference/functions/rand.rst","reference/functions/snippet_html.rst","reference/functions/string_length.rst","reference/functions/string_substring.rst","reference/functions/sub_filter.rst","reference/functions/time_classify_day.rst","reference/functions/time_classify_hour.rst","reference/functions/time_classify_minute.rst","reference/functions/time_classify_month.rst","reference/functions/time_classify_second.rst","reference/functions/time_classify_week.rst","reference/functions/time_classify_year.rst","reference/functions/vector_new.rst","reference/functions/vector_size.rst","reference/functions/vector_slice.rst","reference/grn_expr.rst","reference/grn_expr/query_syntax.rst","reference/grn_expr/script_syntax.rst","reference/indexing.rst","reference/log.rst","reference/normalizers.rst","reference/operations.rst","reference/operations/geolocation_search.rst","reference/operations/prefix_rk_search.rst","reference/output.rst","reference/query_expanders.rst","reference/query_expanders/tsv.rst","reference/regular_expression.rst","reference/scorer.rst","reference/scorers/scorer_tf_at_most.rst","reference/scorers/scorer_tf_idf.rst","reference/sharding.rst","reference/suggest.rst","reference/suggest/completion.rst","reference/suggest/correction.rst","reference/suggest/introduction.rst","reference/suggest/suggestion.rst","reference/tables.rst","reference/token_filters.rst","reference/tokenizers.rst","reference/tuning.rst","reference/types.rst","reference/window_function.rst","reference/window_functions/record_number.rst","reference/window_functions/window_count.rst","reference/window_functions/window_record_number.rst","reference/window_functions/window_sum.rst","server.rst","server/gqtp.rst","server/http.rst","server/http/comparison.rst","server/http/groonga.rst","server/http/groonga-httpd.rst","server/memcached.rst","server/package.rst","spec.rst","spec/gqtp.rst","spec/search.rst","troubleshooting.rst","troubleshooting/different_results_with_the_same_keyword.rst","troubleshooting/how_to_analyze_error_message.rst","troubleshooting/mmap_cannot_allocate_memory.rst","tutorial.rst","tutorial/data.rst","tutorial/drilldown.rst","tutorial/index.rst","tutorial/introduction.rst","tutorial/lexicon.rst","tutorial/match_columns.rst","tutorial/micro_blog.rst","tutorial/network.rst","tutorial/patricia_trie.rst","tutorial/query_expansion.rst","tutorial/search.rst"],objects:{"":{GRN_COLUMN_NAME_ID:[50,0,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[50,0,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[50,0,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[50,0,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[50,0,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[50,0,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[50,0,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[50,0,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[50,0,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[50,0,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[51,0,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[51,0,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[51,0,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[63,0,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[63,0,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[63,0,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[63,0,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[63,0,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[63,0,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[63,0,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[63,0,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[63,0,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[63,0,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[72,0,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[72,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[72,0,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[72,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[72,0,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[72,0,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[72,0,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[72,1,1,"c.GRN_PLUGIN_REGISTER"],grn_builtin_type:[69,2,1,"c.grn_builtin_type"],grn_cache:[49,2,1,"c.grn_cache"],grn_cache_close:[49,1,1,"c.grn_cache_close"],grn_cache_current_get:[49,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[49,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[49,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[49,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[49,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[50,1,1,"c.grn_column_create"],grn_column_index:[50,1,1,"c.grn_column_index"],grn_column_index_update:[50,1,1,"c.grn_column_index_update"],grn_column_name:[50,1,1,"c.grn_column_name"],grn_column_rename:[50,1,1,"c.grn_column_rename"],grn_column_table:[50,1,1,"c.grn_column_table"],grn_column_truncate:[50,1,1,"c.grn_column_truncate"],grn_command_version:[51,2,1,"c.grn_command_version"],grn_content_type:[52,2,1,"c.grn_content_type"],grn_ctx:[53,2,1,"c.grn_ctx"],grn_ctx_at:[53,1,1,"c.grn_ctx_at"],grn_ctx_close:[53,1,1,"c.grn_ctx_close"],grn_ctx_db:[53,1,1,"c.grn_ctx_db"],grn_ctx_fin:[53,1,1,"c.grn_ctx_fin"],grn_ctx_get:[53,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[53,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[53,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[62,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[53,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[53,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[53,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[53,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[53,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[53,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[62,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[53,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[53,1,1,"c.grn_ctx_use"],grn_db:[54,2,1,"c.grn_db"],grn_db_create:[54,1,1,"c.grn_db_create"],grn_db_create_optarg:[54,2,1,"c.grn_db_create_optarg"],grn_db_open:[54,1,1,"c.grn_db_open"],grn_db_recover:[54,1,1,"c.grn_db_recover"],grn_db_touch:[54,1,1,"c.grn_db_touch"],grn_db_unmap:[54,1,1,"c.grn_db_unmap"],grn_encoding:[55,2,1,"c.grn_encoding"],grn_encoding_parse:[55,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[55,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[56,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[56,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[56,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[56,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[56,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[56,1,1,"c.grn_expr_append_op"],grn_expr_close:[56,1,1,"c.grn_expr_close"],grn_expr_compile:[56,1,1,"c.grn_expr_compile"],grn_expr_create:[56,1,1,"c.grn_expr_create"],grn_expr_exec:[56,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[56,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[56,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[56,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[56,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[71,1,1,"c.grn_fin"],grn_geo_cursor_next:[57,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[57,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[57,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[57,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[57,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[51,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[55,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[62,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[48,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[58,2,1,"c.grn_hook_entry"],grn_ii:[59,2,1,"c.grn_ii"],grn_ii_buffer:[59,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[59,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[59,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[59,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[59,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[60,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[60,1,1,"c.grn_index_cursor_open"],grn_info_type:[61,2,1,"c.grn_info_type"],grn_init:[71,1,1,"c.grn_init"],grn_obj:[63,2,1,"c.grn_obj"],grn_obj_add_hook:[58,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[63,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[63,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[63,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[63,1,1,"c.grn_obj_close"],grn_obj_column:[63,1,1,"c.grn_obj_column"],grn_obj_db:[54,1,1,"c.grn_obj_db"],grn_obj_defrag:[63,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[63,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[58,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[63,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[61,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[58,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[61,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[58,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[63,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[63,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[63,1,1,"c.grn_obj_get_values"],grn_obj_id:[63,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[63,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[63,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[63,1,1,"c.grn_obj_lock"],grn_obj_name:[63,1,1,"c.grn_obj_name"],grn_obj_path:[63,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[63,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[63,1,1,"c.grn_obj_reinit"],grn_obj_remove:[63,1,1,"c.grn_obj_remove"],grn_obj_rename:[63,1,1,"c.grn_obj_rename"],grn_obj_search:[65,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[61,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[64,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[61,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[63,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[63,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[63,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[70,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[72,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[72,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[72,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[72,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[72,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[72,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[72,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[72,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[72,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[72,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[72,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[72,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[72,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[72,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[64,1,1,"c.grn_proc_create"],grn_proc_func:[64,2,1,"c.grn_proc_func"],grn_proc_get_info:[64,1,1,"c.grn_proc_get_info"],grn_proc_type:[64,2,1,"c.grn_proc_type"],grn_search_optarg:[65,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[51,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[55,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[62,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[48,1,1,"c.grn_set_lock_timeout"],grn_table_add:[66,1,1,"c.grn_table_add"],grn_table_at:[66,1,1,"c.grn_table_at"],grn_table_columns:[66,1,1,"c.grn_table_columns"],grn_table_create:[66,1,1,"c.grn_table_create"],grn_table_cursor:[67,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[67,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[67,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[67,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[67,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[67,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[67,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[67,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[67,1,1,"c.grn_table_cursor_table"],grn_table_delete:[66,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[66,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[66,1,1,"c.grn_table_difference"],grn_table_get:[66,1,1,"c.grn_table_get"],grn_table_get_key:[66,1,1,"c.grn_table_get_key"],grn_table_group:[66,1,1,"c.grn_table_group"],grn_table_group_flags:[66,2,1,"c.grn_table_group_flags"],grn_table_group_result:[66,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[66,1,1,"c.grn_table_lcp_search"],grn_table_rename:[66,1,1,"c.grn_table_rename"],grn_table_setoperation:[66,1,1,"c.grn_table_setoperation"],grn_table_size:[66,1,1,"c.grn_table_size"],grn_table_sort:[66,1,1,"c.grn_table_sort"],grn_table_sort_flags:[66,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[66,2,1,"c.grn_table_sort_key"],grn_table_truncate:[66,1,1,"c.grn_table_truncate"],grn_table_update:[66,1,1,"c.grn_table_update"],grn_table_update_by_id:[66,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[68,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[68,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[68,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[68,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[68,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[68,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[69,1,1,"c.grn_type_create"],grn_user_data:[70,2,1,"c.grn_user_data"]},"groonga-benchmark":{"--dir":[152,4,1,"cmdoption-groonga-benchmark-dir"],"--ftp":[152,4,1,"cmdoption-groonga-benchmark-ftp"],"--groonga":[152,4,1,"cmdoption-groonga-benchmark-groonga"],"--host":[152,4,1,"cmdoption-groonga-benchmark-i"],"--log-output-dir":[152,4,1,"cmdoption-groonga-benchmark-log-output-dir"],"--port":[152,4,1,"cmdoption-groonga-benchmark-p"],"--protocol":[152,4,1,"cmdoption-groonga-benchmark-protocol"],"-i":[152,4,1,"cmdoption-groonga-benchmark-i"],"-p":[152,4,1,"cmdoption-groonga-benchmark-p"],db:[152,4,1,"cmdoption-groonga-benchmark-arg-db"],script:[152,4,1,"cmdoption-groonga-benchmark-arg-script"]},"groonga-suggest-httpd":{"--daemon":[156,4,1,"cmdoption-groonga-suggest-httpd-d"],"--disable-max-fd-check":[156,4,1,"cmdoption-groonga-suggest-httpd-disable-max-fd-check"],"--log-base-path":[156,4,1,"cmdoption-groonga-suggest-httpd-l"],"--n-lines-per-log-file":[156,4,1,"cmdoption-groonga-suggest-httpd-n-lines-per-log-file"],"--n-threads":[156,4,1,"cmdoption-groonga-suggest-httpd-t"],"--port":[156,4,1,"cmdoption-groonga-suggest-httpd-p"],"--receive-endpoint":[156,4,1,"cmdoption-groonga-suggest-httpd-r"],"--send-endpoint":[156,4,1,"cmdoption-groonga-suggest-httpd-s"],"-d":[156,4,1,"cmdoption-groonga-suggest-httpd-d"],"-l":[156,4,1,"cmdoption-groonga-suggest-httpd-l"],"-p":[156,4,1,"cmdoption-groonga-suggest-httpd-p"],"-r":[156,4,1,"cmdoption-groonga-suggest-httpd-r"],"-s":[156,4,1,"cmdoption-groonga-suggest-httpd-s"],"-t":[156,4,1,"cmdoption-groonga-suggest-httpd-t"]},"groonga-suggest-learner":{"--daemon":[157,4,1,"cmdoption-groonga-suggest-learner-d"],"--log-base-path":[157,4,1,"cmdoption-groonga-suggest-learner-l"],"--log-level":[157,4,1,"cmdoption-groonga-suggest-learner-log-level"],"--log-path":[157,4,1,"cmdoption-groonga-suggest-learner-log-path"],"--receive-endpoint":[157,4,1,"cmdoption-groonga-suggest-learner-r"],"--send-endpoint":[157,4,1,"cmdoption-groonga-suggest-learner-s"],"-d":[157,4,1,"cmdoption-groonga-suggest-learner-d"],"-l":[157,4,1,"cmdoption-groonga-suggest-learner-l"],"-r":[157,4,1,"cmdoption-groonga-suggest-learner-r"],"-s":[157,4,1,"cmdoption-groonga-suggest-learner-s"]},grn_db_create_optarg:{builtin_type_names:[54,3,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[54,3,1,"c.grn_db_create_optarg.n_builtin_type_names"]},grnslap:{"-P":[150,4,1,"cmdoption-grnslap-p"],"-m":[150,4,1,"cmdoption-grnslap-m"],dest:[150,4,1,"cmdoption-grnslap-arg-dest"]},groonga:{"--address":[151,4,1,"cmdoption-groonga-a"],"--bind-address":[151,4,1,"cmdoption-groonga-bind-address"],"--cache-base-path":[151,4,1,"cmdoption-groonga-cache-base-path"],"--cache-limit":[151,4,1,"cmdoption-groonga-cache-limit"],"--config-path":[151,4,1,"cmdoption-groonga-config-path"],"--default-match-escalation-threshold":[151,4,1,"cmdoption-groonga-default-match-escalation-threshold"],"--default-request-timeout":[151,4,1,"cmdoption-groonga-default-request-timeout"],"--document-root":[151,4,1,"cmdoption-groonga-document-root"],"--encoding":[151,4,1,"cmdoption-groonga-e"],"--help":[151,4,1,"cmdoption-groonga-h"],"--log-level":[151,4,1,"cmdoption-groonga-l"],"--log-path":[151,4,1,"cmdoption-groonga-log-path"],"--log-rotate-threshold-size":[151,4,1,"cmdoption-groonga-log-rotate-threshold-size"],"--max-threads":[151,4,1,"cmdoption-groonga-t"],"--pid-path":[151,4,1,"cmdoption-groonga-pid-path"],"--port":[151,4,1,"cmdoption-groonga-p"],"--protocol":[151,4,1,"cmdoption-groonga-protocol"],"--query-log-path":[151,4,1,"cmdoption-groonga-query-log-path"],"--query-log-rotate-threshold-size":[151,4,1,"cmdoption-groonga-query-log-rotate-threshold-size"],"--server-id":[151,4,1,"cmdoption-groonga-i"],"-a":[151,4,1,"cmdoption-groonga-a"],"-c":[151,4,1,"cmdoption-groonga-c"],"-d":[151,4,1,"cmdoption-groonga-d"],"-e":[151,4,1,"cmdoption-groonga-e"],"-h":[151,4,1,"cmdoption-groonga-h"],"-i":[151,4,1,"cmdoption-groonga-i"],"-l":[151,4,1,"cmdoption-groonga-l"],"-n":[151,4,1,"cmdoption-groonga-n"],"-p":[151,4,1,"cmdoption-groonga-p"],"-s":[151,4,1,"cmdoption-groonga-s"],"-t":[151,4,1,"cmdoption-groonga-t"],command:[151,4,1,"cmdoption-groonga-arg-command"],dest:[151,4,1,"cmdoption-groonga-arg-dest"]}},objnames:{"0":["c","macro","C macro"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","member","C member"],"4":["std","cmdoption","program option"]},objtypes:{"0":"c:macro","1":"c:function","2":"c:type","3":"c:member","4":"std:cmdoption"},terms:{"000000000b123456":33,"000x":17,"00n":149,"00z":156,"01t00":156,"0\u306e\u79d2\u8868\u8a18":234,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":58,"0\u30d9\u30fc\u30b9\u3067":[66,67],"0\u30ea\u30ea\u30fc\u30b9":33,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":151,"0mq":40,"0x0":[38,216,238],"0x01":231,"0x02":231,"0x04":231,"0x08":231,"0x10":231,"0x20":191,"0x7fa0d5d7ed00":84,"0xc7":231,"10000cent":214,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":216,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":150,"10041\u756a":151,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":151,"10043\u756a":151,"10055\u306fwindows\u306e\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u3092\u8868\u3057\u3066\u3044\u307e\u3059":[],"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":234,"100cent":214,"100mb":33,"100x":[33,43],"100x100":163,"100x150":164,"1024r":12,"1073741824\u306e\u6574\u6570\u3067":76,"10m":153,"10t13":[208,209,211],"10t22":209,"10z":192,"128452975x503157902":[238,240,245,248],"128487316x502920929":[240,248],"128515259x503187188":[240,248],"1285858800\u306f2010":234,"128mb":39,"12gb":236,"135960000x":162,"13\u7528rpm\u306e\u63d0\u4f9b":35,"143660000x419009000":162,"145508000x":162,"146249000x":244,"146566000x":[162,244],"146607190x":244,"146710080x":244,"146741340x":244,"146867000x":244,"150x100":164,"152489000x":244,"15min":43,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":87,"16bit":216,"16gb":236,"16gib":215,"175904000x8464000":162,"185428000x":162,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":80,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":67,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":37,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":80,"1\u3068command":80,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":58,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":152,"1\u30ea\u30ea\u30fc\u30b9":33,"1\u5358\u8a9e\u6271\u3044":232,"1\u884c\u76ee":152,"1byte":231,"1gb":42,"1st":159,"1tib":[32,138,212],"1usec":43,"1x139":238,"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":67,"200byte":176,"20km":244,"21th":40,"23t02":192,"24byte":231,"256gib":32,"256kb":236,"256kib":215,"257662232kbyte":152,"29289245605469e":82,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":12,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":80,"2\u30ea\u30ea\u30fc\u30b9":33,"2\u884c\u76ee":152,"2byte":[85,231],"2nd":133,"2rd":133,"2st":133,"30ac":195,"314e":192,"32bit":[8,40,42,43,216],"32byte":42,"32gib":215,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":232,"3\u30ea\u30ea\u30fc\u30b9":33,"3\u884c\u76ee":152,"3rd":[40,43,133],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"4091b":[96,147],"4096byte":[42,212],"4097byte":212,"436218z":192,"44001770019531e":199,"45ea3034":194,"4\u30ea\u30ea\u30fc\u30b9":33,"4\u884c\u76ee":152,"4byte":231,"4e86e700":236,"4gib":[32,43,138,212,231],"4kib":[32,42,46,94,95,96,147,212],"4mib":119,"4th":133,"5367431640625e":199,"56058502197266e":199,"56880000x":162,"57f2ff87d45d7f0f525e2216":43,"58043f77614116a2568d529c":43,"59\u74b0\u5883\u306b\u304a\u3044\u3066":37,"5\u30ea\u30ea\u30fc\u30b9":33,"5th":133,"64bit":[8,42,119,216],"64kib":42,"65535byte":42,"6813819x139":[238,248],"6909211x139":248,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":12,"6\u30ea\u30ea\u30fc\u30b9":33,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":14,"6elz":41,"6gib":215,"7\u30ea\u30ea\u30fc\u30b9":33,"80ghz":152,"82pre":44,"8\u306b\u5bfe\u5fdc":35,"8\u30ea\u30ea\u30fc\u30b9":[12,33],"8bit":216,"8byte":[32,231],"93933868408203e":199,"975mbyte":152,"\u3042\u3068\u306f":[],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":12,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":12,"\u3042\u308a\u307e\u305b\u3093":[109,125,139],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":163,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[163,164],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":11,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":80,"\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":80,"\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":80,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":80,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":216,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":10,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":10,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":76,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":80,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":11,"\u3044\u307e\u3059":10,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":35,"\u304a\u3070\u305f\u3055\u3093":34,"\u304a\u3088\u3073":12,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":60,"\u304b\u3089\u8ffd\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[],"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":151,"\u304bwgs84geopoint":[163,164],"\u304c\u3042\u308a\u307e\u3059":12,"\u304c\u306a\u3044\u5834\u5408":12,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":35,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":232,"\u304c\u5fc5\u8981\u3067\u3059":12,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":175,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":163,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":66,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":66,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":66,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[50,66],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u304c\u8fd4\u3055\u308c\u307e\u3059":63,"\u3050\u308b\u3093\u304c":[191,192],"\u3050\u308b\u3093\u304c\u592a\u90ce":240,"\u3050\u308b\u3093\u304c\u6b21\u90ce":240,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u3053\u3053\u3067\u306f":234,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":234,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u3082":234,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":10,"\u3053\u306e\u3068\u304d":232,"\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":234,"\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":234,"\u3053\u306e\u3088\u3046\u306bn":234,"\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":234,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":152,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":152,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":152,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":232,"\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":234,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":12,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":151,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":152,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":12,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":11,"\u3053\u306e\u4f5c\u696d\u306f":12,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":12,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":12,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":152,"\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":234,"\u3053\u306e\u5834\u5408":67,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":234,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":234,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":234,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":234,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":234,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":234,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":234,"\u3053\u306e\u624b\u9806\u306f\u30b9\u30ad\u30c3\u30d7\u3057\u3066\u69cb\u3044\u307e\u305b\u3093":12,"\u3053\u306e\u624b\u9806\u306f\u7701\u7565\u53ef\u80fd\u3067\u3059":12,"\u3053\u306e\u64cd\u4f5c\u306f":66,"\u3053\u306e\u65b9\u6cd5\u3067ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u308b\u4e8b\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"\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":234,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":232,"\u3053\u306e\u7d50\u679c\u306f":152,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":232,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":163,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":12,"\u3053\u308c\u3067":12,"\u3053\u308c\u306b\u3088\u308a":12,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":12,"\u3053\u308c\u306b\u5bfe\u3057\u3066":232,"\u3053\u308c\u306f":234,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":76,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":234,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":11,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":12,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":152,"\u3055\u3089\u306b":[],"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":80,"\u3057\u304b\u3057":[216,232,234],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":12,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093":10,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":232,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":12,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":152,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":80,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":152,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":14,"\u3059\u308b\u3068":14,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":35,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":10,"\u3059\u308b\u3068\u6b21\u306esoerr\u304c\u898b\u3064\u304b\u308a\u307e\u3059":[],"\u3059\u308b\u3068groonga":12,"\u305d\u3053\u3067":234,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":12,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":139,"\u305d\u306e\u305f\u3081":[12,101,152,232,234],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":12,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":216,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":80,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":12,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":12,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":152,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":58,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":234,"\u305d\u306e\u5834\u5408":12,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":12,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":80,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":151,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":80,"\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":80,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":67,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":11,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":10,"\u305d\u306e\u969b":12,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":66,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":66,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":63,"\u305d\u308c\u305e\u308c":14,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":151,"\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":232,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":232,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":11,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":232,"\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":234,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":63,"\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":234,"\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":232,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":11,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":150,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":150,"\u305d\u308c\u3089\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u65e7ji":67,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":69,"\u305f\u3060\u3057":[67,76,151,232],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":34,"\u305f\u3068\u3048\u3070":232,"\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":80,"\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":234,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":234,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":12,"\u3060\u3068\u539f\u56e0\u306f":10,"\u3064\u307e\u308atest":12,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":234,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":11,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":11,"\u3067\u3042\u308c\u3070":152,"\u3067\u3059\u306d":10,"\u3067\u306f\u306a\u304ffree":35,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":12,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":234,"\u3067\u306f\u6607\u9806":66,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":66,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":53,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":234,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":151,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":234,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":234,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":35,"\u3067\u4f5c\u6210\u3057\u305f":53,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":151,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":53,"\u3067\u533a\u5207\u308a\u307e\u3059":151,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":76,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":152,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":35,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":67,"\u3067\u78ba\u4fdd\u3057\u305f":53,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":139,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":53,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":53,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":63,"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":35,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":232,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":232,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092grep\u3057\u307e\u3059":[],"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":234,"\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":152,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":152,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":152,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":152,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u9069\u5b9c\u4fee\u6b63\u3057\u307e\u3059":12,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":10,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":232,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":232,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":216,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":232,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":232,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":232,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":232,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":152,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":12,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"\u3068\u306a\u308a":234,"\u3068\u308a\u3068\u3093":[191,192],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":152,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":152,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":234,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":234,"\u3068\u5171\u306b":50,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":63,"\u3068\u540c\u3058\u610f\u5473":151,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":34,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":152,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":163,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":12,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":234,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":10,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":10,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":53,"\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":232,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":152,"\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":63,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":63,"\u306b\u3042\u308b":63,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":67,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":67,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":12,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u306b\u306a\u308a\u307e\u3059":53,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":232,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":87,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":139,"\u306b\u307e\u3068\u3081\u307e\u3059":12,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":232,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":53,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":216,"\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210\u3057":12,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":232,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":232,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":234,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":234,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":151,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":152,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":152,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":151,"\u306b\u8a2d\u5b9a\u3059\u308b":12,"\u306b\u8ffd\u52a0\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044":12,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":152,"\u306e2\u5358\u8a9e\u6271\u3044":232,"\u306e3\u30d5\u30e9\u30b0\u306f":67,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[65,66,69],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[66,163,164],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":151,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u306e\u307b\u304b\u306b":216,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":67,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":151,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":151,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u306e\u30ab\u30e9\u30e0":[88,99],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[35,37],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":99,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":88,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":35,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":35,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":151,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":10,"\u306e\u5834\u5408\u306f":10,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":69,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":35,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":152,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":151,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":64,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":175,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":175,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":139,"\u306ebase_version\u306e\u66f4\u65b0":12,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":67,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":234,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":35,"\u306exml\u51fa\u529b\u5bfe\u5fdc":35,"\u306f\u306a\u304f":34,"\u306f\u7121\u52b9\u3067\u3042\u308a":67,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[66,67],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":63,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":234,"\u3072\u308d\u3042\u304d":246,"\u3072\u308d\u3086\u304d":246,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":152,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":12,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":50,"\u307e\u305f\u306f":152,"\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":[87,88,92,98,99,101,108,109,125,139],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":151,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":151,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":152,"\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":53,"\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":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_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":152,"\u307e\u305f\u540c\u6642\u306b":152,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":66,"\u307e\u305fgroonga":152,"\u307e\u3060\u81ea\u5206\u7528\u306b\u6697\u53f7\u5316\u3055\u308c\u305f\u9375\u304c\u7121\u3044\u5834\u5408\u306b\u306f":12,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":80,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":10,"\u307e\u308d\u3086\u304d":246,"\u3080\u308b\u3093\u304c":[191,192],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":160,"\u3082\u3057\u304f\u306f":[66,67,216],"\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":152,"\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":152,"\u3082\u3057groonga":152,"\u3082\u3057test":152,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":232,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":80,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":10,"\u3084red":12,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"\u3086\u304d\u3072\u308d":246,"\u3088\u3063\u3066":216,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":163,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":152,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u308d\u3086\u304d":246,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":14,"\u3092\u3082\u3068\u306b":[],"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":216,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":35,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":60,"\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u3092\u516c\u958b":35,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":12,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[152,216,234],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":50,"\u3092\u6307\u5b9a\u3057":[67,88,99],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":67,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":11,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":67,"\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":67,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":67,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":67,"\u3092\u6307\u5b9a\u3057\u3066\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":67,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":66,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[12,50,54,61,63,66,69,151,152],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[50,67],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":66,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":66,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":50,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"\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":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":66,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":67,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":67,"\u3092\u683c\u7d0d\u3057\u307e\u3059":50,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":14,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":63,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":163,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u3092\u8a08\u7b97\u3059\u308b":34,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":152,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u3092\u8fd4\u3057\u307e\u3059":[58,63,66,67],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":34,"\u3092\u8ffd\u52a0":[35,37],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":64,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":69,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":12,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":35,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":150,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":63,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6e08\u307f\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664\u3067\u304d\u308b":12,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[232,234],"\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":234,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":12,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":152,"\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":152,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":92,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":88,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":12,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":151,"\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":151,"\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":62,"\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":62,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[88,92,98,108,109],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[88,92,98,108,109],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":63,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089\u8abf\u67fb\u3059\u308b\u3068":[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u51fa\u305f\u969b\u306e\u72b6\u6cc1\u304b\u3089":[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3054\u3068\u306e\u89e3\u6790\u65b9\u6cd5\u3092\u8a18\u8f09\u3057\u307e\u3059":[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5":[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":35,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":88,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":88,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":99,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":87,"\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":53,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":53,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":152,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":152,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":152,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":3,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":14,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[50,63],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":63,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":50,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":67,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":67,"\u30ab\u30ec\u30fc":232,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":232,"\u30ab\u30f3\u30b8":173,"\u30ab\u30f3\u30de":101,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":34,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u30ad\u30fc":151,"\u30ad\u30fc\u304c":151,"\u30ad\u30fc\u30ef\u30fc\u30c9":36,"\u30af\u30a8\u30ea\u306e":234,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":234,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":150,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[3,4,22],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[3,4,22],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":11,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":34,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":151,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059":125,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":35,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":151,"\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":151,"\u30b0\u30eb\u30fc\u30d7\u5316":76,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":76,"\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":76,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":76,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":35,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":232,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":34,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":216,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":216,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":35,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":151,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":80,"\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":80,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":80,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":80,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":152,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":152,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":12,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":152,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":152,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":151,"\u30b3\u30de\u30f3\u30c9\u540d":151,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":151,"\u30b3\u30df\u30c3\u30c8":12,"\u30b3\u30e1\u30f3\u30c8\u884c":152,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":35,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":87,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":35,"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":80,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"\u30b5\u30fc\u30d0":151,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":152,"\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":152,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":151,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\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":152,"\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":152,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":151,"\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":152,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":151,"\u30b7\u30a7\u30eb\u4e0a":152,"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u307e\u305f\u306f":[],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":151,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":37,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":152,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":152,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":152,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":151,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":151,"\u30b9\u30ec\u30c3\u30c9\u6570":152,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":152,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":152,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":152,"\u30b9\u30fc\u30d7":232,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":232,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":232,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":232,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":87,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":125,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":152,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":152,"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u306e\u89e3\u6790\u65b9\u6cd5":[],"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u3092\u6271\u3046\u30de\u30af\u30ed\u3067\u3042\u308b":[],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":14,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":133,"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":12,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":12,"\u30c0\u30e1\u30fc\u30b8":234,"\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":87,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":87,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":87,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":87,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":87,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":37,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":35,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":14,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":14,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":14,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":3,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306f":14,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[3,4,6,7,8,22],"\u30c6\u30b9\u30c8\u74b0\u5883\u3067\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e":12,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":3,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":234,"\u30c6\u30fc\u30d6\u30eb":88,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":151,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":151,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":151,"\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":151,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":92,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":151,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":139,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":76,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":139,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":67,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":67,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":139,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":151,"\u30c6\u30fc\u30d6\u30eb\u540d":[88,99,139],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":139,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":216,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":139,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":139,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":98,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":87,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":34,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":12,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":87,"\u30c7\u30d0\u30c3\u30b0\u7528\u3084\u958b\u767a\u7528\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c6\u30b9\u30c8\u7528\u306b\u516c\u958b\u3059\u308b\u6642\u306f":12,"\u30c7\u30d5\u30a9\u30eb\u30c8":11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[151,152],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":151,"\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":80,"\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":109,"\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":62,"\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":62,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":34,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":51,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":51,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":55,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":151,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":216,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[150,151],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":34,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":88,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":99,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":152,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":101,"\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":101,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":101,"\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":151,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":11,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":34,"\u30c7\u30fc\u30e2\u30f3":151,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u30c8\u30e2\u3061\u3083\u3093":240,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[22,233],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u57cb\u3081\u8fbc\u307e\u308c\u3066\u3044\u308b\u5b9f\u884c\u7d50\u679c\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":12,"\u30cb\u30c3\u30dd\u30f3":[173,198,208],"\u30cb\u30db\u30f3":[173,198,208],"\u30cb\u30db\u30f3\u30b4":208,"\u30cb\u30db\u30f3\u30b8\u30f3":208,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":234,"\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":151,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":87,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":87,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":87,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":87,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":87,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":87,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":87,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":87,"\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":33,"\u30d0\u30fc\u30b8\u30e7\u30f31":33,"\u30d0\u30fc\u30b8\u30e7\u30f3\u4e00\u89a7\u306e\u4e0a\u306b\u3042\u308b":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":37,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":12,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":150,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":11,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":12,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":12,"\u30d5\u30a1\u30a4\u30eb":12,"\u30d5\u30a1\u30a4\u30eb\u3092\u7de8\u96c6\u3057\u305f\u3089":12,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":37,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":87,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":99,"\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":99,"\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":63,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u306a\u3069\u3092\u3082\u3068\u306b":12,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":35,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":36,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":14,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":80,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":80,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":151,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":151,"\u30d9\u30af\u30bf\u306e\u5024\u3092":35,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":216,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":12,"\u30db\u30b9\u30c8\u30de\u30b7\u30f3\u306e\u6027\u80fd\u306b\u8907\u6570\u53f0\u306evm\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3060\u3051\u306e\u4f59\u88d5\u304c\u306a\u3044\u5834\u5408\u306f":12,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":152,"\u30db\u30b9\u30c8\u540d\u3068":152,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[150,151],"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":63,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":92,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":216,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":34,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[35,37],"\u30e1\u30e2\u30ea\u30fc\u4e0d\u8db3\u307e\u305f\u306f":[],"\u30e1\u30e2\u30ea\u4e0d\u8db3\u3060\u3063\u305f\u306e\u304b\u3092\u5224\u65ad\u3057\u307e\u3059":[],"\u30e1\u30fc\u30c8\u30eb":163,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[3,4,22,43],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":10,"\u30e6\u30fc\u30b6\u540d":152,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":150,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":150,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":150,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6295\u7a3f\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[3,4,22,43],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u65e5":12,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30f3\u30af\u306e\u5148\u3067":12,"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":12,"\u30ea\u30f3\u30af\u3092\u8fbf\u308b\u3068":12,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":76,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":76,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":76,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":76,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":35,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":67,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":34,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":37,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u30ed\u30b0\u306b\u51fa\u3066\u3044\u308b\u306e\u306faccept\u306e\u307f\u306a\u306e\u3067":[],"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":108,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":109,"\u30ed\u30b0\u3092":12,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":12,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":109,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":152,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":152,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":109,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":109,"\u30ed\u30b0\u51fa\u529b":108,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":151,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":151,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":151,"\u30ed\u30fc\u30de\u30b8":[173,198],"\u30ed\u30fc\u30de\u5b57":173,"\u30ed\u30fc\u30de\u5b57\u5165\u529b":198,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":99,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":232,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":50,"\u4e00\u65b9":234,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":63,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":63,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":63,"\u4e00\u822c\u7684\u306b\u306f":63,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":152,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":66,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":12,"\u4e0a\u8a18\u306e\u30b3\u30fc\u30c9\u304b\u3089":[],"\u4e0a\u8a18\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089":[],"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":234,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":152,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":12,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":35,"\u4e0b\u8a18":67,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":87,"\u4e0b\u8a18\u306e\u6700\u5f8c\u306e\u884c\u304c\u4f8b\u3067\u51fa\u529b\u3055\u308c\u305f\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306b\u8a72\u5f53\u3059\u308b\u3068\u308f\u304b\u308a\u307e\u3059":[],"\u4e0d\u5b89\u5b9a\u7248\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u524a\u9664\u7528\u306e\u30da\u30fc\u30b8":12,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u4e0e\u3048":234,"\u4e16\u754c\u6e2c\u5730\u7cfb":216,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[163,164],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":11,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":101,"\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":87,"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":35,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":216,"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":76,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":76,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":139,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":76,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":175,"\u4e8c":198,"\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":80,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u4eac\u90fd":[214,232,234],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":109,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":80,"\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066":12,"\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066\u7f72\u540d\u7528\u306e\u9375\u3092\u6697\u53f7\u5316\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044":12,"\u4ed8\u8d85\u7fa4":33,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":92,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":12,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":152,"\u4ee5\u4e0b":152,"\u4ee5\u4e0b\u3067":234,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":11,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":11,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":232,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044":12,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":101,"\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":232,"\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":234,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":234,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":151,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[12,14],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":12,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":12,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":151,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":151,"\u4ee5\u964d\u3092\u7121\u8996":35,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":151,"\u4efb\u610f\u306edb\u540d":152,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":37,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":152,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":12,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":54,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":151,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u4f5c\u696d\u30de\u30b7\u30f3\u4e0a\u306bgroonga\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u4f9d\u5b58\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u4e00\u5f0f\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":80,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":53,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":87,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":87,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":80,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":80,"\u4f8b":[12,22,34,63,233],"\u4f8b\u3048\u3070":[63,151,152,232,234],"\u4fee\u6b63\u304c\u5fc5\u8981\u306a\u7b87\u6240\u3092\u8abf\u3079\u3066":12,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":80,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":234,"\u500b\u4eba\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u306a\u304f":12,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u5024":151,"\u50241":151,"\u50242":151,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":151,"\u5024\u306e\u7bc4\u56f2\u306f1":76,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"\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":63,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[61,63],"\u5065\u4f5c":240,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":11,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":152,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":152,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":76,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":98,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":67,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":234,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":12,"\u5177\u4f53\u7684\u306a\u5909\u66f4\u70b9\u306e\u8a18\u8ff0\u65b9\u6cd5\u306f\u5f8c\u8ff0\u3057\u307e\u3059":12,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5185\u8a33\u306f":234,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":66,"\u5185\u90e8\u7684\u306a\u5909\u66f4":12,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":163,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":163,"\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":163,"\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":163,"\u518d\u5ea6po\u30d5\u30a1\u30a4\u30eb\u3068html\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":234,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":58,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":76,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":152,"\u51fa\u529b\u3055\u308c\u305f\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[],"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":108,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":152,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":152,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":101,"\u5206\u5272":232,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":14,"\u521d\u671f\u5024\u306f10\u3067\u3059":150,"\u521d\u671f\u5316\u3055\u308c\u305f":53,"\u521d\u671f\u5316\u3059\u308b":53,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u521d\u671f\u5316\u6e08\u307f\u306e":54,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":234,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":10,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":76,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":35,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":35,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":92,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":92,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":12,"\u524d\u63d0\u6761\u4ef6":3,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":34,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":234,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u52c9\u5f37":214,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":80,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":12,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":101,"\u534a\u5f84":163,"\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":163,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":67,"\u5358\u4f4d":[69,163],"\u5358\u72ec\u306e\u5024":50,"\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":163,"\u539f\u56e0":[22,233],"\u539f\u56e0\u3092\u89e3\u6790\u3059\u308b\u65b9\u6cd5\u306f\u3044\u307e\u307e\u3067":[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":12,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":152,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059":10,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":63,"\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":63,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":63,"\u53f3\u4e0a":34,"\u53f3\u4e0b":34,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":35,"\u5404\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u5411\u3051\u306e\u30d3\u30eb\u30c9\u304c\u9806\u756a\u306b\u884c\u308f\u308c\u307e\u3059":12,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":152,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":152,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":11,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":152,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":87,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":133,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":76,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":152,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":87,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":12,"\u540c\u3058\u3067\u3059":152,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":80,"\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":234,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[22,233],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":80,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":152,"\u540c\u6642\u306b":9,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":67,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":37,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[50,63],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":63,"\u5426\u5b9a":11,"\u542b\u3081\u306a\u3044\u3082\u306e":12,"\u542b\u3081\u308b\u3082\u306e":12,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":61,"\u547c\u51fa\u5074\u3067\u6e96\u5099":61,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[50,63,66],"\u554f\u984c\u3042\u308a":37,"\u554f\u984c\u306fgroonga":152,"\u554f\u984c\u3092\u4fee\u6b63":35,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":12,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":10,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u578b":69,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":50,"\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":60,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":66,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":12,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":64,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":76,"\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":62,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":66,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":150,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":66,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":101,"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":34,"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":66,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":66,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":66,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":234,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":232,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":232,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":234,"\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":232,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":232,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":232,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":151,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":76,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":50,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":53,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\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":150,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":150,"\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":151,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5b9f\u884c\u3067\u304d\u307e\u3059":12,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":66,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":58,"\u5b9f\u884c\u4f8b":[14,80],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":11,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":152,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":234,"\u5bfe\u5fdc":36,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":63,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":66,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[63,66],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":66,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":66,"\u5bfe\u7b56\u65b9\u6cd51":[22,233],"\u5bfe\u7b56\u65b9\u6cd52":[22,233],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[88,99],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[88,99],"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":150,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\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":67,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[50,63,66],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":66,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[60,67],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[50,54,58,61,63,64,70],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[50,63,66,67],"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u5de6\u4e0a":34,"\u5de6\u4e0b":34,"\u5dee\u5206\u3092":152,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":216,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":216,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":163,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":164,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":80,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":152,"\u5f15\u6570\u3068\u3057\u3066":11,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":151,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":11,"\u5f15\u6570\u540d":151,"\u5f15\u6570\u540d1":151,"\u5f15\u6570\u540d2":151,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":151,"\u5f37":214,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":63,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":80,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":63,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":63,"\u5f62\u5f0f1":151,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":151,"\u5f62\u5f0f2":151,"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":151,"\u5f8c\u8ff0\u3057\u307e\u3059\u304c":12,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"\u5f93\u3063\u3066":133,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":11,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":11,"\u5fa9\u53f7\u3057\u305f\u9375":12,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":12,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":11,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":139,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":139,"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[88,92,98,108,109],"\u623b\u308a\u5024\u3067\u3042\u308b":60,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":60,"\u624b\u7d9a\u304d":64,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u62c5\u5f53\u8005":12,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":152,"\u62e1\u5f35\u5b50\u306f":152,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":152,"\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":80,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":80,"\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":80,"\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":80,"\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":80,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":152,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":87,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":160,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":160,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":35,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":34,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":11,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":152,"\u6307\u5b9a\u3059\u308b":54,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":163,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":152,"\u63a5\u7d9a\u3059\u308bgroonga":152,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":152,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":152,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":150,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":152,"\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":152,"\u63a5\u7d9a\u6570\u304c\u591a\u304b\u3063\u305f\u306e\u304b":[],"\u63a5\u7d9a\u6570\u304c\u591a\u3059\u304e\u308b\u5834\u5408\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3057\u305f":[],"\u63d0\u6848\u3092\u884c\u3046":35,"\u6539\u884c\u6587\u5b57\u306f":151,"\u6570\u5024":232,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":34,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":163,"\u6570\u5b57":152,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":234,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":234,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":160,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":151,"\u65b0\u3057\u3044\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4efb\u547d\u3055\u308c\u305f\u3070\u304b\u308a\u3067":12,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":63,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[50,63],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":66,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":109,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":54,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":66,"\u65b0\u4efb\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u5fc5\u305a":12,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u306e\u307f\u884c\u3044\u307e\u3059":12,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":12,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":163,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":152,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":109,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":54,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":66,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":66,"\u65e5":214,"\u65e5\u3005":10,"\u65e5\u672c":[173,198,208,214],"\u65e5\u672c\u4eba":208,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[163,164],"\u65e5\u672c\u8a9e":208,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":214,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c6\u30b9\u30c8\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c6\u30b9\u30c8\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":12,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":216,"\u660e\u6587\u5316\u3057\u3066\u3044\u307e\u305b\u3093\u3067\u3057\u305f":[],"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":35,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":80,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806":3,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":34,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u6700\u5f8c\u306b":234,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":12,"\u6700\u5f8c\u306e":152,"\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":54,"\u672a\u6765\u306e\u65e5\u4ed8":12,"\u672c":214,"\u672c\u8a9e":214,"\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":234,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":11,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":11,"\u6771\u4eac":[214,232,234],"\u6771\u4eac\u90fd":[214,232,234],"\u6771\u4eac\u90fd\u6c11":[232,234],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":234,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":66,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u68ee\u7530":240,"\u691c\u7d22":[22,35,39,133,147,230,234],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":11,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":53,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":22,"\u691c\u7d22\u306e\u6319\u52d5":22,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":232,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":234,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":62,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":62,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":232,"\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":232,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":98,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":234,"\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":234,"\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":234,"\u691c\u7d22\u4f8b1":3,"\u691c\u7d22\u4f8b2":3,"\u691c\u7d22\u4f8b3":3,"\u691c\u7d22\u4f8b4":3,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":133,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":58,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":76,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u5bfe\u8c61\u306e":234,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":11,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":232,"\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":133,"\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":216,"\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":[98,151],"\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":76,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":232,"\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":133,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":11,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":163,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":163,"\u697d\u3057":[232,234],"\u697d\u3057\u3044billiard":[232,234],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":53,"\u69cb\u9020\u4f53\u306e\u914d\u5217":64,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":60,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":3,"\u6a19\u6e96\u5165\u529b":[87,88,92,98,99,101,108,109,125,139],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":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":151,"\u6b21\u306b":11,"\u6b21\u306b\u898b\u3064\u304b\u3063\u305fsoerr\u306e\u5f15\u6570\u306baccept\u304c\u5165\u3063\u3066\u3044\u308bsoerr\u3092\u3055\u304c\u3057\u307e\u3059":[],"\u6b21\u306bgroonga\u306etest":12,"\u6b21\u306f":[],"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":80,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":12,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":12,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":12,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":80,"\u6bb5\u843d\u60c5\u5831":50,"\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806":3,"\u6c11":232,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,"\u6c38\u7d9a\u7684\u306a":63,"\u6ce8\u610f":66,"\u6df1\u523b":234,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":11,"\u6e2c\u5730\u7cfb":216,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":216,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":11,"\u6f22\u5b57":173,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":63,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":12,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":59,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":14,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":12,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":152,"\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":152,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\u73fe\u5728":109,"\u73fe\u5728\u306f":[150,152],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":152,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":152,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":64,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":171,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":171,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":80,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":163,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":12,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":87,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":12,"\u7591\u4f3c\u30ab\u30e9\u30e0":76,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":175,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":164,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":164,"\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":164,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":12,"\u79d2":63,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u7a7a\u306e\u5834\u5408":[88,99],"\u7a7a\u767d":151,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":234,"\u7a7a\u767d\u3084":151,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":87,"\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":63,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":234,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":234,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":54,"\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":54,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[87,88,92,98,99,101,108,109,125,139],"\u7d44\u8fbc\u95a2\u6570\u306f":[160,163,164,171,175],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":216,"\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":216,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":216,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":63,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":152,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":66,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u7d9a\u3044\u3066":234,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":12,"\u7de8\u96c6\u8ddd\u96e2":34,"\u7def\u5ea6\u306f":216,"\u7e70\u308a\u8fd4\u3057\u6570":152,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":152,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":152,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":12,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":12,"\u811a\u6ce8":[92,163,164],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":10,"\u81ea\u5206\u306e\u666e\u6bb5\u4f7f\u3044\u306e\u79d8\u5bc6\u9375\u3092\u767b\u9332\u3057\u305f\u4e0a\u3067":12,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":152,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":152,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":152,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":76,"\u826f\u3044\u306e\u304b":10,"\u826f\u3044\u4f8b":10,"\u82b1\u5b50":240,"\u82f1\u8a9e":12,"\u884c":14,"\u884c\u3059\u308b":12,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":152,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":10,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":66,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":12,"\u8a18\u53f7":[151,234],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":35,"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":234,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":234,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":232,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\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":108,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":151,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":34,"\u8a72\u5f53\u3059\u308b\u30a8\u30e9\u30fc\u51fa\u529b\u306e\u5468\u8fba\u306e\u30b3\u30fc\u30c9\u3092\u898b\u308b\u3068\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":[],"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":63,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":67,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":152,"\u8a73\u7d30\u306f":[14,234],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u8a9e":[87,214],"\u8a9e\u306e":214,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":12,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":163,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":163,"\u8ad6\u7406\u548c":11,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":11,"\u8ad6\u7406\u7a4d":11,"\u8b66\u544a\u3092\u9664\u53bb":35,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":80,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":35,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":163,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":50,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":50,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":50,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":87,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":175,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\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":98,"\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":98,"\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":98,"\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":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\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":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":98,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":151,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":151,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":12,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4,22],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":76,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":234,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":234,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":234,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":10,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":234,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":234,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":232,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":232,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":234,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":234,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":232,"\u90fd":[214,232,234],"\u90fd\u6c11":[232,234],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":54,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":54,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":87,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":87,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":12,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":99,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":88,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":35,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[88,99],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":10,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"\u95a2\u4fc2\u5f0f":3,"\u95a2\u4fc2\u5f0f\u306f":11,"\u95a2\u6570":14,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":64,"\u95a2\u6570\u304c\u5f15\u6570\u3092":34,"\u95a2\u6570\u306e\u8ffd\u52a0":34,"\u95a2\u6570\u306f":[11,160,163,164,175],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":171,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":11,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":232,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":234,"\u95be\u5024\u3092\u3042\u3052\u308b":[22,233],"\u95be\u5024\u3092\u8d8a\u3048\u308b":234,"\u9759\u7684\u89e3\u6790":3,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":234,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":232,"\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":232,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[232,234],"\u975e\u4e92\u63db":37,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":12,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":151,"\u99c4\u76ee\u306a\u4f8b":10,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":11,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":9,"\uff4d\uff59\uff53\uff51\uff4c":[165,166],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":76,"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"a\u3092\u6307\u5b9a\u3057\u3066tabl":66,"accept\u304c\u5931\u6557\u3057\u305f\u539f\u56e0\u3092\u8ffd\u3063\u3066\u3044\u304d\u307e\u3059":[],"accept\u304c\u5931\u6557\u3057\u305f\u7406\u7531\u306f":[],"accept\u304c\u5931\u6557\u3059\u308b\u539f\u56e0\u306f":[],"accept\u3092\u5b9f\u884c\u3057\u3066\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u3053\u3068\u304c\u78ba\u8a8d\u3067\u304d\u307e\u3059":[],"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":151,"akio\u3055\u3093":35,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"akio\u3055\u3093\u304c\u5831\u544a":35,"akio\u3055\u3093\u304c\u63d0\u6848":35,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":12,"apt\u306e\u5834\u5408":12,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"aramaki\u3055\u3093":35,"aramaki\u3055\u3093\u304c\u5831\u544a":35,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":11,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":66,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":66,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":12,"base_version\u306ftar":12,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":152,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":152,"benchmark\u304c\u52d5\u4f5c\u3057":152,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":152,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":152,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":152,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":152,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":152,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":152,"benchmark\u306f":152,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":152,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":152,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":152,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":152,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":152,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":152,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":152,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":152,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":152,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":152,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":152,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":152,"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":152,"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":152,"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":232,"blog_body\u7d22\u5f15":234,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":12,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":234,"bom\u4ed8\u304dutf":35,"boolean":[22,40,43,44,132,191,216,237],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":14,"break":[37,39,41,42,43,149],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":50,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":50,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":63,"buffer\u306fsoerr\u30de\u30af\u30ed\u5185\u3067groonga\u304c\u7528\u610f\u3057\u3066\u3044\u308b\u30e1\u30c3\u30bb\u30fc\u30b8\u3067\u3059":[],"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":12,"build\u3092\u7528\u3044\u3066":14,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":12,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":54,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"builtin_type_names\u306b\u306f":54,"byte":[33,37,39,40,41,42,43,50,53,56,63,64,66,69,72,83,119,120,132,133,176,216,231],"byte\u9577":[50,63,66],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":11,"case":[28,33,37,40,41,42,43,46,49,53,54,68,72,78,89,90,93,100,102,111,121,127,133,138,141,144,153,156,157,159,166,169,173,174,176,191,192,197,202,203,204,205,208,214,215,223,236,238,239,241,243,244,247,248],"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":163,"centos\u306e\u5834\u5408":12,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"char":[41,50,53,54,55,56,63,64,66,68,69,72],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":14,"check\u30b3\u30de\u30f3\u30c9\u306f":87,"class":[133,165,166,167,176],"clearlock\u306f":88,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":12,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":12,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":50,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":50,"column\u306e\u5024\u304c":11,"column\u306f":50,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":50,"column_list\u30b3\u30de\u30f3\u30c9":34,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":92,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":9,"com\u304cedge\u3092\u4f5c\u308b":9,"com\u306f1\u30b9\u30ec\u30c3\u30c9":9,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":53,"command_version\u3092\u8fd4\u3057\u307e\u3059":53,"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":80,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":12,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":35,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":80,"configure\u306e":37,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":12,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":234,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"const":[38,50,53,54,55,56,63,64,66,67,69,72],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":14,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":53,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":50,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":63,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":66,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":53,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":53,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":53,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":53,"ctx_new\u3068\u3044\u3046queue\u306b":9,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":67,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":67,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":67,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":67,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":67,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":67,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":67,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":60,"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":67,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":14,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":14,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":14,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":12,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":36,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":63,"db\u3068\u306a\u308a\u307e\u3059":54,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":151,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[139,151],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":139,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":151,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":66,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":54,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":63,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":53,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":53,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"db_api\u306f":11,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":234,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":37,"debian\u7cfb":12,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"debian\u7cfb\u3082\u3057\u304f\u306fr":12,"debug\u3092\u8ffd\u52a0":35,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":35,"default":[0,6,7,8,18,23,32,33,37,38,39,40,41,42,43,48,53,78,89,90,101,103,104,105,106,110,111,112,113,115,119,121,128,133,134,135,136,138,140,142,144,151,153,156,159,162,174,191,192,193,194,199,203,205,209,215,216,225,229,231,238,239,241,245],"define_selector\u306f":98,"defrag\u306f":99,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"delete\u30b3\u30de\u30f3\u30c9":34,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":63,"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":80,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":80,"description\u306b":232,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":80,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":152,"dist\u3067\u751f\u6210\u3057\u305ftar":12,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":101,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":101,"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":101,"dump\u30b3\u30de\u30f3\u30c9":34,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":9,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":9,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":9,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"edge\u306fctx\u3092\u542b\u3080":9,"encoding\u306e\u5024\u304c":37,"examples\u4ee5\u4e0b\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067":12,"export":[18,33,37,40,41,42,43],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":63,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":70,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":64,"facebook\u306bgroonga\u30b0\u30eb\u30fc\u30d7\u304c\u3042\u308a\u307e\u3059":12,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":35,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":35,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":35,"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":12,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":35,"final":[71,72,78,133,153,235],"flags\u306b":[50,66],"flags\u306b\u306f":66,"float":[39,42,43,81,110,112,113,119,120,132,133,162,199,204,205,238],"function":[0,6,12,14,22,33,39,40,41,42,43,44,45,46,53,68,72,81,118,119,120,143,153,156,159,162,166,167,168,169,170,173,174,178,179,188,189,203,204,205,212,229,239,248],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":12,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":14,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":14,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":35,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":34,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":35,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":12,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":12,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":150,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":12,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":3,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":150,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":150,"gqtp\u306e\u5834\u5408":151,"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":234,"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":234,"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":234,"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":232,"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":232,"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":234,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":234,"grn_bool\u578b\u3092\u8ffd\u52a0":35,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":11,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":3,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":11,"grn_expr\u306f":11,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":11,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"grn_op_adjust\u306f":11,"grn_op_and\u306f":11,"grn_op_but\u306f":11,"grn_op_or\u306f":11,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":11,"grnslap\u306f":150,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":35,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":35,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":12,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":12,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":12,"groonga\u304c\u51fa\u529b\u3057\u3066\u3044\u308b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u304b\u3089\u8abf\u67fb\u3057\u3066\u3082\u826f\u3044\u3067\u3059":[],"groonga\u3067\u767a\u751f\u3059\u308b\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u306e\u89e3\u6790\u65b9\u6cd5\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":[],"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":34,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":12,"groonga\u306e\u30a8\u30e9\u30fc\u30ed\u30b0\u3067\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30a8\u30e9\u30fc\u30ed\u30b0\u304c\u3042\u308a\u307e\u3059":[],"groonga\u306e\u30ab\u30e9\u30e0\u306f":216,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":12,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":76,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":11,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":14,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":12,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":35,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":12,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":12,"groonga\u306epackag":12,"groonga\u306f":14,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":11,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[232,234],"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":234,"groonga\u306f\u69d8\u3005\u306a\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059\u304c":[],"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":11,"groonga\u3084mysql\u306erpm":12,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":10,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":10,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":152,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":12,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":12,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":80,"groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u6295\u7a3f\u3067\u304d\u307e\u3059":12,"groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u306a\u308b\u3068":12,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":152,"groonga\u30b3\u30de\u30f3\u30c9\u306b":35,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"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":151,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":35,"groonga\u30c1\u30fc\u30e0":12,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":152,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":80,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":12,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":125,"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":151,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":150,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":151,"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":150,"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":87,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":80,"groonga\u5358\u4f53\u3067test":152,"groonga\u53ca\u3073groonga":152,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[87,88,92,98,99,101,108,109,125,139],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":80,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":152,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":150,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":152,"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":152,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":87,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":88,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":92,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":99,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":101,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":108,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":109,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":125,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":139,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":160,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":163,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":164,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":171,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":175,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":10,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066autogen":12,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":12,"groonga_org_path\u306bgroonga":12,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":36,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"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":66,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":12,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":12,"gz\u306eversion\u304a\u3088\u3073vers":12,"hat\u7cfb":12,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"help\u3067\u51fa\u529b\u3055\u308c\u308b":37,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":14,"hiroshi\u3055\u3093":35,"hiroshi\u3055\u3093\u304c\u5831\u544a":35,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"homebrew\u306e\u66f4\u65b0\u306fgroonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u672c\u4f53\u306e\u30ea\u30ea\u30fc\u30b9\u8981\u4ef6\u306b\u306f\u542b\u307e\u308c\u307e\u305b\u3093":12,"homebrew\u3078pul":12,"hook\u306e\u5b9f\u884c\u9806\u4f4d":58,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":58,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":152,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":12,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":151,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":150,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":35,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":150,"http\u306e\u5834\u5408":151,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":151,"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":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":35,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":63,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":53,"import":[0,12,28,37,39,40,42,49,53,78,79,90,133,138,144,153,191,201,203,204,205,214,225,242],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":50,"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":60,"indexbuf\u306e\u30b5\u30a4\u30ba":50,"init\u76f4\u5f8c\u306e\u72b6\u614b":53,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":150,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":152,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"int":[39,42,43,48,49,50,53,54,56,57,58,59,60,62,63,64,66,67,68,69,72,199],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":152,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":12,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"js\u306a\u3069":12,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":67,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"key\u306b\u306f":66,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"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":66,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":66,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":66,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":67,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":66,"key\u3092\u8fd4\u3057\u307e\u3059":63,"key_type\u306bt":66,"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":232,"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":232,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":66,"keybuf\u306e\u30b5\u30a4\u30ba":66,"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":12,"launchpad\u306egroonga\u30c1\u30fc\u30e0\u306e\u30da\u30fc\u30b8\u3067\u5bfe\u8c61\u306eppa\u3092\u9078\u629e\u3057":12,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":12,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":37,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":35,"libedit\u5bfe\u5fdc":34,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":14,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":12,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"load\u30b3\u30de\u30f3\u30c9":34,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":12,"localstatedir\u3092\u4f7f\u7528":35,"log\u3067\u3059":151,"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":152,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":80,"log_put\u306f":108,"log_reopen\u306f":109,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":109,"long":[40,41,42,43,59,62,129,134,138,149],"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":216,"lucid\u304b\u3089":35,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":12,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":35,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"man\u3092\u8ffd\u52a0":34,"markdown\u30d1\u30fc\u30b5\u30fc":12,"marverick\u306b\u5909\u66f4":35,"masahiro\u3055\u3093":35,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":234,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":67,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":67,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":67,"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":67,"max\u3068common":67,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":67,"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":67,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":67,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":12,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":34,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":35,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":37,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":14,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":67,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":67,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":67,"mooz\u3055\u3093":37,"mooz\u3055\u3093\u304c\u4fee\u6b63":37,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":63,"msg\u306fcom\u306b\u3088\u3063\u3066":9,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":9,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":66,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":34,"n_builtin_type_names\u306b\u306f":54,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":63,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":53,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":64,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":69,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":63,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":50,"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":66,"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":66,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[50,63,66],"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":66,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[50,63],"namebuf\u306e\u30b5\u30a4\u30ba":[50,63],"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":12,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"new":[0,3,6,7,12,18,22,25,46,48,49,50,53,54,63,68,72,82,83,84,89,90,93,94,95,96,97,101,102,104,105,106,110,111,112,113,114,115,118,119,120,121,122,123,124,128,129,132,133,134,135,137,138,140,141,143,146,147,149,151,153,156,161,162,166,168,169,170,177,178,187,188,189,191,192,193,202,204,205,206,210,214,217,219,220,221,231,238,241,244],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8":12,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":50,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":34,"null":[6,7,11,33,37,39,40,41,42,43,49,53,56,57,64,68,72,86,90,101,102,104,105,106,110,111,112,113,115,119,120,128,131,132,133,138,141,142,143,144,165,166,167,176,188,235],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":66,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[50,66],"null\u306a\u3089temporari":54,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":67,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":67,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":53,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":34,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":54,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":66,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":63,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":58,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":58,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":58,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":58,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":63,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":63,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":63,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":63,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":63,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":63,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":63,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":63,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":54,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":61,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":63,"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":61,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":63,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":61,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":61,"obj\u306f":63,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":63,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":63,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":63,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":65,"obj\u3092lock\u3057\u307e\u3059":63,"obj\u3092unlock\u3057\u307e\u3059":63,"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":63,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":70,"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":58,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":58,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":58,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":64,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":58,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":63,"offset\u306f":66,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":66,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":12,"ongaeshi\u3055\u3093":35,"ongaeshi\u3055\u3093\u304c\u5831\u544a":35,"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":65,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":50,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":152,"org\u304c\u30db\u30b9\u30c8\u3092":12,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":152,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":152,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":152,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"org\u306edoc":12,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":12,"output_columns\u304b\u3089_value\u3092\u524a\u9664":35,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":101,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":11,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":67,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":152,"path\u3092":35,"pc\u306bgroonga":36,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":151,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":12,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":12,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[163,164],"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":163,"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":164,"point\u578b\u306e\u5024":[163,164],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[163,164],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":67,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":66,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"public":41,"push\u3057\u3066groonga":12,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":36,"quit\u306f":125,"rb\u3092\u8ffd\u52a0":35,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":12,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":12,"repositories\u914d\u4e0b\u306b":12,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"request\u3092\u9001\u308a\u307e\u3057\u305f":12,"request\u3092\u9001\u308a\u307e\u3059":12,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":66,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":66,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":11,"return":[22,33,37,39,40,41,42,43,45,48,49,50,53,54,55,56,57,63,66,68,71,72,79,81,153,191,192,194,208,209,210,211,225,231,235,239,241,244,247,248],"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":60,"root\u306b\u5909\u66f4":35,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":151,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"rst\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":12,"rst\u306e\u5185\u5bb9":12,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":12,"s3ki\u3055\u3093":35,"s3ki\u3055\u3093\u304c\u5831\u544a":35,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"scorer\u306f":133,"scr\u3067\u3059":152,"scr\u306e\u4e2d\u8eab\u304c":152,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":152,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[160,163,164,171,175],"search\u3092\u884c\u3044":[66,67],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":67,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":50,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":50,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":152,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":34,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":80,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"select\u30b3\u30de\u30f3\u30c9":34,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":152,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":152,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":12,"sh\u306e\u307f\u306a\u3089\u305a":14,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":14,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":12,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":14,"shibuya\u3055\u3093":35,"shibuya\u3055\u3093\u304c\u5831\u544a":35,"shimada\u3055\u3093":35,"shimada\u3055\u3093\u304c\u5831\u544a":35,"short":[33,78,153],"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":216,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":35,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":37,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":66,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":66,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":12,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"static":[33,37,41,42,43,68,154,241],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":152,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":35,"status\u30b3\u30de\u30f3\u30c9":34,"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":160,"string\u306b":11,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":66,"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":66,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":66,"table\u304c":66,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":50,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":66,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":67,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":66,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":66,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":66,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":66,"table\u306ecolumn":66,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":66,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":66,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":66,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":66,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":66,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":66,"table\u306fcolumn\u3068\u306f\u5225\u306b":66,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":66,"table_list\u306f":139,"takahiro\u3055\u3093":35,"takahiro\u3055\u3093\u304c\u5831\u544a":35,"takahiro\u3055\u3093\u304c\u63d0\u6848":35,"takashi\u3055\u3093":37,"takashi\u3055\u3093\u304c\u5831\u544a":37,"takuto\u3055\u3093":35,"takuto\u3055\u3093\u304c\u5831\u544a":35,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":152,"textile\u30d1\u30fc\u30b5\u30fc":12,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":60,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":234,"tokenbigram\u306a\u3069":234,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":234,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":232,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":232,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":234,"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":232,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":234,"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":234,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":36,"tokenmecab\u3067\u306f":234,"tokenmecab\u306e\u5834\u5408":234,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":232,"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":232,"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":232,"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":234,"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":234,"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":234,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":234,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"tomita\u3055\u3093\u304c\u5831\u544a":35,"tomotaka_ito\u3055\u3093":37,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":37,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":164,"travisci\u306e\u7d50\u679c\u304c\u6b63\u5e38\u3067\u3042\u308c\u3070":12,"true":[34,40,41,42,43,46,78,88,89,90,91,92,93,94,95,96,97,98,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,118,119,120,121,122,123,127,128,129,130,131,132,133,134,137,138,140,141,142,146,156,159,162,163,164,165,166,167,168,169,170,173,174,176,179,188,191,192,193,195,198,202,203,204,205,213,216,238,239,240,241,243,246,247,248],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":37,"try":[3,33,42,48,94,151,214,224,243,244],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":10,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":10,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":10,"twitter\u7b49\u3067\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u969b\u306f\u3053\u3053\u3067\u7528\u610f\u3057\u305f\u30a2\u30ca\u30a6\u30f3\u30b9\u6587\u306e\u8981\u7d04\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"twitter\u7de8":3,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":61,"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u306f":12,"ueno\u3055\u3093":[35,36],"ueno\u3055\u3093\u304c\u5831\u544a":36,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":35,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":35,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":14,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":34,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":64,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u306e\u4e2d\u306b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":11,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":11,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":11,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":11,"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":12,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":14,"value\u304c\u5c5e\u3059\u308b\u578b":139,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":63,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":76,"var":[11,28,42,64,72,91,149,151,153,229],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":80,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":12,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":80,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":35,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":80,"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":80,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":80,"virtualbox\u306fsourc":12,"vmware\u306a\u3069":12,"void":[38,48,51,54,55,62,63,66,67,68,71,72],"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"web\u7ba1\u7406\u753b\u9762":34,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":37,"while":[0,33,39,40,42,43,54,93,105,111,128,133,141,144,193],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":37,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":152,"windows\u306e\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u304b\u3089\u8abf\u67fb\u3057\u3066\u3082\u826f\u3044\u3067\u3059\u3057":[],"windows\u306e\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9\u306f\u4ee5\u4e0b\u306e\u30da\u30fc\u30b8\u306b\u4e00\u89a7\u304c\u3042\u308a\u307e\u3059":[],"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u5411\u3051":12,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u7cfb":12,"worker\u306f":9,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":9,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"wsaenobufs\u304c\u767a\u751f\u3059\u308b\u539f\u56e0\u3092\u8abf\u67fb\u3059\u308b\u3068wsaenobufs\u304c\u767a\u751f\u3059\u308b\u539f\u56e0\u306f\u4ee5\u4e0b\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":[],"wsaenobufs\u3067\u3042\u308b\u3053\u3068\u304c\u308f\u304b\u308a\u307e\u3059":[],"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":12,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":12,"x\u3067\u306frealloc":35,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"x\u306e\u304a\u77e5\u3089\u305b":33,"xxxxx\u306b\u306f\u4efb\u610f\u306e\u6570\u5b57\u304c\u5165\u308a\u307e\u3059":[],"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":12,"yes\u306f\u6307\u5b9a\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044":12,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":12,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"yum\u306e\u5834\u5408":12,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,AND:[33,40,41,43,133,168,190,248],Added:[33,37,38,39,40,41,42,43],Ages:[90,138,159],And:[41,89,102,129,133,144,154,201,212,216,243,244,246],Are:236,But:[6,7,8,16,17,23,33,37,41,42,46,78,90,93,113,115,119,121,133,141,146,154,162,192,193,195,201,202,203,205,214,215,225,229,243],For:[0,2,3,8,18,22,25,28,31,32,33,39,40,41,42,43,46,55,56,78,81,89,90,100,102,110,112,113,115,116,119,120,121,132,133,134,135,136,138,144,146,151,153,158,166,176,179,190,191,192,193,195,198,201,202,203,204,205,206,208,209,210,211,214,215,225,238,239,240,241,242,243,246,247,248],GPS:0,IDs:[39,43,57,78,89,119,212,238,241],Its:[56,72,132,151,191,192],JIS:198,LTS:[21,30],NEAR:[168,174],NFS:28,NOT:[42,133,190],Near:[43,174],Not:[113,133,174,209,231],One:[0,78,133,140,156,157,176,206,243,248],SIS:37,TLS:43,That:241,The:[0,6,7,8,17,18,28,30,31,32,37,39,40,41,42,43,46,48,49,50,53,54,55,56,63,64,66,68,72,78,81,83,86,89,91,93,94,95,96,97,100,101,102,104,105,106,110,111,112,113,114,115,116,117,118,119,120,121,128,129,132,134,135,136,137,138,140,141,142,143,144,145,147,149,151,153,154,156,159,162,165,166,168,173,174,176,179,191,192,194,195,197,198,201,202,203,204,205,206,208,209,210,211,212,213,214,216,225,228,229,231,235,238,239,240,241,243,244,245,248],Then:[0,17,26,27,31,78,133,153,188,208,231,235,236,238,239,240,243,244,247,248],There:[1,2,3,8,13,17,19,23,24,25,26,30,33,39,41,48,56,78,89,90,94,95,96,97,100,101,102,110,111,112,113,114,115,116,118,119,120,121,129,132,133,134,135,137,138,140,142,143,144,146,151,153,156,157,159,162,165,166,167,168,169,170,173,174,179,188,190,191,192,195,202,203,204,205,214,215,225,229,231,236,241,243,244,245,248],These:[0,37,133,147,151,176,240,241],Use:[31,33,39,41,42,43,53,56,72,78,88,90,100,113,127,133,135,138,151,162,173,218,231,239,243],Used:[33,37,39,41,42],Uses:157,Using:[0,191,224],WGS:[216,248],With:[21,33,78,201,244],_20160320:115,__uint32_t:42,_avg:[113,133],_dataset:[155,157],_id:[33,41,42,46,50,63,76,78,81,89,90,93,100,101,112,113,115,133,136,141,146,159,168,169,173,191,192,193,195,202,208,209,211,213,234,239,240,241,243,245,246,247,248],_kei:[33,39,40,41,42,43,46,50,63,76,78,81,89,90,91,93,100,101,103,110,112,113,119,128,132,133,136,140,141,142,146,153,156,159,162,167,168,169,170,173,179,188,191,192,195,198,203,208,209,211,213,215,225,238,239,240,241,243,244,245,246,247,248],_max:[113,133],_min:[113,133],_name:[90,138],_nsubrec:[41,50,76,113,133,239,240,244],_post:12,_score:[37,39,40,42,50,76,78,110,112,113,133,136,162,174,192,203,204,205,208,209,211,234,240,241,243,244,248],_set_valu:38,_sum:[33,113,133],_valu:[40,41,50,76,113,133],_yyyymmdd:[110,112,113,115],aardvark:[30,33],aba:[239,241,248],abbrev:162,abc:42,abcd:116,abi:42,abl:[119,138,168,176,202,203,204,205,206],abort:41,about:[2,7,14,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33,37,38,39,40,41,42,43,45,48,72,78,79,81,83,85,86,90,91,93,94,95,96,100,104,105,106,107,110,112,113,115,116,117,120,128,129,130,131,132,133,135,136,138,140,142,144,145,146,149,151,153,156,158,162,169,174,179,191,192,194,196,197,201,202,203,204,205,208,209,211,214,215,217,225,236,237,243,244,245,248],abov:[17,21,28,31,39,42,43,90,102,129,133,138,153,156,159,167,168,169,174,179,195,201,208,209,211,214,235,239,241,243,244,247,248],absolut:[33,122,123,127,170],acccess:229,accept:[0,37,39,41,42,43,83,84,129,134,146,151,156,159,162,174,192,225,231,235,241,243,244,247,248],access:[0,17,22,33,37,39,40,41,42,43,46,48,50,93,133,141,153,154,208,209,211,215,224,229,231,237,238],accessor:[42,43,66],accident:40,accord:[162,238],accordingli:153,account:[2,41],accross:39,accuml:40,accumul:133,accur:[0,176],acquir:[42,48,104,106],acronym:[223,231],across:162,action:40,actual:[33,40,41,43,110,112,113,115,133,149,153,203,238,241],add:[3,6,7,18,21,25,30,32,33,39,40,41,42,43,54,90,103,112,133,144,153,158,173,192,201,206,212,214,217,238,239,240,241,243,246],add_record_if_not_exist:63,added:[0,42,43,44,57,63,66,102,103,120,195,213,231,239,243,246],adding:[18,37,42,63,83,84,144,193,213],addit:[0,22,24,25,26,30,45,90,116,133,144,210,229,237,238,241,246],addition:[33,42,248],additional_configure_opt:[33,40],address:[37,39,42,151,156,231,245],address_is_in_us:231,address_is_not_avail:231,adisk:202,adjac:[191,214],adjust:[33,40,41,78,90,113],admin:[35,37,39,40,41,42,43],admin_html:[37,151],administr:[22,39,41,154,237],advanc:[42,44,115,130,131,190,191,212],advantag:[0,176,229],adventur:90,affect:[33,39,40,41,42,43],afr:[239,241,248],after:[17,18,28,31,33,37,39,40,41,42,43,46,48,57,71,84,97,102,110,112,115,118,121,133,134,140,147,149,151,153,156,165,166,192,195,212,213,215,238,240,241,245],again:[33,41,42,48,149,153,193],against:[0,22,33,39,41,42,43,50,54,56,78,90,112,114,115,120,132,133,140,146,149,151,191,192,202,206,208,209,211,237,240,244,246,247],againt:133,agaist:39,age:[46,90,91,102,132,133,138,159],aggreg:[22,133,176],ago:208,ahello:42,ahost1:202,aim:40,aio:40,aki:41,akihabara:248,akinori:42,akio:[37,39,40,42,43],akira:41,alert:[41,107,108,151,153,194],algolithm:190,algorithm:[37,86,162,205],ali:89,alia:[22,42,45,94,95,96,107],alias:[42,46,94,95,96,174],aliased_column:46,alic:[46,89,90,93,119,133,141,146,153,159,168,174,191,214,225,244],alisa:174,all:[0,17,28,37,39,41,42,43,46,50,53,54,57,78,83,84,86,89,90,91,93,94,95,96,97,101,102,103,104,105,106,110,111,112,113,114,115,118,119,120,121,122,124,127,128,130,131,132,133,134,135,137,138,140,141,142,143,144,146,147,149,153,159,166,168,174,190,191,192,193,194,195,202,204,205,208,211,213,214,215,216,225,231,241,244,247],all_record:39,alloc:[22,39,41,42,43,49,53,56,72,119,133,135,233,238,241],alloc_count:[82,135,151,153,199,231,241,245],alloc_info:43,allow:[0,25,39,42,157,176,241,245],allow_column:[133,174,191],allow_leading_not:[133,174],allow_pragma:133,allow_upd:[133,191],almost:[37,133,215,223,236],alon:42,alphabet:[41,90,110,112,113,133,138,144,202,209,214],alreadi:[33,41,48,72,97,103,118,144,157,193,215,241,243],also:[0,3,17,22,33,39,43,45,78,89,102,110,112,113,115,140,149,153,159,162,191,192,193,202,203,208,210,214,223,224,225,229,238,240,241,243,244,246,248],although:153,alwai:[0,33,41,42,43,68,81,91,111,119,133,136,143,153,173,191,192,208,215,231],amazon:[33,133],amd64:12,among:[22,39,113,237,238,240],amount:[39,43,149],analysi:[0,28,133,192],analyz:[0,22,33,37,39,153,214,233],anchor:42,ani:[0,28,42,43,46,89,103,110,113,116,120,121,130,131,132,133,136,140,142,143,144,151,153,165,166,174,176,179,191,201,203,214,225],anim:240,ann:12,annot:40,anonym:212,anoth:[0,33,39,42,56,89,104,133,149,201],aomi:33,apach:33,api:[1,3,15,22,33,37,38,39,40,41,42,43,44,45,48,49,50,53,54,68,71,72,79,85,190,225],appear:[0,41,85,90,120,133,144,176,191,192,201,203,241],append:[39,56,63],apper:133,appl:195,appli:[33,44,56,133,143,156,215],applic:[0,20,33,37,41,151,153,176,192,194,201,225],approach:162,appropri:235,approv:41,approxim:[37,39,162],approximate_typ:163,appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitud:14,arai:42,aramaki:37,arbitrari:235,arc:144,architectur:[0,12,41,42,151],archiv:[6,7,8,12,17,22,23,28,31,39],area:[0,33],aren:[33,39,41,42,43,102,110,112,113,115,120,133,134,135,138,140,153,156,176,191,197,212,215,225],arg1_nam:202,arg1_valu:202,arg2_nam:202,arg2_valu:202,arg3_valu:202,arg:151,arg_list_too_long:231,argc:68,argument1:[192,203],argument2:[192,203],argument:[33,37,39,40,41,42,43,53,72,102,132,151,154,162,165,166,167,169,170,173,174,176,179,187,188,192,202,203,206,228,231,235,241,243,245],argument_name1:154,argument_name2:154,argv:68,arithmet:40,armhf:41,arnaud:37,around:[176,197,235],arrai:[33,37,39,41,43,78,81,87,91,112,116,117,119,120,132,133,138,144,145,176,191,212,238,240,241,244],arrang:241,arrow:33,art:[30,33,192,244],articl:[33,243],articles2:243,articles_cont:243,arugment1:192,asami:40,asc:12,ascend:[101,112,113,114,133,170,197,239,241,248],ascii:[191,192,214],askmonti:41,aspx:235,assigend:191,assign:[40,42,129,144,212,235,248],associ:[37,72,100,103,133,235,238,240,241],assum:[33,53,64,129],atsushi:[41,42,43],attach:[17,195,213],attent:[133,246],attr_setpshar:40,attribut:[116,117,144,145,167],atv:[239,241,248],auth_bas:[153,225],auth_basic_user_fil:[153,225],authent:[224,245],author:153,auto:[39,41,111,136],autoconf:[6,37],autogen:[6,12,17,39],automak:[6,35],automat:[17,25,33,42,54,90,102,110,112,113,122,123,127,133,149,153,191,192,212,228,240,241,246],autoreconf:12,autotool:[3,5,7],avail:[0,8,17,22,28,33,40,42,43,44,45,52,72,81,90,91,110,111,112,113,115,116,133,134,136,138,144,149,151,156,168,174,191,192,223,231,235,238,241],averag:[41,133],avg:[41,113,133,150],avoid:[22,40,41,115,133,140,233],awar:72,ayumu:[41,42],back:[33,153,192,202,243],background:151,backlog:33,backslash:[40,56,191],backtrac:[33,43],backup:[54,101],backward:[33,39,41,42,43,146,204,205,225],bad:[0,40,41,43],bad_address:231,bad_file_descriptor:231,bar:[90,138],base:[0,17,18,24,25,26,28,30,33,39,40,41,43,57,129,133,144,151,153,154,156,157,165,166,176,191,192,194,198,202,203,204,205,206,208,209,211,214,224,229,244,245],basebal:[240,243],bash:[28,42],basi:241,basic:[0,22,39,41,89,133,225,237,238],batch:39,bc009774:12,becam:[41,229],becaus:[0,6,7,8,21,26,32,33,39,41,42,43,46,54,81,89,90,93,97,102,110,112,113,115,119,120,121,122,127,133,138,141,143,149,153,156,159,169,173,174,179,191,192,193,195,198,199,201,202,203,204,205,208,209,210,211,212,213,214,215,223,224,225,229,231,235,238,240,241,243,246,247],becom:[0,42,44,162,216,238],been:[12,42,93,141],befor:[28,32,33,38,39,42,43,71,78,86,110,111,118,121,122,127,133,140,143,153,201,202,208,209,210,238,241],before_instal:21,beforehand:26,beg:[202,214],begin:[150,202,214],behav:[133,162],behavior:[33,39,41,42,115,133,147,159,174,202,214],behaviour:[40,101],beijin:162,bellefleur:33,belong:[33,74,216,239],below:[13,33,93,103,141,191,214],benchmark:[22,39,40,41,45,148],benefit:229,bernard:42,best:0,beta:44,better:[0,41,90,102,133,192,243],between:[22,33,37,39,40,41,43,45,63,90,93,102,115,133,138,141,149,157,158,162,191,192,197,202,209,212,214,225,243,246,248],big:[41,153],bigger:90,bigram:[152,155,156,214,234],bigramlexicon:128,bill:[42,232,234],billiard:[232,234],billion:90,bin:[18,28,31],binari:[0,1,22,31,39,40,41,42,43,81,153,192,199,216,222,225,245],bind:[20,21,37,39,42,44,151,165,166,190],binlib:12,bison:12,bit:[21,23,24,25,26,29,30,31,133,151,152,153,191,192,216,238],bitwis:[42,231],black:[195,197],blank:[42,214],block:[33,40,135,138,140,153,192,238],blog1:243,blog2:243,blog:[12,22,110,112,113,133,179,191,192,193,234,237,243],blog_bodi:234,blog_comment_index:179,blog_cont:179,blog_titl:241,bm25:[203,205],bob:[46,93,133,141,146,153,159,174,191,225,244],bodi:[40,43,88,89,90,92,97,99,102,103,105,115,118,119,121,122,123,127,128,134,137,138,140,141,143,156,165,166,225,231,234,243,247],body_index_column:33,book:[90,192],bookmark:[78,101,115],bookmark_index:78,bookmark_titl:101,bool:[40,42,43,89,110,112,113,119,120,132,133,142,191,213,238,246],boost:[156,208],border:[39,144,159],borderlin:112,boston:244,both:[0,23,24,25,26,30,31,33,42,43,63,74,78,81,90,110,112,113,119,133,140,147,156,176,191,192,193,202,205,208,212,225,231,244,248],bottom:57,bottom_right:[37,164],bottom_right_point:57,bound:41,box:133,brad:43,brand:42,brasil:162,brasillia:162,brazil:239,brew:[18,27],bring:241,british:247,broadcast:244,broken:[33,37,39,40,41,42,43,50,54,104,105,106,120,121,128,140,149],broken_pip:231,brooklyn:244,brother:191,browser:[17,28,154,245],bsd:[5,7,8,28,37,41,42],buf_siz:[50,63,66],buffer:[40,42,43,53,56,59,63,87,119,235,243],bug:[3,22,28,33,37,39,40,41,42,43,44],build:[0,3,4,12,14,18,21,22,23,29,33,38,39,40,41,42,43,52,147,201,206],buildabl:37,builder:59,built:[0,22,28,40,42,45,63,79,116,144,153,158,162,217],builtin:[22,45,90,119,120,162],builtin_type_nam:54,bulk:[33,42,43,56,63],bump:[40,41,42],bundl:[17,33,39,40,41,42,43,174],button:[17,39,40],buzz:156,bye:[110,112,113,133,142,191,192,213,243],cach:[0,33,34,39,40,42,43,49,63,86,135,151],cache_hit_r:[82,135,153,199,231,241,245],cache_limit:[22,42,45,79,153],cache_previ:49,cafedomanc:43,cake:170,calc:33,calc_target:[42,133],calc_typ:[33,42,133],calcul:[33,39,40,41,130,133,162,170,197,244,248],call:[33,39,40,41,42,53,68,71,72,78,93,111,112,119,130,131,133,141,143,162,190,239,241],callback:156,caller:64,calloc:43,calro:159,camp:244,can:[0,1,5,6,7,8,17,18,19,21,24,25,26,27,28,30,31,32,33,37,38,39,40,41,42,43,46,47,48,49,52,53,54,56,71,72,78,81,83,84,85,86,89,90,91,93,94,95,96,97,101,102,103,104,110,111,112,113,114,115,116,118,119,120,121,122,123,127,128,129,130,131,132,133,134,136,138,140,141,142,143,144,146,147,149,151,153,154,156,158,159,162,165,166,167,168,169,170,173,174,176,179,190,191,192,193,194,195,197,198,199,201,202,203,204,205,206,208,209,210,211,212,213,214,215,217,223,225,229,231,235,236,238,239,240,241,242,243,244,245,246,248],can_be_key_typ:132,can_be_value_typ:132,cancel:[33,41,43,83,84,129],cancel_request_is_accepted_or_not:129,candid:[136,156,173,208],candidate1:136,candidate2:136,candidate_1:156,candidate_2:156,cannot:[22,133,138,191,192,193,195,212,225,233],capit:241,caplit:[40,41],care:[17,33,91,133,191,205,208],carefulli:[78,115,121,140],carlo:[93,141,146],cas:231,cas_error:231,cascad:[40,41],cast:[33,37,38,39,40,43,63,110,112,113,133,191,204,205,244],cat:12,categor:[133,142,144],caus:[33,37,39,40,41,42,43,138,191,192,235,238],ceekz:40,cenos6:39,cent:214,center:[0,163],cento:[12,18,22,23,28,33,35,37,39,40,41,42,43,229],centos5:28,centos6:28,centos7:28,central:244,certain:248,cflag:29,chain:179,chang:[0,18,28,33,37,38,39,40,41,42,43,46,49,78,86,90,93,97,102,110,116,129,130,131,133,136,140,141,147,153,165,192,199,201,214,225],chapter:241,charact:[0,37,39,40,41,42,43,56,72,90,107,110,112,113,116,133,138,144,151,165,166,168,176,177,191,192,194,195,201,209,214,241],characterist:[22,45,176,202,205],charli:244,chart:37,chat:[22,42],check:[12,13,14,22,33,35,37,39,40,41,42,43,45,53,54,63,79,81,85,101,115,116,118,140,142,153,156,159,236],child:102,china:[162,239],choic:0,choos:[5,6,7,32,41,43,82,103,133,134,138,151,153,156,202,214,238],chracterist:212,christian:42,chroot:12,chunk:[42,43,87,119,215,236],circl:[0,197],cirit:153,citi:[162,197,244],clang:[14,39,40,41,42],clarifi:41,classif:[133,239],classifi:[43,133],clean:[6,7,12,14,33,42,110,113,115],cleanup:33,clear:[12,33,37,39,41,43,50,63,105,153,235],clearli:42,clearlock:[22,39,41,45,79,151],cleverli:97,click:133,client:[8,22,33,39,41,46,84,153,154,156,203,223,229],clone:[3,6,7,8,12,13,28],close:[42,43,103,140,165,212],close_tag1:165,clumn:215,cmake:[3,5,6,28,31,33,39,40,42,43],cmp0014:41,code:[3,6,7,8,12,17,22,33,39,40,41,42,43,45,56,71,79,81,129,146,194,199,231,235,241],coffe:170,col1:63,col2:63,col3:63,collaps:39,colleagu:3,collect:[0,81,244],color:195,colum:243,column1:[11,39,40,41,110,112,113,133,192,203],column2:[11,39,40,41,113,133,192,203],column3:203,column:[11,22,28,33,37,38,39,40,41,42,43,45,46,50,54,57,63,64,66,70,91,93,94,95,96,97,100,102,103,104,105,106,115,118,121,128,136,138,141,142,146,149,155,156,159,166,167,168,169,170,174,176,179,188,192,193,197,201,202,203,206,208,209,210,211,212,213,215,216,237,238,240,244,246,247,248],column_1:[132,179],column_2:[132,179],column_3:[132,179],column_:90,column_copi:[22,42,43,45,46,79],column_cr:[22,37,41,42,43,45,46,78,79,89,91,93,100,101,102,104,105,106,110,112,113,114,115,118,120,121,128,132,133,138,140,141,142,146,151,152,156,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,202,203,204,205,206,213,215,234,238,239,240,241,243,244,246,247,248],column_index:[41,42,78,90,91,101,110,112,113,115,120,128,132,133,140,156,159,165,166,169,173,174,176,179,191,192,193,202,203,204,205,213,215,234,240,241,243,244,247],column_inform:91,column_information1:91,column_information2:91,column_list:[22,35,37,39,41,45,79,93,151,241],column_list_head:91,column_n:179,column_nam:[102,103,118,121,132],column_name1:103,column_name2:103,column_name_1:[112,132,133],column_name_2:[112,132,133],column_name_3:132,column_name_n:[112,133],column_name_with_t:132,column_name_with_table_nam:132,column_remov:[22,41,45,79,89,102,121,140,151],column_renam:[22,38,40,41,43,45,46,79,89,102],column_scalar:[43,46,89,90,91,93,100,101,102,104,105,106,110,112,113,114,115,118,120,121,128,132,133,140,141,142,146,156,159,162,165,166,167,168,169,170,173,174,176,179,191,192,193,202,203,204,205,213,215,234,239,240,243,244,247],column_type_1:[112,133],column_type_2:[112,133],column_type_n:[112,133],column_vector:[40,41,42,78,89,90,91,100,110,112,113,133,156,173,179,188,238,240,244,247],column_with_index:43,columnn:39,com:[6,7,8,12,13,17,21,133,235,238,239,241,243,245,248],comamnd:225,combin:[0,39,41,43,90,133,138,156,159,173,174,201,214,238,241],combind:191,come:[197,244],comma:[42,90,103,192,238,239,241],command:[0,6,7,8,13,14,17,18,21,22,25,28,31,33,35,37,39,40,41,42,43,45,46,49,53,72,78,81,83,84,86,89,90,91,93,94,95,96,97,99,100,102,104,105,106,107,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,133,134,135,136,137,138,140,141,142,143,144,145,146,152,153,155,158,165,166,167,170,178,188,189,191,201,202,203,208,209,210,211,212,215,216,223,224,231,236,237,238,243,246,247,248],command_lin:132,command_nam:[132,154,245],command_object_remov:121,command_vers:[42,43,80,82,135,153,154,165,166,167,176,188,199,231,241,245],commandinput:42,commands_column_list:91,commands_column_renam:93,commands_object_list:120,commands_object_remov:121,commands_table_renam:141,comment:[40,42,179,201,243],comment_cont:179,comment_index:244,comment_nam:179,comments2:243,comments_cont:243,comments_loc:244,commit:[6,7,17,41],commnad:[31,80],common:[30,37,39,66,67,133,138,151,190,191,192,212,216,243],commonli:[0,202],commun:[17,19,21,22,153,154,156],compar:[0,39,41,42,43,133,168,176,191],comparison:[22,39,43,90,222,224],compat:[24,25,26,30,33,41,42,43,110,112,113,116,146,153,154,195,204,205,225],compil:[6,7,28,37,40,41,42],complet:[22,37,38,40,43,45,84,122,123,127,136,156,173,198,207,211,247],complex:[39,40,42,133,192,202],complianc:153,composit:195,compress:[28,37,39,40,41,43,90,119,132,224],compress_lz4:[43,90],compress_zlib:[43,90],compress_zstd:[43,90],comput:[39,72,90,110,112,113,133,135,156,192,198,203,204,205,208,209,211,215],conbin:[133,190],conbind:191,concaten:243,concatin:[39,40],concept:41,concret:[89,133,239,240,243],concurr:194,cond:40,cond_sign:68,condit:[22,32,33,39,40,42,56,115,136,168,174,179,190,192,237,241,244,246],conditin:191,condition1:192,condition2:192,condition_column_name1:168,condition_column_namen:168,conditional_probability_threshold:[37,136],condtion:191,conf:[42,43,153,215,229,236],config:[8,25,28,31,34,37,39,42,94,151],config_delet:[22,42,45,79,95,96,147],config_get:[22,42,45,79,94,96,147],config_set:[22,42,45,46,79,94,95,147],configur:[3,7,8,12,14,17,20,22,23,24,25,26,27,29,30,31,33,38,39,40,41,42,43,45,46,47,94,95,96,107,133,155,156,192,201,202,206,215,224,229,234,236],confirm:[3,90,96,115,119,140,147,156,191,202,206,214,235,236,238],conflict:[33,43],confus:[43,202,214],conifugr:21,connect:[1,39,42,151,231,235,241],connection_refus:231,consid:[41,110,138,225,229,240,243,247],consist:[41,42,43,120,132,133,147,156,191,206,211,214,231,241],consol:153,constant:[33,42],constant_pattern:42,construct:[22,33,39,40,41,42,43,45,192],construnct:42,consum:[33,41],contact:17,contain:[0,33,39,40,41,42,43,56,101,103,117,120,133,145,159,165,166,191,192,203,204,205,214,235,240,241,243,244],content:[37,40,41,42,72,81,91,110,112,113,120,132,133,140,153,167,174,176,179,191,192,193,203,213,215,225,231,240,243,244],content_index:[140,203],content_length:[110,112,113,133],content_type_len:39,context:[37,42,49,53,56,63,135,140,153,176,179],continu:[21,39,40,41,42,135,144,151,209,214],contrast:[0,41,43,71,151,174,241],contrib:12,contribut:[22,40,43],control:[33,39,41,110,111,112,113,133,153,159,174,190],conveni:[0,1,28,33,37,208,224],convens:39,convent:39,convers:[37,153],convert:[33,41,42,43,85,192,195,212,238,244],coordin:[162,238],copa:42,copi:[39,42,43,46,72,89,93,141],copyright:41,core:[0,6,7,12,28,152,153,156,224],coremodul:153,correct:[22,33,39,41,42,43,45,136,156,201,207,208],correctli:[33,39,42,43,241],correl:113,correspond:[63,102,110,112,113,133,136,154,208,209,210,211],corrupt:[33,43,115,149],cosmo0920:[40,41],cost:[193,214],could:[39,235,238],couldn:[39,42],count:[0,33,42,110,133,135,240,244],counter:43,countri:[100,239,245],cours:239,cover:[0,115,176],coverag:14,cpu:[6,7,28,152,153,156,224],cpuinfo:[24,25,26,30],crach:33,crash:[33,37,39,40,41,42,43,93,102,105,141,149],crch:144,creat:[7,8,17,22,33,36,37,39,40,41,42,43,45,46,49,53,54,56,72,89,101,104,110,112,113,115,116,118,119,121,132,133,135,136,140,148,149,151,153,156,162,173,187,190,192,193,194,195,202,208,209,211,212,214,215,228,237,238,239,240,246,247],create_lexicon_for_token:214,created_at:[110,112,113],createfilemap:42,createrepo:12,creation:[37,40,42,133,241],creteria:241,crit:[107,108,151],criteria:241,critic:[28,33,39,43,72,107,151,194],ctrl:[151,231,241],ctx:[11,33,49,50,53,54,56,57,58,59,60,61,62,63,64,65,66,67,69,70,72,235],cumul:[110,112,113,133],curl:[21,27,28,39,129,151,153,156,199,225],current:[17,25,33,37,42,46,49,52,53,54,86,89,93,103,111,133,135,138,140,141,153,197,241,244],current_column:46,current_nfthread:68,cursor:[37,42,57],custom:[6,7,8,21,28,33,37,39,40,41,42,43,68,90,101,116,133,138,142,143,144,153,174,176,190,191,194,195,203,208,213,224,239],customiz:176,cutter:[6,7,12,14],cutter_check_leak:14,cutter_debug:14,cutter_dir:12,cutter_source_path:12,cve:[33,41],cxxflag:29,cycl:43,daemoinz:39,daemon:[39,40,41,42,153,156,157,223,228,245],dai:[33,42,135,192,193,194,206,244],daiki:[35,36,37,39],danger:[50,54,93,104,105,106,115,121,140,141,225],dangl:[115,140],dash:28,dat:[33,38,39,40,43],dat_kei:[119,212],data:[0,21,22,23,24,25,26,30,31,32,33,37,38,39,40,41,42,43,45,46,49,54,58,68,74,78,89,91,100,101,103,110,112,113,119,120,128,133,136,149,156,159,162,165,166,167,168,169,170,173,174,176,179,188,193,197,199,202,203,204,205,206,207,209,210,212,215,225,231,237,240,241,243,246],data_column:133,data_set_nam:136,databas:[0,20,22,28,33,37,39,40,41,42,43,49,53,54,63,66,91,93,97,101,102,103,104,105,106,117,118,120,121,122,127,128,132,138,140,141,145,147,149,151,153,155,156,157,176,190,191,192,195,206,212,215,216,224,229,231,236,237,245],database_path:149,database_unmap:[22,33,42,45,79,121,128],datail:133,dataset1:156,dataset2:156,dataset3:156,dataset:[22,40,42,43,45,136,148,156,157,208,209],date:[0,22,152,162,216,237,244],dav:168,dave:159,david:168,daylight:41,db1:225,db2:225,db_path:[42,121,151,153,154,156,199,223,228,231,241,245],dbm:[0,176],dbmss:0,dcb314:41,dcmake_install_prefix:[7,8,31],ddl:[41,152],deadlock:33,deafult:37,deatil:133,deb:[12,25,30,37,39,40,41,42,43],debian:[12,18,22,23,33,37,39,40,41,42,43,229],debootstrap:12,debug:[6,7,8,33,41,42,43,107,108,144,151,153,194],debugg:[6,7],decid:201,decim:[84,151,192,216,238],decreas:[6,7,32,33,42,68,214],decrement:33,decrypt:12,defalt:35,default_command_vers:[82,135,153,199,231,241,245],default_mod:168,default_token:[43,90,110,112,113,120,128,132,133,139,140,141,142,151,152,156,165,166,174,176,179,191,192,193,202,203,204,205,213,215,234,241,243,244,247],defin:[42,90,120,133,155,156,173,192,193,201,206,208,216,231,241],define_selector:[22,45,79,151],definion:192,definit:[39,46,90,100,110,112,113,133,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,202,203,204,205],defrag:[22,37,40,45,79],degrad:42,degre:[37,78,192,238,248],dejan:43,delai:43,delet:[12,18,22,33,34,35,37,39,40,41,42,43,45,63,79,94,102,115,146,147,212],delimit:[0,40,42,144,211,214,238],demerit:[33,212],demo:240,dep:12,depend:[0,3,22,23,32,33,38,39,41,43,44,81,90,119,133,156,203,204,205,214,243],deprec:[33,37,39,40,41,42,43,72,80,88,113,127,133,135,138,151,162,218],dereferenc:43,deriv:[157,229],descend:[42,133,136,156],describ:[3,5,6,7,8,17,18,19,20,21,23,24,25,26,27,28,29,30,31,41,42,46,47,72,78,79,81,86,89,90,91,93,94,95,96,97,102,103,104,105,106,110,111,112,113,114,115,116,118,119,120,121,124,128,129,130,131,132,133,134,135,137,138,140,141,142,143,144,146,148,149,151,153,156,158,166,167,179,191,192,195,196,197,201,202,203,204,205,206,207,208,209,211,214,215,217,231,235,241,243,244],descript:[6,7,8,22,39,40,41,42,43,45,90,91,110,112,113,116,117,120,132,133,134,135,138,144,145,153,156,174,191,192,202,206,208,231,232,235,244],descriptor:156,design:[39,133,223,238],desin:229,desktop:[8,31,235],dest:[150,151,238],dest_kei:66,dest_key_s:66,destin:[42,63,89,137],destruct:149,detail:[0,1,3,12,17,24,25,26,28,30,33,39,40,41,42,43,72,78,83,89,90,91,97,102,110,112,113,115,119,120,122,123,127,132,133,134,135,137,138,140,141,142,144,152,153,154,156,174,191,192,194,202,215,216,217,229,238,239,241,248],detect:[6,28,33,37,39,42,43,144,153,170],determin:[112,133,190,235,241],dev:[2,6,7,12,14,25,30,33,37,39,40,41,42,43,153],devel:[24,26],develop:[0,3,5,6,7,8,22,23,24,25,26,30,31,39,40,41,42,80,81,213,244],devic:0,dewangga:42,dgrn_with_debug:7,dgrn_with_mrubi:[7,8],dialog:40,dic:[26,27],dicrc:27,dictionari:[26,27,35,39,40,41,42,43,195,214],didn:[41,42,43],diff:12,differ:[19,33,39,41,42,90,112,119,133,138,151,153,156,162,168,174,191,192,199,202,203,214,225,238,243,248],difficult:0,dig:235,digest:225,digit:[41,90,110,112,113,133,138,194,202,209,214],dinam:190,dinner:0,dir:152,direct:[39,40,225],directli:[33,192,244],directori:[6,7,17,28,37,39,40,41,42,72,153,156,157,201],directory_not_empti:231,disabl:[18,28,33,35,37,38,39,40,41,42,110,112,113,121,133,151,153,156,191,194,208,235],discard:40,discuss:[2,19],disk:[33,42,97,102,118,138,151,153,202,243],disk_usag:119,displai:[33,39,43,173],dist:12,distanc:[0,39,43,162,170,192,197,248],distinct:[32,43,156,246],distribut:[12,23,24,25,26,28,30,31,39,41,110,113,206],divid:[0,192,205,238],divis:[33,41],dll:[37,39,41,43,72],do_gqpt:152,do_gqtp:152,do_http:152,do_loc:152,do_map:33,doc:[12,16,17,18,37,38,39,40,41,42,43,153,247],doc_bodi:247,documenataion:81,document:[0,3,5,6,7,8,12,16,17,21,23,28,33,35,37,38,39,40,41,42,43,74,90,115,133,144,151,153,154,156,158,174,176,191,192,193,202,203,204,205,210,213,214,215,217,236,242,247],document_index:[165,166],document_vers:12,document_version_ful:12,documents_content_index:[174,176],docutil:12,doe:[0,25,39,40,42,43,68,78,133,136,149,153,174,179,191,192,229,238,241],doesn:[28,33,39,40,41,42,43,48,63,72,81,89,90,91,93,97,110,112,113,115,118,119,120,121,129,132,133,134,138,141,143,144,149,153,156,159,168,176,191,192,193,195,197,198,201,202,203,205,206,208,209,212,213,214,215,224,225,247],doing:105,domain:[16,39,41,42,43,56,63,72,91,93,139,141,151,245],domain_error:231,don:[17,23,28,33,37,41,42,49,52,53,56,68,78,84,90,91,97,102,103,104,105,106,110,111,112,113,115,128,133,134,138,151,153,154,156,173,191,192,193,195,199,201,203,204,205,211,214,225,228,231,241,245],done:[33,41,48,49,102,133,153],donut:170,dot:39,doubl:[37,39,40,41,42,103,116,132,133,138,144,191,192,212,216,241],doubt:239,down:[22,40,41,113,133,235,237,244],downcas:195,download:[12,24,25,26,27,28,29,30,31],downtim:[46,224],drastic:43,draw:240,drildown:[22,237],drill:[113,133,244],drilldown:[22,33,37,40,41,42,43,76,98,112,212,237,240,244],drilldown_calc_target:41,drilldown_calc_typ:41,drilldown_filt:[33,43],drilldown_limit:[42,98,239],drilldown_offset:[42,98,239],drilldown_output_column:[41,98,239],drilldown_result1:133,drilldown_result2:133,drilldown_result:133,drilldown_result_1:133,drilldown_result_2:133,drilldown_result_for_column1:133,drilldown_result_for_column2:133,drilldown_result_for_kei:133,drilldown_result_for_labeled_drilldown:133,drilldown_result_n:133,drilldown_sort_kei:[43,239],drilldown_sortbi:[42,43,98],drilldown_xxx:133,droonga:[168,169,206],drop:[33,37,39,40,41,42,43],due:[0,176,235],dump:[22,33,35,37,39,40,41,42,43,45,52,79,107,115,140,147,151,153,194,215],dump_config:101,dump_index:42,dump_plugin:42,dump_record:42,dump_schema:42,duplic:[41,43],dure:[25,33,39,241],dynam:[0,33,38,43,90,153,241],each:[0,5,23,28,33,37,40,42,43,56,78,83,84,90,91,103,110,111,112,113,115,117,119,120,129,133,135,136,144,145,147,151,153,156,165,168,173,174,192,194,203,208,209,211,212,231,236,238,239,240,241,242,248],each_nam:42,ealier:39,eanbl:6,ear:144,earch:144,earli:33,earlier:[37,42,43,146,195],easi:[0,41,43,151,156,190,201,203,225,245],easier:[33,203],easili:[41,43],echo:121,eclips:17,ecmascript:[39,40,133,190,192],edict2grn:41,edict:43,edit:[3,12,21,28,39,43,153,192,201],edit_dist:[22,34,43,45,158,192],editor:17,editrc:37,effect:[39,42,102,103,119,151,204,244],effici:[0,43,78,90,111,153,243],egg:243,eight:241,either:[19,40,133,159,191,192,202,243],eito:40,elaps:[37,81,135,156,192,194,199,216],elapsed_tim:[81,194],element1:[78,192],element2:[78,192],element3:78,element:[33,39,40,41,42,43,78,81,85,90,120,176,238,241],elfr:39,elimin:40,ellip:[162,163],ellipsoid:163,ello:42,els:[41,42,235],emac:17,embed:[0,33,42,151,153,166,176,201],embedd:42,emerg:[107,108,151,153,194],emfil:235,emit:39,emphas:167,empti:[33,37,40,41,42,91,94,95,96,119,132,133,191,216],enabl:[3,6,7,8,12,17,25,28,30,33,35,37,38,39,40,41,42,43,90,112,121,133,138,144,151,153,156,169,170,178,188,189,191,194,206,238,239,245,247],enable_tokenized_delimit:144,enablerepo:24,enci:152,enclos:[103,241],encod:[23,40,41,42,43,53,55,56,72,151,154,156,192,195,199,225,231],encodiong:192,encount:[23,24,25,26,30,31],encyclopedia:216,end:[42,150,162,191,192,199,202,214],end_of_data:231,end_tagn:165,endian:41,endpoint:[156,157],eng:[136,208],engi:[136,208],engin:[22,24,25,26,30,133,136,144,165,166,176,202,203,204,205,208,209,210,211,229,238,240],enginen:208,english:[2,14,17,18,19,33,37,40,41,43,133,208,214],enhanc:44,enorm:[43,240],enough:[0,33,41,42,43,90,112,236,243],enourm:211,ensur:[33,42,43,209],enter:[40,42,231,241],entiti:0,entranc:241,entri:[40,42,43,49,58,86,88,89,92,98,99,100,103,104,105,106,110,112,113,128,133,140,149,165,166,179,191,192,215,243,244],entries_20150708:[110,112,113],entries_20150709:[110,112,113],entries_bodi:243,entries_content_index:[133,191,192,215],entries_content_index_20150708:[110,112,113],entries_content_index_20150709:[110,112,113],entries_key_index:[133,191,192,215],entries_key_index_20150708:[110,112,113],entries_key_index_20150709:[110,112,113],entries_numb:42,entries_titl:243,entries_whol:243,entries_yyyymmdd:[110,112,113],entry1:[89,243],entry2:243,entry3:243,entry4:243,entry_20150708:[110,113],entry_20150709:[110,113],entry_bodi:128,entry_kei:128,entry_selector:98,entrykei:140,enumer:241,env:201,envelop:43,enviromn:42,environ:[6,7,8,21,23,28,31,33,37,38,40,41,42,43,153,201],eol:33,epel:[24,33,39],epoch:[238,244],equal:[41,42,43,90,133,136,151,153,168,174,176,190,195,201,247,248],equat:162,era:0,eric:159,errno:[41,42,235],error:[0,6,7,22,23,24,25,26,28,30,31,33,37,38,39,40,41,42,43,46,49,50,53,54,56,57,63,71,72,85,89,90,94,96,97,100,102,104,105,106,107,108,110,112,113,115,121,122,123,127,128,133,134,137,138,140,141,146,151,153,162,191,194,202,205,229,233,241],error_cod:72,error_loc:81,error_messag:81,error_no_system_resourc:33,errror:202,escal:[23,35,39,133,147,151,234],escap:[33,39,40,41,56,165,192],escape_charact:56,escaped_charact:56,escaped_queri:56,escaped_str:56,escaps:[165,166,176],especi:42,essenti:[25,30,153],establish:[231,241],estim:[33,42,43,57,142,236],estimate_s:42,estimated_s:[43,142],etc:[3,12,25,27,39,153,201,215,225,229,236,238,241],etim:150,euc:[40,151,214],euc_jp:28,eval:130,evalu:[33,40,42,90,130,132,133,179,191,192,202,214],evaluated_valu:130,evalud:130,even:[0,23,24,25,26,30,31,33,39,40,41,43,102,112,115,121,133,134,149,192,205,208,243],event:[42,156,225],event_dataset:[155,157],event_queri:[136,155,156,157,208,209,211],event_typ:[155,156],ever:40,everi:[33,239],everyon:245,evil:[156,192],exact:[11,46,90,111,133,138,212],exactli:236,exampl:[0,3,8,12,18,20,22,28,32,33,35,39,40,41,42,43,46,78,81,83,84,86,89,90,91,93,94,95,96,97,100,102,103,104,105,106,107,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,149,151,153,156,158,159,162,165,166,167,168,169,170,173,174,176,179,188,190,191,192,193,194,195,198,201,202,203,204,205,206,208,209,210,211,213,214,215,225,233,238,239,240,241,242,243,244,245,246,247,248],exce:[39,40,42,43],exceed:[32,236],excel:201,except:[26,33,37,39,41,42,46,78,89,113,119,128,130,131,133,138,144,153,168,169,176,191,197,202,212,214,215],exclam:42,exclud:[39,40,41,101,103,110,112,113,115,159],exclude_t:40,exclus:43,excut:40,exe:[12,31],exec_format_error:231,execut:[0,22,25,28,31,33,37,39,40,41,42,43,45,46,53,68,78,81,84,86,89,90,91,93,94,95,96,97,100,102,103,104,105,106,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,153,154,156,157,159,162,165,166,167,168,169,170,173,174,176,179,188,190,191,192,193,194,195,198,202,203,204,205,206,208,209,211,213,214,223,231,238,239,240,241,243,244,245,246,247,248],execute_search:113,executor:113,exist:[1,18,33,39,40,41,42,43,46,54,63,90,102,103,110,112,113,114,115,118,121,129,133,140,149,151,153,157,159,168,169,192,203,206,214,229,231,238,241,243,248],exit:[39,40,42,147,149,151,192],exit_failur:71,exit_success:71,expand:[22,39,40,43,45,122,123,127,133,138,174,201,206],expans:[22,33,37,39,43,133,174,201,237],expect:[41,198,202,204,214,238],experiment:[33,37,38,39,40,41,42,43,49,54,110,116,123,130,131,202,204,205,214],expir:[33,42,86,153],explain:[42,156,238,241],explicitli:[18,39,42,102,133,134,153,195,199,208,225,243],exploit:0,expnas:201,expornenti:192,expr:[46,56],express:[8,22,31,37,39,40,42,43,45,56,100,131,133,153,162,174,190,214,215,243],expression_rewrit:43,ext:144,extend:[41,202,243,247],extens:199,extract:[0,17,28,31,33,39,41,42,43,56,112,133,138,166,176,179,194,207,214,235],extrct:192,f10399c0:12,facebook:[12,22,39],facet:133,fact:[133,240],faction:244,factor:[41,133],fail:[33,37,39,40,41,42,43,48,49,72,89,90,94,97,102,110,112,115,121,122,123,127,133,137,138,140,141,191,241],failur:[12,33,39,41,42,43,48],fall:33,fallback:[42,43],fals:[12,34,40,41,43,89,90,93,94,96,97,100,104,105,106,107,113,115,118,119,120,121,128,129,132,140,144,146,156,159,165,168,169,174,179,191,192,214,216,238,246],famili:[33,90,144,192],familiar:239,fast:[0,42,74,81,90,103,110,112,113,133,138,144,162,165,166,167,168,169,176,191,192,197,202,203,205,212,224,225,240,241,243],faster:[28,33,37,40,41,43,90,112,214,223],fastest:46,fatal:41,fault:39,favorit:17,favorited_bi:244,fbnteqr:42,featur:[0,6,7,8,17,33,37,39,41,42,43,46,53,54,78,84,89,110,111,112,113,116,117,123,133,136,138,140,143,144,145,149,151,153,156,162,173,174,190,191,198,201,202,203,204,205,206,207,208,209,210,211,212,224,239,243],fedora:[12,18,22,23,28,35,37,39,40,41,229],feel:[41,202],fetch:[41,211,243],few:[133,224,225],fewer:[33,90],ff01:42,ff1f:42,ff76:195,ff9e:195,ffef:214,fff0:214,fffe:144,fget:42,field:[42,91],figur:197,file:[3,12,18,22,28,31,33,34,37,38,39,40,41,42,43,45,68,81,84,121,129,131,133,143,148,149,153,154,156,192,194,206,208,223,224,229,231,235,236,241],file_corrupt:231,file_exist:231,file_too_larg:231,filenam:33,filename_too_long:231,fill:[133,192],filter:[22,25,30,33,37,39,40,41,42,43,45,46,78,89,90,98,100,120,129,132,138,142,144,158,159,162,166,168,169,170,173,174,176,179,190,192,198,202,210,211,232,234,239,240,244,246,248],fin:64,find:[0,3,17,18,28,31,42,43,66,89,93,112,113,133,136,141,165,166,173,176,195,198,206,208,209,211,213,214,235,241],finish:[42,71,110,129,134,149,194],firefox:17,firewood:[39,40],first:[17,28,31,37,40,41,42,43,53,72,81,90,91,110,112,113,129,133,138,153,165,166,168,176,191,192,201,202,203,225,229,235,238,240,241,243,244,247],five:[81,159,241],fix:[91,93,119,120,138,162,209,231,236],fix_siz:119,fixed_size_column:33,fixed_size_type_vector_column:42,flag:[32,33,37,38,39,41,42,43,50,53,56,60,63,66,67,69,72,78,87,91,93,119,132,139,141,151,152,191,192,195,202,212,238,239,240,241,242,243,244,246],flanc:162,flexibl:[0,90,174,190],flow:[3,43,133,225],flower:238,fluent:13,flush:[33,42,43,102],flushviewoffil:42,focus:241,folder:[8,31],follow:[2,17,18,21,25,28,31,32,33,37,39,40,41,42,43,46,50,71,72,78,81,89,90,91,93,102,103,110,111,112,113,115,116,117,118,119,120,121,132,133,136,138,140,141,143,144,145,149,151,153,154,155,156,157,162,165,166,168,170,174,176,178,179,188,189,191,192,194,197,199,201,202,203,204,205,206,208,209,210,211,214,215,216,223,225,228,231,235,236,238,239,240,241,245,248],followe:244,fontain:37,foo:33,footnot:[162,241],forc:[33,39,43],force_prefix:[42,144,214],foreground:151,forget:[78,104,173],fork:[17,151],form:[37,40,43,133,153,190,191,192,195,228,231,241,244,245],form_1:241,form_2:241,format:[17,22,33,38,39,41,42,43,44,45,52,72,79,82,84,85,86,89,90,91,93,94,95,96,97,100,102,104,105,106,107,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,132,134,135,136,137,138,140,141,143,144,145,146,154,156,174,192,199,202,206,216,225,231,237,238,244,245],former:[46,156,195,201],formula:[162,236],found:[28,31,33,39,40,57,66,112,133,198,210,214],four:[81,89,151,168,194,212,241],fraction:[0,238,244],fragment:99,francisco:162,frank:159,free:[22,37,41,42,49,53,72,87,194,216,231,236],freebsd:[22,42,45],freed:[41,43,49,54,135],freq0:[156,211],freq1:[156,211],freq2:[156,211],freq:156,frequenc:[41,42,136,142,203,204,205,242],frequency_threshold:[37,136,156,208,209,211],frequent:[33,203],fresh:193,friend:[3,240],friendli:39,friendship:240,from:[0,22,23,29,33,37,38,39,40,41,42,43,44,46,53,54,56,57,68,72,89,90,97,100,101,103,110,112,115,118,120,128,129,133,135,138,140,146,151,153,162,166,167,170,176,187,190,191,192,197,198,201,202,204,205,208,209,210,211,213,214,225,229,231,235,238,241,243,244,248],from_column:89,from_offic:170,from_stat:170,fromtabl:89,fsf:39,ftb:44,ftp:[12,152],ful:144,full:[12,22,28,32,33,37,39,41,42,71,78,91,119,133,143,144,153,174,176,190,192,195,202,203,214,235,237,238,240,244,247],full_nam:[119,132],fullfil:229,fulli:[39,153],fulltext:[24,25,26,30,33,47,110,112,113,133,138,144,151,165,166,174,176,191,192,195,197,212,229,243],fullwidth:42,fumiyasu:37,funa:41,func:[53,64,68,72],functin:192,function_nam:81,function_not_impl:231,furigana:136,further:238,futur:[37,40,78,110,116,130,131,162,202,225,231],fuzzi:[43,138],fuzzy_search:[22,43,45,158],g0763d91:82,ga54c5f8:152,garbag:[37,40,41,87,119,156],gat:[239,241,248],gb87d9f8:199,gcc:[24,26,28,29,37,39,40],gdb:[6,7],gem:12,gemfil:39,gener:[3,6,21,33,40,42,49,72,112,133,142,144,155,202,214,241],genki:40,geo:[22,37,38,40,57,162,237,244,248],geo_dist:[22,37,39,40,45,158,240,248],geo_distance2:[37,162],geo_distance3:[37,162],geo_in_circl:[22,37,40,43,45,158,240,244,248],geo_in_rectangl:[22,34,35,37,40,43,45,158,248],geodet:[216,248],geograph:[162,238],geoindex:240,geoloc:[22,41,45,196,203,204,205],geometri:[37,42],geopoint:162,geosit:240,get:[0,2,12,17,18,22,25,28,30,33,37,39,41,42,43,49,53,57,72,86,95,110,111,114,121,133,142,143,144,147,151,154,169,192,193,198,199,208,209,211,237,239,243,244,245,248],getaddrinfo:39,getenv:42,getter:33,gettext:[17,18],gir:12,git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,33,37,39,40,41,42,43],githubusercont:21,gitter:[2,42,43],gituub:43,give:0,given:[39,40,43,177,235,240],glaser:43,glib:40,global:[18,22,39,40,42,45,47,49],glossari:[21,22,45],gmo:41,gnu:[3,5,8,12,18,22,23,28,29,33,37],gnupg2:12,gobject:42,going:0,golubchik:[33,42],gone:240,goo:[191,192],good:[0,17,28,110,112,113,133,142,144,168,191,192,193,213,214,243],googl:[133,191,203,204,205,210],goronga:31,goroo:223,got:[40,41],gpg:12,gpl:44,gqtp:[0,1,22,24,25,26,30,39,40,41,42,85,150,151,152,222,230,245],grace:[42,134],gram:[0,43,144,192,241],grand:244,graph:0,greas:238,greater:[136,174],greater_equ:174,gregex:40,grep:[24,25,26,30,235],grew:119,grn1:243,grn2:243,grn3:243,grn:[101,153],grn_address_is_in_us:85,grn_address_is_not_avail:85,grn_api:56,grn_arg_list_too_long:85,grn_bad_address:85,grn_bad_file_descriptor:85,grn_between_too_many_index_match_ratio:41,grn_bool:63,grn_bool_rc:53,grn_broken_pip:85,grn_builtin_typ:[63,69],grn_bulk:[43,56],grn_bulk_:33,grn_bulk_vsiz:[53,56],grn_cach:[22,42,45,47],grn_cache_clos:49,grn_cache_current_get:49,grn_cache_current_set:49,grn_cache_default_open:33,grn_cache_get_max_n_entri:49,grn_cache_open:49,grn_cache_set_max_n_entri:49,grn_cancel:[84,85],grn_cas_error:85,grn_column:[22,45,47],grn_column_cach:33,grn_column_cr:50,grn_column_get_all_index_data:42,grn_column_index:50,grn_column_index_upd:50,grn_column_nam:50,grn_column_name_id:50,grn_column_name_id_len:50,grn_column_name_kei:50,grn_column_name_key_len:50,grn_column_name_nsubrec:50,grn_column_name_nsubrecs_len:50,grn_column_name_scor:50,grn_column_name_score_len:50,grn_column_name_valu:50,grn_column_name_value_len:50,grn_column_renam:50,grn_column_t:50,grn_column_trunc:[41,50],grn_com_event_stop_accept:235,grn_command_error:85,grn_command_input_get_argu:42,grn_command_vers:[22,45,47,53],grn_command_version_default:42,grn_command_version_max:51,grn_command_version_min:51,grn_command_version_st:51,grn_cond:68,grn_conf_get:42,grn_conf_set:42,grn_config_cursor_get_kei:42,grn_config_cursor_get_valu:42,grn_config_cursor_next:42,grn_config_cursor_open:42,grn_config_delet:[42,94],grn_config_get:42,grn_config_set:42,grn_connection_refus:85,grn_content_json:52,grn_content_msgpack:52,grn_content_non:52,grn_content_tsv:52,grn_content_typ:[22,45,47,53],grn_content_xml:52,grn_ctx:[22,39,42,45,47,48,49,50,54,56,57,58,59,60,61,62,63,64,65,66,67,69,70,72,111],grn_ctx_at:[39,43,53],grn_ctx_batch_mod:41,grn_ctx_close:[37,41,53],grn_ctx_db:53,grn_ctx_fin:[39,53],grn_ctx_get:[50,53],grn_ctx_get_all_norm:42,grn_ctx_get_all_t:[42,53],grn_ctx_get_all_token:42,grn_ctx_get_all_token_filt:42,grn_ctx_get_all_typ:42,grn_ctx_get_command_vers:53,grn_ctx_get_match_escalation_threshold:62,grn_ctx_get_output_typ:53,grn_ctx_init:[37,53],grn_ctx_is_open:[42,53],grn_ctx_open:[37,53],grn_ctx_output_nul:42,grn_ctx_output_uint64:42,grn_ctx_per_db:[37,53],grn_ctx_recv:41,grn_ctx_send:[43,49,52,53],grn_ctx_set_command_vers:53,grn_ctx_set_fin:53,grn_ctx_set_match_escalation_threshold:62,grn_ctx_set_output_typ:53,grn_ctx_t:85,grn_ctx_use:53,grn_ctx_use_ql:41,grn_cursor_ascend:67,grn_cursor_by_id:67,grn_cursor_by_kei:67,grn_cursor_descend:67,grn_cursor_gt:67,grn_cursor_lt:67,grn_cursor_prefix:67,grn_cursor_rk:67,grn_dat:37,grn_dat_repair:38,grn_db:[22,38,45,47],grn_db_creat:54,grn_db_create_optarg:54,grn_db_float:42,grn_db_int:63,grn_db_kei:38,grn_db_open:54,grn_db_recov:[41,42,43,54],grn_db_register_by_nam:36,grn_db_text:56,grn_db_touch:[35,54],grn_db_unmap:[42,54],grn_default_logger_get_path:39,grn_default_logger_get_rotate_threshold_s:42,grn_default_logger_set_path:[33,39],grn_default_logger_set_rotate_threshold_s:42,grn_default_query_logger_get_path:39,grn_default_query_logger_get_rotate_threshold_s:42,grn_default_query_logger_set_path:[33,39],grn_default_query_logger_set_rotate_threshold_s:42,grn_directory_not_empti:85,grn_domain_error:85,grn_dump_column_create_flag:42,grn_dump_table_create_flag:42,grn_ecmascript:46,grn_enc_utf8:[55,67],grn_encod:[22,45,47,72],grn_encoding_pars:55,grn_encoding_to_str:55,grn_end_of_data:85,grn_exec_format_error:85,grn_expr:[22,39,41,45,47,98,100,103,162,202],grn_expr_add_var:56,grn_expr_alloc:56,grn_expr_append_const:[11,33,56],grn_expr_append_const_int:56,grn_expr_append_const_str:56,grn_expr_append_obj:[11,56],grn_expr_append_op:[11,33,56],grn_expr_clos:56,grn_expr_compil:56,grn_expr_creat:56,grn_expr_create_for_queri:11,grn_expr_estimate_s:42,grn_expr_exec:[42,53,56],grn_expr_get_keyword:56,grn_expr_get_var_by_offset:56,grn_expr_pars:[33,56],grn_expr_query_no_syntax_error:33,grn_expr_syntax_escap:56,grn_expr_syntax_escape_queri:56,grn_expr_syntax_expand_queri:43,grn_expr_syntax_expand_query_by_t:33,grn_expr_take_obj:43,grn_expr_var:[64,72],grn_fals:[33,53,63],grn_file_corrupt:85,grn_file_exist:85,grn_file_read:42,grn_file_too_larg:85,grn_fileinfo_open:33,grn_filename_too_long:85,grn_fin:[42,71],grn_float_valu:42,grn_function_not_impl:85,grn_geo:[22,45,47],grn_geo_cursor_next:57,grn_geo_cursor_open_in_rectangl:57,grn_geo_estimate_in_rectangl:[37,57],grn_geo_point:57,grn_geo_select_in_circl:37,grn_geo_select_in_rectangl:[37,57],grn_geo_table_sort:42,grn_get_default_cache_base_path:33,grn_get_default_command_vers:51,grn_get_default_encod:55,grn_get_default_match_escalation_threshold:62,grn_get_global_error_messag:42,grn_get_lock_timeout:48,grn_get_package_label:42,grn_hash_siz:42,grn_hash_tini:42,grn_hook:[22,45,47],grn_hook_entri:58,grn_hook_get:58,grn_hook_select:58,grn_hook_set:58,grn_id:[50,53,56,59,60,61,63,66,67,72],grn_id_nil:[53,56,66,67],grn_ii:[22,45,47],grn_ii_buff:59,grn_ii_buffer_append:59,grn_ii_buffer_clos:59,grn_ii_buffer_commit:59,grn_ii_buffer_open:59,grn_ii_cursor:42,grn_ii_cursor_clos:42,grn_ii_cursor_next:42,grn_ii_cursor_next_po:33,grn_ii_cursor_open:42,grn_ii_cursor_set_min:42,grn_ii_cursor_set_min_en:[42,43],grn_ii_estimate_size_for_lexicon_cursor:42,grn_ii_estimate_size_for_queri:42,grn_ii_max_n_chunks_tini:43,grn_ii_max_n_segments_tini:43,grn_ii_overlap_token_skip_en:[33,43],grn_ii_posting_add:43,grn_ii_reduce_expire_threshold:33,grn_ii_sel:90,grn_illegal_byte_sequ:85,grn_improper_link:85,grn_in_values_too_many_index_match_ratio:41,grn_inappropriate_i_o_control_oper:85,grn_incompatible_file_format:85,grn_index_chunk_split_en:43,grn_index_cursor:[22,45,47],grn_index_cursor_next:[40,60],grn_index_cursor_open:60,grn_info:[22,45,47],grn_info_typ:61,grn_init:[39,42,68,71,194],grn_input_output_error:85,grn_int32_value_float_valu:42,grn_interrupted_function_cal:[85,129],grn_invalid_argu:[63,66,67,85],grn_invalid_format:85,grn_invalid_seek:85,grn_io_expir:33,grn_io_flush:33,grn_io_open:121,grn_io_use_spars:42,grn_io_vers:41,grn_is_a_directori:85,grn_itoh:37,grn_ja_skip_same_value_put:40,grn_log_level:72,grn_log_level_pars:42,grn_log_level_to_str:42,grn_log_path:39,grn_logger:39,grn_logger_info:39,grn_logger_reopen:39,grn_logical_range_filter_en:42,grn_logical_range_filter_threshold:42,grn_lzo_error:85,grn_match_escal:[22,45,47],grn_mecab_chunk_size_threshold:42,grn_mecab_chunked_tokenize_en:42,grn_mutex:68,grn_network_is_down:85,grn_ngram_tokenizer_remove_blank_dis:[33,43],grn_ngram_tokenizer_remove_blank_en:33,grn_no_buff:85,grn_no_child_process:85,grn_no_locks_avail:85,grn_no_memory_avail:85,grn_no_space_left_on_devic:85,grn_no_such_devic:85,grn_no_such_device_or_address:85,grn_no_such_file_or_directori:85,grn_no_such_process:85,grn_normalizer_error:85,grn_not_a_directori:85,grn_not_enough_spac:85,grn_not_socket:85,grn_obj:[22,39,41,42,45,47,50,53,54,56,57,58,59,60,61,64,65,66,67,69,70,72],grn_obj_add_hook:58,grn_obj_append:63,grn_obj_cast:42,grn_obj_cast_by_id:63,grn_obj_check:63,grn_obj_clear_lock:[37,63],grn_obj_clos:[11,41,42,53,60,63],grn_obj_column:63,grn_obj_column_index:[50,60],grn_obj_column_scalar:50,grn_obj_column_vector:50,grn_obj_compar:63,grn_obj_compress_lzo:50,grn_obj_compress_zlib:[43,50],grn_obj_db:54,grn_obj_decr:63,grn_obj_defrag:63,grn_obj_delete_by_id:[37,63],grn_obj_delete_hook:58,grn_obj_expir:63,grn_obj_fin:[53,56],grn_obj_flag:[50,56,66,69,72],grn_obj_flush:42,grn_obj_flush_recurs:42,grn_obj_get:63,grn_obj_get_disk_usag:33,grn_obj_get_element_info:61,grn_obj_get_hook:58,grn_obj_get_info:61,grn_obj_get_nhook:58,grn_obj_get_rang:63,grn_obj_get_valu:[37,63],grn_obj_id:63,grn_obj_incr:63,grn_obj_init:63,grn_obj_is_accessor:42,grn_obj_is_builtin:[37,63],grn_obj_is_corrupt:33,grn_obj_is_data_column:33,grn_obj_is_expr:33,grn_obj_is_function_proc:42,grn_obj_is_key_accessor:42,grn_obj_is_lock:63,grn_obj_is_normalizer_proc:42,grn_obj_is_proc_proc:42,grn_obj_is_scalar_column:33,grn_obj_is_scorer_proc:42,grn_obj_is_selector_proc:42,grn_obj_is_t:42,grn_obj_is_text_family_typ:43,grn_obj_is_token_filter_proc:42,grn_obj_is_tokenizer_proc:42,grn_obj_is_tru:42,grn_obj_is_typ:42,grn_obj_key_float:69,grn_obj_key_int:69,grn_obj_key_norm:66,grn_obj_key_uint:69,grn_obj_key_var_s:69,grn_obj_key_with_si:66,grn_obj_lock:63,grn_obj_nam:63,grn_obj_own:42,grn_obj_path:[40,63],grn_obj_path_by_id:[38,63],grn_obj_persist:[50,66],grn_obj_prepend:63,grn_obj_reindex:42,grn_obj_reinit:63,grn_obj_remov:[37,42,63],grn_obj_remove_depend:43,grn_obj_renam:63,grn_obj_search:[43,65],grn_obj_set:63,grn_obj_set_element_info:61,grn_obj_set_fin:64,grn_obj_set_info:61,grn_obj_set_mask:63,grn_obj_set_valu:[63,67],grn_obj_table_dat_kei:37,grn_obj_table_hash_kei:[66,67],grn_obj_table_no_kei:[66,67],grn_obj_table_pat_kei:[66,67],grn_obj_type_to_str:43,grn_obj_unlink:[53,63],grn_obj_unlock:63,grn_obj_user_data:70,grn_obj_vector:[53,56,63],grn_obj_with_posit:50,grn_obj_with_sect:50,grn_obj_with_weight:50,grn_object_corrupt:85,grn_op_adjust:[11,43,65],grn_op_and:[11,65],grn_op_and_not:65,grn_op_but:11,grn_op_cal:11,grn_op_fuzzi:43,grn_op_get_valu:33,grn_op_or:[11,65],grn_op_push:11,grn_op_term_extract:42,grn_oper:[50,56,57,65,66],grn_operation_not_permit:85,grn_operation_not_support:85,grn_operation_timeout:85,grn_operation_would_block:85,grn_operator_to_exec_func:33,grn_order_by_estimated_size_en:33,grn_parse_query_flag:42,grn_pat_at:35,grn_pat_cursor_next:42,grn_pat_del:42,grn_pat_fuzzy_search:43,grn_permission_deni:85,grn_persistent_cache_open:33,grn_plugin_calloc:43,grn_plugin_charlen:72,grn_plugin_command_cr:[41,72],grn_plugin_error:[72,85],grn_plugin_expr_var_init:[41,72],grn_plugin_fin:72,grn_plugin_fre:72,grn_plugin_get_nam:42,grn_plugin_get_ruby_suffix:42,grn_plugin_get_suffix:37,grn_plugin_get_system_plugins_dir:37,grn_plugin_init:72,grn_plugin_isspac:72,grn_plugin_log:72,grn_plugin_malloc:72,grn_plugin_mutex:72,grn_plugin_mutex_clos:72,grn_plugin_mutex_lock:72,grn_plugin_mutex_open:72,grn_plugin_mutex_unlock:72,grn_plugin_proc_alloc:72,grn_plugin_proc_get_cal:33,grn_plugin_proc_get_var:[41,72],grn_plugin_proc_get_var_bool:43,grn_plugin_proc_get_var_by_offset:[41,72],grn_plugin_proc_get_var_int32:43,grn_plugin_proc_get_var_str:43,grn_plugin_realloc:72,grn_plugin_regist:[36,72],grn_plugin_win32_base_dir:[42,72],grn_plugin_windows_base_dir:[42,72],grn_plugins_dir:42,grn_post:[57,60],grn_proc:[22,45,47],grn_proc_creat:64,grn_proc_func:[53,64,72],grn_proc_funct:72,grn_proc_get_info:64,grn_proc_get_typ:41,grn_proc_is_st:33,grn_proc_set_is_st:33,grn_proc_set_selector:41,grn_proc_typ:64,grn_ptr:42,grn_ptr_init:[53,56],grn_ptr_value_at:[53,56],grn_pvector:[42,53,56],grn_qlog_path:39,grn_queri:39,grn_query_expander_tsv_synonyms_fil:201,grn_range_error:85,grn_rc:[48,49,50,51,53,54,55,56,57,58,59,61,62,63,64,65,66,67,71,72],grn_read_only_file_system:85,grn_request_canceler_cancel_al:43,grn_resource_busi:85,grn_resource_deadlock_avoid:[63,85],grn_resource_temporarily_unavail:[33,85],grn_result_too_larg:85,grn_retry_max:85,grn_scan_info_regexp_dot_asterisk_en:33,grn_scorer_error:85,grn_search:[22,45,47],grn_search_optarg:[42,65],grn_select:133,grn_selector_func:41,grn_set_default_cache_base_path:33,grn_set_default_command_vers:51,grn_set_default_encod:55,grn_set_default_match_escalation_threshold:62,grn_set_lock_timeout:48,grn_snip:[39,41],grn_snip_clos:41,grn_sock:235,grn_socket_is_already_connect:85,grn_socket_is_already_shutdown:85,grn_socket_is_not_connect:85,grn_socket_not_initi:85,grn_stack_over_flow:85,grn_success:[48,49,50,53,54,56,63,71,72,85,194],grn_syntax_error:85,grn_t:42,grn_tabl:[22,45,47],grn_table_add:66,grn_table_apply_expr:33,grn_table_at:[35,38,63,66],grn_table_column:66,grn_table_cr:66,grn_table_cursor:[22,45,47,60],grn_table_cursor_clos:67,grn_table_cursor_delet:67,grn_table_cursor_get_kei:67,grn_table_cursor_get_valu:67,grn_table_cursor_next:[35,67],grn_table_cursor_open:[35,67],grn_table_cursor_set_valu:67,grn_table_cursor_t:67,grn_table_dat_kei:66,grn_table_delet:[42,66],grn_table_delete_by_id:[42,66],grn_table_differ:66,grn_table_find_reference_object:33,grn_table_fuzzy_search:43,grn_table_fuzzy_search_with_transposit:43,grn_table_get:[38,66],grn_table_get_kei:66,grn_table_group:[42,66],grn_table_group_flag:[42,66],grn_table_group_result:66,grn_table_hash_kei:[57,66],grn_table_lcp_search:66,grn_table_pat_kei:66,grn_table_renam:66,grn_table_s:[11,66],grn_table_select:[3,56],grn_table_select_and_min_skip_en:33,grn_table_select_enough_filtered_ratio:43,grn_table_select_sequenti:43,grn_table_setoper:[33,43,66],grn_table_sort:66,grn_table_sort_asc:66,grn_table_sort_desc:66,grn_table_sort_flag:66,grn_table_sort_kei:66,grn_table_trunc:[37,66],grn_table_upd:66,grn_table_update_by_id:66,grn_text_len:56,grn_text_printf:41,grn_text_valu:56,grn_text_vprintf:41,grn_thread_:[22,45,47],grn_thread_get_limit:[42,68],grn_thread_get_limit_func:68,grn_thread_set_get_limit_func:[68,143],grn_thread_set_limit:68,grn_thread_set_limit_func:68,grn_thread_set_set_limit_func:[68,143],grn_token_filter_error:85,grn_tokenize_onli:43,grn_tokenizer_error:85,grn_tokenizer_query_open:39,grn_too_large_offset:85,grn_too_many_link:85,grn_too_many_open_fil:85,grn_too_many_open_files_in_system:85,grn_too_many_symbolic_link:85,grn_too_small_limit:85,grn_too_small_offset:85,grn_true:[53,63],grn_type:[22,45,47],grn_type_cr:69,grn_unknown_error:85,grn_unsupported_command_vers:85,grn_update_not_allow:85,grn_user_data:[22,45,47,64,72],grn_vector_pop_el:42,grn_void:43,grn_window_function_error:85,grn_window_get_s:33,grn_zlib_error:85,grn_zstd_error:85,grndb:[22,33,41,42,43,45,121,148],grnline:241,grnslap:[22,45,148],grntest:[12,13,35,37,39,43],grnwrap:241,gro:[156,176],gronga:[201,210],gronnga:210,groo:[133,156],groogna:[31,33,38,39,133,156,191],groogna_default_command_vers:225,groonga1:80,groonga:[1,2,13,16,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,35,36,37,38,39,40,41,42,43,45,46,47,48,49,52,63,68,71,72,74,78,79,80,81,82,84,89,90,91,93,97,101,102,103,107,110,112,113,115,116,120,121,122,123,127,129,132,133,134,135,136,138,141,143,144,147,148,149,162,165,166,167,168,169,174,176,179,188,190,191,192,193,194,195,196,197,198,199,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,222,223,224,225,228,231,235,236,238,239,240,241,242,243,244,245,246,247,248],groonga_cache_base_path:33,groonga_cache_limit:40,groonga_cli:192,groonga_clone_dir:12,groonga_databas:225,groonga_database_auto_cr:[39,40],groonga_dir:12,groonga_dist:39,groonga_get_thread_limit:68,groonga_log_level:40,groonga_log_path:40,groonga_n_record:40,groonga_org_path:12,groonga_path:152,groonga_query_log_path:[40,41],groonga_set_thread_limit:68,groonga_vers:37,groongau0000ful:214,grooon:156,grooonga:33,group:[0,33,39,40,41,42,43,110,112,113,133,179,212,238,239,244],group_kei:33,grroonga:210,gtar:29,gted:17,gtihub:37,guard:[42,205],guess:28,gui:132,gurun:190,gurunavi:[33,42,43],gzcat:43,gzip:[28,39,224],gzip_typ:225,had:[17,42,43,203],hai:11,half:195,halfwidth:195,hana:240,hanako:100,hand:[0,18,42,43,133,153,156,174,179,238,243],handl:[33,40,41,42,43,53,85,90,153,212,214,215,236,238],hang:40,hanleabl:90,happen:33,hard:215,has:[0,12,19,32,33,39,40,41,42,43,44,46,48,53,57,66,72,74,78,81,90,91,93,100,110,112,113,115,116,117,119,120,121,129,132,133,136,138,140,141,143,144,145,149,151,153,154,155,156,159,162,165,166,168,173,176,179,190,191,192,193,194,195,196,197,199,201,202,203,204,205,206,207,209,210,213,214,215,224,225,231,238,239,240,241,243],hash:[33,37,39,40,42,43,90,101,120,132,138,192,212],hash_index:244,hash_kei:[119,120,212],hash_tag:244,hat:28,hatak:[41,42],have:[0,6,7,16,17,21,28,33,41,42,52,54,74,81,85,89,90,91,103,110,112,113,115,119,120,133,134,136,138,140,149,153,156,173,191,192,193,195,197,201,206,209,211,213,214,215,216,224,225,229,238,241,245],haystack:11,hdd:152,head:[41,133,150,153,231],header:[29,39,40,41,42,84,85,86,89,90,91,93,97,100,102,105,107,110,111,112,114,115,116,117,118,119,121,122,123,127,128,129,130,131,133,134,135,137,138,140,141,143,144,145,146,225],heavi:[33,102,133,223],held:42,hello:[42,110,112,113,133,142,192,193,213,214,243],help:[16,17,23,33,40,133,149,151,198,202,203,210,214],hemispher:39,hendro:40,here:[6,7,8,17,18,21,28,30,31,33,46,49,52,53,54,56,68,71,72,74,78,82,83,84,85,86,89,90,91,93,94,95,96,100,101,102,103,104,105,106,110,111,112,113,114,115,116,117,119,120,122,123,127,128,129,130,131,132,133,134,135,136,138,140,141,142,144,145,146,149,151,153,155,156,157,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,194,195,197,201,202,203,204,205,208,209,211,212,213,214,215,225,231,239,243,248],hereaft:0,hex:[192,240],hidden:0,hide:40,hideki:[40,41,42],high:[0,78,133,190,204],high_scor:89,higher:[90,133,136],highight_ful:165,highli:[203,204,205],highlight:[43,165,166],highlight_ful:[22,33,41,43,45,158,166],highlight_html:[22,33,41,42,43,45,158,165],hino:40,hint:235,hiragana:[173,191,192,198,208,214],hiro:42,hiroaki:[42,43],hiroshi:[37,41,42,43],hirotaka:42,hiroyuki:[42,43],histori:[33,37],hit:[40,90,133,190,246],hmm:244,hobbi:194,hoge:[151,160],hold:[238,242],home:[12,28,110,113,115,214],homebrew:[12,22,23,41,43],homepag:152,hook:[21,115],horikoshi:37,horimoto:[110,113,115],host1:202,host2:202,host:[6,7,8,21,37,151,152,156,202,206,231,245],host_name_or_ip_address:[231,245],hostnam:[39,151,152,153,154,231],hottolink:44,hour:[48,192,194,244],how:[4,18,21,22,23,24,25,26,27,28,29,30,31,33,39,41,42,43,45,72,90,103,110,111,113,115,132,133,140,156,162,168,174,192,197,203,204,205,207,215,222,228,233,238,239,240,241,243,244],how_to_use_range_index:111,howev:0,howto:[33,43],html:[3,12,35,37,39,41,43,153,154,165,166,176,225],html_untag:[22,40,45,158],htpasswd:[153,225],http:[0,1,12,13,17,21,22,24,25,26,27,28,29,30,31,33,39,40,41,42,43,45,78,101,129,148,150,151,152,153,156,167,168,169,202,211,214,222,223,235,237,238,239,240,241,243,248],httpd:[12,22,24,25,26,30,33,37,38,39,40,41,42,43,45,49,129,143,148,155,194,210,222,224,225],httprewritemodul:153,hubeni:162,human:[91,138],hypertext:[22,237],hyphen:[90,138,241],i18n:[3,15,18,22,43],i386:[12,37],i686:152,ichii:37,id_column:50,idea:133,identifi:[33,46,89,100,216],ideograph:42,idf:[41,203,204,205],ieee:216,ifexist:103,iff:241,ignor:[33,37,39,40,41,42,43,54,100,102,116,129,133,144,191,201,212,214],ii_buff:59,ill:232,illegal_byte_sequ:231,illustr:239,imagin:[133,239],immedi:[0,42,43,129,134,153,156],immut:119,implement:[17,37,39,41,42,43,44,84,89,90,110,113,130,131,133,153,154,162,173,192,205,206,212,223,224],implemnt:224,implicitli:243,improper_link:231,improv:[102,153,169,190,229],in_record:[22,33,45,158],in_valu:[22,33,41,42,43,45,158],inaccur:39,inada:40,inappropriate_i_o_control_oper:231,inc:[33,41,42,43],includ:[6,16,40,41,42,43,81,89,91,93,110,112,113,115,116,119,121,122,123,127,130,131,133,141,142,144,156,159,176,192,201,204,205,214,225,241],inclus:159,incompat:[33,39,40,41,42,43],incompatible_file_format:231,incomplet:43,incorrect:41,increas:[0,6,7,33,42,68,78,117,130,133,135,144,145,156,162,202,205,214,215],increment:[33,83,149],incres:41,independ:[0,111,153],index:[12,17,22,33,37,38,39,40,41,42,43,44,45,54,57,59,60,74,78,91,101,102,110,111,112,113,115,119,128,133,140,142,149,151,168,173,176,191,192,197,212,214,215,237,244],index_1:132,index_2:132,index_blog:243,index_column:[41,42,43,102,133],index_column_df_ratio:33,index_column_df_ratio_between:33,index_column_nam:132,index_column_name_with_table_nam:132,index_column_source_record:33,index_column_value_statistics_n_array_seg:119,index_column_value_statistics_n_buffer_seg:119,index_friend:240,index_medium:[90,119],index_messag:243,index_n:132,index_point:240,index_smal:[90,119],index_tag:240,index_titl:243,indexblog1:243,indexblog2:243,indexbuf:50,indic:[40,144,162,194,241,246],infin:33,infinit:[37,39,41,42,138],influenc:[151,153],info:[33,42,43,90,107,108,149,151,153,202,205],inform:[0,2,17,22,33,38,39,40,42,43,49,53,91,112,119,120,122,127,130,131,132,133,149,151,194,195,237,240,244],inherit:40,inhibit:38,init:[25,28,39,40,41,64],initi:[33,37,39,41,42,43,53,71,72,110,112,113,133],innodb:0,input:[33,37,40,43,52,81,103,133,192,198,208,209,210,211,231,241],input_file_nam:81,input_output_error:231,input_typ:103,insensit:[133,173,202],insert:[39,176,241],inspect:[33,40,41,42,43,119,132],inst:40,instal:[0,3,12,14,21,22,24,25,26,27,29,30,33,37,39,40,41,42,43,72,154,229],instant:22,instantli:[0,176],instead:[21,23,26,28,31,33,37,39,40,41,42,43,53,72,88,90,113,119,127,133,135,138,149,151,153,162,165,166,174,176,190,191,192,195,197,202,212,218,229,231,247],instroduc:40,instruct:[33,43,156],insuffici:[43,238],int16:[35,40,119,120,132],int32:[39,40,41,42,78,89,93,113,119,120,132,133,136,138,141,146,156,159,162,170,174,191,192,203,204,205,208,209,211,234,239,240,241,243,244,248],int64:[40,41,113,119,120,132,133],int8:[35,40,41,119,120,132,238],integ:[42,43,78,85,119,120,133,143,151,216,231,238,241],integr:[21,39,40,238],intel:152,intend:[39,41,179,191,243],intens:153,interact:[231,241],interest:[3,42,202,241],interfac:[39,156,199,241],intern:[38,40,41,42,43,49,52,53,119,120,176,238],internet:[0,190],interpret:[12,38,191],interrupted_function_cal:231,interv:[43,192],introduc:[3,33,41,42,43],introduct:[3,15,17,22,41,45,101,136,207,231,241,245],introspect:39,intuit:246,inv_res_column:152,inv_thread_column:152,invalid:[33,37,39,40,41,42,43,55,72,90,102,133,138],invalid_argu:231,invalid_format:231,invalid_seek:231,invers:[41,203,205],invert:[22,37,39,41,42,43,90,176,192,240,241],investig:[33,40,43,235,236,239],io_flush:[22,33,42,43,45,79],ipa:26,ipad:[26,27,214],iptabl:[225,245],is_a_directori:231,is_anim:238,is_popular:[110,112,113,133],is_removable_t:140,is_stop_word:[41,42,142,213],isn:[6,7,8,28,33,39,40,41,42,43,46,53,54,68,81,84,86,90,91,102,103,110,111,112,113,115,119,130,131,132,133,136,138,140,151,153,176,191,201,206,208,209,210,214,231],iso:192,isob:40,isssu:40,issu:[3,22,40,41,42,43,229,236,237],itagaki:35,item:[33,42,46,94,95,96,133,136,138,147,156,173,208,209,211,212,225,229],item_:136,item_dataset:[155,211],item_queri:[136,155,156,208,209,211],item_query_kana:156,item_query_kei:156,items_index:173,iter:[42,192],its:[3,20,33,39,42,56,68,72,78,90,91,102,103,110,113,115,132,133,140,141,149,168,192,194,204,208,228,231,235,238,241,244,245],itself:[33,40,41,78,144,191,201,202],ivh:26,iwai:[38,39,40,43],iwamatsu:43,jacob16bit:42,jame:246,jan:244,januari:192,japan:[100,208,239,245,248],japanes:[0,2,17,19,39,41,191,192,198,208,214],jason:246,javascript:[12,22,37,153,154,237,245],jeff:246,jekyl:12,jemalloc:41,jennif:246,jersei:244,jessi:[12,22,23,40,41,42],jinja2:12,jira:43,jiro:240,job:152,john:[100,246],join:2,joseph:246,jqueri:41,json:[33,35,37,39,41,42,43,52,78,82,136,153,154,199,225,231,241],jsonp:[42,156],juli:[33,42],juman:26,jumand:26,jun:[41,42],just:[6,7,17,21,23,24,25,26,28,29,30,31,33,37,39,40,41,42,49,54,63,71,81,82,86,90,93,100,110,115,116,118,119,122,127,129,130,131,133,138,140,141,144,149,151,155,156,174,191,192,193,194,201,203,206,208,214,224,225,244],kagami:42,kakesa:42,kana:[136,155,156,198,208,209,211],kanako:40,kanji:[198,214],kashihara:41,katagiri:40,katakana:[136,173,195,198,208,214],kawada:41,kawaji:39,kazuhiko:[39,41,43],kazuhiro:40,keep:[32,33,37,43,49,53,78,84,149,153,193,204,205,214],kei:[0,12,22,32,33,38,39,40,41,42,43,46,63,66,67,78,89,90,100,103,110,112,115,119,129,132,135,136,138,140,147,149,156,174,191,192,195,198,212,214,237,238,239,240,241,247],ken:240,kenichi:[35,37],kentaro:40,kept:[113,133],kernel:[39,215],key1:[33,89],key2:33,key_1:132,key_2:132,key_column:50,key_float:120,key_geo_point:120,key_index:140,key_int:120,key_larg:[32,43,138,212],key_length:231,key_n:132,key_nam:[113,133],key_norm:[39,42,138,195],key_siz:66,key_typ:[66,90,132,151,152,238,239,240,241,243,244,246],key_uint:120,key_var_s:120,key_with_si:[138,191,192,246],keyboard:133,keybuf:66,keyr:[25,39],keys_zon:153,keyword1:[39,165],keyword2:[39,165],keyword:[33,39,40,43,56,111,133,138,165,166,174,176,191,203,204,205,210,240,241,243],keyword_cont:56,keyword_s:56,kfc:197,kill:134,kind:[0,216,239,241,247,248],kinjir:240,kisk:39,kitaiti:43,kiyokawa:43,klose:42,know:[42,90,102,133,149,214,239,240,244],knowledg:0,known:[0,40,176,192,203,241,245],koi8r:[28,39,151],koji:39,konishi:40,korea:239,kosuk:40,kouhei:40,kuriyama:[41,42],kwic:176,kytea:[28,39,40,144],label1:[41,113,133],label2:[113,133],label:[33,40,41,42,43,89,173],label_1:133,label_2:133,label_n:133,labeledargu:33,lack:235,lager:40,lake:197,langasek:43,languag:[0,1,3,20,21,33,40,41,43,214],larg:[0,33,39,42,43,149,191,192,206,212,214,215,225,238],larger:[33,41,42,78,84,97,113,119,120,133,138,151,157,176,211,212,215,231],larget:129,largetext:212,last:[33,39,42,53,144,156,214,235],last_modifi:244,lat:152,late:133,latenc:152,later:[33,37,39,40,41,42,43,89,133,151,165,166,167,179,195,202,206,241],latest:[2,6,7,8,41,42,43,133],latin1:[28,39],latin:151,latinov:43,latitud:[22,192,237,244,248],latitude_in_degre:192,latitude_in_degreexlongitude_in_degre:192,latitude_in_msec:192,latitude_in_msecxlongitude_in_msec:192,latter:[46,156,195,201],launch:157,launchpad:[12,30,41],layer:42,layout:12,lc_messag:17,lcov:14,lead:[133,176,241],leak:[33,35,37,39,40,41,42,43,135],leakag:247,leaner:157,lear:211,learn:[40,110,112,113,133,136,162,207,239,243],learner:[22,41,43,45,148,155,210],least:[39,42,86,90,168,179,191,215,236],left:[43,57],left_hand_side_el:43,leftmost:192,lemon:46,length:[39,43,72,238],less:[33,41,42,43,84,133,138,151,168,174,176,190,193,202,204,205,215,216,229,248],less_equ:174,let:[22,78,110,112,113,133,140,162,193,214,235,237,238,240,241,243,247,248],letter:195,level:[33,39,40,41,42,43,72,90,107,108,151,153,157,194,231,239],lexcon:241,lexicon2:243,lexicon:[22,42,43,90,101,128,140,142,174,179,193,195,202,212,213,237,243],lexicon_t:152,lgpl:44,lib:[27,35,40,122,123,127,149,153,229,235],libedit:[26,28,37,39,42],libev:[25,28,30,38],libgcc_s_sjlj:41,libgroonga:[20,33,241],liblz4:25,liblzo2:30,libmecab:[12,25,30],libmemcach:14,libmsgpack:[25,30],librari:[1,20,22,23,33,39,40,41,42,43,47,52,71,143,151,190,191,203,223,229,235,241],libstemm:41,libtool:[6,42],libwinpthread:41,libzmq3:25,libzmq:30,libzstd:25,lic:168,licens:[12,39,41,44],life:42,lifecycl:21,light:[93,118,120,141,223],like:[2,22,28,41,42,50,78,91,93,110,112,113,118,119,121,133,136,141,151,153,156,162,173,174,179,190,191,192,197,202,204,205,208,214,223,225,237,239,244],limit:[22,33,34,37,39,40,41,42,43,45,57,66,67,98,129,136,151,153,162,179,190,191,192,194,203,204,206,211,215,237,240,241,243,245],line:[6,7,8,14,17,18,21,28,31,33,37,39,41,42,53,81,132,153,162,191,197,201,202,206,223,224,225,235,241],line_cont:81,line_numb:81,link:[33,39,41,42,133,191,192,238,239,245],linux:[3,5,8,12,18,22,23,33,37,39,45,152],lion:39,lisp:33,list:[3,12,13,17,18,22,25,33,39,41,42,43,56,91,102,111,114,117,119,120,133,138,145,151,153,155,157,191,192,195,197,213,214,235,238,240,241,244],listen:[33,39,153,225,231,235,245],liter:[37,39,40,43,165,166,176,191,202,214],littl:[133,151,153],live:[138,244],lldb:[6,7],llt:144,load:[22,33,35,37,38,39,40,41,42,43,45,46,79,88,89,90,93,97,100,101,102,110,112,113,115,118,119,122,127,131,133,136,138,141,142,146,149,151,152,156,157,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,195,198,201,202,203,204,205,206,208,209,211,213,216,225,234,237,238,239,240,243,246,247,248],loaded_id:43,loaded_valu:131,local:[0,6,7,12,17,18,27,28,151,153,192],localhost:[12,129,150,151,152,153,156,199,225,231],localstatedir:23,locat:[21,22,39,40,41,43,81,153,197,225,237,238,239,244,245],location_in_groonga:81,location_in_input:81,location_str:244,lock:[22,33,37,39,40,42,43,48,54,72,104,105,106,176],lock_acquir:[22,42,45,79,106],lock_clear:[22,33,41,42,45,79,88,104,106],lock_releas:[22,42,45,79,104],log1:89,log:[12,22,23,33,37,39,40,41,42,43,45,53,72,89,90,107,110,112,114,115,118,121,128,133,138,151,152,153,156,202,204,205,206,208,209,211,212,224,229,236],log_20160320:115,log_level:[22,33,42,45,79,90,108,109,149,151,194],log_put:[22,42,45,79,107,109,151],log_reopen:[22,43,45,79,107,108],log_repoen:39,logal:21,logger:[39,42],logic:[39,42,43,110,112,113,114,133,168,206,214],logical_:[111,206],logical_count:[22,33,42,45,79,135,206],logical_paramet:[22,42,45,79,206],logical_range_filt:[22,33,42,45,79,110,111,135,206],logical_select:[22,33,42,43,45,79,110,112,115,135,206,217],logical_shard_list:[22,42,45,79,115,206],logical_table_nam:[110,112,113,206],logical_table_remov:[22,33,42,43,45,79,102,206],logicalcountcommand:110,logicalselectcommand:113,logicaltableremovecommand:115,login:215,logo:39,logrot:[39,41,42],logs_20150203:[110,112,115],logs_20150801:114,logs_20150802:114,logs_20150814:206,logs_20150815:206,logs_20150930:114,logs_20160318:115,logs_20160319:115,logs_20160320:115,logs_20160320_:115,logs_20160320_timestamp:115,logs_message_index:202,logs_timestamp:128,logyyyymmddhhmmss:156,london:162,longer:[44,53,104,119],longest:[37,66,192],longitud:[22,192,237,244,248],longitude_in_degre:192,longitude_in_msec:192,longitudexlatitud:40,longtext:[46,57,90,119,120,132],look:85,loop:[39,41,42,43],loose_items_index:173,looseitem:173,lost:[33,43],lot:40,love:243,lower:[90,133,138,144,202,241],lowest:133,lru:86,lte:144,lucid:[35,40],lunch:0,lz4:[23,33,41,43,90,119,132],lzo:[37,39,40,41],lzo_error:231,m64:29,mac:[22,23,35,39,41,43],machin:[41,151],macport:[22,23,37],macro:[33,37,40,41,42,235],made:[37,39,42,241],madrid:162,magnitud:113,mai:[0,20,28,32,33,37,39,40,41,42,43,49,50,54,68,81,90,91,93,102,104,105,106,110,112,116,118,129,130,131,132,135,136,138,140,141,149,153,156,168,191,192,201,202,203,204,205,212,214,215,225,240,243],mail:[3,17,22,42],mail_column:152,mailarch:12,main:[12,25,68,113],mainli:[41,244],mainlin:[41,42],mainstream:0,maintain:214,mainten:214,major:23,make:[0,14,17,18,19,23,24,25,26,27,29,30,33,41,43,72,150,151,152,153,176,193,241,245,246],makecach:39,makefil:[7,8],makoto:43,malfunct:42,malloc:41,man:43,manag:[0,18,21,28,46,53,54,83,97,119,129,147,149,151,153,176,201,212,225,245],mani:[0,3,17,28,32,33,37,40,41,42,43,68,78,90,102,110,112,113,115,120,133,138,140,142,144,153,155,176,191,192,202,203,204,205,210,212,215,223,224,225,229,235,238,239,241],manipul:190,manner:[133,241],manual:[22,41,193],map:[33,37,42,46,89,97,133,194,208,215,236],map_hugetlb:37,mariadb:[40,41,43],mark:[33,38,41,42,43,90,138,195,213,214,229,244],marku:39,markup:[16,42],masafumi:[40,41,43],masaharu:[38,39,40,43],masahiro:[35,40,41],masanori:43,masatoshi:42,massachusett:244,master:[17,21,153],match:[23,33,35,37,39,40,41,42,43,46,56,57,78,100,103,110,112,113,133,138,147,151,153,159,165,166,168,169,173,174,176,179,190,193,202,203,204,205,213,234,241,243,244],match_column:[22,33,40,41,42,43,78,90,98,165,166,176,191,193,194,203,204,205,213,232,234,237,241,244,247],match_escalation_threshold:[28,35,53,147],math:170,math_ab:[22,33,45,158],matsuu:35,matthia:42,matur:[1,229],maverick:37,max:[33,37,39,40,41,42,43,46,49,67,68,87,94,95,96,97,111,119,133,135,140,147,150,151,152,156,175,176,192,204,212,225],max_array_segment_id:119,max_buffer_segment_id:119,max_command_vers:[82,135,153,199,231,241,245],max_concurr:150,max_dist:43,max_in_use_chunk_id:119,max_in_use_physical_segment_id:119,max_interv:192,max_length:168,max_map_count:236,max_nfthread:68,max_section_id:119,max_siz:67,max_total_s:119,max_tp:150,max_valu:215,maximium:133,maximum:[32,42,83,90,110,113,115,119,120,133,138,159,192,203,204,212,231,236,238,241],mcdonald:197,mdev:[42,43],mean:[28,33,39,40,41,42,43,46,48,52,56,57,63,72,78,84,85,90,91,97,102,104,105,106,107,110,112,113,115,119,121,128,129,133,135,136,144,147,149,151,153,156,179,191,192,194,195,197,198,201,202,204,205,206,208,214,215,236,238,239,241,243,248],meaning:42,meaningless:[46,202],measur:[0,37],mecab:[0,12,24,25,26,27,28,30,37,39,40,41,42,43,44,214],mecab_new2:39,mecab_strerror:41,mecabrc:27,mechan:[39,42,153,225],media:41,median:41,medium:[23,24,25,26,30,31,43,119,244],meerkat:37,meet:[41,244,248],meetup:42,memcach:[0,1,22,42,43,222,245],memo1:203,memo2:203,memo3:203,memo4:203,memo5:203,memo6:203,memo7:203,memo:[42,120,132,168,169,174,188,203,204,205,213],memo_index:41,memori:[22,23,24,25,26,30,31,33,35,37,39,40,41,42,43,49,53,72,90,97,102,133,135,138,151,153,202,233,235],memos_cont:213,memos_content_index:[120,132],memos_tag:169,memset:42,mention:179,menu:[31,133],mercuri:12,merg:[0,17,39],meridian:162,merit:[112,133,151,153],messag:[6,7,12,22,23,33,37,38,39,40,41,42,43,72,81,108,194,202,204,205,233,243,244],message_index:[204,205],message_pack_install_prefix:23,messagepack:[28,33,37,38,39,42,52,199,225,231],met:179,meta:[39,91,149],metadata:[33,39,43,90,120,130,131,203,204,205,244],meter:[162,170,248],method:[33,40,42,119,132,154,198,208,214,241],micro:[22,192,237,238],microsecond:[194,238],microsoft:[8,31,42,235],midnight:192,migrat:[41,110,112,113,133,191,192],mike:100,million:[32,90],millisecond:[48,84,151,156,192,238,248],mime:[42,225],min:[33,39,41,42,48,67,133,150,152],min_siz:67,minagawa:[40,41,43],mind:[32,206],mine:0,mingw:12,minim:[153,159],minimum:[24,25,26,30,72,110,113,115,133,192,229],minut:[192,194,208,209,244,248],mip:43,mipsel:43,mismatch:[33,41,43,149],miss:[33,37,39,40,41,42,43,201],mitani:41,mitsuhiro:35,mitsuo:40,mix:[42,78,136,154,214],miyashita:43,mizuhara:42,mkdir:101,mkostemp:41,mktime:42,mmap:[22,40,233],mobil:0,mode1:168,mode:[17,33,39,40,41,42,43,44,121,154,168,174,202,214,231,241],model:[41,143,151,231],moden:168,modern:244,modif:42,modifi:[28,33,43,236,245,247],modul:[0,22,35,41,42,195,203,213,214,225],moero:240,monei:240,monitor:[24,25,26,30,40],monkei:238,month:[33,42,192,194,206,240,244],montywi:38,more:[0,6,7,28,32,33,39,40,41,42,43,53,72,74,78,90,91,102,110,112,113,115,119,120,128,133,136,138,140,149,151,153,156,157,168,169,173,174,176,179,191,192,193,198,201,202,203,204,205,206,209,210,212,213,214,215,216,225,231,238,241,244,246],moreov:248,moritapo:240,moritar:243,morn:193,morpholog:[0,28,192,214],most:[33,41,42,53,57,78,79,90,113,120,133,191,192,202,204,214,225,238,241],motoi:40,move:[16,31,37,39,42,89,97,119],movi:240,mpaa:159,mrb:42,mrb_valu:43,mroonga:[22,33,38,39,40,41,42,43,78,101,110,112,113,133,165,166,167,168,169,174,179,191,192,201,203,206,243],mrubi:[6,7,8,12,40,41,42,43,130,131,206],ms740668:235,msdn:235,msec:[37,48],msg_control:42,msg_controllen:42,msg_flag:42,msg_id:12,msghdr:42,msgpack:[33,42,43,199,225,231],msvc:42,msyql:78,mte:44,much:[33,214],multi:[0,28,37,41,42,43,153,194,224],multibyt:[37,43],multilin:202,multipl:[0,22,33,39,40,41,42,43,46,49,78,91,100,110,112,113,116,128,129,132,133,142,144,151,153,156,165,168,169,174,191,196,202,203,206,208,223,237,240,242,244],multipli:192,multithread:[42,97,129],munin:[23,24,25,26,30,37,38,39,40,41],murakami:[33,40,41,42,43],murata:33,museum:244,musha:42,music:[194,240],must:[6,7,8,28,33,41,42,43,46,49,50,54,56,57,63,71,72,74,89,90,91,93,97,100,102,103,104,105,106,110,112,113,119,121,129,133,136,138,141,143,149,151,153,156,157,159,167,173,179,188,191,192,202,204,205,206,211,215,225,231,236,238,241,245],mutabl:119,mutex:[40,72],mutex_lock:68,mutex_unlock:68,mxcl:12,myamanishi3:33,myisam:0,mysql:[0,24,25,26,30,41,42,43,44,78,116,133,165,166,176,195,201,203,206,210],n29:192,n_array_seg:119,n_buffer_seg:119,n_builtin_type_nam:54,n_byte:120,n_element:[43,120],n_entri:86,n_garbage_chunk:119,n_garbage_chunks_in_space0:119,n_garbage_chunks_in_space13:119,n_garbage_chunks_in_space1:119,n_garbage_seg:119,n_hit:[110,133],n_kei:66,n_keyword:56,n_like:[81,110,112,113,133,191,192,215],n_likes_class:133,n_likes_cumulative_sum_per_tag:[110,112,113,133],n_likes_str:[110,112,113,133],n_likes_sum_per_tag:[110,112,113,133],n_loaded_record:43,n_max_thread:143,n_queri:[82,135,153,199,231,241,245],n_record:119,n_result:66,n_tabl:53,n_unmanaged_seg:119,n_var:72,nagano:41,naist:214,naiv:239,nakai:40,nakamura:42,name1:[110,112,113,133,192],name2:[110,112,113,133,192],name:[0,17,22,33,37,38,39,40,41,42,43,45,46,50,53,54,55,56,63,64,66,69,72,81,87,89,91,92,98,100,102,103,104,105,106,114,115,116,117,120,122,123,128,132,136,137,139,144,145,146,149,151,153,156,157,162,165,168,174,179,192,201,206,208,212,225,228,231,235,237,238,239,240,241,244,246,248],name_1:[241,245],name_2:[241,245],name_s:[50,53,56,63,64,66,69,72],name_t:119,namebuf:[50,63],nan:33,nanosecond:[81,194],naoina:[39,40],naoya:[33,40,41,42,43],narg:56,narrow:[22,40,41,102,133,235,237],narwhal:37,natanael:42,natti:37,natur:[33,43],ncpu:27,nearbi:0,nearest:170,necessari:[37,149,241],need:[0,5,6,7,8,17,18,21,28,29,31,32,33,37,39,41,42,46,49,52,53,56,68,71,78,81,90,97,102,104,110,111,112,113,114,115,116,122,127,129,133,134,138,140,144,146,149,151,153,154,156,166,170,173,176,191,192,195,198,199,201,202,203,204,205,206,208,209,211,212,214,215,225,228,231,236,241,243,246,247,248],needl:11,needleess:39,needless:[33,38,39,40,42,43,84,102],neg:[33,39,42,48,53,64,72,85,133],neglig:41,neighbor:0,neither:102,neolog:214,neologd:214,nest:[22,39,40,41,42,119,237],nested_reference_column:133,net:[2,12,238,239,240,241,245,248],netbsd:40,netinet:42,network:[39,225,231,240],network_is_down:231,never:[28,33,42,111,136,202],new_column:46,new_limit:68,new_release_d:12,new_seri:89,new_tag:89,new_valu:133,new_vers:12,newark:244,newer:[18,33,41,42],newid:89,newli:[0,41,49,90,146,176,193],newlin:[37,38,42],newnam:89,newvalu:50,next:[0,41,42,57,64,110,112,113,133,156,240,241],nfkc51lexicon:195,nfkc:195,nfs:28,nfthread:68,nginx:[24,25,26,30,33,39,40,41,42,43,224,229],nginxhttpstubstatusmodul:41,ngx_http_proxy_modul:153,nice:193,night:[193,247],nightli:12,niho:173,nihon:[173,208],niku:41,nine:241,nippon:208,nise_nab:41,no_buff:231,no_child_process:231,no_kei:[119,212],no_locks_avail:231,no_memory_avail:231,no_space_left_on_devic:231,no_such_devic:231,no_such_device_or_address:231,no_such_file_or_directori:231,no_such_process:231,noarch:[24,26],nobuhiro:43,node:[12,21,39,42,43],nogpgcheck:39,nois:[156,209,214],nokubi:41,nomal:[39,133,153],nomral:191,non:[33,39,40,42,43,81,90,119,133,149,191,192,214],none:[28,104,105,106,113,116,119,128,133,138,142,144,151,153,155,156,231,243],nonexist:[33,41,42,43,46,94,95,110,113,133,214],nonexistent_command:42,nor:[133,138],noraml:144,normal:[22,24,25,26,30,33,38,39,40,41,42,43,45,46,52,53,54,68,79,81,89,90,91,97,102,110,111,112,113,115,117,119,120,121,128,133,135,139,140,141,142,149,151,153,156,165,166,173,174,176,191,192,193,198,201,202,203,204,205,213,214,215,216,234,241,243,244,247],normalizeauto:165,normalized_text:116,normalizer_1:132,normalizer_2:132,normalizer_list:[22,41,45,79],normalizer_n:132,normalizer_nam:132,normalizer_name_1:132,normalizer_name_2:132,normalizer_name_n:132,normalizerauto:[42,90,110,112,113,116,117,120,128,132,133,138,140,142,144,156,165,166,173,174,176,191,192,193,198,202,203,204,205,213,214,215,234,241,243,244,247],normalizernfkc51:[117,132],normalizs:138,normallexicon:195,normalzi:165,northern:39,nosuchfileordirectori:42,not_a_directori:231,not_enough_spac:231,not_equ:174,not_socket:231,notat:[39,40,192],note:[0,26,33,37,39,40,41,42,43,72,90,100,102,110,112,121,129,130,131,133,138,151,153,156,167,188,192,215,225,236,238,239,241,245],noth:[42,52,68,102,133,149,151,153,188,208,210],notic:[42,43,90,107,108,151,153,204,205],notif:[40,194],notifi:129,notrelated_20160320:115,now:[6,7,8,17,18,22,26,28,33,38,41,42,45,46,78,90,110,113,130,131,158,173,176,202,229,239,243,244],nroonga:[21,174,243],nsi:12,nsubrecs_column:50,nsubrecs_str:113,nterm:87,nth:113,nul:[37,72,214],number1:192,number2:192,number:[0,23,32,33,37,39,40,41,42,43,49,53,57,64,68,72,78,81,83,86,87,97,103,110,111,112,113,119,120,130,132,135,136,138,140,143,147,151,152,153,156,168,176,177,190,191,192,202,203,205,211,212,216,225,229,231,235,236,238,239,240,241,245],number_classifi:[22,43,45,133,158],number_liter:42,numer:[22,42,191,192,237],nvar:64,o_binari:39,o_creat:33,obata:[35,37,40,42,43],obj:[50,54,56,58,61,63,64,65,70,87],object1:192,object2:192,object:[33,37,39,41,42,43,46,49,53,54,63,66,72,74,78,90,93,99,102,104,105,106,115,116,117,118,119,121,128,132,133,135,141,144,145,149,176,190,212],object_1:120,object_2:120,object_corrupt:231,object_exist:[22,42,45,79,115,121],object_inspect:[22,33,43,45,79],object_list:[22,43,45,79],object_n:120,object_remov:[22,43,45,79],objnam:[88,99],obsolet:[42,198,229],obtain:72,obvious:238,occur:[33,39,40,41,42,43,53,57,81,93,113,133,136,141,156,201,215,235,247],occurr:205,ocelot:[37,40],octal:192,octob:41,odd:192,off:[37,41,153,214],offic:170,offici:[8,12,26,37,174],offlin:[22,33,38,39,40,41,42,43,45],offset:[33,39,42,56,57,58,63,66,67,72,98,136,241],often:[102,159],ohkubo:43,ohzeki:41,okapi:[203,205],old:[18,37,39,42,43,72,93,141,159,195],old_releas:12,old_release_d:12,older:[42,244],oldvalu:50,omit:[37,81,102,104,105,106,122,123,127,128,133,144,156,162,199,208,212,241],onc:[33,37,39,41,71,110,113,133,153,156,195,239,243,244],one:[0,24,25,26,30,32,33,37,41,42,43,48,49,72,78,81,86,89,90,91,94,95,100,102,103,104,105,106,110,111,112,113,114,115,118,119,121,122,123,127,128,129,130,131,132,133,134,136,138,140,143,144,146,147,149,151,153,156,157,162,166,167,168,170,173,174,176,179,188,191,192,195,198,202,203,204,205,206,209,212,214,215,216,223,225,231,235,238,240,241,244,248],one_charact:43,oneir:[37,40],ones:103,oneself:41,onga:176,ongaeshi:[39,40,42],onigmo:[33,41,42,43,202],oniguruma:42,onli:[0,6,7,17,21,23,24,25,26,30,31,32,33,39,41,42,43,46,49,52,63,71,72,84,85,86,90,91,94,95,97,100,101,102,103,104,105,106,110,111,112,113,114,115,118,119,120,121,122,123,127,128,129,130,131,133,134,135,136,138,140,143,144,146,149,151,153,154,156,159,165,166,167,168,173,174,176,179,191,192,193,195,197,201,202,203,204,205,206,212,214,225,229,235,238,241,243,246,248],onlin:[22,33,42,45],only_open:33,onto:215,ooo:212,opaqu:[49,231],opear:192,open:[21,33,37,39,40,42,43,49,53,54,57,102,103,120,121,140,149,156,165,194,195,231,241],open_tag1:165,openbsd:[42,43],oper:[22,28,33,39,40,41,42,43,45,56,57,89,93,105,115,118,133,141,168,173,190,198,231,235,237],operation_not_permit:231,operation_not_support:231,operation_timeout:231,operation_would_block:231,optarg:[54,65],optim:[33,41,42,43],optimum:153,option:[6,7,8,18,24,25,26,27,28,29,30,33,37,38,39,40,41,42,43,54,81,86,91,104,105,106,128,133,136,149,150,152,153,154,158,165,176,188,190,191,192,194,195,199,202,206,208,209,211,213,223,224,225,228,231,241,243,244,245,246],oracl:[22,23,37,39],orangain:40,order:[0,39,40,42,43,110,113,114,133,170,191,192,197,231,239,241,246,248],ore:[81,133,191,192],org:[12,17,24,25,26,27,28,29,30,31,41,42,78,101,152,153,167,238,239,240,241,245,248],orient:[0,176,238],origin:[1,17,33,40,41,52,81,101,133,195,211,231,245,246,247],orilldown:239,orphan:[33,40],osanai:[41,42],osdn:[2,12,42],otehr:138,other:[0,3,17,22,23,33,39,41,42,43,48,50,54,71,72,74,81,89,90,91,100,102,103,105,110,112,113,116,133,136,140,142,144,149,151,153,154,157,174,179,191,192,195,214,216,225,238,239,240,241,243,248],other_t:42,otherhand:133,otherwis:[21,49,53,63,72,93,94,96,100,104,105,106,107,115,118,119,120,128,129,132,140,146,159,168,169,174,179,192,241],ouput:40,our:[2,17,206],out:[13,23,24,25,26,30,31,33,41,84,179,243],out_gqtp:152,out_http:152,out_loc:152,outdat:[41,43],output:[3,22,28,33,37,38,39,40,41,42,43,45,52,53,56,78,79,82,84,85,86,89,90,91,93,94,95,96,97,100,101,102,104,105,106,107,110,111,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,132,134,135,136,137,138,140,141,143,144,145,146,152,154,156,157,167,194,235,237,238],output_column:[39,40,41,42,43,78,89,90,98,136,158,162,165,166,167,168,169,170,173,174,176,179,188,192,203,204,205,234,238,240,241,243,244,248],output_error:33,output_id:43,output_pretti:82,output_typ:[154,199],outsid:41,over:[0,33,39,40,41,42,43,110,112,113,165,236,245],overcommit:215,overcommit_memori:39,overflow:[33,37,40,41,42,43,238],overhead:[41,119,229],overrid:[28,46],overview:[22,42,45,47,237],overwrit:[43,84],overwritten:248,own:[0,33,39,42,56,192,238],owner:[40,42,153],pack:23,packag:[8,12,17,22,23,24,25,26,27,29,31,33,37,39,40,41,42,43,148,153,222,241],page:[2,17,22,39,40,42,154,235,241],pagerank:[203,204,205],pagin:[12,241],pai:133,pair:[33,42,119,120,133,201,208,209,210,211,238],pair_dataset:[155,211],pair_queri:[136,155,156,208,209,211],pakcag:26,pangolin:[33,39],paragraph:241,parallel:[0,6,7,12,43],paramet:[22,31,33,37,38,39,40,41,42,43,45,48,49,50,51,53,54,55,56,57,58,60,61,62,63,64,65,66,67,68,69,70,72,82,83,84,117,122,123,127,145,147,153,176,192,201,203,217,225,236,237,238,239,241,244,245,247,248],parameter1:153,parameter_name1:154,parameter_name2:154,parent:[113,133,153],parenth:103,parenthes:241,pari:162,park:244,parker:42,pars:[33,41,43,46,55,56,174,190],parser:[191,202],part:[0,28,81,112,133,176,214,238,241,244],partial:[11,33,42,206,208,210,231],pass:[6,7,8,12,33,37,38,42,43,54,68,129,143,153,156,162,174,191,192,202,241,245],past:39,pat:[38,39,43],pat_kei:[119,120,212],patch:[33,37,39,40,41,42,43,44],path:[12,18,23,33,34,37,39,40,41,42,50,54,63,66,72,91,93,120,122,123,127,136,138,139,141,151,153,154,156,157,194,202,224,229,231,241],patiricia:42,patprefix:246,patricia:[22,37,39,40,42,43,120,132,138,191,192,212,237,241],patsuffix:246,pattern:[0,33,42,81,168,191,192,202],pcre:[33,39,153],penalti:40,pend:42,pentium:152,peopl:[0,90,214],people_age_index:90,people_age_medium_index:90,people_age_small_index:90,people_key_roles_index:90,people_roles_index:90,per:[0,37,39,43,110,112,113,133,147,153,156,214],percentag:135,perfect:[0,205],perfectli:111,perform:[0,33,37,40,41,42,43,102,112,133,151,156,169,176,192,223,224,229,235,241,243],period:[33,243],perl:153,permiss:[28,41],permission_deni:231,permit:115,persist:[22,33,45,66,91,93,120,141,147,151,153],person:[22,23,90,244],pgp:12,pgroonga:[42,101,194,203,206],php:[12,39,41,42,223],phrase:[39,43,90],physic:[33,87],pid:[28,33,34,37,42,43,151,194],pikonyan:240,pinu:33,pip:18,pipermail:41,piro:41,pkg:[25,28,29,35,37,39,42],place:[2,28,244],placehold:40,plai:[0,247],plain:[33,42,167],plan:246,platform:[17,18,23,37,53,72],platorm:43,player1:89,player:[89,141],pleas:[2,3,17,19,25,28,41,42,43,54,203,204,205,229,241],pluggabl:0,plugin:[13,17,22,23,24,25,26,30,35,37,38,39,40,41,42,43,45,47,101,110,111,112,113,114,115,116,120,122,123,127,130,131,133,144,170,174,178,188,189,195,201,206,213,215],plugin_1:132,plugin_2:132,plugin_id:120,plugin_n:132,plugin_nam:132,plugin_name_1:132,plugin_name_2:132,plugin_name_n:132,plugin_regist:[22,45,79,101,102,110,111,112,113,114,115,123,127,130,131,132,133,142,156,168,170,178,188,189,201,213],plugin_unregist:[22,42,45,79,102,122,127],poedit:17,point:[0,37,38,40,42,57,72,78,93,129,133,162,163,164,169,191,197,216,232,236,238,241,248],pointer:[43,72],pole:162,polici:40,pool:68,poor:201,popular:[42,78,110,112,113,133,151],port:[27,40,41,44,151,152,153,154,156,199,225,229,231,245],port_numb:[228,231,245],portabl:[37,40,153],pos:[163,164],posit:[41,43,57,72,78,85,90,91,119,132,133,143,144,214,241],posix:[42,192],possibl:[33,37,42,43,133,154,216,235],post:[12,33,39,40,41,42,43,57,90,110,112,113,119,133,156,191,192,193,224,241],post_filt:33,posted_bi:244,postfix:[110,112,113,115],postgresql:[0,33,176,206],potenti:40,power8:41,power:[133,202],poyonga:223,ppa:[12,22,23,41],practic:[0,41,238],pragma:133,pre:156,precis:[0,12,33,39,42,43,81,90,208,214,216,241],preconfigur:[24,25,26,30,229],predic:42,predict:[138,212,214],prefer:42,preferenti:97,prefix:[6,12,14,18,22,23,33,37,38,39,41,42,43,45,66,67,68,89,122,123,127,136,138,153,156,173,174,196,206,212,224,237,241],prefix_match_s:43,prefix_rk_search:[22,42,45,158,198],prefix_search:[37,136],prepar:[22,153,166,176,237],prepend:[153,191,192],press:17,pretti:[22,41,42,43,45,79],prevent:[40,43],previou:[33,39,40,41,43,143,156,202,203,229,238,239,243],price:238,primari:[22,103,237,238,239,240,241,247],print:[22,41,42,43,45,79,231],prioriti:[0,133,208],privileg:[40,245],probabl:136,problem:[33,37,39,40,42,43,49,115,121,153,191,192,204,214,238],proc:[24,25,26,30,33,40,42,58,64,70,72,97],proc_database_unmap:97,proc_object:121,proc_select:133,proc_token:214,procedur:[39,40,43,173],process:[0,17,22,23,24,25,26,30,31,33,37,39,40,41,42,43,45,50,54,79,81,84,85,93,102,105,110,112,113,122,127,128,133,134,135,138,141,147,151,153,156,191,192,195,213,214,225,229,231,241,248],processor:[0,24,25,26,30],product:[42,43,112,153,156],profil:244,program:[1,33,39,40,91,151,153,156,157,192],progress:194,project:[0,3,12,13,19,21,41,192,229],promot:40,prompt:[31,39,199,241],pronounc:190,proonga:223,proper:[41,81,133,244],properli:[39,42,191,245],properti:[30,43,132,194],propos:[133,156,210],protocol:[0,1,22,24,25,26,30,39,41,42,43,85,151,152,153,154,199,222,223,225,229,237],provid:[0,1,21,24,25,26,30,33,39,41,42,43,47,53,68,71,90,91,110,111,112,113,148,149,151,153,156,162,174,199,201,202,203,205,206,208,209,210,211,212,224,225,229,235,239,241,245],proxi:225,proxy_cache_path:153,proxy_cache_valid:153,proxy_pass:153,pseudo:[22,39,40,41,42,45,50,74,90,91,103,132,133,191,192,239,248],pthread_:40,ptr:[35,72],pub:12,publish:[12,41,43],pull:12,pure:214,puropos:144,purpos:[40,43,78,174,241,245],push:[17,53],put:[17,41,42,133,154,191,198,202,205,215],pyenv:18,python:[12,18,223],q_cond:68,q_mutex:68,qps:[150,152],quantal:39,queri:[11,22,33,37,39,40,41,42,43,45,56,65,78,79,85,86,90,98,110,112,122,123,127,136,151,152,155,156,157,158,159,165,166,167,168,169,176,179,190,192,193,198,199,201,202,203,204,205,208,209,210,211,213,214,223,225,229,231,232,234,237,238,239,240,241,243,244,245,246,248],query_expand:[22,40,43,45,79,122,123,127,201,247],query_expans:[37,40,201],query_flag:[33,39,43,174,191],query_no_syntax_error:33,query_s:56,query_str:40,queryexpandertsv:[22,39,40,45,122,123,127,174,200],question:[42,243],quetzal:39,queue:235,quickli:[110,112,113,133,193],quiet:231,quit:[12,22,33,45,79,151,194,231],quiz:240,quorum:33,quot:[40,103,116,144,191,192,241],quotat:[116,144],quotient:192,rab:[239,241,248],raccoon:240,radious_or_point:163,radix:192,rake:12,rakutan:243,ram:152,ran:208,rand:[22,33,45,158,248],rand_max:175,random:248,rang:[22,33,39,40,41,42,43,74,90,91,93,111,115,133,139,141,159,202,212,237,244],range_error:231,range_filt:[22,41,45,79,112],range_index:[42,112],ranguba:[33,41,78],rank:[41,241],rare:[40,42],rate:[40,159],rather:[42,78,91,133,193,202,203,204,205,214,223],raw:[21,40,43,119],rch:144,rdbm:[42,151],rdiscount:12,reach:[33,215],read:[3,22,37,39,93,103,133,141,157,173,176,201,207,231,241],read_only_file_system:231,readabl:[38,41],readi:[18,28,39,110,112,113,133,191,192,202],readm:[12,40],real:[0,46,68,112,133,135,176,215,216],real_nam:[46,94,95,96],realli:[110,112,113,133,191,192,247],realloc:33,realtim:[136,211],reason:[39,133,138,149,192,202,208,214,225,229,236,239],rebuild:[33,42],recal:[0,190,214],receiv:[0,17,53,151,153,156,157,192,228,231],recent:[43,86],recogn:0,recommend:[6,7,8,23,24,25,26,30,31,33,41,42,43,46,81,133,153,156,169,191,192,202,214,215,223,225,229,241,245],reconstruct:41,record1:115,record2:115,record3:115,record:[0,22,32,33,37,39,40,41,42,43,45,46,56,57,63,66,78,89,100,101,103,110,112,113,115,119,136,138,146,159,162,165,166,168,169,173,174,176,179,190,191,192,193,194,197,202,203,204,205,206,211,216,237,238,239,240,243,244,245,246,247,248],record_1_column_1:[112,133],record_1_column_2:[112,133],record_1_column_n:[112,133],record_2_column_1:[112,133],record_2_column_2:[112,133],record_2_column_n:[112,133],record_id:42,record_n_column_1:[112,133],record_n_column_2:[112,133],record_n_column_n:[112,133],record_numb:[22,33,43,45,113,217],recov:[42,54],recover:[54,149],recreat:[42,43,128,149],recrod:133,rect:[39,162,163],rectangl:[0,37,39,57,163,197],recurs:[6,7,8,12,13,46,105,133,149,153,201],recycl:41,red:28,redcloth:12,redhat:37,redmin:41,reduc:[0,33,39,40,42,43,90,97,111,149,168,198,202,209,212,225,229,247],redund:33,refer:[0,22,33,37,40,41,42,43,46,100,102,115,132,133,156,168,179,193,202,216,237,239,243,244],referenc:[33,39,40,90,100,102,115,133,138,140,239],reference_column:[41,42,133,140],reference_vector_column:40,referenced_table_nam:102,referencedbycolumn:140,referencedbyt:140,referencedt:140,referencet:140,refin:[0,40],refresh:240,regard:[40,154,191],regardless:42,regexp:[33,41,42,174],regexplexicon:[128,202],region:[197,248],regist:[0,22,25,33,39,40,42,43,45,46,72,79,101,110,111,112,113,114,115,116,122,130,131,133,144,170,176,178,188,189,191,192,193,195,198,201,208,209,210,212,213,238,244,248],regress:[40,41,42],regular:[22,42,43,45,153,174,214,238,241],regular_express:202,reindex:[22,33,42,43,45,79],rel:[37,41,133],relat:[0,2,3,13,21,22,24,25,26,28,30,33,37,39,40,41,42,43,63,68,149,151,190,202,210,211,212,215,217,229,236,237],relationship:[22,39,90,93,141,237,238,243,244],relax:215,releas:[6,7,8,12,24,26,31,44,71,97,104,106,110,113,115,162,174,193],relev:[0,241],reload:201,remain:[33,40,43,97,149,194,202],remaind:192,rememb:133,remot:[22,151,231,237],remov:[6,7,29,33,37,38,39,40,41,42,43,54,63,89,100,121,127,142,149,153,202,213,238],remove_blank:116,remove_t:115,remove_tokenized_delimit:116,removep:63,renam:[33,37,39,40,42,46,89,93,141,212,241],reopen:[37,43,128],rep_gqpt:152,rep_gqtp:152,rep_http:152,rep_loc:152,repair:38,repeat:[0,17],replac:[21,41,42,46,155,157,192,202,247],replai:153,repli:[243,244],replic:203,replied_to:244,replied_us:244,replies2:243,replies_cont:243,reply_to:243,repoforg:39,report:[3,22,28,33,37,39,40,41,42,43,48,72,90,121,149],repositori:[3,4,12,22,25,26,30,37,39,40,42],repot:235,repres:[56,120,151,190,192,202,238,240,247],represent:[17,33,55,56,78],reproduc:[33,40],request:[22,33,40,41,42,43,45,46,79,112,129,133,134,135,147,151,154,156,192,194,208,209,211,225,228,231,245],request_cancel:[22,33,41,43,45,79,83,84],request_id:[42,43,83,129],request_timeout:[43,84],requir:[0,21,24,25,26,28,29,30,31,33,37,39,40,42,122,123,127,130,131,149,153,157,165,169,170,173,179,188,191,193,202,203,206,208,210,214,224,225,238],res1:66,res2:66,res:[57,65,66],res_column:152,res_tabl:152,rescord:190,reset:42,resiz:72,resolut:[22,237,244],resolv:[22,33,37,39,43,45,78,99,121,203,204,205,206],resourc:[33,41,53,54,71,84,193],resource_busi:231,resource_deadlock_avoid:231,resource_temporarily_unavail:231,resours:49,respect:[39,238,244,248],respons:[0,33,37,39,40,41,42,43,49,84,85,89,110,112,113,129,133,135,153,225,231],rest:[33,72,112,201],restart:[33,42,43,122,127,151,153,201,215],restaur:0,restor:43,restrict:[39,40,112,225,245],result:[0,11,17,22,33,37,38,39,40,41,42,43,66,81,82,110,112,113,116,129,130,131,133,149,154,156,157,162,168,174,176,179,192,195,198,199,201,202,208,209,211,212,214,237,238,240,243,244,247,248],result_too_larg:231,retri:48,retriev:[0,90,120,133,156,192],retry_max:231,return_cod:[81,194],reus:[42,119,133,151,212],reveal:0,revers:[12,22,225,237,241,244],revert:43,revis:43,rewrit:[42,44],rid:59,rid_max:60,rid_min:60,right:[41,42,57],right_hand_sid:43,ring_buff:156,ringtail:40,risk:[41,149],riski:33,rlimit_nofil:[40,194],role:[0,90,174],romaji:[173,208],room:[22,42],roonga:[191,192,210],root:[40,42,151,153,154,245],rose:238,rotat:[42,151],roughli:238,round:37,row:[0,176],rpm:[12,24,26,33,37,38,39,40,41,42,43],rroonga:[21,40,41,42,49,165,166,169,174,179,188,190,203,243],rst:12,rubi:[0,6,7,8,12,21,39,41,42,44,78,130,131,165,166,188,190,202,203,223],ruby19:39,ruby_ev:[22,33,40,45,79,131],ruby_load:[22,40,45,79],ruby_script:130,rubygem:39,rubyinstal:8,rule:[22,41,45,110,112,113,133,144,225],run:[3,12,14,17,21,22,28,31,33,41,42,54,83,93,112,128,129,134,140,141,151,153,156,157,201,215,222,224,225,228],run_bodi:110,runtim:42,rurema:41,ryo:[33,42],ryoji:41,ryunosuk:43,s10:41,sae:[136,209],saer:[136,209],saerc:[136,209],saerch:[136,209],safe:[33,90],safeti:43,sai:[90,192,241,243],sako:42,salamand:[40,41],same:[33,40,42,43,48,53,56,78,81,83,89,90,103,110,112,113,115,122,127,128,129,133,153,154,156,174,191,192,195,202,203,204,205,206,209,223,225,238,241,243,248],sampl:[39,100,101,110,112,113,114,115,122,123,127,133,152,153,157,159,162,165,166,167,168,169,170,173,174,176,179,188,201,202,203,204,205,225,243],san:162,satisfi:[40,42,43,103,115,140],sato:[42,43],satoh:37,satoshi:[33,41],sauci:[40,41],save:[12,41,156,236,243],sbin:27,scalar:[22,33,42,43,45,46,74,78,91,112,119,132,133],scale:[0,225],scan:[14,42,165,166,173,191,192],scan_build:14,schema:[22,33,42,45,46,79,89,100,101,110,112,113,115,120,133,140,155,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,202,203,204,205,206,209,215,243],scope:[42,202],score1:11,score2:11,score:[33,39,42,43,78,90,93,136,141,146,156,174,190,203,204,205,241,248],score_1:156,score_2:156,score_adjust_express:133,score_adjust_expression1:133,score_adjust_expression2:133,score_column:50,score_funct:203,score_function1:203,score_function2:203,score_function3:203,score_valu:42,scorer:[22,42,45,98,102,158,162,170,190,192,204,205,237,240],scorer_tf_at_most:[42,203,205],scorer_tf_idf:203,scr:152,script:[21,22,28,33,39,40,41,42,43,45,56,131,133,152,179,190,191,202],sea:[144,208],sear:208,searc:208,search:[22,24,25,26,28,30,33,37,38,39,40,41,42,43,45,46,47,56,57,71,74,89,91,136,138,144,151,165,166,168,173,174,176,179,190,193,195,196,201,202,203,204,205,206,210,212,213,214,225,229,237,238,239],search_result:133,searchabl:[42,193],searchu0000http:214,sebastian:41,sec:48,second:[81,84,91,129,133,135,151,156,162,168,191,192,194,203,216,225,238,241,243,244,248],secret:12,secsion:81,section:[3,17,20,21,23,24,25,26,27,28,29,30,31,33,40,41,42,43,46,47,50,59,72,78,79,86,89,90,91,93,94,95,96,97,102,103,104,105,106,110,111,112,113,114,115,116,118,119,120,121,124,128,129,130,131,132,133,134,135,137,138,140,141,142,143,144,146,148,149,151,153,156,158,162,166,191,196,201,202,203,204,205,207,208,209,211,215,217,231,235,239,243,244],secur:[22,33,41,42,215,237],sed:[27,37,39,42],see:[0,1,17,18,21,22,24,25,26,27,28,29,30,39,40,41,42,45,48,53,72,78,89,93,97,102,105,110,111,112,113,115,118,119,121,128,134,135,137,140,141,143,146,149,151,153,154,162,167,168,191,192,202,208,214,215,216,217,223,229,236,238,239,240,241,244,248],segment:[39,41,43,87,119],segv:40,select:[22,33,35,36,37,39,40,41,42,43,45,46,49,56,57,78,79,80,83,84,86,89,90,93,100,102,110,112,126,129,135,141,146,151,152,153,158,159,162,165,166,167,168,169,170,173,174,176,179,188,190,191,192,193,194,195,201,202,203,204,205,211,213,217,223,232,234,238,239,240,241,243,244,245,246,247,248],select_al:33,select_opt:192,selector:[33,39,42,43,173],self:152,semi:[37,138],sen_index_delimit:44,sen_index_norm:44,sen_sel_term_extract:44,senario:33,senboku:40,send:[3,19,129,156,157,223,231],sender:157,senna:[33,110,112,113,133,191,192,201],sens:[151,153],sensit:214,sent:225,sentens:42,separ:[39,42,52,90,91,103,116,119,120,133,136,138,142,144,153,156,174,191,192,199,201,214,231,239,241],sequenc:[37,40,83,133,136,156,191,192,194,208,209,211,231],sequence_dataset:155,sequence_queri:[155,156],sequenti:[33,41,42,43,168,173,191,192,193,202,214],serach:209,serch:[136,209],sergei:[33,41,42],seri:241,serial:89,serihiro:39,seriou:[39,41],serv:[12,41,238],server:[1,21,22,23,24,25,26,30,31,33,37,38,39,40,41,42,45,68,115,129,134,143,148,153,156,168,169,199,223,224,225,228,240,241],servic:[0,21,25,39,40,41,42,134,209,215,229],session:[156,223,231],set:[24,25,26,30,33,39,40,41,42,43,48,49,53,63,68,74,78,86,90,95,96,107,111,133,134,142,143,147,156,190,192,208,215,225,229,246],set_host:152,set_port:152,set_token_filt:41,setup:[17,21,40,43],seven:241,shape:197,sharabl:22,shard:[22,33,42,45,110,111,112,113,114,115,212],shard_name_1:114,shard_name_2:114,shard_name_n:114,share:[0,2,28,37,39,40,48,49,50,54,110,112,113,115,151,153,240,243],shell:[28,42,151,191,202],shidara:37,shift_ji:[28,214],shimada:39,shimamura:42,shimoda:35,shimomura:39,shinjyuku:248,shinoda:[41,42,43],shinya:39,shm:153,sho:[40,41,43],shop:[170,193,232],shorter:[42,193],shorttext:[33,41,43,46,57,78,81,89,90,91,93,100,101,102,104,105,106,110,112,113,114,115,118,119,120,121,128,132,133,136,138,139,140,141,142,146,151,152,156,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,195,198,202,203,204,205,208,209,211,212,213,215,234,238,239,240,241,243,244,245,246,247,248],should:[6,7,8,18,21,23,24,25,26,28,30,31,33,39,42,43,53,56,72,78,83,90,103,111,112,115,121,128,133,138,140,146,149,156,191,192,195,201,209,231],shouldn:[6,7,41],show:[0,28,33,34,37,39,40,41,42,43,46,52,81,85,89,90,100,103,104,110,112,113,115,116,119,120,132,133,159,162,165,166,167,170,173,174,176,179,191,192,197,199,202,203,204,205,214,228,231,238,239,240,241,244,245,248],showen:85,shown:[192,241],shuhei:41,shutdown:[22,33,43,45,79,102,151,153,202,225,231],sid:[12,37,41,87],side:[0,39,42,43,84,133],sigcont:40,sign:[12,39,85,216,238],signal:41,significantli:0,sigstop:40,sigusr1:37,silent:[21,43],simil:192,similar:[33,39,40,41,78,112,119,133,136,151,168,174,190,195,214,239,243,245],similar_search:[39,136],simpl:[41,42,91,93,110,116,117,135,141,142,144,145,146,153,162,167,168,169,170,173,174,179,188,190,191,192,224,225,229,239],simplest:[0,28,83,203],simpli:[205,246],simplifi:[40,169],simultan:33,sinc:[26,33,39,42,43,50,72,81,88,113,127,133,135,138,146,151,156,162,192,193,194,202,216,218,229,238,244],singl:[40,41,78,90,103,116,133,143,144,241],sister:90,site:[41,101,104,105,106,128,133,190,238,239,240,241,243,245,248],site_titl:128,sitecountri:[239,245],sitedomain:[239,245],situat:[133,235],six:[194,241],size:[23,24,25,26,30,31,32,33,37,39,40,41,42,43,46,50,56,68,69,72,83,87,91,94,95,96,119,120,121,132,138,147,151,153,176,188,206,212,215,236],size_of_one_value_in_byt:132,sizeof:[42,53,56],sji:[28,44,151],skip:[40,41,42,43,102,241],slash:192,sleepi:193,slice:[33,43],slow:[42,151,153,191,192,202,212],slower:[90,151,153,162,203,205,239],small:[32,40,41,42,43,112,119,121,138,191,192,212,214,244],smaller:[0,33,78,138,162,193,194],smith:43,snake_cas:42,snippet1:176,snippet2:176,snippet3:176,snippet:[39,40,43,44,176],snippet_html:[22,33,39,40,41,42,43,45,112,133,158],soccer:240,social:240,socket:[22,39,233],socket_is_already_connect:231,socket_is_already_shutdown:231,socket_is_not_connect:231,socket_not_initi:231,soerr:235,soft:215,softwar:[3,21,30,42],soichiro:43,solari:[5,7,8,22,23,37,39,42],solr:192,solut:[22,214,233,239,243],solv:[33,43,203,204,205,238],some:[0,1,2,8,17,26,28,32,39,40,41,42,43,46,48,56,71,78,81,83,90,110,112,113,115,119,120,129,133,134,138,140,144,147,149,155,156,158,174,191,192,194,202,203,206,213,214,215,216],someon:244,someth:41,sometim:[41,43],soon:[84,176,197,206,225],sort:[0,22,33,37,40,42,43,101,110,112,113,114,133,136,156,197,212,237,240],sort_bi:168,sort_hash_t:33,sort_kei:[33,43,169,170,174,203,204,205,240,241,248],sortbi:[37,40,43,98,136],sound:[195,209],soundkitchen:[37,39],sourc:[6,7,8,12,16,17,18,21,22,23,29,33,37,39,40,41,42,43,54,63,81,89,91,93,119,137,149,235,240,241,243,244],source_1:[120,132],source_2:[120,132],source_column_nam:42,source_file_nam:81,source_n:[120,132],sourceforg:[2,12,42],southern:39,sozaki:33,space:[0,33,37,40,42,43,72,78,90,103,116,119,133,144,191,202,211,214,235,241],spain:162,spammer:[203,204,205],span:[165,166,167,176],spars:[33,42],speaker:2,spec:[33,37,39,40,133],special:[17,28,40,48,56,81,85,133,144,154,165,166,176,191,202,231,241],specif:[0,22,28,33,39,40,41,43,78,101,110,121,130,131,133,136,154,159,192,195,198,214,237,238,239,240],specifi:[0,6,7,8,17,22,27,28,32,33,38,39,40,41,42,43,53,54,57,63,64,72,74,78,81,82,84,86,89,90,91,93,94,95,96,99,100,101,102,103,104,105,106,107,110,111,112,113,114,115,116,118,119,120,121,122,123,127,128,129,130,131,132,133,134,136,137,138,140,141,142,143,144,146,149,151,153,154,155,156,157,159,165,166,167,168,169,170,173,174,176,179,188,190,191,192,197,199,202,203,204,205,212,213,225,228,231,236,237,238,239,240,243,244,245,246,248],speech:[0,214],speed:[37,210,212],spell:[201,247],spend:[191,192],sphere:163,spheric:162,sphinx:[3,12,15,16,18,41,42,43],sphr:[162,163],spil:42,split:[37,42,43,192,212,214],spokesman:3,sport:240,spreadsheet:201,sql:[133,203,239],squar:162,squeez:[12,40],src:[12,25,238],src_kei:66,src_key_siz:66,srpm:33,ssh:12,ssssss:194,stabl:[41,43,80,136],stack:[40,43],stack_over_flow:231,stage:[33,41,43],stamp:[194,208,209,211],stand:[42,223],standalon:[154,157],standard:[42,103,153,216,231,241],start:[17,25,28,31,33,37,39,40,41,43,72,81,93,110,112,113,133,135,141,154,156,162,191,192,193,194,198,199,201,208,210,214,225,235,241,245],start_tim:[42,82,135,153,231,241,245],starttim:[42,82,135,153,199,231,241,245],startup:39,state:[39,100,162,223,231],statement:192,station:[170,197,244,248],statist:[33,119],statu:[22,24,25,26,30,39,40,41,42,43,45,79,82,85,100,149,150,151,152,153,162,199,223,225,241,245],status:[85,231],stdin:38,stem:[25,30,33,41,213],step:[17,18,28,31,43,89,133,202,211,238,241],steve:43,still:[16,17,33,40,41,93,112,129,141,149],stop:[33,37,39,40,41,42,43,46,68,84,93,112,133,134,141,151,153,203,204,205,213,242],stop_word:[101,142,213],storag:[22,40,165,166],storategi:133,store:[22,32,39,40,42,46,49,53,56,57,63,74,78,89,90,91,110,112,113,119,132,133,157,162,173,192,195,197,202,211,212,216,231,238,239,240,241,243,244,247,248],str:56,str_length:72,str_ptr:72,str_size:56,strang:202,stream:[41,43],strerror:41,stretch:[22,23],strict:[41,42],string1:160,string2:160,string:[11,22,33,37,38,39,40,41,42,43,53,55,56,63,64,72,78,81,83,94,95,96,103,107,110,112,113,120,132,133,138,147,156,162,165,166,168,173,176,177,178,190,191,202,216,237,239,240,241,243,244,247],string_length:[22,43,45,110,112,113,133,158,168],string_liter:41,string_siz:56,string_substr:[22,43,45,158],stringifi:43,strip:167,strlen:72,strongli:[23,24,25,26,30,31],structur:[0,41,43,81,212,240],stub:41,studio:[8,31,39,40,42,43],style:[33,41,42,119,202],sub1:[113,133],sub:[0,12,33,113,156],sub_filt:[22,40,42,45,158,168,173],subject:40,submiss:[136,208,209,211],submit:[3,22,40,136,156,208,209,211],subrecord:40,subsect:235,subset:216,substit:133,substitut:[17,133,174,191,192],substr:[43,168,191,192],succe:33,succeed:[28,42,85,94,96,100,104,105,106,107,128,146,241],succeeded_or_not:[93,100,105,107,128,146],success:[43,49,50,53,54,56,63,71,72,89,90,93,97,102,115,122,123,127,137,138,140,141,231],successfulli:[43,72,105,106,241],successor:192,suddenli:40,sudo:[12,14,18,21,24,25,26,27,28,29,30,39,215,229,236,245],suenaga:42,suffici:[72,235],suffix:[22,33,39,122,123,127,149,155,157,168,174,237,243],suffixsearchterm:[191,192],sug:210,suggest:[22,28,33,35,36,37,38,39,40,41,42,43,45,79,148,208,209],suggest_prepar:[136,208,209,211],sugimoto:42,suit:[0,41,176],suitabl:[41,90,110,113,133,138,151,193,203,205,212,214],sum:[33,41,110,112,113,133,203],summar:239,summari:[22,40,45,152,222,239],suno:41,superior:[0,176],support:[0,1,6,7,8,17,21,25,28,30,33,37,38,39,40,41,42,43,44,72,82,84,90,103,110,112,113,129,130,131,133,135,138,143,144,149,153,157,168,173,176,191,192,193,195,198,199,201,202,206,212,214,225,228,229,238,239,240,241,243,245,246,248],suppport:43,suppress:[38,39,41,113,133],sure:241,surfac:197,surrog:33,surround:[39,165,166,176,192],suzuki:39,swap:215,swig:44,symbol:214,synonym:[43,133,201,247],syntax:[22,33,39,40,41,42,43,45,46,56,78,190,203,237,243],syntax_error:231,syscal:[41,241],sysconfig:229,sysctl:[27,42,215,236],system:[0,5,6,7,28,29,30,37,40,41,42,43,90,97,102,110,112,113,133,151,153,176,191,192,193,215,216,235,238,248],systemctl:[25,229],systemd:[25,39,42,43],tab:[42,52,199,201,231],tabl:[11,22,33,37,38,39,40,41,42,43,45,46,50,53,54,57,63,64,66,67,70,74,78,80,92,97,98,100,102,103,104,105,106,110,112,113,114,116,118,121,128,129,136,137,141,146,149,151,153,155,156,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,195,198,201,202,203,204,205,206,208,209,211,213,215,225,228,234,237,238,239,240,242,245,246,247,248],table1:[66,140],table2:[66,140],table_1:132,table_2:132,table_:[138,212],table_buff:53,table_copi:[22,43,45,79],table_cr:[22,33,39,41,42,43,45,46,78,79,89,90,91,93,100,101,102,104,105,106,110,112,113,114,115,118,119,120,121,128,132,133,140,141,142,146,151,152,156,159,162,165,166,167,168,169,170,173,174,176,179,188,191,192,193,195,198,202,203,204,205,206,212,213,215,234,238,239,240,241,243,244,246,247],table_dat_kei:[32,33,40,41,43,89,119,132,138,191,192],table_hash_kei:[32,43,46,78,89,90,100,101,102,104,105,106,110,112,113,114,115,118,119,120,121,128,132,133,138,140,156,159,162,167,168,169,170,173,174,188,192,193,195,203,215,238,239,240,241,243,244],table_list:[22,35,37,39,45,79,141,151,241],table_n:132,table_nam:[102,118,121,132],table_name_1:132,table_name_2:132,table_name_n:132,table_name_of_index_column:102,table_no_kei:[32,41,42,46,89,100,101,104,105,106,115,118,119,121,128,132,133,138,140,156,165,166,174,176,191,192,193,202,204,205,213,234,243],table_pat_kei:[32,40,42,43,78,89,90,91,93,101,110,112,113,115,119,120,128,132,133,138,140,141,142,146,151,156,165,166,168,169,173,174,176,179,191,192,198,202,203,204,205,213,215,234,240,241,243,244,246,247],table_remov:[22,33,39,40,42,43,45,79,89,102,115,121,151],table_renam:[22,38,45,79,89,102],table_token:[22,43,45,79,214],tablecursor:42,tablegroupflag:42,tablenam:80,tables_buff:53,tachikawa:43,tag:[12,22,37,39,40,41,42,78,89,91,110,112,113,133,165,166,167,168,169,176,188,192,203,204,205,212,214,237],tag_length:113,tagger:0,tahr:[30,41],tail:[12,231],tajima:39,takagi01:33,takashi:100,takatsugu:41,takayama:42,takayuki:37,take:[43,86,89,90,91,93,94,95,96,97,102,104,105,106,110,111,112,113,114,115,116,117,118,119,120,121,122,123,127,128,129,130,131,132,133,134,135,137,138,140,141,142,143,144,145,146,149,154,229,241],taken:120,takiuchi:40,talk:[2,12,33,40,42],tamano:[41,43],tanab:40,tanuma:41,tar:[12,24,25,26,27,28,29,30],target:[18,28,31,33,37,39,41,42,43,49,50,54,56,57,63,78,94,95,96,102,103,104,105,106,112,113,115,121,128,129,133,138,144,156,165,166,173,174,176,191,202,204,205,225,238,241,243],target_charact:56,target_nam:41,taro:240,task:[0,39],tasuku:[42,44],tatsuya:39,tcp:156,tcp_nodelai:43,techniqu:[203,204,205],temporari:[6,7,22,33,39,42,43,45,140,151,162,236],tend:243,term:[0,32,33,39,40,41,42,43,87,90,110,112,113,120,132,133,140,142,151,165,166,174,176,191,203,204,205,213,215,234,241,243,247],termin:[39,42,53,56,64,72,151,153,241,244],terms_tabl:133,teruya:42,test:[6,12,14,23,24,25,26,30,31,39,41,42,43,111,152,153,214,238,241,243,244,245],test_loc:152,test_str:14,test_text_otoj:14,testdb:[152,157],tetsuharu:41,tex:144,text:[17,22,28,32,33,37,39,40,41,42,43,46,56,57,71,78,81,91,105,110,112,113,116,119,120,128,132,133,138,140,142,144,152,165,167,174,176,190,192,195,198,199,202,203,204,205,212,214,215,225,237,238,240,244,247],than:[0,32,33,37,40,41,42,43,78,84,90,91,97,112,113,119,120,133,136,138,151,153,162,168,174,176,190,193,194,201,202,203,204,205,211,214,215,216,223,229,238,239,241,243,244,248],thank:244,thatn:133,theater:247,theatr:247,thei:[28,29,42,46,78,90,102,103,110,113,115,120,122,123,127,133,140,144,153,154,165,166,173,176,179,190,191,192,193,194,199,201,203,204,205,206,208,209,210,211,212,214,215,225],them:[16,17,24,25,26,28,30,33,42,48,56,78,81,90,102,103,112,113,115,133,138,140,156,162,168,191,192,202,203,214,215,231,238,241,248],themselv:[17,198,201],therubyrac:12,thesauru:133,thi:[0,3,5,6,7,8,18,20,21,23,24,25,26,27,28,29,30,31,33,37,39,40,41,42,43,46,47,49,50,52,53,54,63,72,78,79,81,86,89,90,91,93,94,95,96,97,102,103,104,105,106,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,127,128,129,130,131,132,133,134,135,137,138,140,141,142,143,144,145,146,148,149,151,153,155,156,158,159,162,166,168,169,170,174,176,178,179,188,189,191,192,194,196,198,199,201,202,203,204,205,206,207,208,209,211,214,215,216,217,225,231,235,236,238,239,241,243,244,245,246,247,248],thing:42,think:[133,140,192,203,204,205],third:[91,133,192,238],thorsten:43,those:[0,17,28,29,38,133,162,176,190,191,192,195,199,210,211,212,225,238,241],though:[0,33,39,40,41,43,149,208,243],thread:[0,33,40,41,42,43,50,53,54,68,72,97,105,111,135,140,143,151,156,194,225],thread_count:42,thread_limit:[22,33,42,45,79,97,111,121,140],thread_tabl:152,thread_title_column:152,threasd:151,three:[40,78,81,93,102,116,133,159,162,165,168,190,204,205,208,209,238,239,241,243],threshold:[23,33,35,37,39,41,42,53,62,63,99,133,136,147,151,234],through:[0,153,156],throughput:[37,225],thu:[0,33,41,43,113,133,155,157,191,242,243,247,248],tid:60,tim:33,time:[0,6,7,22,33,37,39,40,41,42,43,48,81,84,110,112,113,114,115,118,119,120,121,128,129,132,134,135,136,138,149,152,156,176,191,193,194,201,202,206,208,209,211,215,234,237,241,248],time_classify_dai:[22,43,45,158],time_classify_hour:[22,43,45,158],time_classify_minut:[22,43,45,158],time_classify_month:[22,43,45,158],time_classify_second:[22,43,45,158],time_classify_week:[22,43,45,158],time_classify_year:[22,43,45,158],time_column:152,time_stamp:194,timeout:[22,40,43,45,48,63,79,151],timestamp:[43,114,115,118,121,128,156,244],timeuot:48,tini:42,titl:[12,40,41,101,104,105,106,110,112,113,128,133,140,160,174,179,191,192,203,204,205,238,239,240,241,243,245],title_index:203,title_index_column:33,tiwawan:42,tld:239,tmp:[6,7,12,40,91,93,120,121,136,141,151,201,202,225,231,241,245],to_column:89,tobbi:174,todai:0,todo:[6,7,14,33,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,69,70,73,75,77,78,81,90,112,113,116,126,133,155,158,177,187,191,192,206,215,217,225,226,227,242,243],token:[22,24,25,26,27,28,30,33,37,39,40,41,42,43,45,79,89,90,110,112,113,120,133,138,142,145,152,191,192,195,202,209,211,212,241],token_filt:[33,43,101,142,213],token_filter_1:[120,132],token_filter_2:[120,132],token_filter_n:[120,132],token_filter_nam:132,token_filter_name_1:132,token_filter_name_2:132,token_filter_name_n:132,token_fitl:132,tokenbigram:[90,110,112,113,120,128,132,133,138,140,142,144,145,151,156,165,166,174,176,179,191,192,193,203,204,205,209,212,213,215,234,241,243,244,247],tokenbigramignoreblank:[132,145,234],tokenbigramignoreblanksplitsymbol:[132,145,234],tokenbigramignoreblanksplitsymbolalpha:[33,132,145,234],tokenbigramignoreblanksplitsymbolalphadigit:[33,132,145,234],tokenbigramsplitsymbol:[132,145,234],tokenbigramsplitsymbolalpha:[132,133,144,145,234],tokenbigramsplitsymbolalphadigit:[89,132,145,174,209,234],tokenbigramsplitxxx:214,tokenbigrm:89,tokendelimit:[132,144,145,156,211],tokendelimitnul:[132,145],tokenfilterstem:[25,30,33,41],tokenfilterstopword:[41,42,142],tokenizer_1:132,tokenizer_2:132,tokenizer_error:231,tokenizer_list:[22,41,45,79],tokenizer_n:132,tokenizer_nam:132,tokenizer_name_1:132,tokenizer_name_2:132,tokenizer_name_n:132,tokenizs:[22,45],tokenkytea:39,tokenmecab:[39,234],tokenregexp:[42,43,128,132,145,202],tokentrigram:[42,132,144,145],tokenunigram:[132,145],tokyo:[162,248],tokyogeopoint:[37,43,57,119,120,132,162,163,164,248],tom:174,tomita:35,tomo:240,tomoatsu:[35,39],tomygx:42,too:[18,33,40,42,43,68,78,121,133,192,235,238,243],too_large_offset:231,too_many_link:231,too_many_open_fil:231,too_many_open_files_in_system:231,too_many_symbolic_link:231,too_small_limit:231,too_small_offset:231,tood:[72,137],tool:[6,15,17,18,21,22,23,31,42,154,225,229,237,241],top:[57,239],top_left:[37,164],top_left_point:57,topic:[3,22],torinki:43,tortoisegit:8,toshio:33,totabl:89,total:[32,33,39,42,43,87,119,138,152,212,215,231,236],total_chunk_s:119,total_s:119,touch:[42,54,115],toybox:238,tracker:[3,22,41],trade:214,tradit:[0,41],transfer:[0,22,223,229,231,237],transit:229,translat:[3,18,39,41],transport:25,transposit:43,travel:244,travi:[20,22,39,40,41],treat:[39,40,41,42,110,112,113,115,133,144,168,192,197,208,209],tree:41,trend:133,tri:[33,48,168,244],trial:0,trie:[22,37,39,40,42,43,120,132,138,191,192,212,237,241],tritonn:[110,112,113,133,191,192],troubl:17,troubleshoot:[22,33,35],truncat:[22,37,40,41,42,43,45,50,79,102],trust:12,trusti:[12,30,41],tsu_root:42,tsv:[42,122,123,127,154,199,231],tune:[22,40,42,45,78,133,236],tupl:168,turn:[33,153],tutori:[22,39,41,42,72,238,241],tweet:[2,193],twice:[42,133,191],twitter:[22,39,43,244],two:[19,24,25,26,30,33,40,41,42,53,56,81,90,91,96,110,111,112,113,115,121,133,137,138,140,141,143,144,153,156,157,159,162,169,173,174,176,179,191,194,195,197,202,204,209,211,214,224,225,229,239,240,241,243,244,248],txt:[16,17,214],type1:[136,156],type2:[136,156],type:[13,22,32,33,37,38,39,40,41,42,43,45,46,50,52,53,56,57,61,63,64,68,74,78,85,89,91,93,100,116,118,129,130,136,138,140,144,149,152,153,154,162,179,191,192,197,199,202,203,204,205,208,209,211,212,214,225,231,237,239,240,241,243,246,248],type_1:132,type_2:132,type_n:132,type_nam:132,type_name_1:132,type_name_2:132,type_name_n:132,type_of_the_column:179,typic:[42,133],typo:[33,37,39,40,41,42,43,201,208,209],u0000ful:214,u0000http:214,ubuntu:[12,18,21,22,23,33,37,39,40,41,42,43,229],uchiyama:33,ud83c:33,udf7a:33,ueno:[37,39],uid:12,uint16:[40,119,120,132],uint32:[32,39,40,41,46,78,81,89,90,91,93,100,110,112,113,119,120,132,133,138,139,140,141,146,156,159,168,173,179,191,192,193,195,202,213,215,234,239,240,241,243,245,246,247,248],uint32_column:42,uint32_t:68,uint64:[32,33,40,41,119,120,132,156],uint8:[35,40,46,90,91,102,119,120,132],uint:[39,43],ull:144,ultra:240,umask:41,umemoto:37,unari:40,unauthent:[25,39],unchang:72,uncontinu:39,undefin:238,under:[28,33,41,153,154,156,157,225],underflow:238,underli:0,underscor:[90,138],understand:[41,115,133,140,241],undocu:133,unexpect:[33,39,41,43],unexpectedli:[33,40,42,43,102],unexpectedlli:33,unhandl:156,unicod:[42,195],unicorn:42,uniniti:42,uninstal:39,uniqu:[90,129,156],unit:[79,84,100,135,156,162,176,192,214,231],univers:30,unix:[3,5,8,28,41,135],unix_time_when_command_is_start:81,unknow:41,unknown:[38,46,55],unknown_error:231,unlimit:43,unlink:[33,56],unload:39,unlock:72,unmanag:[87,119],unmap:[33,42,54,97],unnam:33,unnecessari:[33,215],unpatch:44,unrecover:54,unregist:[122,123],unrel:37,unreli:149,unresolv:37,unsaf:[42,43,54],unsign:[41,42,49,50,56,59,63,64,66,67,69,72,85,119,216,231,238],unsort:43,unsplit:[11,133],unstabl:38,unsupport:42,unsupported_command_vers:231,untag:167,until:[17,41,48,72,84,97,103,133,193],unus:[41,97],updag:39,updat:[3,22,25,26,30,33,37,39,40,41,42,43,44,48,90,103,119,133,153,176,193,207,212,214,238,240,241,243],update_buffer_s:59,update_not_allow:231,updated_at:234,upgrad:[39,41,42,43,224],upload:12,upper:[37,41,90,138,202,241],uptim:[82,135,153,199,231,241,245],uri:[153,154,156],url:[37,41,101,154,225],usa:239,usabl:[147,156],usag:[0,22,33,40,41,42,43,45,191,192,243],use:[0,1,5,6,7,8,15,16,17,19,21,22,23,24,25,26,27,28,30,31,32,33,37,39,40,41,42,43,45,46,49,50,52,53,54,56,68,71,72,78,81,87,89,90,94,95,96,97,100,102,105,110,111,112,113,114,115,116,118,119,121,122,127,128,129,130,131,132,133,134,135,138,140,144,146,149,151,153,154,156,158,162,165,166,167,168,169,173,174,188,190,191,192,194,195,197,198,199,201,202,203,204,205,206,207,212,214,215,216,223,225,228,229,231,236,238,239,240,241,243,244,245,246,247,248],use_offline_index:38,use_range_index:42,used:[0,21,28,32,33,37,39,40,41,42,43,46,47,49,52,53,54,56,63,71,78,81,83,84,85,86,89,90,97,102,104,105,106,110,111,112,113,118,119,128,132,133,135,136,138,146,149,151,153,156,157,158,159,165,166,167,168,174,176,179,190,191,192,194,195,198,201,202,203,204,205,209,212,214,217,223,225,231,238,239,240,241,243,244,248],useful:[0,6,7,33,41,42,43,46,50,78,81,84,90,91,110,111,116,120,121,128,132,133,134,142,144,151,153,190,191,198,202,203,212,225,238,241,243],useless:54,user:[3,6,7,8,28,31,33,39,40,41,42,43,46,68,81,83,84,89,90,91,93,100,102,115,118,119,121,129,132,133,141,146,149,152,153,159,166,168,174,176,179,191,192,194,198,208,209,210,211,215,216,225,240,245,247],user_ag:159,user_column:152,user_data:[64,72],user_input:192,user_pattern:168,usernam:[31,240],users_20160320:115,users_index:244,users_loc:244,users_memo:174,users_nam:174,uses:[0,18,19,20,21,28,30,33,39,40,41,43,46,49,52,54,71,78,81,84,85,90,110,112,113,115,116,132,133,134,138,140,142,143,144,153,162,165,166,168,169,174,176,191,192,193,194,195,197,201,202,203,204,205,208,209,211,213,214,215,225,231,238,239,241,242,243,245,246],using:[0,3,22,28,32,33,39,40,42,43,44,46,52,84,90,102,110,111,112,113,115,133,140,143,149,153,156,168,174,191,192,198,201,210,211,231,237,240,241,243],usr:[14,27,28,122,123,127,151,153],usual:[42,43,53,157,238,243],utc:[81,192],utf8:[28,43,55,151],utf:[39,40,44,156,192,195,199,214],util:153,utop:42,uuid:43,uuuuuu:192,uzulla:37,vagrant:12,valid:[37,39,40,41,42,43,110,112,113,133,191,192,211,212,238],valu:[0,8,28,33,37,38,39,40,41,42,43,48,50,52,53,59,61,63,64,67,72,74,78,81,84,85,147,149,151,153,191,192,193,199,201,202,203,208,209,210,211,212,214,215,216,225,229,231,236,238,239,241,246,248],value1:[89,103,153,154,168,169,192],value2:[103,154,192],value_1:[132,241,245],value_2:[132,241,245],value_column:50,value_n:132,value_s:[43,120],value_typ:[66,132],valuebuf:61,valuen:[168,169],var_siz:[119,120],vari:[32,72],variabl:[29,33,37,38,39,40,41,42,43,72,91,119,120,133,192,201,231,238],varieti:240,variou:[22,237,241,244],vdw:[239,241,248],vector:[22,33,37,39,40,41,42,43,45,74,91,100,110,112,113,119,120,132,133,187,188,189,208,237,244],vector_column:[40,43],vector_new:[22,33,45,110,112,113,133,158],vector_s:[22,42,45,110,158],vector_slic:[22,33,43,45,158],vector_text_column:42,veres:225,veri:[0,33,39,43,81,103,110,112,113,133,165,166,168,176,191,192,202,203,208,212,225,240],version1:80,version2:80,version3:80,version4:80,version:[12,18,22,25,28,29,30,31,33,37,39,40,41,42,43,44,45,46,50,51,53,54,72,79,82,83,84,88,89,90,94,95,96,97,101,102,104,105,106,110,111,112,113,114,115,118,119,120,121,122,123,124,127,128,129,132,133,134,135,137,140,143,146,147,149,151,152,153,154,161,162,165,166,167,168,169,170,177,178,187,188,189,191,192,195,199,202,204,205,206,214,217,218,219,220,221,224,229,231,241,245],vertic:[90,138],vervet:[42,43],via:[17,39,85,156,211],video:240,view:[12,22,39,169,236,237,245],violat:33,virtual:[40,42],virtualbox:12,visual:[0,8,31,37,39,40,41,42,81,132],visut:43,vivid:[12,42,43],vmstat:236,vocabulari:241,voic:195,void_t:68,vojtovich:41,vulner:41,w64:12,wai:[0,3,6,7,19,33,39,40,41,78,102,133,147,149,153,156,157,174,190,199,239,241,243,244,247],wait:[48,72,84,110,112],wanab:40,want:[6,7,8,13,16,24,25,26,27,28,30,33,41,42,46,68,89,90,103,110,111,115,116,118,119,121,130,131,132,133,138,140,142,144,149,151,153,156,162,169,173,179,191,201,202,206,208,209,211,214,223,229,231,236,239,241,243,247],wareohji:39,warm:[151,153],warn:[6,7,33,38,39,40,41,107,108,133,151,153,194,202,205],warp:41,warri:23,washida:40,wasn:43,watch:12,weak:[0,176],web:[28,133,136,153,154,191,209,211,240],webclip:167,weight1:[33,39,78,133],weight2:[33,39,78,133],weight3:78,weight:[22,33,39,40,41,91,119,132,133,156,174,191,203,237,238],weight_in_match_column:78,weight_in_weight_vector:78,welcom:[2,3,16,17,110,112,113,133,191,192,244],well:[0,28,33,40,153,176,245],were:[33,43,162,241],werewolf:[42,43],wget:[24,25,26,28,29,30],wgs84geopoint:[37,43,57,119,120,132,162,238,239,240,244,245,248],wgs84geoppoint:57,what:[22,33,45,56,90,102,115,133,136,140,156,179,202,247],when:[0,3,18,33,37,39,40,41,42,43,46,50,54,63,68,78,81,82,84,89,90,94,97,101,102,103,104,110,111,112,113,115,119,120,121,122,127,128,132,133,134,136,138,140,143,149,151,153,156,162,167,169,174,179,191,193,195,202,206,208,214,215,223,228,231,235,240,241,244,246],where:[28,85,235,238],whether:[33,39,41,42,43,53,54,63,85,94,96,101,102,104,105,106,107,110,112,113,115,118,119,120,121,128,132,133,136,140,146,149,153,156,159,162,168,169,174,179,190,191,206,236,238],which:[0,1,26,33,39,40,41,42,43,71,72,100,107,110,112,113,115,116,130,131,133,142,144,149,151,156,157,162,167,169,170,173,174,179,188,191,192,208,229,231,235,238,239,240,241,243,244,245,246,247,248],white:[191,214,241],who:[33,40,42,149,159,214,240],whole:40,whombx:40,whose:[192,235,241],why:[40,133,202,229],wibowo:40,wide:[0,28,37,43,198,202,241],width:[37,42,195],wiedenroth:41,wiki:153,wikipedia:[198,216],wili:[42,43],win64:[8,31],window:[3,5,6,7,12,22,23,33,37,39,40,41,42,43,44,45,72,134,235],window_count:[22,33,45,217],window_record_numb:[22,33,45,113,217,218],window_sum:[22,33,45,110,112,113,133,217],wing:[39,40],with_check:[41,116],with_command_vers:42,with_posit:[43,90,91,110,112,113,119,120,128,132,133,156,165,166,174,176,179,191,192,193,202,203,204,205,213,215,234,241,243,244,247],with_sect:[41,42,43,90,91,119,132,243,244],with_typ:116,with_weight:[41,78,90,91,119,132],within:[208,209,244,248],without:[0,33,38,39,40,41,42,43,46,78,82,86,89,106,110,111,112,113,115,119,121,122,127,133,143,153,174,176,179,191,192,202,208,211,224,238,247],wno:37,wonderland:90,word1:[39,133,191,192],word2:[39,133,191,192],word:[0,33,39,41,42,68,74,112,133,140,179,190,191,192,201,203,208,209,210,211,213,214,242,244],work:[0,3,12,28,33,37,39,40,41,42,43,72,97,110,113,115,133,143,153,194,202,206,207,214,215,225,241,245],workaround:[41,42,43,140],worker:[33,40,43,153],worker_process:225,world:[40,41,214,216,243,248],worst:[33,43],writabl:[41,42],write:[14,18,28,38,41,42,68,105,126,133,137,151,191,192,202,242,243,244],written:[18,41,122,127,146,206,244],wrong:[33,37,39,40,41,42,43,149,209,210],wrongli:[37,43],wsaenobuf:235,www:12,x64:[12,31],x86:[31,37,42],x86_64:12,xcode:27,xenial:[30,43],xeru:[30,43],xml:[37,38,39,40,41,52,154,199,225,231],xvzf:[24,25,26,27,28,29,30],xxx:[33,40,41,43,133,151,192],xxx_20150603:42,xxx_20150604:42,xxx_201506:42,xxxxx:235,yahppo:40,yak:[33,43],yakketi:[33,43],yamada:41,yamaguchi:37,yamamoto:41,yaman:[40,41],yappo:[40,41,44],year:[42,46,159,192,194,244],years_old:46,yes:[12,14,33,38,40,42,43,82,101,102,110,112,113,115,121,133,136,140,150,208],yet:[0,37,40,43,110,112,113,130,131,133,156,192,197,203,205,206,225],yito:[39,40],yml:21,yoji:37,yokoyama:[40,41,43],yoku:[40,41],york:[162,244],yoshida:40,yoshioka:[39,42],you:[0,1,2,3,5,6,7,8,13,16,17,18,19,20,21,23,24,25,26,27,28,30,31,32,33,37,38,39,40,41,42,43,46,48,49,50,52,53,54,56,68,71,72,78,79,81,82,83,84,85,86,89,90,91,93,94,95,96,97,100,101,102,103,104,105,106,110,111,112,113,114,115,116,118,119,121,122,123,127,128,129,130,131,132,133,134,136,138,140,141,142,143,144,146,147,149,151,153,154,155,156,157,158,159,162,165,166,167,168,169,170,173,174,176,179,188,190,191,192,195,197,198,199,201,202,203,204,205,206,208,211,212,213,214,215,216,223,225,228,229,231,235,236,238,239,240,241,243,244,245,246,247,248],younger:90,your:[0,3,6,7,8,18,21,30,33,37,41,42,90,102,103,104,105,106,122,127,128,138,143,149,151,153,170,174,192,195,201,202,206,213,214,215,225,231,247],your_db:37,your_github_account:17,your_new_db:37,yourself:[23,90],yuki:[37,41,43],yum:[12,18,24,26,39],yunqiang:43,yutaro:42,yuya:[41,42,43],yy_syntax_error:46,yyi:17,yyyi:[192,194],yyyymm:206,yyyymmdd:[110,112,113,206],zapu:30,zcat:43,zenigata:240,zero:[33,43,74,78,90,133,173,195,201,213,214,231,238],zeromq:28,zesti:30,zip:[12,22,23,39],zlib1g:[25,30],zlib:[23,35,37,39,40,41,90,119,132],zlib_error:231,zsh:28,zstandard:[28,43,90,119],zstd:119,zunda:37,zxvf:12},titles:["1. Characteristics of Groonga","6. Client","3. Community","12. How to contribute to groonga","12.3. For Groonga developers","12.3.2. How to build Groonga at the repository","12.3.2.1. How to build Groonga at the repository by GNU Autotools","12.3.2.2. How to build Groonga at the repository by CMake on GNU/Linux or Unix","12.3.2.3. How to build Groonga at the repository by CMake on Windows","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. Repository","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. How to contribute in documentation topics","12.2.3. C API","12.2.2. I18N","12.2.1. Introduction","12.1. How to report a bug","11. Development","11.1. Travis CI","Groonga documentation","2. Install","2.5. CentOS","2.3. Debian GNU/Linux","2.6. Fedora","2.2. Mac OS X","2.8. Others","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. Limitations","News","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","News - 1.2.x","News - 1.3.x","News - 2.x","News - 3.x","News - 4.x","News - 5.x","News - 6.x","News in Senna period","7. Reference manual","7.18. Alias","7.24. API","7.24.2. Global configurations","7.24.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.24.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.24.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.24.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.24.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.24.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.24.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.24.11. grn_expr","7.24.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.24.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.24.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.24.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.24.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.24.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.24.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.24.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.24.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.24.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.24.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.24.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.24.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.24.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.24.1. Overview","7.24.3. Plugin","Cast","7.6. Column","7.6.4. Index column","7.6.3. Pseudo column","7.6.1. Scalar column","7.6.2. Vector column","7.3. Command","7.3.1. Command version","7.3.2. Output format","7.3.3. Pretty print","7.3.4. Request ID","7.3.5. Request timeout","7.3.6. Return code","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">config_delete</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">config_get</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">config_set</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">lock_acquire</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">lock_release</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">object_inspect</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">object_list</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">object_remove</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">query_expand</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">reindex</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">schema</span></code>","7.3.54. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.55. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.56. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.57. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.58. <code class=\"docutils literal\"><span class=\"pre\">table_copy</span></code>","7.3.59. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.60. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.61. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.62. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.63. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.64. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.65. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.66. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.67. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.17. Configuration","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP server","7.1.7. groonga-suggest-create-dataset","7.1.8. <code class=\"docutils literal\"><span class=\"pre\">groonga-suggest-httpd</span></code>","7.1.9. groonga-suggest-learner","7.14. Function","7.14.1. <code class=\"docutils literal\"><span class=\"pre\">between</span></code>","7.14.2. edit_distance","7.14.3. <code class=\"docutils literal\"><span class=\"pre\">fuzzy_search</span></code>","7.14.4. <code class=\"docutils literal\"><span class=\"pre\">geo_distance</span></code>","7.14.5. geo_in_circle","7.14.6. geo_in_rectangle","7.14.7. <code class=\"docutils literal\"><span class=\"pre\">highlight_full</span></code>","7.14.8. <code class=\"docutils literal\"><span class=\"pre\">highlight_html</span></code>","7.14.9. <code class=\"docutils literal\"><span class=\"pre\">html_untag</span></code>","7.14.10. <code class=\"docutils literal\"><span class=\"pre\">in_records</span></code>","7.14.11. <code class=\"docutils literal\"><span class=\"pre\">in_values</span></code>","7.14.12. <code class=\"docutils literal\"><span class=\"pre\">math_abs</span></code>","7.14.13. now","7.14.14. <code class=\"docutils literal\"><span class=\"pre\">number_classify</span></code>","7.14.15. <code class=\"docutils literal\"><span class=\"pre\">prefix_rk_search</span></code>","7.14.16. <code class=\"docutils literal\"><span class=\"pre\">query</span></code>","7.14.17. rand","7.14.18. <code class=\"docutils literal\"><span class=\"pre\">snippet_html</span></code>","7.14.19. <code class=\"docutils literal\"><span class=\"pre\">string_length</span></code>","7.14.20. <code class=\"docutils literal\"><span class=\"pre\">string_substring</span></code>","7.14.21. <code class=\"docutils literal\"><span class=\"pre\">sub_filter</span></code>","7.14.22. <code class=\"docutils literal\"><span class=\"pre\">time_classify_day</span></code>","7.14.23. <code class=\"docutils literal\"><span class=\"pre\">time_classify_hour</span></code>","7.14.24. <code class=\"docutils literal\"><span class=\"pre\">time_classify_minute</span></code>","7.14.25. <code class=\"docutils literal\"><span class=\"pre\">time_classify_month</span></code>","7.14.26. <code class=\"docutils literal\"><span class=\"pre\">time_classify_second</span></code>","7.14.27. <code class=\"docutils literal\"><span class=\"pre\">time_classify_week</span></code>","7.14.28. <code class=\"docutils literal\"><span class=\"pre\">time_classify_year</span></code>","7.14.29. <code class=\"docutils literal\"><span class=\"pre\">vector_new</span></code>","7.14.30. <code class=\"docutils literal\"><span class=\"pre\">vector_size</span></code>","7.14.31. <code class=\"docutils literal\"><span class=\"pre\">vector_slice</span></code>","7.12. grn_expr","7.12.1. Query syntax","7.12.2. Script syntax","7.20. Indexing","7.22. Log","7.7. Normalizers","7.16. Operations","7.16.1. Geolocation search","7.16.2. Prefix RK search","7.2. Output","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.13. Regular expression","7.11. Scorer","7.11.3.1. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></code>","7.21. Sharding","7.19. Suggest","7.19.2. Completion","7.19.3. Correction","7.19.1. Introduction","7.19.4. Suggestion","7.5. Tables","7.9. Token filters","7.8. Tokenizers","7.23. Tuning","7.4. Data types","7.15. Window function","7.15.1. <code class=\"docutils literal\"><span class=\"pre\">record_number</span></code>","7.15.2. <code class=\"docutils literal\"><span class=\"pre\">window_count</span></code>","7.15.3. <code class=\"docutils literal\"><span class=\"pre\">window_record_number</span></code>","7.15.4. <code class=\"docutils literal\"><span class=\"pre\">window_sum</span></code>","5. Server","5.3. GQTP","5.2. HTTP","5.2.1. Comparison","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached binary protocol","5.1. Server packages","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","10. Troubleshooting","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to analyze error messages","10.3. How to avoid mmap Cannot allocate memory error","4. Tutorial","4.3. Various data types","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.1. Basic operations","4.9. Additional information about lexicon for full text search","4.7. match_columns parameter","4.10. Let's create micro-blog","4.2. Remote access","4.8. Prefix search with patricia trie","4.11. Query expansion","4.4. Various search conditions"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[35,36,37],"1\u30ea\u30ea\u30fc\u30b9":[35,37],"2\u30ea\u30ea\u30fc\u30b9":35,"3\u30ea\u30ea\u30fc\u30b9":35,"4\u30ea\u30ea\u30fc\u30b9":35,"5\u30ea\u30ea\u30fc\u30b9":35,"6\u30ea\u30ea\u30fc\u30b9":[34,35],"7\u30ea\u30ea\u30fc\u30b9":[34,35],"8\u30ea\u30ea\u30fc\u30b9":35,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":10,"\u306e\u66f4\u65b0":12,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":10,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u89e3\u6790\u65b9\u6cd5":[],"\u30aa\u30d7\u30b7\u30e7\u30f3":[150,152],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":14,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":11,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":11,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":80,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":152,"\u30b5\u30f3\u30d7\u30eb":[150,152],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":152,"\u30bd\u30b1\u30c3\u30c8\u30a8\u30e9\u30fc\u306e\u89e3\u6790\u65b9\u6cd5":[],"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":14,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":14,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":14,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":152,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":234,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":34,"\u30d0\u30fc\u30b8\u30e7\u30f31":[35,36],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":80,"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":12,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":12,"\u30d3\u30eb\u30c9\u6642\u306etip":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":12,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30d6\u30ed\u30b0":12,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":216,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":14,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":10,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":12,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4f7f\u3044\u65b9":152,"\u4f8b":[160,163,164,171,175,234],"\u4f8b\u3048\u3070redmin":10,"\u4fee\u6b63":[34,35,36,37],"\u5236\u9650\u4e8b\u9805":152,"\u524d\u63d0\u6761\u4ef6":12,"\u539f\u56e0":234,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":234,"\u540d\u524d":[76,150,152,160,163,164,171,175],"\u5909\u66f4":35,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":12,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":232,"\u5b9f\u9a13\u7684":37,"\u5bfe\u5fdc":10,"\u5bfe\u7b56\u65b9\u6cd51":234,"\u5bfe\u7b56\u65b9\u6cd52":234,"\u5f15\u6570":[150,152,160,163,164,175],"\u611f\u8b1d":[34,35,36,37],"\u6539\u826f":[34,35,36,37],"\u66f8\u5f0f":[150,152,160,163,164,171,175],"\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806":12,"\u691c\u7d22":232,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":232,"\u691c\u7d22\u306e\u6319\u52d5":232,"\u691c\u7d22\u4f8b1":11,"\u691c\u7d22\u4f8b2":11,"\u691c\u7d22\u4f8b3":11,"\u691c\u7d22\u4f8b4":11,"\u6982\u8981":80,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":14,"\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806":12,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":12,"\u7279\u6b8a\u547d\u4ee4":152,"\u7406\u7531":10,"\u89e3\u6790\u65b9\u6cd5":[],"\u8aac\u660e":[76,150,152,160,163,164,171,175],"\u8fd4\u5024":[160,163,164,171,175],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":10,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":232,"\u95a2\u4fc2\u5f0f":11,"\u95be\u5024\u3092\u3042\u3052\u308b":234,"\u9759\u7684\u89e3\u6790":14,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":232,"benchmark\u547d\u4ee4":152,"benchmark\u5b9f\u884c\u7d50\u679c":152,"boolean":[192,238],"case":[81,115,140],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"class":202,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":80,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"debian\u7cfb\u306e\u5834\u5408":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"default":[28,80,84],"examples\u306e\u5b9f\u884c":12,"facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"files\u306e\u5b9f\u884c":12,"float":[192,216],"function":[110,112,113,133,158,192,217],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":12,"grntest\u306e\u6e96\u5099":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":12,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":11,"hat\u7cfb\u306e\u5834\u5408":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"homebrew\u306e\u66f4\u65b0":12,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":109,"new":[17,33,37,38,39,40,41,42,43,44],"null":192,"po\u306e\u5b9f\u884c":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":12,"ppa\u7528\u306e\u9375\u306e\u767b\u9332":12,"release\u306e\u5b9f\u884c":12,"return":[84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,154,156,159,161,162,165,166,167,168,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,204,205,218,219,220,221],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"twitter\u7de8":10,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057":12,"version\u30d1\u30e9\u30e1\u30fc\u30bf":80,"windows\u5411\u3051\u306e\u5834\u5408":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"x\u306e\u304a\u77e5\u3089\u305b":[34,35,36],AND:[191,192],For:4,NOT:[191,192],Near:[191,192],Not:[191,192],The:[33,90,133,215],Use:156,Using:[162,225],about:[216,242],access:[225,245],add:17,addit:[192,195,242],adjust:133,administr:[153,245],advanc:[113,133],against:243,aggreg:0,alia:46,all:212,alloc:236,also:[6,7,8,46,81,83,84,85,86,88,90,91,94,95,96,98,100,103,104,106,107,108,109,114,116,117,120,122,123,124,126,127,129,130,131,132,133,136,138,142,144,145,155,156,165,166,173,174,176,179,190,195,198,201,204,205,212,213,231],among:243,analyz:235,anchor:202,api:[16,47],appli:78,approximate_typ:162,archiv:30,arg:11,arithmet:192,arrai:192,assign:[83,191,192],authent:225,autotool:6,avail:[153,213],avoid:236,basic:[115,140,192,241],benchmark:152,between:159,bigram:244,binari:228,bitwis:192,blog:244,blogroonga:12,bodi:81,bool:216,broken:115,brows:153,bug:19,build:[5,6,7,8,24,25,26,27,28,30,31],built:[195,203,214],builtin:[151,216],cach:[110,112,113,133,153],cache_limit:86,calc_target:113,calc_typ:113,call:192,callback:11,can:216,candidate_n:156,cannot:236,cascad:100,cast:73,cento:24,chang:[44,89],charact:202,characterist:[0,212],chat:2,check:[87,149],checkout:[6,7,8],choic:202,clear:149,clearlock:88,client:[1,151,231],clone:17,close_tagn:165,cmake:[7,8],code:[84,85],column:[0,32,74,75,76,77,78,89,90,110,112,113,119,120,132,133,140,162,165,173,191,204,205,239,241,243],column_copi:89,column_cr:90,column_full_nam:119,column_id:119,column_list:91,column_nam:119,column_or_valu:159,column_remov:92,column_renam:93,column_t:119,column_type_nam:119,column_type_raw_id:119,column_type_raw_nam:119,column_value_typ:119,combin:191,command:[79,80,132,147,149,151,154,156,199,206,225,241,245],comment:244,common:120,commun:2,comparison:[192,225],complet:[208,210],compress:225,condit:[133,191,248],condition_column_nam:168,condition_t:168,config_delet:94,config_get:95,config_set:96,configur:[6,18,21,28,48,89,147,153,225],confirm:17,construct:193,contain:11,contribut:[3,15],control:192,convert:198,cooccurr:[208,209,211],core:225,correct:[209,210],cpu:225,creat:[6,78,90,138,155,241,243,244],custom:225,daemon:[151,231],data:[90,138,153,157,191,192,208,211,216,238,244],data_column_value_compress_method:119,databas:[119,225,241],database_name_t:119,database_path:[156,157],database_type_id:119,database_type_nam:119,database_unmap:97,dataset:155,date:238,db_api:11,debian:25,decreas:[115,140],default_mod:174,default_token:138,define_selector:98,defrag:99,delet:100,depend:[6,7,8,18,28,115,140],descript:216,desctipion:155,develop:[4,20],differ:113,direct:153,divis:192,document:[15,18,22],domain:239,down:[153,248],downtim:225,drildown:239,drilldown:[113,133,239],drilldown_calc_target:[113,133],drilldown_calc_typ:[113,133],drilldown_filt:[113,133],drilldown_limit:[113,133],drilldown_offset:[113,133],drilldown_output_column:[113,133],drilldown_sort_kei:[113,133],drilldown_sortbi:[113,133],dump:101,dump_index:101,dump_plugin:101,dump_record:101,dump_schema:101,dynam:[110,112,113,133],each:243,edit:17,edit_dist:160,ellipsoid:162,enabl:[18,84],encod:28,engin:0,equal:[11,191,192],error:[81,235,236],escal:28,escap:[191,202],exampl:[21,49,50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,155,231,235,236],execut:[148,151],exit:155,expand:200,expans:247,explicit:191,explicitli:162,express:[191,192,202],extract:[192,211],facebook:2,favorit:244,featur:197,fedora:26,file:[17,151,155,157,201,215,225],filter:[110,112,113,133,213],filter_str:179,fix:[33,37,39,40,41,42,43,44],flag:[90,110,112,113,116,120,133,138,142,144,174,231],flow:17,follow:244,forc:[115,121,149],format:[81,103,133,194,201,241],free:0,freebsd:215,from:[6,7,8,24,25,26,27,28,30,31,113,156,157],from_nam:[89,137],from_tabl:89,full:[0,90,191,241,242,243,248],fuzzy_search:161,gener:[17,18],geo:[0,192,240],geo_dist:162,geo_in_circl:163,geo_in_rectangl:164,geoindex:244,geoloc:[197,244],geopoint:244,get:[156,241],global:48,glossari:206,gnu:[6,7,25],gqtp:[223,229,231],greater:[11,191,192],greater_equ:11,grn_cach:49,grn_column:50,grn_command_vers:51,grn_content_typ:52,grn_ctx:53,grn_db:54,grn_encod:55,grn_expr:[11,56,190],grn_geo:57,grn_hook:58,grn_ii:59,grn_index_cursor:60,grn_info:61,grn_match_escal:62,grn_obj:63,grn_proc:64,grn_search:65,grn_tabl:66,grn_table_cursor:67,grn_table_select:11,grn_thread_:68,grn_type:69,grn_user_data:70,grndb:149,grnslap:150,groonga:[0,3,4,5,6,7,8,9,12,17,22,44,151,152,153,154,155,156,157,226,227,229],groonga_base_path:153,groonga_cache_base_path:153,groonga_cache_limit:153,groonga_databas:153,groonga_database_auto_cr:153,groonga_log_level:153,groonga_log_path:153,groonga_query_log_path:153,group:[191,192,202],group_kei:[110,112,113,133],gzip:225,handleabl:90,hash:244,hashtag:244,header:[81,94,95,96,104,106,120,132,231],help:28,highlight_ful:165,highlight_html:166,homebrew:27,how:[3,5,6,7,8,15,17,19,46,78,83,84,89,193,198,208,209,211,223,231,235,236,245],html:[17,18,167],html_untag:167,http:[154,199,224,225,229,245],httpd:[153,156,157,227,229],hypertext:245,i18n:17,improv:[33,37,38,39,40,41,42,43,44],in_record:168,in_valu:169,index:[0,32,75,90,120,132,138,193,202,204,205,240,241,243],index_column:142,index_column_source_full_nam:119,index_column_source_id:119,index_column_source_nam:119,index_column_source_t:119,index_column_value_posit:119,index_column_value_s:119,index_column_value_sect:119,index_column_value_statistics_max_array_segment_id:119,index_column_value_statistics_max_buffer_segment_id:119,index_column_value_statistics_max_in_use_chunk_id:119,index_column_value_statistics_max_in_use_physical_segment_id:119,index_column_value_statistics_max_section_id:119,index_column_value_statistics_n_garbage_chunk:119,index_column_value_statistics_n_garbage_seg:119,index_column_value_statistics_n_unmanaged_seg:119,index_column_value_statistics_total_chunk_s:119,index_column_value_weight:119,inform:[242,248],input:156,instal:[6,7,8,17,18,23,28,31,201],instant:0,int16:216,int32:216,int64:216,int8:216,integ:192,introduct:[18,210],invert:0,io_flush:102,issu:[19,245],javascript:248,jessi:25,json:[81,103],just:78,kei:[94,95,96,113,133,216,246],kern:215,key_typ:138,keyword:244,keywordn:165,kind:90,label:[113,133],languag:17,larg:138,latest:12,latitud:[0,238],launch:156,learn:[156,157,208,209,210,211],learner:[156,157],left:192,less:[11,191,192],less_equ:11,let:244,level:149,lexicon:[138,241,242],librari:[0,28],like:248,limit:[32,78,112,113,133,201,212,216,239],line:[151,156,199],linux:[7,25,215],list:[2,19,85],liter:192,load:[78,103,153,241,244],localstatedir:28,locat:[0,162,201,240,248],lock:[0,149],lock_acquir:104,lock_clear:105,lock_releas:106,log:[28,149,157,194,225],log_level:107,log_put:108,log_reopen:109,logic:[115,191,192],logical_count:110,logical_paramet:111,logical_range_filt:112,logical_select:113,logical_shard_list:114,logical_t:[110,112,113,114,115],logical_table_remov:115,longitud:[0,238],longtext:216,lz4:28,mac:27,macport:27,mail:[2,19],make:[6,7,12,28],manual:45,match:[28,191,192],match_column:[113,133,174,243],match_escalation_threshold:[113,133],math_ab:170,max:[86,110,112,113,115,143,159,215],max_bord:[110,112,113,115,159],max_map_count:215,maxfileperproc:215,medium:90,memcach:228,memori:[215,236],messag:[28,235],message_pack_install_prefix:28,messagepack:81,micro:244,min:[110,112,113,115,159],min_bord:[110,112,113,115,159],mmap:236,mode:[11,134,142,144,151],mode_nam:168,modul:153,modulo:192,mroonga:0,much:115,multi:225,multipl:[90,192,239,243],munin:28,name:[90,93,110,112,113,118,119,121,133,138,140,141,154,155,216,243],narrow:248,nest:243,new_nam:[93,141],nginx:153,nofil:215,normal:[78,116,132,138,144,195],normalizer_list:117,normalizer_nam:165,normalizerauto:195,normalizernfkc51:195,not_equ:11,now:171,number:[28,90,133,215],number_classifi:172,numer:238,object:[120,192],object_exist:118,object_inspect:119,object_list:120,object_remov:121,object_typ:120,offlin:193,offset:[112,113,133],old:33,one:243,onlin:193,only_open:102,open:215,open_tagn:165,oper:[192,196,241],option:[89,90,94,95,96,97,101,102,110,111,112,113,114,115,116,118,119,120,121,124,132,134,135,137,138,140,142,143,144,151,155,156,157,159,162,166,168,174,204,205],oracl:29,order:112,origin:192,other:[28,202],output:[17,81,112,113,133,199,241],output_column:[112,113,133],overcommit_memori:215,overview:[0,71,238],pack:28,packag:[28,30,229],page:133,paramet:[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,118,119,120,121,124,125,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,151,156,157,159,162,165,166,167,168,169,170,173,174,179,187,188,204,205,215,243],part:115,patch:17,path:[28,131,149,225],patricia:246,per:215,perform:[153,225],period:44,persist:212,person:30,phrase:191,platform:28,plugin:[28,72,132],plugin_regist:122,plugin_unregist:123,point1:162,point2:162,point:192,possibl:115,post:[153,225,244],post_filt:112,ppa:30,prefix:[11,28,191,192,198,208,225,246],prefix_rk_search:173,prepar:247,pretti:82,primari:[216,246],print:82,proc:120,process:[194,215],properti:120,protocol:[228,231,245],proxi:153,proxy_cach:153,pseudo:76,pull:17,quantifi:202,queri:[0,113,133,153,173,174,191,194,200,247],query_expand:[113,124,133,174],query_expans:133,query_flag:[113,133],query_str:174,query_typ:231,queryexpandertsv:201,quit:125,rand:175,rang:[120,138,241],range_filt:126,range_index:111,read:[0,198,208],record:[90,133,212,241],record_numb:218,recov:149,rectangl:162,recurs:102,red:12,refer:[45,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,78,90,140,238,240],regist:127,regular:[191,192,202],reindex:128,relat:[110,112,113,115,133,153,157,243],relationship:240,releas:[33,37,38,39,40,41,42,43],remot:245,remov:[115,140],report:19,repositori:[5,6,7,8,13,17],request:[17,83,84,153],request_cancel:129,requir:[89,90,91,93,94,95,96,97,102,110,111,112,113,114,115,116,118,119,120,121,124,129,132,133,134,135,137,138,140,141,142,143,144,146,156,159,162,166,167,168,174,204,205],resolut:240,resolv:46,resourc:[115,140],respons:156,restart:229,result:[239,241],revers:[153,240],right:192,romaji:198,room:2,ruby_ev:130,ruby_load:131,rule:206,run:[6,7,8,18,223,231,245],sampl:[191,192],scalar:[77,90],schema:132,scope:179,score:133,score_n:156,scorer:[113,133,203,248],scorer_tf_at_most:204,scorer_tf_idf:205,script:[130,192],search:[0,78,90,110,112,113,133,191,192,197,198,208,209,211,240,241,242,243,244,246,247,248],secur:[192,245],see:[6,7,8,46,81,83,84,85,86,88,90,91,94,95,96,98,100,103,104,106,107,108,109,114,116,117,120,122,123,124,126,127,129,130,131,132,133,136,138,142,144,145,155,156,165,166,173,174,176,179,190,195,198,201,204,205,212,213,231],select:[113,133],send:[17,245],senna:44,server:[0,151,154,222,229,231,245],set:[84,153],setup:156,sharabl:0,shard:206,shard_kei:[110,112,113,115],shift:192,shorttext:216,shut:153,shutdown:134,sign:192,similar:[11,191,192,209],simpl:[112,113,133],size:231,slice:133,small:90,snippet_html:176,socket:235,softwar:[6,7,8,18],solari:29,solut:236,sort:[239,241,248],sort_hash_t:101,sort_kei:[110,112,113,133],sortbi:[113,133],sourc:[24,25,26,27,28,30,31,90,120,132],specif:[120,153,230,243,244],specifi:[162,216,241],sphere:162,sphinx:17,stage:[110,112,113,133],standalon:151,start:229,statu:[135,155,231],stop:229,storag:0,store:[0,138],stretch:25,string:[116,142,144,192,238],string_length:177,string_substr:178,style:133,sub_filt:179,submit:19,substitution_t:174,subtract:192,succeeded_or_not:[94,96,104,106],success:81,suffix:[11,191,192,246],suggest:[136,155,156,157,207,210,211],summari:[46,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,75,77,78,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,151,153,154,156,157,159,161,162,165,166,167,168,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,195,198,201,202,203,204,205,206,212,213,214,215,218,219,220,221,223],support:197,synopsi:[154,157],synopsti:155,syntax:[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,149,151,153,156,159,161,162,165,166,167,168,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,191,192,202,204,205,218,219,220,221,248],tabl:[32,89,90,91,93,101,115,119,120,132,133,138,140,142,157,212,216,241,243,244],table_copi:137,table_cr:138,table_dat_kei:212,table_hash_kei:212,table_id:119,table_key_max_total_s:119,table_key_total_s:119,table_key_typ:119,table_list:139,table_n_record:119,table_nam:119,table_no_kei:212,table_pat_kei:212,table_remov:140,table_renam:141,table_token:142,table_type_id:119,table_type_nam:119,table_value_typ:119,tag:[138,240,244],target:[90,140,149,170,188],target_nam:[102,104,105,106,128,146],target_valu:169,temporari:212,term:192,termin:231,test:112,text:[0,90,166,191,216,241,242,243,248],than:[191,192],thank:[33,37,38,39,40,41,42,43],thread_limit:143,threshold:28,time:[192,216,238,244],time_classify_dai:180,time_classify_hour:181,time_classify_minut:182,time_classify_month:183,time_classify_second:184,time_classify_week:185,time_classify_year:186,timeout:84,to_nam:[89,137],to_tabl:89,todo:176,token:[0,132,144,213,214],token_filt:[120,132,138,144],tokenbigram:214,tokenbigramignoreblank:214,tokenbigramignoreblanksplitsymbol:214,tokenbigramignoreblanksplitsymbolalpha:214,tokenbigramignoreblanksplitsymbolalphadigit:214,tokenbigramsplitsymbol:214,tokenbigramsplitsymbolalpha:214,tokenbigramsplitsymbolalphadigit:214,tokendelimit:214,tokendelimitnul:214,tokenfilterstem:213,tokenfilterstopword:213,tokenizer_list:145,tokenizs:214,tokenmecab:214,tokenregexp:214,tokentrigram:214,tokenunigram:214,tokyogeopoint:216,tool:[28,153,245],topic:15,total:133,tracker:19,transfer:245,translat:17,travi:21,trie:246,troubleshoot:233,truncat:[146,149],tsv:[81,201],tune:215,tutori:237,twitter:2,type:[90,110,112,113,119,120,132,133,156,216,238,244],type_id:119,type_id_of_typ:119,type_nam:119,type_name_of_typ:119,type_s:119,ubuntu:30,uint16:216,uint32:216,uint64:216,uint8:216,unix:7,unremov:[115,140],unsign:192,updat:[0,12,17,18,208],upgrad:225,usag:[46,75,77,78,82,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,149,151,153,156,157,159,161,162,165,166,167,168,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,198,199,201,202,203,204,205,215,218,219,220,221],use:[193,208,209,211],use_html_escap:165,use_range_index:112,used:[115,140],user:[156,244],using:[244,248],valu:[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,154,156,159,161,162,165,166,167,168,169,170,172,173,174,176,177,178,179,180,181,182,183,184,185,186,187,188,189,204,205,218,219,220,221,244],value_typ:138,variou:[238,248],vector:[78,90,238],vector_new:187,vector_s:188,vector_slic:189,version:[80,225],view:241,weight:[78,90,243],wgs84geopoint:216,what:214,who:244,window:[8,31,110,112,113,133,217],window_count:219,window_record_numb:220,window_sum:221,without:225,work:[17,208,209,211],worker_process:153,xml:81,xor:192,your:17,zip:31,zlib:28}})
1
+ Search.setIndex({docnames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/docker","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/5.x","news/6.x","news/senna","reference","reference/alias","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_inspect","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/request_timeout","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/config_delete","reference/commands/config_get","reference/commands/config_set","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_acquire","reference/commands/lock_clear","reference/commands/lock_release","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/object_inspect","reference/commands/object_list","reference/commands/object_remove","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/query_expand","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/schema","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_copy","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_rename","reference/commands/table_tokenize","reference/commands/thread_limit","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/configuration","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/cast_loose","reference/functions/edit_distance","reference/functions/fuzzy_search","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_records","reference/functions/in_values","reference/functions/math_abs","reference/functions/now","reference/functions/number_classify","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/string_length","reference/functions/string_substring","reference/functions/sub_filter","reference/functions/time_classify_day","reference/functions/time_classify_day_of_week","reference/functions/time_classify_hour","reference/functions/time_classify_minute","reference/functions/time_classify_month","reference/functions/time_classify_second","reference/functions/time_classify_week","reference/functions/time_classify_year","reference/functions/vector_find","reference/functions/vector_new","reference/functions/vector_size","reference/functions/vector_slice","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/normalizers/normalizer_auto","reference/normalizers/normalizer_nfkc100","reference/normalizers/normalizer_nfkc51","reference/operations","reference/operations/geolocation_search","reference/operations/prefix_rk_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/sharding","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filter/summary","reference/token_filters","reference/token_filters/token_filter_nfkc100","reference/token_filters/token_filter_stem","reference/token_filters/token_filter_stop_word","reference/tokenizer/summary","reference/tokenizers","reference/tokenizers/token_bigram","reference/tokenizers/token_bigram_ignore_blank","reference/tokenizers/token_bigram_ignore_blank_split_symbol","reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha","reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit","reference/tokenizers/token_bigram_split_symbol","reference/tokenizers/token_bigram_split_symbol_alpha","reference/tokenizers/token_bigram_split_symbol_alpha_digit","reference/tokenizers/token_delimit","reference/tokenizers/token_delimit_null","reference/tokenizers/token_mecab","reference/tokenizers/token_regexp","reference/tokenizers/token_trigram","reference/tokenizers/token_unigram","reference/tuning","reference/types","reference/window_function","reference/window_functions/record_number","reference/window_functions/window_count","reference/window_functions/window_record_number","reference/window_functions/window_sum","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/memcached","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/how_to_analyze_error_message","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],envversion:{"sphinx.domains.c":1,"sphinx.domains.changeset":1,"sphinx.domains.cpp":1,"sphinx.domains.javascript":1,"sphinx.domains.math":2,"sphinx.domains.python":1,"sphinx.domains.rst":1,"sphinx.domains.std":1,sphinx:56},filenames:["characteristic.rst","client.rst","community.rst","contribution.rst","contribution/development.rst","contribution/development/build.rst","contribution/development/build/unix_autotools.rst","contribution/development/build/unix_cmake.rst","contribution/development/build/windows_cmake.rst","contribution/development/com.rst","contribution/development/cooperation.rst","contribution/development/query.rst","contribution/development/release.rst","contribution/development/repository.rst","contribution/development/test.rst","contribution/documentation.rst","contribution/documentation/c-api.rst","contribution/documentation/i18n.rst","contribution/documentation/introduction.rst","contribution/report.rst","development.rst","development/travis-ci.rst","index.rst","install.rst","install/centos.rst","install/debian.rst","install/docker.rst","install/fedora.rst","install/mac_os_x.rst","install/others.rst","install/solaris.rst","install/ubuntu.rst","install/windows.rst","limitations.rst","news.rst","news/0.x.rst","news/1.0.x.rst","news/1.1.x.rst","news/1.2.x.rst","news/1.3.x.rst","news/2.x.rst","news/3.x.rst","news/4.x.rst","news/5.x.rst","news/6.x.rst","news/senna.rst","reference.rst","reference/alias.rst","reference/api.rst","reference/api/global_configurations.rst","reference/api/grn_cache.rst","reference/api/grn_column.rst","reference/api/grn_command_version.rst","reference/api/grn_content_type.rst","reference/api/grn_ctx.rst","reference/api/grn_db.rst","reference/api/grn_encoding.rst","reference/api/grn_expr.rst","reference/api/grn_geo.rst","reference/api/grn_hook.rst","reference/api/grn_ii.rst","reference/api/grn_index_cursor.rst","reference/api/grn_info.rst","reference/api/grn_inspect.rst","reference/api/grn_match_escalation.rst","reference/api/grn_obj.rst","reference/api/grn_proc.rst","reference/api/grn_search.rst","reference/api/grn_table.rst","reference/api/grn_table_cursor.rst","reference/api/grn_thread.rst","reference/api/grn_type.rst","reference/api/grn_user_data.rst","reference/api/overview.rst","reference/api/plugin.rst","reference/cast.rst","reference/column.rst","reference/columns/index.rst","reference/columns/pseudo.rst","reference/columns/scalar.rst","reference/columns/vector.rst","reference/command.rst","reference/command/command_version.rst","reference/command/output_format.rst","reference/command/pretty_print.rst","reference/command/request_id.rst","reference/command/request_timeout.rst","reference/command/return_code.rst","reference/commands/cache_limit.rst","reference/commands/check.rst","reference/commands/clearlock.rst","reference/commands/column_copy.rst","reference/commands/column_create.rst","reference/commands/column_list.rst","reference/commands/column_remove.rst","reference/commands/column_rename.rst","reference/commands/config_delete.rst","reference/commands/config_get.rst","reference/commands/config_set.rst","reference/commands/database_unmap.rst","reference/commands/define_selector.rst","reference/commands/defrag.rst","reference/commands/delete.rst","reference/commands/dump.rst","reference/commands/io_flush.rst","reference/commands/load.rst","reference/commands/lock_acquire.rst","reference/commands/lock_clear.rst","reference/commands/lock_release.rst","reference/commands/log_level.rst","reference/commands/log_put.rst","reference/commands/log_reopen.rst","reference/commands/logical_count.rst","reference/commands/logical_parameters.rst","reference/commands/logical_range_filter.rst","reference/commands/logical_select.rst","reference/commands/logical_shard_list.rst","reference/commands/logical_table_remove.rst","reference/commands/normalize.rst","reference/commands/normalizer_list.rst","reference/commands/object_exist.rst","reference/commands/object_inspect.rst","reference/commands/object_list.rst","reference/commands/object_remove.rst","reference/commands/plugin_register.rst","reference/commands/plugin_unregister.rst","reference/commands/query_expand.rst","reference/commands/quit.rst","reference/commands/range_filter.rst","reference/commands/register.rst","reference/commands/reindex.rst","reference/commands/request_cancel.rst","reference/commands/ruby_eval.rst","reference/commands/ruby_load.rst","reference/commands/schema.rst","reference/commands/select.rst","reference/commands/shutdown.rst","reference/commands/status.rst","reference/commands/suggest.rst","reference/commands/table_copy.rst","reference/commands/table_create.rst","reference/commands/table_list.rst","reference/commands/table_remove.rst","reference/commands/table_rename.rst","reference/commands/table_tokenize.rst","reference/commands/thread_limit.rst","reference/commands/tokenize.rst","reference/commands/tokenizer_list.rst","reference/commands/truncate.rst","reference/configuration.rst","reference/executables.rst","reference/executables/grndb.rst","reference/executables/grnslap.rst","reference/executables/groonga.rst","reference/executables/groonga-benchmark.rst","reference/executables/groonga-httpd.rst","reference/executables/groonga-server-http.rst","reference/executables/groonga-suggest-create-dataset.rst","reference/executables/groonga-suggest-httpd.rst","reference/executables/groonga-suggest-learner.rst","reference/function.rst","reference/functions/between.rst","reference/functions/cast_loose.rst","reference/functions/edit_distance.rst","reference/functions/fuzzy_search.rst","reference/functions/geo_distance.rst","reference/functions/geo_in_circle.rst","reference/functions/geo_in_rectangle.rst","reference/functions/highlight_full.rst","reference/functions/highlight_html.rst","reference/functions/html_untag.rst","reference/functions/in_records.rst","reference/functions/in_values.rst","reference/functions/math_abs.rst","reference/functions/now.rst","reference/functions/number_classify.rst","reference/functions/prefix_rk_search.rst","reference/functions/query.rst","reference/functions/rand.rst","reference/functions/snippet_html.rst","reference/functions/string_length.rst","reference/functions/string_substring.rst","reference/functions/sub_filter.rst","reference/functions/time_classify_day.rst","reference/functions/time_classify_day_of_week.rst","reference/functions/time_classify_hour.rst","reference/functions/time_classify_minute.rst","reference/functions/time_classify_month.rst","reference/functions/time_classify_second.rst","reference/functions/time_classify_week.rst","reference/functions/time_classify_year.rst","reference/functions/vector_find.rst","reference/functions/vector_new.rst","reference/functions/vector_size.rst","reference/functions/vector_slice.rst","reference/grn_expr.rst","reference/grn_expr/query_syntax.rst","reference/grn_expr/script_syntax.rst","reference/indexing.rst","reference/log.rst","reference/normalizers.rst","reference/normalizers/normalizer_auto.rst","reference/normalizers/normalizer_nfkc100.rst","reference/normalizers/normalizer_nfkc51.rst","reference/operations.rst","reference/operations/geolocation_search.rst","reference/operations/prefix_rk_search.rst","reference/output.rst","reference/query_expanders.rst","reference/query_expanders/tsv.rst","reference/regular_expression.rst","reference/scorer.rst","reference/scorers/scorer_tf_at_most.rst","reference/scorers/scorer_tf_idf.rst","reference/sharding.rst","reference/suggest.rst","reference/suggest/completion.rst","reference/suggest/correction.rst","reference/suggest/introduction.rst","reference/suggest/suggestion.rst","reference/tables.rst","reference/token_filter/summary.rst","reference/token_filters.rst","reference/token_filters/token_filter_nfkc100.rst","reference/token_filters/token_filter_stem.rst","reference/token_filters/token_filter_stop_word.rst","reference/tokenizer/summary.rst","reference/tokenizers.rst","reference/tokenizers/token_bigram.rst","reference/tokenizers/token_bigram_ignore_blank.rst","reference/tokenizers/token_bigram_ignore_blank_split_symbol.rst","reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.rst","reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.rst","reference/tokenizers/token_bigram_split_symbol.rst","reference/tokenizers/token_bigram_split_symbol_alpha.rst","reference/tokenizers/token_bigram_split_symbol_alpha_digit.rst","reference/tokenizers/token_delimit.rst","reference/tokenizers/token_delimit_null.rst","reference/tokenizers/token_mecab.rst","reference/tokenizers/token_regexp.rst","reference/tokenizers/token_trigram.rst","reference/tokenizers/token_unigram.rst","reference/tuning.rst","reference/types.rst","reference/window_function.rst","reference/window_functions/record_number.rst","reference/window_functions/window_count.rst","reference/window_functions/window_record_number.rst","reference/window_functions/window_sum.rst","server.rst","server/gqtp.rst","server/http.rst","server/http/comparison.rst","server/http/groonga.rst","server/http/groonga-httpd.rst","server/memcached.rst","server/package.rst","spec.rst","spec/gqtp.rst","spec/search.rst","troubleshooting.rst","troubleshooting/different_results_with_the_same_keyword.rst","troubleshooting/how_to_analyze_error_message.rst","troubleshooting/mmap_cannot_allocate_memory.rst","tutorial.rst","tutorial/data.rst","tutorial/drilldown.rst","tutorial/index.rst","tutorial/introduction.rst","tutorial/lexicon.rst","tutorial/match_columns.rst","tutorial/micro_blog.rst","tutorial/network.rst","tutorial/patricia_trie.rst","tutorial/query_expansion.rst","tutorial/search.rst"],objects:{"":{GRN_COLUMN_NAME_ID:[51,0,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[51,0,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[51,0,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[51,0,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[51,0,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[51,0,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[51,0,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[51,0,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[52,0,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[52,0,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[52,0,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[65,0,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[65,0,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[65,0,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[65,0,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[65,0,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[65,0,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[65,0,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[65,0,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[65,0,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[65,0,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[74,0,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[74,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[74,0,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[74,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[74,0,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[74,0,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[74,0,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[74,1,1,"c.GRN_PLUGIN_REGISTER"],grn_builtin_type:[71,2,1,"c.grn_builtin_type"],grn_cache:[50,2,1,"c.grn_cache"],grn_cache_close:[50,1,1,"c.grn_cache_close"],grn_cache_current_get:[50,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[50,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[50,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[50,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[50,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[51,1,1,"c.grn_column_create"],grn_column_index:[51,1,1,"c.grn_column_index"],grn_column_index_update:[51,1,1,"c.grn_column_index_update"],grn_column_name:[51,1,1,"c.grn_column_name"],grn_column_rename:[51,1,1,"c.grn_column_rename"],grn_column_table:[51,1,1,"c.grn_column_table"],grn_column_truncate:[51,1,1,"c.grn_column_truncate"],grn_command_version:[52,2,1,"c.grn_command_version"],grn_content_type:[53,2,1,"c.grn_content_type"],grn_ctx:[54,2,1,"c.grn_ctx"],grn_ctx_at:[54,1,1,"c.grn_ctx_at"],grn_ctx_close:[54,1,1,"c.grn_ctx_close"],grn_ctx_db:[54,1,1,"c.grn_ctx_db"],grn_ctx_fin:[54,1,1,"c.grn_ctx_fin"],grn_ctx_get:[54,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[54,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[54,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[64,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[54,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[54,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[54,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[54,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[54,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[54,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[64,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[54,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[54,1,1,"c.grn_ctx_use"],grn_db:[55,2,1,"c.grn_db"],grn_db_create:[55,1,1,"c.grn_db_create"],grn_db_create_optarg:[55,2,1,"c.grn_db_create_optarg"],grn_db_open:[55,1,1,"c.grn_db_open"],grn_db_recover:[55,1,1,"c.grn_db_recover"],grn_db_touch:[55,1,1,"c.grn_db_touch"],grn_db_unmap:[55,1,1,"c.grn_db_unmap"],grn_encoding:[56,2,1,"c.grn_encoding"],grn_encoding_parse:[56,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[56,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[57,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[57,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[57,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[57,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[57,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[57,1,1,"c.grn_expr_append_op"],grn_expr_close:[57,1,1,"c.grn_expr_close"],grn_expr_compile:[57,1,1,"c.grn_expr_compile"],grn_expr_create:[57,1,1,"c.grn_expr_create"],grn_expr_exec:[57,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[57,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[57,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[57,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[57,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[73,1,1,"c.grn_fin"],grn_geo_cursor_next:[58,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[58,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[58,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[58,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[58,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[52,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[56,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[64,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[49,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[59,2,1,"c.grn_hook_entry"],grn_ii:[60,2,1,"c.grn_ii"],grn_ii_buffer:[60,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[60,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[60,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[60,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[60,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[61,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[61,1,1,"c.grn_index_cursor_open"],grn_info_type:[62,2,1,"c.grn_info_type"],grn_init:[73,1,1,"c.grn_init"],grn_inspect:[63,1,1,"c.grn_inspect"],grn_inspect_encoding:[63,1,1,"c.grn_inspect_encoding"],grn_inspect_indented:[63,1,1,"c.grn_inspect_indented"],grn_inspect_limited:[63,1,1,"c.grn_inspect_limited"],grn_inspect_name:[63,1,1,"c.grn_inspect_name"],grn_inspect_query_log_flags:[63,1,1,"c.grn_inspect_query_log_flags"],grn_inspect_type:[63,1,1,"c.grn_inspect_type"],grn_obj:[65,2,1,"c.grn_obj"],grn_obj_add_hook:[59,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[65,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[65,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[65,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[65,1,1,"c.grn_obj_close"],grn_obj_column:[65,1,1,"c.grn_obj_column"],grn_obj_db:[55,1,1,"c.grn_obj_db"],grn_obj_defrag:[65,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[65,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[59,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[65,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[62,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[59,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[62,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[59,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[65,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[65,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[65,1,1,"c.grn_obj_get_values"],grn_obj_id:[65,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[65,1,1,"c.grn_obj_is_builtin"],grn_obj_is_index_column:[65,1,1,"c.grn_obj_is_index_column"],grn_obj_is_locked:[65,1,1,"c.grn_obj_is_locked"],grn_obj_is_vector_column:[65,1,1,"c.grn_obj_is_vector_column"],grn_obj_lock:[65,1,1,"c.grn_obj_lock"],grn_obj_name:[65,1,1,"c.grn_obj_name"],grn_obj_path:[65,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[65,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[65,1,1,"c.grn_obj_reinit"],grn_obj_remove:[65,1,1,"c.grn_obj_remove"],grn_obj_rename:[65,1,1,"c.grn_obj_rename"],grn_obj_search:[67,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[62,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[66,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[62,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[65,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[65,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[65,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[72,1,1,"c.grn_obj_user_data"],grn_p:[63,1,1,"c.grn_p"],grn_p_geo_point:[63,1,1,"c.grn_p_geo_point"],grn_p_ii_values:[63,1,1,"c.grn_p_ii_values"],grn_plugin_charlen:[74,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[74,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[74,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[74,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[74,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[74,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[74,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[74,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[74,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[74,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[74,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[74,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[74,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[74,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[66,1,1,"c.grn_proc_create"],grn_proc_func:[66,2,1,"c.grn_proc_func"],grn_proc_get_info:[66,1,1,"c.grn_proc_get_info"],grn_proc_type:[66,2,1,"c.grn_proc_type"],grn_search_optarg:[67,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[52,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[56,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[64,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[49,1,1,"c.grn_set_lock_timeout"],grn_table_add:[68,1,1,"c.grn_table_add"],grn_table_at:[68,1,1,"c.grn_table_at"],grn_table_columns:[68,1,1,"c.grn_table_columns"],grn_table_create:[68,1,1,"c.grn_table_create"],grn_table_cursor:[69,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[69,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[69,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[69,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[69,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[69,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[69,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[69,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[69,1,1,"c.grn_table_cursor_table"],grn_table_delete:[68,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[68,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[68,1,1,"c.grn_table_difference"],grn_table_get:[68,1,1,"c.grn_table_get"],grn_table_get_key:[68,1,1,"c.grn_table_get_key"],grn_table_group:[68,1,1,"c.grn_table_group"],grn_table_group_flags:[68,2,1,"c.grn_table_group_flags"],grn_table_group_result:[68,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[68,1,1,"c.grn_table_lcp_search"],grn_table_rename:[68,1,1,"c.grn_table_rename"],grn_table_setoperation:[68,1,1,"c.grn_table_setoperation"],grn_table_size:[68,1,1,"c.grn_table_size"],grn_table_sort:[68,1,1,"c.grn_table_sort"],grn_table_sort_flags:[68,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[68,2,1,"c.grn_table_sort_key"],grn_table_truncate:[68,1,1,"c.grn_table_truncate"],grn_table_update:[68,1,1,"c.grn_table_update"],grn_table_update_by_id:[68,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[70,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[70,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[70,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[70,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[70,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[70,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[71,1,1,"c.grn_type_create"],grn_user_data:[72,2,1,"c.grn_user_data"]},"groonga-benchmark":{"--dir":[154,4,1,"cmdoption-groonga-benchmark-dir"],"--ftp":[154,4,1,"cmdoption-groonga-benchmark-ftp"],"--groonga":[154,4,1,"cmdoption-groonga-benchmark-groonga"],"--host":[154,4,1,"cmdoption-groonga-benchmark-i"],"--log-output-dir":[154,4,1,"cmdoption-groonga-benchmark-log-output-dir"],"--port":[154,4,1,"cmdoption-groonga-benchmark-p"],"--protocol":[154,4,1,"cmdoption-groonga-benchmark-protocol"],"-i":[154,4,1,"cmdoption-groonga-benchmark-i"],"-p":[154,4,1,"cmdoption-groonga-benchmark-p"],db:[154,4,1,"cmdoption-groonga-benchmark-arg-db"],script:[154,4,1,"cmdoption-groonga-benchmark-arg-script"]},"groonga-suggest-httpd":{"--daemon":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"--disable-max-fd-check":[158,4,1,"cmdoption-groonga-suggest-httpd-disable-max-fd-check"],"--log-base-path":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"--n-lines-per-log-file":[158,4,1,"cmdoption-groonga-suggest-httpd-n-lines-per-log-file"],"--n-threads":[158,4,1,"cmdoption-groonga-suggest-httpd-t"],"--port":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"--receive-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"--send-endpoint":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-d":[158,4,1,"cmdoption-groonga-suggest-httpd-d"],"-l":[158,4,1,"cmdoption-groonga-suggest-httpd-l"],"-p":[158,4,1,"cmdoption-groonga-suggest-httpd-p"],"-r":[158,4,1,"cmdoption-groonga-suggest-httpd-r"],"-s":[158,4,1,"cmdoption-groonga-suggest-httpd-s"],"-t":[158,4,1,"cmdoption-groonga-suggest-httpd-t"]},"groonga-suggest-learner":{"--daemon":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"--log-base-path":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"--log-level":[159,4,1,"cmdoption-groonga-suggest-learner-log-level"],"--log-path":[159,4,1,"cmdoption-groonga-suggest-learner-log-path"],"--receive-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"--send-endpoint":[159,4,1,"cmdoption-groonga-suggest-learner-s"],"-d":[159,4,1,"cmdoption-groonga-suggest-learner-d"],"-l":[159,4,1,"cmdoption-groonga-suggest-learner-l"],"-r":[159,4,1,"cmdoption-groonga-suggest-learner-r"],"-s":[159,4,1,"cmdoption-groonga-suggest-learner-s"]},grn_db_create_optarg:{builtin_type_names:[55,3,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[55,3,1,"c.grn_db_create_optarg.n_builtin_type_names"]},grnslap:{"-P":[152,4,1,"cmdoption-grnslap-p"],"-m":[152,4,1,"cmdoption-grnslap-m"],dest:[152,4,1,"cmdoption-grnslap-arg-dest"]},groonga:{"--address":[153,4,1,"cmdoption-groonga-a"],"--bind-address":[153,4,1,"cmdoption-groonga-bind-address"],"--cache-base-path":[153,4,1,"cmdoption-groonga-cache-base-path"],"--cache-limit":[153,4,1,"cmdoption-groonga-cache-limit"],"--config-path":[153,4,1,"cmdoption-groonga-config-path"],"--default-match-escalation-threshold":[153,4,1,"cmdoption-groonga-default-match-escalation-threshold"],"--default-request-timeout":[153,4,1,"cmdoption-groonga-default-request-timeout"],"--document-root":[153,4,1,"cmdoption-groonga-document-root"],"--encoding":[153,4,1,"cmdoption-groonga-e"],"--help":[153,4,1,"cmdoption-groonga-h"],"--log-flags":[153,4,1,"cmdoption-groonga-log-flags"],"--log-level":[153,4,1,"cmdoption-groonga-l"],"--log-path":[153,4,1,"cmdoption-groonga-log-path"],"--log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-log-rotate-threshold-size"],"--max-threads":[153,4,1,"cmdoption-groonga-t"],"--pid-path":[153,4,1,"cmdoption-groonga-pid-path"],"--port":[153,4,1,"cmdoption-groonga-p"],"--protocol":[153,4,1,"cmdoption-groonga-protocol"],"--query-log-path":[153,4,1,"cmdoption-groonga-query-log-path"],"--query-log-rotate-threshold-size":[153,4,1,"cmdoption-groonga-query-log-rotate-threshold-size"],"--server-id":[153,4,1,"cmdoption-groonga-i"],"-a":[153,4,1,"cmdoption-groonga-a"],"-c":[153,4,1,"cmdoption-groonga-c"],"-d":[153,4,1,"cmdoption-groonga-d"],"-e":[153,4,1,"cmdoption-groonga-e"],"-h":[153,4,1,"cmdoption-groonga-h"],"-i":[153,4,1,"cmdoption-groonga-i"],"-l":[153,4,1,"cmdoption-groonga-l"],"-n":[153,4,1,"cmdoption-groonga-n"],"-p":[153,4,1,"cmdoption-groonga-p"],"-s":[153,4,1,"cmdoption-groonga-s"],"-t":[153,4,1,"cmdoption-groonga-t"],command:[153,4,1,"cmdoption-groonga-arg-command"],dest:[153,4,1,"cmdoption-groonga-arg-dest"]}},objnames:{"0":["c","macro","C macro"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","member","C member"],"4":["std","cmdoption","program option"]},objtypes:{"0":"c:macro","1":"c:function","2":"c:type","3":"c:member","4":"std:cmdoption"},terms:{"000000000b123456":34,"000x":17,"002d":[202,223],"00b7":[202,223],"00n":151,"00z":158,"01t00":158,"02d7":[202,223],"058a":[202,223],"08e2456ba35407e3d5172f71a0200fac2a770142":34,"0\u306e\u79d2\u8868\u8a18":261,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":59,"0\u30d9\u30fc\u30b9\u3067":[68,69],"0\u30ea\u30ea\u30fc\u30b9":34,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":153,"0garbag":34,"0mq":41,"0x0":[39,243,265],"0x01":258,"0x02":258,"0x04":258,"0x08":258,"0x10":258,"0x20":196,"0x5c":34,"0x7fa0d5d7ed00":86,"0xc7":258,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":243,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":152,"10041\u756a":153,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":153,"10043\u756a":153,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":261,"100abc":162,"100cent":[228,233,234,235],"100mb":34,"100x":[34,44],"100x100":166,"100x150":167,"1024r":12,"1073741824\u306e\u6574\u6570\u3067":78,"10m":155,"10t13":[216,217,219],"10t22":217,"10z":197,"128452975x503157902":[265,267,272,275],"128487316x502920929":[267,275],"128515259x503187188":[267,275],"1285858800\u306f2010":261,"128mb":40,"12gb":263,"135960000x":165,"13\u7528rpm\u306e\u63d0\u4f9b":36,"143660000x419009000":165,"145508000x":165,"146249000x":271,"146566000x":[165,271],"146607190x":271,"146710080x":271,"146741340x":271,"146867000x":271,"150x100":167,"152489000x":271,"15min":44,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":89,"16bit":243,"16gb":263,"16gib":242,"175904000x8464000":165,"185428000x":165,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":82,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":69,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":38,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":82,"1\u3068command":82,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":69,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":59,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":154,"1\u30ea\u30ea\u30fc\u30b9":34,"1\u5358\u8a9e\u6271\u3044":259,"1\u884c\u76ee":154,"1byte":258,"1gb":43,"1st":161,"1tib":[33,140,220],"1usec":44,"1x139":265,"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":69,"200byte":179,"207b":[202,223],"208b":[202,223],"20km":271,"21th":41,"22c5":[202,223],"23t02":197,"24byte":258,"256gib":33,"256kb":263,"256kib":242,"257662232kbyte":154,"29289245605469e":84,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":12,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":82,"2\u30ea\u30ea\u30fc\u30b9":34,"2\u884c\u76ee":154,"2byte":[87,258],"2e31":[202,223],"2nd":[34,135],"2rd":135,"2st":135,"30ac":201,"30fb":[202,223],"30fc":[202,223],"314e":197,"32bit":[8,41,43,44,243],"32byte":43,"32gib":242,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":259,"3\u30ea\u30ea\u30fc\u30b9":34,"3\u884c\u76ee":154,"3rd":[34,41,44,135],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"4091b":[98,149],"4096byte":[43,220],"4097byte":220,"436218z":197,"44001770019531e":207,"45ea3034":199,"4\u30ea\u30ea\u30fc\u30b9":34,"4\u884c\u76ee":154,"4byte":258,"4e86e700":263,"4gib":[33,44,140,220,258],"4kib":[33,43,47,96,97,98,149,220],"4mib":121,"4th":135,"5367431640625e":207,"56058502197266e":207,"56880000x":165,"57f2ff87d45d7f0f525e2216":44,"58043f77614116a2568d529c":44,"59\u74b0\u5883\u306b\u304a\u3044\u3066":38,"5\u30ea\u30ea\u30fc\u30b9":34,"5th":135,"64bit":[8,43,121,243],"64kib":43,"65535byte":43,"6813819x139":[265,275],"6909211x139":275,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":36,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":12,"6\u30ea\u30ea\u30fc\u30b9":34,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":14,"6elz":42,"6gib":242,"7\u30ea\u30ea\u30fc\u30b9":34,"80ghz":154,"82pre":45,"8\u306b\u5bfe\u5fdc":36,"8\u30ea\u30ea\u30fc\u30b9":[12,34],"8bit":243,"8byte":[33,258],"93933868408203e":207,"975mbyte":154,"\u1427":[202,223],"\u3041\u3042\u3043\u3044\u3045\u3046\u3047\u3048\u3049\u304a\u3083\u3084\u3085\u3086\u3087\u3088\u308e\u308f\u3095\u304b\u3096\u3051":[202,223],"\u3042\u3042\u3044\u3044\u3046\u3046\u3048\u3048\u304a\u304a\u3084\u3084\u3086\u3086\u3088\u3088\u308f\u308f\u304b\u304b\u3051\u3051":[202,223],"\u3042\u3044\u3046\u3047\u304a\u309d\u309e":[202,223],"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":12,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":12,"\u3042\u308a\u307e\u305b\u3093":[111,127,141],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":166,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[166,167],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":11,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":82,"\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":82,"\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":82,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":82,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":243,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":10,"\u3042\u30a4\uff73\uff6a\u304a\u30fd\u30fe":[202,223],"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":10,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":78,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":82,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":11,"\u3044\u307e\u3059":10,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":36,"\u304a\u3070\u305f\u3055\u3093":35,"\u304a\u3088\u3073":12,"\u304b\u304b\u304d\u304d\u304f\u304f\u3051\u3051\u3053\u3053\u3055\u3055\u3057\u3057\u3059\u3059\u305b\u305b\u305d\u305d\u305f\u305f\u3061\u3061\u3064\u3064\u3066\u3066\u3068\u3068\u306f\u306f\u306f\u3072\u3072\u3072\u3075\u3075\u3075\u3078\u3078\u3078\u307b\u307b\u307b":[202,223],"\u304b\u304c\u304d\u304e\u304f\u3050\u3051\u3052\u3053\u3054\u3055\u3056\u3057\u3058\u3059\u305a\u305b\u305c\u305d\u305e\u305f\u3060\u3061\u3062\u3064\u3065\u3066\u3067\u3068\u3069\u306f\u3070\u3071\u3072\u3073\u3074\u3075\u3076\u3077\u3078\u3079\u307a\u307b\u307c\u307d":[202,223],"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":61,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":153,"\u304bwgs84geopoint":[166,167],"\u304c\u3042\u308a\u307e\u3059":12,"\u304c\u306a\u3044\u5834\u5408":12,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":36,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":259,"\u304c\u5fc5\u8981\u3067\u3059":12,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":178,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":166,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":68,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":68,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":68,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[51,68],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u304c\u8fd4\u3055\u308c\u307e\u3059":65,"\u3050\u308b\u3093\u304c":[196,197],"\u3050\u308b\u3093\u304c\u592a\u90ce":267,"\u3050\u308b\u3093\u304c\u6b21\u90ce":267,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u3053\u3053\u3067\u306f":261,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u306f\u6700\u65b0\u306etag\u306b\u57fa\u3065\u3044\u3066\u30ea\u30ea\u30fc\u30b9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8abf\u3079":12,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":261,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u3082":261,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":10,"\u3053\u306e\u3068\u304d":259,"\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":261,"\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":261,"\u3053\u306e\u3088\u3046\u306bn":261,"\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":261,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":154,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":154,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":154,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":259,"\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":261,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":12,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":153,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":154,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":12,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":11,"\u3053\u306e\u4f5c\u696d\u306f":12,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":12,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":12,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":154,"\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":261,"\u3053\u306e\u5834\u5408":69,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":261,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":261,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":261,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":261,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":261,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":261,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":261,"\u3053\u306e\u624b\u9806\u306f\u30b9\u30ad\u30c3\u30d7\u3057\u3066\u69cb\u3044\u307e\u305b\u3093":12,"\u3053\u306e\u624b\u9806\u306f\u7701\u7565\u53ef\u80fd\u3067\u3059":12,"\u3053\u306e\u64cd\u4f5c\u306f":68,"\u3053\u306e\u65b9\u6cd5\u3067ppa\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u308b\u4e8b\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"\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":261,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":259,"\u3053\u306e\u7d50\u679c\u306f":154,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":259,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":166,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":12,"\u3053\u308c\u3067":12,"\u3053\u308c\u306b\u3088\u308a":12,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":12,"\u3053\u308c\u306b\u5bfe\u3057\u3066":259,"\u3053\u308c\u306f":261,"\u3053\u308c\u306f\u30da\u30f3\u3067\u3059\u304b":236,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":78,"\u3053\u308c\u3089\u3082\u66f4\u65b0\u3057\u307e\u3059":12,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":261,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":11,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":154,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":82,"\u3057\u304b\u3057":[243,259,261],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":12,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093":10,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":259,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":12,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":154,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":82,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":154,"\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":36,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":14,"\u3059\u308b\u3068":14,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":36,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":10,"\u3059\u308b\u3068groonga":12,"\u305d\u3053\u3067":261,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":12,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":141,"\u305d\u306e\u305f\u3081":[12,154,259,261],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a":12,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":12,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":243,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":82,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":12,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":12,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":154,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":59,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":261,"\u305d\u306e\u5834\u5408":12,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":12,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":82,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":153,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":82,"\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":82,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":69,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":11,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":10,"\u305d\u306e\u969b":12,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":68,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":68,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":65,"\u305d\u308c\u305e\u308c":14,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":153,"\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":259,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":259,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":11,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":259,"\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":261,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":65,"\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":261,"\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":259,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":65,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":65,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":11,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":152,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":152,"\u305d\u308c\u3089\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u65e7ji":69,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":71,"\u305f\u3060\u3057":[69,78,153,259],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":35,"\u305f\u3068\u3048\u3070":259,"\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":82,"\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":261,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":261,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":12,"\u3060\u3068\u539f\u56e0\u306f":10,"\u3064\u307e\u308atest":12,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":261,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":11,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":11,"\u3067\u3042\u308c\u3070":154,"\u3067\u3059\u306d":10,"\u3067\u306f\u306a\u304ffree":36,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":12,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":261,"\u3067\u306f\u6607\u9806":68,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":68,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":54,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":261,"\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":36,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":153,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":38,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":261,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":261,"\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":36,"\u3067\u4f5c\u6210\u3057\u305f":54,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":153,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":54,"\u3067\u533a\u5207\u308a\u307e\u3059":153,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":78,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":154,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":36,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":69,"\u3067\u78ba\u4fdd\u3057\u305f":54,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":141,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":54,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":54,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":65,"\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":36,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":38,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":36,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":259,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":259,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":261,"\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":154,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":154,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":154,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":154,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306e\u7de8\u96c6\u4e2d\u306f":12,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u9069\u5b9c\u4fee\u6b63\u3057\u307e\u3059":12,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":10,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":259,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":259,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":243,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":259,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":259,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":259,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":259,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":154,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":12,"\u3068\u306a\u308a":261,"\u3068\u308a\u3068\u3093":[196,197],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":154,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":154,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":261,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":261,"\u3068\u5171\u306b":51,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":65,"\u3068\u540c\u3058\u610f\u5473":153,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":35,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":154,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":166,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":12,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":261,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":10,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":10,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":54,"\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":259,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":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":65,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":65,"\u306b\u3042\u308b":65,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":69,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":69,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":12,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u306b\u306a\u308a\u307e\u3059":54,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":259,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":89,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":141,"\u306b\u307e\u3068\u3081\u307e\u3059":12,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":259,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":54,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":243,"\u306b\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u4f5c\u6210\u3057":12,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":259,"\u306b\u52a0\u3048\u305f\u5909\u66f4\u304c":12,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":38,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":259,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":261,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":261,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":153,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":154,"\u306b\u6700\u65b0\u30ea\u30ea\u30fc\u30b9\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u3068\u65e5\u4ed8\u3092\u8868\u3059\u60c5\u5831\u306e\u6307\u5b9a\u304c\u3042\u308b\u306e\u3067":12,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":154,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":153,"\u306b\u8a2d\u5b9a\u3059\u308b":12,"\u306b\u8ffd\u52a0\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044":12,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":154,"\u306e2\u5358\u8a9e\u6271\u3044":259,"\u306e3\u30d5\u30e9\u30b0\u306f":69,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[67,68,71],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[68,166,167],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":153,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":36,"\u306e\u307b\u304b\u306b":243,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":69,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":153,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":153,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u306e\u30ab\u30e9\u30e0":[90,101],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[36,38],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":101,"\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3057\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":90,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":36,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":36,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":153,"\u306e\u52c9\u5f37":240,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":10,"\u306e\u5834\u5408\u306f":10,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":71,"\u306e\u5b9f\u884c\u6642\u306b\u5931\u308f\u308c\u307e\u3059":12,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":36,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":154,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":153,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":66,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":178,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":178,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":141,"\u306ebase_version\u306e\u66f4\u65b0":12,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":69,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":261,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":36,"\u306exml\u51fa\u529b\u5bfe\u5fdc":36,"\u306f\u306a\u304f":35,"\u306f\u7121\u52b9\u3067\u3042\u308a":69,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[68,69],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":65,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":261,"\u3072\u308d\u3042\u304d":273,"\u3072\u308d\u3086\u304d":273,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":154,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":12,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":51,"\u307e\u305f\u306f":154,"\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":[89,90,94,100,101,110,111,127,141],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":153,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":153,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":154,"\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":54,"\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":154,"\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":154,"\u307e\u305f\u540c\u6642\u306b":154,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":68,"\u307e\u305fgroonga":154,"\u307e\u3060\u81ea\u5206\u7528\u306b\u6697\u53f7\u5316\u3055\u308c\u305f\u9375\u304c\u7121\u3044\u5834\u5408\u306b\u306f":12,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":82,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":10,"\u307e\u308d\u3086\u304d":273,"\u3080\u308b\u3093\u304c":[196,197],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":163,"\u3082\u3057\u304f\u306f":[68,69,243],"\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":154,"\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":154,"\u3082\u3057groonga":154,"\u3082\u3057test":154,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":259,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":82,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":10,"\u3084red":12,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"\u3086\u304d\u3072\u308d":273,"\u3088\u3063\u3066":243,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":166,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":154,"\u308a\u3093\u3054":223,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u308d\u3086\u304d":273,"\u308f\u305f\u3057":223,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":14,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":243,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":36,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":61,"\u3092\u4f7f\u7528\u3057\u3066\u6700\u65b0\u306esphinx\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":12,"\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u3092\u516c\u958b":36,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":12,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[154,243,261],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":51,"\u3092\u6307\u5b9a\u3057":[69,90,101],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":69,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":69,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":11,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":69,"\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":69,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":69,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":69,"\u3092\u6307\u5b9a\u3057\u3066\u4e0d\u5b89\u5b9a\u7248\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3088\u3046\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":69,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":68,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[12,51,55,62,65,68,71,153,154],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[51,69],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":68,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":68,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":51,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"\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":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":68,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":69,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":69,"\u3092\u683c\u7d0d\u3057\u307e\u3059":51,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":14,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":65,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":166,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u3092\u8a08\u7b97\u3059\u308b":35,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":154,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u3092\u8fd4\u3057\u307e\u3059":[59,65,68,69],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":35,"\u3092\u8ffd\u52a0":[36,38],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":66,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":71,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":12,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":36,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":152,"\u30a1\u30a2\u30a3\u30a4\u30a5\u30a6\u30a7\u30a8\u30a9\u30aa\u30e3\u30e4\u30e5\u30e6\u30e7\u30e8\u30ee\u30ef\u30f5\u30ab\u30f6\u30b1":[202,223],"\u30a2\u30a1\u30a4\u30a3\u30a6\u30a5\u30a8\u30a7\u30aa\u30a9":[202,223],"\u30a2\u30a2\u30a4\u30a4\u30a6\u30a6\u30a8\u30a8\u30aa\u30aa\u30e4\u30e4\u30e6\u30e6\u30e8\u30e8\u30ef\u30ef\u30ab\u30ab\u30b1\u30b1":[202,223],"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":65,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6e08\u307f\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664\u3067\u304d\u308b":12,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[259,261],"\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":261,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":36,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":36,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":12,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":154,"\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":154,"\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":36,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":94,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":89,"\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":38,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":89,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":90,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":12,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":153,"\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":153,"\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":64,"\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":64,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[90,94,100,110,111],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[90,94,100,110,111],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":65,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":36,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":90,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":90,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":101,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":89,"\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":54,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":54,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":154,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":154,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":154,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":38,"\u30ab\u30ab\u30ad\u30ad\u30af\u30af\u30b1\u30b1\u30b3\u30b3\u30b5\u30b5\u30b7\u30b7\u30b9\u30b9\u30bb\u30bb\u30bd\u30bd\u30bf\u30bf\u30c1\u30c1\u30c4\u30c4\u30c6\u30c6\u30c8\u30c8\u30cf\u30cf\u30cf\u30d2\u30d2\u30d2\u30d5\u30d5\u30d5\u30d8\u30d8\u30d8\u30db\u30db\u30db":[202,223],"\u30ab\u30ac\u30ad\u30ae\u30af\u30b0\u30b1\u30b2\u30b3\u30b4\u30b5\u30b6\u30b7\u30b8\u30b9\u30ba\u30bb\u30bc\u30bd\u30be\u30bf\u30c0\u30c1\u30c2\u30c4\u30c5\u30c6\u30c7\u30c8\u30c9\u30cf\u30d0\u30d1\u30d2\u30d3\u30d4\u30d5\u30d6\u30d7\u30d8\u30d9\u30da\u30db\u30dc\u30dd":[202,223],"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":3,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":14,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[51,65],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":65,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":51,"\u30ab\u30ec":[202,238],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":69,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":69,"\u30ab\u30ec\u30fc":259,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":259,"\u30ab\u30f3\u30b8":176,"\u30ab\u30f3\u30de":103,"\u30ac":201,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":35,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u30ad\u30fc":153,"\u30ad\u30fc\u304c":153,"\u30ad\u30fc\u30ef\u30fc\u30c9":37,"\u30af\u30a8\u30ea\u306e":261,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":261,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[3,4,22],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[3,4,22],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":11,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":35,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":153,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059":127,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":36,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":153,"\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":153,"\u30b0\u30eb\u30fc\u30d7\u5316":78,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":78,"\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":78,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":78,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":36,"\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":259,"\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":36,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":35,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":243,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":243,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":36,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":36,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":153,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":36,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":82,"\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":82,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":82,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":82,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":154,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":154,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":12,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":154,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":154,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":153,"\u30b3\u30de\u30f3\u30c9\u540d":153,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":153,"\u30b3\u30df\u30c3\u30c8":12,"\u30b3\u30e1\u30f3\u30c8\u884c":154,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":36,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":89,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":36,"\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":82,"\u30b5\u30f3":238,"\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":37,"\u30b5\u30fc\u30d0":153,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":154,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":154,"\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":154,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":153,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\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":154,"\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":154,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":153,"\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":154,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":153,"\u30b7\u30a7\u30eb\u4e0a":154,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":153,"\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":38,"\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":154,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":154,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":154,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":154,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":154,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":153,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":153,"\u30b9\u30ec\u30c3\u30c9\u6570":154,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":154,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":154,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":154,"\u30b9\u30fc\u30d7":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":259,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":259,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":89,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":127,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":154,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":154,"\u30bb\u30fc\u30d6\u30eb":34,"\u30bb\u30fc\u30f4\u30a7\u30eb":34,"\u30bb\u30fc\u30f4\u30eb":34,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":14,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":135,"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":12,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":12,"\u30c0\u30e1\u30fc\u30b8":261,"\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":89,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":89,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":89,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":89,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":89,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":38,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":36,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":14,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":14,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":36,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":14,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":3,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306f":14,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[3,4,6,7,8,22],"\u30c6\u30b9\u30c8\u74b0\u5883\u3067\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e":12,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":3,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":261,"\u30c6\u30fc\u30d6\u30eb":90,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":153,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":153,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":153,"\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":153,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":94,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":153,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":141,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":78,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":141,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":69,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":69,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":141,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":153,"\u30c6\u30fc\u30d6\u30eb\u540d":[90,101,141],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":141,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":243,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":141,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":141,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":100,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":89,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":35,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":12,"\u30c7\u30b9":238,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":89,"\u30c7\u30d0\u30c3\u30b0\u7528\u3084\u958b\u767a\u7528\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c6\u30b9\u30c8\u7528\u306b\u516c\u958b\u3059\u308b\u6642\u306f":12,"\u30c7\u30d5\u30a9\u30eb\u30c8":11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[153,154],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":153,"\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":82,"\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":111,"\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":64,"\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":64,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":35,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":56,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":56,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":153,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":243,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[152,153],"\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":35,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":35,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":90,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":101,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":154,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":153,"\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":103,"\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":153,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":11,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":35,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":35,"\u30c7\u30fc\u30e2\u30f3":153,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u30c8\u30e2\u3061\u3083\u3093":267,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[22,260],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u57cb\u3081\u8fbc\u307e\u308c\u3066\u3044\u308b\u5b9f\u884c\u7d50\u679c\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":36,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":12,"\u30ca\u30de\u30a8":[202,238],"\u30cb\u30c3\u30dd\u30f3":[176,206,216],"\u30cb\u30db\u30f3":[176,206,216],"\u30cb\u30db\u30f3\u30b4":216,"\u30cb\u30db\u30f3\u30b8\u30f3":216,"\u30ce":238,"\u30cf":238,"\u30cf\u30ba":238,"\u30d0\u30a4\u30aa\u30ea\u30f3":34,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":261,"\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":153,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":89,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":89,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":89,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":89,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":89,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":89,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":89,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":89,"\u30d0\u30d3\u30d6\u30d9\u30dc":[34,202,223],"\u30d0\u30d3\u30d6\u30d9\u30dc\u30d6":[202,223],"\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":34,"\u30d0\u30fc\u30b8\u30e7\u30f31":34,"\u30d0\u30fc\u30b8\u30e7\u30f3\u4e00\u89a7\u306e\u4e0a\u306b\u3042\u308b":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":36,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":36,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":38,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":12,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":152,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":11,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":12,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":12,"\u30d5\u30a1\u30a4\u30eb":12,"\u30d5\u30a1\u30a4\u30eb\u3092\u7de8\u96c6\u3057\u305f\u3089":12,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":38,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":89,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":35,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":35,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":101,"\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":101,"\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":65,"\u30d6":[34,202,223],"\u30d6\u30d6\u30d6\u30d6\u30d6\u30d6":[202,223],"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea\u306a\u3069\u3092\u3082\u3068\u306b":12,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":36,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":37,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":14,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":82,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":82,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":153,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":153,"\u30d9\u30af\u30bf\u306e\u5024\u3092":36,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":36,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":35,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":243,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":12,"\u30db\u30b9\u30c8\u30de\u30b7\u30f3\u306e\u6027\u80fd\u306b\u8907\u6570\u53f0\u306evm\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3060\u3051\u306e\u4f59\u88d5\u304c\u306a\u3044\u5834\u5408\u306f":12,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":154,"\u30db\u30b9\u30c8\u540d\u3068":154,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[152,153],"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":65,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":94,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":243,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":36,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[36,38],"\u30e1\u30fc\u30c8\u30eb":166,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u30e4\u30de\u30c0":[202,238],"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[3,4,22,44],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":10,"\u30e6\u30fc\u30b6\u540d":154,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306e":12,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6295\u7a3f\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[3,4,22,44],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u65e5":12,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30f3\u30af\u306e\u5148\u3067":12,"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":12,"\u30ea\u30f3\u30af\u3092\u8fbf\u308b\u3068":12,"\u30ea\u30f3\u30b4\u3067\u3059":236,"\u30ea\u30f3\u30b4\u3067\u3059\u304b":236,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":78,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":78,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":78,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":78,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":65,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":36,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":69,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":35,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":38,"\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":37,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":110,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":111,"\u30ed\u30b0\u3092":12,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":12,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":36,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":111,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":154,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":154,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":111,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":111,"\u30ed\u30b0\u51fa\u529b":110,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":153,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":153,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":153,"\u30ed\u30fc\u30de\u30b8":[176,206],"\u30ed\u30fc\u30de\u5b57":176,"\u30ed\u30fc\u30de\u5b57\u5165\u529b":206,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":101,"\u30f4\u30a1\u30a4\u30aa\u30ea\u30f3":34,"\u30f4\u30a1\u30f4\u30a3\u30f4\u30a5\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9":[34,202,223],"\u30f4\u30a1\u30f4\u30a3\u30f4\u30f4\u30a7\u30f4\u30a9\u30f4":[202,223],"\u30fc":[202,223],"\u30fc\u30fc\u30fc\u30fc\u30fc\u30fc":[202,223],"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":259,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":51,"\u4e00\u65b9":261,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":65,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":65,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":65,"\u4e00\u822c":238,"\u4e00\u822c\u7684\u306b\u306f":65,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":154,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":68,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":12,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":261,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":154,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":12,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":36,"\u4e0b\u8a18":69,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":89,"\u4e0d\u5b89\u5b9a\u7248\u30ea\u30dd\u30b8\u30c8\u30ea\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u524a\u9664\u7528\u306e\u30da\u30fc\u30b8":12,"\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":36,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\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":36,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":35,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":36,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u4e0e\u3048":261,"\u4e16\u754c\u6e2c\u5730\u7cfb":243,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[166,167],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":11,"\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":89,"\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":36,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":243,"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":78,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":78,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":141,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":78,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":178,"\u4e8c":206,"\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":82,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u4eac\u90fd":[238,259,261],"\u4eba\u540d":[202,238],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":111,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":82,"\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066":12,"\u4ed6\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4f9d\u983c\u3057\u3066\u7f72\u540d\u7528\u306e\u9375\u3092\u6697\u53f7\u5316\u3057\u3066\u3082\u3089\u3063\u3066\u4e0b\u3055\u3044":12,"\u4ed8\u8d85\u7fa4":34,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":94,"\u4ee3\u540d\u8a5e":[34,238],"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":12,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":154,"\u4ee5\u4e0b":154,"\u4ee5\u4e0b\u3067":261,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":11,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":11,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":259,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304a\u3044\u3066\u4e0b\u3055\u3044":12,"\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":259,"\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":261,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":261,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":153,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[12,14],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":65,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":12,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":12,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":153,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":153,"\u4ee5\u964d\u3092\u7121\u8996":36,"\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":154,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":153,"\u4efb\u610f\u306edb\u540d":154,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":38,"\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":38,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":154,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":12,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":55,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":71,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":153,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u4f5c\u696d\u30de\u30b7\u30f3\u4e0a\u306bgroonga\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u4f9d\u5b58\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2\u4e00\u5f0f\u304c\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":82,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":54,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":89,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":89,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":82,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":82,"\u4f8b":[12,22,35,65,260],"\u4f8b\u3048\u3070":[65,153,154,259,261],"\u4fc2\u52a9\u8a5e":238,"\u4fee\u6b63\u304c\u5fc5\u8981\u306a\u7b87\u6240\u3092\u8abf\u3079\u3066":12,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":82,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":261,"\u500b\u4eba\u306e\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u306f\u306a\u304f":12,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u5024":153,"\u50241":153,"\u50242":153,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":65,"\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":36,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":153,"\u5024\u306e\u7bc4\u56f2\u306f1":78,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":65,"\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":65,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[62,65],"\u5065\u4f5c":267,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":11,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":154,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":154,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":78,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":100,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":69,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":261,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":12,"\u5177\u4f53\u7684\u306a\u5909\u66f4\u70b9\u306e\u8a18\u8ff0\u65b9\u6cd5\u306f\u5f8c\u8ff0\u3057\u307e\u3059":12,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5185\u8a33\u306f":261,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":68,"\u5185\u90e8\u7684\u306a\u5909\u66f4":12,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":166,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":166,"\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":166,"\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":166,"\u518d\u5ea6po\u30d5\u30a1\u30a4\u30eb\u3068html\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":261,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":59,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":78,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":154,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":110,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":154,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":154,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":103,"\u5206\u5272":259,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":14,"\u521d\u671f\u5024\u306f10\u3067\u3059":152,"\u521d\u671f\u5316\u3055\u308c\u305f":54,"\u521d\u671f\u5316\u3059\u308b":54,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u521d\u671f\u5316\u6e08\u307f\u306e":55,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":261,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":10,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":78,"\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":36,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":36,"\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":94,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":94,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":12,"\u524d\u63d0\u6761\u4ef6":3,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":261,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":36,"\u52a9\u52d5\u8a5e":238,"\u52a9\u8a5e":238,"\u52c9":241,"\u52c9\u5f37":[228,240],"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":82,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":12,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":103,"\u534a\u5f84":166,"\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":166,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":69,"\u5358\u4f4d":[71,166],"\u5358\u72ec\u306e\u5024":51,"\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":166,"\u539f\u56e0":[22,260],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":12,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":154,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059":10,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":65,"\u53e5\u70b9":238,"\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":65,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":65,"\u53f3\u4e0a":35,"\u53f3\u4e0b":35,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":36,"\u5404\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u5411\u3051\u306e\u30d3\u30eb\u30c9\u304c\u9806\u756a\u306b\u884c\u308f\u308c\u307e\u3059":12,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":154,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":154,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":11,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":154,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":89,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":135,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":78,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":154,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":89,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":12,"\u540c\u3058\u3067\u3059":154,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":82,"\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":261,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[22,260],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":82,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":154,"\u540c\u6642\u306b":9,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":69,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":38,"\u540d\u524d":[202,238],"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[51,65],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":65,"\u540d\u8a5e":[34,202,238],"\u5426\u5b9a":11,"\u542b\u3081\u306a\u3044\u3082\u306e":12,"\u542b\u3081\u308b\u3082\u306e":12,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":62,"\u547c\u51fa\u5074\u3067\u6e96\u5099":62,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[51,65,68],"\u554f\u984c\u3042\u308a":38,"\u554f\u984c\u306fgroonga":154,"\u554f\u984c\u3092\u4fee\u6b63":36,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":12,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":10,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":36,"\u56fa\u6709\u540d\u8a5e":238,"\u578b":71,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":51,"\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":61,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":68,"\u57fa\u672c\u5f62":238,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":12,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":66,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":78,"\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":64,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":68,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":152,"\u59d3":238,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":68,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":103,"\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":35,"\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":36,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":68,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":68,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":68,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":261,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":259,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":259,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":261,"\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":259,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":259,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":259,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":153,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":78,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":51,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":54,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\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":152,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":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":153,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u5b9f\u884c\u3067\u304d\u307e\u3059":12,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":68,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":59,"\u5b9f\u884c\u4f8b":[14,82],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":11,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":154,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":261,"\u5bfe\u5fdc":37,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":65,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":68,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[65,68],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":68,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":68,"\u5bfe\u7b56\u65b9\u6cd51":[22,260],"\u5bfe\u7b56\u65b9\u6cd52":[22,260],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[90,101],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[90,101],"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":152,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\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":69,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[51,65,68],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":68,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[61,69],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[51,55,59,62,65,66,72],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[51,65,68,69],"\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":38,"\u5c71\u7530":[202,238],"\u5de6\u4e0a":35,"\u5de6\u4e0b":35,"\u5dee\u5206\u3092":154,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":243,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":243,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":166,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":167,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":82,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":154,"\u5f15\u6570\u3068\u3057\u3066":11,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":153,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":11,"\u5f15\u6570\u540d":153,"\u5f15\u6570\u540d1":153,"\u5f15\u6570\u540d2":153,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":153,"\u5f37":[228,240,241],"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":65,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":35,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":82,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":65,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":65,"\u5f62\u5f0f1":153,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":153,"\u5f62\u5f0f2":153,"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":153,"\u5f7c":[202,238],"\u5f7c\u306e\u540d\u524d\u306f\u5c71\u7530\u3055\u3093\u306e\u306f\u305a\u3067\u3059":[202,238],"\u5f8c\u8ff0\u3057\u307e\u3059\u304c":12,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"\u5f93\u3063\u3066":135,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":11,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":11,"\u5fa9\u53f7\u3057\u305f\u9375":12,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":12,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":36,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":11,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":35,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":141,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":141,"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[90,94,100,110,111],"\u623b\u308a\u5024\u3067\u3042\u308b":61,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":61,"\u624b\u7d9a\u304d":66,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u62c5\u5f53\u8005":12,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":154,"\u62e1\u5f35\u5b50\u306f":154,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":154,"\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":82,"\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":82,"\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":82,"\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":82,"\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":82,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":154,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":89,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":163,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":163,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":36,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":35,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":11,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":154,"\u6307\u5b9a\u3059\u308b":55,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":166,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":154,"\u63a5\u5c3e":[202,238],"\u63a5\u7d9a\u3059\u308bgroonga":154,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":154,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":154,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":152,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":154,"\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":154,"\u63d0\u6848\u3092\u884c\u3046":36,"\u6539\u884c\u6587\u5b57\u306f":153,"\u6570\u5024":259,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":35,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":166,"\u6570\u5b57":154,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":261,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":261,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":163,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":153,"\u65b0\u3057\u3044\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306b\u4efb\u547d\u3055\u308c\u305f\u3070\u304b\u308a\u3067":12,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":65,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[51,65],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":68,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":111,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":55,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":68,"\u65b0\u4efb\u306e\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u5fc5\u305a":12,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u306e\u307f\u884c\u3044\u307e\u3059":12,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":12,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":166,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":154,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":111,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":55,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":68,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":68,"\u65e5":[229,230,231,232,241],"\u65e5\u3005":10,"\u65e5\u672c":[176,206,216,228,229,230,231,232],"\u65e5\u672c\u4eba":216,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[166,167],"\u65e5\u672c\u8a9e":[216,240],"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":[228,240,241],"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c6\u30b9\u30c8\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u30c6\u30b9\u30c8\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":12,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":243,"\u660e\u793a\u7684\u306b\u305d\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0\u3059\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059":12,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":36,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":36,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":82,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806":3,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":35,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":35,"\u6700\u5f8c\u306b":261,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":12,"\u6700\u5f8c\u306e":154,"\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":55,"\u672a\u6765\u306e\u65e5\u4ed8":12,"\u672c":[229,230,231,232,241],"\u672c\u8a9e":[228,229,230,231,232],"\u672c\u8a9e\u306e":240,"\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":261,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":11,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":11,"\u6771\u4eac":[238,259,261],"\u6771\u4eac\u90fd":[238,259,261],"\u6771\u4eac\u90fd\u6c11":[259,261],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":261,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":68,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u68ee\u7530":267,"\u691c\u7d22":[22,36,40,135,149,257,261],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":11,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":54,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":22,"\u691c\u7d22\u306e\u6319\u52d5":22,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":259,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":261,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":64,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":64,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":259,"\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":259,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":100,"\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":261,"\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":261,"\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":261,"\u691c\u7d22\u4f8b1":3,"\u691c\u7d22\u4f8b2":3,"\u691c\u7d22\u4f8b3":3,"\u691c\u7d22\u4f8b4":3,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":135,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":59,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":78,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u5bfe\u8c61\u306e":261,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":11,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":259,"\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":135,"\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":243,"\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":[100,153],"\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":78,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":259,"\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":135,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":11,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":166,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":166,"\u697d\u3057":[259,261],"\u697d\u3057\u3044billiard":[259,261],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":54,"\u69cb\u9020\u4f53\u306e\u914d\u5217":66,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":61,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":3,"\u6a19\u6e96\u5165\u529b":[89,90,94,100,101,110,111,127,141],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":153,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":153,"\u6b21\u306b":11,"\u6b21\u306bgroonga\u306etest":12,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":82,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":12,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":12,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":12,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":82,"\u6bb5\u843d\u60c5\u5831":51,"\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806":3,"\u6c11":259,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,"\u6c38\u7d9a\u7684\u306a":65,"\u6ce8\u610f":68,"\u6df1\u523b":261,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":11,"\u6e2c\u5730\u7cfb":243,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":243,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":11,"\u6f22\u5b57":176,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":65,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":60,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":14,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":12,"\u7279\u6b8a":238,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":154,"\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":154,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u73fe\u5728":111,"\u73fe\u5728\u306f":[152,154],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":154,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":154,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":66,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":174,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":174,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":82,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":166,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":12,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":89,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":12,"\u7591\u4f3c\u30ab\u30e9\u30e0":78,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":178,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":167,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":12,"\u79c1\u306f\u6797\u6a8e\u3092\u98df\u3079\u307e\u3059":223,"\u79d2":65,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u7a7a\u306e\u5834\u5408":[90,101],"\u7a7a\u767d":153,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":261,"\u7a7a\u767d\u3084":153,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":89,"\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":65,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":261,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":261,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":35,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":35,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":55,"\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":55,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[89,90,94,100,101,110,111,127,141],"\u7d44\u8fbc\u95a2\u6570\u306f":[163,166,167,174,178],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":243,"\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":243,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":243,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":65,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":154,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":68,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"\u7d9a\u3044\u3066":261,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":12,"\u7de8\u96c6\u3059\u308b\u3068":12,"\u7de8\u96c6\u8ddd\u96e2":35,"\u7def\u5ea6\u306f":243,"\u7e70\u308a\u8fd4\u3057\u6570":154,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":154,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":154,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":12,"\u7ffb\u8a33\u5143\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u7d76\u5bfe\u306b\u7de8\u96c6\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044":12,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":12,"\u811a\u6ce8":[94,166,167],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":10,"\u81ea\u5206\u306e\u666e\u6bb5\u4f7f\u3044\u306e\u79d8\u5bc6\u9375\u3092\u767b\u9332\u3057\u305f\u4e0a\u3067":12,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":154,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":154,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":154,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":78,"\u826f\u3044\u306e\u304b":10,"\u826f\u3044\u4f8b":10,"\u82b1\u5b50":267,"\u82f1\u8a9e":12,"\u884c":14,"\u884c\u3059\u308b":12,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":154,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":10,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":68,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":12,"\u8a18\u53f7":[153,238,261],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":36,"\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":261,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":261,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":259,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\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":110,"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":153,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":35,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":35,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":65,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":69,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":154,"\u8a73\u7d30\u306f":[14,261],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u8a9e":[89,229,230,231,232,241],"\u8a9e\u306e":228,"\u8a9e\u306e\u52c9":240,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":12,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":166,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":166,"\u8ad6\u7406\u548c":11,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":11,"\u8ad6\u7406\u7a4d":11,"\u8b66\u544a\u3092\u9664\u53bb":36,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":82,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":36,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":166,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":51,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":51,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":51,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":36,"\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":89,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":178,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\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":100,"\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":100,"\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":100,"\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":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\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":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\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":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":100,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":153,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":153,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":12,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4,22],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":78,"\u9023\u4f53\u5316":238,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":261,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":261,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":261,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":10,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":261,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":261,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":259,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":259,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":261,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":261,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":259,"\u90fd":[238,259,261],"\u90fd\u6c11":[259,261],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":55,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":55,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":89,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":89,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":12,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":101,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":90,"\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":36,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[90,101],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":10,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":38,"\u95a2\u4fc2\u5f0f":3,"\u95a2\u4fc2\u5f0f\u306f":11,"\u95a2\u6570":14,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":66,"\u95a2\u6570\u304c\u5f15\u6570\u3092":35,"\u95a2\u6570\u306e\u8ffd\u52a0":35,"\u95a2\u6570\u306f":[11,163,166,167,178],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":174,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":36,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":11,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":259,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":261,"\u95be\u5024\u3092\u3042\u3052\u308b":[22,260],"\u95be\u5024\u3092\u8d8a\u3048\u308b":261,"\u9759\u7684\u89e3\u6790":3,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":261,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":259,"\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":259,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[259,261],"\u975e\u4e92\u63db":38,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":12,"\u975e\u81ea\u7acb":[202,238],"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":153,"\u99c4\u76ee\u306a\u4f8b":10,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":11,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":9,"\uff4d\uff59\uff53\uff51\uff4c":[168,169],"\uff70":[202,223],"\uff76\uff9e":201,"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":78,"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":35,"a\u3092\u6307\u5b9a\u3057\u3066tabl":68,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":153,"akio\u3055\u3093":36,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":36,"akio\u3055\u3093\u304c\u5831\u544a":36,"akio\u3055\u3093\u304c\u63d0\u6848":36,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":12,"apt\u306e\u5834\u5408":12,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"aramaki\u3055\u3093":36,"aramaki\u3055\u3093\u304c\u5831\u544a":36,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":11,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":68,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":68,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":12,"base_version\u306ftar":12,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":154,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":154,"benchmark\u304c\u52d5\u4f5c\u3057":154,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":154,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":154,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":154,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":154,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":154,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":154,"benchmark\u306f":154,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":154,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":154,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":154,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":154,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":154,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":154,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":154,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":154,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":154,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":154,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":154,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":154,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":154,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":154,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":154,"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":154,"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":154,"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":259,"blog_body\u7d22\u5f15":261,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":12,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":261,"bom\u4ed8\u304dutf":36,"boolean":[22,41,44,45,134,196,243,264],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":14,"break":[38,40,42,43,44,105,151],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":51,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":51,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":65,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":12,"build\u3092\u7528\u3044\u3066":14,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":12,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":55,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"builtin_type_names\u306b\u306f":55,"byte":[34,38,40,41,42,43,44,51,54,57,65,66,68,71,74,85,121,122,134,135,179,243,258],"byte\u9577":[51,65,68],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":11,"case":[29,34,38,41,42,43,44,47,50,54,55,70,74,80,91,92,95,102,104,112,113,114,115,123,129,135,140,143,146,155,158,159,161,169,172,176,177,179,196,197,205,210,211,212,213,216,226,228,239,242,250,263,265,266,268,270,271,274,275],"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":166,"centos\u306e\u5834\u5408":12,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"char":[42,51,54,55,56,57,63,65,66,68,70,71,74],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":14,"check\u30b3\u30de\u30f3\u30c9\u306f":89,"class":[34,135,168,169,170,179,238],"clearlock\u306f":90,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":12,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":12,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":51,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":51,"column\u306e\u5024\u304c":11,"column\u306f":51,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":51,"column_list\u30b3\u30de\u30f3\u30c9":35,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":94,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":9,"com\u304cedge\u3092\u4f5c\u308b":9,"com\u306f1\u30b9\u30ec\u30c3\u30c9":9,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":54,"command_version\u3092\u8fd4\u3057\u307e\u3059":54,"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":82,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":12,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":36,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":82,"configure\u306e":38,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":36,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":12,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":261,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"const":[39,51,54,55,56,57,63,65,66,68,69,71,74],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":14,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":54,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":51,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":65,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":68,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":54,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":54,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":54,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":54,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":54,"ctx_new\u3068\u3044\u3046queue\u306b":9,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":69,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":69,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":69,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":61,"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":69,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":14,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":14,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":14,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":12,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":37,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":65,"db\u3068\u306a\u308a\u307e\u3059":55,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":153,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[141,153],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":141,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":153,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":68,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":55,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":65,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":54,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":54,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"db_api\u306f":11,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":261,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":38,"debian\u7cfb":12,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"debian\u7cfb\u3082\u3057\u304f\u306fr":12,"debug\u3092\u8ffd\u52a0":36,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":36,"default":[0,6,7,8,18,23,33,34,38,39,40,41,42,43,44,49,54,80,91,92,103,105,106,107,108,112,113,114,115,117,121,123,130,135,136,137,138,140,142,144,146,151,153,155,158,161,162,165,177,191,196,197,198,199,207,211,213,217,242,243,252,256,258,265,266,268,272],"define_selector\u306f":100,"defrag\u306f":101,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"delete\u30b3\u30de\u30f3\u30c9":35,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":65,"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":82,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":82,"description\u306b":259,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":82,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":154,"dist\u3067\u751f\u6210\u3057\u305ftar":12,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":36,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"dump\u30b3\u30de\u30f3\u30c9":35,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":9,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":9,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":9,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"edge\u306fctx\u3092\u542b\u3080":9,"encoding\u306e\u5024\u304c":38,"examples\u4ee5\u4e0b\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067":12,"export":[18,34,38,41,42,43,44],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":65,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":72,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":66,"facebook\u306bgroonga\u30b0\u30eb\u30fc\u30d7\u304c\u3042\u308a\u307e\u3059":12,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":36,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":36,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":36,"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":12,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":36,"final":[73,74,80,135,155,202,223,262],"flags\u306b":[51,68],"flags\u306b\u306f":68,"float":[40,43,44,83,112,114,115,121,122,134,135,165,207,212,213,265],"function":[0,6,12,14,22,34,40,41,42,43,44,45,46,47,54,63,70,74,83,120,121,122,145,153,155,158,161,165,169,170,171,172,173,176,177,181,182,184,191,193,194,211,212,213,220,256,266,275],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":12,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":14,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":14,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":36,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":35,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":36,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":12,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":12,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":152,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":3,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":152,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":152,"gqtp\u306e\u5834\u5408":153,"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":261,"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":261,"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":261,"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":259,"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":259,"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":261,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":261,"grn_bool\u578b\u3092\u8ffd\u52a0":36,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":11,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":3,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":11,"grn_expr\u306f":11,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":11,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"grn_op_adjust\u306f":11,"grn_op_and\u306f":11,"grn_op_but\u306f":11,"grn_op_or\u306f":11,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":11,"grnslap\u306f":152,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":36,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":36,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":12,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":12,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":12,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":35,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":12,"groonga\u306e\u30ab\u30e9\u30e0\u306f":243,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":12,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":78,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":11,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":14,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":12,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":36,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":12,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":12,"groonga\u306epackag":12,"groonga\u306f":14,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":11,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[259,261],"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":261,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":11,"groonga\u3084mysql\u306erpm":12,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":10,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":10,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":154,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":12,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":12,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":82,"groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u3068\u3057\u3066\u6295\u7a3f\u3067\u304d\u307e\u3059":12,"groonga\u30b0\u30eb\u30fc\u30d7\u306e\u30e1\u30f3\u30d0\u30fc\u306b\u306a\u308b\u3068":12,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":154,"groonga\u30b3\u30de\u30f3\u30c9\u306b":36,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":154,"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":153,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":36,"groonga\u30c1\u30fc\u30e0":12,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":154,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":38,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":82,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":12,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":127,"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":153,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":152,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":153,"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":152,"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":89,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":82,"groonga\u5358\u4f53\u3067test":154,"groonga\u53ca\u3073groonga":154,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[89,90,94,100,101,110,111,127,141],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":82,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":154,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":152,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":154,"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":154,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":90,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":94,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":100,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":101,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":110,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":111,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":127,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":141,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":163,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":166,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":167,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":174,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":178,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":10,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066autogen":12,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":12,"groonga_org_path\u306bgroonga":12,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":37,"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":68,"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":68,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":12,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":12,"gz\u306eversion\u304a\u3088\u3073vers":12,"hat\u7cfb":12,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"help\u3067\u51fa\u529b\u3055\u308c\u308b":38,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":14,"hiroshi\u3055\u3093":36,"hiroshi\u3055\u3093\u304c\u5831\u544a":36,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":38,"homebrew\u306e\u66f4\u65b0\u306fgroonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u672c\u4f53\u306e\u30ea\u30ea\u30fc\u30b9\u8981\u4ef6\u306b\u306f\u542b\u307e\u308c\u307e\u305b\u3093":12,"homebrew\u3078pul":12,"hook\u306e\u5b9f\u884c\u9806\u4f4d":59,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":59,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":154,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":12,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":153,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":152,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":36,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":152,"http\u306e\u5834\u5408":153,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":153,"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":153,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":36,"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":65,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":54,"import":[0,12,29,34,38,40,41,43,50,54,80,81,92,135,140,146,155,196,209,211,212,213,226,252,269],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":51,"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":61,"indexbuf\u306e\u30b5\u30a4\u30ba":51,"init\u76f4\u5f8c\u306e\u72b6\u614b":54,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":152,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":154,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"int":[40,43,44,49,50,51,54,55,57,58,59,60,61,63,64,65,66,68,69,70,71,74,207],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":154,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":12,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":36,"js\u306a\u3069":12,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":38,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":69,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"key\u306b\u306f":68,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"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":68,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":68,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":68,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":69,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":68,"key\u3092\u8fd4\u3057\u307e\u3059":65,"key_type\u306bt":68,"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":259,"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":259,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":68,"keybuf\u306e\u30b5\u30a4\u30ba":68,"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":12,"launchpad\u306egroonga\u30c1\u30fc\u30e0\u306e\u30da\u30fc\u30b8\u3067\u5bfe\u8c61\u306eppa\u3092\u9078\u629e\u3057":12,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":12,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":36,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":38,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":36,"libedit\u5bfe\u5fdc":35,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":14,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":12,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":82,"load\u30b3\u30de\u30f3\u30c9":35,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":12,"localstatedir\u3092\u4f7f\u7528":36,"log\u3067\u3059":153,"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":154,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":82,"log_put\u306f":110,"log_reopen\u306f":111,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":111,"long":[34,41,42,43,44,60,63,64,131,136,140,151],"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":243,"lucid\u304b\u3089":36,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":12,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":36,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":38,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"man\u3092\u8ffd\u52a0":35,"markdown\u30d1\u30fc\u30b5\u30fc":12,"marverick\u306b\u5909\u66f4":36,"masahiro\u3055\u3093":36,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":261,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":69,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":69,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":69,"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":69,"max\u3068common":69,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":69,"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":69,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":69,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":12,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":35,"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":36,"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":38,"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":38,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":14,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":69,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":69,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":69,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":69,"mooz\u3055\u3093":38,"mooz\u3055\u3093\u304c\u4fee\u6b63":38,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":65,"msg\u306fcom\u306b\u3088\u3063\u3066":9,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":9,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":68,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":35,"n_builtin_type_names\u306b\u306f":55,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":65,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":54,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":66,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":71,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":65,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":51,"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":68,"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":68,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[51,65,68],"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":68,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[51,65],"namebuf\u306e\u30b5\u30a4\u30ba":[51,65],"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":12,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":36,"new":[0,3,6,7,12,18,22,25,47,49,50,51,54,55,63,65,70,74,84,85,86,91,92,95,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,130,131,134,135,136,137,139,140,142,143,145,148,149,151,153,155,158,162,164,165,169,171,172,173,180,181,184,191,192,193,194,196,197,198,202,210,212,213,214,218,223,239,244,246,247,248,258,265,268,271],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8":12,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":51,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":35,"null":[6,7,11,34,38,40,41,42,43,44,50,54,57,58,66,70,74,88,92,103,104,105,106,107,108,112,113,114,115,117,121,122,130,133,134,135,140,143,144,145,146,162,168,169,170,179,184,191,193,262],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":68,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[51,68],"null\u306a\u3089temporari":55,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":69,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":69,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":54,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":35,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":55,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":68,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":65,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":59,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":59,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":59,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":59,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":65,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":65,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":65,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":65,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":65,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":65,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":65,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":65,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":55,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":62,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":65,"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":62,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":65,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":65,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":62,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":62,"obj\u306f":65,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":65,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":65,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":65,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":67,"obj\u3092lock\u3057\u307e\u3059":65,"obj\u3092unlock\u3057\u307e\u3059":65,"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":65,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":72,"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":59,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":59,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":59,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":66,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":59,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":65,"offset\u306f":68,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":68,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":12,"ongaeshi\u3055\u3093":36,"ongaeshi\u3055\u3093\u304c\u5831\u544a":36,"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":67,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":51,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":154,"org\u304c\u30db\u30b9\u30c8\u3092":12,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":154,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":154,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":154,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"org\u306edoc":12,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":12,"output_columns\u304b\u3089_value\u3092\u524a\u9664":36,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":103,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":11,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":69,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":154,"path\u3092":36,"pc\u306bgroonga":37,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":153,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":35,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":12,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":12,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[166,167],"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":166,"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":167,"point\u578b\u306e\u5024":[166,167],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[166,167],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":69,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":68,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"public":42,"push\u3057\u3066groonga":12,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":37,"quit\u306f":127,"rb\u3092\u8ffd\u52a0":36,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":12,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":12,"repositories\u914d\u4e0b\u306b":12,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"request\u3092\u9001\u308a\u307e\u3057\u305f":12,"request\u3092\u9001\u308a\u307e\u3059":12,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":68,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":68,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":68,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":11,"return":[22,34,38,40,41,42,43,44,46,49,50,51,54,55,56,57,58,63,65,68,70,73,74,81,83,155,196,197,199,216,217,218,219,252,258,262,266,268,271,274,275],"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":61,"root\u306b\u5909\u66f4":36,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":153,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"rst\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":12,"rst\u306e\u5185\u5bb9":12,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":12,"s3ki\u3055\u3093":36,"s3ki\u3055\u3093\u304c\u5831\u544a":36,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"scorer\u306f":135,"scr\u3067\u3059":154,"scr\u306e\u4e2d\u8eab\u304c":154,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":154,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[163,166,167,174,178],"search\u3092\u884c\u3044":[68,69],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":69,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":51,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":51,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":154,"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":35,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":82,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":36,"select\u30b3\u30de\u30f3\u30c9":35,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":154,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":154,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":12,"sh\u306e\u307f\u306a\u3089\u305a":14,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":14,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":12,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":14,"shibuya\u3055\u3093":36,"shibuya\u3055\u3093\u304c\u5831\u544a":36,"shimada\u3055\u3093":36,"shimada\u3055\u3093\u304c\u5831\u544a":36,"short":[34,80,155],"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":243,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":36,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":38,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":68,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":68,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":12,"sphinx\u306f\u5e38\u306b\u6700\u65b0\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u3046\u4e8b\u3092\u63a8\u5968\u3057\u307e\u3059":12,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"static":[34,38,42,43,44,70,156,268],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":154,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":36,"status\u30b3\u30de\u30f3\u30c9":35,"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":163,"string\u306b":11,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":38,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":38,"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":68,"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":68,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":68,"table\u304c":68,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":51,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":68,"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":69,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":68,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":68,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":68,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":68,"table\u306ecolumn":68,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":68,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":68,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":68,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":68,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":68,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":68,"table\u306fcolumn\u3068\u306f\u5225\u306b":68,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":68,"table_list\u306f":141,"takahiro\u3055\u3093":36,"takahiro\u3055\u3093\u304c\u5831\u544a":36,"takahiro\u3055\u3093\u304c\u63d0\u6848":36,"takashi\u3055\u3093":38,"takashi\u3055\u3093\u304c\u5831\u544a":38,"takuto\u3055\u3093":36,"takuto\u3055\u3093\u304c\u5831\u544a":36,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":154,"textile\u30d1\u30fc\u30b5\u30fc":12,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":61,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":261,"tokenbigram\u306a\u3069":261,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":261,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":259,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":259,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":261,"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":259,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":261,"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":261,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":37,"tokenmecab\u3067\u306f":261,"tokenmecab\u306e\u5834\u5408":261,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":259,"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":259,"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":259,"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":261,"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":261,"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":261,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":261,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":36,"tomita\u3055\u3093\u304c\u5831\u544a":36,"tomotaka_ito\u3055\u3093":38,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":38,"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":167,"travisci\u306e\u7d50\u679c\u304c\u6b63\u5e38\u3067\u3042\u308c\u3070":12,"true":[35,41,42,43,44,47,80,90,91,92,93,94,95,96,97,98,99,100,102,104,105,106,107,108,109,110,111,112,113,114,115,116,117,120,121,122,123,124,125,129,130,131,132,133,134,135,136,139,140,142,143,144,148,158,161,162,165,166,167,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,202,206,210,211,212,213,221,223,224,225,238,243,265,266,267,268,270,273,274,275],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":38,"try":[3,34,43,49,96,153,226,251,270,271],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":10,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":10,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":10,"twitter\u7b49\u3067\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u969b\u306f\u3053\u3053\u3067\u7528\u610f\u3057\u305f\u30a2\u30ca\u30a6\u30f3\u30b9\u6587\u306e\u8981\u7d04\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"twitter\u7de8":3,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":62,"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ubuntu\u5411\u3051\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u4f5c\u6210\u306b\u306f":12,"ueno\u3055\u3093":[36,37],"ueno\u3055\u3093\u304c\u5831\u544a":37,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":36,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":36,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":14,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":35,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":66,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u306e\u4e2d\u306b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":11,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":11,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":11,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":11,"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":12,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":14,"value\u304c\u5c5e\u3059\u308b\u578b":141,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":65,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":78,"var":[11,29,43,66,74,93,151,153,155,256],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":82,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":12,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":82,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":36,"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":82,"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":82,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":82,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":82,"virtualbox\u306fsourc":12,"vmware\u306a\u3069":12,"void":[39,49,52,55,56,63,64,65,68,69,70,73,74],"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"web\u7ba1\u7406\u753b\u9762":35,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":38,"while":[0,34,40,41,43,44,55,95,104,105,107,113,130,135,143,146,198],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":38,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":154,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u5411\u3051":12,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u7cfb":12,"worker\u306f":9,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":9,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":12,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":12,"x\u3067\u306frealloc":36,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"x\u306e\u304a\u77e5\u3089\u305b":34,"yes\u306f\u6307\u5b9a\u3057\u306a\u3044\u3067\u4e0b\u3055\u3044":12,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":12,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"yum\u306e\u5834\u5408":12,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,AND:[34,41,42,44,135,171,195,275],Added:[34,38,39,40,41,42,43,44],Ages:[92,140,161],And:[42,91,104,131,135,146,156,209,220,243,270,271,273],Are:263,But:[6,7,8,16,17,23,34,38,42,43,47,80,92,95,115,117,121,123,135,143,148,156,165,197,198,200,209,210,211,213,226,228,236,239,242,252,256,270],For:[0,2,3,8,18,22,25,29,32,33,34,40,41,42,43,44,47,56,57,80,83,91,92,102,104,105,112,114,115,117,118,121,122,123,134,135,136,137,138,140,146,148,153,155,160,169,179,182,191,195,196,197,198,200,206,209,210,211,212,213,214,216,217,218,219,224,226,228,236,238,242,252,265,266,267,268,269,270,273,274,275],GPS:0,IDs:[40,44,58,80,91,121,220,265,268],Its:[57,74,134,153,196,197],JIS:206,LTS:[21,31],NEAR:[171,177,191],NFS:29,NOT:[43,135,195],Near:[44,177],Not:[115,135,177,217,258],One:[0,63,80,135,142,158,159,179,214,270,275],SIS:38,TLS:44,That:268,The:[0,6,7,8,17,18,29,31,32,33,38,40,41,42,43,44,47,49,50,51,54,55,56,57,63,65,66,68,70,74,80,83,85,88,91,93,95,96,97,98,99,102,103,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,130,131,134,136,137,138,139,140,142,143,144,145,146,147,149,151,153,155,156,158,161,162,165,168,169,171,176,177,179,182,184,191,196,197,199,201,205,206,209,210,211,212,213,214,216,217,218,219,220,225,228,229,230,231,232,233,234,235,236,237,239,240,241,243,252,255,256,258,262,265,266,267,268,270,271,272,275],Then:[0,17,26,27,28,32,80,135,155,216,258,262,263,265,266,267,270,271,274,275],There:[1,2,3,8,13,17,19,23,24,25,27,31,34,40,42,49,57,63,80,91,92,96,97,98,99,102,103,104,105,112,113,114,115,116,117,118,120,121,122,123,131,134,135,136,137,139,140,142,144,145,146,148,153,155,158,159,161,165,168,169,170,171,172,173,176,177,182,191,193,195,196,197,200,202,210,211,212,213,223,224,225,226,236,238,242,252,256,258,263,268,270,271,272,275],These:[0,38,135,149,153,179,267,268],Use:[32,34,40,42,43,44,54,57,74,80,90,92,102,104,115,129,135,137,140,153,165,176,245,258,266,270],Used:[34,38,40,42,43],Uses:159,Using:[0,196,251],WGS:[243,275],With:[21,22,23,34,80,209,271],_20160320:117,__uint32_t:43,_avg:[115,135],_config:12,_dataset:[157,159],_id:[34,42,43,47,51,65,78,80,83,91,92,95,102,103,114,115,117,135,138,143,148,161,171,172,176,196,197,198,200,210,216,217,219,224,225,261,266,267,268,270,272,273,274,275],_kei:[34,40,41,42,43,44,47,51,65,78,80,83,91,92,93,95,102,103,105,112,114,115,121,130,134,135,138,142,143,144,148,155,158,161,162,165,170,171,172,173,176,182,184,191,193,196,197,200,206,211,216,217,219,225,242,252,265,266,267,268,270,271,272,273,274,275],_max:[115,135],_min:[115,135],_name:[92,140],_nsubrec:[42,51,78,115,135,266,267,271],_post:12,_score:[34,38,40,41,43,51,78,80,112,114,115,135,138,165,177,197,211,212,213,216,217,219,261,267,268,270,271,275],_set_valu:39,_sum:[34,115,135],_valu:[41,42,51,78,115,135],_yyyymmdd:[112,114,115,117],a_part_of_speech:238,aardvark:34,aba:[266,268,275],abbrev:165,abc:43,abcd:118,abi:43,abl:[121,140,171,179,210,211,212,213,214],abort:42,about:[2,7,14,17,18,19,20,21,22,23,24,25,27,28,29,30,31,34,38,39,40,41,42,43,44,46,49,74,80,81,83,85,87,88,92,93,95,96,97,98,102,103,104,106,107,108,109,112,114,115,117,118,119,122,130,131,132,133,134,135,137,138,140,142,144,146,147,148,151,153,155,158,160,165,172,177,182,196,197,199,204,205,209,210,211,212,213,216,217,219,226,242,244,252,263,264,270,271,272,275],abov:[17,21,29,32,40,43,44,92,104,115,131,135,140,155,158,161,170,171,172,177,182,200,202,209,216,217,219,226,236,238,262,266,268,270,271,274,275],absolut:[34,124,125,129,173],acccept:34,acccess:256,accept:[0,34,38,40,42,43,44,85,86,92,105,131,136,148,153,158,161,165,177,197,252,258,262,268,270,271,274,275],access:[0,17,22,34,38,40,41,42,43,44,47,49,51,95,135,143,155,156,216,217,219,242,251,256,258,264,265],accessor:[34,43,44,68],accident:41,accord:[165,265],accordingli:155,account:[2,42],accross:40,accuml:41,accumul:135,accur:[0,179],acquir:[43,49,104,106,108],acronym:[250,258],across:165,action:41,activ:34,actual:[34,41,42,44,112,114,115,117,135,151,155,211,265,268],add:[3,6,7,18,21,25,31,33,34,40,41,42,43,44,55,92,105,114,135,146,153,155,160,176,197,209,214,220,238,239,244,265,266,267,268,270,273],add_record_if_not_exist:65,added:[0,34,43,44,45,58,63,65,68,104,105,122,200,202,221,258,266,270,273],adding:[18,34,38,43,65,85,86,146,198,225],addit:[0,22,24,25,27,31,46,92,118,135,146,196,218,238,256,264,265,268,273],addition:[34,43,275],additional_configure_opt:[34,41],address:[34,38,40,43,153,158,258,272],address_is_in_us:258,address_is_not_avail:258,adisk:210,adjac:[196,228],adjust:[34,41,42,80,92,115],admin:[36,38,40,41,42,43,44],admin_html:[38,153],administr:[22,40,42,156,264],advanc:[43,45,117,132,133,195,196,220],advantag:[0,179,256],adventur:92,affect:[34,40,41,42,43,44],afr:[266,268,275],after:[17,18,29,32,34,38,40,41,42,43,44,47,49,58,73,86,99,103,104,112,114,115,117,120,123,135,136,142,149,151,153,155,158,162,168,169,197,200,220,223,225,236,242,265,267,268,272],again:[34,42,43,49,151,155,198],against:[0,22,34,40,42,43,44,51,55,57,80,92,114,116,117,122,134,135,142,148,151,153,196,197,210,214,216,217,219,264,267,271,273,274],againt:135,agaist:40,age:[47,92,93,104,134,135,140,161],aggreg:[22,135,179],ago:216,ahello:43,ahost1:210,aim:41,aio:41,aki:42,akihabara:275,akinori:43,akio:[34,38,40,41,43,44],akira:42,alert:[42,109,110,153,155,199],algolithm:195,algorithm:[34,38,88,165,213],ali:91,alia:[22,34,43,46,96,97,98,109,153],alias:[43,47,96,97,98,177],aliased_column:47,alic:[47,91,92,95,121,135,143,148,155,161,171,177,196,239,252,271],align:[112,114,115],alisa:177,all:[0,17,29,34,38,40,42,43,44,47,51,54,55,58,63,80,85,86,88,91,92,93,95,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,126,129,130,132,133,134,135,136,137,139,140,142,143,144,145,146,148,149,151,153,155,161,169,171,177,191,195,196,197,198,199,201,202,210,212,213,216,219,223,224,228,232,235,242,243,252,258,268,271,274],all_record:40,alloc:[22,34,40,42,43,44,50,54,57,74,121,135,137,260,265,268],alloc_count:[84,137,153,155,207,258,268,272],alloc_info:44,allow:[0,34,40,43,159,179,268,272],allow_column:[135,177,196],allow_leading_not:[135,177],allow_pragma:135,allow_upd:[135,196],almost:[38,135,197,242,250,263],alon:43,alpha:202,alphabet:[42,92,112,114,115,135,140,146,210,217,228,231,232,234,235],alpin:26,alreadi:[34,42,49,74,99,105,115,120,135,146,159,198,242,268,270],also:[0,3,17,22,34,40,44,46,80,91,104,112,114,115,117,142,151,155,161,165,191,196,197,198,210,211,216,218,237,250,251,252,256,265,267,268,270,271,273,275],although:155,alwai:[0,34,42,43,44,70,83,93,113,121,135,138,145,155,176,196,197,216,242,258],amazon:[34,135],amd64:12,among:[22,40,114,115,264,265,267],amount:[40,44,151],analysi:[0,29,135,197],analyz:[0,22,34,38,40,155,238,260],anchor:43,ani:[0,29,34,43,44,47,91,105,112,115,118,122,123,132,133,134,135,138,142,144,145,146,153,155,168,169,177,179,182,196,209,211,228,252],anim:267,ann:12,annot:41,anonym:[104,220],anonymous:63,anoth:[0,34,40,43,57,91,106,135,151,209],aomi:34,apach:34,api:[1,3,15,22,34,38,39,40,41,42,43,44,45,46,49,50,51,54,55,70,73,74,81,87,195,252],appear:[0,42,87,92,122,135,146,179,196,197,209,211,268],append:[40,57,65],apper:135,appl:[200,236],appli:[34,45,57,112,114,115,135,145,158,242],applic:[0,20,34,38,42,105,135,153,155,179,197,199,209,252],approach:165,appropri:262,approv:42,approxim:[38,40,165],approximate_typ:166,appveyor:42,april:12,apt:[12,18,21,25,31,40],aptitud:14,arai:43,aramaki:38,arbitrari:262,arc:146,architectur:[0,12,42,43,153],archiv:[6,7,8,12,17,22,23,25,29,32,40],area:[0,34],aren:[34,40,42,43,44,104,112,114,115,117,122,135,136,137,140,142,155,158,179,196,205,220,242,252],arg1_nam:210,arg1_valu:210,arg2_nam:210,arg2_valu:210,arg3_valu:210,arg:153,arg_list_too_long:258,argc:70,argument1:[197,211],argument2:[197,211],argument:[34,38,40,41,42,43,44,54,74,103,104,115,134,135,153,156,162,165,168,169,170,172,173,176,177,179,182,191,192,193,197,210,211,214,255,258,262,268,270,272],argument_name1:156,argument_name2:156,argv:70,arithmet:41,armenian:[202,223],armhf:42,arnaud:38,around:[34,179,205,262],arrai:[34,38,40,42,44,80,83,89,93,114,118,119,121,122,134,135,140,146,147,179,196,220,265,267,268,271],arrang:268,arrow:34,art:[34,197,271],articl:[34,270],articles2:270,articles_cont:270,arugment1:197,asami:41,asc:12,ascend:[103,114,115,116,135,173,205,266,268,275],ascii:[34,196,197,228,229,230,231,232,240,241],askmonti:42,aspx:262,assigend:196,assign:[41,43,131,146,220,262,275],associ:[38,74,102,105,135,262,265,267,268],assum:[34,54,66,131],atsushi:[42,43,44],attach:[17,200,221],attent:[135,273],attr_setpshar:41,attribut:[118,119,146,147,170],atv:[266,268,275],auth_bas:[155,252],auth_basic_user_fil:[155,252],authent:[251,272],author:155,auto:[34,40,42,113,135,138],autoconf:[6,38],autogen:[6,12,17,40],automak:[6,36],automat:[17,25,34,43,55,92,104,112,114,115,124,125,129,135,151,155,196,197,220,255,267,268,273],autoreconf:12,autotool:[3,5,7],avail:[0,8,17,29,34,41,43,44,45,53,63,74,83,92,93,104,112,113,114,115,117,118,135,136,138,140,146,151,153,158,171,177,184,191,196,197,250,258,262,265,268],averag:[42,135],avg:[42,115,135,152],avoid:[22,34,41,42,117,135,142,260],awar:74,axaixiuxuexeoxo:[202,223],ayumu:[42,43],back:[34,155,197,210,270],background:153,backlog:34,backslash:[41,57,196],backtrac:[34,44],backup:[55,103],backward:[34,40,42,43,44,148,212,213,252],bad:[0,41,42,44],bad_address:258,bad_file_descriptor:258,bar:[92,140,202,223],base:[0,17,18,24,25,27,29,31,34,40,41,42,44,58,114,131,135,146,153,155,156,158,159,168,169,179,196,197,199,206,210,211,212,213,214,216,217,219,228,238,239,251,256,271,272],base_form:[34,238],basebal:[267,270],bash:[29,43],basi:268,basic:[0,22,40,42,91,135,252,264,265],batch:40,bc009774:12,beaver:[31,34],becam:[42,256],becaus:[0,6,7,8,21,27,33,34,40,42,43,44,47,55,83,91,92,95,99,103,104,112,114,115,117,121,122,123,124,129,135,140,143,145,151,155,158,161,162,172,176,177,182,191,196,197,198,200,206,207,209,210,211,212,213,216,217,218,219,220,223,225,226,228,229,230,231,232,236,238,242,250,251,252,256,258,262,265,267,268,270,273,274],becom:[0,34,43,45,165,243,265],been:[12,34,43,95,143],befor:[29,33,34,39,40,43,44,73,80,88,112,113,114,115,120,123,124,129,131,135,142,145,155,191,209,210,216,217,218,223,236,265,268],before_instal:21,beforehand:27,beg:[210,239],begin:[152,210,236,239],behav:[135,165],behavior:[34,40,42,43,63,117,135,149,161,177,202,210,228],behaviour:[41,103],beijin:165,bellefleur:34,belong:[34,76,243,266],below:[13,34,95,103,105,112,114,115,131,135,143,153,196,202,223,224,225,228,236,238,240,241],benchmark:[22,40,41,42,46,150],benefit:256,bernard:43,best:0,beta:45,better:[0,42,92,104,135,197,270],between:[22,34,38,40,41,42,44,46,65,92,95,104,117,135,140,143,151,159,160,165,196,197,205,210,217,220,226,228,229,230,231,232,233,234,235,237,240,241,252,270,273,275],big:[42,103,155],bigger:92,bigram:[34,154,157,158,226,228,230,231,232,233,234,235,239,261],bigramlexicon:130,bill:[43,259,261],billiard:[259,261],billion:92,bin:[18,29,32],binari:[0,1,22,32,34,40,41,42,43,44,83,155,197,207,243,249,252,272],bind:[20,21,38,40,43,45,153,168,169,195],binlib:12,bionic:[31,34],bison:12,bit:[21,23,24,25,27,30,31,32,135,153,154,155,196,197,243,265],bitwis:[43,258],black:[200,205],blank:[34,43,229,230,231,232],block:[34,41,137,140,142,155,197,265],blog1:270,blog2:270,blog:[12,22,112,114,115,135,182,196,197,198,261,264,270],blog_bodi:261,blog_comment_index:182,blog_cont:182,blog_titl:268,bm25:[211,213],bob:[47,95,135,143,148,155,161,177,252,271],bodi:[41,44,90,91,92,94,99,101,104,105,107,117,120,121,123,124,125,129,130,136,139,140,142,143,145,158,168,169,252,258,261,270,274],body_index_column:34,book:[92,197],bookmark:[80,103,105,117],bookmark_index:80,bookmark_titl:103,bool:[34,41,43,44,91,112,114,115,121,122,134,135,144,196,225,265,273],boost:[158,216],border:[34,40,146,161],borderlin:114,boston:271,both:[0,23,24,25,27,31,32,34,43,44,65,76,80,83,92,112,114,115,121,135,142,149,158,179,196,197,198,210,213,216,220,252,258,271,275],bottom:58,bottom_right:[38,167],bottom_right_point:58,bound:42,box:[135,202,223],brace:105,bracket:105,brad:44,brand:43,brasil:165,brasillia:165,brazil:266,brew:[18,28],bring:268,british:274,broadcast:271,broken:[34,38,40,41,42,43,44,51,55,106,107,108,122,123,130,142,151],broken_pip:258,brooklyn:271,browser:[17,29,156,272],bsd:[5,7,8,29,38,42,43],buf_siz:[51,65,68],buffer:[34,41,43,44,54,57,60,63,65,89,121,262,270],bug:[3,22,29,34,38,40,41,42,43,44,45],buggi:34,build:[0,3,4,12,14,18,21,22,23,30,34,39,40,41,42,43,44,53,149,209,214],buildabl:38,builder:60,built:[0,22,29,34,41,43,46,65,81,103,118,146,155,160,165,244],builtin:[22,46,63,92,104,121,122,165],builtin_type_nam:55,bulk:[34,43,44,57,65],bullet:[202,223],bump:[41,42,43],bundl:[17,34,40,41,42,43,44,177],button:[17,40,41],buzz:158,bye:[112,114,115,135,144,196,197,225,270],cach:[0,34,35,40,41,43,44,50,63,65,88,137,153],cache_hit_r:[84,137,155,207,258,268,272],cache_limit:[22,43,46,81,155],cache_previ:50,cafedomanc:44,cake:173,calc:34,calc_target:[43,135],calc_typ:[34,43,135],calcul:[34,40,41,42,132,135,165,173,205,271,275],call:[34,40,41,42,43,54,70,73,74,80,95,113,114,121,132,133,135,143,145,165,195,266,268],callback:158,caller:66,calloc:44,calro:161,camp:271,can:[0,1,5,6,7,8,17,18,19,21,24,25,26,27,28,29,31,32,33,34,38,39,40,41,42,43,44,47,48,49,50,53,54,55,57,73,74,80,83,85,86,87,88,91,92,93,95,96,97,98,99,103,104,105,106,112,113,114,115,116,117,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,140,142,143,144,145,146,148,149,151,153,155,156,158,160,161,162,165,168,169,170,171,172,173,176,177,179,182,191,195,196,197,198,199,200,202,203,205,206,207,209,210,211,212,213,214,216,217,218,219,220,221,223,224,225,226,228,229,230,231,232,236,238,239,242,244,250,252,256,258,262,263,265,266,267,268,269,270,271,272,273,275],can_be_key_typ:134,can_be_value_typ:134,canadian:[202,223],cancel:[34,42,44,85,86,131],cancel_request_is_accepted_or_not:131,candid:[138,158,176,216],candidate1:138,candidate2:138,candidate_1:158,candidate_2:158,cannot:[22,34,135,140,196,197,198,200,220,252,260],capit:[34,268],caplit:[41,42],care:[17,34,93,135,196,213,216],carefulli:[80,117,123,142],carlo:[95,143,148],cas:258,cas_error:258,cascad:[41,42],cast:[22,34,38,39,40,41,44,46,65,112,114,115,135,162,196,212,213,271],cast_loos:[22,34,46,160],cat:12,categor:[105,135,144,146],categori:34,caus:[34,38,40,41,42,43,44,135,140,196,197,262,265],ceekz:41,cenos6:40,cent:[228,233],center:[0,166],cento:[12,18,22,23,29,34,36,38,40,41,42,43,44,256],centos5:29,centos6:29,centos7:29,central:271,certain:275,cflag:30,chain:182,chang:[0,18,29,34,38,39,40,41,42,43,44,47,50,80,88,92,95,99,104,112,118,131,132,133,135,138,142,143,149,155,168,197,202,207,209,224,226,228,239,252],channel:34,chapter:268,charact:[0,34,38,40,41,42,43,44,57,63,74,92,109,112,114,115,118,135,140,146,153,168,169,171,179,180,196,197,199,200,201,202,209,217,223,228,229,230,231,232,235,236,237,240,241,268],characterist:[22,46,179,210,213],charactor:[240,241],charli:271,chart:38,chat:[22,43],check:[12,13,14,22,34,36,38,40,41,42,43,44,46,54,55,65,81,83,87,103,104,117,118,120,142,144,155,158,161,201,202,203,263],child:[34,104],china:[165,266],choic:0,choos:[5,6,7,33,42,44,84,105,135,136,140,153,155,158,210,226,265],chracterist:220,christian:43,chroot:12,chunk:[34,43,44,89,121,242,263],chunk_size_threshold:34,chunked_token:34,cimbin:223,circl:[0,205],cirit:155,citi:[63,165,205,271],cjk:34,clang:[14,40,41,42,43],clarifi:[34,42],classif:[135,266],classifi:[44,135],clean:[6,7,12,14,34,43,112,115,117],cleanup:34,clear:[12,34,38,40,42,44,51,65,107,155,262],clearli:43,clearlock:[22,40,42,46,81,153],cleverli:99,click:135,client:[8,22,34,40,42,47,86,155,156,158,211,250,256],clone:[3,6,7,8,12,13,29],close:[34,43,44,142,168,220],close_tag1:168,clumn:242,cmake:[3,5,6,29,32,34,40,41,43,44],cmp0014:42,code:[3,6,7,8,12,17,22,34,40,41,42,43,44,46,57,73,81,83,131,148,199,207,258,262,268],coffe:173,col1:65,col2:65,col3:65,collaps:40,colleagu:3,collect:[0,83,271],color:200,colum:270,column1:[11,40,41,42,112,114,115,135,197,211],column2:[11,40,41,42,115,135,197,211],column3:211,column:[11,22,29,34,38,39,40,41,42,43,44,46,47,51,55,58,63,65,66,68,72,93,95,96,97,98,99,102,104,106,107,108,117,120,123,130,138,140,143,144,148,151,157,158,161,169,170,171,172,173,177,179,182,191,193,197,198,205,209,210,211,214,216,217,218,219,220,242,243,264,265,267,271,273,274,275],column_1:[134,182],column_2:[134,182],column_3:[134,182],column_:92,column_copi:[22,43,44,46,47,81],column_cr:[22,34,38,42,43,44,46,47,80,81,91,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,122,123,130,134,135,140,142,143,144,148,153,154,158,161,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,210,211,212,213,214,224,225,242,261,265,266,267,268,270,271,273,274,275],column_index:[42,43,80,92,93,103,112,114,115,117,122,130,134,135,142,158,161,168,169,172,176,177,179,182,196,197,198,210,211,212,213,224,225,242,261,267,268,270,271,274],column_inform:93,column_information1:93,column_information2:93,column_list:[22,36,38,40,42,46,81,95,153,268],column_list_head:93,column_n:182,column_nam:[104,105,120,123,134],column_name1:105,column_name2:105,column_name_1:[114,134,135],column_name_2:[114,134,135],column_name_3:134,column_name_n:[114,135],column_name_with_t:134,column_name_with_table_nam:134,column_remov:[22,42,46,81,91,104,123,142,153],column_renam:[22,39,41,42,44,46,47,81,91,104],column_scalar:[44,47,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,122,123,130,134,135,142,143,144,148,158,161,165,168,169,170,171,172,173,176,177,179,182,184,196,197,198,210,211,212,213,224,225,242,261,266,267,270,271,274],column_type_1:[114,135],column_type_2:[114,135],column_type_n:[114,135],column_vector:[34,41,42,43,80,91,92,93,102,112,114,115,135,158,176,182,191,193,265,267,271,274],column_with_index:44,columnn:40,com:[6,7,8,12,13,17,21,34,135,262,265,266,268,270,272,275],comamnd:252,combin:[0,40,42,44,92,135,140,158,161,176,177,202,209,228,236,265,268],combind:196,come:[205,271],comma:[43,92,105,197,265,266,268],command:[0,6,7,8,13,14,17,18,21,22,25,26,29,32,34,36,38,40,41,42,43,44,46,47,50,54,63,74,80,83,85,86,88,91,92,93,95,96,97,98,99,101,102,103,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,135,136,137,138,139,140,142,143,144,145,146,147,148,154,155,157,160,168,169,170,173,181,184,191,193,194,196,209,210,211,216,217,218,219,220,242,243,250,251,258,263,264,265,270,273,274,275],command_lin:134,command_nam:[134,156,272],command_object_remov:123,command_vers:[43,44,82,84,137,155,156,168,169,170,179,207,258,268,272],commandinput:43,commands_column_list:93,commands_column_renam:95,commands_object_list:122,commands_object_remov:123,commands_table_renam:143,comment:[41,43,182,209,270],comment_cont:182,comment_index:271,comment_nam:182,comments2:270,comments_cont:270,comments_loc:271,commit:[6,7,17,34,42],commnad:[32,82],common:[31,38,40,68,69,135,140,153,195,196,197,220,243,270],commonli:[0,210],commun:[17,19,21,22,155,156,158],compar:[0,34,40,42,43,44,135,171,179,191,196],comparison:[22,34,40,44,92,191,249,251],compat:[24,25,27,31,34,42,43,44,112,114,115,118,148,155,156,201,202,203,212,213,223,252],compil:[6,7,29,34,38,41,42,43],complementari:34,complet:[22,34,38,39,41,44,46,86,124,125,129,138,158,176,206,215,219,274],complex:[40,41,43,135,197,210,236],complianc:155,compos:[22,23],composit:[34,201,202,203,223],compress:[29,34,38,40,41,42,44,92,121,134,251],compress_lz4:[44,92],compress_zlib:[44,92],compress_zstd:[44,92],comput:[40,74,92,112,114,115,135,137,158,197,206,211,212,213,216,217,219,242],conbin:[135,195],conbind:196,concaten:270,concatin:[40,41],concept:42,conclus:236,concret:[91,135,266,267,270],concurr:[105,199],cond:41,cond_sign:70,condit:[22,33,34,40,41,43,57,117,138,171,177,182,191,195,197,236,264,268,271,273],conditin:196,condition1:197,condition2:197,condition_column_name1:171,condition_column_namen:171,conditional_probability_threshold:[38,138],condtion:196,conf:[43,44,155,242,256,263],config:[8,25,29,32,35,38,40,43,96,153],config_delet:[22,43,46,81,97,98,149],config_get:[22,43,46,81,96,98,149],config_set:[22,43,46,47,81,96,97,104,149],configur:[3,7,8,12,14,17,20,22,23,24,25,27,28,30,31,32,34,39,40,41,42,43,44,46,47,48,96,97,98,104,109,135,157,158,197,209,210,214,242,251,256,261,263],confirm:[3,34,92,98,104,117,121,142,149,158,196,210,214,228,262,263,265],conflict:[34,44,105],confus:[34,44,210,228],conifugr:21,connect:[1,34,40,43,153,258,262,268],connection_refus:258,consid:[42,112,140,252,256,267,270,274],consist:[42,43,44,122,134,135,149,158,196,214,219,228,258,268],consol:[63,155],constant:[34,43],constant_pattern:43,construct:[22,34,40,41,42,43,44,46,197],construnct:43,consum:[34,42],contact:17,contain:[0,34,40,41,42,43,44,57,63,103,105,119,122,135,147,161,168,169,196,197,211,212,213,226,262,267,268,270,271],content:[34,38,41,42,43,74,83,93,105,112,114,115,122,134,135,142,151,155,170,177,179,182,196,197,198,211,224,225,242,252,258,267,270,271],content_index:[142,211],content_length:[112,114,115,135],content_type_len:40,context:[34,38,43,50,54,57,63,65,137,142,155,179,182],continu:[21,40,41,42,43,137,146,153,217,229,230,231,232],contrast:[0,42,44,73,153,177,268],contrib:12,contribut:[22,41,44],control:[34,40,42,112,113,114,115,135,155,161,177,195],conveni:[0,1,29,34,38,216,251],convens:40,convent:40,convers:[38,155],convert:[34,42,43,44,87,197,200,220,265,271],coordin:[165,265],copa:43,copi:[40,43,44,47,74,91,95,103,143],copyright:42,core:[0,6,7,12,29,154,155,158,251],coremodul:155,correct:[22,34,40,42,43,44,46,138,158,209,215,216],correctli:[34,40,43,44,104,268],correl:[114,115],correspond:[34,65,104,112,114,115,135,138,156,216,217,218,219],corrupt:[34,44,117,151],cosmic:[31,34],cosmo0920:[41,42],cost:[198,238],could:[40,262,265],couldn:[40,43],count:[0,34,43,112,114,115,135,137,267,271],counter:44,countermeasur:[34,238],countri:[102,266,272],cours:266,cover:[0,117,179],coverag:14,cp932:34,cpu:[6,7,29,154,155,158,251],cpuinfo:[24,25,27,31],crach:34,crash:[34,38,40,41,42,43,44,95,104,107,143,151],crch:146,creat:[7,8,17,22,26,34,37,38,40,41,42,43,44,46,47,50,54,55,57,74,91,103,106,112,114,115,117,118,120,121,123,134,135,137,138,142,150,151,153,155,158,165,176,192,195,197,198,199,200,210,216,217,219,220,238,242,255,264,265,266,267,273,274],created_at:[112,114,115,184],createfilemap:43,createrepo:12,creation:[38,41,43,135,268],creteria:268,crit:[109,110,153],criteria:268,critic:[29,34,40,44,74,109,153,199],ctrl:[153,258,268],ctx:[11,34,50,51,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,262],cullent:34,cumul:[112,114,115,135],curl:[21,28,29,40,105,131,153,155,158,207,252],current:[17,25,34,38,43,47,50,53,54,55,88,91,95,105,113,135,137,140,142,143,155,205,268,271],current_column:47,current_flag:63,current_nfthread:70,cursor:[38,43,58],custom:[6,7,8,21,29,34,38,40,41,42,43,44,70,92,103,118,135,140,144,145,146,155,177,179,191,195,196,199,200,211,216,221,251,266],customiz:179,cutter:[6,7,12,14],cutter_check_leak:14,cutter_debug:14,cutter_dir:12,cutter_source_path:12,cuttlefish:[31,34],cve:[34,42],cxxflag:30,cycl:44,daemoinz:40,daemon:[40,41,42,43,155,158,159,250,255,272],dai:[34,43,137,184,197,198,199,214,271],daiki:[36,37,38,40],danger:[51,55,95,106,107,108,117,123,142,143,252],dangl:[117,142],danish:[34,224],dash:[29,202,223],dat:[34,39,40,41,44],dat_kei:[104,121,220],data:[0,21,22,23,24,25,26,27,31,32,33,34,38,39,40,41,42,43,44,46,47,50,55,59,70,76,80,91,93,102,103,104,105,112,114,115,121,122,130,135,138,151,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,198,205,207,210,211,212,213,214,215,217,218,220,242,252,258,264,267,268,270,273],data_column:135,data_set_nam:138,databas:[0,20,22,29,34,38,40,41,42,43,44,50,54,55,65,68,93,95,99,103,104,105,106,107,108,119,120,122,123,124,129,130,134,135,140,142,143,147,149,151,153,155,157,158,159,179,195,196,197,200,214,220,242,243,251,256,258,263,264,272],database_path:151,database_unmap:[22,34,43,46,81,123,130],datail:135,dataset1:158,dataset2:158,dataset3:158,dataset:[22,41,43,44,46,138,150,158,159,216,217],date:[0,22,154,165,243,264,271],dav:171,dave:161,david:171,daylight:42,db1:252,db2:252,db_path:[43,123,153,155,156,158,207,250,255,258,268,272],dbm:[0,179],dbmss:0,dcb314:42,dcmake_install_prefix:[7,8,32],ddl:[42,154],deadlock:34,deafult:38,deatil:135,deb:[12,25,31,38,40,41,42,43,44],debian:[12,18,22,23,34,38,40,41,42,43,44,256],debootstrap:12,debug:[6,7,8,34,42,43,44,109,110,146,153,155,199],debugg:[6,7],decid:209,decim:[86,153,197,243,265],decreas:[6,7,33,34,43,70,226],decrement:34,decrypt:12,defalt:36,defaul_valu:162,default_command_vers:[84,137,155,207,258,268,272],default_mod:[171,191],default_token:[44,63,92,112,114,115,122,130,134,135,141,142,143,144,153,154,158,168,169,177,179,182,196,197,198,210,211,212,213,221,224,225,242,261,268,270,271,274],default_valu:162,defin:[34,43,92,122,135,157,158,176,197,198,209,214,216,243,258,268],define_selector:[22,46,81,153],definion:197,definit:[40,47,92,102,105,112,114,115,135,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,210,211,212,213],defrag:[22,38,41,46,81],degrad:43,degre:[38,80,197,265,275],dejan:44,delai:44,delet:[12,18,22,34,35,36,38,40,41,42,43,44,46,65,81,96,104,105,117,148,149,220],delimit:[0,34,41,43,146,219,228,265],delimiter1:236,delimiter2:236,demerit:[34,220],demo:267,dep:12,depend:[0,3,22,23,33,34,39,40,42,44,45,83,92,104,121,135,158,211,212,213,238,270],deprec:[34,38,40,41,42,43,44,74,82,90,115,129,135,137,140,153,165,245],dereferenc:44,deriv:[159,256],descend:[43,135,138,158],describ:[3,5,6,7,8,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,42,43,47,48,74,80,81,83,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,120,121,122,123,126,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,148,150,151,153,155,158,160,169,170,182,196,197,200,204,205,209,210,211,212,213,214,215,216,217,219,228,242,244,258,262,268,270,271],descript:[6,7,8,22,40,41,42,43,44,46,92,93,104,112,114,115,118,119,122,134,135,136,137,140,146,147,155,158,177,196,197,210,214,216,258,259,262,271],descriptor:158,design:[40,135,250,265],desin:256,desktop:[8,32,262],dest:[152,153,265],dest_kei:68,dest_key_s:68,destin:[34,43,63,65,91,139],destruct:[105,151],detail:[0,1,3,12,17,24,25,27,29,31,34,40,41,42,43,44,63,74,80,85,91,92,93,99,104,112,114,115,117,121,122,124,125,129,134,135,136,137,139,140,142,143,144,146,154,155,156,158,177,196,197,199,210,238,242,243,244,256,265,266,268,275],detect:[6,29,34,38,40,43,44,146,155,173],determin:[114,135,195,262,268],dev:[2,6,7,12,14,25,31,34,38,40,41,42,43,44,155],devel:[24,27],develop:[0,3,5,6,7,8,22,23,24,25,27,31,32,40,41,42,43,82,83,224,271],devic:0,dewangga:43,dgrn_with_debug:7,dgrn_with_mrubi:[7,8],dialog:41,dic:[27,28],dicrc:28,dictionari:[27,28,36,40,41,42,43,44,200,238],didn:[42,43,44],diff:12,differ:[19,34,40,42,43,92,104,114,121,135,140,153,155,158,165,171,177,196,197,207,210,211,228,229,230,231,232,233,234,235,237,240,241,252,265,270,275],difficult:0,dig:262,digest:252,digit:[34,42,92,112,114,115,135,140,199,210,217,228,232,235],dinam:195,dinner:0,dir:154,direct:[40,41,252],directli:[34,103,135,197,271],directori:[6,7,17,29,34,38,40,41,42,43,74,155,158,159,209],directory_not_empti:258,disabl:[18,29,34,36,38,39,40,41,42,43,112,114,115,123,135,153,155,158,196,199,216,262],discard:41,discuss:[2,19],disk:[34,43,99,104,120,140,153,155,210,270],disk_usag:121,displai:[34,40,44,176],dist:12,distanc:[0,40,44,165,173,197,205,275],distinct:[33,44,158,273],distribut:[12,23,24,25,26,27,29,31,32,40,42,112,115,214],divid:[0,197,213,265],divis:[34,42],dll:[34,38,40,42,44,74],do_gqpt:154,do_gqtp:154,do_http:154,do_loc:154,do_map:34,doc:[12,16,17,18,34,38,39,40,41,42,43,44,149,155,274],doc_bodi:274,docker:[22,23],dockerhub:26,documenataion:83,document:[0,3,5,6,7,8,12,16,17,21,23,29,34,36,38,39,40,41,42,43,44,76,92,117,135,146,153,155,156,158,160,177,179,196,197,198,210,211,212,213,218,225,226,242,244,263,269,274],document_index:[168,169],document_vers:12,document_version_ful:12,documents_content_index:[177,179],docutil:12,dodaisuk:34,doe:[0,25,40,41,43,44,70,80,135,138,151,155,177,182,196,197,256,265,268],doesn:[29,34,40,41,42,43,44,49,65,74,83,91,92,93,95,99,112,114,115,117,120,121,122,123,131,134,135,136,140,143,145,146,151,155,158,161,171,179,191,196,197,198,200,205,206,209,210,211,213,214,216,217,220,225,226,228,236,238,242,251,252,274],doing:107,domain:[16,40,42,43,44,57,65,74,93,95,141,143,153,272],domain_error:258,don:[17,23,29,34,38,42,43,50,53,54,57,70,80,86,92,93,99,104,106,107,108,112,113,114,115,117,130,135,136,140,153,155,156,158,176,196,197,198,203,207,209,210,211,212,213,219,225,226,228,238,252,255,258,268,272],done:[34,42,49,50,104,135,155],donut:173,dot:[34,40,202,223],doubl:[38,40,41,42,43,118,134,135,140,146,196,197,220,243,268],doubt:266,down:[22,34,41,42,115,135,262,264,271],downcas:200,download:[12,24,25,27,28,29,30,31,32],downtim:[47,251],drastic:44,draw:[202,223,267],drildown:[22,264],drill:[115,135,271],drilldown:[22,34,38,41,42,43,44,78,100,114,220,264,267,271],drilldown_adjust:34,drilldown_calc_target:42,drilldown_calc_typ:42,drilldown_filt:[34,44],drilldown_limit:[43,100,266],drilldown_offset:[43,100,266],drilldown_output_column:[42,100,266],drilldown_result1:135,drilldown_result2:135,drilldown_result:135,drilldown_result_1:135,drilldown_result_2:135,drilldown_result_for_column1:135,drilldown_result_for_column2:135,drilldown_result_for_kei:135,drilldown_result_for_labeled_drilldown:135,drilldown_result_n:135,drilldown_sort_kei:[44,266],drilldown_sortbi:[43,44,100],drilldown_xxx:135,droonga:[171,172,191,214],drop:[34,38,40,41,42,43,44],due:[0,34,179,262],dump:[22,34,36,38,40,41,42,43,44,46,53,81,109,117,142,149,153,155,199,242],dump_config:103,dump_index:43,dump_plugin:43,dump_record:43,dump_schema:43,duplic:[42,44],dure:[25,34,40,104,268],dutch:[34,224],dynam:[0,34,39,44,92,155,268],each:[0,5,23,29,34,38,41,43,44,57,80,85,86,92,93,112,113,114,115,117,119,121,122,131,135,137,138,146,147,149,153,155,158,168,171,176,177,191,197,199,211,216,217,219,220,224,238,258,263,265,266,267,268,269,275],each_nam:43,ealier:40,eanbl:6,ear:146,earch:146,earli:34,earlier:[34,38,43,44,104,148,200,201],easi:[0,34,42,44,153,158,195,209,211,252,272],easier:[34,211],easili:[42,44],echo:123,eclips:17,ecmascript:[40,41,135,195,197],edg:34,edict2grn:42,edict:44,edit:[3,12,21,29,40,44,155,197,209],edit_dist:[22,35,44,46,160,197],editor:17,editrc:38,effect:[34,40,43,104,105,121,153,212,271],effici:[0,44,80,92,113,155,270],egg:270,eight:268,either:[19,41,115,135,161,196,197,210,270],eito:41,elaps:[38,83,137,158,197,199,207,243],elapsed_tim:[34,83,199],element1:[80,197],element2:[80,197],element3:80,element:[34,40,41,42,43,44,63,80,83,87,92,122,179,191,265,268],elfr:40,elimin:41,ellip:[165,166],ellipsoid:166,ello:43,els:[42,43,262],emac:17,embed:[0,34,43,153,155,169,179,209],embedd:43,emerg:[109,110,153,155,199],emfil:262,emit:40,emoji:202,emphas:170,empti:[34,38,41,42,43,63,93,96,97,98,121,134,135,196,243],enabl:[3,6,7,8,12,17,25,29,31,34,36,38,39,40,41,42,43,44,92,114,123,135,140,146,153,155,158,172,173,181,184,191,193,194,196,199,202,214,223,265,266,272,274],enable_tokenized_delimit:146,enablerepo:24,enci:154,enclos:268,encod:[23,34,41,42,43,44,54,56,57,63,74,153,156,158,197,201,203,207,252,258],encodiong:197,encount:[23,24,25,27,31,32],encyclopedia:243,end:[43,152,165,196,197,207,210,236,239],end_of_data:258,end_tagn:168,endian:42,endpoint:[158,159],eng:[138,216],engi:[138,216],engin:[22,24,25,27,31,135,138,146,168,169,179,210,211,212,213,216,217,218,219,256,265,267],enginen:216,english:[2,14,17,18,19,34,38,41,42,44,135,216,224,228],enhanc:45,enorm:[44,219,267],enough:[0,34,42,43,44,92,114,263,270],enourm:34,ensur:[34,43,44,217],enter:[41,43,258,268],entiti:0,entranc:268,entri:[41,43,44,50,59,88,90,91,94,100,101,102,105,106,107,108,112,114,115,130,135,142,151,168,169,182,196,197,242,270,271],entries_20150708:[112,114,115],entries_20150709:[112,114,115],entries_bodi:270,entries_content_index:[135,196,197,242],entries_content_index_20150708:[112,114,115],entries_content_index_20150709:[112,114,115],entries_key_index:[135,196,197,242],entries_key_index_20150708:[112,114,115],entries_key_index_20150709:[112,114,115],entries_numb:43,entries_titl:270,entries_whol:270,entries_yyyymmdd:[112,114,115],entry1:[91,270],entry2:270,entry3:270,entry4:270,entry_20150708:[112,115],entry_20150709:[112,115],entry_bodi:130,entry_kei:130,entry_selector:100,entrykei:142,enumer:268,env:209,envelop:44,enviromn:43,environ:[6,7,8,21,23,29,32,34,38,39,41,42,43,44,155,209],eol:34,epel:[24,34,40],epoch:[265,271],equal:[42,43,44,92,135,138,153,155,171,177,179,191,195,201,209,274,275],equat:165,equival:[63,104],era:0,eric:161,errbuf:34,errno:[42,43,262],error:[0,6,7,22,23,24,25,27,29,31,32,34,38,39,40,41,42,43,44,47,50,51,54,55,57,58,65,73,74,87,91,92,96,98,99,102,104,105,106,107,108,109,110,112,114,115,117,123,124,125,129,130,135,136,139,140,142,143,148,153,155,165,196,199,210,213,256,260,268],error_cod:74,error_loc:83,error_messag:83,error_no_system_resourc:34,errror:210,escal:[23,34,36,40,135,149,153,261],escap:[34,40,41,42,57,168,197],escape_charact:57,escaped_charact:57,escaped_queri:57,escaped_str:57,escaps:[168,169,179],especi:43,essenti:[25,31,155],establish:[258,268],estim:[34,43,44,58,144,263],estimate_s:43,estimated_s:[44,144],etc:[3,12,25,28,34,40,155,209,242,252,256,263,265,268],etim:152,euc:[41,153,239],euc_jp:29,eval:132,evalu:[34,41,43,92,132,134,135,182,196,197,210,239],evaluated_valu:132,evalud:132,even:[0,23,24,25,27,31,32,34,40,41,42,44,63,65,104,114,117,123,135,136,151,197,213,216,270],event:[43,158,252],event_dataset:[157,159],event_queri:[138,157,158,159,216,217,219],event_typ:[157,158],ever:41,everi:[34,266],everyon:272,evil:[158,197],exact:[11,47,92,113,135,140,220],exactli:263,exampl:[0,3,8,12,18,20,22,29,33,34,36,40,41,42,43,44,47,80,83,85,86,88,91,92,93,95,96,97,98,99,102,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,151,153,155,158,160,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,201,202,203,206,209,210,211,212,213,214,216,217,218,219,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,252,260,265,266,267,268,269,270,271,272,273,274,275],exce:[40,41,43,44],exceed:[33,263],excel:209,except:[27,34,38,40,42,43,47,80,91,114,115,121,130,132,133,135,140,146,153,155,171,172,179,191,196,202,205,210,220,224,225,228,236,238,242],exclam:43,exclud:[34,40,41,42,103,105,112,114,115,117,161,202,238],exclude_t:41,exclus:44,excut:41,exe:[12,32,34],exec_format_error:258,execut:[0,22,25,29,32,34,38,40,41,42,43,44,46,47,54,70,80,83,86,88,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,151,155,156,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,201,202,203,206,210,211,212,213,214,216,217,219,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,250,258,265,266,267,268,270,271,272,273,274,275],execute_search:115,executor:[114,115],exist:[1,18,34,40,41,42,43,44,47,55,65,92,104,105,112,114,115,116,117,120,123,131,135,142,151,153,155,159,161,171,172,197,211,214,228,256,258,265,268,270,275],exit:[40,41,43,149,151,153,197],exit_failur:73,exit_success:73,expand:[22,40,41,44,46,124,125,129,135,140,177,209,214],expans:[22,34,38,40,44,135,177,209,264],expect:[42,206,210,212,238,265],experiment:[34,38,39,40,41,42,43,44,50,55,112,118,125,132,133,210,212,213,239],expir:[34,43,88,155],explain:[34,43,103,158,265,268],explan:34,explicitli:[18,40,43,104,135,136,155,203,207,216,252,270],exploit:0,expnas:209,expornenti:197,expr:[47,57],express:[8,22,32,34,38,40,41,43,44,46,57,102,105,133,135,155,165,177,195,236,239,242,270],expression_rewrit:[34,44],ext:146,extend:[42,210,270,274],extens:207,extract:[0,17,29,32,34,40,42,43,44,57,114,135,140,169,179,182,199,202,215,224,226,236,262],extrct:197,f10399c0:12,facebook:[12,22,40],facet:135,fact:[135,267],faction:271,factor:[42,135],fail:[34,38,40,41,42,43,44,49,50,74,91,92,96,99,104,112,114,117,123,124,125,129,135,139,140,142,143,162,196,268],failur:[12,34,40,42,43,44,49],fall:34,fallback:[43,44],fals:[12,34,35,41,42,44,91,92,95,96,98,99,102,106,107,108,109,115,117,120,121,122,123,130,131,134,142,146,148,158,161,168,171,172,177,182,196,197,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,243,265,273],famili:[34,92,146,197],familiar:266,fast:[0,43,76,83,92,105,112,114,115,135,140,146,165,168,169,170,171,172,179,191,196,197,205,210,211,213,220,251,252,267,268,270],faster:[29,34,38,41,42,44,92,114,239,250],fastest:47,fatal:42,fault:40,favorit:17,favorited_bi:271,fbnteqr:43,featur:[0,6,7,8,17,34,38,40,42,43,44,47,54,55,80,86,91,92,112,113,114,115,118,119,125,135,138,140,142,145,146,147,151,153,155,158,165,176,177,195,196,206,209,210,211,212,213,214,215,216,217,218,219,220,251,266,270],fedora:[12,18,22,23,29,36,38,40,41,42,256],feel:[42,210],fetch:[42,219,270],few:[135,251,252],fewer:[34,92],ff01:43,ff1f:43,ff21:34,ff65:[202,223],ff70:[202,223],ff76:201,ff9e:201,ffef:239,fff0:239,fffe:146,fget:43,field:[43,93],figur:205,file:[3,12,18,22,29,32,34,35,38,39,40,41,42,43,44,46,70,83,86,103,123,131,133,135,145,150,151,155,156,158,197,199,214,216,250,251,256,258,262,263,268],file_corrupt:258,file_exist:258,file_too_larg:258,filenam:34,filename_too_long:258,fill:[135,197],filter:[22,25,31,34,38,40,41,42,43,44,46,47,80,91,92,100,102,104,122,131,134,140,144,146,160,161,165,169,171,172,173,176,177,179,182,195,197,206,210,218,219,221,223,224,225,259,261,266,267,271,273,275],fin:66,find:[0,3,17,18,29,32,34,43,44,68,91,95,114,115,135,138,143,168,169,176,179,191,200,206,214,216,217,219,224,226,228,229,230,231,232,238,262,268],finish:[34,43,73,112,131,136,151,199],finnish:[34,224],firefox:17,firewood:[40,41],first:[17,29,32,34,38,41,42,43,44,54,74,83,92,93,104,112,114,115,131,135,140,155,168,169,171,179,184,191,196,197,202,209,210,211,252,256,262,265,267,268,270,271,274],five:[83,161,268],fix:[93,95,121,122,140,165,217,258,263],fix_siz:121,fixed_size_column:34,fixed_size_type_vector_column:43,flag:[33,34,38,39,40,42,43,44,51,54,57,61,63,65,68,69,71,74,80,89,93,95,121,134,141,143,153,154,196,197,200,201,210,220,265,266,267,268,269,270,271,273],flanc:165,flexibl:[0,92,177,195],flow:[3,44,135,252],flower:265,fluent:13,flush:[34,43,44,104],flushviewoffil:43,focus:268,folder:[8,32],follow:[2,17,18,21,25,26,29,32,33,34,38,40,41,42,43,44,47,51,63,73,74,80,83,91,92,93,95,104,105,112,113,114,115,117,118,119,120,121,122,123,134,135,138,140,142,143,145,146,147,151,153,155,156,157,158,159,162,165,168,169,171,173,177,179,181,182,184,191,193,194,196,197,199,205,207,209,210,211,212,213,214,216,217,218,219,226,228,230,231,232,239,242,243,250,252,255,258,262,263,265,266,267,268,272,275],followe:271,fontain:38,foo:34,footnot:[165,268],forc:[34,40,44],force_prefix:[34,43,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241],force_prefix_search:[34,202,223,236,238,240,241],foreground:153,forget:[80,104,106,176],fork:[17,153],form:[34,38,41,44,135,155,195,196,197,201,202,203,223,255,258,268,271,272],form_1:268,form_2:268,format:[17,22,34,39,40,42,43,44,45,46,53,74,81,84,86,87,88,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,109,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,136,137,138,139,140,142,143,145,146,147,148,156,158,177,197,207,210,214,243,252,258,264,265,271,272],former:[47,158,201,209],formula:[165,263],found:[29,32,34,40,41,58,68,114,135,191,206,218,226],four:[83,91,153,171,199,220,238,268],fraction:[0,265,271],fragment:101,francisco:165,frank:161,free:[22,34,38,42,43,50,54,74,89,199,243,258,263],freebsd:[22,43,46],freed:[42,44,50,55,137],french:[34,224],freq0:[158,219],freq1:[158,219],freq2:[158,219],freq:158,frequenc:[42,43,138,144,211,212,213,269],frequency_threshold:[38,138,158,216,217,219],frequent:[34,211],fresh:198,fridai:184,friend:[3,267],friendli:40,friendship:267,from:[0,22,23,30,34,38,39,40,41,42,43,44,45,47,54,55,57,58,70,74,91,92,99,102,103,105,112,114,117,120,122,130,131,135,137,140,142,148,153,155,165,169,170,173,179,191,192,195,196,197,205,206,209,210,212,213,216,217,218,219,225,226,236,252,256,258,262,265,268,270,271,275],from_column:91,from_offic:173,from_stat:173,fromtabl:91,fsf:40,fstack:34,ftb:45,ftp:[12,154],fuku1:34,ful:146,full:[12,22,29,33,34,38,40,42,43,73,80,93,121,135,145,146,155,177,179,191,195,197,201,202,210,211,223,226,236,262,264,265,267,271,274],full_nam:[121,134],fullfil:256,fulli:[40,155],fulltext:[24,25,27,31,34,48,112,114,115,135,140,146,153,168,169,177,179,196,197,200,205,220,256,270],fullwidth:[34,43],fumiyasu:38,funa:42,func:[34,54,66,70,74],functin:197,function_nam:83,function_not_impl:258,furigana:138,further:265,futur:[38,41,80,112,118,132,133,165,210,252,258],fuzzi:[44,140],fuzzy_search:[22,44,46,160],g0763d91:84,ga54c5f8:154,garbag:[34,38,41,42,89,121,158],gat:[266,268,275],gb87d9f8:207,gcc:[24,27,29,30,38,40,41],gdb:[6,7],gem:12,gemfil:40,gener:[3,6,21,34,41,43,50,74,112,114,115,135,144,146,157,210,226,228,239,268],genki:41,geo:[22,38,39,41,58,63,165,264,271,275],geo_dist:[22,38,40,41,46,160,267,275],geo_distance2:[38,165],geo_distance3:[38,165],geo_in_circl:[22,38,41,44,46,160,267,271,275],geo_in_rectangl:[22,35,36,38,41,44,46,160,275],geodet:[243,275],geograph:[165,265],geoindex:267,geoloc:[22,42,46,204,211,212,213],geometri:[38,43],geopoint:165,geosit:267,german:[34,224],get:[0,2,12,17,18,22,25,29,31,34,38,40,42,43,44,50,54,58,74,88,97,112,113,116,123,135,144,145,146,149,153,156,172,197,198,206,207,216,217,219,238,264,266,270,271,272,275],getaddrinfo:40,getenv:43,getter:34,gettext:[17,18],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,34,38,40,41,42,43,44],githubusercont:21,gitter:[2,43,44],gituub:44,give:0,given:[40,41,44,63,180,184,191,262,267],glaser:44,glib:41,global:[18,22,34,40,41,43,46,48,50],glossari:[21,22,46],gmo:42,gnu:[3,5,8,12,18,22,23,29,30,34,38],gnupg2:12,gobject:43,going:0,golubchik:[34,43],gone:267,goo:[196,197],good:[0,17,29,112,114,115,135,144,146,171,191,196,197,198,225,228,238,270],googl:[135,196,211,212,213,218],goronga:32,goroo:250,got:[41,42],gpg:[12,25],gpl:45,gqtp:[0,1,22,24,25,27,31,34,40,41,42,43,87,152,153,154,249,257,272],grab:34,grace:[43,136],gram:[0,34,44,146,197,268],grand:271,graph:0,greas:265,greater:[138,177],greater_equ:177,gregex:41,grep:[24,25,27,31,262],grew:121,grn1:270,grn2:270,grn3:270,grn:[103,155],grn_address_is_in_us:87,grn_address_is_not_avail:87,grn_api:57,grn_arg_list_too_long:87,grn_bad_address:87,grn_bad_file_descriptor:87,grn_between_too_many_index_match_ratio:42,grn_bool:65,grn_bool_rc:54,grn_broken_pip:87,grn_builtin_typ:[65,71],grn_bulk:[44,57],grn_bulk_:34,grn_bulk_vsiz:[54,57],grn_cach:[22,43,46,48],grn_cache_clos:50,grn_cache_current_get:50,grn_cache_current_set:50,grn_cache_default_open:34,grn_cache_get_max_n_entri:50,grn_cache_open:50,grn_cache_set_max_n_entri:50,grn_cancel:[86,87,131],grn_cas_error:87,grn_column:[22,46,48],grn_column_cach:34,grn_column_cr:51,grn_column_get_all_index_data:43,grn_column_index:51,grn_column_index_upd:51,grn_column_nam:51,grn_column_name_id:51,grn_column_name_id_len:51,grn_column_name_kei:51,grn_column_name_key_len:51,grn_column_name_nsubrec:51,grn_column_name_nsubrecs_len:51,grn_column_name_scor:51,grn_column_name_score_len:51,grn_column_name_valu:51,grn_column_name_value_len:51,grn_column_renam:51,grn_column_t:51,grn_column_trunc:[42,51],grn_com_event_stop_accept:262,grn_command_error:87,grn_command_input_get_argu:43,grn_command_vers:[22,46,48,54],grn_command_version_default:43,grn_command_version_max:52,grn_command_version_min:52,grn_command_version_st:52,grn_cond:70,grn_conf_get:43,grn_conf_set:43,grn_config_cursor_get_kei:43,grn_config_cursor_get_valu:43,grn_config_cursor_next:43,grn_config_cursor_open:43,grn_config_delet:[43,96],grn_config_get:43,grn_config_set:43,grn_connection_refus:87,grn_content_json:53,grn_content_msgpack:53,grn_content_non:53,grn_content_tsv:53,grn_content_typ:[22,46,48,54],grn_content_xml:53,grn_ctx:[22,34,40,43,46,48,49,50,51,55,57,58,59,60,61,62,63,64,65,66,67,68,69,71,72,74,113],grn_ctx_at:[40,44,54],grn_ctx_batch_mod:42,grn_ctx_close:[38,42,54],grn_ctx_db:54,grn_ctx_fin:[40,54],grn_ctx_get:[51,54],grn_ctx_get_all_norm:43,grn_ctx_get_all_t:[43,54],grn_ctx_get_all_token:43,grn_ctx_get_all_token_filt:43,grn_ctx_get_all_typ:43,grn_ctx_get_command_vers:54,grn_ctx_get_match_escalation_threshold:64,grn_ctx_get_output_typ:54,grn_ctx_init:[38,54],grn_ctx_is_open:[43,54],grn_ctx_open:[38,54],grn_ctx_output_nul:43,grn_ctx_output_uint64:43,grn_ctx_per_db:[38,54],grn_ctx_recv:42,grn_ctx_send:[44,50,53,54],grn_ctx_set_command_vers:54,grn_ctx_set_fin:54,grn_ctx_set_match_escalation_threshold:64,grn_ctx_set_output_typ:54,grn_ctx_t:87,grn_ctx_use:54,grn_ctx_use_ql:42,grn_cursor_ascend:69,grn_cursor_by_id:69,grn_cursor_by_kei:69,grn_cursor_descend:69,grn_cursor_gt:69,grn_cursor_lt:69,grn_cursor_prefix:69,grn_cursor_rk:69,grn_dat:38,grn_dat_repair:39,grn_db:[22,39,46,48],grn_db_creat:55,grn_db_create_optarg:55,grn_db_float:43,grn_db_int:65,grn_db_kei:[39,104],grn_db_open:55,grn_db_recov:[42,43,44,55],grn_db_register_by_nam:37,grn_db_text:57,grn_db_touch:[36,55],grn_db_unmap:[43,55],grn_default_logger_get_path:40,grn_default_logger_get_rotate_threshold_s:43,grn_default_logger_set_path:[34,40],grn_default_logger_set_rotate_threshold_s:43,grn_default_query_logger_get_path:40,grn_default_query_logger_get_rotate_threshold_s:43,grn_default_query_logger_set_path:[34,40],grn_default_query_logger_set_rotate_threshold_s:43,grn_directory_not_empti:87,grn_domain_error:87,grn_dump_column_create_flag:43,grn_dump_table_create_flag:43,grn_ecmascript:[47,135],grn_enc_default:63,grn_enc_euc_jp:63,grn_enc_koi8r:63,grn_enc_latin1:63,grn_enc_non:63,grn_enc_sji:63,grn_enc_utf8:[56,63,69],grn_encod:[22,34,46,48,63,74],grn_encoding_pars:56,grn_encoding_to_str:56,grn_end_of_data:87,grn_exec_format_error:87,grn_expr:[22,40,42,46,48,100,102,165,210],grn_expr_add_var:57,grn_expr_alloc:57,grn_expr_append_const:[11,34,57],grn_expr_append_const_int:57,grn_expr_append_const_str:57,grn_expr_append_obj:[11,57],grn_expr_append_op:[11,34,57],grn_expr_clos:57,grn_expr_compil:57,grn_expr_creat:57,grn_expr_create_for_queri:11,grn_expr_estimate_s:43,grn_expr_exec:[43,54,57],grn_expr_get_keyword:57,grn_expr_get_var_by_offset:57,grn_expr_optim:34,grn_expr_pars:[34,57],grn_expr_query_no_syntax_error:34,grn_expr_syntax_escap:57,grn_expr_syntax_escape_queri:57,grn_expr_syntax_expand_queri:44,grn_expr_syntax_expand_query_by_t:34,grn_expr_take_obj:44,grn_expr_var:[66,74],grn_fals:[34,54,65],grn_file_corrupt:87,grn_file_exist:87,grn_file_read:43,grn_file_too_larg:87,grn_fileinfo_open:34,grn_filename_too_long:87,grn_fin:[43,73],grn_float_valu:43,grn_function_not_impl:87,grn_geo:[22,46,48],grn_geo_cursor_next:58,grn_geo_cursor_open_in_rectangl:58,grn_geo_estimate_in_rectangl:[38,58],grn_geo_point:[58,63],grn_geo_point_set:63,grn_geo_select_in_circl:38,grn_geo_select_in_rectangl:[38,58],grn_geo_table_sort:43,grn_get_default_cache_base_path:34,grn_get_default_command_vers:52,grn_get_default_encod:56,grn_get_default_match_escalation_threshold:64,grn_get_global_error_messag:43,grn_get_lock_timeout:49,grn_get_package_label:43,grn_hash_siz:43,grn_hash_tini:43,grn_highlighter_clear_keyword:34,grn_hook:[22,46,48],grn_hook_entri:59,grn_hook_get:59,grn_hook_select:59,grn_hook_set:59,grn_id:[51,54,57,60,61,62,65,68,69,74],grn_id_nil:[54,57,68,69],grn_ii:[22,46,48],grn_ii_buff:60,grn_ii_buffer_append:60,grn_ii_buffer_clos:60,grn_ii_buffer_commit:60,grn_ii_buffer_open:60,grn_ii_cursor:43,grn_ii_cursor_clos:43,grn_ii_cursor_next:43,grn_ii_cursor_next_po:34,grn_ii_cursor_open:43,grn_ii_cursor_set_min:43,grn_ii_cursor_set_min_en:[43,44],grn_ii_estimate_size_for_lexicon_cursor:43,grn_ii_estimate_size_for_queri:43,grn_ii_get_flag:34,grn_ii_max_n_chunks_tini:44,grn_ii_max_n_segments_tini:44,grn_ii_overlap_token_skip_en:[34,44],grn_ii_posting_add:44,grn_ii_reduce_expire_en:34,grn_ii_reduce_expire_threshold:34,grn_ii_sel:92,grn_illegal_byte_sequ:87,grn_improper_link:87,grn_in_values_too_many_index_match_ratio:42,grn_inappropriate_i_o_control_oper:87,grn_incompatible_file_format:87,grn_index_chunk_split_en:44,grn_index_column_diff:34,grn_index_cursor:[22,46,48],grn_index_cursor_next:[41,61],grn_index_cursor_open:61,grn_info:[22,46,48],grn_info_typ:62,grn_init:[40,43,70,73,199],grn_input_output_error:87,grn_inspect:[22,46,48],grn_inspect_encod:63,grn_inspect_ind:63,grn_inspect_limit:63,grn_inspect_nam:63,grn_inspect_query_log_flag:63,grn_inspect_typ:63,grn_int32_value_float_valu:43,grn_interrupted_function_cal:[87,131],grn_invalid_argu:[65,68,69,87],grn_invalid_format:87,grn_invalid_seek:87,grn_io_expir:34,grn_io_flush:34,grn_io_open:123,grn_io_use_spars:43,grn_io_vers:42,grn_is_a_directori:87,grn_itoh:38,grn_ja_skip_same_value_put:41,grn_lock_set_timeout:34,grn_log_level:74,grn_log_level_pars:43,grn_log_level_to_str:43,grn_log_path:40,grn_logger:40,grn_logger_info:40,grn_logger_put:34,grn_logger_reopen:40,grn_logical_range_filter_en:43,grn_logical_range_filter_threshold:43,grn_lzo_error:87,grn_match_escal:[22,46,48],grn_mecab_chunk_size_threshold:43,grn_mecab_chunked_tokenize_en:43,grn_memory_get_usag:34,grn_mutex:70,grn_network_is_down:87,grn_ngram_tokenizer_remove_blank_dis:[34,44],grn_ngram_tokenizer_remove_blank_en:34,grn_no_buff:87,grn_no_child_process:87,grn_no_locks_avail:87,grn_no_memory_avail:87,grn_no_space_left_on_devic:87,grn_no_such_devic:87,grn_no_such_device_or_address:87,grn_no_such_file_or_directori:87,grn_no_such_process:87,grn_normalizer_error:87,grn_not_a_directori:87,grn_not_enough_spac:87,grn_not_socket:87,grn_obj:[22,34,40,42,43,46,48,51,54,55,57,58,59,60,61,62,63,66,67,68,69,71,72,74],grn_obj_add_hook:59,grn_obj_append:65,grn_obj_cast:43,grn_obj_cast_by_id:65,grn_obj_check:65,grn_obj_clear_lock:[38,65],grn_obj_clear_option_valu:34,grn_obj_clos:[11,42,43,54,61,65],grn_obj_column:65,grn_obj_column_index:[51,61],grn_obj_column_scalar:51,grn_obj_column_vector:51,grn_obj_compar:65,grn_obj_compress_lzo:51,grn_obj_compress_zlib:[44,51],grn_obj_db:55,grn_obj_decr:65,grn_obj_defrag:65,grn_obj_delete_by_id:[38,65],grn_obj_delete_hook:59,grn_obj_expir:65,grn_obj_fin:[54,57],grn_obj_flag:[51,57,68,71,74],grn_obj_flush:43,grn_obj_flush_recurs:43,grn_obj_get:65,grn_obj_get_disk_usag:34,grn_obj_get_element_info:62,grn_obj_get_hook:59,grn_obj_get_info:62,grn_obj_get_nhook:59,grn_obj_get_rang:65,grn_obj_get_valu:[38,65],grn_obj_id:65,grn_obj_incr:65,grn_obj_init:65,grn_obj_is_accessor:43,grn_obj_is_builtin:[38,65],grn_obj_is_corrupt:34,grn_obj_is_data_column:34,grn_obj_is_expr:34,grn_obj_is_function_proc:43,grn_obj_is_index_column:[34,65],grn_obj_is_key_accessor:43,grn_obj_is_lock:65,grn_obj_is_normalizer_proc:43,grn_obj_is_number_family_bulk:34,grn_obj_is_proc_proc:43,grn_obj_is_scalar_column:34,grn_obj_is_scorer_proc:43,grn_obj_is_selector_proc:43,grn_obj_is_t:43,grn_obj_is_text_family_typ:44,grn_obj_is_token_filter_proc:43,grn_obj_is_tokenizer_proc:43,grn_obj_is_tru:43,grn_obj_is_typ:43,grn_obj_is_vector_column:[34,65],grn_obj_key_float:71,grn_obj_key_int:71,grn_obj_key_norm:68,grn_obj_key_uint:71,grn_obj_key_var_s:71,grn_obj_key_with_si:68,grn_obj_lock:65,grn_obj_nam:65,grn_obj_own:43,grn_obj_path:[41,65],grn_obj_path_by_id:[39,65],grn_obj_persist:[51,68],grn_obj_prepend:65,grn_obj_reindex:43,grn_obj_reinit:65,grn_obj_remov:[38,43,65],grn_obj_remove_depend:44,grn_obj_renam:65,grn_obj_search:[44,67],grn_obj_set:65,grn_obj_set_element_info:62,grn_obj_set_fin:66,grn_obj_set_info:62,grn_obj_set_mask:65,grn_obj_set_valu:[65,69],grn_obj_table_dat_kei:38,grn_obj_table_hash_kei:[68,69],grn_obj_table_no_kei:[68,69],grn_obj_table_pat_kei:[68,69],grn_obj_type_to_str:44,grn_obj_unlink:[54,65],grn_obj_unlock:65,grn_obj_user_data:72,grn_obj_vector:[54,57,65],grn_obj_with_posit:51,grn_obj_with_sect:51,grn_obj_with_weight:51,grn_object_corrupt:87,grn_op_adjust:[11,44,67],grn_op_and:[11,67],grn_op_and_not:67,grn_op_but:11,grn_op_cal:11,grn_op_fuzzi:44,grn_op_get_valu:34,grn_op_or:[11,67],grn_op_push:11,grn_op_term_extract:43,grn_oper:[51,57,58,67,68],grn_operation_not_permit:87,grn_operation_not_support:87,grn_operation_timeout:87,grn_operation_would_block:87,grn_operator_to_exec_func:34,grn_order_by_estimated_size_en:34,grn_p:63,grn_p_geo_point:63,grn_p_ii_valu:63,grn_parse_query_flag:43,grn_pat_at:36,grn_pat_cursor_next:43,grn_pat_del:43,grn_pat_fuzzy_search:44,grn_permission_deni:87,grn_persistent_cache_open:34,grn_plugin_calloc:44,grn_plugin_charlen:74,grn_plugin_command_cr:[42,74],grn_plugin_error:[74,87],grn_plugin_expr_var_init:[42,74],grn_plugin_fin:74,grn_plugin_fre:74,grn_plugin_get_nam:43,grn_plugin_get_ruby_suffix:43,grn_plugin_get_suffix:38,grn_plugin_get_system_plugins_dir:38,grn_plugin_init:74,grn_plugin_isspac:74,grn_plugin_log:74,grn_plugin_malloc:74,grn_plugin_mutex:74,grn_plugin_mutex_clos:74,grn_plugin_mutex_lock:74,grn_plugin_mutex_open:74,grn_plugin_mutex_unlock:74,grn_plugin_proc_alloc:74,grn_plugin_proc_get_cal:34,grn_plugin_proc_get_value_mod:34,grn_plugin_proc_get_var:[42,74],grn_plugin_proc_get_var_bool:44,grn_plugin_proc_get_var_by_offset:[42,74],grn_plugin_proc_get_var_int32:44,grn_plugin_proc_get_var_str:44,grn_plugin_realloc:74,grn_plugin_regist:[37,74],grn_plugin_win32_base_dir:[43,74],grn_plugin_windows_base_dir:[43,74],grn_plugins_dir:[34,43],grn_plugins_path:34,grn_post:[58,61],grn_proc:[22,46,48],grn_proc_creat:66,grn_proc_func:[54,66,74],grn_proc_funct:74,grn_proc_get_info:66,grn_proc_get_typ:42,grn_proc_is_st:34,grn_proc_set_is_st:34,grn_proc_set_selector:42,grn_proc_typ:66,grn_ptr:43,grn_ptr_init:[54,57],grn_ptr_value_at:[54,57],grn_pvector:[43,54,57],grn_qlog_path:40,grn_queri:40,grn_query_expander_tsv_synonyms_fil:209,grn_query_log_show_condit:34,grn_query_logger_get_flag:63,grn_range_error:87,grn_raw_str:34,grn_rc:[49,50,51,52,54,55,56,57,58,59,60,62,64,65,66,67,68,69,73,74],grn_read_only_file_system:87,grn_request_canceler_cancel_al:44,grn_resource_busi:87,grn_resource_deadlock_avoid:[65,87],grn_resource_temporarily_unavail:[34,87],grn_result_too_larg:87,grn_retry_max:87,grn_scan_info_regexp_dot_asterisk_en:34,grn_scorer_error:87,grn_search:[22,46,48],grn_search_optarg:[43,67],grn_select:135,grn_selector_func:42,grn_set_default_cache_base_path:34,grn_set_default_command_vers:52,grn_set_default_encod:56,grn_set_default_match_escalation_threshold:64,grn_set_lock_timeout:49,grn_snip:[40,42],grn_snip_clos:42,grn_sock:262,grn_socket_is_already_connect:87,grn_socket_is_already_shutdown:87,grn_socket_is_not_connect:87,grn_socket_not_initi:87,grn_stack_over_flow:87,grn_success:[49,50,51,54,55,57,65,73,74,87,199],grn_syntax_error:87,grn_t:43,grn_tabl:[22,46,48],grn_table_add:68,grn_table_apply_expr:34,grn_table_at:[36,39,65,68],grn_table_column:68,grn_table_cr:68,grn_table_cursor:[22,46,48,61],grn_table_cursor_clos:69,grn_table_cursor_delet:69,grn_table_cursor_get_kei:69,grn_table_cursor_get_valu:69,grn_table_cursor_next:[36,69],grn_table_cursor_open:[36,69],grn_table_cursor_set_valu:69,grn_table_cursor_t:69,grn_table_dat_kei:68,grn_table_delet:[43,68],grn_table_delete_by_id:[43,68],grn_table_differ:68,grn_table_find_reference_object:34,grn_table_fuzzy_search:44,grn_table_fuzzy_search_with_transposit:44,grn_table_get:[39,68],grn_table_get_kei:68,grn_table_group:[43,68],grn_table_group_flag:[43,68],grn_table_group_result:68,grn_table_hash_kei:[58,68],grn_table_lcp_search:68,grn_table_pat_kei:68,grn_table_renam:68,grn_table_s:[11,68],grn_table_select:[3,57],grn_table_select_and_min_skip_en:34,grn_table_select_enough_filtered_ratio:[34,44],grn_table_select_sequenti:44,grn_table_setoper:[34,44,68],grn_table_sort:68,grn_table_sort_asc:68,grn_table_sort_desc:68,grn_table_sort_flag:68,grn_table_sort_kei:68,grn_table_trunc:[38,68],grn_table_upd:68,grn_table_update_by_id:68,grn_text_init:63,grn_text_len:[57,63],grn_text_printf:42,grn_text_valu:[57,63],grn_text_vprintf:42,grn_thread_:[22,46,48],grn_thread_get_limit:[43,70],grn_thread_get_limit_func:70,grn_thread_set_get_limit_func:[70,145],grn_thread_set_limit:70,grn_thread_set_limit_func:70,grn_thread_set_set_limit_func:[70,145],grn_token_filter_error:87,grn_tokenize_onli:44,grn_tokenizer_error:87,grn_tokenizer_query_open:40,grn_too_large_offset:87,grn_too_many_link:87,grn_too_many_open_fil:87,grn_too_many_open_files_in_system:87,grn_too_many_symbolic_link:87,grn_too_small_limit:87,grn_too_small_offset:87,grn_true:[54,65],grn_type:[22,46,48,63],grn_type_cr:71,grn_unknown_error:87,grn_unsupported_command_vers:87,grn_update_not_allow:87,grn_user_data:[22,46,48,66,74],grn_vector_pop_el:43,grn_void:44,grn_wgs84_geo_point_init:63,grn_window_function_error:87,grn_window_get_s:34,grn_zlib_error:87,grn_zstd_error:87,grndb:[22,34,42,43,44,46,123,150],grnline:268,grnslap:[22,46,150],grntest:[12,13,36,38,40,44],grnwrap:268,gro:[158,179],gronga:[209,218],gronnga:218,groo:[135,158],groonga1:82,groonga:[1,2,13,16,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,36,37,38,39,40,41,42,43,44,46,47,48,49,50,53,65,70,73,74,76,80,81,82,83,84,86,91,92,93,95,99,103,104,105,109,112,114,115,117,118,122,123,124,125,129,131,134,135,136,137,138,140,143,145,146,149,150,151,165,168,169,170,171,172,177,179,182,191,193,195,196,197,198,199,200,201,204,205,206,207,209,210,211,213,214,215,216,217,218,219,220,221,224,226,228,236,237,242,243,249,250,251,252,255,258,262,263,265,266,267,268,269,270,271,272,273,274,275],groonga_cache_base_path:34,groonga_cache_limit:41,groonga_cli:197,groonga_clone_dir:12,groonga_databas:252,groonga_database_auto_cr:[40,41],groonga_default_command_vers:252,groonga_dir:12,groonga_dist:40,groonga_get_thread_limit:70,groonga_log_level:41,groonga_log_path:41,groonga_n_record:41,groonga_org_path:12,groonga_path:154,groonga_query_log_path:[41,42],groonga_release_d:12,groonga_set_thread_limit:70,groonga_vers:[12,38],groongau0000ful:237,grooon:158,grooonga:34,group:[0,34,40,41,42,43,44,112,114,115,135,182,220,265,266,271],group_kei:34,grroonga:218,gtar:30,gted:17,gtihub:38,guard:[43,105,213],guess:29,gui:134,gurun:195,gurunavi:[34,43,44],gzcat:44,gzip:[29,40,251],gzip_typ:252,had:[17,34,43,44,211],hai:11,half:[34,201,202,223],halfwidth:[201,202,223],hana:267,hanako:102,hand:[0,18,43,44,135,155,158,177,182,265,270],handl:[34,41,42,43,44,54,87,92,155,220,229,230,231,232,233,234,235,242,263,265],hang:41,hanleabl:92,happen:34,hard:242,has:[0,12,19,33,34,40,41,42,43,44,45,47,49,54,58,68,74,76,80,83,92,93,95,102,112,114,115,117,118,119,121,122,123,131,134,135,138,140,142,143,145,146,147,151,153,155,156,157,158,161,162,165,168,169,171,176,179,182,184,191,195,196,197,198,199,200,202,204,205,207,209,210,211,212,213,214,215,217,218,221,223,224,225,226,228,229,230,231,232,236,238,242,251,252,258,265,266,267,268,270],hash:[34,38,40,41,43,44,92,103,122,134,140,197,220],hash_index:271,hash_kei:[34,104,121,122,220],hash_tag:271,hashidatk:34,hasn:[201,203,228,229,230,231,232,233,234,235,237,239,240,241],hat:29,hatak:[42,43],have:[0,6,7,16,17,21,29,34,42,43,53,55,76,83,87,91,92,93,112,114,115,117,121,122,135,136,138,140,142,151,155,158,176,196,197,198,200,205,209,210,214,217,219,221,225,228,242,243,251,252,256,265,268,272],haystack:11,hdd:154,head:[42,135,152,155,258],header:[30,40,41,42,43,63,86,87,88,91,92,93,95,99,102,104,105,107,109,112,113,114,116,117,118,119,120,121,123,124,125,129,130,131,132,133,135,136,137,139,140,142,143,145,146,147,148,252],heavi:[34,104,135,202,223,250],held:43,hello:[43,112,114,115,135,144,196,197,198,225,226,228,231,232,236,239,270],help:[16,17,23,34,41,135,151,153,206,210,211,218,238],hemispher:40,hendro:41,here:[6,7,8,17,18,21,29,31,32,34,47,50,53,54,55,57,63,70,73,74,76,80,84,85,86,87,88,91,92,93,95,96,97,98,102,103,104,105,106,107,108,112,113,114,115,116,117,118,119,121,122,124,125,129,130,131,132,133,134,135,136,137,138,140,142,143,144,146,147,148,151,153,155,157,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,199,200,201,202,203,205,209,210,211,212,213,216,217,219,220,221,223,224,225,226,228,229,230,231,232,236,237,238,242,252,258,266,270,275],hereaft:0,hex:[197,267],hidden:[0,34],hide:41,hideki:[41,42,43],high:[0,34,80,135,195,212],high_scor:91,higher:[92,135,138],highight_ful:168,highli:[211,212,213],highlight:[34,44,168,169],highlight_ful:[22,34,42,44,46,160,169],highlight_html:[22,34,42,43,44,46,160,168],hino:41,hint:262,hiragana:[34,176,196,197,202,206,216,223,228],hiro:43,hiroaki:[43,44],hiroshi:[38,42,43,44],hirotaka:43,hiroyuki:[43,44],histori:[34,38],hit:[34,41,92,135,195,273],hmm:271,hobbi:199,hoge:[153,163],hold:[265,269],home:[12,29,112,115,117,239],homebrew:[12,22,23,42,44],homepag:154,hook:[21,117],horikoshi:38,horimoto:[34,112,115,117],horizont:[202,223],host1:210,host2:210,host:[6,7,8,21,38,154,158,210,214,258,272],host_name_or_ip_address:[258,272],hostnam:[40,153,154,155,156,258],hottolink:45,hour2:114,hour:[49,197,199,271],how:[4,18,21,22,23,24,25,26,27,28,29,30,31,32,34,40,42,43,44,46,74,92,112,113,115,117,134,135,142,158,165,171,177,191,197,205,210,211,212,213,215,238,242,249,255,260,265,266,267,268,270,271],how_to_use_range_index:113,howev:[0,34,112,114,115,236],howto:[34,44],html:[3,12,36,38,40,42,44,155,156,168,169,179,252],html_untag:[22,41,46,160],htpasswd:[155,252],http:[0,1,12,13,17,21,22,24,25,27,28,29,30,31,32,34,40,41,42,43,44,46,80,103,105,131,135,150,152,153,154,155,158,170,171,172,191,210,219,236,249,250,262,264,265,266,267,268,270,275],httpd:[12,22,24,25,27,31,34,38,39,40,41,42,43,44,46,50,131,145,150,157,199,218,249,251,252],httprewritemodul:155,hubeni:165,human:[93,140],hypertext:[22,264],hyphen:[34,92,140,202,223,268],i18n:[3,15,18,22,44],i386:[12,38],i686:154,ichii:38,id_column:51,idea:135,identifi:[34,47,91,102,243],ideograph:[34,43],idf:[42,211,212,213],ieee:243,iff:268,ignor:[34,38,40,41,42,43,44,55,102,104,118,131,135,146,196,209,220,225,229,230,231,232],ii_buff:60,ill:259,illegal_byte_sequ:258,illustr:266,imag:[22,23,34],imagin:[135,266],immedi:[0,43,44,131,136,155,158],immut:121,implement:[17,38,40,42,43,44,45,86,91,92,112,115,132,133,135,155,156,165,176,197,213,214,220,250,251],implemnt:251,implicitli:270,improper_link:258,improv:[104,155,172,195,197,256],in_record:[22,34,46,160],in_valu:[22,34,42,43,44,46,160],inaccur:40,inada:41,inappropriate_i_o_control_oper:258,inc:[34,42,43,44],includ:[6,16,34,41,42,43,44,83,91,93,95,105,112,114,115,117,118,121,123,124,125,129,132,133,135,143,144,146,158,161,179,191,197,209,212,213,228,236,238,252,268],include_class:34,include_form:34,include_read:[34,202],inclus:[34,161],incompat:[34,40,41,42,43,44],incompatible_file_format:258,incomplet:44,incorrect:[34,42],incorrectli:34,increas:[0,6,7,34,43,70,80,92,119,132,135,137,146,147,158,165,210,213,226,242],increment:[34,85,151],incres:42,indent:63,independ:[0,113,155,202,238],index:[12,17,22,34,38,39,40,41,42,43,44,45,46,55,58,60,61,63,65,76,80,93,103,104,112,113,114,115,117,121,130,135,142,144,151,153,171,176,179,196,197,205,220,226,239,242,264,271],index_1:134,index_2:134,index_blog:270,index_column:[42,43,44,104,135],index_column_df_ratio:34,index_column_df_ratio_between:34,index_column_diff:34,index_column_nam:134,index_column_name_with_table_nam:134,index_column_source_record:34,index_friend:267,index_larg:[34,92,121],index_medium:[92,121],index_messag:270,index_n:134,index_point:267,index_smal:[92,121],index_tag:267,index_titl:270,indexblog1:270,indexblog2:270,indexbuf:51,indic:[41,63,146,165,199,268,273],infin:34,infinit:[38,40,42,43,140],inflected_form:[34,238],inflected_typ:[34,238],influenc:[153,155],info:[34,43,44,92,109,110,151,153,155,210,213],inform:[0,2,17,22,34,39,40,41,43,44,50,54,93,114,121,122,124,129,132,133,134,135,151,153,199,200,264,267,271],inherit:41,inhibit:39,init:[25,29,40,41,42,66],initi:[34,38,40,42,43,44,54,73,74,112,114,115,135],innodb:0,input:[34,38,41,44,53,83,103,105,135,197,206,216,217,218,219,223,258,268],input_file_nam:83,input_output_error:258,insensit:[135,176,210],insert:[40,179,268],inspect:[34,41,42,43,44,63,121,134],inst:41,instal:[0,3,12,14,21,22,24,25,26,27,28,30,31,34,38,40,41,42,43,44,74,156,238,256],instant:22,instantli:[0,179],instead:[21,23,27,29,32,34,38,40,41,42,43,44,54,63,74,90,92,104,115,121,129,135,137,140,151,153,155,165,168,169,177,179,195,196,197,200,203,205,210,220,245,256,258,274],instroduc:41,instruct:[34,44,158],insuffici:[44,265],int16:[36,41,121,122,134],int32:[34,40,41,42,43,80,91,95,115,121,122,134,135,138,140,143,148,158,161,165,173,177,196,197,211,212,213,216,217,219,261,266,267,268,270,271,275],int64:[41,42,115,121,122,134,135,162],int8:[36,41,42,121,122,134,265],integ:[43,44,80,87,121,122,135,145,153,243,258,265,268],integr:[21,40,41,265],intel:154,intend:[40,42,182,196,270],intens:155,interact:[258,268],interest:[3,43,210,268],interfac:[40,158,207,268],intern:[39,41,42,43,44,50,53,54,63,104,121,122,179,265],internet:[0,195],interpret:[12,39,196,236],interrupt:34,interrupted_function_cal:258,interv:[44,197],introduc:[3,34,42,43,44],introduct:[3,15,17,22,42,46,103,138,215,258,268,272],introspect:40,intuit:273,inv_res_column:154,inv_thread_column:154,invalid:[34,38,40,41,42,43,44,56,63,74,92,104,135,140],invalid_argu:258,invalid_format:258,invalid_seek:258,invers:[42,211,213],invert:[22,38,40,42,43,44,92,179,197,267,268],investig:[34,41,44,262,263,266],io_flush:[22,34,43,44,46,81],ipa:27,ipad:[27,28,238],iptabl:[252,272],is_a_directori:258,is_anim:265,is_popular:[112,114,115,135],is_removable_t:142,is_stop_column:225,is_stop_word:[34,42,43,144,225],isn:[6,7,8,29,34,40,41,42,43,44,47,54,55,65,70,83,86,88,92,93,104,105,112,113,114,115,117,121,132,133,134,135,138,140,142,153,155,179,191,196,209,214,216,217,218,226,228,238,258],iso:197,isob:41,isssu:41,issu:[3,22,34,41,42,43,44,256,263,264],itagaki:36,italian:[34,224],item:[34,43,47,96,97,98,135,138,140,149,158,176,216,217,219,220,252,256],item_:138,item_dataset:[157,219],item_queri:[138,157,158,216,217,219],item_query_kana:158,item_query_kei:158,items_index:176,iter:[43,197],its:[3,20,34,40,43,57,70,74,80,92,93,104,105,112,115,117,134,135,142,143,151,171,197,199,212,216,255,258,262,265,268,271,272],itself:[34,41,42,80,146,196,209,210],ivh:27,iwai:[39,40,41,44],iwamatsu:44,jacob16bit:43,jame:273,jan:[34,271],januari:197,japan:[102,216,266,272,275],japanes:[0,2,17,19,34,40,42,196,197,206,216,228,238],jason:273,javascript:[12,22,38,155,156,264,272],jeff:273,jekyl:12,jemalloc:42,jennif:273,jersei:271,jessi:[12,25,34,41,42,43],jinja2:12,jira:44,jiro:267,job:154,john:[102,273],join:2,joseph:273,jqueri:42,json:[34,36,38,40,42,43,44,53,80,84,105,138,155,156,207,252,258,268],jsonp:[43,158],juli:[34,43],juman:27,jumand:27,jun:[42,43],just:[6,7,17,21,23,24,25,27,29,30,31,32,34,38,40,41,42,43,50,55,65,73,83,84,88,92,95,102,112,117,118,120,121,124,129,131,132,133,135,140,142,143,146,151,153,157,158,177,196,197,198,199,209,211,214,216,226,236,251,252,271],kagami:43,kakesa:43,kamicup:34,kana:[34,138,157,158,206,216,217,219,238],kanako:41,kanji:[206,228],kare:202,kashihara:42,katagiri:41,katakana:[34,138,176,201,202,206,216,223,228],kawada:42,kawaji:40,kazuhiko:[40,42,44],kazuhiro:41,keep:[33,34,38,44,50,54,80,86,151,155,198,212,213,238],kei:[0,12,22,33,34,39,40,41,42,43,44,47,63,65,68,69,80,91,92,102,105,112,114,117,121,131,134,137,138,140,142,149,151,158,177,196,197,200,206,220,226,264,265,266,267,268,274],ken:267,kenichi:[36,38],kentaro:41,kept:[34,114,115,135],kernel:[40,242],key1:[34,91],key2:34,key_1:134,key_2:134,key_column:51,key_float:122,key_geo_point:122,key_index:142,key_int:122,key_larg:[33,44,140,220],key_length:258,key_n:134,key_nam:[115,135],key_norm:[40,43,140,200,201],key_siz:68,key_typ:[68,92,134,135,153,154,265,266,267,268,270,271,273],key_uint:122,key_valu:34,key_var_s:122,key_with_si:[140,196,197,273],keyboard:135,keybuf:68,keyr:[25,40],keys_zon:155,keyword1:[40,168],keyword2:[40,168],keyword:[34,40,41,44,57,113,135,140,168,169,177,179,196,210,211,212,213,218,267,268,270],keyword_cont:57,keyword_s:57,kfc:205,kill:136,kind:[0,63,243,266,268,274,275],kinjir:267,kisk:40,kitaiti:44,kiyokawa:44,klose:43,know:[43,92,104,135,151,226,266,267,271],knowledg:0,known:[0,41,179,197,211,268,272],koi8r:[29,40,153],koji:40,konishi:41,korea:266,kosuk:41,kouhei:41,kuriyama:[42,43],kwic:179,kytea:[29,34,40,41,146],label1:[42,115,135],label2:[115,135],label:[34,41,42,43,44,91,176],label_1:135,label_2:135,label_n:135,labeledargu:34,lack:262,lager:41,lake:205,langasek:44,languag:[0,1,3,20,21,34,41,42,44,224,228,238],larg:[0,34,40,43,44,121,151,196,197,202,214,220,223,226,242,252,265],larger:[34,42,43,80,86,92,99,114,115,121,122,135,140,153,159,179,219,220,242,258],larget:131,largetext:220,last:[34,40,43,54,146,158,228,262],last_modifi:271,lat:154,late:135,latenc:154,later:[34,38,40,41,42,43,44,91,104,105,112,114,115,131,135,153,168,169,170,182,200,201,210,214,268],latest:[2,6,7,8,24,26,42,43,44,135],latin1:[29,40],latin:[34,153],latinov:44,latitud:[22,63,197,264,271,275],latitude_in_degre:197,latitude_in_degreexlongitude_in_degre:197,latitude_in_msec:197,latitude_in_msecxlongitude_in_msec:197,latter:[47,158,201,209],launch:159,launchpad:[12,31,42],layer:43,layout:12,lc_messag:17,lcov:14,lead:[112,114,115,135,179,268],leak:[34,36,38,40,41,42,43,44,137],leakag:274,leaner:159,lear:219,learn:[41,112,114,115,135,138,165,215,266,270],learner:[22,42,44,46,150,157,218],least:[34,40,43,88,92,171,182,196,242,263],left:[34,44,58],left_hand_side_el:44,leftmost:197,lemon:[47,135],length:[34,40,44,74,265],less:[34,42,43,44,86,135,140,153,171,177,179,191,195,198,210,212,213,242,243,256,275],less_equ:177,let:[22,80,112,114,115,135,142,165,198,228,262,264,265,267,268,270,274,275],letter:[34,201,202,223],level:[34,40,41,42,43,44,74,92,109,110,153,155,159,199,258,266],lexcon:268,lexicon2:270,lexicon:[22,34,43,44,92,103,104,130,142,144,177,182,198,200,210,220,225,264,270],lexicon_t:154,lgpl:45,lib:[28,36,41,114,124,125,129,151,155,256,262],libedit:[27,29,38,40,43],libev:[25,29,31,39],libgcc_s_sjlj:42,libgroonga:[20,34,268],liblz4:25,liblzo2:31,libmecab:[12,25,31],libmemcach:14,libmsgpack:[25,31],librari:[1,20,22,23,34,40,41,42,43,44,48,53,73,145,153,195,196,211,250,256,262,268],libstemm:42,libtool:[6,43],libwinpthread:42,libzmq3:25,libzmq:31,libzstd:25,lic:171,licens:[12,40,42,45],life:43,lifecycl:21,light:[95,120,122,143,202,223,250],like:[2,22,29,34,42,43,51,63,80,93,95,105,112,114,115,120,121,123,135,138,143,153,155,158,165,176,177,182,195,196,197,205,210,212,213,216,228,240,241,250,252,264,266,271],limit:[22,34,35,38,40,41,42,43,44,46,58,68,69,100,131,138,153,155,165,182,195,196,197,199,211,212,214,219,242,264,267,268,270,272],line:[6,7,8,14,17,18,21,29,32,34,38,40,42,43,54,63,83,103,105,134,155,165,196,205,209,210,214,250,251,252,262,268],line_cont:83,line_numb:83,link:[34,40,42,43,135,196,197,265,266,272],linux:[3,5,8,12,18,22,23,26,34,38,40,46,154],lion:40,lisp:34,list:[3,12,13,17,18,22,25,34,40,42,43,44,57,63,93,104,113,116,119,121,122,135,140,147,153,155,157,159,196,197,200,205,262,265,267,268,271],listen:[34,40,155,252,258,262,272],liter:[38,40,41,44,168,169,179,196,210,239],littl:[135,153,155],live:[140,271],lldb:[6,7],llt:146,load:[22,34,36,38,39,40,41,42,43,44,46,47,81,90,91,92,95,99,102,103,104,112,114,115,117,120,121,124,129,133,135,138,140,143,144,148,151,153,154,158,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,209,210,211,212,213,214,216,217,219,224,225,243,252,261,264,265,266,267,270,273,274,275],load_column:34,load_tabl:34,load_valu:34,loaded_id:[44,105],loaded_record:105,loaded_valu:133,loadedlog:34,local:[0,6,7,12,17,18,28,29,34,114,153,155,197],localeoutput:34,localhost:[12,105,131,152,153,154,155,158,207,252,258],localstatedir:23,locat:[21,22,34,40,41,42,44,83,153,155,205,252,264,265,266,271,272],location_in_groonga:83,location_in_input:83,location_str:271,lock:[22,34,38,40,41,43,44,49,55,74,104,105,106,107,108,179],lock_acquir:[22,43,46,81,108],lock_clear:[22,34,42,43,46,81,90,106,108],lock_releas:[22,43,46,81,106],lock_tabl:34,log1:91,log:[12,22,23,34,38,40,41,42,43,44,46,54,74,91,92,104,109,112,114,115,116,117,120,123,130,135,140,153,154,155,158,210,212,213,214,216,217,219,220,251,256,263],log_20160320:117,log_level:[22,34,43,46,81,92,110,111,151,153,199],log_put:[22,43,46,81,109,111,153],log_reopen:[22,44,46,81,109,110],log_repoen:40,logal:21,logger:[40,43,63],logic:[40,43,44,112,114,115,116,135,171,214,226],logical_:[113,214],logical_count:[22,34,43,46,81,137,214],logical_paramet:[22,43,46,81,214],logical_range_filt:[22,34,43,46,81,112,113,137,214],logical_select:[22,34,43,44,46,81,112,114,117,137,214,244],logical_shard_list:[22,43,46,81,117,214],logical_table_nam:[112,114,115,214],logical_table_remov:[22,34,43,44,46,81,104,214],logicalcountcommand:112,logicalrangefiltercommand:114,logicalselectcommand:115,logicaltableremovecommand:117,login:242,logo:40,logrot:[40,42,43],logs_20150203:[112,115,117,135],logs_20150204:115,logs_20150801:116,logs_20150802:116,logs_20150814:214,logs_20150815:214,logs_20150930:116,logs_20160318:117,logs_20160319:117,logs_20160320:117,logs_20160320_:117,logs_20160320_timestamp:117,logs_20170415:[112,114,115],logs_20170416:[112,114,115],logs_message_index:210,logs_timestamp:130,logyyyymmddhhmmss:158,london:165,longer:[34,45,54,63,106,121],longest:[38,68,197],longitud:[22,63,197,264,271,275],longitude_in_degre:197,longitude_in_msec:197,longitudexlatitud:41,longtext:[47,58,92,121,122,134],look:87,lookahead:236,loop:[40,42,43,44],loos:[34,162],loose_blank:34,loose_items_index:176,loose_symbol:34,looseitem:176,lost:[34,44,223],lot:41,love:270,lower:[92,135,140,146,210,268],lowercas:210,lowest:135,lru:88,lte:146,lucid:[36,41],lunch:0,lz4:[23,34,42,44,92,121,134],lzo:[38,40,41,42],lzo_error:258,m64:30,mac:[22,23,36,40,42,44],machin:[42,153],maco:34,macport:[22,23,38],macro:[34,38,41,42,43,262],made:[34,38,40,43,268],madrid:165,magazin:135,magnitud:[114,115],mai:[0,20,29,33,34,38,40,41,42,43,44,50,51,55,70,83,92,93,95,104,105,106,107,108,112,114,118,120,131,132,133,134,137,138,140,142,143,151,155,158,171,196,197,209,210,211,212,213,220,223,228,238,239,242,252,267,270],mail:[3,17,22,43],mail_column:154,mailarch:12,main:[12,25,70,115],mainli:[42,103,271],mainlin:[42,43],mainstream:0,maintain:238,mainten:[224,238],maintenait:224,maintenir:224,major:[23,34],make:[0,14,17,18,19,23,24,25,27,28,30,31,34,42,44,74,152,153,154,155,179,198,268,272,273],makecach:40,makefil:[7,8],makoto:44,malfunct:43,malloc:42,man:44,manag:[0,18,21,29,47,54,55,85,99,121,131,149,151,153,155,179,209,220,252,272],mani:[0,3,17,29,33,34,38,41,42,43,44,70,80,92,104,112,114,115,117,122,135,140,142,144,146,155,157,179,196,197,210,211,212,213,218,220,242,250,251,252,256,262,265,266,268],manipul:195,manner:[135,268],manual:[22,42,198],map:[34,38,43,47,91,99,135,199,216,242,263],map_hugetlb:38,mariadb:[41,42,44],mark:[34,39,42,43,44,92,140,201,202,223,225,239,256,271],marku:40,markup:[16,43],masafumi:[41,42,44],masaharu:[39,40,41,44],masahiro:[36,41,42],masanori:44,masatoshi:[34,43],massachusett:271,master:[17,21,155],match:[23,34,36,38,40,41,42,43,44,47,57,58,80,102,112,114,115,135,140,149,153,155,161,168,169,171,172,176,177,179,182,191,195,198,210,211,212,213,225,236,261,268,270,271],match_column:[22,34,41,42,43,44,80,92,100,168,169,179,196,198,199,211,212,213,224,225,259,261,264,268,271,274],match_escal:34,match_escalation_threshold:[29,34,36,54,149],math:173,math_ab:[22,34,46,160],matsuu:36,matthia:43,matur:[1,256],maverick:38,max:[34,38,40,41,42,43,44,47,50,69,70,89,96,97,98,99,113,121,135,137,142,149,152,153,154,158,178,179,197,212,220,252],max_array_segment_id:121,max_buffer_segment_id:121,max_command_vers:[84,137,155,207,258,268,272],max_concurr:152,max_dist:44,max_in_use_chunk_id:121,max_in_use_physical_segment_id:121,max_interv:197,max_length:171,max_map_count:263,max_map_seg:34,max_n_physical_seg:34,max_nfthread:70,max_section_id:121,max_siz:69,max_total_s:121,max_tp:152,max_valu:242,maximium:135,maximum:[33,43,85,92,112,115,117,121,122,135,140,161,197,211,212,220,258,263,265,268],mayb:34,mcdonald:205,mdev:[43,44],mean:[29,34,40,41,42,43,44,47,49,53,57,58,65,74,80,86,87,92,93,99,104,105,106,107,108,109,112,114,115,117,121,123,130,131,135,137,138,146,149,151,153,155,158,182,196,197,199,200,205,206,209,210,212,213,214,216,223,226,232,235,242,263,265,266,268,270,275],meaning:43,meaningless:[47,210],measur:[0,38],mecab:[0,12,24,25,27,28,29,31,34,38,40,41,42,43,44,45,238],mecab_new2:40,mecab_strerror:42,mecabrc:28,mechan:[40,43,155,252],media:42,median:42,medium:[23,24,25,27,31,32,44,121,271],meerkat:38,meet:[42,271,275],meetup:43,memcach:[0,1,22,43,44,249,272],memcpi:34,memo1:211,memo2:211,memo3:211,memo4:211,memo5:211,memo6:211,memo7:211,memo:[43,122,134,171,172,177,184,191,193,211,212,213,224,225],memo_index:42,memori:[22,23,24,25,27,31,32,34,36,38,40,41,42,43,44,50,54,74,92,99,104,135,137,140,153,155,210,260,262],memos_cont:[224,225],memos_content_index:[122,134],memos_tag:172,memset:43,mention:182,menu:[32,135],mercuri:12,merg:[0,17,34,40],meridian:165,merit:[114,135,153,155],messag:[6,7,12,22,23,34,38,39,40,41,42,43,44,74,83,105,110,151,153,199,210,212,213,260,270,271],message_for_1st_record:105,message_for_2nd_record:105,message_index:[212,213],message_pack_install_prefix:23,messagepack:[29,34,38,39,40,43,53,207,252,258],met:182,meta:[40,93,151],metadata:[34,40,44,92,104,122,132,133,202,211,212,213,238,271],meter:[165,173,275],method:[34,41,43,121,134,156,206,216,226,228,230,231,232,233,234,235,239,240,241,268],micro:[22,197,264,265],microsecond:[199,265],microsoft:[8,32,43,262],middl:[34,202,223],midnight:197,migrat:[42,112,114,115,135,196,197],mike:102,million:[33,34,92],millisecond:[49,86,153,158,197,265,275],mime:[43,252],min:[34,40,42,43,49,69,135,152,154],min_siz:69,minagawa:[41,42,44],mind:[33,214],mine:0,mingl:[202,238],mingw:[12,34],minim:[155,161],minimum:[24,25,27,31,74,112,115,117,135,197,256],minu:[202,223],minut:[197,199,216,217,271,275],mip:44,mipsel:44,mismatch:[34,42,44,151],miss:[34,38,40,41,42,43,44,209],mitani:42,mitsuhiro:36,mitsuo:41,mix:[34,43,80,138,156,228],miyashita:44,mizuhara:43,mkdir:103,mkostemp:42,mktime:43,mmap:[22,41,260],mnt:26,mobil:0,mode1:171,mode:[17,34,40,41,42,43,44,45,123,156,171,177,210,239,258,268],model:[42,145,153,258],moden:171,modern:271,modif:43,modifi:[29,34,44,202,223,263,272,274],modul:[0,22,36,42,43,200,211,221,226,252],moero:267,mondai:184,monei:267,monitor:[24,25,27,31,41],monkei:265,month:[34,43,197,199,214,267,271],montywi:39,more:[0,6,7,29,33,34,40,41,42,43,44,54,74,76,80,92,93,104,112,114,115,117,121,122,130,135,138,140,142,151,153,155,158,159,171,172,176,177,179,182,196,197,198,206,209,210,211,212,213,214,217,218,220,221,226,228,236,238,242,243,252,258,265,268,271,273],moreov:275,moritapo:267,moritar:270,morn:198,morpholog:[0,29,197,238],most:[34,42,43,54,58,80,81,92,115,122,135,196,197,210,212,228,239,252,265,268],motoi:41,move:[16,32,38,40,43,91,99,121],movi:267,mpaa:161,mrb:[34,43],mrb_valu:44,mroonga:[22,34,39,40,41,42,43,44,80,103,105,112,114,115,135,168,169,170,171,172,177,182,191,196,197,209,211,214,270],mrubi:[6,7,8,12,34,41,42,43,44,132,133,214],ms740668:262,msdn:262,msec:[38,49],msg_control:43,msg_controllen:43,msg_flag:43,msg_id:12,msghdr:43,msgpack:[34,43,44,207,252,258],msvc:43,msyql:80,mte:45,much:[34,226],multi:[0,29,34,38,42,43,44,155,199,251],multibyt:[38,44],multilin:210,multipl:[0,22,34,40,41,42,43,44,47,50,63,80,93,102,112,114,115,118,130,131,134,135,144,146,153,155,158,168,171,172,177,196,202,204,210,211,214,216,236,238,250,264,267,269,271],multipli:197,multithread:[43,99,131],munin:[23,24,25,27,31,38,39,40,41,42],murakami:[34,41,42,43,44],murata:34,museum:271,musha:43,music:[199,267],must:[6,7,8,29,34,42,43,44,47,50,51,55,57,58,63,65,73,74,76,91,92,93,95,99,102,104,105,106,107,108,112,114,115,121,123,131,135,138,140,143,145,151,153,155,158,159,161,170,176,182,196,197,210,212,213,214,219,242,252,258,263,265,268,272],mutabl:121,mutex:[41,74],mutex_lock:70,mutex_unlock:70,mxcl:12,myamanishi3:34,myisam:0,mysql:[0,24,25,27,31,34,42,43,44,45,80,118,135,168,169,179,200,209,211,214,218],n29:197,n_array_seg:121,n_buffer_seg:121,n_builtin_type_nam:55,n_byte:122,n_element:[44,122],n_entri:88,n_garbage_chunk:121,n_garbage_chunks_in_space0:121,n_garbage_chunks_in_space13:121,n_garbage_chunks_in_space1:121,n_garbage_seg:121,n_hit:[112,135],n_kei:68,n_keyword:57,n_like:[83,112,114,115,135,196,197,242],n_likes_class:135,n_likes_cumulative_sum_per_tag:[112,114,115,135],n_likes_str:[112,114,115,135],n_likes_sum_per_tag:[112,114,115,135],n_loaded_record:[44,105],n_max_thread:145,n_queri:[84,137,155,207,258,268,272],n_record:121,n_result:68,n_tabl:54,n_unmanaged_seg:121,n_var:74,nagano:42,naist:238,naiv:266,nakai:41,nakamura:43,nama:202,name1:[112,114,115,135,197],name2:[112,114,115,135,197],name:[0,17,22,34,38,39,40,41,42,43,44,46,47,51,54,55,56,57,63,65,66,68,71,74,83,89,91,93,94,100,102,104,105,106,107,108,116,117,118,119,122,124,125,130,134,138,139,141,146,147,148,151,153,155,158,159,165,168,171,177,182,191,197,202,209,214,216,220,238,252,255,258,262,264,265,266,267,268,271,273,275],name_1:[268,272],name_2:[268,272],name_s:[51,54,57,65,66,68,71,74],name_t:121,namebuf:[51,65],nan:34,nanosecond:[83,199],naoina:[40,41],naoya:[34,41,42,43,44],narg:57,narrow:[22,34,41,42,104,135,262,264],narwhal:38,natanael:43,natti:38,natur:[34,44],ncpu:28,nearbi:0,nearest:173,necessari:[38,151,268],need:[0,5,6,7,8,17,18,21,29,30,32,33,34,38,40,42,43,47,50,53,54,57,70,73,80,83,92,99,104,105,106,112,113,114,115,116,117,118,124,129,131,135,136,140,142,146,148,151,153,155,156,158,169,173,176,179,184,191,196,197,203,206,207,209,210,211,212,213,214,216,217,219,220,238,242,252,255,258,263,268,270,273,274,275],needl:11,needleess:40,needless:[34,39,40,41,43,44,86,104,236,238],neg:[34,40,43,49,54,66,74,87,135,236],neglig:[34,42],neighbor:0,neither:104,neolog:238,neologd:238,nest:[22,34,40,41,42,43,121,264],nested_reference_column:135,net:[2,12,265,266,267,268,272,275],netbsd:41,netinet:43,network:[40,252,258,267],network_is_down:258,never:[29,34,43,113,135,138,210],new_column:47,new_limit:70,new_release_d:12,new_seri:91,new_tag:91,new_valu:135,new_vers:12,newark:271,newer:[18,34,42,43],newid:91,newli:[0,42,50,92,148,179,198],newlin:[38,39,43,63,236],newnam:91,newvalu:51,next:[0,42,43,58,66,112,114,115,135,158,202,267,268],next_physical_segment_id:34,nfkc:[34,201,202,203,223],nfs:29,nfthread:70,nginx:[24,25,27,31,34,40,41,42,43,44,251,256],nginxhttpstubstatusmodul:42,ngram:34,ngx_http_proxy_modul:155,nice:198,night:[198,274],nightli:12,niho:176,nihon:[176,216],niku:42,nil:63,nine:268,nippon:216,nise_nab:42,no_buff:258,no_child_process:258,no_kei:[121,220],no_locks_avail:258,no_memory_avail:258,no_space_left_on_devic:258,no_such_devic:258,no_such_device_or_address:258,no_such_file_or_directori:258,no_such_process:258,noarch:[24,27],nobuhiro:44,node:[12,21,40,43,44,63],nogpgcheck:40,nois:[158,217,226,238],nokubi:42,nomal:[40,135,155],nomral:196,non:[34,40,41,43,44,83,92,121,135,151,196,197,202,228,229,230,231,232,238,240,241],none:[29,34,63,106,107,108,115,118,121,130,135,140,144,146,153,155,157,158,258,270],nonexist:[34,42,43,44,47,96,97,112,114,115,135],nonexistent_command:43,nor:[135,140],noraml:146,normal:[22,24,25,27,31,34,39,40,41,42,43,44,46,47,53,54,55,63,70,81,83,91,92,93,99,104,112,113,114,115,117,119,121,122,123,130,135,137,141,142,143,144,151,153,155,158,168,169,176,177,179,196,197,198,201,202,203,206,209,210,211,212,213,221,223,224,225,226,228,236,240,241,242,243,261,268,270,271,274],normalizeauto:168,normalized_text:118,normalizer_1:134,normalizer_2:134,normalizer_list:[22,42,46,81],normalizer_n:134,normalizer_nam:134,normalizer_name_1:134,normalizer_name_2:134,normalizer_name_n:134,normalizerauto:[34,43,92,112,114,115,118,119,122,130,134,135,140,142,144,146,158,168,169,176,177,179,196,197,198,200,203,206,210,211,212,213,221,224,225,228,229,230,231,232,233,234,235,236,237,239,240,241,242,261,268,270,271,274],normalizernfkc100:[34,200,223],normalizernfkc51:[34,119,134,200],normalizs:140,normalzi:168,northern:40,norwegian:[34,224],nosuchfileordirectori:43,not_a_directori:258,not_enough_spac:258,not_equ:177,not_socket:258,notat:[40,41,197],note:[0,27,34,38,40,41,42,43,44,74,92,102,104,112,114,123,131,132,133,135,140,153,155,158,170,191,197,242,252,263,265,266,268,272],noth:[34,43,53,70,104,135,151,153,155,193,216,218],notic:[43,44,92,109,110,153,155,212,213],notif:[41,199],notifi:131,notrelated_20160320:117,noun:[34,202,238],now:[6,7,8,17,18,22,27,29,34,39,42,43,46,47,80,92,105,112,115,132,133,160,176,179,210,256,266,270,271],nroonga:[21,177,270],nsi:12,nsubrecs_column:51,nsubrecs_str:115,nterm:89,nth:115,nul:[38,74,237],number1:197,number2:197,number:[0,23,33,34,38,40,41,42,43,44,50,54,58,66,70,74,80,83,85,88,89,99,112,113,114,115,121,122,132,134,137,138,140,142,145,149,153,154,155,158,171,179,180,195,196,197,210,211,213,219,220,243,252,256,258,262,263,265,266,267,268,272],number_classifi:[22,44,46,135,160],number_liter:43,numer:[22,34,43,196,197,264],nvar:66,o_binari:40,o_creat:34,obata:[34,36,38,41,43,44],obj:[51,55,57,59,62,63,65,66,67,72,89],object1:197,object2:197,object:[34,38,40,42,43,44,47,50,54,55,63,65,68,74,76,80,92,95,101,104,106,107,108,117,118,119,120,121,123,130,134,135,137,143,146,147,151,179,195,220],object_1:122,object_2:122,object_corrupt:258,object_exist:[22,43,46,81,117,123],object_inspect:[22,34,44,46,81],object_list:[22,44,46,81],object_n:122,object_remov:[22,44,46,81,104],objnam:[90,101],obsolet:[43,206,256],obtain:74,obvious:265,occur:[34,40,41,42,43,44,54,58,83,95,115,135,138,143,158,209,242,262,274],occurr:213,ocelot:[38,41],octal:197,octob:42,odd:197,off:[38,42,155,226],offic:173,offici:[8,12,27,38,177],offlin:[22,34,39,40,41,42,43,44,46],offset:[34,40,43,57,58,59,65,68,69,74,100,138,268],often:[104,161],ohkubo:44,ohzeki:42,okapi:[211,213],old:[18,38,40,43,44,74,95,143,161,200],old_releas:12,old_release_d:12,older:[43,271],oldvalu:51,omit:[38,83,104,106,107,108,124,125,129,130,135,146,158,165,191,207,216,220,268],onc:[34,38,40,42,73,104,112,115,135,155,158,200,266,270,271],one:[0,24,25,27,31,33,34,38,42,43,44,49,50,74,80,83,88,91,92,93,96,97,102,103,104,105,106,107,108,112,113,114,115,116,117,120,121,123,124,125,129,130,131,132,133,134,135,136,138,140,142,145,146,148,149,151,153,155,158,159,165,169,170,171,173,176,177,179,182,184,191,193,196,197,200,201,206,210,211,212,213,214,217,220,226,228,236,242,243,250,252,258,262,265,267,268,271,275],one_charact:44,oneir:[38,41],oneself:42,onga:179,ongaeshi:[40,41,43],onigmo:[34,42,43,44,210],oniguruma:43,onli:[0,6,7,17,21,23,24,25,27,31,32,33,34,40,42,43,44,47,50,53,63,65,73,74,86,87,88,92,93,96,97,99,102,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,129,130,131,132,133,135,136,137,138,140,142,145,146,148,151,153,155,156,158,161,168,169,170,171,176,177,179,182,184,191,196,197,198,203,205,209,210,211,212,213,214,220,226,228,238,239,252,256,262,265,268,270,273,275],onlin:[22,34,43,46],only_open:34,onto:242,ooo:220,opaqu:[50,258],opear:197,open:[21,34,38,40,41,43,44,50,54,55,58,104,122,123,142,151,158,168,199,200,258,268],open_tag1:168,openbsd:[43,44],oper:[22,29,34,40,41,42,43,44,46,57,58,91,95,107,117,120,135,143,171,176,195,202,206,223,258,262,264],operation_not_permit:258,operation_not_support:258,operation_timeout:258,operation_would_block:258,optarg:[55,67],optim:[34,42,43,44],optimum:155,option:[6,7,8,18,24,25,27,28,29,30,31,34,38,39,40,41,42,43,44,55,83,88,93,106,107,108,130,135,138,151,152,154,155,156,160,168,179,195,196,197,199,200,201,207,210,214,216,217,219,221,250,251,252,255,258,268,270,271,272,273],oracl:[22,23,38,40],orangain:41,order:[0,34,40,41,43,44,112,115,116,135,173,196,197,205,258,266,268,273,275],ore:[83,135,196,197],org:[12,17,24,25,27,28,29,30,31,32,42,43,80,103,105,154,155,170,265,266,267,268,272,275],orient:[0,179,265],origin:[1,17,34,41,42,53,83,103,135,201,219,258,272,273,274],original_id:[115,135],orilldown:266,orphan:[34,41],orthograph:[34,238],osanai:[42,43],osdn:[2,12,43],otehr:140,other:[0,3,17,22,23,34,40,42,43,44,49,51,55,63,73,74,76,83,91,92,93,102,104,105,107,112,114,115,118,135,138,142,144,146,151,153,155,156,159,177,182,196,197,201,202,228,236,238,243,252,265,266,267,268,270,275],other_t:43,otherhand:135,otherwis:[21,50,54,63,65,74,95,96,98,102,104,106,107,108,109,117,120,121,122,130,131,134,142,148,161,171,172,177,182,191,197,268],ouput:41,our:[2,17,34,214],out:[13,23,24,25,27,31,32,34,42,86,182,270],out_gqtp:154,out_http:154,out_loc:154,outdat:[42,44],output:[3,22,29,34,38,39,40,41,42,43,44,46,53,54,57,80,81,84,86,87,88,91,92,93,95,96,97,98,99,102,103,104,106,107,108,109,112,113,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,136,137,138,139,140,142,143,145,146,147,148,153,154,156,158,159,170,199,202,223,238,262,264,265],output_column:[34,40,41,42,43,44,80,91,92,100,112,138,160,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,197,211,212,213,261,265,267,268,270,271,275],output_error:34,output_id:44,output_pretti:[84,135],output_typ:[156,207],outsid:42,over:[0,34,40,41,42,43,44,112,114,115,168,263,272],overcommit:242,overcommit_memori:40,overflow:[34,38,41,42,43,44,265],overhead:[34,42,121,256],overrid:[29,47],overview:[22,43,46,48,264],overwrit:[44,86],overwritten:275,own:[0,34,40,43,57,197,265],owner:[41,43,155],pack:23,packag:[8,12,17,22,23,24,25,27,28,30,32,34,38,40,41,42,43,44,150,155,238,249,268],page:[2,17,22,40,41,43,156,262,268],pagerank:[211,212,213],pagin:[12,268],pai:135,pair:[34,43,121,122,135,209,216,217,218,219,265],pair_dataset:[157,219],pair_queri:[138,157,158,216,217,219],pakcag:27,pangolin:[34,40],paragraph:268,parallel:[0,6,7,12,44],paramet:[22,32,34,38,39,40,41,42,43,44,46,49,50,51,52,54,55,56,57,58,59,61,62,63,64,65,66,67,68,69,70,71,72,74,84,85,86,119,124,125,129,147,149,155,162,179,184,197,201,203,209,211,228,229,230,231,232,233,234,235,237,239,240,241,244,252,263,264,265,266,268,271,272,274,275],parameter1:155,parameter_name1:156,parameter_name2:156,parent:[115,135,155],parenthes:[34,268],pari:165,park:271,parker:43,pars:[34,42,44,47,56,57,177,195],parser:[196,210],part:[0,29,34,83,114,135,179,202,238,265,268,271],partial:[11,34,43,214,216,218,258],pass:[6,7,8,12,34,38,39,43,44,55,70,105,131,145,155,158,165,177,196,197,210,268,272],past:[34,40],pat:[39,40,44,63,104],pat_kei:[121,122,220],patch:[34,38,40,41,42,43,44,45],path:[12,18,23,26,34,35,38,40,41,42,43,51,55,65,68,74,93,95,122,124,125,129,138,140,141,143,153,155,156,158,159,199,210,251,256,258,268],patiricia:43,patprefix:273,patricia:[22,38,40,41,43,44,122,134,140,196,197,220,264,268],patsuffix:273,pattern:[0,34,43,83,171,196,197,210],pcre:[34,40,155],pdb:34,pen:236,penalti:41,pend:[43,63],pentium:154,peopl:[0,92,226],people_age_index:92,people_age_medium_index:92,people_age_small_index:92,people_key_index:92,people_key_roles_index:92,people_roles_large_index:92,per:[0,38,40,44,112,114,115,135,149,155,158,240,241],percentag:137,perfect:[0,213],perfectli:113,perform:[0,34,38,41,42,43,44,104,105,114,135,153,158,172,179,197,250,251,256,262,268,270],period:[34,270],perl:155,permiss:[29,42],permission_deni:258,permit:[34,117],persist:[22,34,46,68,93,95,122,143,149,153,155],person:[22,23,92,202,238,271],pgp:12,pgroonga:[34,43,103,199,211,214],php:[12,40,42,43,250],phrase:[40,44,92],physic:[34,89],pid:[29,34,35,38,43,44,151,153,199],pikonyan:267,pinu:34,pip:[12,18],pipermail:42,piro:42,pkg:[25,29,30,36,38,40,43],place:[2,29,271],placehold:41,plai:[0,274],plain:[34,43,170],plan:[34,273],platform:[17,18,23,38,54,74],platorm:44,player1:91,player:[91,143],pleas:[2,3,17,19,25,29,42,43,44,55,211,212,213,256,268],plug:34,pluggabl:0,plugin:[13,17,22,23,24,25,27,31,34,36,38,39,40,41,42,43,44,46,48,103,112,113,114,115,116,117,118,122,124,125,129,132,133,135,146,173,177,181,184,191,193,194,200,209,214,221,242],plugin_1:134,plugin_2:134,plugin_id:122,plugin_n:134,plugin_nam:134,plugin_name_1:134,plugin_name_2:134,plugin_name_n:134,plugin_regist:[22,46,81,103,104,112,113,114,115,116,117,125,129,132,133,134,135,144,158,171,173,181,184,191,193,194,209,221,224,225],plugin_unregist:[22,43,46,81,104,124,129],poedit:17,point:[0,38,39,41,43,58,63,74,80,95,131,135,165,166,167,172,196,205,243,259,263,265,268,275],pointer:[44,74],pole:165,polici:41,pool:70,poor:209,popular:[43,80,112,114,115,135,153],port:[26,28,41,42,45,153,154,155,156,158,207,252,256,258,272],port_numb:[255,258,272],portabl:[38,41,155],portugues:[34,224],pos:[63,166,167],posit:[34,42,44,58,74,80,87,92,93,121,134,135,145,146,202,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,268],posix:[43,197],possibl:[34,38,43,44,135,156,243,262],post:[12,34,40,41,42,43,44,58,92,105,112,114,115,121,135,158,196,197,198,251,268],post_filt:34,posted_bi:271,postfix:[112,114,115,117],postgresql:[0,34,179,214],potenti:41,power8:42,power:[135,210],poyonga:250,ppa:[12,22,23,42],practic:[0,42,265],pragma:135,pre:[63,158],precis:[0,12,34,40,43,44,83,92,197,216,226,228,238,243,268],preconfigur:[24,25,27,31,256],predic:[34,43],predict:[140,220,228],prefer:43,preferenti:99,prefix:[6,12,14,18,22,23,34,38,39,40,42,43,44,46,68,69,70,91,92,124,125,129,138,140,153,155,158,176,177,191,204,214,220,251,264,268],prefix_match_s:44,prefix_rk_search:[22,43,46,160,206],prefix_search:[38,138],prepar:[22,155,169,179,224,264],prepend:[155,196,197],press:17,pretti:[22,42,43,44,46,81],prevent:[41,44],previou:[34,40,41,42,44,145,158,210,211,256,265,266,270],price:[112,114,115,265],primari:[22,105,264,265,266,267,268,274],print:[22,42,43,44,46,63,81,258],printf:[34,63],prioriti:[0,34,135,216],privileg:[41,272],probabl:138,problem:[34,38,40,41,43,44,50,117,123,155,196,197,212,228,265],proc:[24,25,27,31,34,41,43,59,66,72,74,99],proc_database_unmap:99,proc_object:123,proc_select:135,procedur:[40,41,44,176],process:[0,17,22,23,24,25,27,31,32,34,38,40,41,42,43,44,46,51,55,81,83,86,87,95,104,107,112,114,115,124,129,130,135,136,137,140,143,149,153,155,158,196,197,200,221,226,252,256,258,268,275],process_id:[34,153],processor:[0,24,25,27,31],produc:34,product:[43,44,114,155,158],profil:271,program:[1,34,40,41,93,153,155,158,159,197],progress:[34,199],project:[0,3,12,13,19,21,42,197,256],prolong:[34,202,223],promot:41,prompt:[32,40,207,268],pronoun:34,pronounc:[34,195,202,223],proonga:250,propag:34,proper:[42,83,135,271],properli:[40,43,196,272],properti:[31,44,134,199],propos:[135,158,218],protector:34,protocol:[0,1,22,24,25,27,31,40,42,43,44,87,153,154,155,156,207,249,250,252,256,264],provid:[0,1,21,24,25,27,31,34,40,42,43,44,48,54,70,73,92,93,112,113,114,115,150,151,153,155,158,165,177,207,209,210,211,213,214,216,217,218,219,220,251,252,256,262,266,268,272],proxi:252,proxy_cache_path:155,proxy_cache_valid:155,proxy_pass:155,pseudo:[22,40,41,42,43,46,51,76,92,93,105,134,135,196,197,266,275],pthread_:41,ptr:[36,74],pub:12,publish:[12,42,44],pull:[12,22,23],pure:228,puropos:146,purpos:[41,44,80,177,268,272],push:[17,54],put:[17,42,43,135,156,196,206,210,213,242],pyenv:18,python:[12,18,250],q_cond:70,q_mutex:70,qps:[152,154],quantal:40,queri:[11,22,34,38,40,41,42,43,44,46,57,63,67,80,81,87,88,92,100,104,112,114,124,125,129,138,153,154,157,158,159,160,161,168,169,170,171,172,179,182,195,197,198,206,207,209,210,211,212,213,216,217,218,219,224,225,226,228,238,250,252,256,258,259,261,264,265,266,267,268,270,271,272,273,275],query_expand:[22,41,44,46,81,124,125,129,209,274],query_expans:[38,41,209],query_flag:[34,40,44,177,196],query_no_syntax_error:[34,135],query_s:57,query_str:41,queryexpandertsv:[22,40,41,46,124,125,129,177,208],question:[43,270],quetzal:40,queue:262,quickli:[112,114,115,135,198],quiet:258,quit:[12,22,34,46,81,153,199,258],quiz:267,quorum:34,quot:[41,118,146,196,197,268],quotat:[118,146],quotient:197,rab:[266,268,275],raccoon:267,radious_or_point:166,radix:197,rais:34,rake:12,rakutan:270,ram:154,ran:216,rand:[22,34,46,160,275],rand_max:178,random:275,rang:[22,34,40,41,42,43,44,76,92,93,95,113,117,135,141,143,161,210,220,264,271],range_error:258,range_filt:[22,42,46,81,114],range_index:[43,114],ranguba:[34,42,80],rank:[42,268],rare:[41,43],rate:[41,161],rather:[43,80,93,135,198,210,211,212,213,228,238,250],raw:[21,41,44,105,121],rch:146,rdbm:[43,153],rdiscount:12,reach:[34,242],read:[3,22,34,38,40,95,103,105,135,143,159,176,179,202,209,215,238,258,268],read_only_file_system:258,readabl:[39,42],readi:[18,29,40,112,114,115,135,196,197,210],readm:[12,41],real:[0,34,47,70,114,135,137,179,242,243],real_nam:[47,96,97,98],realli:[112,114,115,135,196,197,274],realloc:34,realtim:[138,219],reason:[40,135,140,151,197,210,216,228,252,256,263,266],rebuild:[34,43],recal:[0,195,226,228,238],receiv:[0,17,54,153,155,158,159,197,255,258],recent:[44,88],recogn:0,recommend:[6,7,8,23,24,25,27,31,32,34,42,43,44,47,83,104,135,155,158,172,196,197,210,226,228,242,250,252,256,268,272],reconstruct:42,record1:117,record2:117,record3:117,record:[0,22,33,34,38,40,41,42,43,44,46,47,57,58,65,68,80,91,102,103,105,112,114,115,117,121,138,140,148,161,165,168,169,171,172,176,177,179,182,195,196,197,198,199,205,210,211,212,213,214,219,243,264,265,266,267,270,271,272,273,274,275],record_1_column_1:[114,135],record_1_column_2:[114,135],record_1_column_n:[114,135],record_2_column_1:[114,135],record_2_column_2:[114,135],record_2_column_n:[114,135],record_id:43,record_n_column_1:[114,135],record_n_column_2:[114,135],record_n_column_n:[114,135],record_numb:[22,34,44,46,115,244],recov:[34,43,55],recover:[55,151],recreat:[34,43,44,130,151],recrod:135,rect:[40,165,166],rectangl:[0,38,40,58,166,205],recurs:[6,7,8,12,13,34,47,107,135,151,155,209],recycl:42,red:29,redcloth:12,redhat:38,redmin:42,reduc:[0,34,40,41,43,44,92,99,105,113,151,171,206,210,217,220,252,256,274],redund:34,refer:[0,22,34,38,41,42,43,44,47,102,104,105,117,134,135,158,171,182,198,210,243,264,266,270,271],referenc:[34,40,41,92,102,104,117,135,140,142,266],reference_column:[34,42,43,135,142],reference_vector_column:41,referenced_table_nam:104,referencedbycolumn:142,referencedbyt:142,referencedt:142,referencet:142,refin:[0,41],refresh:267,regard:[34,41,156,196,202,223],regardless:[34,43],regexp:[34,42,43,177],regexplexicon:[130,210],region:[205,275],regist:[0,22,25,34,40,41,43,44,46,47,74,81,103,112,113,114,115,116,117,118,124,132,133,135,146,173,179,181,184,191,193,194,196,197,198,200,206,209,216,217,218,220,221,265,271,275],regress:[41,42,43],regular:[22,34,43,44,46,155,177,236,239,265,268],regular_express:210,reindex:[22,34,43,44,46,81],rel:[38,42,135],relat:[0,2,3,13,21,22,24,25,27,29,31,34,38,40,41,42,43,44,65,70,104,151,153,195,210,218,219,220,242,244,256,263,264],relationship:[22,40,92,95,143,264,265,270,271],relax:242,releas:[6,7,8,12,24,27,32,45,73,99,106,108,112,115,117,165,177,198],relev:[0,268],reload:209,remain:[34,41,44,99,151,199,210],remaind:197,rememb:135,remot:[22,153,258,264],remov:[6,7,30,34,38,39,40,41,42,43,44,55,65,91,102,123,129,144,151,153,155,210,225,265],remove_blank:[34,118],remove_t:117,remove_tokenized_delimit:118,removep:65,renam:[34,38,40,41,43,47,91,95,143,220,268],reopen:[38,44,130],rep_gqpt:154,rep_gqtp:154,rep_http:154,rep_loc:154,repair:39,repeat:[0,17,34],replac:[21,34,42,43,47,153,157,159,197,210,274],replai:155,repli:[270,271],replic:211,replied_to:271,replied_us:271,replies2:270,replies_cont:270,reply_to:270,repoforg:40,report:[3,22,29,34,38,40,41,42,43,44,49,74,92,123,151],report_source_loc:34,repositori:[3,4,12,22,25,27,31,38,40,41,43],repot:262,repres:[57,122,153,195,197,210,265,267,274],represent:[17,34,56,57,80],reproduc:[34,41],request:[22,34,41,42,43,44,46,47,81,103,105,114,131,135,136,137,149,153,156,158,197,199,216,217,219,252,255,258,272],request_cancel:[22,34,42,44,46,81,85,86],request_id:[43,44,85,131],request_timeout:[44,86],requir:[0,21,24,25,27,29,30,31,32,34,38,40,41,43,124,125,129,132,133,151,155,159,168,172,173,176,182,193,196,198,210,211,214,216,218,238,251,252,265],res1:68,res2:68,res:[58,67,68],res_column:154,res_tabl:154,rescord:195,reset:43,resiz:74,resolut:[22,264,271],resolv:[22,34,38,40,44,46,80,101,123,211,212,213,214],resourc:[34,42,54,55,73,86,198],resource_busi:258,resource_deadlock_avoid:258,resource_temporarily_unavail:258,resours:50,respect:[40,265,271,275],respons:[0,34,38,40,41,42,43,44,50,86,87,91,105,112,114,115,131,135,137,155,252,258],rest:[34,63,74,114,209],restart:[34,43,44,124,129,153,155,209,242],restaur:0,restor:44,restrict:[40,41,114,252,272],result:[0,11,17,22,34,38,39,40,41,42,43,44,63,68,83,84,103,112,114,115,118,131,132,133,135,151,156,158,159,165,171,177,179,182,197,201,206,207,209,210,216,217,219,220,229,230,231,232,264,265,267,270,271,274,275],result_cod:63,result_too_larg:258,retri:49,retriev:[0,92,122,135,158,197],retry_max:258,return_cod:[34,83,105,199],return_code_for_1st_record:105,return_code_for_2nd_record:105,reus:[34,43,121,135,153,220],reveal:0,revers:[12,22,252,264,268,271],revert:44,revis:44,rewrit:[43,45],rid:[60,63],rid_max:61,rid_min:61,right:[42,43,58],right_hand_sid:44,ring_buff:158,ringtail:41,risk:[42,151],riski:34,rlimit_nofil:[41,199],role:[0,92,177],romaji:[34,176,202,216,223],romanian:[34,224],room:[22,43],roonga:[191,196,197,218],root:[41,43,153,155,156,272],rose:265,rotat:[43,153],roughli:265,round:38,row:[0,179],rpm:[12,24,27,34,38,39,40,41,42,43,44],rroonga:[21,41,42,43,50,168,169,172,177,182,193,195,211,270],rst:12,rubi:[0,6,7,8,12,21,40,42,43,45,80,132,133,168,169,193,195,210,211,250],ruby19:40,ruby_ev:[22,34,41,46,81,133],ruby_load:[22,41,46,81],ruby_script:132,rubygem:40,rubyinstal:8,rule:[22,34,42,46,112,114,115,135,146,252],run:[3,12,14,17,21,22,26,29,32,34,42,43,55,85,95,104,105,114,130,131,136,142,143,153,155,158,159,209,242,249,251,252,255],run_bodi:112,runtim:43,rurema:42,russian:[34,224],ryo:[34,43],ryoji:42,ryunosuk:44,s10:42,s_id1:105,s_id2:105,sae:[138,217],saer:[138,217],saerc:[138,217],saerch:[138,217],safe:[34,92],safeti:44,sai:[92,191,196,197,268,270],sako:43,salamand:[41,42],same:[34,41,43,44,49,54,57,80,83,85,91,92,105,112,114,115,117,124,129,130,131,135,155,156,158,177,196,197,200,202,210,211,212,213,214,217,223,236,250,252,265,268,270,275],sampl:[40,102,103,112,114,115,116,117,124,125,129,135,154,155,159,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,209,210,211,212,213,252,270],san:165,satisfi:[41,43,44,105,117,142],sato:[43,44],satoh:38,satoshi:[34,42],satouyuzh:34,saturdai:184,sauci:[41,42],save:[12,42,158,263,270],sbin:28,scalar:[22,34,43,44,46,47,76,80,93,114,121,134,135],scale:[0,252],scan:[14,43,168,169,176,196,197],scan_build:14,schema:[22,34,43,46,47,81,91,102,103,105,112,114,115,117,122,135,142,157,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,210,211,212,213,214,217,242,270],scope:[43,210],score1:11,score2:11,score:[34,40,43,44,63,80,92,95,138,143,148,158,177,195,211,212,213,268,275],score_1:158,score_2:158,score_adjust_express:135,score_adjust_expression1:135,score_adjust_expression2:135,score_column:51,score_funct:211,score_function1:211,score_function2:211,score_function3:211,score_valu:43,scorer:[22,34,43,46,100,104,160,165,173,195,197,212,213,264,267],scorer_tf_at_most:[34,43,211,213],scorer_tf_idf:211,scr:154,script:[21,22,29,34,40,41,42,43,44,46,57,105,133,135,154,182,195,196,210],sea:[146,216],sear:216,searc:216,search:[22,24,25,27,29,31,34,38,39,40,41,42,43,44,46,47,48,57,58,73,76,91,93,138,140,146,153,168,169,171,176,177,179,182,191,195,198,200,204,209,210,211,212,213,214,218,220,225,226,228,236,237,238,239,252,256,264,265,266],search_result:135,searchabl:[34,43,198],searchu0000http:237,sebastian:42,sec:49,second:[83,86,93,104,131,135,137,153,158,165,171,191,196,197,199,211,243,252,265,268,270,271,275],secret:12,secsion:83,section:[3,17,20,21,23,24,25,26,27,28,29,30,31,32,34,41,42,43,44,47,48,51,60,74,80,81,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,120,121,122,123,126,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,148,150,151,153,155,158,160,165,169,196,204,209,210,211,212,213,215,216,217,219,242,244,258,262,266,270,271],secur:[22,34,42,43,242,264],sed:[28,38,40,43],see:[0,1,17,18,21,22,24,25,27,28,29,30,31,40,41,42,43,46,49,54,74,80,91,95,99,104,107,112,113,114,115,117,120,121,123,130,136,137,139,142,143,145,148,151,153,155,156,165,170,171,191,196,197,210,216,228,242,243,244,250,256,263,265,266,267,268,271,275],segment:[34,40,42,44,89,121],segv:41,seki:34,select:[22,34,36,37,38,40,41,42,43,44,46,47,50,57,58,80,81,82,85,86,88,91,92,95,102,104,112,114,128,131,137,143,148,153,154,155,160,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,195,196,197,198,199,200,209,210,211,212,213,219,224,225,244,250,259,261,265,266,267,268,270,271,272,273,274,275],select_al:34,select_opt:197,selector:[34,40,43,44,176],self:154,semi:[34,38,140,202,223],sen_index_delimit:45,sen_index_norm:45,sen_sel_term_extract:45,senario:34,senboku:41,send:[3,19,103,131,158,159,250,258],sender:159,senna:[34,112,114,115,135,196,197,209],sens:[153,155],sensit:228,sent:252,sentens:43,separ:[34,40,43,53,92,93,105,118,121,122,135,138,140,144,146,153,155,158,177,196,197,202,207,209,223,226,228,237,240,241,258,266,268],sequenc:[38,41,85,105,135,138,158,196,197,199,216,217,219,258],sequence_dataset:157,sequence_queri:[157,158],sequenti:[34,42,43,44,171,176,196,197,198,210,239],serach:217,serch:[138,217],sergei:[34,42,43],seri:[63,268],serial:91,serihiro:40,seriou:[40,42],serv:[12,42,265],server:[1,21,22,23,24,25,27,31,32,34,38,39,40,41,42,43,46,70,103,117,131,136,145,150,155,158,171,172,191,207,250,251,252,255,267,268],servic:[0,21,25,26,40,41,42,43,136,217,242,256],session:[158,250,258],set:[24,25,27,31,34,40,41,42,43,44,49,50,54,63,65,70,76,80,88,92,97,98,104,109,113,135,136,144,145,149,158,162,195,197,216,242,252,256,273],set_host:154,set_port:154,set_token_filt:42,setup:[17,21,41,44],seven:268,shape:205,sharabl:22,shard:[22,34,43,46,112,113,114,115,116,117,220],shard_name_1:116,shard_name_2:116,shard_name_n:116,share:[0,2,25,29,38,40,41,49,50,51,55,112,114,115,117,153,155,267,270],shell:[29,43,153,196,210],shidara:38,shift_ji:[29,239],shimada:40,shimamura:[34,43],shimoda:36,shimomura:40,shinjyuku:275,shinoda:[42,43,44],shinya:40,shiro615:34,shm:155,sho:[41,42,44],shop:[173,198,259],shorter:[43,198],shorttext:[34,42,44,47,58,63,80,83,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,138,140,141,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,210,211,212,213,216,217,219,220,221,224,225,242,261,265,266,267,268,270,271,272,273,274,275],should:[6,7,8,18,21,23,24,25,27,29,31,32,34,40,43,44,54,57,74,80,85,92,105,113,114,117,123,130,135,140,142,148,151,158,196,197,201,209,217,258],shouldn:[6,7,42],show:[0,29,34,35,38,40,41,42,43,44,47,53,83,87,91,92,102,105,106,112,114,115,117,118,121,122,134,135,161,162,165,168,169,170,173,176,177,179,182,196,197,205,207,210,211,212,213,228,255,258,265,266,267,268,271,272,275],showen:87,shown:[63,115,197,268],shuhei:42,shutdown:[22,34,44,46,81,104,153,155,210,252,258],sid:[12,38,42,63,89],side:[0,40,43,44,86,135],sigcont:41,sign:[12,25,40,87,202,223,243,265],signal:42,significantli:0,sigstop:41,sigusr1:38,silent:[21,44],simil:[34,197],similar:[34,40,41,42,80,114,121,135,138,153,171,177,191,195,201,229,230,231,232,233,234,235,237,240,241,266,270,272],similar_search:[40,138],simpl:[42,43,93,95,112,118,119,137,143,144,146,147,148,155,165,170,171,172,173,176,177,182,184,191,193,195,196,197,251,252,256,266],simplest:[0,29,85,211],simpli:[213,273],simplifi:[41,172],simultan:34,sinc:[27,34,40,43,44,51,74,83,90,104,112,114,115,129,135,137,140,148,153,158,165,197,198,199,210,243,245,256,265,271],singl:[41,42,80,92,118,135,145,146,268],sister:92,site:[42,103,106,107,108,130,135,195,265,266,267,268,270,272,275],site_titl:130,sitecountri:[266,272],sitedomain:[266,272],situat:[135,262],six:[199,268],size:[23,24,25,27,31,32,33,34,38,40,41,42,43,44,47,51,57,63,70,71,74,85,89,93,96,97,98,104,121,122,123,134,140,149,153,155,179,193,214,220,242,263],size_of_one_value_in_byt:134,sizeof:[43,54,57],sji:[29,45,153],skip:[41,42,43,44,104,268],slash:197,sleepi:198,slice:[34,44],slow:[43,153,155,196,197,210,220],slower:[92,153,155,165,211,213,266],small:[33,34,41,42,43,44,114,121,123,140,196,197,202,220,223,226,271],smaller:[0,34,80,140,165,198,199],smith:44,snake_cas:43,snippet1:179,snippet2:179,snippet3:179,snippet:[40,41,44,45,179],snippet_html:[22,34,40,41,42,43,44,46,114,135,160],soccer:267,social:267,socket:[22,40,103,260],socket_is_already_connect:258,socket_is_already_shutdown:258,socket_is_not_connect:258,socket_not_initi:258,soerr:262,soft:242,softwar:[3,21,31,43],soichiro:44,solari:[5,7,8,22,23,38,40,43],solr:197,solut:[22,228,260,266,270],solv:[34,44,211,212,213,265],some:[0,1,2,8,17,27,29,33,34,40,41,42,43,44,47,49,57,73,80,83,85,92,105,112,114,115,117,121,122,131,135,136,140,142,146,149,151,157,158,160,177,196,197,199,210,211,214,221,226,242,243],some_condit:34,someon:271,someth:42,sometim:[42,44],soon:[86,179,205,214,252],sooner:34,sort:[0,22,34,38,41,43,44,103,112,114,115,116,135,138,158,205,220,264,267],sort_bi:171,sort_hash_t:34,sort_kei:[34,44,172,173,177,211,212,213,267,268,275],sortbi:[38,41,44,100,138],sound:[34,201,202,217,223],soundkitchen:[38,40],sourc:[6,7,8,12,16,17,18,21,22,23,30,34,38,40,41,42,43,44,55,65,83,91,93,95,104,121,139,151,262,267,268,270,271],source_1:[122,134],source_2:[122,134],source_column_nam:43,source_file_nam:83,source_n:[122,134],source_offset:34,sourceforg:[2,12,43],southern:40,sozaki:34,space:[0,34,38,41,43,44,74,80,92,118,121,135,146,196,210,219,226,228,229,230,231,232,236,237,240,241,262,268],spain:165,spammer:[211,212,213],span:[168,169,170,179],spanish:[34,224],spars:[34,43],speaker:2,spec:[34,38,40,41,135],special:[17,29,41,49,57,83,87,105,135,146,156,168,169,179,196,210,258,268],specif:[0,22,29,34,40,41,42,44,80,103,112,123,132,133,135,138,156,161,197,201,202,206,238,239,264,265,266,267],specifi:[0,6,7,8,17,22,28,29,33,34,39,40,41,42,43,44,54,55,58,63,65,66,74,76,80,83,84,86,88,91,92,93,95,96,97,98,101,102,103,104,105,106,107,108,109,112,113,114,115,116,117,118,120,121,122,123,124,125,129,130,131,132,133,134,135,136,138,139,140,142,143,144,145,146,148,151,153,155,156,157,158,159,161,162,168,169,170,171,172,173,176,177,179,182,191,193,195,196,197,202,205,207,210,211,212,213,220,223,224,225,236,238,252,255,258,263,264,265,266,267,270,271,272,273,275],speech:[0,34,202,238],speed:[38,218,220],spefici:162,spell:[209,274],spend:[196,197],sphere:166,spheric:165,sphinx:[3,12,15,16,18,42,43,44],sphr:[165,166],spil:43,split:[38,43,44,197,220,236],spokesman:3,sport:267,spreadsheet:209,sql:[135,211,266],squar:165,squeez:[12,41],src:[12,25,265],src_kei:68,src_key_siz:68,srpm:34,ssh:12,ssssss:199,stabl:[34,42,44,82,138],stack:[41,44],stack_over_flow:258,stage:[34,42,44],stamp:[199,216,217,219],stand:[43,250],standalon:[156,159],standard:[43,103,105,155,243,258,268],start:[17,25,29,32,34,38,40,41,42,44,74,83,95,112,114,115,135,137,143,156,158,165,196,197,198,199,206,207,209,216,218,228,252,262,268,272],start_tim:[43,84,137,155,258,268,272],starttim:[43,84,137,155,207,258,268,272],startup:40,state:[34,40,102,165,250,258],stateless:34,statement:197,station:[173,205,271,275],statist:[34,121],statu:[22,24,25,27,31,40,41,42,43,44,46,63,81,84,87,102,151,152,153,154,155,165,207,250,252,268,272],status:[87,258],stdin:39,stem:[25,31,34,42,224],steme:224,steming_algorithm:224,step:[17,18,29,32,44,91,135,210,219,265,268],steve:44,still:[16,17,34,41,42,95,114,131,143,151],stock:34,stop:[34,38,40,41,42,43,44,47,70,86,95,114,135,136,143,153,155,211,212,213,225,269],stop_word:[103,144,221,225],storag:[22,41,168,169],storategi:135,store:[22,33,34,40,41,43,47,50,54,57,58,63,65,76,80,91,92,93,104,112,114,115,121,134,135,159,165,176,197,200,205,210,219,220,243,258,265,266,267,268,270,271,274,275],str:57,str_length:74,str_ptr:74,str_size:57,strang:210,stream:[42,44],strerror:42,stretch:[22,23],strftime:34,strict:[42,43],string1:163,string2:163,string:[11,22,34,38,39,40,41,42,43,44,54,56,57,63,65,66,74,80,83,85,96,97,98,109,112,114,115,122,134,135,140,149,158,162,165,168,169,171,176,179,180,181,195,196,210,223,243,264,266,267,268,270,271,274],string_length:[22,44,46,112,114,115,135,160,171],string_liter:42,string_siz:57,string_substr:[22,44,46,160],stringifi:44,strip:170,strlen:74,stronger:[34,135],strongli:[23,24,25,27,31,32],struct:34,structur:[0,42,44,83,220,267],stub:42,studio:[8,32,40,41,43,44],style:[34,42,43,105,121,210],sub1:[115,135],sub:[0,12,34,115,158,238],sub_filt:[22,34,41,43,46,160,171,176],subclass0:238,subclass1:238,subclass2:238,subclass:[34,238],subject:41,submiss:[138,216,217,219],submit:[3,22,41,138,158,216,217,219],subrec:63,subrecord:41,subscript:[202,223],subsect:262,subset:243,substit:135,substitut:[17,135,177,196,197],substr:[44,171,196,197],succe:34,succeed:[29,43,87,96,98,102,106,107,108,109,130,148,268],succeeded_or_not:[95,102,107,109,130,148],success:[44,50,51,54,55,57,65,73,74,91,92,95,99,104,117,124,125,129,139,140,142,143,258],successfulli:[44,74,107,108,268],successor:197,suddenli:41,sudo:[12,14,18,21,24,25,27,28,29,30,31,40,242,256,263,272],suenaga:43,suffici:[74,262],suffix:[22,34,40,124,125,129,151,157,159,171,177,191,202,238,264,270],suffixsearchterm:[196,197],sug:218,suggest:[22,29,34,36,37,38,39,40,41,42,43,44,46,81,150,210,216,217],suggest_prepar:[138,216,217,219],sugimoto:43,suit:[0,42,179],suitabl:[42,92,112,115,135,140,153,198,211,213,220,226,228,236,237],sum:[34,42,112,114,115,135,211],summar:266,summari:[22,41,46,154,222,227,249,266],sundai:184,suno:42,superior:[0,179],superscript:[202,223],supoort:34,support:[0,1,6,7,8,17,21,25,29,31,34,38,39,40,41,42,43,44,45,74,84,86,92,105,112,114,115,131,132,133,135,137,140,145,146,151,155,159,171,176,179,191,196,197,198,201,203,206,207,209,210,214,220,224,238,239,252,255,256,265,266,267,268,270,272,273,275],suppport:44,suppress:[34,39,40,42,115,135],sure:268,surfac:205,surrog:34,surround:[40,168,169,179,197],suzuki:40,swap:242,swedish:[34,224],swig:45,syllab:[202,223],symbol:[34,202,228,229,230,231,232,233,234,235],synonym:[44,135,209,274],syntax:[22,34,40,41,42,43,44,46,47,57,80,195,211,264,270],syntax_error:258,syscal:[42,268],sysconfig:256,sysctl:[28,43,242,263],system:[0,5,6,7,29,30,31,34,38,41,42,43,44,92,99,104,112,114,115,135,153,155,179,196,197,198,242,243,262,265,275],systemctl:[25,256],systemd:[25,40,43,44],tab:[43,53,207,209,258],tabel:34,tabl:[11,22,34,38,39,40,41,42,43,44,46,47,51,54,55,58,63,65,66,68,69,72,76,80,82,94,99,100,102,104,106,107,108,112,114,115,116,118,120,123,130,131,138,139,143,148,151,153,155,157,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,206,209,210,211,212,213,214,216,217,219,221,224,225,242,252,255,261,264,265,266,267,269,272,273,274,275],table1:[68,142],table2:[68,142],table_1:134,table_2:134,table_:[140,220],table_buff:54,table_copi:[22,44,46,81],table_cr:[22,34,40,42,43,44,46,47,80,81,91,92,93,95,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,142,143,144,148,153,154,158,161,162,165,168,169,170,171,172,173,176,177,179,182,184,191,193,196,197,198,200,201,206,210,211,212,213,214,220,221,224,225,242,261,265,266,267,268,270,271,273,274],table_dat_kei:[33,34,41,42,44,91,121,134,140,196,197],table_hash_kei:[33,44,47,80,91,92,102,103,104,105,106,107,108,112,114,115,116,117,120,121,122,123,130,134,135,140,142,158,161,162,165,170,171,172,173,176,177,184,191,193,197,198,200,211,242,265,266,267,268,270,271],table_list:[22,34,36,38,40,46,81,143,153,268],table_n:134,table_nam:[104,120,123,134],table_name_1:134,table_name_2:134,table_name_n:134,table_name_of_index_column:104,table_no_kei:[33,42,43,47,91,102,103,106,107,108,112,114,115,117,120,121,123,130,134,135,140,142,158,168,169,177,179,196,197,198,210,212,213,224,225,261,270],table_pat_kei:[33,41,43,44,63,80,91,92,93,95,103,104,112,114,115,117,121,122,130,134,135,140,142,143,144,148,153,158,168,169,171,172,176,177,179,182,196,197,206,210,211,212,213,221,224,225,242,261,267,268,270,271,273,274],table_remov:[22,34,40,41,43,44,46,81,91,104,117,123,153],table_renam:[22,39,46,81,91,104],table_token:[22,44,46,81,226],tablecursor:43,tablegroupflag:43,tablenam:82,tables_buff:54,tachikawa:44,tag:[12,22,34,38,40,41,42,43,80,91,93,112,114,115,135,168,169,170,171,172,179,191,193,197,211,212,213,220,236,237,264],tag_length:115,tagger:0,tahr:[31,42],taht:34,tail:[12,258],tajima:40,takagi01:34,takashi:102,takatsugu:42,takayama:43,takayuki:38,take:[34,44,88,91,92,93,95,96,97,98,99,104,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,151,156,256,268],taken:122,takiuchi:41,talk:[2,12,34,41,43],tamano:[42,44],tanab:41,tanuma:42,tar:[12,24,25,27,28,29,30,31],target:[18,29,32,34,38,40,42,43,44,50,51,55,57,58,63,65,80,96,97,98,104,105,106,107,108,112,114,115,117,123,130,131,135,140,146,158,162,168,169,176,177,179,196,197,202,210,212,213,223,252,265,268,270],target_charact:57,target_class:[34,202],target_nam:42,taro:267,task:[0,40],tasuku:[43,45],tatsuya:40,tcp:158,tcp_nodelai:44,team:34,techniqu:[211,212,213],temporari:[6,7,22,34,40,43,44,46,142,153,165,263],temporarili:34,tend:270,term:[0,33,34,40,41,42,43,44,89,92,104,112,114,115,122,134,135,142,144,153,168,169,177,179,196,211,212,213,221,224,225,242,261,268,270,274],termin:[40,43,54,57,66,74,153,155,268,271],terms_tabl:135,teruya:43,test:[6,12,14,23,24,25,27,31,32,40,42,43,44,113,135,154,155,239,265,268,270,271,272],test_loc:154,test_str:14,test_text_otoj:14,testdb:[154,159],tetsuharu:42,tex:146,text:[17,22,29,33,34,38,40,41,42,43,44,47,57,58,63,73,80,83,93,105,107,112,114,115,118,121,122,130,134,135,140,142,144,146,154,168,170,177,179,191,195,197,200,201,202,203,206,207,210,211,212,213,220,223,226,228,229,230,231,232,236,237,238,239,242,252,264,265,267,271,274],than:[0,33,34,38,41,42,43,44,63,80,86,92,93,99,114,115,121,122,135,138,140,153,155,165,171,177,179,191,195,198,199,209,210,211,212,213,219,228,238,239,242,243,250,256,265,266,268,270,271,275],thank:271,thatn:135,the_number_of_loaded_record:105,theater:274,theatr:274,thei:[29,30,43,47,80,92,104,105,112,114,115,117,122,124,125,129,135,142,146,155,156,168,169,176,179,182,195,196,197,198,199,207,209,211,212,213,214,216,217,218,219,220,238,242,252],them:[16,17,24,25,27,29,31,34,43,49,57,80,83,92,104,114,115,117,135,140,142,158,165,171,191,196,197,210,211,228,229,230,231,232,233,234,235,237,240,241,242,258,265,268,275],themselv:[17,206,209],therefor:[103,236],therubyrac:12,thesauru:135,thi:[0,3,5,6,7,8,18,20,21,23,24,25,26,27,28,29,30,31,32,34,38,40,41,42,43,44,47,48,50,51,53,54,55,63,65,74,80,81,83,88,91,92,93,95,96,97,98,99,104,105,106,107,108,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,129,130,131,132,133,134,135,136,137,139,140,142,143,144,145,146,147,148,150,151,153,155,157,158,160,161,165,169,171,172,173,177,179,181,182,184,191,193,194,196,197,199,202,204,206,207,209,210,211,212,213,214,215,216,217,219,223,228,236,238,239,242,243,244,252,258,262,263,265,266,268,270,271,272,273,274,275],thing:43,think:[135,142,197,210,211,212,213],third:[93,135,191,197,265],thorsten:44,those:[0,17,29,30,39,135,165,179,195,196,197,201,207,218,219,220,252,265,268],though:[0,34,40,41,42,44,63,151,216,270],thread:[0,34,41,42,43,44,51,54,55,70,74,99,107,113,137,142,145,153,158,199,252],thread_count:43,thread_id:[34,153],thread_limit:[22,34,43,46,81,99,113,123,142],thread_tabl:154,thread_title_column:154,threasd:153,three:[41,80,83,95,104,118,135,161,162,165,168,171,191,195,212,213,216,217,265,266,268,270],threshold:[23,34,36,38,40,42,43,54,64,65,101,135,138,149,153,261],through:[0,155,158],throughput:[38,252],thu:[0,34,42,44,114,115,135,157,159,196,269,270,274,275],thursdai:184,tid:61,tim:34,time:[0,6,7,22,34,38,40,41,42,43,44,49,83,86,92,112,114,115,116,117,120,121,122,123,130,131,134,135,136,137,138,140,151,153,154,158,179,184,196,198,199,209,210,214,216,217,219,236,242,261,264,268,275],time_classify_dai:[22,44,46,160],time_classify_day_of_week:[22,34,46,160],time_classify_hour:[22,44,46,114,160],time_classify_minut:[22,44,46,160],time_classify_month:[22,44,46,160],time_classify_second:[22,44,46,160],time_classify_week:[22,44,46,160],time_classify_year:[22,44,46,160],time_column:154,time_format:34,time_format_iso8601:34,time_stamp:[34,199],timeout:[22,41,44,46,49,65,81,153],timestamp:[34,44,112,114,115,116,117,120,123,130,135,151,153,158,271],timestamp_text:[115,135],tini:43,titl:[12,34,41,42,103,105,106,107,108,112,114,115,130,135,142,163,177,182,196,197,211,212,213,265,266,267,268,270,272],title_index:211,title_index_column:34,tiwawan:43,tld:266,tmp:[6,7,12,41,93,95,114,122,123,138,143,153,209,210,252,258,268,272],to_column:91,tobbi:177,todai:0,todo:[6,7,14,34,51,52,54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,71,72,75,77,79,80,83,92,105,114,118,128,135,157,160,180,192,196,197,214,242,244,252,253,254,269,270],token:[22,24,25,27,28,29,31,34,38,40,41,42,43,44,46,81,91,92,104,112,114,115,122,135,140,144,147,154,196,197,200,202,210,217,219,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,268],token_filt:[34,44,103,144,221,223,224,225],token_filter_1:[122,134],token_filter_2:[122,134],token_filter_n:[122,134],token_filter_nam:134,token_filter_name_1:134,token_filter_name_2:134,token_filter_name_n:134,token_fitl:134,tokenbigram:[22,46,92,112,114,115,122,130,134,135,140,142,144,146,147,153,158,168,169,177,179,182,196,197,198,211,212,213,217,220,221,224,225,226,227,229,230,231,232,233,234,235,238,240,241,242,261,268,270,271,274],tokenbigramignoreblank:[22,46,134,147,227,261],tokenbigramignoreblanksplitsymbol:[22,46,134,147,227,261],tokenbigramignoreblanksplitsymbolalpha:[22,34,46,134,147,227,261],tokenbigramignoreblanksplitsymbolalphadigit:[22,34,46,134,147,227,261],tokenbigramsplitsymbol:[22,34,46,134,147,227,261],tokenbigramsplitsymbolalpha:[22,46,134,135,146,147,227,228,261],tokenbigramsplitsymbolalphadigit:[22,46,91,134,147,177,217,227,261],tokenbigramsplitxxx:228,tokenbigrm:91,tokendelimit:[22,34,46,134,146,147,158,219,223,227,237],tokendelimitnul:[22,46,134,147,227],tokendelmit:34,tokenfilternfkc100:[22,34,46,222],tokenfilterstem:[22,25,31,34,42,46,222],tokenfilterstopstem:224,tokenfilterstopword:[22,34,42,43,46,144,221,222,224],tokenizer_1:134,tokenizer_2:134,tokenizer_error:258,tokenizer_list:[22,42,46,81],tokenizer_n:134,tokenizer_nam:134,tokenizer_name_1:134,tokenizer_name_2:134,tokenizer_name_n:134,tokenkytea:40,tokenmecab:[22,34,40,46,197,202,223,227,261],tokenngram:34,tokenpattern:34,tokenregexp:[22,43,44,46,130,134,147,210,227],tokenstopword:34,tokent:34,tokentrigram:[22,43,46,134,146,147,227],tokenunigram:[22,46,134,147,227],tokyo:[165,275],tokyogeopoint:[38,44,58,121,122,134,165,166,167,275],tom:177,tomita:36,tomo:267,tomoatsu:[36,40],tomygx:43,too:[18,34,41,43,44,63,70,80,123,135,197,262,265,270],too_large_offset:258,too_many_link:258,too_many_open_fil:258,too_many_open_files_in_system:258,too_many_symbolic_link:258,too_small_limit:258,too_small_offset:258,tood:[74,139],tool:[6,15,17,18,21,22,23,32,43,156,252,256,264,268],top:[58,266],top_left:[38,167],top_left_point:58,topic:[3,22],torinki:44,tortoisegit:8,toshio:34,totabl:91,total:[33,34,40,43,44,89,121,140,154,220,242,258,263],total_chunk_s:121,total_s:121,touch:[43,55,117],toybox:265,tracker:[3,22,42],trade:226,tradit:[0,42],trail:34,transfer:[0,22,250,256,258,264],transit:256,translat:[3,18,34,40,42],transposit:44,travel:271,travi:[20,22,40,41,42],treat:[34,40,41,42,43,112,114,115,117,135,146,171,197,205,216,217],tree:42,trend:135,tri:[34,49,171,271],trial:0,trie:[22,38,40,41,43,44,122,134,140,196,197,220,264,268],trigram:[34,240],tritonn:[112,114,115,135,196,197],troubl:17,troubleshoot:[22,34,36],truncat:[22,34,38,41,42,43,44,46,51,63,81,104],trust:12,trusti:[12,31,42],tsu_root:43,tsv:[43,124,125,129,156,207,258],tuesdai:184,tune:[22,41,43,46,80,135,263],tupl:171,turn:[34,155],tutori:[22,40,42,43,74,265,268],tweet:[2,198],twice:[43,135,196],twitter:[22,40,44,271],two:[19,24,25,27,31,34,41,42,43,54,57,63,83,92,93,98,112,113,114,115,117,123,135,139,140,142,143,145,146,155,158,159,161,165,172,176,177,179,182,191,196,199,201,205,210,212,217,219,228,236,251,252,256,266,267,268,270,271,275],txt:[16,17,239],type1:[138,158],type2:[138,158],type:[13,22,33,34,38,39,40,41,42,43,44,46,47,51,53,54,57,58,62,63,65,66,70,76,80,87,91,93,95,102,104,105,118,120,131,132,138,140,142,146,151,154,155,156,162,165,182,196,197,201,202,203,205,207,210,211,212,213,216,217,219,220,228,252,258,264,266,267,268,270,273,275],type_1:134,type_2:134,type_in_hex:63,type_n:134,type_nam:134,type_name_1:134,type_name_2:134,type_name_n:134,type_of_the_column:182,typic:[43,135],typo:[34,38,40,41,42,43,44,209,216,217],u0000ful:237,u0000http:237,ubuntu:[12,18,21,22,23,34,38,40,41,42,43,44,256],uchiyama:34,ud83c:34,udf7a:34,ueno:[38,40],uid:12,uint16:[41,121,122,134],uint32:[33,40,41,42,47,80,83,91,92,93,95,102,112,114,115,121,122,134,135,140,141,142,143,148,158,161,171,176,182,196,197,198,200,210,224,225,242,261,266,267,268,270,272,273,274,275],uint32_column:43,uint32_t:70,uint64:[33,34,41,42,121,122,134,158],uint8:[36,41,47,92,93,104,121,122,134,184],uint:[40,44],ull:146,ultra:267,umask:42,umemoto:38,unari:41,unauthent:40,unchang:74,uncontinu:40,undefin:265,under:[29,34,42,155,156,158,159,252],underflow:[34,265],underli:0,underscor:[92,140],understand:[42,103,117,135,142,268],undocu:135,unexpect:[34,40,42,44],unexpectedli:[34,41,43,44,104],unexpectedlli:34,unfinish:34,unhandl:158,unicod:[34,43,201,202,203,223],unicorn:43,unifi:34,unify_alphabet:34,unify_digit:34,unify_hyphen:34,unify_hyphen_and_prolonged_sound_mark:34,unify_kana:34,unify_kana_cas:34,unify_kana_voiced_sound_mark:34,unify_katakana_bu_sound:34,unify_katakana_v_sound:34,unify_middle_dot:34,unify_prolonged_sound_mark:34,unify_symbol:34,unify_to_romaji:34,unigram:241,uniniti:43,uninstal:40,uniqu:[34,92,131,158],unit:[81,86,102,137,158,165,179,197,240,241,258],univers:31,unix:[3,5,8,29,42,137],unix_time_when_command_is_start:83,unknow:42,unknown:[34,39,47,56,63],unknown_error:258,unlimit:44,unlink:[34,57],unload:40,unlock:[34,74,105],unmanag:[89,121],unmap:[34,43,55,99],unnam:34,unnecessari:[34,242],unpatch:45,unrecover:55,unregist:[124,125],unrel:38,unreli:151,unresolv:38,unsaf:[43,44,55],unsign:[42,43,50,51,57,60,63,65,66,68,69,71,74,87,121,243,258,265],unsort:44,unsplit:[11,135],unstabl:39,unsupport:[34,43],unsupported_command_vers:258,untag:170,until:[17,42,49,74,86,99,135,198],unus:[42,99],updag:40,updat:[3,22,25,27,31,34,38,40,41,42,43,44,45,49,92,105,121,135,155,179,198,215,220,238,265,267,268,270],update_buffer_s:60,update_not_allow:258,updated_at:261,upgrad:[12,34,40,42,43,44,251],upload:12,upper:[38,42,92,140,210,268],uppercas:210,uptim:[84,137,155,207,258,268,272],uri:[155,156,158],url:[38,42,103,156,252],usa:266,usabl:[149,158],usag:[0,22,34,41,42,43,44,46,196,197,270],use:[0,1,5,6,7,8,15,16,17,19,21,22,23,24,25,27,28,29,31,32,33,34,38,40,41,42,43,44,46,47,50,51,53,54,55,57,63,70,73,74,80,83,89,91,92,96,97,98,99,102,104,105,107,112,113,114,115,116,117,118,120,121,123,124,129,130,131,132,133,134,135,136,137,140,142,146,148,151,153,155,156,158,160,165,168,169,170,171,172,176,177,191,195,196,197,199,201,203,205,206,207,209,210,211,212,213,214,215,220,223,228,236,238,239,242,243,250,252,255,256,258,263,265,266,267,268,270,271,272,273,274,275],use_offline_index:39,use_range_index:43,use_read:[34,223],used:[0,21,29,33,34,38,40,41,42,43,44,47,48,50,53,54,55,57,63,65,73,80,83,85,86,87,88,91,92,99,104,106,107,108,112,113,114,115,120,121,130,134,135,137,138,140,148,151,153,155,158,159,160,161,168,169,170,171,177,179,182,195,196,197,199,200,206,209,210,211,212,213,217,220,223,226,228,239,240,241,244,250,252,258,265,266,267,268,270,271,275],useful:[0,6,7,34,42,43,44,47,51,80,83,86,92,93,104,112,113,118,122,123,130,134,135,136,144,146,153,155,195,196,206,210,211,220,238,252,265,268,270],useless:55,user:[3,6,7,8,29,32,34,40,41,42,43,44,47,63,70,83,85,86,91,92,93,95,102,104,117,120,121,123,131,134,135,143,148,151,154,155,161,169,171,177,179,182,196,197,199,206,216,217,218,219,242,243,252,267,272,274],user_ag:161,user_column:154,user_data:[66,74],user_input:197,user_pattern:171,usernam:[32,267],users_20160320:117,users_index:271,users_loc:271,users_memo:177,users_nam:[104,177],uses:[0,18,19,20,21,29,31,34,40,41,42,44,47,50,53,55,73,80,83,86,87,92,103,112,114,115,117,118,134,135,136,140,142,144,145,146,153,155,165,168,169,171,172,177,179,196,197,198,199,200,201,203,205,209,210,211,212,213,216,217,219,221,224,225,228,236,237,240,241,242,252,258,265,266,268,269,270,272,273],using:[0,3,22,29,33,34,40,41,43,44,45,47,53,86,92,104,112,113,114,115,117,135,142,145,151,155,158,171,177,196,197,202,206,209,210,218,219,238,258,264,267,268,270],usr:[14,25,28,29,124,125,129,153,155],usual:[43,44,54,159,265,270],utc:[83,197],utf8:[29,44,56,153],utf:[34,40,41,45,63,158,197,201,203,207,239],util:155,utop:43,uuid:44,uuuuuu:197,uzulla:38,vagrant:12,valid:[34,38,40,41,42,43,44,112,114,115,135,196,197,219,220,265],valu:[0,8,29,34,38,39,40,41,42,43,44,49,51,53,54,60,62,63,65,66,69,74,76,80,83,86,87,149,151,153,155,196,197,198,202,207,209,210,211,216,217,218,219,220,223,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,252,256,258,263,265,266,268,273,275],value1:[91,105,155,156,171,172,197],value2:[105,156,197],value_1:[134,268,272],value_2:[134,268,272],value_column:51,value_n:134,value_s:[44,122],value_typ:[68,134],valuebuf:62,valuen:[171,172],var_siz:[63,104,121,122],vari:[33,74],variabl:[30,34,38,39,40,41,42,43,44,74,93,104,121,122,135,197,209,258,265],variant:[34,238],varieti:267,variou:[22,264,268,271],vdw:[266,268,275],vector:[22,34,38,40,41,42,43,44,46,65,76,93,102,112,114,115,121,122,134,135,192,193,194,216,264,271],vector_column:[41,44],vector_find:[22,34,46,160],vector_new:[22,34,46,112,114,115,135,160],vector_s:[22,34,43,46,112,160],vector_slic:[22,34,44,46,160],vector_text_column:43,veres:252,veri:[0,34,40,44,83,105,112,114,115,135,168,169,171,179,191,196,197,210,211,216,220,252,267],version1:82,version2:82,version3:82,version4:82,version:[12,18,22,25,26,29,30,31,32,34,38,40,41,42,43,44,45,46,47,51,52,54,55,63,74,81,84,85,86,90,91,92,96,97,98,99,103,104,105,106,107,108,112,113,114,115,116,117,120,121,122,123,124,125,126,129,130,131,134,135,136,137,139,142,145,148,149,151,153,154,155,156,162,164,165,168,169,170,171,172,173,180,181,184,191,192,193,194,196,197,202,203,207,210,212,213,214,223,239,244,245,246,247,248,251,256,258,268,272],vertic:[92,140],vervet:[43,44],via:[17,26,34,40,87,103,158,219],video:267,view:[12,22,40,172,263,264,272],violat:34,violin:34,virtual:[41,43],virtualbox:12,visual:[0,8,32,38,40,41,42,43,83,134],visut:44,vivid:[12,43,44],vmstat:263,vocabulari:268,voic:[34,201,202,223],void_t:70,vojtovich:42,volum:26,vulner:42,w64:12,wai:[0,3,6,7,19,34,40,41,42,80,104,135,149,151,155,158,159,177,195,207,238,266,268,270,271,274],wait:[49,74,86,112,114],wanab:41,want:[6,7,8,13,16,24,25,27,28,29,31,34,42,43,47,63,70,91,92,105,112,113,117,118,120,121,123,132,133,134,135,140,142,144,146,151,153,155,158,165,172,176,182,196,209,210,214,216,217,219,224,226,228,238,250,256,258,263,266,268,270,274],wareohji:40,warm:[153,155],warn:[6,7,34,39,40,41,42,109,110,135,153,155,199,210,213],warp:42,warri:23,washida:41,wasn:[34,44],watch:12,weak:[0,179],web:[29,135,138,155,156,196,217,219,267],webclip:170,webplu:135,wednesdai:184,week:184,weight1:[34,40,80,135],weight2:[34,40,80,135],weight3:80,weight:[22,34,40,41,42,63,93,121,134,135,158,177,196,211,264,265],weight_in_match_column:80,weight_in_weight_vector:80,welcom:[2,3,16,17,112,114,115,135,196,197,271],well:[0,29,34,41,155,179,272],were:[34,44,165,268],werewolf:[43,44],wget:[24,25,27,29,30,31],wgs84geopoint:[38,44,58,121,122,134,165,265,266,267,271,272,275],wgs84geoppoint:58,what:[34,57,92,104,117,135,138,142,158,182,210,274],when:[0,3,18,34,38,40,41,42,43,44,47,51,55,65,70,80,83,84,86,91,92,96,99,103,104,105,106,112,113,114,115,117,121,122,123,124,129,130,134,135,136,138,140,142,145,151,153,155,158,162,165,170,172,177,182,191,196,198,200,210,214,216,225,226,228,236,239,242,250,255,258,262,267,268,271,273],where:[29,34,87,262,265],whether:[34,40,42,43,44,54,55,65,87,96,98,103,104,105,106,107,108,109,112,114,115,117,120,121,122,123,130,134,135,138,142,148,151,155,158,161,165,171,172,177,182,195,196,214,263,265],which:[0,1,27,34,40,41,42,43,44,63,73,74,102,104,109,112,114,115,117,118,132,133,135,144,146,151,153,158,159,165,170,172,173,176,177,182,193,196,197,216,256,258,262,265,266,267,268,270,271,272,273,274,275],white:[34,196,226,228,229,230,231,232,240,241,268],whitespac:34,who:[34,41,43,151,161,226,267],whole:41,whombx:41,whose:[197,262,268],why:[41,135,210,256],wibowo:41,wide:[0,29,38,44,206,210,268],width:[34,38,43,201,202,223],wiedenroth:42,wiki:155,wikipedia:[206,243],wili:[43,44],win64:[8,32],window:[3,5,6,7,12,22,23,34,38,40,41,42,43,44,45,46,74,136,262],window_count:[22,34,46,112,114,115,244],window_record_numb:[22,34,46,115,244,245],window_sum:[22,34,46,112,114,115,135,244],wing:[40,41],with_check:[42,118],with_command_vers:43,with_posit:[34,44,92,93,112,114,115,121,122,130,134,135,158,168,169,177,179,182,196,197,198,210,211,212,213,224,225,242,261,268,270,271,274],with_sect:[34,42,43,44,92,93,121,134,270,271],with_typ:[118,202],with_weight:[42,80,92,93,121,134],within:[216,217,271,275],without:[0,34,39,40,41,42,43,44,47,80,84,88,91,108,112,113,114,115,117,121,123,124,129,135,145,155,177,179,182,196,197,202,210,216,219,223,251,265,274],wno:38,won:34,wonderland:92,word1:[40,135,196,197],word2:[40,135,196,197],word:[0,34,40,42,43,70,76,112,114,115,135,142,182,195,196,197,202,209,211,216,217,218,219,223,225,228,236,238,269,271],work:[0,3,12,29,34,38,40,41,42,43,44,74,99,112,114,115,117,135,145,155,199,210,214,215,228,242,252,268,272],workaround:[42,43,44,142],worker:[34,41,44,155],worker_process:252,world:[34,41,42,226,228,236,243,270,275],worst:[34,44],writabl:[42,43],write:[14,18,29,39,42,43,70,107,128,135,139,153,196,197,210,269,270,271],written:[18,42,124,129,148,214,271],wrong:[34,38,40,41,42,43,44,151,217,218],wrongli:[38,44],wsaenobuf:262,wsasend:34,www:12,x64:[12,32],x86:[32,38,43],x86_64:12,xcode:28,xenial:[31,44],xeru:[31,44],xml:[38,39,40,41,42,53,156,207,252,258],xvzf:[24,25,27,28,29,30,31],xxx:[34,41,42,44,135,153,197],xxx_20150603:43,xxx_20150604:43,xxx_201506:43,xxxx:12,xxxxx:262,yahppo:41,yak:[34,44],yakketi:[34,44],yamada:[42,202],yamaguchi:38,yamamoto:42,yaman:[41,42],yappo:[41,42,45],yasuhiro:34,year:[43,47,161,197,199,271],years_old:47,yes:[12,14,34,39,41,43,44,84,103,104,105,112,114,115,117,123,135,138,142,152,216],yet:[0,34,38,41,44,115,132,133,135,158,197,205,211,213,214,252],yito:[40,41],yml:[12,21,26],yoji:38,yokoyama:[41,42,44],yoku:[41,42],york:[63,165,271],yoshida:41,yoshioka:[40,43],you:[0,1,2,3,5,6,7,8,13,16,17,18,19,20,21,23,24,25,26,27,28,29,31,32,33,34,38,39,40,41,42,43,44,47,49,50,51,53,54,55,57,63,70,73,74,80,81,83,84,85,86,87,88,91,92,93,95,96,97,98,99,102,103,104,105,106,107,108,112,113,114,115,116,117,118,120,121,123,124,125,129,130,131,132,133,134,135,136,138,140,142,143,144,145,146,148,149,151,153,155,156,157,158,159,160,161,165,168,169,170,171,172,173,176,177,179,182,184,191,195,196,197,200,201,202,203,205,206,207,209,210,211,212,213,214,216,219,220,221,223,224,225,226,228,229,230,231,232,236,238,239,242,243,250,252,255,256,258,262,263,265,266,267,268,270,271,272,273,274,275],younger:92,your:[0,3,6,7,8,18,21,31,34,38,42,43,92,104,105,106,107,108,124,129,130,140,145,151,153,155,173,177,197,200,209,210,214,221,238,242,252,258,274],your_db:38,your_github_account:17,your_new_db:38,yourself:[23,92],yuki:[38,42,44],yum:[12,18,24,27,40],yunqiang:44,yutaro:[34,43],yuya:[42,43,44],yy_syntax_error:[47,135],yyi:17,yyyi:[197,199],yyyymm:214,yyyymmdd:[112,114,115,214],zapu:34,zcat:44,zenigata:267,zero:[34,44,76,80,92,135,176,200,209,221,226,258,265],zeromq:29,zesti:34,zip:[12,22,23,40],zlib1g:[25,31],zlib:[23,34,36,38,40,41,42,92,121,134],zlib_error:258,zsh:29,zstandard:[29,44,92,121],zstd:[34,121],zunda:38,zxvf:12},titles:["1. Characteristics of Groonga","6. Client","3. Community","12. How to contribute to groonga","12.3. For Groonga developers","12.3.2. How to build Groonga at the repository","12.3.2.1. How to build Groonga at the repository by GNU Autotools","12.3.2.2. How to build Groonga at the repository by CMake on GNU/Linux or Unix","12.3.2.3. How to build Groonga at the repository by CMake on Windows","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. Repository","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. How to contribute in documentation topics","12.2.3. C API","12.2.2. I18N","12.2.1. Introduction","12.1. How to report a bug","11. Development","11.1. Travis CI","Groonga documentation","2. Install","2.5. CentOS","2.3. Debian GNU/Linux","2.8. Docker","2.6. Fedora","2.2. Mac OS X","2.9. Others","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. Limitations","News","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","News - 1.2.x","News - 1.3.x","News - 2.x","News - 3.x","News - 4.x","News - 5.x","News - 6.x","News in Senna period","7. Reference manual","7.19. Alias","7.25. API","7.25.2. Global configurations","7.25.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_cache</span></code>","7.25.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_column</span></code>","7.25.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_command_version</span></code>","7.25.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_content_type</span></code>","7.25.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ctx</span></code>","7.25.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_db</span></code>","7.25.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_encoding</span></code>","7.25.11. grn_expr","7.25.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_geo</span></code>","7.25.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_hook</span></code>","7.25.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_ii</span></code>","7.25.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_index_cursor</span></code>","7.25.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_info</span></code>","7.25.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_inspect</span></code>","7.25.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_match_escalation</span></code>","7.25.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_obj</span></code>","7.25.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_proc</span></code>","7.25.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_search</span></code>","7.25.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table</span></code>","7.25.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_table_cursor</span></code>","7.25.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_thread_*</span></code>","7.25.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_type</span></code>","7.25.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">grn_user_data</span></code>","7.25.1. Overview","7.25.3. Plugin","7.12. Cast","7.6. Column","7.6.4. Index column","7.6.3. Pseudo column","7.6.1. Scalar column","7.6.2. Vector column","7.3. Command","7.3.1. Command version","7.3.2. Output format","7.3.3. Pretty print","7.3.4. Request ID","7.3.5. Request timeout","7.3.6. Return code","7.3.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">cache_limit</span></code>","7.3.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">check</span></code>","7.3.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">clearlock</span></code>","7.3.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_copy</span></code>","7.3.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_create</span></code>","7.3.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_list</span></code>","7.3.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_remove</span></code>","7.3.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">column_rename</span></code>","7.3.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_delete</span></code>","7.3.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_get</span></code>","7.3.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">config_set</span></code>","7.3.18. <code class=\"docutils literal notranslate\"><span class=\"pre\">database_unmap</span></code>","7.3.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">define_selector</span></code>","7.3.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">defrag</span></code>","7.3.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">delete</span></code>","7.3.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">dump</span></code>","7.3.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">io_flush</span></code>","7.3.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">load</span></code>","7.3.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_acquire</span></code>","7.3.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_clear</span></code>","7.3.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">lock_release</span></code>","7.3.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_level</span></code>","7.3.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_put</span></code>","7.3.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">log_reopen</span></code>","7.3.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_count</span></code>","7.3.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_parameters</span></code>","7.3.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_range_filter</span></code>","7.3.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_select</span></code>","7.3.35. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_shard_list</span></code>","7.3.36. <code class=\"docutils literal notranslate\"><span class=\"pre\">logical_table_remove</span></code>","7.3.37. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalize</span></code>","7.3.38. <code class=\"docutils literal notranslate\"><span class=\"pre\">normalizer_list</span></code>","7.3.39. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_exist</span></code>","7.3.40. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_inspect</span></code>","7.3.41. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_list</span></code>","7.3.42. <code class=\"docutils literal notranslate\"><span class=\"pre\">object_remove</span></code>","7.3.43. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_register</span></code>","7.3.44. <code class=\"docutils literal notranslate\"><span class=\"pre\">plugin_unregister</span></code>","7.3.45. <code class=\"docutils literal notranslate\"><span class=\"pre\">query_expand</span></code>","7.3.46. <code class=\"docutils literal notranslate\"><span class=\"pre\">quit</span></code>","7.3.47. <code class=\"docutils literal notranslate\"><span class=\"pre\">range_filter</span></code>","7.3.48. <code class=\"docutils literal notranslate\"><span class=\"pre\">register</span></code>","7.3.49. <code class=\"docutils literal notranslate\"><span class=\"pre\">reindex</span></code>","7.3.50. <code class=\"docutils literal notranslate\"><span class=\"pre\">request_cancel</span></code>","7.3.51. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_eval</span></code>","7.3.52. <code class=\"docutils literal notranslate\"><span class=\"pre\">ruby_load</span></code>","7.3.53. <code class=\"docutils literal notranslate\"><span class=\"pre\">schema</span></code>","7.3.54. <code class=\"docutils literal notranslate\"><span class=\"pre\">select</span></code>","7.3.55. <code class=\"docutils literal notranslate\"><span class=\"pre\">shutdown</span></code>","7.3.56. <code class=\"docutils literal notranslate\"><span class=\"pre\">status</span></code>","7.3.57. <code class=\"docutils literal notranslate\"><span class=\"pre\">suggest</span></code>","7.3.58. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_copy</span></code>","7.3.59. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_create</span></code>","7.3.60. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_list</span></code>","7.3.61. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_remove</span></code>","7.3.62. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_rename</span></code>","7.3.63. <code class=\"docutils literal notranslate\"><span class=\"pre\">table_tokenize</span></code>","7.3.64. <code class=\"docutils literal notranslate\"><span class=\"pre\">thread_limit</span></code>","7.3.65. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenize</span></code>","7.3.66. <code class=\"docutils literal notranslate\"><span class=\"pre\">tokenizer_list</span></code>","7.3.67. <code class=\"docutils literal notranslate\"><span class=\"pre\">truncate</span></code>","7.18. Configuration","7.1. Executables","7.1.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP server","7.1.7. groonga-suggest-create-dataset","7.1.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">groonga-suggest-httpd</span></code>","7.1.9. groonga-suggest-learner","7.15. Function","7.15.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">between</span></code>","7.15.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">cast_loose</span></code>","7.15.3. edit_distance","7.15.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">fuzzy_search</span></code>","7.15.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">geo_distance</span></code>","7.15.6. geo_in_circle","7.15.7. geo_in_rectangle","7.15.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_full</span></code>","7.15.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">highlight_html</span></code>","7.15.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">html_untag</span></code>","7.15.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_records</span></code>","7.15.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">in_values</span></code>","7.15.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">math_abs</span></code>","7.15.14. now","7.15.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">number_classify</span></code>","7.15.16. <code class=\"docutils literal notranslate\"><span class=\"pre\">prefix_rk_search</span></code>","7.15.17. <code class=\"docutils literal notranslate\"><span class=\"pre\">query</span></code>","7.15.18. rand","7.15.19. <code class=\"docutils literal notranslate\"><span class=\"pre\">snippet_html</span></code>","7.15.20. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_length</span></code>","7.15.21. <code class=\"docutils literal notranslate\"><span class=\"pre\">string_substring</span></code>","7.15.22. <code class=\"docutils literal notranslate\"><span class=\"pre\">sub_filter</span></code>","7.15.23. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day</span></code>","7.15.24. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_day_of_week</span></code>","7.15.25. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_hour</span></code>","7.15.26. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_minute</span></code>","7.15.27. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_month</span></code>","7.15.28. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_second</span></code>","7.15.29. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_week</span></code>","7.15.30. <code class=\"docutils literal notranslate\"><span class=\"pre\">time_classify_year</span></code>","7.15.31. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_find</span></code>","7.15.32. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_new</span></code>","7.15.33. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_size</span></code>","7.15.34. <code class=\"docutils literal notranslate\"><span class=\"pre\">vector_slice</span></code>","7.13. grn_expr","7.13.1. Query syntax","7.13.2. Script syntax","7.21. Indexing","7.23. Log","7.7. Normalizers","7.7.2.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerAuto</span></code>","7.7.2.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC100</span></code>","7.7.2.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">NormalizerNFKC51</span></code>","7.17. Operations","7.17.1. Geolocation search","7.17.2. Prefix RK search","7.2. Output","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.14. Regular expression","7.11. Scorer","7.11.3.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">scorer_tf_idf</span></code>","7.22. Sharding","7.20. Suggest","7.20.2. Completion","7.20.3. Correction","7.20.1. Introduction","7.20.4. Suggestion","7.5. Tables","7.9.1. Summary","7.9. Token filters","7.9.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterNFKC100</span></code>","7.9.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStem</span></code>","7.9.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenFilterStopWord</span></code>","7.8.1. Summary","7.8. Tokenizers","7.8.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigram</span></code>","7.8.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlank</span></code>","7.8.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbol</span></code>","7.8.5. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlpha</span></code>","7.8.6. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramIgnoreBlankSplitSymbolAlphaDigit</span></code>","7.8.7. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbol</span></code>","7.8.8. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlpha</span></code>","7.8.9. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenBigramSplitSymbolAlphaDigit</span></code>","7.8.10. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimit</span></code>","7.8.11. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenDelimitNull</span></code>","7.8.12. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenMecab</span></code>","7.8.13. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenRegexp</span></code>","7.8.14. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenTrigram</span></code>","7.8.15. <code class=\"docutils literal notranslate\"><span class=\"pre\">TokenUnigram</span></code>","7.24. Tuning","7.4. Data types","7.16. Window function","7.16.1. <code class=\"docutils literal notranslate\"><span class=\"pre\">record_number</span></code>","7.16.2. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_count</span></code>","7.16.3. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_record_number</span></code>","7.16.4. <code class=\"docutils literal notranslate\"><span class=\"pre\">window_sum</span></code>","5. Server","5.3. GQTP","5.2. HTTP","5.2.1. Comparison","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached binary protocol","5.1. Server packages","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","10. Troubleshooting","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to analyze error messages","10.3. How to avoid mmap Cannot allocate memory error","4. Tutorial","4.3. Various data types","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.1. Basic operations","4.9. Additional information about lexicon for full text search","4.7. match_columns parameter","4.10. Let\u2019s create micro-blog","4.2. Remote access","4.8. Prefix search with patricia trie","4.11. Query expansion","4.4. Various search conditions"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[36,37,38],"1\u30ea\u30ea\u30fc\u30b9":[36,38],"2\u30ea\u30ea\u30fc\u30b9":36,"3\u30ea\u30ea\u30fc\u30b9":36,"4\u30ea\u30ea\u30fc\u30b9":36,"5\u30ea\u30ea\u30fc\u30b9":36,"6\u30ea\u30ea\u30fc\u30b9":[35,36],"7\u30ea\u30ea\u30fc\u30b9":[35,36],"8\u30ea\u30ea\u30fc\u30b9":36,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":10,"\u306e\u66f4\u65b0":12,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":10,"\u30aa\u30d7\u30b7\u30e7\u30f3":[152,154],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":14,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":11,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":11,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":82,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":154,"\u30b5\u30f3\u30d7\u30eb":[152,154],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":154,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":14,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":14,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":14,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":154,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":261,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":35,"\u30d0\u30fc\u30b8\u30e7\u30f31":[36,37],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":82,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":12,"\u30d3\u30eb\u30c9\u6642\u306etip":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":12,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30d6\u30ed\u30b0":12,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":243,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":14,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":10,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":12,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4f7f\u3044\u65b9":154,"\u4f8b":[163,166,167,174,178,261],"\u4f8b\u3048\u3070redmin":10,"\u4fee\u6b63":[35,36,37,38],"\u5236\u9650\u4e8b\u9805":154,"\u524d\u63d0\u6761\u4ef6":12,"\u539f\u56e0":261,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":261,"\u540d\u524d":[78,152,154,163,166,167,174,178],"\u5909\u66f4":36,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":12,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":259,"\u5b9f\u9a13\u7684":38,"\u5bfe\u5fdc":10,"\u5bfe\u7b56\u65b9\u6cd51":261,"\u5bfe\u7b56\u65b9\u6cd52":261,"\u5f15\u6570":[152,154,163,166,167,178],"\u611f\u8b1d":[35,36,37,38],"\u6539\u826f":[35,36,37,38],"\u66f8\u5f0f":[152,154,163,166,167,174,178],"\u6700\u521d\u306e1\u56de\u3060\u3051\u884c\u3046\u624b\u9806":12,"\u691c\u7d22":259,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":259,"\u691c\u7d22\u306e\u6319\u52d5":259,"\u691c\u7d22\u4f8b1":11,"\u691c\u7d22\u4f8b2":11,"\u691c\u7d22\u4f8b3":11,"\u691c\u7d22\u4f8b4":11,"\u6982\u8981":82,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":14,"\u6bce\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u3067\u884c\u3046\u624b\u9806":12,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":12,"\u7279\u6b8a\u547d\u4ee4":154,"\u7406\u7531":10,"\u8aac\u660e":[78,152,154,163,166,167,174,178],"\u8fd4\u5024":[163,166,167,174,178],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":10,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":259,"\u95a2\u4fc2\u5f0f":11,"\u95be\u5024\u3092\u3042\u3052\u308b":261,"\u9759\u7684\u89e3\u6790":14,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":259,"benchmark\u547d\u4ee4":154,"benchmark\u5b9f\u884c\u7d50\u679c":154,"boolean":[197,265],"case":[83,117,142],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"class":210,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":82,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"debian\u7cfb\u306e\u5834\u5408":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"default":[29,82,86],"examples\u306e\u5b9f\u884c":12,"facebook\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"files\u306e\u5b9f\u884c":12,"float":[197,243],"function":[112,114,115,135,160,197,244],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":12,"grntest\u306e\u6e96\u5099":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":12,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":11,"hat\u7cfb\u306e\u5834\u5408":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"homebrew\u306e\u66f4\u65b0":12,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":111,"new":[17,34,38,39,40,41,42,43,44,45],"null":197,"po\u306e\u5b9f\u884c":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":12,"ppa\u7528\u306e\u9375\u306e\u767b\u9332":12,"release\u306e\u5b9f\u884c":12,"return":[86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,212,213,245,246,247,248],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"twitter\u7de8":10,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u516c\u958b\u306e\u53d6\u308a\u6d88\u3057":12,"version\u30d1\u30e9\u30e1\u30fc\u30bf":82,"windows\u5411\u3051\u306e\u5834\u5408":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"x\u306e\u304a\u77e5\u3089\u305b":[35,36,37],AND:[196,197],For:4,NOT:[196,197],Near:[196,197],Not:[196,197],The:[34,92,135,242],Use:158,Using:[165,252],With:26,about:[243,269],access:[252,272],add:17,addit:[197,200,269],adjust:135,administr:[155,272],advanc:[115,135,202,223,236,238],against:270,aggreg:0,algorithm:224,alia:47,all:220,alloc:263,also:[6,7,8,47,83,85,86,87,88,90,92,93,96,97,98,100,102,105,106,108,109,110,111,116,118,119,122,124,125,126,128,129,131,132,133,134,135,138,140,144,146,147,157,158,162,168,169,176,177,179,182,195,200,201,202,206,209,212,213,220,221,236,238,258],among:270,analyz:262,anchor:210,api:[16,48],appli:80,approximate_typ:165,archiv:31,arg:11,arithmet:197,arrai:197,assign:[85,196,197],authent:252,autotool:6,avail:155,avoid:263,basic:[117,142,197,268],benchmark:154,between:161,bigram:271,binari:255,bitwis:197,blog:271,blogroonga:12,bodi:83,bool:243,broken:117,brows:155,bug:19,build:[5,6,7,8,24,25,27,28,29,31,32],built:[200,211],builtin:[153,243],cach:[112,114,115,135,155],cache_limit:88,calc_target:115,calc_typ:115,call:197,callback:11,can:243,candidate_n:158,cannot:263,cascad:102,cast:75,cast_loos:162,cento:24,chang:[45,91],charact:210,characterist:[0,220],chat:2,check:[89,151],checkout:[6,7,8],choic:210,clear:151,clearlock:90,client:[1,153,258],clone:17,close_tagn:168,cmake:[7,8],code:[86,87],column:[0,33,76,77,78,79,80,91,92,105,112,114,115,121,122,134,135,142,165,168,176,196,212,213,225,266,268,270],column_copi:91,column_cr:92,column_full_nam:121,column_id:121,column_list:93,column_nam:121,column_or_valu:161,column_remov:94,column_renam:95,column_t:121,column_type_nam:121,column_type_raw_id:121,column_type_raw_nam:121,column_value_typ:121,combin:196,command:[81,82,134,149,151,153,156,158,207,214,252,268,272],comment:271,common:122,commun:2,comparison:[197,252],complet:[216,218],compos:26,compress:252,condit:[135,196,275],condition_column_nam:171,condition_t:171,config_delet:96,config_get:97,config_set:98,configur:[6,18,21,29,49,91,149,155,252],confirm:17,construct:198,contain:11,contribut:[3,15],control:197,convert:206,cooccurr:[216,217,219],core:252,correct:[217,218],cpu:252,creat:[6,80,92,140,157,268,270,271],custom:252,daemon:[153,258],data:[92,140,155,159,196,197,216,219,243,265,271],data_column_value_compress_method:121,databas:[121,252,268],database_name_t:121,database_path:[158,159],database_type_id:121,database_type_nam:121,database_unmap:99,dataset:157,date:265,db_api:11,debian:25,decreas:[117,142],default_mod:177,default_token:140,define_selector:100,defrag:101,delet:102,delimit:236,depend:[6,7,8,18,29,117,142],descript:243,desctipion:157,develop:[4,20],differ:115,direct:155,divis:197,docker:26,document:[15,18,22],domain:266,down:[155,275],downtim:252,drildown:266,drilldown:[115,135,266],drilldown_calc_target:[115,135],drilldown_calc_typ:[115,135],drilldown_filt:[115,135],drilldown_limit:[115,135],drilldown_offset:[115,135],drilldown_output_column:[115,135],drilldown_sort_kei:[115,135],drilldown_sortbi:[115,135],dump:103,dump_index:103,dump_plugin:103,dump_record:103,dump_schema:103,dynam:[112,114,115,135],each:[105,270],edit:17,edit_dist:163,ellipsoid:165,enabl:[18,86],encod:29,engin:0,equal:[11,196,197],error:[83,262,263],escal:29,escap:[196,210],exampl:[21,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,157,258,262,263],execut:[150,153],exit:157,expand:208,expans:274,explicit:196,explicitli:165,express:[196,197,210],extract:[197,219],facebook:2,favorit:271,featur:205,fedora:27,file:[17,153,157,159,209,242,252],filter:[112,114,115,135,222],filter_str:182,fix:[34,38,40,41,42,43,44,45],flag:[92,112,114,115,118,122,135,140,144,146,151,177,258],flow:17,follow:271,forc:[117,123,151],format:[83,135,199,209,268],free:0,freebsd:242,from:[6,7,8,24,25,27,28,29,31,32,115,158,159],from_nam:[91,139],from_tabl:91,full:[0,92,196,268,269,270,275],fuzzy_search:164,gener:[17,18],geo:[0,197,267],geo_dist:165,geo_in_circl:166,geo_in_rectangl:167,geoindex:271,geoloc:[205,271],geopoint:271,get:[158,268],global:49,glossari:214,gnu:[6,7,25],gqtp:[250,256,258],greater:[11,196,197],greater_equ:11,grn_cach:50,grn_column:51,grn_command_vers:52,grn_content_typ:53,grn_ctx:54,grn_db:55,grn_encod:56,grn_expr:[11,57,195],grn_geo:58,grn_hook:59,grn_ii:60,grn_index_cursor:61,grn_info:62,grn_inspect:63,grn_match_escal:64,grn_obj:65,grn_proc:66,grn_search:67,grn_tabl:68,grn_table_cursor:69,grn_table_select:11,grn_thread_:70,grn_type:71,grn_user_data:72,grndb:151,grnslap:152,groonga:[0,3,4,5,6,7,8,9,12,17,22,45,153,154,155,156,157,158,159,253,254,256],groonga_base_path:155,groonga_cache_base_path:155,groonga_cache_limit:155,groonga_databas:155,groonga_database_auto_cr:155,groonga_log_level:155,groonga_log_path:155,groonga_query_log_path:155,group:[196,197,210],group_kei:[112,114,115,135],gzip:252,handleabl:92,hash:271,hashtag:271,header:[83,96,97,98,106,108,122,134,258],help:29,highlight_ful:168,highlight_html:169,homebrew:28,how:[3,5,6,7,8,15,17,19,47,80,85,86,91,198,206,216,217,219,250,258,262,263,272],html:[17,18,170],html_untag:170,http:[156,207,251,252,256,272],httpd:[155,158,159,254,256],hypertext:272,i18n:17,ifexist:105,imag:26,improv:[34,38,39,40,41,42,43,44,45],in_record:171,in_valu:172,include_class:238,include_form:238,include_read:238,index:[0,33,77,92,122,134,140,198,210,212,213,267,268,270],index_column:144,index_column_source_full_nam:121,index_column_source_id:121,index_column_source_nam:121,index_column_source_t:121,index_column_value_posit:121,index_column_value_s:121,index_column_value_sect:121,index_column_value_statistics_max_array_segment_id:121,index_column_value_statistics_max_buffer_segment_id:121,index_column_value_statistics_max_in_use_chunk_id:121,index_column_value_statistics_max_in_use_physical_segment_id:121,index_column_value_statistics_max_section_id:121,index_column_value_statistics_n_array_seg:121,index_column_value_statistics_n_buffer_seg:121,index_column_value_statistics_n_garbage_chunk:121,index_column_value_statistics_n_garbage_seg:121,index_column_value_statistics_n_unmanaged_seg:121,index_column_value_statistics_total_chunk_s:121,index_column_value_weight:121,inform:[269,275],input:158,input_typ:105,instal:[6,7,8,17,18,23,29,32,209],instant:0,int16:243,int32:243,int64:243,int8:243,integ:197,introduct:[18,218],invert:0,io_flush:104,issu:[19,272],javascript:275,json:83,just:80,kei:[96,97,98,115,135,243,273],kern:242,key_typ:140,keyword:271,keywordn:168,kind:92,label:[115,135],languag:17,larg:[92,140],latest:12,latitud:[0,265],launch:158,learn:[158,159,216,217,218,219],learner:[158,159],left:197,less:[11,196,197],less_equ:11,let:271,level:151,lexicon:[140,268,269],librari:[0,29],like:275,limit:[33,80,114,115,135,209,220,243,266],line:[153,158,207],linux:[7,25,242],list:[2,19,87],liter:197,load:[80,105,155,268,271],load_column:[115,135],load_tabl:[115,135],load_valu:[115,135],localstatedir:29,locat:[0,165,209,267,275],lock:[0,151],lock_acquir:106,lock_clear:107,lock_releas:108,lock_tabl:105,log:[29,151,159,199,252],log_level:109,log_put:110,log_reopen:111,logic:[117,196,197],logical_count:112,logical_paramet:113,logical_range_filt:114,logical_select:115,logical_shard_list:116,logical_t:[112,114,115,116,117],logical_table_remov:117,longitud:[0,265],longtext:243,lz4:29,mac:28,macport:28,mail:[2,19],make:[6,7,12,29],manual:46,match:[29,196,197],match_column:[115,135,177,270],match_escal:135,match_escalation_threshold:[115,135],math_ab:173,max:[88,112,114,115,117,145,161,242],max_bord:[112,114,115,117,161],max_map_count:242,maxfileperproc:242,medium:92,memcach:255,memori:[242,263],messag:[29,262],message_pack_install_prefix:29,messagepack:83,micro:271,min:[112,114,115,117,161],min_bord:[112,114,115,117,161],mmap:263,mode:[11,136,144,146,153,191],mode_nam:171,modul:155,modulo:197,mroonga:0,much:117,multi:252,multipl:[92,197,266,270],munin:29,name:[92,95,112,114,115,120,121,123,135,140,142,143,156,157,243,270],narrow:275,nest:270,new_nam:[95,143],nginx:155,nofil:242,normal:[80,118,134,140,146,200],normalizer_list:119,normalizer_nam:168,normalizerauto:201,normalizernfkc100:202,normalizernfkc51:203,not_equ:11,now:174,number:[29,92,135,242],number_classifi:175,numer:265,object:[122,197],object_exist:120,object_inspect:121,object_list:122,object_remov:123,object_typ:122,offlin:198,offset:[114,115,135],old:34,one:270,onlin:198,only_open:104,open:242,open_tagn:168,oper:[197,204,268],option:[91,92,96,97,98,99,103,104,105,112,113,114,115,116,117,118,120,121,122,123,126,134,136,137,139,140,142,144,145,146,153,157,158,159,161,165,169,171,177,191,202,212,213,223,224,225,236,238],oracl:30,order:114,origin:197,other:[29,210],output:[17,83,114,115,135,207,268],output_column:[114,115,135],output_error:105,output_id:105,overcommit_memori:242,overview:[0,73,265],pack:29,packag:[29,31,256],page:135,paramet:[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,126,127,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,153,158,159,161,165,168,169,170,171,172,173,176,177,182,191,192,193,202,212,213,223,224,225,236,238,242,270],part:117,patch:17,path:[29,133,151,252],patricia:273,pattern:236,per:242,perform:[155,252],period:45,persist:220,person:31,phrase:196,platform:29,plugin:[29,74,134],plugin_regist:124,plugin_unregist:125,point1:165,point2:165,point:197,possibl:117,post:[155,252,271],post_filt:[112,114,115],ppa:31,prefix:[11,29,196,197,206,216,252,273],prefix_rk_search:176,prepar:274,pretti:84,primari:[243,273],print:84,proc:122,process:[199,242],properti:122,protocol:[255,258,272],proxi:155,proxy_cach:155,pseudo:78,pull:[17,26],quantifi:210,queri:[0,115,135,155,176,177,196,199,208,274],query_expand:[115,126,135,177],query_expans:135,query_flag:[115,135],query_str:177,query_typ:258,queryexpandertsv:209,quit:127,rand:178,rang:[122,140,268],range_filt:128,range_index:113,read:[0,206,216],record:[92,135,220,268],record_numb:245,recov:151,rectangl:165,recurs:104,red:12,refer:[46,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,80,92,142,265,267],regist:129,regular:[196,197,210],reindex:130,relat:[112,114,115,117,135,155,159,270],relationship:267,releas:[34,38,39,40,41,42,43,44],remot:272,remov:[117,142],report:19,repositori:[5,6,7,8,13,17],request:[17,85,86,155],request_cancel:131,requir:[91,92,93,95,96,97,98,99,104,105,112,113,114,115,116,117,118,120,121,122,123,126,131,134,135,136,137,139,140,142,143,144,145,146,148,158,161,165,169,170,171,177,191,212,213],resolut:267,resolv:47,resourc:[117,142],respons:158,restart:256,result:[266,268],revers:[155,267],right:197,romaji:206,room:2,ruby_ev:132,ruby_load:133,rule:214,run:[6,7,8,18,250,258,272],sampl:[196,197],scalar:[79,92],schema:134,scope:182,score:135,score_n:158,scorer:[115,135,211,275],scorer_tf_at_most:212,scorer_tf_idf:213,script:[132,197],search:[0,80,92,112,114,115,135,196,197,205,206,216,217,219,267,268,269,270,271,273,274,275],secur:[197,272],see:[6,7,8,47,83,85,86,87,88,90,92,93,96,97,98,100,102,105,106,108,109,110,111,116,118,119,122,124,125,126,128,129,131,132,133,134,135,138,140,144,146,147,157,158,162,168,169,176,177,179,182,195,200,201,202,206,209,212,213,220,221,236,238,258],select:[115,135],send:[17,272],senna:45,server:[0,153,156,249,256,258,272],set:[86,155],setup:158,sharabl:0,shard:214,shard_kei:[112,114,115,117],shift:197,shorttext:243,shut:155,shutdown:136,sign:197,similar:[11,196,197,217],simpl:[114,115,135,202,223,236,238],size:258,slice:135,small:92,snippet_html:179,socket:262,softwar:[6,7,8,18],solari:30,solut:263,sort:[266,268,275],sort_hash_t:103,sort_kei:[112,114,115,135],sortbi:[115,135],sourc:[24,25,27,28,29,31,32,92,122,134],specif:[122,155,257,270,271],specifi:[165,243,268],sphere:165,sphinx:17,stage:[112,114,115,135],standalon:153,start:256,statu:[137,157,258],stop:256,storag:0,store:[0,140],stretch:25,string:[118,144,146,197,265],string_length:180,string_substr:181,style:135,sub_filt:182,submit:19,substitution_t:177,subtract:197,succeeded_or_not:[96,98,106,108],success:83,suffix:[11,196,197,273],suggest:[138,157,158,159,215,218,219],summari:[47,49,50,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,77,79,80,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,153,155,156,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,200,201,202,203,206,209,210,211,212,213,214,220,221,223,224,225,226,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248,250],support:205,synopsi:[156,159],synopsti:157,syntax:[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,155,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,196,197,201,202,203,210,212,213,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,245,246,247,248,275],tabl:[33,91,92,93,95,103,105,117,121,122,134,135,140,142,144,159,220,243,268,270,271],table_copi:139,table_cr:140,table_dat_kei:220,table_hash_kei:220,table_id:121,table_key_max_total_s:121,table_key_total_s:121,table_key_typ:121,table_list:141,table_n_record:121,table_nam:121,table_no_kei:220,table_pat_kei:220,table_remov:142,table_renam:143,table_token:144,table_type_id:121,table_type_nam:121,table_value_typ:121,tag:[140,267,271],target:[92,142,151,173,193],target_class:238,target_nam:[104,106,107,108,130,148],target_valu:172,temporari:220,term:197,termin:258,test:114,text:[0,92,169,196,243,268,269,270,275],than:[196,197],thank:[34,38,39,40,41,42,43,44],thread_limit:145,threshold:29,time:[197,243,265,271],time_classify_dai:183,time_classify_day_of_week:184,time_classify_hour:185,time_classify_minut:186,time_classify_month:187,time_classify_second:188,time_classify_week:189,time_classify_year:190,timeout:86,to_nam:[91,139],to_tabl:91,todo:179,token:[0,134,146,222,227],token_filt:[122,134,140,146],tokenbigram:228,tokenbigramignoreblank:229,tokenbigramignoreblanksplitsymbol:230,tokenbigramignoreblanksplitsymbolalpha:231,tokenbigramignoreblanksplitsymbolalphadigit:232,tokenbigramsplitsymbol:233,tokenbigramsplitsymbolalpha:234,tokenbigramsplitsymbolalphadigit:235,tokendelimit:236,tokendelimitnul:237,tokenfilternfkc100:223,tokenfilterstem:224,tokenfilterstopword:225,tokenizer_list:147,tokenmecab:238,tokenregexp:239,tokentrigram:240,tokenunigram:241,tokyogeopoint:243,tool:[29,155,272],topic:15,total:135,tracker:19,transfer:272,translat:17,travi:21,trie:273,troubleshoot:260,truncat:[148,151],tsv:[83,209],tune:242,tutori:264,twitter:2,type:[92,112,114,115,121,122,134,135,158,243,265,271],type_id:121,type_id_of_typ:121,type_nam:121,type_name_of_typ:121,type_s:121,ubuntu:31,uint16:243,uint32:243,uint64:243,uint8:243,unify_hyphen:[202,223],unify_hyphen_and_prolonged_sound_mark:[202,223],unify_kana:[202,223],unify_kana_cas:[202,223],unify_kana_voiced_sound_mark:[202,223],unify_katakana_bu_sound:[202,223],unify_katakana_v_sound:[202,223],unify_middle_dot:[202,223],unify_prolonged_sound_mark:[202,223],unify_to_romaji:[202,223],unix:7,unremov:[117,142],unsign:197,updat:[0,12,17,18,216],upgrad:252,usag:[47,77,79,80,84,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,151,153,155,158,159,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,201,202,203,206,207,209,210,211,212,213,223,224,225,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248],use:[198,216,217,219],use_html_escap:168,use_range_index:114,use_read:238,used:[117,142],user:[158,271],using:[271,275],valu:[88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,156,158,161,162,164,165,168,169,170,171,172,173,175,176,177,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,212,213,245,246,247,248,271],value_typ:140,variou:[265,275],vector:[80,92,191,265],vector_find:191,vector_new:192,vector_s:193,vector_slic:194,version:[82,252],view:268,weight:[80,92,270],wgs84geopoint:243,who:271,window:[8,32,112,114,115,135,244],window_count:246,window_record_numb:247,window_sum:248,without:252,work:[17,216,217,219],worker_process:155,xml:83,xor:197,your:17,zip:32,zlib:29}})
@@ -1,34 +1,26 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>5. Server &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>5. Server &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: './',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="_static/doctools.js"></script>
16
+ <script type="text/javascript" src="_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="genindex.html" />
27
20
  <link rel="search" title="Search" href="search.html" />
28
21
  <link rel="next" title="5.1. Server packages" href="server/package.html" />
29
22
  <link rel="prev" title="4.11. Query expansion" href="tutorial/query_expansion.html" />
30
- </head>
31
- <body>
23
+ </head><body>
32
24
  <div class="header">
33
25
  <h1 class="title">
34
26
  <a id="top-link" href="index.html">
@@ -58,7 +50,7 @@
58
50
  <li class="right" >
59
51
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
60
52
  accesskey="P">previous</a> |</li>
61
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
53
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
54
  </ul>
63
55
  </div>
64
56
 
@@ -107,12 +99,12 @@
107
99
  title="next chapter">5.1. Server packages</a></p>
108
100
  <div id="searchbox" style="display: none" role="search">
109
101
  <h3>Quick search</h3>
102
+ <div class="searchformwrapper">
110
103
  <form class="search" action="search.html" method="get">
111
- <div><input type="text" name="q" /></div>
112
- <div><input type="submit" value="Go" /></div>
113
- <input type="hidden" name="check_keywords" value="yes" />
114
- <input type="hidden" name="area" value="default" />
104
+ <input type="text" name="q" />
105
+ <input type="submit" value="Go" />
115
106
  </form>
107
+ </div>
116
108
  </div>
117
109
  <script type="text/javascript">$('#searchbox').show(0);</script>
118
110
  </div>
@@ -131,11 +123,11 @@
131
123
  <li class="right" >
132
124
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
133
125
  >previous</a> |</li>
134
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
126
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v9.0.2 documentation</a> &#187;</li>
135
127
  </ul>
136
128
  </div>
137
129
  <div class="footer" role="contentinfo">
138
- &#169; Copyright 2009-2018, Brazil, Inc.
130
+ &#169; Copyright 2009-2019, Brazil, Inc.
139
131
  </div>
140
132
  </body>
141
133
  </html>
@@ -1,34 +1,26 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>5.3. GQTP &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>5.3. GQTP &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: '../',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="../_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="../_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="../_static/doctools.js"></script>
16
+ <script type="text/javascript" src="../_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="../genindex.html" />
27
20
  <link rel="search" title="Search" href="../search.html" />
28
21
  <link rel="next" title="5.4. Memcached binary protocol" href="memcached.html" />
29
22
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
30
- </head>
31
- <body>
23
+ </head><body>
32
24
  <div class="header">
33
25
  <h1 class="title">
34
26
  <a id="top-link" href="../index.html">
@@ -58,7 +50,7 @@
58
50
  <li class="right" >
59
51
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
60
52
  accesskey="P">previous</a> |</li>
61
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
53
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
54
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &#187;</li>
63
55
  </ul>
64
56
  </div>
@@ -72,8 +64,8 @@
72
64
  <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="Permalink to this headline">¶</a></h1>
73
65
  <div class="section" id="summary">
74
66
  <h2>5.3.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
75
- <p>GQTP is the acronym standing for &quot;Groonga Query Transfer Protocol&quot;.</p>
76
- <p>GQTP is a protocol designed for Groonga. It's a stateful
67
+ <p>GQTP is the acronym standing for Groonga Query Transfer Protocol”.</p>
68
+ <p>GQTP is a protocol designed for Groonga. Its a stateful
77
69
  protocol. You can send multiple commands in one session.</p>
78
70
  <p>GQTP will be faster rather than <a class="reference internal" href="http.html"><span class="doc">HTTP</span></a> when you send many
79
71
  light commands like <a class="reference internal" href="../reference/commands/status.html"><span class="doc">status</span></a>. GQTP will be
@@ -84,29 +76,29 @@ HTTP client libraries.</p>
84
76
  <p>If you want to use GQTP, you can use the following libraries:</p>
85
77
  <blockquote>
86
78
  <div><ul class="simple">
87
- <li>Ruby: <a class="reference external" href="https://github.com/ranguba/groonga-client">groonga-client</a></li>
88
- <li>Python: <a class="reference external" href="https://github.com/hhatto/poyonga">poyonga</a></li>
89
- <li>Go: <a class="reference external" href="https://github.com/hhatto/goroo">goroo</a></li>
90
- <li>PHP: <a class="reference external" href="https://github.com/Yujiro3/proonga">proonga</a></li>
91
- <li>C/C++: Groonga (Groonga can be also used as library)</li>
79
+ <li><p>Ruby: <a class="reference external" href="https://github.com/ranguba/groonga-client">groonga-client</a></p></li>
80
+ <li><p>Python: <a class="reference external" href="https://github.com/hhatto/poyonga">poyonga</a></p></li>
81
+ <li><p>Go: <a class="reference external" href="https://github.com/hhatto/goroo">goroo</a></p></li>
82
+ <li><p>PHP: <a class="reference external" href="https://github.com/Yujiro3/proonga">proonga</a></p></li>
83
+ <li><p>C/C++: Groonga (Groonga can be also used as library)</p></li>
92
84
  </ul>
93
85
  </div></blockquote>
94
- <p>It's not a library but you can use
86
+ <p>Its not a library but you can use
95
87
  <a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> as a GQTP client.</p>
96
88
  </div>
97
89
  <div class="section" id="how-to-run">
98
90
  <h2>5.3.2. How to run<a class="headerlink" href="#how-to-run" title="Permalink to this headline">¶</a></h2>
99
91
  <p><a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> is a GQTP server implementation.
100
92
  You can run a Groonga server by the following command line:</p>
101
- <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -s [options] DB_PATH
93
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga --protocol gqtp -s [options] DB_PATH
102
94
  </pre></div>
103
95
  </div>
104
96
  <p>You can run a Groonga server as a daemon by the following command
105
97
  line:</p>
106
- <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -d [options] DB_PATH
98
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>groonga --protocol gqtp -d [options] DB_PATH
107
99
  </pre></div>
108
100
  </div>
109
- <p>See <a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> for available <code class="docutils literal"><span class="pre">options</span></code>.</p>
101
+ <p>See <a class="reference internal" href="../reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> for available <code class="docutils literal notranslate"><span class="pre">options</span></code>.</p>
110
102
  </div>
111
103
  </div>
112
104
 
@@ -116,7 +108,7 @@ line:</p>
116
108
  </div>
117
109
  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
118
110
  <div class="sphinxsidebarwrapper">
119
- <h3><a href="../index.html">Table Of Contents</a></h3>
111
+ <h3><a href="../index.html">Table of Contents</a></h3>
120
112
  <ul>
121
113
  <li><a class="reference internal" href="#">5.3. GQTP</a><ul>
122
114
  <li><a class="reference internal" href="#summary">5.3.1. Summary</a></li>
@@ -133,12 +125,12 @@ line:</p>
133
125
  title="next chapter">5.4. Memcached binary protocol</a></p>
134
126
  <div id="searchbox" style="display: none" role="search">
135
127
  <h3>Quick search</h3>
128
+ <div class="searchformwrapper">
136
129
  <form class="search" action="../search.html" method="get">
137
- <div><input type="text" name="q" /></div>
138
- <div><input type="submit" value="Go" /></div>
139
- <input type="hidden" name="check_keywords" value="yes" />
140
- <input type="hidden" name="area" value="default" />
130
+ <input type="text" name="q" />
131
+ <input type="submit" value="Go" />
141
132
  </form>
133
+ </div>
142
134
  </div>
143
135
  <script type="text/javascript">$('#searchbox').show(0);</script>
144
136
  </div>
@@ -157,12 +149,12 @@ line:</p>
157
149
  <li class="right" >
158
150
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
159
151
  >previous</a> |</li>
160
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
152
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
161
153
  <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &#187;</li>
162
154
  </ul>
163
155
  </div>
164
156
  <div class="footer" role="contentinfo">
165
- &#169; Copyright 2009-2018, Brazil, Inc.
157
+ &#169; Copyright 2009-2019, Brazil, Inc.
166
158
  </div>
167
159
  </body>
168
160
  </html>
@@ -1,34 +1,26 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>5.2. HTTP &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>5.2. HTTP &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: '../',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="../_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="../_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="../_static/doctools.js"></script>
16
+ <script type="text/javascript" src="../_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="../genindex.html" />
27
20
  <link rel="search" title="Search" href="../search.html" />
28
21
  <link rel="next" title="5.2.1. Comparison" href="http/comparison.html" />
29
22
  <link rel="prev" title="5.1. Server packages" href="package.html" />
30
- </head>
31
- <body>
23
+ </head><body>
32
24
  <div class="header">
33
25
  <h1 class="title">
34
26
  <a id="top-link" href="../index.html">
@@ -58,7 +50,7 @@
58
50
  <li class="right" >
59
51
  <a href="package.html" title="5.1. Server packages"
60
52
  accesskey="P">previous</a> |</li>
61
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
53
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
54
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &#187;</li>
63
55
  </ul>
64
56
  </div>
@@ -72,10 +64,10 @@
72
64
  <h1>5.2. HTTP<a class="headerlink" href="#http" title="Permalink to this headline">¶</a></h1>
73
65
  <p>Groonga provides two HTTP server implementations.</p>
74
66
  <ul class="simple">
75
- <li><a class="reference internal" href="http/groonga.html"><span class="doc">groonga</span></a></li>
76
- <li><a class="reference internal" href="http/groonga-httpd.html"><span class="doc">groonga-httpd</span></a></li>
67
+ <li><p><a class="reference internal" href="http/groonga.html"><span class="doc">groonga</span></a></p></li>
68
+ <li><p><a class="reference internal" href="http/groonga-httpd.html"><span class="doc">groonga-httpd</span></a></p></li>
77
69
  </ul>
78
- <p><a class="reference internal" href="http/groonga.html"><span class="doc">groonga</span></a> is a simple implemntation. It is fast but doesn't
70
+ <p><a class="reference internal" href="http/groonga.html"><span class="doc">groonga</span></a> is a simple implemntation. It is fast but doesnt
79
71
  have many HTTP features. It is convenient to try Groonga because it
80
72
  requires just a few command line options to run.</p>
81
73
  <p><a class="reference internal" href="http/groonga-httpd.html"><span class="doc">groonga-httpd</span></a> is a <a class="reference external" href="http://nginx.org/">nginx</a> based
@@ -117,12 +109,12 @@ implementation. It is also fast and has many HTTP features.</p>
117
109
  title="next chapter">5.2.1. Comparison</a></p>
118
110
  <div id="searchbox" style="display: none" role="search">
119
111
  <h3>Quick search</h3>
112
+ <div class="searchformwrapper">
120
113
  <form class="search" action="../search.html" method="get">
121
- <div><input type="text" name="q" /></div>
122
- <div><input type="submit" value="Go" /></div>
123
- <input type="hidden" name="check_keywords" value="yes" />
124
- <input type="hidden" name="area" value="default" />
114
+ <input type="text" name="q" />
115
+ <input type="submit" value="Go" />
125
116
  </form>
117
+ </div>
126
118
  </div>
127
119
  <script type="text/javascript">$('#searchbox').show(0);</script>
128
120
  </div>
@@ -141,12 +133,12 @@ implementation. It is also fast and has many HTTP features.</p>
141
133
  <li class="right" >
142
134
  <a href="package.html" title="5.1. Server packages"
143
135
  >previous</a> |</li>
144
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
136
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
145
137
  <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &#187;</li>
146
138
  </ul>
147
139
  </div>
148
140
  <div class="footer" role="contentinfo">
149
- &#169; Copyright 2009-2018, Brazil, Inc.
141
+ &#169; Copyright 2009-2019, Brazil, Inc.
150
142
  </div>
151
143
  </body>
152
144
  </html>
@@ -1,34 +1,26 @@
1
1
 
2
2
 
3
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
+ <!DOCTYPE html>
5
4
 
6
5
  <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
7
6
  <head>
8
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
- <title>5.2.1. Comparison &#8212; Groonga v7.1.0-73-g6d02cfa documentation</title>
7
+ <meta charset="utf-8" />
8
+ <title>5.2.1. Comparison &#8212; Groonga v9.0.2 documentation</title>
10
9
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
11
10
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
12
- <script type="text/javascript">
13
- var DOCUMENTATION_OPTIONS = {
14
- URL_ROOT: '../../',
15
- VERSION: '7.1.0-73-g6d02cfa',
16
- COLLAPSE_INDEX: false,
17
- FILE_SUFFIX: '.html',
18
- HAS_SOURCE: false,
19
- SOURCELINK_SUFFIX: '.txt'
20
- };
21
- </script>
11
+
12
+ <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
22
13
  <script type="text/javascript" src="../../_static/jquery.js"></script>
23
14
  <script type="text/javascript" src="../../_static/underscore.js"></script>
24
15
  <script type="text/javascript" src="../../_static/doctools.js"></script>
16
+ <script type="text/javascript" src="../../_static/language_data.js"></script>
17
+
25
18
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
26
19
  <link rel="index" title="Index" href="../../genindex.html" />
27
20
  <link rel="search" title="Search" href="../../search.html" />
28
21
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
29
22
  <link rel="prev" title="5.2. HTTP" href="../http.html" />
30
- </head>
31
- <body>
23
+ </head><body>
32
24
  <div class="header">
33
25
  <h1 class="title">
34
26
  <a id="top-link" href="../../index.html">
@@ -58,7 +50,7 @@
58
50
  <li class="right" >
59
51
  <a href="../http.html" title="5.2. HTTP"
60
52
  accesskey="P">previous</a> |</li>
61
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
53
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
62
54
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &#187;</li>
63
55
  <li class="nav-item nav-item-2"><a href="../http.html" accesskey="U">5.2. HTTP</a> &#187;</li>
64
56
  </ul>
@@ -73,66 +65,66 @@
73
65
  <h1>5.2.1. Comparison<a class="headerlink" href="#comparison" title="Permalink to this headline">¶</a></h1>
74
66
  <p>There are many differences between <a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> and
75
67
  <a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a>. Here is a comparison table.</p>
76
- <table border="1" class="docutils">
68
+ <table class="docutils align-center">
77
69
  <colgroup>
78
- <col width="38%" />
79
- <col width="32%" />
80
- <col width="30%" />
70
+ <col style="width: 38%" />
71
+ <col style="width: 32%" />
72
+ <col style="width: 30%" />
81
73
  </colgroup>
82
- <thead valign="bottom">
83
- <tr class="row-odd"><th class="head">&#160;</th>
84
- <th class="head">groonga</th>
85
- <th class="head">groonga-httpd</th>
74
+ <thead>
75
+ <tr class="row-odd"><th class="head"></th>
76
+ <th class="head"><p>groonga</p></th>
77
+ <th class="head"><p>groonga-httpd</p></th>
86
78
  </tr>
87
79
  </thead>
88
- <tbody valign="top">
89
- <tr class="row-even"><td>Performance</td>
90
- <td>o</td>
91
- <td>o</td>
80
+ <tbody>
81
+ <tr class="row-even"><td><p>Performance</p></td>
82
+ <td><p>o</p></td>
83
+ <td><p>o</p></td>
92
84
  </tr>
93
- <tr class="row-odd"><td>Using multi CPU cores</td>
94
- <td>o (by multi threading)</td>
95
- <td>o (by multi process)</td>
85
+ <tr class="row-odd"><td><p>Using multi CPU cores</p></td>
86
+ <td><p>o (by multi threading)</p></td>
87
+ <td><p>o (by multi process)</p></td>
96
88
  </tr>
97
- <tr class="row-even"><td>Configuration file</td>
98
- <td>optional</td>
99
- <td>required</td>
89
+ <tr class="row-even"><td><p>Configuration file</p></td>
90
+ <td><p>optional</p></td>
91
+ <td><p>required</p></td>
100
92
  </tr>
101
- <tr class="row-odd"><td>Custom prefix path</td>
102
- <td>x</td>
103
- <td>o</td>
93
+ <tr class="row-odd"><td><p>Custom prefix path</p></td>
94
+ <td><p>x</p></td>
95
+ <td><p>o</p></td>
104
96
  </tr>
105
- <tr class="row-even"><td>Custom command version</td>
106
- <td>o</td>
107
- <td>o</td>
97
+ <tr class="row-even"><td><p>Custom command version</p></td>
98
+ <td><p>o</p></td>
99
+ <td><p>o</p></td>
108
100
  </tr>
109
- <tr class="row-odd"><td>Multi databases</td>
110
- <td>x</td>
111
- <td>o</td>
101
+ <tr class="row-odd"><td><p>Multi databases</p></td>
102
+ <td><p>x</p></td>
103
+ <td><p>o</p></td>
112
104
  </tr>
113
- <tr class="row-even"><td>Authentication</td>
114
- <td>x</td>
115
- <td>o</td>
105
+ <tr class="row-even"><td><p>Authentication</p></td>
106
+ <td><p>x</p></td>
107
+ <td><p>o</p></td>
116
108
  </tr>
117
- <tr class="row-odd"><td>Gzip compression</td>
118
- <td>x</td>
119
- <td>o</td>
109
+ <tr class="row-odd"><td><p>Gzip compression</p></td>
110
+ <td><p>x</p></td>
111
+ <td><p>o</p></td>
120
112
  </tr>
121
- <tr class="row-even"><td>POST</td>
122
- <td>o</td>
123
- <td>o</td>
113
+ <tr class="row-even"><td><p>POST</p></td>
114
+ <td><p>o</p></td>
115
+ <td><p>o</p></td>
124
116
  </tr>
125
- <tr class="row-odd"><td>HTTPS</td>
126
- <td>x</td>
127
- <td>o</td>
117
+ <tr class="row-odd"><td><p>HTTPS</p></td>
118
+ <td><p>x</p></td>
119
+ <td><p>o</p></td>
128
120
  </tr>
129
- <tr class="row-even"><td>Access log</td>
130
- <td>x</td>
131
- <td>o</td>
121
+ <tr class="row-even"><td><p>Access log</p></td>
122
+ <td><p>x</p></td>
123
+ <td><p>o</p></td>
132
124
  </tr>
133
- <tr class="row-odd"><td>Upgrading without downtime</td>
134
- <td>x</td>
135
- <td>o</td>
125
+ <tr class="row-odd"><td><p>Upgrading without downtime</p></td>
126
+ <td><p>x</p></td>
127
+ <td><p>o</p></td>
136
128
  </tr>
137
129
  </tbody>
138
130
  </table>
@@ -150,8 +142,8 @@ default. If you have 8 CPU cores, 8 threads are used by default.</p>
150
142
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> uses 1 process by default. You need to set
151
143
  <a class="reference external" href="http://nginx.org/en/docs/ngx_core_module.html#worker_processes">worker_processes</a>
152
144
  directive to use CPU cores. If you have 8 CPU cores, specify
153
- <code class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></code> in configuration file like the following:</p>
154
- <div class="highlight-none"><div class="highlight"><pre><span></span>worker_processes 8;
145
+ <code class="docutils literal notranslate"><span class="pre">worker_processes</span> <span class="pre">8</span></code> in configuration file like the following:</p>
146
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>worker_processes 8;
155
147
 
156
148
  http {
157
149
  # ...
@@ -165,16 +157,16 @@ http {
165
157
  items such as port number and the max number of threads can be
166
158
  specified by command line. Configuration file is also used to specify
167
159
  configuration items.</p>
168
- <p>It's very easy to run groonga HTTP server because <a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a>
160
+ <p>Its very easy to run groonga HTTP server because <a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a>
169
161
  requires just a few options to run. Here is the most simple command
170
162
  line to start HTTP server by <a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a>:</p>
171
- <div class="highlight-none"><div class="highlight"><pre><span></span>% groonga --protocol http -d /PATH/TO/DATABASE
163
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>% groonga --protocol http -d /PATH/TO/DATABASE
172
164
  </pre></div>
173
165
  </div>
174
166
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> requires configuration file to run. Here is the
175
167
  most simple configuration file to start HTTP server by
176
168
  <a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a>:</p>
177
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
169
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
178
170
  }
179
171
 
180
172
  http {
@@ -192,13 +184,13 @@ http {
192
184
  </div>
193
185
  <div class="section" id="custom-prefix-path">
194
186
  <h2>5.2.1.4. Custom prefix path<a class="headerlink" href="#custom-prefix-path" title="Permalink to this headline">¶</a></h2>
195
- <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> accepts a path that starts with <code class="docutils literal"><span class="pre">/d/</span></code> as command URL
196
- such as <code class="docutils literal"><span class="pre">http://localhost:10041/d/status</span></code>. You cannot change the
197
- prefix path <code class="docutils literal"><span class="pre">/d/</span></code>.</p>
187
+ <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> accepts a path that starts with <code class="docutils literal notranslate"><span class="pre">/d/</span></code> as command URL
188
+ such as <code class="docutils literal notranslate"><span class="pre">http://localhost:10041/d/status</span></code>. You cannot change the
189
+ prefix path <code class="docutils literal notranslate"><span class="pre">/d/</span></code>.</p>
198
190
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> can custom prefix path. For example, you can use
199
- <code class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></code> as command URL. Here is a sample
200
- configuration to use <code class="docutils literal"><span class="pre">/api/</span></code> as prefix path:</p>
201
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
191
+ <code class="docutils literal notranslate"><span class="pre">http://localhost:10041/api/status</span></code> as command URL. Here is a sample
192
+ configuration to use <code class="docutils literal notranslate"><span class="pre">/api/</span></code> as prefix path:</p>
193
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
202
194
  }
203
195
 
204
196
  http {
@@ -219,18 +211,18 @@ http {
219
211
  <p>Groonga has <a class="reference internal" href="../../reference/command/command_version.html"><span class="doc">Command version</span></a> mechanism. It is for
220
212
  upgrading groonga commands with backward compatibility.</p>
221
213
  <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> can change the default command veresion by
222
- <code class="docutils literal"><span class="pre">--default-command-version</span></code> option. Here is a sample command line to
214
+ <code class="docutils literal notranslate"><span class="pre">--default-command-version</span></code> option. Here is a sample command line to
223
215
  use command version 2 as the default command version:</p>
224
- <div class="highlight-none"><div class="highlight"><pre><span></span>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
216
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
225
217
  </pre></div>
226
218
  </div>
227
219
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> cannot custom the default command version
228
220
  yet. But it will be supported soon. If it is supported, you can
229
221
  provides different command version groonga commands in the same
230
222
  <a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> process. Here is a sample configuration to
231
- provide command version 1 commands under <code class="docutils literal"><span class="pre">/api/1/</span></code> and command
232
- version 2 comamnds under <code class="docutils literal"><span class="pre">/api/2/</span></code>:</p>
233
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
223
+ provide command version 1 commands under <code class="docutils literal notranslate"><span class="pre">/api/1/</span></code> and command
224
+ version 2 comamnds under <code class="docutils literal notranslate"><span class="pre">/api/2/</span></code>:</p>
225
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
234
226
  }
235
227
 
236
228
  http {
@@ -241,12 +233,12 @@ http {
241
233
 
242
234
  location /api/1/ {
243
235
  groonga on;
244
- groogna_default_command_version 1;
236
+ groonga_default_command_version 1;
245
237
  }
246
238
 
247
239
  location /api/2/ {
248
240
  groonga on;
249
- groogna_default_command_version 2;
241
+ groonga_default_command_version 2;
250
242
  }
251
243
  }
252
244
  }
@@ -257,9 +249,9 @@ http {
257
249
  <h2>5.2.1.6. Multi databases<a class="headerlink" href="#multi-databases" title="Permalink to this headline">¶</a></h2>
258
250
  <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> can use only one database in a process.</p>
259
251
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> can use one or more databases in a process. Here
260
- is a sample configuration to provide <code class="docutils literal"><span class="pre">/tmp/db1</span></code> database under
261
- <code class="docutils literal"><span class="pre">/db1/</span></code> path and <code class="docutils literal"><span class="pre">/tmp/db2</span></code> database under <code class="docutils literal"><span class="pre">/db2/</span></code> path:</p>
262
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
252
+ is a sample configuration to provide <code class="docutils literal notranslate"><span class="pre">/tmp/db1</span></code> database under
253
+ <code class="docutils literal notranslate"><span class="pre">/db1/</span></code> path and <code class="docutils literal notranslate"><span class="pre">/tmp/db2</span></code> database under <code class="docutils literal notranslate"><span class="pre">/db2/</span></code> path:</p>
254
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
263
255
  }
264
256
 
265
257
  http {
@@ -285,13 +277,13 @@ http {
285
277
  <p>HTTP supports authentications such as basic authentication and digest
286
278
  authentication. It can be used for restricting use of danger command such
287
279
  as <a class="reference internal" href="../../reference/commands/shutdown.html"><span class="doc">shutdown</span></a>.</p>
288
- <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> doesn't support any authentications. To restrict use of
280
+ <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> doesnt support any authentications. To restrict use of
289
281
  danger command, other tools such as iptables and reverse proxy are
290
282
  needed.</p>
291
283
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> supports basic authentication. Here is a sample
292
284
  configuration to restrict use of <a class="reference internal" href="../../reference/commands/shutdown.html"><span class="doc">shutdown</span></a>
293
285
  command:</p>
294
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
286
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
295
287
  }
296
288
 
297
289
  http {
@@ -316,14 +308,14 @@ http {
316
308
  </div>
317
309
  <div class="section" id="gzip-compression">
318
310
  <h2>5.2.1.8. Gzip compression<a class="headerlink" href="#gzip-compression" title="Permalink to this headline">¶</a></h2>
319
- <p>HTTP supports response compression by gzip with <code class="docutils literal"><span class="pre">Content-Encoding:</span>
311
+ <p>HTTP supports response compression by gzip with <code class="docutils literal notranslate"><span class="pre">Content-Encoding:</span>
320
312
  <span class="pre">gzip</span></code> response header. It can reduce network flow. It is useful
321
313
  for large search response.</p>
322
- <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> doesn't support compression. To support compression,
314
+ <p><a class="reference internal" href="groonga.html"><span class="doc">groonga</span></a> doesnt support compression. To support compression,
323
315
  reverse proxy is needed.</p>
324
316
  <p><a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> supports gzip compression. Here is a sample
325
317
  configuration to compress response by gzip:</p>
326
- <div class="highlight-none"><div class="highlight"><pre><span></span>events {
318
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>events {
327
319
  }
328
320
 
329
321
  http {
@@ -341,30 +333,30 @@ http {
341
333
  }
342
334
  </pre></div>
343
335
  </div>
344
- <p>Note that <cite>gzip_types *</cite> is specified. It's one of the important
336
+ <p>Note that <cite>gzip_types *</cite> is specified. Its one of the important
345
337
  configuration. <cite>gzip_types</cite> specifies gzip target data formats by MIME
346
338
  types. <a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> returns one of JSON, XML or MessagePack
347
- format data. But those formats aren't included in the default value of
339
+ format data. But those formats arent included in the default value of
348
340
  <cite>gzip_types</cite>. The default value of <cite>gzip_types</cite> is <cite>text/html</cite>.</p>
349
341
  <p>To compress response data from <a class="reference internal" href="groonga-httpd.html"><span class="doc">groonga-httpd</span></a> by gzip, you need
350
342
  to specify <cite>gzip_types *</cite> or <cite>gzip_types application/json text/xml
351
343
  application/x-msgpack</cite> explicitly. <cite>gzip_types *</cite> is recommended.
352
344
  There are two reasons for it. The first, groonga may support more
353
345
  formats in the future. The second, all requests for the <cite>location</cite> are
354
- processed by groonga. You don't need to consider about other modules.</p>
346
+ processed by groonga. You dont need to consider about other modules.</p>
355
347
  </div>
356
348
  <div class="section" id="post">
357
349
  <h2>5.2.1.9. POST<a class="headerlink" href="#post" title="Permalink to this headline">¶</a></h2>
358
350
  <p>You can load your data by POST JSON data. You need follow the
359
351
  following rules to use loading by POST.</p>
360
352
  <ul class="simple">
361
- <li><cite>Content-Type</cite> header value must be <cite>application/json</cite>.</li>
362
- <li>JSON data is sent as body.</li>
363
- <li>Table name is specified by query parameter such as <code class="docutils literal"><span class="pre">table=NAME</span></code>.</li>
353
+ <li><p><cite>Content-Type</cite> header value must be <cite>application/json</cite>.</p></li>
354
+ <li><p>JSON data is sent as body.</p></li>
355
+ <li><p>Table name is specified by query parameter such as <code class="docutils literal notranslate"><span class="pre">table=NAME</span></code>.</p></li>
364
356
  </ul>
365
357
  <p>Here is an example curl command line that loads two users <cite>alice</cite> and
366
358
  <cite>bob</cite> to <cite>Users</cite> table:</p>
367
- <div class="highlight-none"><div class="highlight"><pre><span></span>% curl --data-binary &#39;[{&quot;_key&quot;: &quot;alice&quot;}, {&quot;_key&quot;: &quot;bob&quot;}]&#39; -H &quot;Content-Type: application/json&quot; &quot;http://localhost:10041/d/load?table=Users&quot;
359
+ <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>% curl --data-binary &#39;[{&quot;_key&quot;: &quot;alice&quot;}, {&quot;_key&quot;: &quot;bob&quot;}]&#39; -H &quot;Content-Type: application/json&quot; &quot;http://localhost:10041/d/load?table=Users&quot;
368
360
  </pre></div>
369
361
  </div>
370
362
  </div>
@@ -388,7 +380,7 @@ following rules to use loading by POST.</p>
388
380
  </div>
389
381
  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
390
382
  <div class="sphinxsidebarwrapper">
391
- <h3><a href="../../index.html">Table Of Contents</a></h3>
383
+ <h3><a href="../../index.html">Table of Contents</a></h3>
392
384
  <ul>
393
385
  <li><a class="reference internal" href="#">5.2.1. Comparison</a><ul>
394
386
  <li><a class="reference internal" href="#performance">5.2.1.1. Performance</a></li>
@@ -415,12 +407,12 @@ following rules to use loading by POST.</p>
415
407
  title="next chapter">5.2.2. groonga</a></p>
416
408
  <div id="searchbox" style="display: none" role="search">
417
409
  <h3>Quick search</h3>
410
+ <div class="searchformwrapper">
418
411
  <form class="search" action="../../search.html" method="get">
419
- <div><input type="text" name="q" /></div>
420
- <div><input type="submit" value="Go" /></div>
421
- <input type="hidden" name="check_keywords" value="yes" />
422
- <input type="hidden" name="area" value="default" />
412
+ <input type="text" name="q" />
413
+ <input type="submit" value="Go" />
423
414
  </form>
415
+ </div>
424
416
  </div>
425
417
  <script type="text/javascript">$('#searchbox').show(0);</script>
426
418
  </div>
@@ -439,13 +431,13 @@ following rules to use loading by POST.</p>
439
431
  <li class="right" >
440
432
  <a href="../http.html" title="5.2. HTTP"
441
433
  >previous</a> |</li>
442
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v7.1.0-73-g6d02cfa documentation</a> &#187;</li>
434
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.2 documentation</a> &#187;</li>
443
435
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &#187;</li>
444
436
  <li class="nav-item nav-item-2"><a href="../http.html" >5.2. HTTP</a> &#187;</li>
445
437
  </ul>
446
438
  </div>
447
439
  <div class="footer" role="contentinfo">
448
- &#169; Copyright 2009-2018, Brazil, Inc.
440
+ &#169; Copyright 2009-2019, Brazil, Inc.
449
441
  </div>
450
442
  </body>
451
443
  </html>