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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (731) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +1 -1
  3. data/ext/groonga/rb-grn-logger.c +159 -3
  4. data/ext/groonga/rb-grn-plugin.c +17 -1
  5. data/ext/groonga/rb-grn-query-logger.c +129 -3
  6. data/ext/groonga/rb-grn.h +1 -1
  7. data/lib/1.9/groonga.so +0 -0
  8. data/lib/2.0/groonga.so +0 -0
  9. data/lib/2.1/groonga.so +0 -0
  10. data/lib/2.2/groonga.so +0 -0
  11. data/lib/groonga/query-logger.rb +48 -3
  12. data/lib/groonga/schema.rb +16 -3
  13. data/rroonga-build.rb +3 -3
  14. data/test/test-logger.rb +97 -2
  15. data/test/test-plugin.rb +5 -1
  16. data/test/test-query-logger.rb +149 -0
  17. data/test/test-schema.rb +19 -0
  18. data/vendor/local/bin/grndb.exe +0 -0
  19. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  20. data/vendor/local/bin/groonga.exe +0 -0
  21. data/vendor/local/bin/libgroonga-0.dll +0 -0
  22. data/vendor/local/bin/libmecab-1.dll +0 -0
  23. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  24. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  25. data/vendor/local/bin/libonig-5.dll +0 -0
  26. data/vendor/local/bin/lz4.exe +0 -0
  27. data/vendor/local/bin/lz4c.exe +0 -0
  28. data/vendor/local/bin/lz4cat +0 -0
  29. data/vendor/local/bin/mecab-config +2 -2
  30. data/vendor/local/bin/mecab.exe +0 -0
  31. data/vendor/local/bin/onig-config +1 -1
  32. data/vendor/local/bin/zlib1.dll +0 -0
  33. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  34. data/vendor/local/include/groonga/groonga.h +1 -0
  35. data/vendor/local/include/groonga/groonga/groonga.h +12 -6
  36. data/vendor/local/include/groonga/groonga/portability.h +158 -0
  37. data/vendor/local/include/msgpack.h +1 -0
  38. data/vendor/local/include/msgpack.hpp +2 -1
  39. data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
  40. data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
  41. data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
  42. data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
  43. data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
  44. data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
  45. data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
  46. data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
  47. data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
  48. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
  49. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
  50. data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
  51. data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
  52. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
  53. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
  54. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
  55. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
  56. data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
  57. data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
  58. data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
  59. data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
  60. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
  61. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
  62. data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
  63. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
  64. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
  65. data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
  66. data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
  67. data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
  68. data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
  69. data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
  70. data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
  71. data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
  72. data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
  73. data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
  74. data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
  75. data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
  76. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
  77. data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
  78. data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
  79. data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
  80. data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
  81. data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
  82. data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
  83. data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
  84. data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
  85. data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
  86. data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
  87. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
  88. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
  89. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
  90. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
  91. data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
  92. data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
  93. data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
  94. data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
  95. data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
  96. data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
  97. data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
  98. data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
  99. data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
  100. data/vendor/local/include/msgpack/fbuffer.h +3 -4
  101. data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
  102. data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
  103. data/vendor/local/include/msgpack/iterator.hpp +42 -0
  104. data/vendor/local/include/msgpack/object.h +51 -30
  105. data/vendor/local/include/msgpack/object.hpp +564 -273
  106. data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
  107. data/vendor/local/include/msgpack/pack.h +23 -17
  108. data/vendor/local/include/msgpack/pack.hpp +889 -164
  109. data/vendor/local/include/msgpack/pack_define.h +2 -2
  110. data/vendor/local/include/msgpack/pack_template.h +452 -356
  111. data/vendor/local/include/msgpack/sbuffer.h +43 -37
  112. data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
  113. data/vendor/local/include/msgpack/sysdep.h +48 -53
  114. data/vendor/local/include/msgpack/type.hpp +35 -17
  115. data/vendor/local/include/msgpack/unpack.h +62 -44
  116. data/vendor/local/include/msgpack/unpack.hpp +1578 -217
  117. data/vendor/local/include/msgpack/unpack_define.h +49 -47
  118. data/vendor/local/include/msgpack/unpack_template.h +344 -284
  119. data/vendor/local/include/msgpack/util.h +23 -0
  120. data/vendor/local/include/msgpack/version.h +12 -6
  121. data/vendor/local/include/msgpack/version.hpp +44 -0
  122. data/vendor/local/include/msgpack/version_master.h +3 -0
  123. data/vendor/local/include/msgpack/versioning.hpp +77 -0
  124. data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
  125. data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
  126. data/vendor/local/include/msgpack/zbuffer.h +79 -79
  127. data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
  128. data/vendor/local/include/msgpack/zone.h +65 -42
  129. data/vendor/local/include/msgpack/zone.hpp +10 -445
  130. data/vendor/local/include/msgpack_fwd.hpp +28 -0
  131. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  132. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  133. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  134. data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
  135. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  136. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  137. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  138. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  139. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  140. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  141. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  142. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  143. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  144. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  145. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  146. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  147. data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
  148. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
  149. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
  150. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
  151. data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -0
  152. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  153. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  154. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  155. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  156. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  157. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  158. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  159. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  160. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  161. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  162. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  163. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  164. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  165. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  166. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  167. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  168. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
  169. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
  170. data/vendor/local/lib/libgroonga.a +0 -0
  171. data/vendor/local/lib/libgroonga.dll.a +0 -0
  172. data/vendor/local/lib/libgroonga.la +2 -2
  173. data/vendor/local/lib/liblz4.a +0 -0
  174. data/vendor/local/lib/liblz4.dll +0 -0
  175. data/vendor/local/lib/liblz4.dll.1 +0 -0
  176. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  177. data/vendor/local/lib/libmecab.a +0 -0
  178. data/vendor/local/lib/libmecab.dll.a +0 -0
  179. data/vendor/local/lib/libmecab.la +2 -2
  180. data/vendor/local/lib/libmsgpack.a +0 -0
  181. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  182. data/vendor/local/lib/libmsgpack.la +4 -4
  183. data/vendor/local/lib/libmsgpackc.a +0 -0
  184. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  185. data/vendor/local/lib/libmsgpackc.la +2 -2
  186. data/vendor/local/lib/libonig.a +0 -0
  187. data/vendor/local/lib/libonig.dll.a +0 -0
  188. data/vendor/local/lib/libonig.la +2 -2
  189. data/vendor/local/lib/libz.a +0 -0
  190. data/vendor/local/lib/libz.dll.a +0 -0
  191. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  192. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  193. data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
  194. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  195. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  196. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  197. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  198. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  199. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  200. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  201. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  202. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  203. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  204. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +69 -52
  205. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
  206. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
  207. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  208. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  209. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +7 -7
  210. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  211. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
  212. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
  213. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
  214. data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
  215. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
  216. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
  218. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
  219. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
  220. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
  221. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
  222. data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
  228. data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
  229. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
  230. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
  231. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  232. data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
  233. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  234. data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
  235. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
  236. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
  237. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
  238. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
  239. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
  240. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
  241. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
  242. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
  243. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
  244. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
  245. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
  246. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
  247. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  248. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
  249. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  250. data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
  251. data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
  252. data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
  253. data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
  254. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
  255. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
  256. data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
  257. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
  258. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
  259. data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
  260. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  261. data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
  262. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
  263. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
  264. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
  265. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
  266. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
  267. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
  268. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
  269. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
  270. data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
  271. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  272. data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
  273. data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
  274. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
  275. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
  276. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
  277. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
  278. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
  279. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
  280. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
  281. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
  283. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
  284. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
  285. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
  286. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
  287. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
  288. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
  289. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
  290. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
  291. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
  292. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
  293. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
  298. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
  299. data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
  300. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
  301. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
  302. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
  303. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
  304. data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
  305. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
  306. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
  307. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
  308. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
  309. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
  348. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
  349. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
  350. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
  351. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
  352. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
  353. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
  354. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  355. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
  356. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
  357. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
  358. data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
  359. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
  360. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
  361. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
  362. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
  363. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
  364. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
  365. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
  366. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
  367. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
  368. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
  369. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
  370. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
  374. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
  375. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
  376. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
  377. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
  378. data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
  379. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
  380. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
  381. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
  382. data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
  383. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
  384. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
  385. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
  386. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
  387. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
  388. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
  389. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
  390. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
  391. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
  392. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
  393. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
  394. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
  395. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
  396. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
  397. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
  398. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
  399. data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
  400. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  401. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  402. data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
  403. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
  404. data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
  405. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
  406. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
  407. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
  408. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
  409. data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
  410. data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
  411. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
  412. data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
  413. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  414. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  415. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  416. data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
  417. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
  418. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
  419. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
  420. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
  421. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
  422. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
  423. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
  424. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
  425. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
  426. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
  427. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
  428. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  429. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
  430. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
  431. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
  432. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  433. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  434. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +7 -7
  435. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  436. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
  456. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  457. data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
  458. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  459. data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
  460. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
  461. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
  462. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
  463. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
  464. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
  465. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
  466. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
  467. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  468. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  469. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
  470. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
  471. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  472. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  473. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
  474. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  475. data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
  476. data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
  477. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
  478. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
  479. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
  480. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
  481. data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
  482. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
  483. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
  484. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
  485. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  486. data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
  487. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
  488. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
  489. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
  490. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
  491. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
  492. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
  493. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
  494. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
  495. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
  496. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  497. data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
  498. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
  499. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
  500. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
  501. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
  502. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
  503. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
  504. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
  505. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
  506. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
  507. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
  508. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
  509. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
  510. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
  511. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
  512. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
  513. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
  514. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
  515. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
  516. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
  517. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
  518. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
  519. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
  520. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
  521. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
  522. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
  523. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
  524. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
  525. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
  526. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
  527. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
  528. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
  529. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
  530. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
  531. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
  532. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
  533. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
  534. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
  535. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
  536. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
  537. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
  538. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
  539. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
  540. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
  541. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
  542. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
  543. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
  544. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
  545. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
  546. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
  547. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
  548. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
  549. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
  550. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
  551. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
  552. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
  553. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
  554. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
  555. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
  556. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
  557. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
  558. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
  559. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
  560. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
  561. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
  562. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
  563. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
  564. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
  565. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
  566. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
  567. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
  568. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
  573. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
  574. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
  575. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
  576. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
  577. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
  578. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
  579. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  580. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
  581. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
  582. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
  583. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
  584. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
  585. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
  586. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
  587. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
  588. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
  589. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
  590. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
  591. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
  592. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
  593. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
  594. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
  595. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
  596. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
  597. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
  598. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
  599. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
  600. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
  601. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
  602. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
  603. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
  604. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
  605. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
  606. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
  607. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
  608. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
  609. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
  610. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
  611. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
  612. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
  613. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
  614. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
  615. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
  616. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
  617. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
  618. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
  619. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
  620. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
  621. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
  622. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
  623. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
  624. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
  625. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  626. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  627. data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
  628. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
  629. data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
  630. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
  631. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
  632. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
  633. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
  634. data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
  635. data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
  636. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
  637. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
  638. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  639. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  640. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  641. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
  642. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
  643. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
  644. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
  645. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
  646. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
  647. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
  648. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
  649. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
  650. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
  651. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
  652. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
  653. data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
  654. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  655. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  656. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  657. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  658. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  659. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  660. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  661. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  662. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  663. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  664. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  665. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  666. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  667. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  668. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  669. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
  670. data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
  671. data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
  672. data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
  673. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
  674. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
  675. data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
  676. data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
  677. data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
  678. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
  679. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
  680. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
  681. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
  682. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
  683. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
  684. data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
  685. data/vendor/local/share/groonga/html/admin/404.html +133 -0
  686. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  687. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
  688. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  689. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  690. data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
  691. data/vendor/local/share/groonga/html/admin/index.html +9 -297
  692. data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
  693. data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
  694. data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
  695. data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
  696. data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
  697. data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
  698. data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
  699. data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
  700. data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
  701. data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
  702. data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
  703. data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
  704. data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
  705. data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
  706. data/vendor/local/share/license/groonga-admin/README.md +79 -0
  707. data/vendor/local/share/license/msgpack/AUTHORS +0 -1
  708. data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
  709. data/vendor/local/share/man/man1/groonga.1 +812 -99
  710. metadata +138 -55
  711. data/doc/text/install.textile +0 -145
  712. data/doc/text/tutorial.textile +0 -510
  713. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  714. data/vendor/local/include/msgpack/type/define.hpp +0 -3465
  715. data/vendor/local/include/msgpack/type/deque.hpp +0 -77
  716. data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
  717. data/vendor/local/include/msgpack/type/float.hpp +0 -102
  718. data/vendor/local/include/msgpack/type/int.hpp +0 -276
  719. data/vendor/local/include/msgpack/type/list.hpp +0 -77
  720. data/vendor/local/include/msgpack/type/map.hpp +0 -205
  721. data/vendor/local/include/msgpack/type/raw.hpp +0 -94
  722. data/vendor/local/include/msgpack/type/set.hpp +0 -122
  723. data/vendor/local/include/msgpack/type/string.hpp +0 -62
  724. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
  725. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
  726. data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
  727. data/vendor/local/include/msgpack/type/vector.hpp +0 -81
  728. data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
  729. data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
  730. data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
  731. data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
@@ -1 +1 @@
1
- Search.setIndex({envversion:42,terms:{clumns:139,"\u51fa\u6765":[44,78,90],"\u7b2c\u4e8c":[],localstatedir:[154,188],"\u3082\u3089\u3063":3,four:[148,3],"\u660e\u78ba":80,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[36,97],"\u811a\u6ce8":[75,3,45,72,34,168],"\u3082\u3089\u3048":124,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[],"\u79d2\u60c5":27,"_column":[],"\u300calice":184,dewangga:77,"\u6b63\u5e38":[167,151],"\u30d5\u30c3\u30af":81,internally:[106,16],"\u5b9a\u5024":7,"/projects":151,"&q":131,"&s":131,"\u7b2c\u4e00":[],incremented:35,"\u3044\u304f\u3064\u304b":[90,142,26,103,188,164,108,150,151,115,60,160,46,69,23,125,177,178,181,133,187,189,38,191],"\u89e3\u9664":[22,1,174,97,79,107],second:[148,103,12],"\u4f5c\u3089\u308c":[167,80],"\u4e8b\u524d":[68,142,151,70,169,147,23],"\u30de\u30af\u30ed":[27,79,125],"\u30b7\u30f3\u30dc\u30eb":73,"\u5f15\u3044":150,increasing:139,error:[40,110,6,97,125,16,135,122,8,9,148,80,178],here:[40,12,131,186,48,9,148,139,64],onga:32,"&!":150,china:130,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":159,"&&":[70,182,108,143,150],"\u4e0e\u3048":[58,69,3,70,123,97,125,7,172,63],"\u4e2d\u8eab":[167,3,172,80],"_output":[],"\u30c8\u30fc\u30af\u30f3":[163,90,150,94,144,125,48,46,18,27,189,38,154,80,65],"\u7ffb\u8a33":[],"\u300c\"":97,"\u300c#":154,"\u300c,":157,"9e":189,"9f":4,unix:[135,188,80],txt:[87,38,119],"\u5ea6\u6d6e":45,"\u5bfe\u7167":115,"\u65e5\u672c\u4eba":176,"_check":[79,177,80],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u975e\u63a8":[75,125,7,27,80,65],music:[44,148],tokenize:[],"_flags":[],"[pkg":[7,27],until:[40,139,19],"\u30d6\u30ed\u30b0":[],"\u30df\u30ea":[13,27,45,74,150],"\u6709\u529b":153,"\u7f6e\u304f\u4f8b":188,"[os":80,"\u4e0b\u304c\u308a":70,karmic:177,"\u300cv":151,"(pos":[34,168],"_command":[],"\u6709\u52b9":[90,95,102,27,188,108,151,13,14,58,113,65,121,167,125,73,77,79,112,80,181,129,83,132,32,9],"\u6b63\u5f0f":80,"\u4e8c\u91cd":[125,80,181],"\u30e1\u30fc\u30eb":[0,119],"/functions":177,example:[44,108,3,130,12,131,13,97,122,74,9,139,28,176,102],"\u30af\u30a8\u30eaapi":77,"/blog":151,"\u6a2a\u5c71":[125,80],want:131,"*cache":17,"<groonga":167,"\u4e0b\u304c\u3063":38,travel:184,feature:[119,83,9,12,61],how:[],"\u884c\u982d":178,wrong:61,types:[153,18,133,176,48],"\u63fa\u308c":91,"-normalizer":[164,129,14,133,7,152,189],"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":125,"_resource":[2,79],"\u5b09\u3057\u304f":124,"\u901a\u5e38":[135,108,90,3,181,13,45,16,7,60,9,189,175,95,80],keeps:85,"\u500b\u5b9a":134,wing:[7,125],"\u3042\u305f\u308a":[27,154],vars:[40,53],"\uff11\u5bfe":134,"\u30d1\u30c8\u30ea\u30b7\u30a2":[],"\u6e1b\u7b97":[],">\n<":4,"\u8fd4\u3063":[181,80,150],"_{":125,"-code":[151,80],"_w":38,"\u8fd4\u3057":[40,90,3,91,93,95,46,47,48,69,147,109,54,108,75,150,111,153,113,116,16,17,115,59,18,19,182,25,161,118,67,68,49,120,121,123,166,125,168,73,63,74,170,117,96,77,127,79,176,80,82,83,136,169,184,32,34,100,180],fix:[59,42,95],"\u8fd4\u3055":[58,108,11,153,123,7,126,79,80],"_s":80,"_desc":113,"_o":[2,172],"_n":[17,131,125],"_i":[2,172],fin:53,easier:12,"_a":[2,172],"\uff08tokenmecab":70,"\u3046\u3063\u304b\u308a":125,"\u30d7\u30ed\u30c8\u30b3\u30eb":[],"-daemon":[131,64],"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":75,"\u516c\u8f14":125,"\u3082\u3063\u3068\u3082":177,"\u30af\u30a8\u30ea\u30da\u30a2":169,"\u8a8d\u8a3c":[],"_select":[],"(point":[34,75,168],"_deadlock":[2,172,79],timeout:[79,19],debug:[6,148,8,97,9],"\u6df7\u3056\u3063":38,"_$":[153,65],"_\"":27,"@do":80,"*keywords":84,rd:[70,144],re:[139,83],rf:[129,9],"post\u30e1\u30bd\u30c3\u30c9":125,moritapo:44,rc:[90,148,2,5,16],rl:38,rm:9,ro:90,gregex:125,"\uff01\uff09":[18,176],"\uff01\uff08":119,"\u3042\u305f\u3044":117,"\u5909\u5316":132,"\u5168\u90e8":172,".msgpack":4,"/limits":139,ringtail:[125,80],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[],"\u307e\u308d\u3086\u304d":143,"\u771f\u507d":[13,150,45,125,181],libedit:[164,1,154,7,77,27,188],"\u5f31\u70b9":132,"[cmake":77,"\u8fd4\u308a":[74,108,130],"\u8fd4\u308b":154,"\u7d99\u627f":125,"\"localhost":172,"_locks":[2,172],"\u25a1\u25a1":124,"\u300cnew":184,"\uff08age":65,":bob":184,"2\u5104":[],mingw:[27,151],"nginx\u3089\u3057\u3044":80,"\u6607\u964d":63,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[75,117,158],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,125,133],service:[139,141,18],"/home":38,"\u4f7f\u308f":[2,91,94,90,9,27,108,151,16,17,158,178,65,44,125,172,96,77,175,176,80,81,181,130,189,38],"-benchmark":[],"\u533a\u5207\u308a":[179,58,108,90,3,4,130,13,132,45,97,48,7,157,153,77,150,38,181],"\u533a\u5207\u308b":[108,154,175],master:9,"\u610f\u8b58":65,"\u8a8d\u8b58":124,"_db\u30d5\u30e9\u30b0":27,"'column":7,"{table":[115,108],"\u306e\u3059\u3079\u3066":[108,54],"\u4e0d\u5fc5\u8981":77,"(comments":182,"-common":[7,14],project:150,"_update":[181,108,2,113,121],"*namebuf":[79,121],boston:184,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[],"\u4f7f\u3048\u308b":[108,181,97,125,7,178,27,188,80,81],"\u304b\u3069\u3046":[2,182,70,115,96,188],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":[],"-port":[131,167,97],"/max":80,object:[40,79,83,93,45,7,136,113,172,56,53,118,150],"\u7d22\u7528":[],"\"black":189,microsecond:148,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":126,letter:189,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":54,"\u533a\u5207\u3063":[46,108,90,133,172],"\u4f7f\u3063":[0,90,3,91,5,45,144,47,7,2,101,9,150,188,54,143,164,108,12,151,85,13,112,14,16,115,18,158,178,65,162,44,68,69,120,70,124,125,73,126,74,172,77,117,175,80,81,129,189,181,130,169,119,184,133,32,135,152,100,137,88,89,38,102],"\u30d1\u30a4\u30d7":73,camp:184,"\u4f7f\u3048":[108,90,181,130,191,160,96,125,178,9,150,158,27,65,38,80,81],"\u4f7f\u3046":[],"\u4f7f\u3044":[],"\u66f8\u304d\u8fbc\u307f":188,"\u66f8\u304d\u8fbc\u307e":190,unmanaged:126,"\uff08@":[27,154],"\u30d0\u30a4\u30ca\u30ea\u30fc":135,layout:151,".fedoraproject":129,"2byte":172,"\u306f\u306a\u304f":178,"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":94,createrepo:151,"\u79d8\u5bc6":151,"\u30a2\u30d4\u30fc\u30eb":151,"_age":96,"\u91cd\u307f":[],tips:[],"\u30c8\u30d4\u30c3\u30af":151,"\u91cd\u3044":[132,108],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u5b9f\u9a13":[],"\uff08piro":80,"\u91cd\u304f":70,patch:42,release:[],unpatched:42,"\u69cb\u9020":[44,69,132,16,135,113,94],"\u5e83\u304f":[151,178],"[linux":7,result:[75,4,113,32,103,69,172,61,78,64],"<port":[167,97],"\u5206\u304b\u3061":132,wikipedia:45,score:[3,12,48,127,108,75,150,85,153,70,59,18,44,69,121,122,125,74,77,28,176,131,184,115,78],"-stem":[152,14,80],"\u611f\u3058":124,shidara:27,"\u554f\u3044\u5408\u308f":69,"\u539f\u99c5":74,reported:[],country:[170,102,130],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":189,"\u66f8\u304d\u8fbc\u3080":167,"\u540c\u69d8":[92,69,151,13,167,74,172,63],"\u4e00\u6587\u5b57":80,"\u5931\u6557":[22,17,3,181,151,40,154,73,125,7,136,59,170,19,10,27,77,174,127,80,65],"\u30fb\u6d6e\u52d5\u5c0f":108,"\u95a2\u6570":[],diff:167,"\u5404\u7a2e":151,"\u6d88\u53bb":125,"\uff08node":81,"\u5360\u6709":79,"\u3044\u3046":108,correction:18,"\u30ab\u30f3\u30de":[58,3,150,130,157],worker:[],dave:96,"\u305f\u307e\u307e":54,"=query":131,"\"correction":169,"-message":[],spil:77,"/function":151,"_sel":42,"\u3069\u3093":105,"#set":167,"\u3069\u308c":[108,95,135,38,54,65],"_set":[17,41,93,123,16,7,25,116,19,63,77,79,112,53,80],"\"sound":18,"\u65ad\u7247":32,"\u4ee3\u8868":132,"\u79d2\u6570":[135,108,150,13,184,45,82],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":125,reports:[40,61],"_false":79,"\u3069\u306e":[92,108,90,150,130,168,18,75,188],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":27,"1\u4ef6":[70,184],"_rectangle":[],"\u3069\u3053":[27,188,80],"\u3002db":[27,69,3,172,16],"\u53b3\u5bc6":[77,176,80],"\u30df\u30ea\u79d2":45,"\u7121\u8996":[108,90,175,70,94,154,97,125,7,113,170,133,157,63,27,38,80,181],"\u5fdc\u7528":132,"\u3069\u3046":[1,145,83,130,6,124,72,108,7,70,8,155,9,190,38,107],"\u30e2\u30fc\u30c9":[90,3,69,172,36,80],"\"canceled":103,"\"blt":157,"\u5411\u4e0a":[27,141,9,54,158],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[108,90,70,144,18,63,38,80,65],"_skip":125,"_element":41,"\u30c4\u30fc\u30eb":[],"\u30e9\u30d9\u30eb":[108,125,80],"_result":[108,2,113],sleepy:114,"\u4e00\u6c17":151,previous:[141,12],"\u5317\u4eac":75,had:12,easy:12,"\u300ccharlie":184,"\u4fee\u5e73":80,hat:[],"*vars":[40,53],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":7,"\u7c21\u7565":[100,125],"\"content":[150,163,108,181],"\u9001\u308b":[0,172,54,119],"\u9001\u308a":[172,151],"\u30d0\u30a4\u30ca\u30ea":[101,151],"_broken":2,"\u8d8a\u3048":[70,77,80],unique:[131,103],"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":92,">command":4,"_error":[40,2,172],"_ascending":63,alice:[108,181,184,115,59,9,96,127,54],"-unauthenticated":[7,152],"\u30d4\u30ea\u30aa\u30c9":[73,78],sebastian:80,right:110,old:[40,151],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,133],truncated:125,begin:179,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u5358\u8a9e":[],"/ngx":9,"\uff08score":108,groogna:[112,54],"\u9001\u3063":[87,0,88,119],"for":[40,141,42,12,45,97,26,48,7,9,103,148,106,127,75,150,16,19,61,64,122,110,28,79,184,83,131,84,32,186,136,35,139,38],bottom:[27,110,34],"_reference":108,".asc":151,"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":125,ichii:27,yoku:[125,80],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":79,"\u5206\u985e":[13,130],standalone:64,"\"starttime":4,"\u89e3\u6c7a\u7b56":124,"\u306a\u3055\u3093":88,"\u65e2\u5b9a\u5024":141,"\u305b\u3044":[125,80],"_size":[40,69,121,86,16,113,62,63,77,79,84,53],".am\u30d5\u30a1\u30a4\u30eb":151,"\u89e3\u91c8":[154,69,181,157],waits:[40,19],"_range":[],support:42,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":96,joseph:143,"\u305b\u306a":[181,150],"\u5c71\u672c":80,"\u3086\u304d\u3072\u308d":143,thesaurus:108,"_org":151,pagerank:[122,28,12],"/tsv":[22,174,175,10],"\u5fa9\u65e7":[112,83,61],"\u8981\u7d20":[58,2,3,85,95,167,32,125,7,113,69,135],"\u30d0\u30f3\u30c9\u30eb":[77,125,80],"\u306e\u304b":[184,144],"\u9006\u5f15":44,"_sequence":[2,172],"\u306e\u3044":[11,6,132,45,97,58,75,113,8,172,69],"_records":[7,125],exist:[103,12],"'\"":[7,125],"'.":[79,119],"'-":[97,125],"',":[79,186,80,48],sizeof:[77,84,16],"')":[58,179,97,80],"'(":97,"\u306e\u306b":[],relax:139,"\u306e\u3067":[141,3,144,7,101,9,147,54,108,75,151,13,115,119,68,23,70,165,124,125,182,96,27,78,175,176,80,132,32,135,187,184,36,65],"*nvars":53,"\u3001_":3,"\u306e\u307f":[],"'t":[106,83,12,122,35,16,136,19,103,139,28,48,84,9],"'s":[114,108,181,12,122,58,182,148,135,150,119],"\u306b\u304f\u3044\u304b":38,"\u3089\u308c\u308b":[69,121,132,144,125,7,63,80,178],"\u88dc\u3046":132,"\u305b\u308b":[141,69,132,161,47,115,36,177,65],"'n":97,"'m":[114,184,163,78],"-latest":[],"-tar":24,"\u305b\u308c":132,"\u6bb5\u843d":[73,95,121],"_count":[],"\u5165\u529b\u30df\u30b9":18,time:[23,103,131,13,184,45,167,125,48,7,70,18,148,139,61,77,27,180,176,80,153],push:[151,119],"\u304a\u3053\u306a\u3063":3,":/":[3,4,97,101,9,103,104,188,54,164,109,151,85,13,14,17,157,119,44,24,74,102,80,81,179,129,130,131,152,36,189,89],"\u53cd\u6620":[132,69,151,139],"\u7b26\u53f7":[],":$":[143,150,181,20],"\u6d41\u308c":[],"-prefix":[],":#":80,"\u5c0f\u897f":125,":=":[108,181],":>":[108,181],"\u3002rroonga":158,"::":[2,4,12],netbsd:[154,125],millisecond:19,"\u3042\u307e\u308a":[78,124,113],"\u7aef\u672b":132,"_builtin":[27,79,83,62],"\u6700\u7d42":[108,83,85],dragonfly:154,"\u500b\u5225":151,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":7,"-root":[36,154,97],":~":[181,178],lru:117,"\u7d20\u6734":130,locked:40,".source":77,exact:69,"\u3092\u3064\u3051\u308b":150,minute:148,".body":[37,91,107],"\u30b9\u30af\u30ea\u30d7\u30c8":[],"{language":119,"\u6e08\u307f":[58,129,90,121,151,164,124,45,14,73,125,7,152,18,169,27,175,176,141],"-base":[131,64],":@":[44,108,3,181,13,184,115,102],":\\":[101,178],":^":[181,143],":[":[167,178],":public":[],"\u4e00\u6b69":3,"\u7d50\u3073\u3064\u3044":134,"\u305f\u3055\u3093":[27,1,125],"\u7d50\u3073\u3064\u304f":134,sign:151,"\u6e08\u3080":77,"\u5316\u4f5c":151,makecache:[7,129],"\u4e8c\u9805":150,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":80,".ncpu":89,"\u7d4c\u904e":[135,11,150,13,184,45,82,19,27,79],"\u30bf\u30d6":[175,4,172],takashi:[27,170],"\u540d\u7b49":79,"\u4e3b\u8981":137,"'='":97,"\u76ee\u5b89":151,"\u63a8\u9032":125,"\u30bf\u30b0":[],"gmo\u30e1\u30c7\u30a3\u30a2":80,"\u6d41\u3057":151,address:[7,27,172,131],"\u30a2\u30ab\u30a6\u30f3\u30c8":[26,80,151],"\u4e3b\u30ad\u30fc":[],"\u4e00\u62ec":[],queue:134,"\u8b66\u544a":[108,11,154,125,7,112,80],"\u3002offset":93,"\u5ea6\u6570":[13,27,74,150],ipa:164,pentium:167,prefer:131,"`/":20,logical:[],"\u6587\u5b57\u5217":[],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[69,97],bookmarks:85,"\u4e88\u3081":[45,97],"{\"_":[44,108,150,13,74,96,181],"|table":65,droonga:100,"\u30d5\u30a9\u30ed\u30fc":[],"/header":24,"\u3060\u3063":[108,11,150,70,7,113,77],"``":[1,154,84],"\u5168\u4e16\u754c":125,"\u3060\u3068":124,visual:[125,7,101,77,27,80],"_gt":63,"\u3002obj":79,"\u3060\u3044":[27,80],valuen:100,"_alloc":[40,84],values:[58,106,97,121,79],"\u3060\u3057":[27,167],"\u5024\u8a18":150,following:[40,121,12,131,97,186,148,20,139,64],pgroonga:12,locks:[40,136,32],logrotate:[7,80],allowed:64,"\u5897\u3084\u3059":[108,177,85],"\u6a19\u6e96":[1,145,3,6,97,8,9,105,107,11,58,155,157,190,159,72,73,126,172,112,80,179,82,36,37,140],chroot:151,divided:122,"\u7551\u30f6":80,"\u30d2\u30e5\u30d9\u30cb":[75,168],parameter:[110,12,131,35,97,113,103,139,127,53],applications:32,date:167,such:[12,122,35,32,186,48,7,131,10,64,119],"?id":103,data:[],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[],"/dictionary":154,ss:[148,150],"/javascript":27,st:[90,38,150],sh:[151,81],so:[83,12,122,113,139,28,79],sa:[153,18],se:[90,176],"\u30e1\u30bd\u30c3\u30c9":77,"\u540c\u3058\u6570":[97,9,54],"[yum":7,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":80,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":157,"\u30a2\u30c9\u30ec\u30b9":[167,97,113,102,27,172],"*query":[56,84],jis:63,"\u540c\u671f":[167,151],instantly:32,"\u30d7\u30e9\u30b0\u30a4\u30f3api":80,"\u4f7f\u308f\u305a":115,records:[148,110,48],"\u8d85\u3048\u308b":[7,63,165,94,13],matched:[122,131,28,110,12],config:[1,11,101],"\u7570\u5e38":[126,167],"_dat":[],"_dataset":[146,64,186,48],"\u3084\u308b":[],"\u5927\u95a2":80,"\u4e26\u3073":[144,150],"\u4e26\u3079":[],"-terminated":[40,53],gtar:24,"\uff1f\u300d":130,indexblog:78,"\u30d8\u30c3\u30c0\u30fc":[],"-offset":108,container:84,"_msgpack":106,fu:90,".status":167,"\"search":[176,18,181,48],"\"type":153,formula:151,"\u6700\u5c0f\u9650":9,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[94,23,77],mime:[77,54],"byte":[121,35,167,32,7,113,172,79],"\u7d20\u65b9":132,".index":77,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":188,"\u30d9\u30af\u30bf\u30fc":[],"\u4e00\u610f":[73,97,60],one:[40,12,97,32,136,61,139,64],submit:[131,153,18,176,48],"*expr":84,"\u5b9a\u5b50":178,city:[184,75],"\u5bfe\u7b56":[],"\"sphr":168,"=encoding":[],"\u884c\u756a":[135,27],"\u8fd4\u4fe1\u5143":184,"\u8fd4\u4fe1\u5148":184,"\u306b\u5bfe\u8c61":27,"\u88d5\u4e5f":80,translate:[119,20],"\u540c\u6642":[108,11,132,134,167,113,74,63,77],effective:97,fumiyasu:27,groongau:38,"\u4e16\u754c":[75,13,45,34,74,168],argument:[150,12],"-scorer":160,say:150,"/span":[161,32,47],"/ubuntu":[7,141],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":125,"\u30ea\u30b9\u30c8":[58,163,175,3,181,151,44,38,97,108,189,7,104,178,92,105,150,84,119],uuuuuu:150,"\u5ea6\u5408\u3044":70,note:[40,131,103,139],take:61,"\u30cb\u30db\u30f3\u30b8\u30f3":176,"[[\"":126,"\u5fdc\u7b54":[132,125],"_lexicon":77,buffer:[126,79,16],"\u5148\u982d":[108,3,93,9,79,38,178],compress:73,"\u30b9\u30da\u30fc\u30b9":[27,108,125],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[],"\u672b\u5c3e":[63,93,79,23,178],"\u9589\u3058":[27,94],"\u4ef6\u6570":[108,3,70,144,58,113,60,77,79,80],"\u5217\u6307\u5411":[132,97],"_cursor":[],xml:[],"\u5927\u4e8b":[175,181],"\u4e00\u6642":[],"\u3068\u3057\u307e\u305b":19,"_defrag":79,"\uff08tokenbigram":70,resource:172,"\u66f8\u304d\u8fbc\u3081\u308b":80,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[],"\u76f4\u63a5":[184,157],"\u8868\u3057":[92,11,3,45,135,2,60,69,178],"\u7a7a\u767d":[90,3,181,70,132,97,48,58,133,38],"\u7528\u79d8":[],regexplexicon:178,"\u898f\u5247":7,".content":[108,150,114,182,139,78,181],"\u306b\u3068\u3063\u3066":[124,90,38],sites:157,"*column":121,"\u5927\u4e08":0,"\u4f9d\u5b58":[],jobs:167,"\u7e26\u68d2":65,"\u4e0a\u554f":141,"\u5e73\u5747":[108,80],"@tomotaka":27,many:[122,139,186,12,85],"\u8fd4\u3059":[1,145,6,97,7,8,27,54,107,150,153,16,155,190,121,167,72,125,82,74,172,96,77,80,180,154,37,84],"\u30b3\u30ed\u30f3":73,"_otoj":177,expression:[131,139,68,84,108],")offset":[63,113],"-mecab":[164,129,14,125,7,152,80,89],"_t":2,"\u5404\u7d22":3,"(xxx":125,"\u3002http":125,"\u542b\u3080\u5024":[97,3],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":80,"\u5468\u4e0a":168,"_synonyms":175,"*added":113,"\u898b\u4ed8":125,"'ja":119,enable:[],"\u6607\u9806":[108,3,130,74,113,63,79],"\u5b9f\u884c":[],"\u8fbc\u307f":[190,175],"-bye":[46,150,163,108,181],"\u304a\u3051\u308b":[66,44,3,181,13,132,45,125,7],"\u3002\u3057\u304b\u3082":191,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":71,"\u7406\u89e3":[108,3],"?table":[103,9,54,102],ctrl:[97,172],"\u30af\u30ea\u30fc\u30f3":151,ivh:[164,129],"@lists":[151,26],".md":151,pthread:[27,125],"\u3002squeeze":177,ascii:[38,181,150],"\u633f\u5165":[3,151,93,97,32,7],binary:[132,45,4],hostname:[36,97,9],"/pipermail":80,"_filter":[],"<path":[97,64],"_setoperation":113,"[incompatible":[],"\u3002\u3057\u304b\u3057":[108,75,85,132,45,114,59,18,137,27,189,38,54],"_at":[],"error\u30bf\u30b0":7,"\u8ab2\u984c":[],cmake:[7,188,101,125],"\u5b9f\u88c5":[68,75,108,7,9,36,147,27,77,191,80,119],"_date":151,takahiro:154,customized:148,"\u5217\u8868":[45,84],wiedenroth:80,"\u6b53\u8fce":88,"_normalize":[114,108,42,3,91,70,184,181,32,189,7,115,113,139,78,150,65],"\u53d6\u308a\u51fa\u3055":13,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":80,customizes:12,"\u53d6\u308a\u51fa\u3059":[63,13,69,120,154],"_retry":2,"\u56db\u89d2":[],"(x":80,"\u6771\u4eac\u90fd":[70,144,38],"[token":125,"\"utf":123,"(r":[167,178],rest:40,gdb:177,"(a":81,"_pack":[],"\u3046\u3061\u3044":97,"([":67,"-neologd":38,"(_":[153,176,18,150,48],"\u30d1\u30e9\u30e1\u30fc\u30bf":[],"\u3042\u3052\u308b":[],haystack:69,dcmake:101,"\u6c4e\u7528":[167,97,9],"\u639b\u3051":150,"(>":69,"(<":69,"(=":[2,150,69],res2:113,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":151,"((":[108,85],"()":[],"(.":[78,151],"*tables":16,"(-":150,"(\"":[75,3,123,97,32,47,125,7,115,103,161],world:38,"(!":69,"(&":[77,84,16],"('":[58,60,3,73,97],meaning:97,intel:167,"_but":69,"\u95a2\u308f\u3089":[108,167],"\u4ed5\u7d44":[54,119],conditional:153,yyyy:[148,150],";b":[161,47],".load":167,"-full":151,"\u591a\u3059\u304e\u308b":108,exit:[],ddl:70,lucid:[154,125,151],"/httpd":[141,9],"\u8a18\u4e8b":[114,78,151],"\u5168\u6587\u691c\u7d22":[],";\"":7,";/":[161,47],"package":[],"\u5ec3\u6b62":11,favorite:119,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[27,54],"\u304b\u3048\u308b":182,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[189,133],"\u30ec\u30d9\u30eb":[6,7,8,97,80],"\u7b97\u51fa":[7,80],"\u306b\u3042\u308a":[133,65],"\u6df7\u305c\u308b":85,"\u7403\u9762":[75,168],"_prefix":[],"<encoding":97,"\u7530\u6cbc":80,"\u30e9\u30f3\u30ad\u30f3\u30b0":[3,80],emacs:119,recommends:139,"\u30aa\u30fc\u30d7\u30f3":[7,17,125,27],complete:[131,153,112,176,169],"/pull":151,"_empty":[2,172],"with":[],"_load":[],"_types":[],pull:[],ideographic:77,october:80,"\u697d\u3057\u3044":[70,144],reqular:131,"\u304a\u77e5\u3089":[],gone:44,ac:189,uid:151,"| y":125,"\u30ec\u30b9\u30c8\u30e9\u30f3":132,am:[32,47],al:38,an:[40,110,83,12,113,9,61,139],"| n":150,as:[40,141,90,12,122,35,32,186,16,7,131,9,103,139,64,119],ar:[70,90,144],at:[110,184,20,42,139,148],"| c":150,"| _":74,"\u3002messagepack":[135,188],shimomura:7,"\u4e00\u65b9":[108,3,181,5,115,13,132,32,47,70,182,78,38,150],"\u30c7\u30d0\u30c3\u30b0":[77,90,9,80,126],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[7,167,101],"\u9806\u4f4d":93,"\u30b9\u30c6\u30c3\u30d7":178,queryexpandertsv:[],"\u6817\u5c71":[77,80],"_such":[2,172],original:[106,143,157],"\u5897\u5206":108,"\u6587\u6cd5":[],senna:[],"\u4ed8\u968f":[145,72],"\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\u5408\u8a08":[66,108,70,94,167,126,165,80],"\u6e80\u3055":125,"=yes":[177,108,112,125,151],"-talk":[77,125,26,151],"\u548c\u5e83":125,tx:38,"\u901a\u4fe1":[],to:[],tail:[172,151],tf:[122,183,12],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],homepage:167,tc:[63,120],returned:[40,110],"/other":9,"\u30ab\u30c6\u30b4\u30ea":[108,90,46],"/rurema":80,"\u3002column":[69,3,121],condition:150,"(popular":108,large:[139,61],adjust:108,"\u5909\u308f\u308b":[70,161,38,32,47],"\u5909\u308f\u308a":[126,74,144,38,117],"\u4e0d\u5b8c\u5168":27,"\u300c\u6771\u4eac\u90fd":70,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[90,133,125,80],"&gt":[161,32,47],"\u6e80\u3059":[77,125],"\u672c\u8a9e":38,"\u5927\u5225":13,pass:9,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[7,77,80],"\u5909\u308f\u3063":38,"\u7701\u7565":[],"\u7d22\u6642":154,"\u5897\u52a0":[108,125],"\u3067\u306b":[22,70,114,10],section:[40,86,121],"\u30ea\u30c6\u30e9\u30eb":[],"\u4eba\u5411\u3051":77,"\u5927\u5207":132,"\"\u672c":38,"\u6700\u65b0":[27,151,26,117],"\u3002timeout":79,"_modified":184,method:9,contrast:[97,9],full:[90,12,32,77,38,178],hash:[94,184],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[46,90],"\u30ce\u30a4\u30ba":[70,18],sender:[131,64],"\u975e\u516c\u958b":151,"_compare":79,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":108,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":7,"\u306b\u3059\u308b":54,via:48,followee:184,tokenizer:[],"/scorer":12,"\u7121\u540d":[113,79],"(init":16,follower:184,"\u3067\u3059":[90,3,4,5,7,2,9,10,11,12,87,14,16,17,18,19,20,22,23,24,182,27,31,32,35,36,38,92,13,45,46,47,48,49,53,54,164,188,58,59,60,61,166,64,65,66,68,69,70,71,73,74,75,77,78,79,80,81,83,84,86,152,88,117,0,91,94,95,97,99,100,101,102,103,105,106,108,109,85,114,115,113,118,119,121,122,161,124,125,126,127,129,130,131,132,133,135,136,139,141,142,144,147,150,151,153,157,158,163,165,167,168,169,170,172,96,174,175,176,177,178,179,181,183,184,189,191],select:[],executable:61,"[grntest":27,mecab:[164,1,42,151,132,14,125,7,152,154,77,27,188,38,129,80,89],"\u7406\u95a2":53,"\u4e0a\u8a18url":151,more:[40,12,122,32,172,61,139,64],"\u30c6\u30ad\u30b9\u30c8":[46,90,151,85,38,161,154,133,32,47,125,7,109,189,178,77,119,84,167,65],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":44,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[71,85],"\u518d\u5229":[94,108,60,80],"_argument":[63,113,2,172,79],"_messages":[151,119],endpoint:[131,64],"_adjust":[108,56,69],learn:[131,64],"\u6bd4\u8f03":[],scan:177,"_descending":63,accept:[35,154],states:170,gronoga:9,information:148,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":27,"\u300ccommand":36,"=dat":112,"\u52d5\u7684":[],"\u5b9f\u884c\u4f8b":[90,3,91,12,95,68,47,48,7,100,9,10,147,105,127,143,108,11,150,85,13,153,114,115,59,18,117,166,161,65,22,44,163,49,23,122,148,82,182,74,75,172,96,46,78,174,176,177,178,181,130,131,184,133,32,135,136,170,109,189,38,102],"\u5019\u88dc":[153,18,176,169],"\u306b\u3059\u3050":114,"\u30fb\u81ea\u5df1\u7d39":184,"\u8aad\u307f\u51fa\u3057":132,github:[0,73,189,151,125,7,77,104,27,119,80,81],tokenbigram:[],register:[],replied:184,"\u666e\u53ca":132,sysctl:[165,139],"\u52d5\u753b":44,"\u8f09\u305b\u308b":151,".co":[108,42],installer:151,its:[40,148,84],saucy:[125,80],".rpm":[164,129],"\u9577\u5185":80,confiugration:139,"\u63a5\u7d9a":[],"[tokenizer":[7,125],"_weight":[73,95,121,80,85],was:[],salamander:[125,80],"\u6271\u3044":[11,13,144,38,176,80],"\u6271\u3046":[2,23,150,70,132,125,26,165,142,112],"\u6271\u3048":[99,16],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":7,"\u5c0f\u306a\u308a":[],always:139,messagepack:[],"\u6271\u3063":[184,1,125],"\u30ad\u30e3\u30b9\u30c8":[181,184,154,125,7,112],"[doc":[125,7,77,27,112,80],found:[113,110],".offset":113,"\u534a\u89d2":[63,189,3],"\u540c\u7fa9":175,"\u9ad8\u901f":[44,1,69,3,181,92,94,71,97,125,168,75,178,132,191,27,150,38,54,65],operation:[136,110,172],"\u6271\u308f":[92,108,90,181,13,167,125,16,7,70,77,189,80],really:[108,181,150],"\u524d\u8005":[74,189,175],"_entries":[17,117],"\u30ab\u30d0\u30ec\u30c3\u30b8":[],"\u30de\u30eb\u30c1\u30b3\u30a2":132,"\u6e2c\u7528":1,"\u305d\u308d\u305d\u308d":3,"/locale":[119,151,20],ftb:42,"_client":150,"/etc":[141,151,165,7,152,9,139,175],"\u6975\u4ed8":[75,168],"_hit":[3,4,82,102,9,172],"\u3053\u3053\u3067":151,"\u30a6\u30a7\u30a4\u30c8":73,"_user":[],"\u3002\u3069\u308c":131,"-keyring":[7,152],number:[],"_pipe":[2,172],"\u3059\u3079\u304d":69,"\u7d42\u308f\u308b":[114,181,150],"\u30b3\u30d4\u30fc":[121,151,93,113,7,59,157,79],"/disk":178,guess:[],"|enable":90,"\u533a\u5207\u3089":27,introduction:[],"\u30c9\u30e1\u30a4\u30f3":[130,80],">\u3001":155,"_stack":2,"\u642d\u8f09":132,dpkg:151,"\u5b66\u7fd2":[],"\u56de\u547c":154,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":77,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":80,listen:[7,97,9,54],"\u60f3\u5b9a":[82,44,157,126],"\u5b9f\u969b":[66,44,23,70,125,142,78],toybox:13,"_nofile":[148,125],canceling:35,"\u52d5\u74b0":179,"*data":93,"\u66f8\u304d\u63db\u3048":[151,81],gted:119,"_filtered":142,qps:[179,167],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[154,97],self:167,"_lock":[40,27,79,19],also:[108,181,12,131,35,32,150],internal:80,"\"theatre":91,"\u8a18\u53f7":[154,3,70,144,97,38],play:91,"\uff08todo":150,brooklyn:184,"\u306e\u3069\u3061\u3089":[108,150],"\u3060\u3055\u3044":[0,3,7,9,104,188,54,108,150,151,85,14,177,178,119,24,172,175,80,81,189,181,130,132,135,137,88,65],"\u5b57\u5217":[27,45,181,80,65],exe:[101,151],"_uint":62,cover:32,umemoto:27,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":80,arted:150,ext:90,"\u6d3b\u304b\u3059":108,"_vsize":[84,16],"\u7d42\u308f\u3063":5,"_processes":[],microsoft:101,"\u3057\u304b\u3057":[108,150,70,38,144,78,178,175,54,119],"/command":[178,9,102],xcode:89,session:131,"-memory":154,"\u6570\u3048":130,"\u77e9\u5f62":[132,74,34],"\u5143\u6c17":125,columnn:7,"\u9577\u578b":[63,95],"\u6642\u306b":27,failed:19,"\u51e6\u7406":[1,2,93,133,144,46,47,7,90,9,54,108,150,60,119,163,69,167,125,74,172,77,80,181,132,154,31,32,65,38],factor:[108,80],"\u5225\u9014":[45,79],"\u30bf\u30fc\u30b2\u30c3\u30c8":7,columns:[58,108,154,186,7,61,139],"]]]":[70,153,155,150],"\u5fc5\u305a":[108,11,71,113,172,65],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":54,"\u3082\u3057\u3054":7,"_point":[44,168,110],"\u30ed\u30b0\u30ec\u30d9\u30eb":9,bytes:[40,66,53],"\u6c7a\u3081":[23,65],"\u3082\u3057\u3042":77,"\u7528\u610f":[108,75,151,167,48,169,18,69,188,79,38,176],"\u3082\u3057\u304f":[142,45,47,7,9,164,150,151,13,113,63,23,165,161,125,172,96,77,78,80,181,32],set:[139,79,167],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[73,1,154,125,7,177,27,80],see:[40,35,139,20],sed:[7,27],sec:19,"\u547c\u3073\u5143":16,sea:[90,176],sen:42,"\u8a00\u8a9e":[],juman:164,currently:[106,9,83],mutex:[40,125],"\u65e5\u4ed8":[132,75,151],"\u3068\u3068\u3082\u306b":13,"\u3082\u3057\u308c":[175,38],available:[40,42],"<span":[161,32,47],"\u304c\u3064\u3044":[7,94,108,154,85],javascript:[],"\uff09\uff08":65,"\u3082\u304d\u3061\u3093":9,"interface":131,"\u500b\u4eba":188,"\u6790\u5668":[132,38],"_already":[2,172],"\u77e5\u308c":[68,23,133,124,147,78],last:[7,184],"\u4e00\u8cab\u6027":124,"\u77e5\u308b":130,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[132,167,158],"\u578b\u5909":27,connection:172,mmap:[],"<#{":148,"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":125,load:[],geolocation:[122,28,12],");":[69,121,16,17,77,84],"):":[141,151],"@ceekz":125,"\u9577\u5185\u6b69":80,"-adjuster":[108,85],"\u30b9\u30ec\u30c3\u30c9":[132,134,167,16,97,54],"))":[77,108,175,150],"\u30ca\u30ce":[135,154],")-":151,"),":[73,122,28,125,12],").":[141,151,12,122,32,131,183],"_exec":[2,84,16],")\"":[109,181,12,122,125,32,91],".htpasswd":[9,54],")'":[44,181,184,161,32,47,48,182,74,18,153,176,150],"[rpm":[7,27,112,125,80],tablename:11,"\u7c21\u6613":[141,75,80],"\u63a2\u3057":[132,108,38,167],"\u30d1\u30e9\u30e1\u30bf":[40,41,79,120,83,93,62,123,113,16,17,25,116,110,19,63,56,84,53,118,121],shinya:7,func:[40,53,16],"\u30ad\u30fc":[142,94,45,97,7,3,53,108,150,85,113,60,65,66,23,121,125,170,77,112,80,181,154,189,38],"\u3067\u307e\u3068\u3081":175,handling:139,")]":125,")\\":178,"-api":87,"\u3067\u306a\u3051\u308c":[181,150],"\u5236\u9650":[],"\u3002point":[34,168],"-apt":14,formats:148,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[7,27,125],"_nromalize":189,"\u632f\u821e\u3044":[7,115,125,80,96],"\u63a1\u7528":[70,132,172],"<=":[184,150,9,125],binding:[161,42,47],"\u5316\u524d":60,"</":[161,109,4,47,32],"<-":54,"\u8a00\u3044":[182,71],"\u4e00\u7fa4":69,"_ptr":[40,84,16],swig:42,"\u56de\u52d5":167,alert:[6,97,8,9,148,80],levels:9,ifexists:58,stack:[125,172],"\u7121\u99c4":132,"1\u5ea6":5,recoverable:61,"\u8981\u6c42":[124,3,125,182],"-path":[],"_file":[2,135,9,175,54,172],mysql:[164,108,42,151,12,85,132,161,14,133,32,47,152,175,129,80],"\u5316\u51e6":[27,60],"\u30bd\u30fc\u30c8":[],"_files":[2,172],location:[],input:[58,135,106,172],emergency:[148,97,9],format:[40,42,4,131,148,106,119],"\u30cf\u30c3\u30b7\u30e5":[7,82,151,126],"\u30bd\u30fc\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":151,"\u540c\u7b49":[144,167],"continue":80,"_nabe":80,"\u4ed5\u65b9":[],"\u30d6\u30ed\u30c3\u30af":[132,9,125],"_flow":[2,172],"_bool":[154,79],"\u30af\u30ed\u30fc\u30f3":188,"\u65e2\u77e5":23,bm:[122,12],"-mruby":[151,80],bi:[70,144],"\u4e0a\u4f4d":[70,113],wget:[164,129,24,14,152,188],by:[],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[141,80],"\"yu":157,"\u3068\u308f\u304b\u308b":151,garbage:[126,125],"\u983b\u51fa":77,into:[131,48,16],"\u3088\u308a":[45,144,7,100,27,188,108,75,150,85,13,114,63,65,69,70,167,125,77,78,168,175,176,80,178,181,130,184,154,137,38],"|key":[108,3,91,70,184,181,32,114,115,143,139,78,150,65],"\u8457\u4f5c":80,"\u30d5\u30a9\u30ed\u30ef\u30fc":151,pcre:7,span:[161,109,32,47],"\u56fd\u969b":119,custom:12,"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],"\u5074\u9762":132,"\u6574\u3063":177,opens:[139,110,83],"\"keyword":108,link:[13,102,130],line:[135,81,9,16],"\uff08ci":81,posted:184,"\u8868\u3059":[67,90,44,13,73,75,69,92,178],".php":151,up:4,".am":20,ul:90,"\u5206\u89e3":69,ui:108,"\u3054\u307f":[124,125],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[],"char":[40,83,62,123,16,113,79,84,53,80,121],"\u3054\u3068":[],"\u3075\u308a":153,"\u304b\u307e\u3044":3,defines:186,codes:[151,5],taro:44,">uptime":4,logyyyymmddhhmmss:131,"=null":[136,108,90,117,65],invalid:[40,131,108,172],"\u8868\u308f":79,"\u898b\u4ed8\u3051":125,"\u7acb\u3061":135,elements:85,".dump":27,"\u53f3\u8fba":[27,154],"(nginx":141,"\u6307\u5b9a":[],"\u4e00\u7dd2":[1,75,3,121,85,70,108,16,7,38,80,65],"\u3088\u304f":[108,96,38,178,85],"\u3088\u3046":[],"\u3088\u3044":[108,181,130,150,78,79,54,119],"\u3088\u3073":69,age:[95,108,96],"/wgs":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":125,oracle:[],"\u3088\u3063":74,"\u8a66\u884c":132,hello:[46,150,108,163,114,38],code:[135,148,127,4,119],partial:69,"\u3067\u307f":132,",\"title":3,results:[7,131,113,32],existing:[64,61,20],"/sysctl":[165,139,89],"\u843d\u3061":[154,125],"\u3067\u306f":80,"\u3067\u306e":[135,38,32,80],"-lzo":73,"/json":[27,9,54],"\u3067\u3069":153,"\u3067\u3057":[24,13,150,80],"[label":108,"\u8a2d\u5b9a\u6e08\u307f":141,"\u306a\u304a\u3053\u306e":167,":..":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[27,154],"\u3067\u3044":[13,184,108,150],"\u30ea\u30af\u30a8\u30b9\u30c8uri":9,"\u3067\u304f":[108,150,85,137,88,175,80,81],"\u3067\u304d":[],resources:[5,16],"{user":139,"-lz4":[],"\u7279\u306b":[69,151],provides:12,"'now":184,"\u8ca2\u732e":125,"\u983b\u5ea6":[77,153],"\u6368\u3066":27,".clean":151,"\u5f15\u304d\u7d9a\u304d":125,"try":[184,19],"\u6b8b\u308b":27,">rroonga":[161,47],"\u6b8b\u308a":[108,11,175,65],".sub":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[],"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":7,"\u4e00\u81f4\u3057":[108,144,80],video:44,".xml":4,index:[44,42,120,83,151,86,95,181,32,110,61,139,78,150,80,121],directive:9,"_operator":[113,56,84,121,110],"\u306e\u3067\u3057\u3087":108,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":101,"\u30ef\u30fc\u30ab":9,"\u5224\u65ad":[83,150],"\u5fc3\u304c":177,nargs:84,"\u516c\u958b":[151,154,125,17,27,80],"?parameter":9,let:114,ubuntu:[],ctx:[40,83,134,16,17,113,79,84,53,121],"\u73fe\u308c":90,"\u3067\u3082":[0,2,3,94,144,47,7,101,9,188,164,108,151,14,115,177,65,70,167,125,73,182,74,172,27,78,176,80,178,129,132,32,152,137,119,38,102],grnslap:[],buffered:86,"\u8d85\u904e":[165,125],firefox:119,"\u30c7\u30b6\u30a4\u30f3":7,"\u9014\u4e2d":[151,97,7,18,172,176,80],"\u3046\u3048":[7,27],"\u4ee5\u964d":[92,109,23,151,177,161,154,97,125,47,102,27,189,38,80,119],"\u3059\u304f":182,zip:[],illegal:172,"\"sea":176,"\u3044\u304f\u3064":[88,178],next:[110,53],"\u3046\u3061":[92,11,121,7,126,113,69,96,63,27,79],"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":78,"\u30af\u30a9\u30fc\u30c8":[90,133,181],"\u3059\u308b":[],"\u7d4c\u7def\u5ea6":[],"\u3059\u308c":[22,108,3,181,130,132,161,96,167,113,10,77,38,150],"/usage":12,src:113,"\u3059\u3080":23,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[],occurred:[139,110],"-leaner":64,"\u578b\u6307":7,"_escape":[],"\uff08groonga":132,"\u4f7f\u3044\u65b9":[],"this":[40,3,91,97,7,9,103,148,106,54,108,150,13,16,61,20,121,79,181,83,131,32,186,136,139,102],"(wgs":74,"_posting":[110,120],"\u6e21\u3055":[7,75,69,53,125],"\u6e21\u3057":[69,3,181,58,102,77,80],"\u6e21\u3059":[112,77,3,150],"\u5171\u306b":[79,121],".domain":77,"\u6b8b\u3063":[154,125],edict:80,"\u3002\u3064\u307e\u308a":[108,3,181,19,38,91],"\u306f\u6708":150,process:[],lock:[],"_estimate":[27,110,77],"\u7d30\u5206":13,"\u3059\u3050":[132,54],"\u6301\u3061":[108,90,71,95,97,69,9,178],"\u6301\u3063":[108,90,181,85,132,95,124,7,18,49,166,189,133,150],"\u6301\u3064":[44,108,49,3,150,130,92,13,132,95,97,58,75,113,18,60,182,166,27,189,134],"\u6301\u3066":[163,95],"-enable":[88,154,20],"\u3059\u3067":[90,151,144,114,59,80],"\u3059\u3079":[108,90,150,157,94,172,167,80,136,184,11,9,69,77,27,127,38,176,54,107],"\u6b8b\u3057":108,defalt:154,"\u9664\u7b97":[],"-gqtp":[],"\u3044\u304f\u3089":132,"_')":[73,60],"\u4e26\u3073\u9806":74,">starttime":4,tomotaka:27,"\u8a2d\u5b9a":[],alloc:[3,4,82,102,9,172],"\u4f53\u8fd1":168,"\u578b\u540d":95,element:[150,85],"\u9078\u629e":[],allow:[7,152,108,181],":\\\"":58,op:[113,56,84,121,110],"[httpd":[7,77,125,80],"\u8abf\u3079":[93,34,79,130,168],"\u30ab\u30d0\u30fc":177,lz4:[188,80],naist:38,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[38,85],comma:77,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":179,yamaguchi:27,perfect:122,"\u3092\u3064\u3051":[108,23,181],"\u6539\u884c":[112,27,97,77],"_unavailable":[2,172],"\u6587\u66f8":[],"=platform":[],total:[126,167,139],hobby:148,"\u30c7\u30a3\u30b9\u30af":[77,1,78],"\u5de6\u4e0b":1,"[space":181,"\u5165\u308c\u308b":178,python:[151,20],billiard:[70,144],lzo:[73,121,7,172,27,80],"\u4e00\u6642\u7d50\u679c":7,"_per":[27,16],"_implemented":[2,172],"/master":[119,81],"\u7121\u9650":[7,154,80],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":80,"_none":106,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":81,doing:136,"-patch":119,"\u753b\u9762":[1,151,80],frequency:[12,122,153,48,183,18,176,80],"\u30b3\u30e1\u30f3\u30c8id":184,"\u751f\u6210":[],"-fd":[131,27],"\u3002\u7701\u7565\u53ef\u80fd":161,"\u4e57\u308a":23,initialize:16,"\u4ed5\u69d8":[],"\"\uff08":176,"\"\uff09":[13,1,74,176],"_friends":44,"\u30bb\u30b0\u30e1\u30f3\u30c8":[126,37,80,79],removing:83,"3ki":154,"\"timestamp":23,owned:84,"\u63db\u3048\u308b":[71,151],occurrences:122,"\uff08\u300c":[70,189],owner:9,"\u9069\u5408\u7387":38,"\u5897\u5927":75,"\u5bb9\u91cf":[77,108,126],"\u30cb\u30db\u30f3\u30b4":176,behaves:131,system:[108,181,24,45,32,139,150],"-keys":151,"\u30b9\u30da\u30eb":175,"\"weight":13,back:150,"\u304b\u3061":[108,144],"\u304b\u3064":[63,108,144,125,150],"_logger":7,"\u304b\u3069":[108,181,70,165,96,34,74,9,153,168,80],"\u756a\u76ee":[108,90,3,181,13,95,133,125,113,63,178,150],"\u8ffd\u8de1":[],"-time":32,"\u500d\u7cbe":45,"\u6253\u3061\u5207\u308a":125,"\u304b\u3051":[125,107],"\u9650\u6587":[27,65],"_results":113,"\u304b\u305a":[7,80],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u304b\u305f":77,"-searchu":38,"false":[145,143,6,45,8,103,107,150,151,13,115,59,155,190,161,72,125,73,182,170,96,127,80,181,154,136,100],"_request":103,"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"2grn":80,"*s":80,"_charlen":40,"\u304b\u3082":[68,49,23,181,133,124,135,166,59,147,78,178,80,150],documents:[122,115,32],"\u304b\u3089":[],"\u3044b":[70,144],tokendelimitnull:[],"_const":[69,84],"\u3069\u3061\u3089":[0,3,133,16,169,71,78,54],"*init":53,okapi:[122,12],"\u6a5f\u80fd":[],"*/":[84,5,16],"\u3089\u308c":[17,90,3,91,132,95,154,105,125,7,69,94,124,27,78,38,170,107],"\u4e2d\u9593":[69,144],"\u3064\u3076\u3084\u304d":114,"_suffix":27,segment:126,"\u6e80\u305f":[182,74,69,178],"*\"":[146,78,108,80],latin1:7,"\u5168\u89d2":[63,27,189,3],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":97,"\u3067\u3059\u306d":124,"\u5408\u81f4":[74,3],"mo\u30d5\u30a1\u30a4\u30eb":119,"(arugment":150,"*res":[113,56,110],"\u30ea\u30af\u30a8\u30b9\u30c8":[145,6,8,9,103,105,54,107,108,150,155,157,190,159,72,125,82,126,172,80,179,73,35,31,36,37,140],brew:[89,20],".gz":[164,129,151,24,14,89,152,188,119],"=r":7,"_initialized":[2,172],"_literal":80,"=g":131,"'localhost":[179,97],"=`":20,"=c":101,"=i":151,"=\\":[161,109,32,47],umask:80,terminal:184,"\u8d70\u3063":59,"\u5373\u5ea7":77,"\u30ea\u30ea\u30fc\u30b9":[],"\u5316\u5bfe":119,handle:[139,16],means:[40,108,110,122,136,9,103,148,139,106],"==":150,"=$":[188,151,119],"='":109,"\"ellip":168,"=\"":[108,4,24,161,32,47],db1:54,"=/":[175,188,97,177,151],db2:54,"=)":69,"/html":[27,119,54,20],">cache":4,"\u307b\u3068\u3093\u3069":[77,16],"_search":[],nise:80,"\u64cd\u4f5c":[],travis:[],"\u7cfb\u5ea7":[34,168],"/doc":151,"\u3002debian":177,"\u306b\u3064\u3044\u3066":[90,3,12,6,7,2,10,11,13,14,18,19,22,23,24,182,27,31,34,8,37,38,145,45,48,49,54,164,58,59,61,63,65,52,67,68,69,72,73,74,75,77,79,80,81,82,85,152,88,89,0,95,97,99,103,105,188,107,108,168,111,115,117,120,122,125,126,127,129,130,132,133,136,139,140,142,144,147,151,153,155,157,159,160,162,46,165,166,170,172,174,175,176,178,181,184,180,190],"\u8ffd\u8a18":[7,151],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":124,"_connected":[2,172],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":125,"/var":[141,188,97,9,61],configuration:[139,9,125],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[],"/status":[179,102,4,54,9],webclips:109,valgrind:177,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[181,94,154,125,27,150,65],etc:[139,9,54],tld:130,":\u5206":184,ci:[],ch:90,"\u533a\u5225":[45,178,108,143],allocates:40,ce:38,cd:[119,129,151,164,24,14,152,101,188,89],"\u7d99\u7d9a":[7,97,81],"\u591a\u69d8":132,zenigata:44,"\u66ff\u3048\u308b":3,allocated:40,"\u306b\u3044\u304f\u3064\u304b":125,"\u304a\u3055\u3089\u3044\u3057":124,"_itoh":27,"\u5f97\u3089\u308c":100,"_vesion":109,"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":7,"[plugin":80,adjuster:[],"@yappo":[125,80],"\u58ca\u308c":[154,7,126,61,77,27],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,"\u3068\u3064\u3044":74,"\u4fdd\u6301":[17,13,99,184,16],"\u518d\u5e30":[108,69,145,9,79,175,107],"\u5968\u6271\u3044":80,"\u5de6\u4e0a":[34,1],"\u6b20\u843d":125,tokenkytea:7,ultra:44,"\u307f\u305f\u3059":184,"0x":[13,45,112,181,172],"\u58ca\u3059":7,vm:[],"\u4e00\u62ec\u3057":113,"_versions":151,"\u305d\u308c\u304b\u3089":[108,85],"\u5ea7\u6a19\u5024":[],"\u8a71\u3057":88,"\u3002\"":[130,70,184,125,18,100,102,51,80],"\u3002#":[27,154,184],"\u3002-":[63,36,188,93],"\u3002.":119,"\u3002(":[164,141,69,151,167,97,58,170,19,63,78,53],"\u3002)":[63,78,170,167,108],"\u300cbilliard":144,"\u8ab2\u7a0b":125,"\u3002:":[3,144,97,48,9,77,105,54,108,11,150,151,153,167,58,18,155,157,166,119,49,70,165,124,73,126,36,27,176,177,169,139,65],"_valule":100,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":80,"\u982d\u6587":172,"\u518d\u5ea6":[69,19,80],"\"roonga":169,v1:69,v2:69,architectures:151,".group":182,php:7,"\u3002[":[7,77,3,125,80],"_lzo":[73,2,121],off:[9,80],"\u3002c":[87,132,2],"\u3002n":[70,90,133],"\u4e00\u77ed":132,command:[],ecmascript:[7,108,158,125,150],"_recover":[83,80],"\u81ea\u7531":[132,69,60,172],gettext:[119,20],"\u9806\u5e8f":[70,105,108,3],web:[1,181,151,153,108,48,18,188],"\u6b63\u898f\u5316":[7,133,32],"-values":77,"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":7,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":97,checking:[131,83],"|http":167,increases:122,five:3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[27,65,125,150,94],tvsec:82,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[],"\u5947\u6570":150,string2:111,"\u672c\u8cea":167,become:42,"*target":84,"\"rect":[7,168],"/source":[119,129,151,152,87,14,24,101,20,164,188,89],"#{l":148,"\u63db\u3048":[63,79,91,178],nneded:139,"\u30dc\u30bf\u30f3":[7,125,151,119],does:61,"\u53d6\u308a\u9664\u3044":113,"_group":113,"\u53d6\u308a\u9664\u304d":[109,69],"(debian":141,"_rc":[40,41,108,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],iwai:[7,112],"\u5206z":45,"_queries":[3,4,82,102,9,172],"\u3053\u306a\u3044":80,software:14,coverage:177,"\u7d42\u4e86\u30bf\u30b0":161,"\u7d42\u3048":151,"(get":179,"\u300cusers":184,"\u9805\u76ee":[1,108,99,82,126,141,54,65],"-node":129,"_remove":[],"_started":135,"\u89a7\u4e0b":177,"function":[40,42,12,122,16,135,131,172,28,160],"\u300cpopular":108,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[108,11,165,167,190,188],"-dd":[148,150],sigstop:125,"-point":45,be:[40,12,48,103,10,148,28,110,16,113,20,64,121,122,127,79,83,131,35,136,139,84],count:108,compute:[122,139],"\u4e00\u756a":[108,188,54,85],official:151,"\u3002iptables":102,"[info":178,problem:139,yuki:27,"\u3067\u3082\u3059\u3079\u3066":38,"int":[40,3,4,12,44,93,86,45,48,7,53,122,108,75,150,85,13,153,113,16,17,115,59,18,19,25,67,120,121,70,62,125,63,74,110,96,78,79,176,80,181,83,130,127,184,154,84],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":80,inv:167,"\u65b0\u8a9e":38,"\u69d8\u3005":[],"*proc":93,"\uff08not":158,redcloth:151,"%post":7,compared:32,"\u7570\u306a\u308b":[],variety:44,"/message":151,"/default":[7,141],details:[40,35,148,139],"'user":115,"\u4eba\u3068":124,"/sources":152,"_query":[],"+ff":[77,189],needed:[9,16],eof:97,"_hugetlb":27,"-threshold":[],searched:110,rep:167,"*string":84,saves:131,"/sysconfig":141,"\u3070\u308c\u308b":154,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"/travis":81,spec:[7,154,125,151],"\u30e9\u30a4\u30bb\u30f3\u30b9":7,"\u304b\u305a\u3072\u3053\u3055\u3093":7,"\u4e0b\u66f8\u304d":92,editrc:27,"\u3002tokendelimit":48,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":151,replication:12,"\u4f8b\u3068\u3068\u3082":75,".en":151,"\u932f\u8aa4":132,upload:151,msyql:85,"[macports":27,starttime:[3,4,82,102,9,172],"\u7c21\u5358":[],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":154,"\u69cb\u9020\u4f53":[120,53,80,16],"\u304c\u3072\u3068\u3064":175,"/branches":177,"\u65e5\u672c\u6e2c":75,incompatible:172,"\u9006\u6587\u66f8\u51fa":80,zunda:27,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[70,38],above:[131,103,48],"\u3002\u3056\u3063\u304f\u308a":85,"\u4e8c\u3064":[90,11,46,69,23,115,167,144,133,16,75,100,182,142],"\u578b\u3068\u3057\u3066":45,"\u30a8\u30f3\u30b3\u30fc\u30c9":[36,189,154],"\u30af\u30a8\u30ea\u30ed\u30b0":[7,27,18,176,48],obtained:40,items:108,"\u540c\u3058\u4f8b":78,"-admin":7,"\u30d0\u30c3\u30d5\u30a1":[41,121,93,125,7,126,113,78,79,84],highly:[122,28,12],"_table":[],"\u6587\u5b57\u7a2e":178,negative:[40,53],program:[131,64],kytea:[7,90,125,188],separated:106,"\u304b\u304b\u308b":[114,113,3],"\u9df2\u7530\u57fa":125,aware:40,"_register":[],"\u3064\u3065\u3044":184,"\u62bc\u3057":3,word:[7,108,181,150],work:148,"\u62bc\u3059":[3,119],"\u30a2\u30fc\u30ab\u30a4\u30d6":[101,151,119],"\u5316\u6642":27,"\u540c\u68b1":[7,154,80,119],indicates:148,"-conditional":27,"\u5bfe\u51e6":80,"\u30b9\u30ad\u30e3\u30f3":[161,47],provide:[131,12],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":151,length:40,recovers:[83,61],"\"apple":189,"if":[40,5,9,103,148,106,53,110,12,85,16,113,19,61,64,69,121,122,77,79,150,83,131,35,186,136,139],"-lines":[131,27],"\u306e\u3046\u3061":[95,181],"/security":139,"_plugins":[27,77],"\u306b\u5bfe\u3057\u7570":115,after:[131,139,110,20],"|with":[3,91,12,95,47,108,150,85,114,70,163,122,161,73,182,115,78,80,178,181,184,133,32,139],"\u76f4\u4e0b":27,lat:167,"_title":[167,78,3],".description":184,"*func":[53,16],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":154,"@naoina":[7,125],"\u30d9\u30fc\u30b7\u30c3\u30af":54,"\u306e\u3069\u3061\u3089\u304b":[108,96,181,150],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[],"\u5bfe\u8c61id":41,".conf":[165,141,9,139,77],japan:[170,102,130],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":175,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":80,"\"say":150,"/windows":[101,151],"\u4e0b\u9650":[63,120],then:[40,131,9],them:[139,84,12],"\u8f9e\u691c":[27,150,94],"_token":80,"break":61,they:[122,139,12,148],"\u5168\u3066":[108,150,45,114,113,9,158,78,119],"\u697d\u3057":[70,144],"\u56de\u6570":7,"\u3042\u304d\u3089":80,"-send":[131,64],"\u7a81\u7136":125,"\u5316\u65b9":[189,133],carlos:[59,127],serach:18,"/null":1,"_options":[125,150],logs:[142,122,23,131,148,105,178,64,65],"<endpoint":64,patsuffix:143,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":7,"+ y":45,"+c":97,"+a":181,network:172,"_directory":[2,172],".deb":151,"\u3068\u3059\u3079\u3066":[7,108],"-rsync":[],wgs:[44,75,130,13,184,45,34,74,110,102,27,168],"\u6210\u308a":[108,181,172],"\u90e8\u5206":[],"\u77ed\u3044":[184,154],"+ \"":7,"_tp":179,"\u77ed\u304f":[114,132],standard:45,"_to":[184,78,123],"_tf":[],"\u30eb\u30fc\u30eb":[154,108,90,80,54],hatake:[],"\u30eb\u30fc\u30d7":[7,154,80],created:[40,131,184],"++":[164,129,151,132,112,16,27,188,84,80],"+-":[84,9],creates:[40,139,84,186,148],"\"ni":176,"\"no":7,"\u6709\u7121":[13,161],"_failure":5,"\u30eb\u30fc\u30c8":27,"\u59a5\u5f53":94,"\u8aad\u307f\u8fbc\u3093":[68,172],"><":[84,4],">=":[125,150],">>":[125,150],"_next":[63,110,154,120,125],">.":[161,47],">\"":[108,109,161,125],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u3082\u3089\u3048\u308b":124,"\u30b5\u30dd\u30fc\u30c8":[92,1,90,4,94,45,141,7,9,77,147,51,188,54,11,150,151,13,112,14,114,115,63,178,65,68,167,124,125,27,78,175,80,81,181,130,132,154,32,187,189,38,102],"\u540c\u4e00":[],"\u898b\u306a\u3057":63,john:[170,143],"\u30b9\u30ab\u30e9\u30fc":85,"\u63a2\u7d22":132,tokenfilterstem:[],">n":4,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[113,79,83,121],"\u3069\u3061\u3089\u304b":[150,32,47,181],"\"unknown":123,keyid:151,target:[],">_":189,"\u3002value":[79,60],"\u57fa\u76e4":16,":byte":62,"\u30d6\u30fc\u30eb":[13,45],contents:40,latency:167,dbms:32,"\u5f8c\u8005":[74,189,175],",\\\"":58,"\u8ff0\u3079":3,"\u5177\u5408":108,indexbuf:121,"_distance":[],indexed:61,"_jis":[188,38],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[131,125,119],gzip:[],"\u5408\u308f\u305b":[7,121,150],gronnga:169,"\u3002host":172,"-strings":112,"\ufff0\"":38,"\u767a\u751f":[73,1,188,151,70,132,135,125,16,7,113,77,79,80,65],"\u8003\u3048":[108,3,181,130,132,124,54,150],"\u5270\u4f59":[],"(target":100,keywords:[122,84,12],"\u65e2\u5b9a":7,"_input":[135,2,150],"\u771f\u306a\u3089":150,"*section":121,rectangle:[],"-frequency":27,"\"items":157,"do":[136,167,80],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":154,"\u3082\u3057x":125,dd:[148,150,178],de:119,"\u53d6\u308a\u5f97\u308b":45,"\u8ab0\u304b":88,"[libedit":27,"\u8ab0\u304c":184,runs:64,"\u81ea\u4f53":[181,80],"\u8ab0\u3067":80,"\u5341\u4e00":[],"\u4e0b\u90e8":151,"_compress":121,depends:[122,28,42,12],"\"yyyy":150,"\u7d9a\u3051\u308b":38,"\u67d4\u8edf":[132,158,115],"\u5bfe\u8c61obj":41,"\u91cf\u6307":178,"\u3067\u3057\u304b":38,"\u53d9\u8ff0":77,"\u3002json":58,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,terms:[122,163,3,181,12,126,70,161,108,97,32,47,46,115,139,150],wo:38,"\u3044\u305a\u308c":[45,11,60],"\uff12\u3064":74,packages:[119,129,151,164,24,14,141,152,101,188,89],"_tables":[77,125,16],"\u69cb\u3044":[176,32,47,119],ill:144,"\u3082\u3046\u307e\u304f":188,"\u4e00\u4ef6":[],"\u6319\u304c\u3063":38,receiver:[131,64],requests:[131,35,148],com:[134,130],col:79,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[],"\u7f6e\u63db":[],calros:96,"\u30d1\u30fc\u30b5\u30fc":[181,178],"\u95b2\u89a7":102,")\u300d":97,snippet3:32,")\u3001":80,enginen:176,"_accepted":103,"'needle":69,"\u3082\u3057\u3053\u306e":165,"\u65b0\u305f":[93,113,69,83,121],applied:[139,42],"-secret":151,has:[40,42,151,12,186,113,110,103,148,139],gnu:[],"\u9650\u5b9a":178,zlib:[73,154,121,14,125,7,152,172,27,188,80],"_message":[135,78,178],"_only":[2,172],"\u7e4b\u3052":80,aio:125,"\u5165\u529b":[1,145,3,6,97,48,105,107,108,150,153,58,18,155,157,190,159,167,72,125,73,126,172,27,112,176,179,82,169,135,37],"_close":[40,69,120,86,16,17,63,27,79,84,80],"[solaris":7,cond:125,conf:165,"\u56fa\u5b9a\u9577":154,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":69,"\u9069\u3057":[114,132,65],"-dataset":[],"\u4e0d\u5177\u5408":[7,77,88,125,80],"\u6771\u4eac":[70,74,75,38,144],"-packages":151,"[warning":178,hana:44,"\u76ee\u7684":[188,90,23,125],"\u72b6\u614b":[164,82,129,154,3,151,126,70,132,14,97,16,7,152,179,124,77,176,80],"\u30b0\u30ed\u30fc\u30d0\u30eb":[7,19],client:[97,9,12],the:[],"_shutdowned":[2,172],"\u30de\u30c3\u30d4\u30f3\u30b0":165,"\u826f\u4e8c":80,solaris:[],"_score":[108,121,12,184,125,7,153,74,60,77,27,150],"\u8db3\u3057":150,repoforge:[7,129],thanks:184,"\u3068\u306a\u3063":125,adding:[35,20],"=sjis":188,"\uffef\"":38,"~ \"":[150,178],"\u7027\u5185":125,"\u7528\u3044\u308b":[44,3,13,132,99,74,172,79],"\u6307\u6a19":79,jekyll:151,"\u30ed\u30c3\u30af":[1,97,125,7,136,19,27,79,107],"\u307e\u3068\u3081\u308b":9,"_expr":[],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[188,135,11,167,191],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[],"\u307e\u3068\u3081\u3066":[13,132,151,130],"-token":[152,14,80],"\u3057\u304d\u308c":7,tokenbigramsplitsymbolalphadigit:[],comments:[],"_arg":2,tasuku:42,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":151,".sourceforge":[151,26],"(select":150,"_compile":84,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[],"\u8db3\u308a":[27,175],"\u30b5\u30fc\u30d3\u30b9":[7,132,125,80,81],substitution:115,"\u7a32\u7530":125,post:[],properties:148,obj:[41,79,83,93,126,56,84,53,118,121],"*ic":120,accepts:[131,127],"*ii":86,"\u6709\u7528":[3,94,95,54,135,9,77,80],"\"text":27,"\u5224\u5b9a":74,zxvf:151,"\u3068\u306a\u308a":[181,54,32,47,102],".h":[87,40],"**":[121,8,63,79,53,83],"float":[108,75,4,13,45,7],"\uff09\u3001":[94,144],"\u6700\u521d":[141,3,47,27,108,150,13,16,65,161,124,96,77,78,175,80,178,181,131,32,135,38],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[108,85],"*'":108,"_socket":[2,172],"\u5927\u6587":[108,178],"\u5b89\u5168":172,way:64,cdbs:27,"cpu\u30b3\u30a2":[],"_body":[70,73,91],"\u6027\u80fd":[],"\u6c7a\u307e\u308a":175,encoded:131,"true":[1,145,3,91,12,6,45,163,47,136,46,100,103,10,147,109,127,107,114,108,75,150,85,13,190,58,115,59,155,143,95,65,22,44,68,23,122,161,72,125,168,73,182,74,170,96,78,174,80,178,181,130,184,32,34,8,189],maximum:[35,12],"\u30e1\u30c3\u30bb\u30fc\u30b8":[184,11,80],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[],mte:42,"\u6587\u5b57":[],"\u7d44\u307f\u8fbc\u3080":[132,69,9],syscall:80,"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],score1:69,score2:69,distributions:151,"\u3054\u89a7\u304f":[3,177],physical:126,test:[3,151,13,184,167,102,78,177],"\u5c5e\u6027":[90,133,146,73,109,49,166,105],"\u305f\u3081\u3057":74,truncate:[],welcome:[184,108,181,150],update:[],"\u547d\u4ee4":[],"[gqtp":125,scorer:[],tajima:7,"\u7de9\u3084\u304b":77,masaharu:[7,112],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":27,"/debian":152,"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":172,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[],"<threshold":97,"\u901a\u77e5":151,"(ptr":154,"_denied":[2,172],"\u8a2d\u6a02":27,"\u5f53\u3066\u308b":13,entries:[108,181,161,47,157,139,150],"/http":[141,9],"\u72b6\u6cc1":[70,132,108,150,93],"\u3068\u3057\u3066":[],"{column":178,"\u4e0d\u6574\u5408":1,localhost:[179,4,151,131,167,97,9,103,27,54],"(database":165,"4gbyte":66,initializes:[40,5],initialized:[40,16],"\u3002cursor":63,"[munin":[7,27,125,80],"\u30c8\u30e2":44,shared:[19,121,83],supporting:9,"dat\u30ad\u30fc":125,"[deb":[7,27,125,80],"\u6e2c\u4f4d":132,"\u30b5\u30d6\u30bf\u30b9\u30af":151,"\u96c6\u5408":[71,85,7,113,158,178],appears:32,change:[7,9,54,20],"\u30ec\u30dd\u30fc\u30c8":188,liblzo:[152,14],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[70,108,158],"\u305d\u306e\u969b":151,usually:64,".spec":27,".exe":101,"\u305d\u306e\u307e\u307e":151,"\u6700\u5c0f":[164,108,14,129,152,96,141],marked:141,"-cutter":151,"'haystack":69,"\u7d71\u5408":[7,132,125],should:[40,35,127,20,16],httpd:[7,112,125,80,151],"\u6307\u6570":150,https:[],selects:110,"/copyright":80,"enter\u30ad\u30fc":125,"\u6d41\u91cf":54,"_sum":108,"_plugin":[40,27,146,80],cas:172,"\u884c\u308f":[179,44,108,167],nfkc:189,can:[40,119,106,83,12,122,35,10,32,16,148,103,19,61,20,139,127,48,9],clearlock:[],",\"http":13,"_stable":116,"_stamp":148,"-sphinx":20,"\u884c\u3063":[177,74,130,80,151],"\u5b89\u5fc3":124,"\u884c\u3046":[179,44,163,75,143,151,184,144,124,141,7,115,74,154,177,63,78,80,65],",'":[13,45],"\u884c\u3044":[179,44,69,3,151,70,184,144,97,115,113,63,78,79,167],",\"":[44,4,184,126,157,77,78,80],",.":151,mpaa:96,"_logical":77,"\u884c\u3048":[177,115,3,181,80],write:[108,142,136,20,76,112],"^commit":151,"\u8fd1\u508d":[],"??":108,"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":125,"\u5316\u6e08":[79,83],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":163,uint:[154,3,91,45,7,102,105,127,143,108,150,111,114,59,95,65,44,163,70,125,182,74,170,96,78,80,178,181,130,85,135,139,189],",_":[44,108,3,150,130,85,184,115,74,153],"\u5207\u308b":[9,80],",[":70,"\u5207\u3089":80,"\u8fd4\u3059\u304b":153,ghz:167,"\u5404\u56fd":151,"\u30b2\u30c3\u30c8":26,meerkat:27,",{":[167,4],"\u304b\u308f\u308a":[70,77,80,164],"\u5357\u534a":7,"\u82f1\u8a9e":[0,151,27,38,80,119],"=-":188,"\u5bfe\u8c61ctx":16,ieee:45,"_account":119,":ss":[148,150],"_tsv":[106,175],"\u30bd\u30d5\u30c8":175,"-libedit":154,"=(":151,"\u3002gdb":177,"\u78ba\u5b9a":153,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":80,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":188,"\u4f5c\u7528":7,non:61,"\u542b\u3081\u308b":[108,90,23,181,151,112,133,80,27,142,175,3],rake:151,"\"version":4,"\"ruby":85,"\"vector":125,alisa:115,now:[],"\u3086\u304d":143,"_lcp":113,january:131,"[normalizer":80,"\uff4d\uff59\uff53\uff51\uff4c":[161,47],"\u8aad\u307f\u8fbc\u3081\u308b":157,el:[129,38],domain:[],en:[153,90,38,176],ea:[148,90],ec:108,kana:[153,18,176,186,48],ex:90,year:148,"\u70b9\u6570":[],es:38,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":151,opened:[139,61,148],"\u9054\u3059\u308b":63,"\u518d\u69cb":27,increase:139,"\u3065\u3051":[],"/files":[151,20],shows:106,"\u5230\u9054":66,args:97,"\u5d8b\u7530":7,"-rroonga":17,care:122,"/pub":129,"\u7d50\u5408\u5f0f":[],arnaud:27,"[windows":[7,27,125,80,77],british:91,period:[],"\u3078\u306e":[13,188],"_block":[2,172],omitted:[136,4],variables:40,"\u305f\u3069\u308b":44,"_process":[2,172],message:[40,23,122,8,148,78,178],xt:[90,38],size:[],unlink:84,checked:151,silent:81,"\uff08=":108,bookmark:85,"_obj":[],"\uff08,":3,"\uff08-":[108,3],".git":[104,151,119],"\u30bd\u30b1\u30c3\u30c8":[73,145,6,72,7,126,8,155,157,159,190,105,37,82,140,107],"\u3044\u308c":[7,13,79,38,77],"\u3044\u308b":[],that:[40,108,110,121,12,136,122,32,7,131,113,9,103,148,139,106,84,53,19],kenichi:[27,154],localnames:157,"\u6a29\u8868":80,"=path":[],libevent:[188,152,14],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,"\u304by":125,x6:151,than:[12,85,122,48,148,139,28,178],"\u30d5\u30a9\u30fc\u30e0":[108,158,125,181],"*next":53,"\"\u4e8c":[],"[index":80,"/gat":[74,3,130],accesses:[139,121],"_basic":[9,54],"\u5404\u547d":167,browser:119,"\u3044\u304f":[],"(scope":182,"\u3044\u304d":[124,3,151],remained:[148,178],"\u3059\u308b\u304b":130,"\u3044\u3044":[124,26],"-zlib":[],"\u30b3\u30f3\u30d1\u30a4\u30eb":[112,125],"\u30b3\u30f3\u30d1\u30a4\u30e9":[27,80],"_circle":[],engin:[153,176],"\u591a\u5f69":132,"=none":[108,90,133,46],"\u3044\u3064":176,"\u3044\u3063":178,"*buffer":79,"\u3044\u307e":68,"\u9806\u6b21":[179,97,3,172],"|suggest":153,price:13,"\u5c0e\u5165":[77,11,177,80],"_section":[121,184,95,73,78,80],"\u79fb\u52d5":[151,87,7,101,190,27],"\u672a\u4f7f\u7528":172,"\u3068\u308a\u3068\u3093":[181,150],"-yyy":119,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[],"\u305f\u3069\u3063":184,"\u3057\u3044":[70,144],"\u3057\u304f":125,"\u975e\u4e92":[7,77,125,80],"\u65b0\u5bbf\u99c5":74,"\u3057\u304b":[108,181,13,54,9,178,150,78,119,38,80,65],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],oldvalue:121,"\u3057\u3066":[44,108,154,3,151,130,70,14,124,125,7,113,9,177,119],"\u6700\u5927":[1,142,94,97,7,54,108,150,17,62,66,67,23,165,167,125,117,96,27,80,154,32,172],"\u30bf\u30a4\u30c8\u30eb":[44,108,150,13,78,181],title:[44,3,130,12,136,13,125,122,102,182,151,78,28,80],only:[40,103,12,122,9,61,28,106],"\u3057\u307e":124,"-server":[],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":9,cannot:[],"\u5f8c\u8ff0":[63,182,69,151,178],"1\u6708":[13,184,45,108,150],"\u8a73\u7d30":[141,90,3,45,7,9,10,56,164,108,188,150,85,14,17,115,177,25,95,65,22,46,70,167,125,74,77,174,80,178,129,181,130,135,152,187,36,119],"\u7528\u5909":80,".label":108,bugfix:[],"/gqtp":[141,125],"\u62c5\u5f53\u8005":151,"\u8b70\u8ad6":0,"\u623b\u308a\u5024":[],"\u840e\u7e2e":124,"\u300cbob":184,"({":131,"\u4e21\u65b9":[108,184,181,85,132,114,94,150,38,176,143],"(scan":177,"\u8a18\u6cd5":[78,150],"\u70b9\u4ee5\u4e0b":13,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":125,"_mode":80,"\u5dee\u96c6\u5408":150,between:[],"[dd":178,"import":151,"\u5426\u304b":[142,23,96],"\u5e38\u306b":77,notice:[6,122,8,97,9],"{label":108,unlocks:40,"\u3057\u308c":[49,181,135,59,166,178,80,150],"\u3057\u308a":124,tokenbigrma:90,"\u3057\u3088":[41,69,13,114,125,16,58,75,19,27],"\u672a\u8a2d":7,article:78,"\u6a5f\u68b0":80,"\u3079\u30fc\u30b9":80,"\u8d77\u3053\u3063":59,"\u975e\u4f9d":129,"-groonga":[104,184,167,151],"\u5c55\u958b\u5f8c":108,learning:[],"\u8868\u8a18":[75,91,151,85,13,45,125,7,74,27,150,119],"\u8d70\u3089":59,"\u578b\u60c5":7,cares:122,"\u3002callback":69,"\u8868\u8a08":175,"'>":109,"';":97,"_multiple":12,ruby:[],"\u5438\u53ce":3,developing:163,these:[32,12,61],"\u4f55\u3089\u304b":45,"\u975eascii":38,"\u30b7\u30b0\u30ca\u30eb":[27,80],geodetic:45,"\u5f8c\u65b9\u4e00\u81f4":[],"\u4f7f\u7528\u4f8b":75,"/packages":151,shorttext:[3,91,12,94,45,97,46,47,48,100,102,105,110,127,143,122,108,75,150,85,13,153,114,115,59,18,157,63,95,65,44,163,70,161,167,73,182,74,170,96,27,78,109,176,80,178,181,130,184,154,32,135,136,139,189],"\u3002\u3002":92,"\u3002\u300c":[44,108,90,181,133,46,150,78,178,38,80,65],"\u3002\u300d":70,"\u5fc5\u8981":[],canceled:103,", {":[9,54],"\u5c65\u6b74":151,"\u8f9e\u66f8":[164,1,70,154,125,7,38,80],develop:[163,11],"-dir":167,"\u6fc1\u70b9":189,document:[150,12,122,161,154,97,32,47,151,36],"\u3002\u3044":69,favorited:184,"\u5b89\u5b9a":[132,11,112,126],"_space":[2,172],initialization:131,".po\u30d5\u30a1\u30a4\u30eb":[],", \"":[78,161,85],favorites:184,"\u3042\u306a\u305f":[77,151,26,178],eito:125,"\u3002\u3059":[114,167],theater:91,"\u8d77\u3053\u308a":91,"\u5171\u901a\u63a5":94,"\u3059\u3079\u3066":[90,3,95,46,7,9,188,108,11,150,85,59,113,163,167,96,27,80,178,130,154,38],"[output":112,"\u3002ecmascript":108,"\u6bd4\u3079":[114,80],appveyor:80,touch:139,"\u30ab\u30e9\u30e0":[],speed:169,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":82,"\u3002api":[161,32,47,158],"\u4f4e\u304f":[70,38],"_filename":2,"_extract":42,"\u4f4e\u3044":[70,108],sharding:[77,142,23],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":163,real:[139,32],"\u542b\u3081":[108,175,181,151,96],"\u542b\u3080":[179,73,108,69,23,181,85,184,134,144,125,7,153,3,78,80,150],"\u8a00\u3046":[176,85],"\u4e38\u62ec":3,"\u9234\u6728":7,read:[32,172],"\u8a00\u3048":[70,181],"\u5c55\u958b\u7528":27,amd:151,"\u542b\u3093":[108,69,181,13,184,32,135,169,18,38,80,150],"_hook":[],using:[106,78,42,48],"\u6df7\u5728":36,"=site":102,output:[],"\u5c5e\u3059\u308b":[63,105,45,79,121],unsplit:69,"\u30c4\u30ea\u30fc":80,"\u30b7\u30b9\u30c6\u30e0":[],"\u5de6\u53f3":3,"id\u9806":63,"\u30ec\u30b9\u30dd\u30f3\u30b9":[17,2,125,7,54,27,80,172],moero:44,unlocked:40,"\u30de\u30b7\u30f3":97,forks:97,"\u542b\u307f":[63,135],"\u542b\u307e":[3,95,144,48,7,100,10,147,105,54,108,150,151,58,115,65,22,68,69,23,96,174,175,80,129,181,184,32,135,38],"\u5206\u3051":[],tomoatsu:154,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":9,".posted":184,"-static":27,rdbms:132,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":167,central:184,backup:[83,157],processor:[152,129,14,164],"/admin":[27,97],"\u30ea\u30af\u30a8\u30b9\u30c8id":[],"\u30aa\u30d5\u30bb\u30c3\u30c8":[7,153,108],"\u53f3\u4e0b":[34,1],"\u53f3\u4e0a":1,"=title":102,operator:110,your:[20,136,139,27,81,119],"_example":176,log:[],prepare:9,aren:139,assumed:53,rpmforge:129,rlimit:[148,125],"\u77e5\u8b58":167,cflags:24,"\u306b\u3064\u3076\u3084\u3051":124,"d\u30ad\u30fc":3,"/query":[22,174,10],",\"links":13,"~${":178,"default":[],"\u30b3\u30b9\u30c8":[114,113],"[benchmark":80,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":125,"\u30d5\u30a1\u30a4\u30eb":[],describe:40,"&request":103,"\u5bfe\u5fdc":[],"\u95a2\u4fc2":[],"\u56db\u89d2\u5f62":92,storage:[161,47],"\u691c\u67fb":79,"_code":[40,135,148],valid:48,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[102,54],you:[40,12,97,48,9,103,106,28,16,61,20,64,119,121,122,127,83,131,35,186,136,139,84],"\u4f4f\u3093":184,string1:111,massachusetts:184,suited:32,"[fedora":[7,80],"<ip":[167,97],"\u4e94\u5165":27,building:106,bulk:84,"\u5b9a\u7fa9":[145,3,12,93,45,97,47,7,100,105,53,108,75,150,114,115,113,60,155,69,23,121,122,62,161,72,73,182,170,172,96,77,78,175,80,178,181,32,109],"\u8a66\u3057":124,"\u8a66\u3059":[38,191],"\u3002\u00d7":124,cores:131,"\u524d\u8ff0":[70,189,9,65],"\u5343\u4e07":[],month:[44,148],"\u308f\u304b\u3061":144,"\u3002name":[113,121,16],"4byte":172,"-_":[122,108,12],"\u57fa\u6570":150,longitudexlatitude:125,"-e":97,"-d":[131,172,97,9,51,64,102],"-g":101,"\u4e16\u4ee3":11,"-a":[7,97,181],"_rk":63,"-c":[164,129,97,172],"-m":179,"-l":[131,148,97,64],"-n":[131,27,3,97],"-i":[167,97],"-h":[97,9,54],"-j":188,"-t":[131,97],"_bulk":[84,16],"-p":[179,131,97,167,102,172],"-s":[131,97,64,172],"-r":[131,64],"-x":[125,151],"-z":131,"\u73fe\u983b":80,"\u524a\u6e1b":77,very:[135,108,181,12,161,32,47,58,150],"\u4ed5\u7d44\u307f":[7,9],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[27,54],"\u76f4\u5f8c":16,":\"":[84,3,178],"_github":119,"\u6b8a\u547d":167,normalizers:49,"\u9df2\u7530":125,"-\"":46,"--":[40,41,1,90,91,12,93,97,46,47,48,7,100,101,9,120,56,53,122,108,109,150,151,85,113,16,17,115,116,19,63,161,118,44,163,23,121,70,62,123,167,125,25,74,110,27,79,175,80,178,83,130,184,154,32,146,36,84],"-(":[150,151],"-+":9,atsushi:[],"\u3057\u307e\u3057\u3087":[38,23,91,85],"->":[77,154],"/work":151,"/alice":38,"\u518d\u73fe":[70,124,38,125,158],"-search":[38,80],"\u975e\u5206":108,"\u53ef\u8aad":80,"[admin":[7,27,125],"@s":154,naoina:[7,125],"-jinja":151,"\u6e2c\u5730":[75,13,45,34,74,168],learned:64,"@~":178,"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":178,"\u9ad8\u3044":[108,3,132,126,9,153,38],"/ja":[17,151,119],"\u304b\u304b\u3063":[135,108],"\u306b\u95a2\u3059\u308b":[],"\u30aa\u30b9\u30b9\u30e1":[164,129,14,152,101,137,38,178],"@'":3,"_dist":7,"\u30ec\u30b3\u30fc\u30c9r":69,daemonize:131,"\u308f\u304b\u308b":80,"\u308f\u304b\u308a":[108,154,38,130,80],"\u308f\u304b\u308c":108,"\u3068\u305d\u306e":11,"\u8ad6\u7406":[],hoge:111,"\u30de\u30c3\u30c1":[],"9\u3064":3,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":7,normallexicon:189,chunks:165,"=groo":131,takes:103,contains:[122,12],rect:75,"\u6c7a\u307e\u308b":3,"_xxx":108,"\u5c0f\u3055":77,"@yito":[7,125],fulltext:[161,90,32,47],".comment":[184,78],"-tokenizer":[164,129,14,125,7,152],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":[],"\u30af\u30ea\u30c3\u30af":108,"\u5fa9\u53f7":151,site:[44,3,130,13,136,74,102],"\u3002eclipse":119,"[load":[7,80],"/homebrew":151,"-databases":[3,131,95,59,102,105,172],nine:3,pushes:16,"\u9664\u53bb":[46,154,163,109,125],exclude:[142,125,7,96,23,80],string:[],"_batch":80,"-address":[7,27,97,77],snippet:[],"\u3042\u3089\u304b\u3058\u3081":[164,45,151],"[table":125,"_likes":[135,139,108,181,150],tried:184,"[dat":[7,112],derived:64,"\u7686\u5ddd":80,"\u901f\u304f":[44,188,65],fa:90,tries:19,"\u3002'":79,fd:131,"\u6642\u9593":[],"\u4e0b\u3055\u3044":[164,129,90,151,95,14,125,7,152,113,187,101,137],"_avg":108,"\u56fd\u3054":130,documentation:[139,81,20],"\u30b9\u30c8\u30ea\u30fc\u30e0":80,"\u4e00\u5bfe":13,narwhal:27,uninstall:7,"\u5909\u63db":[2,150,94,45,9,184,63,27,189],help:[27,177,119],"\u592b\u5fc5":143,"-wno":27,"\u5dee\u3057":151,"/lzo":[27,154,125],systemd:7,"\u306f\u3044\u304f\u3064\u304b":[66,135,19,54,181],"_rename":[],"\u30ab\u30fc\u30bd\u30eb":[63,27,154,120],shimada:154,systems:32,"\u30ad\u30fc\u30dc\u30fc\u30c9":108,"\u57fa\u672c":[],"\u76f8\u5bfe\u30d1\u30b9":80,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[97,84,125,181],"\u4e09\u8c37\u3055\u3093":80,"-test":[177,151],"\u5e03\u6559":88,"\u30ad\u30fc\u30ef\u30fc\u30c9":[],"\u597d\u304d":119,resizes:40,yito:[7,125],"/plain":77,"\u518d\u3073":80,"\u9032\u3093":132,"\u30b5\u30a4\u30ba":[41,94,7,101,77,164,13,14,113,63,65,66,121,165,125,126,172,27,79,80,129,132,32,152,137],"_vprintf":80,"=grooon":131,"\"sequence":[153,18,176,48],"\u9032\u3081":[],todo:[],event:[153,186,64,18,48,176],"_position":[3,91,12,95,47,108,150,115,114,70,163,121,122,161,73,182,78,178,181,184,32,139],"\u52a0\u3048\u308b":[73,27],gemfile:7,trusty:[14,151,80],since:[148,127,141,10],"\u300cgrand":184,issue:0,"/mailarchive":151,"\u9045\u304f":[178,168,181,130,150],"\u9ad8\u304f":[70,77,85],"\u7acb\u3064\u304b":38,"\u9045\u3044":[94,75],"\u3002mysql":[152,129,14,164],pub:151,"\u3042\u308f\u305b\u308b":7,base:[40,9,151],put:[122,181],loads:[9,64],bash:[77,188],"\u5931\u52b9":[9,117],"\u30b5\u30a4\u30c8":[13,44,108,151,158],"\u5024\u3068":[13,108,181],encoding:[40,123,97,4],"/data":81,"\u30b9\u30b3\u30fc\u30d7":178,"\u8ad6\u7406\u548c":[],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[141,187],"\u65e5\u3054\u3068":23,"\u52a0\u308f\u308b":124,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":84,"\u3002_":[60,3],"\u5024\u304b":75,":value":[108,181],"\u53d7\u3051\u308b":[141,80],zeromq:188,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,schema:186,"\u3002make":167,"\u3002null":[113,83,16],recursively:136,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":27,translation:119,"\u5024\u3054":130,jquery:[154,80],grep:[152,129,14,164],roonga:[181,150],"\u3002xml":135,utopic:[14,151],store:[110,84,16],str:[40,84],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":151,"\u5206\u3051\u308b":[13,151],"\u547c\u51fa":[41,113,79,121],"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[80,54],"null":[],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,lib:[22,154,174,125,10],"_incr":79,"\u79d2\u5358":[13,45],"\u5024\u3068\u3057\u3066":[165,75,97,184],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":9,quote:150,"\u4e00\u81f4\u7528":143,tokenbigramsplitsymbol:[],".repoforge":129,"'hay":69,"/dev":151,clear:[136,79,80],"\uff08and":158,"\u6697\u53f7":151,"\u4ecb\u3057":[132,102],clean:177,"-pip":20,"\u4fbf\u5229":[108,90,23,121,85,13,132,133,135,187,178,158,188,176,181],"\u4e8c\u70b9\u9593":[],"\u62e1\u5f35\u578b":13,"\u59cb\u3081":119,parameters:[131,136,12,139],"\u5225\u3005":[108,130],"<level":64,"\u6cbf\u3046":80,"\u4eca\u5f8c":[147,27,90,190,178],httprewritemodule:9,".nginx":9,"*index":[110,120],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[97,125,80],boost:176,"\u52a0\u7b97":[],"\u68ee\u7530":44,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"\u82b1\u5b50":44,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":37,"(argument":150,locale:119,"_enough":[2,172],":groonga":[108,14,181,151],"_would":[2,172],"\u5f93\u6765":80,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":69,"_probability":[27,153],"\u7d39\u4ecb":[184,88,108,80,151],"\u4e00\u5ea6":[22,114,130,7,19,10,27,78,189,175,80,9],"\u5909\u6570":[40,108,150,151,24,112,125,146,7,177,27,77,175,53,80],"-level":[97,64,80],"-working":7,"|persistent":[105,59,95],"\u306f\u3061\u3087\u3046":150,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[162,158,81],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":17,delimit:125,oneiric:[27,125],geopoint:[],"\u5f71\u97ff":[7,77,125,80,151],experimental:61,"\u767a\u63ee":132,jeff:143,"\u306f\u307b\u3068\u3093\u3069":108,"\u4e00\u5f0f":79,header:[],linux:[],"\u4e0d\u80fd":167,tokenbigramignoreblanksplitsymbol:[],"\u518d\u767a":80,"\"web":[18,48],"\u6b62\u3081":80,"\u306e\u3069\u308c":[131,176],"\u4e8b\u67c4":124,stamp:148,describes:[135,20],empty:77,"\u3053\u306a\u308c":23,"else":77,"/db":[141,61,153,9,157,64,178],"/dd":150,"\u56de\u7279":167,"\u7a3c\u52d5":82,"\u6a29\u9650":[188,102,125],"\u30a8\u30b9\u30b1\u30fc\u30d7":[],"\u6307\u793a":[93,3,102,176],"while":136,"\u505c\u6b62":[11,97,125,59,77,140],"_zlib":[73,2,121],malloc:80,"!(n":150,reads:64,ready:20,"\u898b\u3064\u3051":[1,124,108,7,38,176],fedora:[],dest:[179,113,97],"_keys":[108,113],"geopoint\u9593":27,"-jp":[38,125],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[188,151],composition:189,used:[83,12,131,35,97,16,136,117,184,148,5,106,127,64],temporary:83,uses:[83,12,122,148,139,28,106,64],user:[44,150,182,131,35,167,32,47,115,9,103,96,139,53],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[163,90,181,130,133,46,108,97,32,125,7,189,139,77,155,188,176,80,65],database:[],"-filter":[108,143,85,184,14,32,47,7,152,115,182,27,178,160,80,150],"\u30ef\u30a4\u30c9":27,"\u51fa\u529b":[],clears:121,"\u9806\u756a":[120,181,70,97,63,3],"\u30b0\u30e9\u30d5":132,"_path":[],"\u30d0\u30a4\u30b0\u30e9\u30e0":[70,38],"\u4e8c\u756a\u76ee":150,"\u8fd1\u4f3c":[7,27,75,168],"\u56de\u6307\u5b9a":181,"\"tritonn":108,"\u307e\u3057":[7,9,27,108,75,150,151,65,18,119,44,70,124,125,77,80,178,181,130,184,189,38],"\"uptime":4,"-gram":[90,3,150,70,132,144],"\u3064\u3051\u308b":[108,124,143,80,85],"...":[41,4,5,93,86,7,9,103,105,56,53,114,108,110,150,153,113,16,17,116,19,157,25,178,161,118,120,121,62,123,167,125,63,27,79,80,181,83,126,131,184,57,182,36,84],"\u9759\u7684":[],nginx:[],"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":172,"'..":125,"\uff09\u307e\u305f":[90,133,181,150],popular:108,"\u518d\u751f":9,"\u4f5c\u696d":[],"\u5f37\u529b":178,"\u30c7\u30d5\u30a9\u30eb\u30c8":[1,90,3,4,45,144,97,7,9,27,188,54,114,108,11,150,85,13,153,16,58,115,116,155,19,25,65,46,69,70,123,167,125,190,75,172,77,168,112,80,179,181,130,154],"\u5927\u304d\u306a":[54,65],some:[148,35,186,5,139],"\u96a3\u63a5":[132,181],"~number":150,"\u5927\u304d\u304f":[13,154,11,157,168],"\u5927\u304d\u3044":[108,69,181,94,27,38,80],"\u3061\u3083\u3093":44,slash:150,"\u30af\u30a8\u30ea\u30fc":[],"\u5927\u304d\u3055":94,".sh":[7,119,177,151,81],run:[],"\u4ed8\u304d":[],processing:148,"\u81ea\u5df1":184,"\u4ed8\u3044":189,"\u5f37\u5236":[7,77,1,79,80],"\u898f\u683c":63,"\u4ed8\u3051":[3,13,161,47,7,170,172,96,78,54],"\u30ab\u30a6\u30f3\u30c8":[184,23,125],"\"mori":157,"\u4f3c\u305f":189,"_read":2,ids:[110,85],"\u5916\u90e8":134,"\u5185\u5bb9":[41,141,3,93,95,48,7,102,105,108,150,151,13,63,119,167,124,78,176,80,181,179,83,184,32,135,139],idf:80,"\"serach":18,"-separated":77,block:13,libzmq:[152,14],"\u3067\u3069\u3053":2,"\u30ad\u30e3\u30c3\u30b7\u30e5":[],".column":[125,80],".(":151,".)":[150,12,125,103,139,148],".,":100,".-":119,"..":[40,3,12,95,97,7,100,9,103,54,108,150,85,153,58,115,157,119,122,125,126,178,181,35,36,65],"./":[188,119],"\u5316\u6f0f\u308c":7,"\u3067\u3082\u3063\u3068\u3082":31,".\"":[44,108,3,91,12,13,161,32,47,114,115,102,38,150],".$":108,"\u5909\u66f4":[],".'":[7,73,125],".:":[131,64],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":184,patprefix:143,"\u652f\u63f4":169,"\u30da\u30fc\u30b9\u30c8":7,"[groonga":[7,27,151,80,77],pangolin:[7,14],registered:[40,32,10],tokenbigramignoreblanksplitalpha:38,properly:[],".]":[150,85,153,126,103,105],newer:[],"._":[108,181,130,13,125,79,80,150],"\u3002\u30bf\u30b0":[44,108,47,85],info:[6,97,122,8,9,178],".i":129,utf:[42,4,131,123,154,97,125,7,188,38,150],".n":[139,108,150,83,181],".o":44,munin:[164,1,14,129,7,152,27,188],"\u306b\u5bfe\u3057":[1,3,91,93,144,7,10,127,108,150,151,85,153,113,22,44,69,125,73,182,74,78,79,80,179,82,181,130,132,36,38],".c":[108,42],".d":[165,139,152],"_max":[67,108,2,120,17,116,172],".x":129,windows:[],".}":[126,150,85],"\u66ff\u3048":[],".t":38,"\u6b63\u898f":[],"\u5099\u8003":125,doesn:[122,139,103,9,12],"\u3002gnr":158,"\u5727\u7e2e":[],"\u306b\u3068\u3063":[77,124],"_columns":[],"\u958b\u3044":[189,154,125,27,37,107],"_float":[77,62],"\u958b\u304f":[7,17,189,27],"\u958b\u304d":[17,83],"\u958b\u3053":83,application:[9,54],"\u958b\u3051":7,"'\u3002":97,"\u56db\u3064":144,sigcont:125,"\u6642\u4ee5\u5916":154,"\u843d\u3061\u308b":[27,154,125],"\u767a\u884c":172,draw:44,": n":179,"_len":[7,84,121],"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[],"(title":[125,12,111],"\u306a\u304c\u308b":7,"\u4e00\u5de5":143,required:[131,9,54],"\"suggest":169,"\u5f37\u5316":[27,154,80],requires:[61,12],kawaji:7,"_pat":[],gt:[161,47],"\u30d6\u30e9\u30b8\u30eb":75,"\u4e00\u5207":77,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":108,gb:[165,4],ga:[90,167,189],go:114,"\u30dc\u30c7\u30a3":[22,65,172,174,10],gi:90,"\u500b\u6240":80,".ssssss":148,nippon:176,"_unknown":2,"\u300cgroonga":[108,80,158],"po\u30d5\u30a1\u30a4\u30eb":119,"\u9632\u3050":150,"\u4e0d\u8db3":[164,129,14,152,101,137,80],"\u9632\u304e":125,"\u304a\u3053":[13,132],"-aki":80,exits:61,"_calc":[],mercurial:151,".mo\u30d5\u30a1\u30a4\u30eb":119,"/bin":188,"\u5341\u5206":[70,41,165],"/sbin":89,"\u8ca0\u6570":[7,19],download:[129,151],onigmo:[77,80,178],"-known":32,"/introduction":[3,102,172],opaque:172,".tsv":[175,4],"\u542b\u307e\u308c":[22,108,132,144,32,125,135,96,10,174,65],"\u983b\u7e41":[113,188],"\u4fdd\u5b58":[],"\u7b49\u5024":154,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[90,80],"\u578b\u7528":84,"-libstemmer":80,"\u62e1\u5f35\u5b50":[22,4,154,167,10,174],"- \"":80,"\u3002max":63,accessor:[113,79],".weight":125,"(table":80,blogroonga:[],"\u300d\uff08":[108,144,157],"_child":[2,172],"\u306e\u3042\u3068":7,"\u5177\u4f53":[70,78,130],"\u8fd1\u304f":[132,150,92],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[162,132,150,86],"\u540c\u3058\u578b":85,"\u898b\u3064\u304b\u3089":113,"\u898b\u3064\u304b\u308a":[108,38],"\u898b\u3064\u304b\u308b":7,"\u898b\u3064\u304b\u308c":124,"\u8d85\u3048":[70,125],win:101,"\u5171\u901a":[142,150,94,45,124,23,27,78],"boolean":42,"\u7d5e\u308a\u8fbc\u3080":[169,108,80],"\u3092\u304a\u3053":184,"\u624b\u9806":[],"\u3002\u30d0\u30b0":0,"\u7d5e\u308a\u8fbc\u3093":[132,125],"_no":[],"\u81ea\u5206":[23,124,167,9,137,119],milliseconds:131,soundkitchen:[7,27],cosmo:[125,80],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[165,108,85],started:[135,148,108,181,150],"\u5f15\u304d\u8d77\u3053\u3059":[7,125],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":177,"\u5371\u967a":[59,151,54],"\u53d7\u3051\u4ed8\u3051":[7,154,150],mitsuhiro:154,"\u7de8\u96c6":[],links:[13,102,130],sudo:[164,129,151,24,165,14,141,7,152,102,20,139,188,177,89],">max":4,objname:[37,107],"\u30b7\u30e3\u30fc\u30d7":65,tokendelimit:[],"\u6df1\u523b":[7,70,80],"_repair":112,"\u512a\u5148":[132,167,176],"*valuebuf":41,tokenregexp:[],"\"sphere":168,"\u9577\u4ee5\u4e0a":[113,79],spelling:91,".entries":139,"\u7d5e\u308a\u8fbc\u307f":[132,3],"\u66f8\u5f0f":[],rakutan:78,"\u81ea\u52d5":[22,44,3,121,151,94,181,167,150,7,113,60,9,10,143,27,174,80,119],"\u898b\u3064\u304b\u3063":[169,108,38],"_characters":84,"\u4e00\u500b":69,"+ff0":77,"\u30c7\u30d5\u30e9\u30b0":27,"!\"":[44,108,90,3,181,12,13,184,114,7,9,135,78,150,38,54,102],"-mysql":[164,129,14,133,152,189],"\u88dc\u8db3":9,geoppoint:110,send:103,"_match":[],auto:153,"\u629c\u304d\u51fa\u3059":132,"_seek":[2,172],takayuki:27,"\u306b\u304f\u308b":70,"\u5f15\u8a9e":3,"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":124,"'query":7,"\u65e2\u5b58":[141,3,83,151,13,132,167,7,113,187,172,61,190,80],chunk:[126,139],inverted:32,special:108,"\u3050\u308b\u3093":[44,181,150],"-match":[],"\u306b\u304f\u3044":132,may:[121,12,122,61,136,103,139,28,83],"_default":[12,123,7,116,25,54],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[27,125],"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":119,"_script":147,"_proxy":9,"\"\u5f37":38,"\u307f\u3066":74,deprecated:[108,11],times:[19,103],"-localstatedir":[],"\u307f\u304c":69,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,20],"_proc":[],"\u8aa4\u5dee":[27,75,168],largetext:94,"<max":97,unsupported:172,improving:139,"\u305e\u308c":[108,69,120,150,151,48],"\u5185\u8fd1\u304f":150,"`grn":[],management:[83,32,81],"\u305d\u3053":[13,70,151],mkdir:157,"\u6700\u4e2d":132,"\u52d5\u5c0f":45,"\u304a\u304b\u3057\u304f":154,"_bad":2,"-doc":112,"\u306f\u3058\u3081":[],configure:[],"_utf":[63,123],travi:125,lists:80,".roonga":[181,150],"_vector":[44,108,121,85,13,184,95,125,16,73,182,170,79,84,80],"*min":63,updating:19,neologism:38,"_recv":80,"-log":[],arc:90,"_expander":[],"\u306a\u304a\u3059":80,"\u8a72\u5f53":[121,161,32,47,17,113,100,96,63,78,79,80],"\u306a\u304a\u3057":80,unchanged:40,msec:19,"\u56fd\u969b\u5316":[],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":151,variable:40,"\u4fee\u6b63\u4e2d":18,"\u30de\u30a4\u30af\u30ed":[13,184,45,150],need:[12,122,131,103,20,139,28,106,84,127],"\u3068\u307f":[36,108,125,181],"\u3002sql":108,nsis:151,"\u6f14\u7b97":[150,154,125,7,113,158,188,80],able:[122,28,12],"-db":112,"\u3092\u308a":9,"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":188,"\u3002post":54,"\u7570\u306a\u3063":[63,77],"_lt":63,url:[151,102,157,36,27,80],uri:[36,9],"\u6982\u5ff5":11,"_strerror":80,"\u57fa\u6e96":[13,132,3,151],"\u672b\u6c38":77,"_temporarily":[2,172],"\u5fc5\u9808":[],"\u3084\u3089":151,"\u3084\u3081":[27,125,80,77],"\u3002\u2193":97,ssssss:148,"\u53cb\u4eba":44,"\u6e2c\u5b9a":167,"\u624b\u9593":124,based:[141,110,12,122,161,32,47,183,103],launchpad:[14,151,80],"\u3068\u3066":[108,150,132,94,176,54,181],"\u65e5\u6642":[],"\u4e0d\u6b63\u78ba":[7,82],"\\groonga":101,"\u5358\u306b":[68,125],"\u4e0d\u8981":[132,125,7,77,38,80],sha:151,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":187,"\u79d2\u3088\u308a":146,processed:148,"\u7121\u3057":178,"\u3050\u308b":[158,181,150],"_parse":[123,84],"_setpshared":125,kawada:80,"\u7a7a\u6587":[45,181,80],computed:40,"\\[(":178,computes:12,latin:[7,188,97],"\u63a5\u7d9a\u5148":179,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":184,".list":152,"2\u3064\u3081":[78,181,54],"|ga":108,"\u975e\u5e38":[7,54,178],"_word":[163,46,80],"\u7ba1\u7406":[],wibowo:125,written:[127,20],ken:44,"\u3084\u304c":11,importance:122,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":7,"\u3053\u308c\u3089":[3,4,94,48,7,9,10,188,54,164,108,75,150,85,14,70,60,158,22,44,24,125,169,174,178,129,181,130,184,133,152,36,88,189],key:[],"\u3084\u3057":108,limits:[139,12],admin:[154,80],"\u3084\u307e":80,"\u682a\u5f0f":80,"\u96e3\u3057\u3044":132,jersey:184,"\u304a\u3089":151,"\u4eca\u56de":[7,3,32,150],"\u4f5c\u6210":[],"_add":[93,113,84],"\u30af\u30ea\u30a2":[7,27,79],bigram:[],quit:[],"\u91cd\u8907":[113,80],"\u30b9\u30ab\u30e9":121,quiz:44,"\u547d\u540d":7,compatibility:[127,189],"\u306b\u3088\u3063":[145,3,6,144,97,8,105,107,108,11,85,13,113,16,59,155,157,158,190,159,44,69,23,134,72,125,82,126,172,79,179,73,132,36,37,140],"\u6b21\u671f":151,username:[44,101],"\u65e5\u672c":[181,151,45,34,74,168,38,176,80,150],corresponding:79,both:122,"\u4ef6\u542b":184,tweets:114,"\u7a2e\u985e":[],"_binary":7,"\u4ee3\u308a":[7,75,181],glossary:81,"\u3076\u3093":124,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[108,90,182,13,112,115,101,9,27,175,80,65],demo:44,"\u3060\u304b\u3089":108,"/_":151,"\u76f4\u524d":93,"\u9818\u57df":[188,113,7,74,79,80],"/o":65,"_system":[27,2,172],"\u91cd\u8981":[114,108,90,151,85,177,132,31,16,17,124,9,188,99,38,54,65],"\u614e\u91cd":177,"/f":151,"/d":[80,9,54,178],"/c":[87,132],"\u91cd\u8996":[70,114],"-essential":[152,14],"/x":54,"-learner":[],"\u8aa4\u5b57":[7,27,154,175,125],crch:90,"(mroonga":175,http:[],"\u306b\u3088\u308a":[3,143,45,7,9,51,54,108,75,151,13,66,70,125,126,172,77,78,80,132,38,102],"_ito":27,frequently:12,"\u305f\u3070\u304b\u308a":114,"/.":27,"\u540d\u4e00":[],"/(":151,"/'":80,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":7,"/$":119,well:32,"/\"":[44,3,130,85,13,74,102,157,38],"/?":131,"/;":9,"\u3042\u304d":143,accurate:32,"\u3042\u304f":17,sources:[95,20],"\u3042\u3063":[164,58,108,11,23,121,151,44,153,167,125,7,113,60,178,150,79,54,119],"-ruby":[7,151],"/kytea":90,"\u3042\u3068":[151,119],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":172,"\u30fb\u5186":132,"\u6790\u7cfb":150,"\u756a\u53f7":[179,141,121,167,97,125,54,60,102,178,80,172],"_mask":79,"\uff08or":158,".jp":[108,42,151,26,157],pikonyan:44,immediately:103,".score":127,"\u78ba\u4fdd":[41,165,84,16],"\u6587\u5b57\u6570":[32,150],"(\u300c":151,"/key":79,"\u4e0b\u8a18":[11,82,126,59,69,63],"-plugins":[],library:106,"\u3002optarg":83,home:[188,38,151],"'config":97,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":7,"\u5411\u3051":[],"_permission":2,"2\u6708":23,"\u304f\u308c\u308b":[87,132,119],nihon:176,"\u5411\u3044":[135,94,108,80],"\u3093\u304c":[181,150],"_number":[135,51,102,172],"\u3057\u3064\u3064":177,"\u3042\u308c":[114,150,151,70,167,17,100,96,65],"\u3042\u308a":[],"\u3042\u308b":[],offset:[],"\u304b\u3051\u308b":[124,9],"\u9055\u3063":176,".hash":184,"-source":151,"\u6f0f\u308c":[7,132,91,151,158],"\u306a\u3084\u308a\u304b\u305f":91,compatible:9,"\u9055\u3044":[108,75,3,181,13,74,78,178,38,54,65],"\u9055\u3046":154,"\u500b\u6570":[7,121],"<log":97,"_nhooks":93,additional:125,"_nsubrecs":[108,130,60,121,80],museum:184,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[],"\u30ed\u30b4":7,"\u30ed\u30b0":[],"\u5c55\u958b":[],"\u7279\u6b8a":[],"\u3059\u3053\u308c\u3089":108,hw:89,"\ufffetext":90,hh:[148,150],"\u540c\u3058\u5024":[3,9],ho:38,ear:90,"/reference":12,"*var":40,truncation:[27,127],"\u3068\u3053\u306e":[108,176,178],"=submit":131,limit:[],"\u5b9f\u4f8b":[],"-uploader":151,"\u3068\u3053\u308d":[68,150,87,112,73,147,38,119],"{\"":[163,23,181,85,122,153,161,167,68,47,48,114,115,18,147,78,178,176,126,150],"\u79d2\u5f62":45,"\u7389\u91ce":80,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[7,172],eric:96,functions:[40,42,80],"\u3002video":44,halfwidth:189,"\u6163\u7fd2":7,"_many":[2,172,80],"_auto":[],"\u65b0\u3057\u3044":[],"\u65b0\u3057\u304f":[108,11,3,124,114,158,80,65],friends:44,sphinx:[87,15,119,80,20],katagiri:125,persistent:[95,113,83],"{\\":58,"\u305a\u308c":[73,11,6,132,45,97,75,58,13,113,8,172,69],"\u300csenna":108,"=redhat":188,dynamic:[],"\u5927\u62b5":9,"\u3002scan":177,"\u30ab\u30e9\u30e0n":182,"_filters":[],calculate:131,segments:126,"/raw":81,"\u5bfe\u3057":[181,150],"\u592a\u90ce":44,swap:139,"\u30d9\u30fc\u30b9":[141,90,181,191,132,154,7,113,63,27,150,38,80,119],updated:[70,42,119],"void":[40,83,5,123,113,25,116,19,63,79,112],updates:[32,20],"\u3066\u307f\u307e\u3057\u3087":74,"\u53c2\u7167\u5143":13,"\u30df\u30b9":176,"\u53c2\u7167\u5148":125,"=pat":112,vector:[7,125,85],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":7,"\u898b\u7a4d\u308b":165,japanese:[38,26],"\u9006\u9806":3,"\u3002grn":[69,158],implemented:[122,42],even:122,"\u50be\u5411":78,"\u6210\u529f":[],"new":[],net:130,maverick:27,metadata:[7,122,28,12],"\u306f\u3044\u3051":[79,150,170,16],"\u5fdc\u3058":[132,178,167,41],"<directory":64,"\u4e2d\u4e95":125,"\u305a\u306b":85,"\u305a\u3064":[167,78,97],":port":[36,97,9],suitable:[122,12],serch:[153,18],"\u3080\u308b":[181,150],xvzf:[164,129,24,14,152,188,89],itagaki:154,"\u826f\u3044\u4f8b":124,"\u9023\u7d9a":[90,70,144,125,18,79,38],".yml":81,typo:[27,80],"\u3082\u3057\u4e00\u3064":[],calc:108,type:[53,41,3,143,12,95,48,103,106,28,110,13,153,59,16,113,18,65,44,121,122,62,167,73,74,78,176,130,131,184,133],"-properties":14,posting:110,warp:80,language:119,"\u4ee5\u4e0b":[],"\u4ee5\u4e0a":[],"_comment":182,"_left":[27,110,2,172,34],"-ipadic":[164,38],akio:[7,154],root:[9,125,102],"\u306b\u95a2\u3057":[77,69,167,125,16],"\u304c\u3063":[],"\u304c\u3061":38,"\u80a5\u5927":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,37],"\u63a8\u5968":[135,108,11,7,102,137,77,80],normalizernfkc:[],"_xml":106,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":80,"\u4f55\u500b":108,"\u6301\u3064\u3059\u3079":108,"_memo":115,"\u304c\u3059":113,"\uff08document":80,"\u9023\u7d61":119,sitedomain:[102,130],"\u30b9\u30fc\u30d7":144,"/result":112,"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":78,"\u3002tsv":[135,175],"_indexer":112,"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":38,"_win":40,"\u9069\u5408":[70,38,3],"\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u9023\u7d50":[7,78,79,125],"\u5206\u5c90":177,"\u643a\u5e2f":132,"_ja":125,"\u5358\u4e00":73,"\u3002google":181,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":154,"_jp":188,"_small":[2,172],"\u6d6e\u52d5":[],before:81,scoring:[122,28,12],"-add":83,"=allow":108,"\u6574\u6570":[],"\"pp":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":38,weakness:32,"\u300coutput":36,"\u30b9\u30c6\u30fc\u30bf\u30b9":[2,125,172],"\u691c\u8a0e":[70,141],nested:125,"-pack":[],"\u691c\u8a3c":[179,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[],"'or":7,"\u975e\u4e92\u63db":[27,80,77],"'article":78,"\u30d1\u30b9":[22,179,174,3,83,151,167,95,10,97,146,80,154,9,36,27,77,188,64,54,172],"_stop":[163,46,80],extract:[148,48],"\u30ed\u30b0\u30d1\u30b9":154,realtime:[153,48],"/bc":151,content:[114,163,109,181,12,182,135,108,32,125,7,115,9,139,27,78,80,54,150],"\u6570\u3048\u308b":[108,130],grease:13,"/\uff09":154,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":77,"\u8996\u899a":132,"\u30d1\u30ea":75,"\u63a5\u8fd1":69,messages:125,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":154,iso:150,isn:16,hook:93,"1\u884c":167,"\u7531\u6765":158,"\u30e1\u30e2\u30ea\u30fc":65,outputting:106,"_keywords":84,"\u5358\u4f4d":[62,75,3,150,132,45,144,31,32,135,154,172,184,27,168,38],"_clear":[],tokens:90,"_chunked":77,mkostemp:80,"[http":[7,77,125,80],"\u5358\u4f53":[132,167],"\u5f79\u5272":[115,3],nsubrecs:[44,108,121,130,184],"\u63a8\u5b9a":77,distance:75,keyword:[108,181,12,122,161,32,47,125,7,84],".json":[4,9],older:[],enabled:148,"\u524d\u4ed8\u304d":79,gnupg:151,enables:9,"7\u3064":23,modern:184,"\u30a8\u30e9\u30fc":[],"\u7e4b\u3052\u308b":124,"\u958b\u3051\u308b":7,"\u81ea\u52d5\u5207\u308a":80,estimated:110,"_cas":2,"\u3002\u3044\u304f\u3064\u304b":178,"\u308f\u3051":[108,90,150,13,46,176],specfied:110,"\u30b1\u30fc\u30b9":[108,83,130,70,181,74,17,59,9,150,178,38,80,65],"\u3002\u30df\u30ea":13,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":81,regular:[131,9,178],"\u3002munin":[152,129,14,164],"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":77,don:[12,122,48,136,9,28,106,84],radious:168,doc:[87,119,91,151,20],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":151,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[18,176,146,48],"\u56fa\u5b9a":[3,95,172,63,79,80,65],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":172,keybuf:113,sigsegv:113,"\u6210\u308a\u7acb\u3063":69,syntax:172,"\u65e5\u672c\u8a9e":[0,181,70,132,7,150,38,176,119],"\u8ffd\u52a0":[],"\u7bc4\u56f2\u5916":80,"\"\u308d\u3086\u304d":143,yoji:27,"_address":[2,102,172],"_http":[167,9],"\u5f0f\u8868":84,"\u72ec\u81ea":[],"\\\"a":182,stop:[141,12,122,97,7,9,77,28],"_limit":[],"/grntest":151,"\\\"}":58,gbyte:66,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[],"(grn":[77,84,16],bad:[125,80,172],"\u5024\u3060\u3051":150,"\u623b\u308a":[7,79],"*name":[40,121,62,123,16,113,79,84,53],"\u524d\u56de":151,",\"location":[44,74],"\u591a\u304f":[108,3,181,191,13,32,70,9,178,27,150,38,141,65],reference:[108,125,85],"\u591a\u3044":[70,181,150],"\u623b\u3063":9,".kentaro":125,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u30aa\u30fc\u30ca\u30fc":125,"\u4e88\u7d04":73,subject:125,brazil:130,"\u672a\u958b\u653e":154,"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":85,inappropriate:172,sigint:27,filename:172,simplest:35,"\u7bc4\u56f2":[],"+fffe":90,threasd:97,"_geo":[],"\u3092\u901a\u3057":[97,3],"_get":[40,17,121,41,93,112,123,113,16,7,25,116,19,77,63,27,79,84,53,80],"]\u3002":80,"\u534a\u5f84":168,"_operation":[2,172],"_level":[],"\u73fe\u308c\u308b":70,against:[83,121],"0c":38,"\u3044\u3044\u306d":[108,181,150],"0e":167,"\u8a9e\u5f59":[],appeared:12,"_reinit":79,"\u62bd\u51fa":[],"\u3068\u3044\u3063":[164,108,75,23,181,85,94,142,125,7,74,80,158,77,54,150],"_too":[2,172,80],loaded:68,"\u6848\u5185":[124,151],"\u3068\u3044\u3051":[108,23,165,172,176,65],three:[13,122,3],"\u3068\u3044\u3046":[90,3,4,94,45,144,47,7,9,10,147,77,188,54,108,11,150,151,85,13,153,189,115,18,177,158,65,22,44,163,70,167,134,124,125,126,74,75,172,27,78,174,175,176,80,178,184,181,130,182,132,133,32,38,35,36,119,84,102],"\u3068\u3044\u3044":178,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":130,"\u7528\u3044":[],digits:148,"-help":[],"\u7591\u4f3c":[58,67,125,7,60,80],multithread:113,sae:[153,18],"_log":[],"\u554f\u984c":[17,1,3,181,151,165,154,73,125,146,16,7,126,9,77,167,27,150,38,80,119],logaling:81,"\u6700\u3082":[126,108,16],seven:3,ip:[131,167,102,172],is:[40,141,90,3,4,12,97,46,47,48,7,100,102,103,148,106,53,54,91,108,109,150,85,13,16,115,113,19,61,20,178,183,64,119,163,121,122,161,110,172,28,80,181,83,136,127,35,32,186,131,78,139,84,9],"\u6069\u6075":141,it:[40,141,5,103,148,106,58,108,110,12,16,114,113,61,20,150,64,44,121,122,127,83,181,131,135,136,139,84],voiced:189,il:[70,144],io:[77,42],"in":[],ia:[70,144],ic:[120,38],id:[],"/commits":80,".nested":108,"\u305d\u3093\u306a":[188,65],make:[],"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":108,"\u306b\u3088\u3063\u3066":[11,3,13,132,125,16,70,60,177],"\u5f15\u7528":[97,125],unicorn:14,kib:139,"8byte":172,"\u3055\u307e\u3056\u307e\u306a":[],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[73,60,65],left:110,protocol:[],just:[83,12,131,184,186,114,103,148,79],"@groonga":[151,26],"||":[69,150,12,125,7,78],assigned:103,"=add":90,"|b":178,yes:[179,77,177,153],yet:[122,12],"\u5f8c\u65b9":[],"-with":[],"\u89e3\u50cf":154,candidate:[131,153],defrag:[],character:[40,148],"\u306f\u3059\u3079\u3066":[68,90,3,150,46,108,58,136,9,158,147,139,117,189,38,65],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":112,save:[131,151],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[],"\"http":85,"|>":148,"|<":148,"|:":148,"\u5cf6\u7530":7,daemon:[97,64],"\u6539\u540d":[7,27],mruby:[147,68,125,80],unnecessary:139,"\u52b9\u7387":78,"*oldvalue":121,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[],centos:[],"_db":[],"\u7570\u306a\u308a":[108,181,80],"\u3067\u3044\u3046":[189,130],"\u4f7f\u7528":[],raltime:48,"\u964d\u9806":[63,153,108,3,113],"\u5bc6\u9375":[],"\u5c11\u3057":188,notification:148,tracker:0,"\u5c11\u304f":165,"\u7a0b\u5ea6":[27,3,125],"\u53c2\u8003":[],debhelper:27,"\u5b8c\u5168":[],"\u304c\u308f\u304b\u308a":[184,109,38],"\u304c\u308f\u304b\u308b":75,"\u898b\u8fbc\u3081":80,"\u304c\u308f\u304b\u308c":108,postgresql:[132,32],"/munin":188,"\u30c1\u30a7\u30c3\u30af":[179,96,154,167,125,7,126,61,77,27,80],"=true":103,"*optarg":[56,83],commit:119,automatically:61,"_ratio":80,sphr:75,"\u305d\u3061\u3089":188,editor:119,"\u6291\u3048":70,fork:119,tokenbigramignoreblanksplitsymbolalphadigit:[],form:[3,181,131,172,51,189],"\u3059\u304e\u308b":85,"[dump":[7,125,80],".ne":42,"_animal":13,"\u5165\u308c":[70,44,38,184],"\u5165\u308b":105,"\u5165\u308a":[],grroonga:169,"\u5426\u5b9a":[],lenny:27,"delete":[],"_location":[135,184],"\u6c7a\u3081\u308b":[108,69],kwic:32,"\u3002\u307e\u3060":80,"\u5165\u3063":[44,3,135,125,7,172,77,78,176,177],"sort\u30ad\u30fc":1,floating:45,"\u73fe\u5728\u5730":184,"\u30a8\u30c7\u30a3\u30bf":119,tokenbigramignoreblank:[],excel:175,"\u3002\u307e\u305a":70,"\u914d\u5217":[],"\u3002\u307e\u305f":[179,108,11,3,150,13,132,45,97,74,18,172,69,36,175,167],"\u304f\u308c":124,"\u30cf\u30a4\u30e9\u30a4\u30c8":[161,47],"\u300d:":189,".service":7,fsf:7,macports:[],assume:103,"\u6539\u5584":[1,125,7,77,27,80],"_offset":[],vmstat:165,"\u9069\u5207":[108,90,23,132,154,167,3,178,38,80,65],managed:[35,103],"\u81ea\u52d5\u7684":167,segv:[1,125],"\u7279\u6027":94,manager:[9,54],manages:61,"\u7fa9\u8a9e":175,technique:[122,12],"\u3068\u3059\u3050":114,"\u524a\u9664":[],kinjirou:44,"\u30bb\u30c3\u30b7\u30e7\u30f3":[159,97,172],"0mq":125,"-efficient":85,"\u8a2d\u8a08":[108,141],"\u4e0a\u91ce":154,"[php":[7,80],"\u30b5\u30f3\u30d7\u30eb":[],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":18,"\"mysql":[169,85],"-escalation":[],item:[153,18,176,186,48],"\u672a\u6e80":[63,181],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":126,"_entry":93,"-deb":151,"\u4ed8\u4e0e":[],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[7,125,178],"\u629c\u3051":[27,125,80],strerror:80,"\u5076\u6570":150,"\u63db\u6642":27,"\uff08normalization":189,"-dev":[151,14,125,26,7,152,177,77,27,80],"\"xxx":125,shinoda:[],">alloc":4,".so":[22,174,10],"\u4f8b\u3068\u3057\u3066":13,"\u30a8\u30f3\u30c8\u30ea\u30fc":108,"-mode":119,shift:[188,38],"\u3068\u3059\u308c":132,"_version":[],"[suggest":[7,112,125],bom:154,suggestion:[131,186],raccoon:44,bob:[108,181,184,115,59,9,96,127,54],useful:[78,121,12],"\u30dd\u30a4\u30f3\u30bf":[16,113,63,79,53,118],"\u5fd8\u308c":[27,85],"\u3002table":[113,170,118],"-leak":154,"\u521d\u671f":[83,132,154,7,27,79,80],"\u4e21\u8005":74,"-check":[131,27,154],"ci\u4e00\u822c":81,"-libevent":112,"\u5e74\u9f62":[132,65],"_min":[77,108,120,116],ooo:94,"-each":27,"\"color":189,"\u305d\u3053\u306b":105,"/nfs":188,mbytes:167,"\u8fd1\u3055":150,"\u30b8\u30aa\u30b5\u30fc\u30c1":[],"\u30dd\u30a4\u30f3\u30c8":[175,85],"\u8fd1\u3044":[63,179],ull:90,"*tc":[63,120],"-directory":7,"\u30fb\u30b5\u30fc\u30d0":3,sample:[131,167,64],normalize:[],"\u3002\u30ed\u30b0":[9,65],"\u30d0\u30a4\u30c8":[108,2,121,94,45,154,32,16,7,125,77,63,27,80],"/cpuinfo":[152,129,14,164],"\u8a9e\u53e5":[44,125],"_current":17,map:[148,27,139],groo:108,"\u518d\u8aad":[190,175],max:[],"\u524d\u3082\u3063":77,mac:[],man:[1,96],".garbage":125,fluent:104,"\u540d\u524d":[],"_values":[],"\u5e02\u5185":92,pointed:40,"_init":[40,5,16,7,148,27,79,84,80],pointer:40,"/fedora":[7,164,154,151],group:[113,130],"\u304b\u306a\u308a":80,"\u8a08\u6e2c":[27,1,177],"\u7d44\u307f\u5408\u308f":[132,108,69,96,65],mail:167,main:152,"\u30b9\u30c6\u30df\u30f3\u30b0":[163,80],"\u91cd\u306a\u3063":125,"\u5b9f\u4f53":16,repositories:151,"_timeout":[2,19,172],ggdb:[],unlock:79,nroonga:[115,78,81],libgcc:80,"\u624b\u6bb5":[69,84],morning:114,"\u6240\u5c5e":59,"\u7a7a\u304d":[165,126],"_mecab":77,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[],".flags":113,correct:[131,153,18],"\u624b\u7d9a\u304d":[93,53],"|allow":[108,181],"\u30ab\u30e9\u30e0id":113,earlier:127,"_content":[],"\u3002min":63,debootstrap:151,"_string":[],org:[102,130],"\u62ec\u5f27":58,"\"hello":[163,46],"\u4e8b\u9805":[],rewrited:42,"\u6b21\u90ce":44,"\u304c\u3042\u308a":[0,163,75,151,108,175],"] [":167,first:[40,108,181,12,184,103,150],"\u5468\u8fba":[7,32],"\u30dd\u30fc\u30c8":[179,141,4,167,97,125,102,54,172],"\u7db2\u7f85":9,"\u9078\u3079":108,"long":[25,77,103,61,86],"\u81ea\u5df1\u7d39":184,crit:[6,8],"\u9078\u3073":169,"\u9078\u3076":[132,108,9],enviromnent:[],"1g":[152,14],"1f":77,"\u30bd\u30fc\u30c8\u30ad\u30fc":[153,1,113,108],"\u30d8\u30eb\u30d7":177,"1o":178,"_preparer":[153,18,176,48],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":132,memo:[122,115,28,80,12],"\u62e1\u5f35":[],"\\ahost":178,"\u5c0f\u3055\u304f":[75,94,114,54,77,168,80,178],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":11,"11":[108,90,150,85,70,115,139],"10":[167,3],"_index":[],yoshioka:7,libgroonga:162,"\u5229\u7528\u4f8b":132,zsh:[188,151],dash:188,"\"application":27,katakana:[189,176],".uuuuuu":150,"-receive":[131,64],speakers:26,"_open":[40,17,2,120,83,86,154,16,7,110,172,63,27],"\u914d\u5e03":[164,129,14,7,152,101,137,80],"_network":2,"\u8d70\u67fb":80,"\u5217\u4e2d":150,"\u6700\u7d42\u66f4":83,timeuot:19,">#{":148,"_enc":[63,123],performance:[131,139,32],"\u5f79\u7acb\u3061":125,theatre:91,normal:12,"(message":122,beta:42,pair:[153,18,176,186,48],synonym:[108,91],"_sort":113,fills:131,"\u4f1a\u793e":80,"\u8003\u3048\u65b9":80,"|ng":108,"\u539f\u56e0":[],precise:[7,14,151],lexicon:[182,167,114,115,77,105,78,189,65],show:1,"-po":[],"\u6700\u5927\u5024":[7,142,108,23,80],"\u30dc\u30c3\u30af\u30b9":108,threshold:[25,27,37,79],"\u77ed\u6642\u9593":132,"-plugin":104,"\u306a\u3093":11,"\u306a\u308c":11,black:189,"\u306a\u3089":[142,97,7,9,109,164,108,11,150,85,14,113,18,177,159,178,65,163,69,23,121,165,167,125,82,170,77,78,79,176,80,81,129,83,181,152,189,38],"\u306a\u308a":[2,3,4,45,97,7,9,10,71,77,107,58,108,11,150,151,85,13,153,16,17,113,18,60,117,143,178,65,22,44,163,23,121,70,167,124,125,168,114,73,74,75,172,27,78,79,175,176,80,81,189,83,130,132,181,32,174,135,38,184,36,37,84,102],"\u306a\u308b":[1,3,45,97,48,7,100,101,9,188,107,164,108,168,150,151,152,13,14,16,114,115,157,65,119,69,70,167,124,125,73,170,96,77,79,80,181,129,83,130,132,154,32,146,34,137,37],"_module":9,"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":77,wheezy:[],get:[],"\u96c6\u3081":130,"\u51fa\u305b\u308b":132,geo:[],gem:151,"\u3002utf":[189,125],tokyogeopoint:[110,45,34,74,27,168],restarted:139,"\u5bfe\u8c61table1":113,summary:[167,142],"\u305f\u304b":[27,108,18],"\u300c\u30e9\u30d9\u30eb":108,wiki:9,kernel:139,caller:53,"\u8907\u96d1":[108,69,150,125,7,178],sear:176,masahiro:154,ency:167,"\u884c\u306a\u308f":7,"\u53ca\u3073":167,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":54,checks:[133,80,61,83],parent:108,"\u6700\u5c0f\u5024":[142,108,23,150,80],"-blog":184,"\u306a\u306e":176,"\u3088\u3063\u3066":[92,90,71,45,99,74],"\u306a\u3069":[99,92,90,3,94,45,144,47,48,7,147,102,77,104,188,54,108,11,150,151,13,114,18,158,190,178,119,162,68,69,70,161,167,126,27,79,175,176,80,181,83,132,32,184,38],"\u306a\u306b":[],je:143,"\u306a\u3067":176,ja:[151,119],"\u306a\u3063":[141,90,3,7,102,54,108,11,150,151,85,13,177,23,70,124,125,126,27,78,112,176,80,181,132,154,135,184],"\u306a\u305c":[163,181,108,18,178,150,189,38,176,65],"\u5206\u5272":[3,150,94,144,132,77,27,38],"\u306a\u305f":77,"\u306a\u3059":34,"\u306a\u3055":[36,67],"\u306a\u3057":[],nogpgcheck:7,"_allowed":[2,172],"\u306a\u304e":182,"\u306a\u304f":[92,1,3,91,94,95,141,7,9,10,77,188,54,108,150,151,13,16,158,65,22,23,167,124,125,182,96,27,78,79,80,81,181,130,132,154,32,88,38],"\u4f8b\u5916":[147,164,68,80],"\u306a\u304a":[144,151],"\u306a\u304b":124,"\u306a\u3044":[],"*bsd":[27,154],"_invalid":[63,113,2,79],"[mdev":77,"}:":178,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,"\u4e0d\u9069\u5207":[7,80],cancel:[35,103],"\u5f15\u304d\u51fa\u3059":132,"}/":[22,119,188,174,10],"}.":[115,108],"})":131,".select":[167,150],tuning:[],"\u524d\u5f8c":[97,3],"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":97,mark:[77,189],"&filter":103,"*max":63,shopping:114,"\u62e1\u5927":124,"\u5b57\u5c0f":[108,178],"}|":148,senboku:125,"}e":150,"_avoided":[2,172,79],"\u6240\u5b9a":[70,163,144,65],sound:[18,189],"_information":95,"\u30bb\u30df\u30b3\u30ed\u30f3":167,"\u30af\u30a8\u30ea\u30fcapi":[2,31],"}]":[],"}\\":150,hdd:167,"_corrupt":[2,172],"\"mroonga":[182,108,150,85],"\u6587\u66f8\u5185":163,characteristics:32,"\u8af8\u6761":66,"\u578bn":108,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":125,"|')":73,"\uff01\u3057":26,affected:[],"-document":[],"\u3002\u5024":96,different:131,pat:[63,94],"\u91cf\u8a08":1,same:[12,85,122,35,125,19,103],arguments:40,"=squeeze":151,"\u3002\u3044\u307e":112,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[],"< y":125,"\u8a00\u53ca":[184,182],"\uff01\u300d":[108,181,150],"\u7b49\u4fa1":[],"< n":150,running:[35,103],"\u672c\u5f53":[91,176],montywi:112,"\u305d\u3057\u3066":[108,90,130,13,132,32,184,78,176],markus:7,markup:87,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":80,"\u8aad\u307f\u98db\u3070":3,solve:[122,12],"\u6b21\u56de":[11,151],"(cmp":80,"[number":58,"(precise":[],money:44,"\u5927\u898f\u6a21":132,"\u3002\u3059\u3079\u3066":[59,177,119],"\u518d\u8d77":[139,141,175],".dll":40,"\u8fd4\u5024":[],"\u30c0\u30a4\u30a2\u30ed\u30b0":125,"_rate":[3,4,82,102,9,172],"/false":[13,1],"\u4e2d\u592e\u5024":80,"\u5ea7\u6a19":[92,75,150,184,34,27,168],"\u56f0\u96e3":[7,132],"_syntax":[2,84],"\u9069\u5b9c":[151,80],"'ve":184,"\u9650\u308a":[69,70,144,58,60,79],"\u9650\u3089":124,quantal:7,specifies:[131,97],"\u9650\u3063":79,"\u7be0\u7530":[77,80],testdb:[167,64],specified:[40,110,53],generates:186,"\u99c4\u76ee":124,ellip:75,"/database":[9,54],"_realloc":40,"\u65b0\u5bbf":74,critical:[40,148,97],"\u6d0b\u5fd7":80,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[],valuebuf:41,uubntu:177,"\u30cb\u30c3\u30dd\u30f3":176,"\u306f\u3044":13,broken:[136,172,83,61,121],"_between":80,"\u306f\u305a":[7,167,38],"\u307e\u3064\u308f":125,"\u306f\u3069":[108,176,65],"\u306f\u3068":94,ptr:40,develops:163,"\u306f\u307f":88,"@soundkitchen":[7,27],"\u3082\u3061\u308d\u3093":[167,130],"\"\u30df\u30ea":150,".patch":119,"_reopen":[],"\u9ed2\u3044\u70b9":92,"\u8abf\u6574":[70,165,108,38,158],"\u3002\u3059\u3050":9,"_cache":[],"\u4f55\u5ea6":125,"\u7279\u6709":[],"-login":139,"/ '":79,"\u306a\u304c\u3089":[108,90,3,151,132,7,38],"\u3002command":11,"\u63d0\u6848":[],"\u3082\u3046":[114,111,13,16,7,9,78],"\u8a18\u8f09":[7,151],"\u3002cpu\u30b3\u30a2":54,"\u3082\u3057":[135,108,2,181,115,175,167,125,17,75,100,182,9,178,96,188,150,81,80,54,65],"\u7834\u58ca":113,"\u516c\u958b\u9375":151,"\u3082\u3059":[22,10],"\u3082\u3064":[77,170,130],"\u30c7\u30d7\u30ed\u30a4":9,"\u3082\u306e":[3,97,7,100,101,9,142,108,11,151,13,17,113,18,63,119,67,69,23,167,125,75,172,78,168,80,178,179,189],"|on":108,"|oo":108,"$prefix":27,"\u5883\u754c":[7,142,75,23],file:[1,131,154,9,20,139,172],"*obj":[41,79,83,93,56,84,53,118,121],again:[9,19],"\u53d6\u308c\u308b":58,"\uff08true":13,"\u5b50\u5348\u7dda":75,"\u4e0e\u3048\u308b":[58,179,74,11,97],"}}":85,"\u3002pcre":9,"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":85,"\u8a18\u8ff0":[69,3,167,97,184,78],"\u4e00\u6642\u7684":[165,79],"\u4e0a\u9650":[],important:[122,28,12],"6gib":139,"_all":[77,16],starting:40,sergey:80,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[7,27,80],expressions:9,gr:[108,90],libmsgpack:[152,14],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[80,5],"_difference":113,"/lib":[22,141,9,61,10,174],"-alloc":82,"\u8aad\u3081":7,"\u8aad\u3080":68,"\u5dee\u5206":167,"\u8aad\u3093":[88,81],"\u4f4e\u4e0b":125,")mroonga":175,hottolink:42,"\u52e7\u3081":80,"\u306f\u3053\u306e":[165,108,38,182],sigusr:27,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":85,"\u771f\u507d\u5024":[],"\u304c\u3053\u306e":181,titles:[181,150],plugins:[139,10],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":177,abi:77,"\u3002amazon":108,"@orangain":125,tokenbigramignoreblanksplitalphadigit:38,"_append":[86,69,84,79],"\u30e1\u30bf\u30c7\u30fc\u30bf":[147,68,95],"\u8aad\u307f":[],"\u5909\u66f4\u5f8c":[123,113,16,116,25,79],"\u307e\u3057\u3087":[44,108,75,3],".value":108,"\u30c6\u30b9\u30c8":[],threads:[131,148],tokenbigramsplitxxx:38,"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":97,"\u6e96\u5099":[],"\u6d3b\u7528":141,"\u5931\u308f":7,search:[108,90,181,12,122,153,161,32,47,48,7,169,113,18,63,27,28,175,176,150],published:151,"\u300c\u5024":65,aptitude:177,"\u672a\u77e5":112,memos:[163,100,12],".synonym":108,"\u78ba\u7387":153,distinct:131,"\u5ca9\u4e95":[7,125],"\u5317\u534a\u7403":7,"\u5c0f\u5024":[142,23],"_gqtp":167,"\u3053\u3068":[],"\u3053\u306e":[2,3,4,12,7,90,9,75,13,14,17,18,19,23,24,182,27,30,31,32,38,40,47,48,50,54,164,58,59,61,63,65,44,68,69,70,73,74,77,78,80,81,84,152,88,89,91,94,95,97,26,99,101,103,188,108,168,85,112,114,115,113,117,119,122,161,125,127,129,130,132,133,135,136,137,139,142,144,147,150,151,160,162,46,167,172,96,174,175,176,178,181,184,185,191],jsonp:[131,27,77],"[element":[150,85],"\u4e00\u756a\u5de6":150,"[example":80,none:[108,90,133,97,46,186,136,9,78,188,172],hour:[148,19],"\u3053\u3053":[108,3,181,151,13,184,135,70,74,153,189,175,150],dev:[152,14],deb:[7,152,14,151],"\u3053\u3046":124,"\u4e2d\u5fc3":168,share:188,"\u96c5\u5e83":80,minimum:40,numbers:35,"/..":[9,151],strlen:40,needs:139,maps:139,"\u3053\u308c":[90,142,91,5,94,144,47,48,7,9,10,77,188,54,114,108,75,150,151,85,87,17,18,178,65,22,69,23,70,165,125,73,169,74,172,96,27,78,174,175,176,80,181,189,83,130,182,132,32,13,184,119,38,117],"\u3053\u3080":68,"*value":[63,41,113,79,86],"\u591a\u3059\u304e":154,"/afr":[74,3,130],"\u666e\u901a":[124,150],mariadb:[125,80],response:[131,103],kuriyama:80,"\u3066\u304d":2,"\u3066\u304f":177,"\u30c4\u30a4\u30fc\u30c8":[],"\u547c\u3073":[108,69,5,85,13,167,97,32],"\u547c\u3070":[108,3,150,45,113,16,59,125,77,53],"\u3002ftp":167,"`hostname":97,"\u5217\u578b":[13,130,181,80],"\u3002\u4f8b":79,finalizes:40,through:9,"\u975e\u308f":144,existence:83,"\u308c\u308b":[92,3,93,94,45,144,97,48,7,100,77,147,188,53,114,108,11,151,85,153,190,16,17,59,18,60,177,63,65,68,69,23,70,134,167,125,126,74,75,172,96,27,176,80,178,189,182,132,133,32,119,38,117],"-launchpad":151,"\u6955\u5186":[75,168],good:[163,150,108,46,114,181],timestamp:23,"\u3079\u3066":[108,9,130],"\u9664\u304f":7,"\u5316\u95a2":154,"\u3079\u304d":[189,150,151,95,172,79],"\u3079\u304f":3,"\u9577\u91ce":80,"\u9664\u3044":[142,100,23,32,167],"-encoding":[],micro:184,token:[],learing:48,"\u52b9\u679c":184,"\u9664\u3051":113,"\u767b\u9332":[],hard:139,flower:13,"\u30d5\u30e9\u30f3\u30b9":75,"\"gr":65,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":177,"\u8ddd\u96e2":[92,1,75,150,111,132,7,74,168],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":101,"\uff08\u79d2":79,"\u3068\u3082\u3063\u3068":188,"\u89b3\u70b9":[165,100,150,80],"_blank":133,tahr:[14,80],"\u4e09\u8c37":80,tritonn:[108,181,150],"\u308c\u305a":11,"\u306b\u3082":[108,144],"\u306b\u3088":7,done:19,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[184,75],".blog":70,"_data":[],koi:[7,188,97],"\u306b\u5bfe\u5fdc\u4ed8\u3051":176,least:139,"\u516c\u5e73":125,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":54,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[36,97,9],"/archive":151,"*results":113,selector:155,"\u308c\u307e\u305b":[11,161,97,126,113,78,188,175],"\u6574\u7406":[7,125],"},":[90,3,91,127,143,108,75,150,85,114,115,59,166,44,46,49,167,109,78,178,181,184,38],"\u4e71\u6570":[67,74],"_tag":[161,100],"\u8a18\u9332":[7,22,60,132,10],"\"requires":7,"\u30d3\u30e5\u30fc":7,"\u4e0a\u8a18":[3,48,7,188,108,109,115,18,119,66,23,70,167,182,74,172,96,77,175,81,130,65,38],ages:[105,96,65],"/lc":[151,119],"_scorer":77,".key":113,built:79,"/lists":151,"-limit":[1,97,108,125],extracted:84,"\u307e\u3068\u3081":[],build:[151,14,125,82,152,101,20,81],"_available":[2,172],"\u53d6\u308a\u51fa\u3057":[63,120,3],eggs:78,"[experimental":[],most:110,"~*":84,"\u306b\u3057":[108,150,125,77,80,181],myisam:132,"\u5e73\u884c":151,"-protocol":[51,97,102,167],"\u306b\u3059":70,kb:165,ka:189,"\u306b\u3066":[7,75,125,151],"_put":[],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u306b\u3069":69,ko:42,km:184,"\"theater":91,"\u7528\u8a9e\u96c6":126,"\u4e0a\u66f8\u304d":[74,151],mlock:154,think:[122,28,12],"_by":[40,184,112,146,113,63,27,79,84,80],"(drilldown":60,"\u30d1\u30c3\u30c1":[],"\u5927\u8cb4":7,relation:79,nterms:126,"[mecab":77,find:20,"_int":[77,79,84,62],"\u7d50\u57ce":80,"\u30a2\u30ca\u30a6\u30f3\u30b9":151,permission:172,express:[7,101,125],"\u601d\u3044":119,"\u601d\u3046":[78,130],"\u62c5\u5f53":151,resolve:[122,28,12],"\u9593\u9055\u3063":[125,7,169,18,27,80],"\"popular":108,transitional:141,"_and":[69,56,12],"\uff08byte":[79,121],common:[63,27,113,150],"\u601d\u3063":87,"+fff":38,"/log":[131,141,188,97,9],"_sjlj":80,lion:7,tokenizers:[166,90],"\u76f8\u624b":124,"[backslash":181,please:[141,83,12,122,28,119],"\u30e2\u30b8\u30e5\u30fc\u30eb":[],"(news":151,"\u5024\u57df":71,".log":[141,11,12,167,97,9,188],"\u30cb\u30db\u30f3":176,readme:[125,151],"\u8a9e\u4ee5":[38,150],"\u8868\u73fe":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":7,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":77,"\u66f8\u3051\u308b":[7,125,80],reverse:[9,151],"\u6570\u70b9":[45,108],"-file":[131,27,135,97,77],"\u5b9f\u51e6":[69,53],"-org":151,point:[],simple:141,"\u3059\u304e\u307e\u305b":44,"\u306f\u3058\u307e\u308a":11,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":178,simply:122,shutdown:[],"\u6253\u3064\u524d":151,"\"gronga":169,"_connection":2,create:[40,97],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[17,182,16],"\u53ce\u96c6":[135,132],"_when":135,"\u30a2\u30ed\u30b1\u30fc\u30c8":82,bill:[70,144],replaced:[64,186],ful:90,"\u307b\u3057\u304f":108,engi:[153,176],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[94,3,9],cents:38,"\u5f15\u6570":[],"^ \"":150,itself:85,"\u56db\u5247":80,rubygems:7,"\u95be\u5024":[],"-key":[112,151],"\u7d42\u7aef":[7,84,83,16],emphasize:109,")groonga":175,"\u56fd\u540d":130,development:184,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":80,"-chroot":151,"\uff08perl":9,keys:[],"-existence":125,aggregate:32,"\u5834\u6240":[],"\u53cc\u65b9":124,"\"\u3001":[176,130],"\"\u3002":80,"\u5409\u7530":125,"\u7d44\u307f\u5408\u308f\u305b":[69,3,151,70,132,73,38,80],flags:[],sortby:[],entry:[73,145,93,72,58,136,170,155,37,107],"\u305f\u3059\u3079\u3066":108,"\u3064\u307e\u308a":[77,108,90,23,151],sunos:80,"\u3002dump":157,"\u547c\u3073\u51fa\u3059":[67,168,111,34,158,180],"\u3001\u00d7":124,"\u5024\u306a\u3089":125,"\"value":108,"\u547c\u3073\u51fa\u3055":[93,108],"\u547c\u3073\u51fa\u3057":[],"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":167,"\u306f\u3069\u3061\u3089":54,source:[44,3,83,151,184,95,73,59,135,77,78],realloc:154,"5\u3064":96,bin:[101,20],manage:20,"?arg":178,kashihara:80,"\u968e\u5c64":69,bit:[164,129,24,45,14,167,125,152,101,137,77,81],"\u5f53\u3066":[94,90,105,16],"\u30d7\u30e9\u30b0\u30a4\u30f3":[1,142,68,7,10,147,77,188,164,14,115,119,22,163,23,125,27,174,175,80,129,132,154,146,152,189],"\u5927\u4e08\u592b":[188,124],"\u8aa4\u308a":[7,77,125,80],"\u5354\u529b":[],"\u3057\u307e\u3063":80,"\u4e0a\u8ff0":175,"*keys":113,"-command":[],"_over":[2,172],"\u4ee5\u5916":[92,5,94,45,108,151,85,16,17,113,178,65,69,120,121,62,167,125,82,27,79,80,181,83,132,154,84],google:[122,169,28,108,12],"\u5168suffix":113,"\u8aa4\u3063":[7,77,125,80,151],examples:154,"\u3001[":3,server:[44,141,131,97,54,7,100,9,103,80],"\u3002set":167,"\u66f8\u304b":[7,184],"\u3001c":3,"\u66f8\u304f":[78,181,80],"\u8a73\u3057\u304f":[13,132,3],"\u66f8\u304d":[],"\u66f8\u3044":[150,184,181,77,80,178],newark:184,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":80,"\u3002travis":81,"\u30d3\u30eb\u30c9":[],"\u5024\u306a\u3057":112,"/cutter":151,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":7,"_checks":133,cxxflags:24,"\u3001#":184,"\u3001\"":[109,3,91,182,100,184,45,125,48,7,169,18,27,176],"\u3001$":151,"\u3001'":[150,13,45,97,115,123,80],"\u3001(":[63,45,167,113,96],nginxhttpstubstatusmodule:80,"\u3001-":[36,45,154,167],"\u3001/":[3,102],"\u3001.":[177,119],"\u5730\u5f62":[75,168],"\u3001:":167,"(fedora":141,"\u3084\u3059\u3044\u304b":175,"\u3001>":72,"\u5730\u70b9":[74,75],"\u7a4d\u307f\u91cd\u306a\u3063":125,"/yum":151,"\u9010\u6b21":[132,38,80,178],suffixsearchterms:[181,150],"\u6295\u5165":[70,1,23],"[label2":108,"[label1":[108,80],"_fin":[7,40,84,5,16],errno:80,"\u51fa\u3059":184,"\u51fa\u3055":125,"\u51fa\u3057":184,"_full":[],"-type":[48,18,9,27,176,54],"\u7b97\u8853":[],"-binary":[9,54],"/epel":129,"\u56de\u907f":[],"\u52d5\u304d":[108,54],"\u52d5\u304f":[7,27,188,191],"\u52d5\u304b":[125,80,178],"*keybuf":113,"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":178,curl:[188,4,131,97,7,9,103,89,54,81],sourceforge:151,"\u90fd\u6c11":[70,144],"\u6570\u73e0":182,functionality:131,"_enabled":77,"\u5207\u308a\u6368\u3066":13,libwinpthread:80,"\u30c7\u30fc\u30bf":[],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":167,"\u53d6\u5f97":[],confirm:119,"_nil":[63,113,154,84,16],failures:151,"\u7d50\u5408":[69,181,158],rinse:151,getaddrinfo:7,jason:143,wanabe:125,"/cache":9,"\u57cb\u3081\u8fbc\u3080":167,query:[],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":7,"_debug":177,"/\u65e5":184,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[150,78,108,181],"-release":[],"\u3042\u3089\u308f\u3057":91,"\u4f59\u308a":150,"\u5f97\u308b":[38,9],putting:139,"/request":103,"_database":[],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":7,"-build":177,"\u306b\u3064\u3051":150,"\u512a\u308c":[132,38],".output":36,"\u76f4\u611f":143,"\u9665\u3063":7,"_header":95,"\u3001 \"":100,"\u9023\u643a":132,"_thread":167,"= n":150,access:139,"\u5f35\u308c\u308b":125,"\u4e2d\u56fd":75,"\u3002\u30ad\u30fc":108,"= y":125,"\u826f\u304f":78,"\u826f\u3044":[78,124],nonexistent:108,"\u30ef\u30fc\u30ab\u30fc":9,"\u632f\u821e":75,"0xc":172,masatoshi:77,"\u306b\u5bfe\u5fdc":[41,108,79,23,121,93,62,97,16,7,113,36,190,27,58,112,53,80],"= \"":[108,23,150,80],"/tmp":[175,54],"_printf":80,"\u57cb\u3081\u8fbc\u307e":151,"\u57cb\u3081\u8fbc\u307f":[32,47],"/senna":157,"\u3002adjuster":80,"\u30b9\u30b1\u30fc\u30d7":178,"/to":[9,54],"\u30ed\u30f3\u30c9\u30f3":75,"ci\u4e0a":81,"(ctx":[17,69,84,121,16],"\u53d7\u4ed8":[91,125],"\u5b8c\u4e86":[108,151,119],"'mroonga":[115,78],"\u30d5\u30ec\u30fc\u30ba":[],".pid":97,"\u5f35\u3063":[108,125],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[],"\u4e2d\u7a0b\u5ea6":[164,129,14,152,101,137],normalizer:[],"_previous":17,"[header":[22,135,68,49,23,166,133,73,136,59,90,117,10,147,142,127,174,170,65],normalized:133,"\u305d\u308c\u3089":[179,108,121,73,19,175,54,178],escaped:84,"\u96c6\u307e\u3063":130,"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":125,"_malloc":40,"\u8d77\u52d5":[],twiter:7,iptables:54,"\u96c6\u307e\u308a":108,"\u30af\u30e9\u30c3\u30b7\u30e5":[154,125,7,59,77,27,80],"{prefix":[22,188,174,10],"/linux":[],"-za":131,"\u6295\u7a3f\u5834\u6240":184,msvc:77,gcc:[164,129,24,125,7,27,188],df:122,"\u3055\u3089\u306b":[44,11,3,85,132,169,94,77,80],"\u30b3\u30de\u30f3\u30c9":[],"\u5186\u6ed1":151,"(score":77,"\u5f35\u3089":[7,13,121,125,77],"\u5f35\u308b":[181,150],"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":80,".textile":151,"\u30b5\u30fc\u30d0\u30fcid":27,bind:27,lines:[131,177],"/repositories":151,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":154,"\u7d9a\u304d":58,"\u306e\u3088\u3046":[108,23,181,95,125,17,59,158,178,38,80,150],"(cutter":177,"\u7d9a\u3044":[70,108],hiroshi:[27,154],jiro:44,"\u3002int":125,"\u7d9a\u3051":167,lf:179,"\u6d88\u8cbb":114,ld:38,lc:119,lo:38,ll:[70,90,38,144],euc:[97,188,38,125],li:[70,144,38],lt:[161,90,32,47],ls:151,"_gqpt":167,tsv:[],lz:188,"\u9589\u3058\u308b":[27,1,94],"\u306f\u3069\u3061\u3089\u304b":[181,150],"\u4f75\u305b":3,"\u3067\u3057\u3087":[162,150,130,132,114,59,188,80],dat:94,"\uff08world":45,"\u30c7\u30a3\u30b9\u30afi":65,day:[114,148],"\u30e6\u30fc\u30b6":[73,108,69,3,151,45,167,48,7,169,18,176],"\u4e00\u3064":[145,6,45,144,8,105,107,11,111,13,16,17,113,155,157,190,159,67,121,72,73,126,75,168,82,180,182,132,34,109,37,140],"\u70b9\u9593":[92,75],"_persistent":[113,121],"\u5217\u5f0f":84,"& y":125,"& x":80,normalizerauto:[],"\u74b0\u5883":[],"\u5217\u5f15":69,"& b":150,"\u3042\u308c\u3053\u308c":124,"\u5f85\u3061\u53d7\u3051\u308b":[102,172],"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[109,12,182,122,115,100],"\u5fc3\u914d":137,res:[113,56,167,110],"& _":74,"\u30ab\u30ec\u30fc":144,red:[],"/\u6708":184,frank:96,"\u73fe\u72b6":11,"\u4ed8\u5c5e":[36,9],"/aba":[74,3,130],"& (":150,"\u76ee\u8996":135,"\u30d6\u30e9\u30b8\u30ea\u30a2":75,"*top":110,"_long":[2,172],"\u91ce\u9996":80,"-appearing":12,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":132,hex:44,reaches:139,"\u30d9\u30af\u30bf":[7,154,1,79,125],"\u7d44\u307f\u8fbc\u307f":[],monkey:13,"\u305d\u306e\u3088\u3046":170,"\u6c38\u7d9a":[],"\u8aad\u307f\u8fbc\u3080":[1,68],natty:27,acquire:19,documentations:160,"\u3068\u3088\u3044":188,"_unregister":[],"\u305b\u3044\u305c\u3044":65,"_illegal":2,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":9,"\u5229\u70b9":132,"\u30da\u30fc\u30b8":[55,108,3,151,97,125,26,7,36,119],"\u81f3\u308b":13,have:[114,139,106,83],"=users":[9,54],"\"co":169,min:[],"_control":[2,172],"\u914d\u4e0b":[36,151],"_func":[40,53,80,16],"\u8aad\u307f\u8fbc\u307f":[22,68,3,125,10,27,175,80],"\uff08gnu":188,"/commands":[105,59,95,80],"_character":84,eight:3,"_offline":112,"\u306a\u3082\u306e":[121,151,178],"\uff09\u3002":70,"\u6e2c\u5730\u7cfb":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[7,18,65],request:[],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[135,1,11,154,125,7,27,112,80],"\uff08least":117,"\u7d44\u307f\u8fbc\u3093":[132,80],"\u304b\u304b\u308a":[114,38,181,150],normally:[139,106,16],text:[90,4,12,94,45,7,54,108,110,150,115,157,23,122,167,77,78,178,181,32,135,136,139],"\u8d8a\u3048\u308b":[70,77,23,80],supported:[42,9,103],"\u5ea6\u3068":27,conifugration:81,"\u610f\u5473":[108,69,3,175,130,85,38,95,97,125,74,153,150,188,84,176,167,181],"\u5b66\u3093":184,"*table":[63,113,79,121],bernard:77,"get\u30e1\u30bd\u30c3\u30c9":36,"[mruby":[77,80],"\u65b9\u6cd5":[],")\u3059\u3079\u3066":96,"\u5c11\u306a\u304f":[150,132,124,32,114,181],"\u5c11\u306a\u3044":[108,181,114,158,175,80,150],"[column":80,"\u7e70\u308a\u8fd4\u3059":154,"_prepend":79,"\u306e\u307f\u3057\u304b":169,"_eval":[],"\u7e70\u308a\u8fd4\u3057":[167,150,119],"\u5272\u308a":[90,150,13,94,16,105],calling:[40,5],fixed:7,"_busy":[2,172],"\u5236\u5fa1":[],exists:61,"\u3002blogs":70,"\u4ee3\u5165":[],enhanced:42,wc:[152,129,14,164],xxxxx:151,"\u985e\u4f3c":[],pattern:[181,150],"{name":150,"(string":111,"\u30c7\u30e1\u30ea\u30c3\u30c8":94,progress:148,"\u6751\u4e0a":[77,125,80],"_incompatible":2,"\u5b66\u3073":[108,75,130],"\u7dad\u6301":[132,54],"\u9577\u3059\u304e\u308b":125,"\u5168\u4ef6":[63,181,150],"\"ddl":80,"\u518d\u8d77\u52d5":[],plugin:[],"-suggest":[],"_expression":[108,178],".org":[3,101,9,188,164,109,151,85,13,14,17,157,119,44,24,167,74,102,80,129,130,152,89],"\u88dc\u6b63":[],"\u628a\u63e1":124,otherwise:[40,79,103],comment:[184,78,182],"\"fulltext":90,"\u304a\u304d\u307e\u3057\u3087":13,"-history":27,"\u4e00\u6587":[],"\u4ee5\u524d":[70,184,125,7,13,27,189,80],"\u30ab\u30b9\u30bf\u30e0":9,"\u91cd\u307f\u4ed8\u3051":[70,108],"\u30e1\u30e2\u30ea":[],"\u5c0f\u6570\u70b9":13,"\u52c9\u5f37":38,json:[],"\u91cd\u307f\u4ed8\u304d":[],copied:40,"\u901f\u3044":[94,80],"_end":2,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":27,"\u306a\u306b\u5bfe\u3057":[181,150],finished:[148,103],bye:46,"_domain":2,"=..":151,"\u5168\u4f53":[],value:[],"=arg":178,"\u540c\u3058":[],almost:139,"\u6307\u91dd":[],"(cve":80,"\u30bf\u30a4\u30df\u30f3\u30b0":[7,3],regression:[],".db":[97,172,3,102,125],pkgs:129,"-endpoint":[131,64],optarg:[56,83],"\u67af\u308c":[141,187],"\u4e09\u7a2e":[],":!":181,"[apt":7,"\u672c\u4f53":88,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":151,center:168,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":125,builder:86,sets:16,position:[40,46,90,38,110],"*result":113,"1byte":172,"\"ellipsoid":168,"\u8868\u793a":[],"-platform":[],stores:84,"_byte":[2,172],"x\u30df\u30ea":[45,150],"|..":80,"\u5229\u7528":[],stored:[64,48],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":94,":<":[108,181],"\u958b\u59cb":[108,75,161,167,125,82,59,177,27,79,80],"\u300c\u5f0f":84,"_true":79,"\u3055\u3093":[130,154,32,146,125,7,169,54,77,27,178,112,80,119],add:[108,90,160,14,7,20,38,80,119],"\u3002gqtp":[179,2,172],"\u3055\u3089":78,match:[],tests:151,"|none":108,"\u5730\u57df":132,elapsed:[131,135,4,148],qwik:157,like:[9,121],success:172,"_leak":177,"_decr":79,"\u6709\u76ca":132,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":54,works:[40,148],soft:139,"\u63d0\u6848\u7528":131,"\u4e0d\u6b63":[1,154,125,177,27,80,65],"((x":45,"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":125,"\u8ca0\u8377":[154,9],"\u7121\u52b9":[108,181,123,125,7,113,9,63,77,188,112,176],"\u610f\u56f3":[181,182,125,7,115,78,80],tmp:[3,151,131,153,95,97,125,59,102,105,178,175,54,172],"_optarg":[77,56,83],sjis:[188,42,97],"\u30b5\u30de\u30ea":125,"\u5f62\u5f0f":[],",\"domain":130,"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":150,"\u30d0\u30b0":[27,124,125],"\u3046\u307e\u304f":[],dcb:80,host:[178,167,102,172],"\u6319\u52d5":[],"\u30c0\u30e1\u30fc\u30b8":70,about:[40,135,12,122,35,148,17,20,139,28,160,81],actual:[9,12],socket:172,"\u3055\u305b":124,"\u4ee5\u5185":[184,74,18,150,176],"\u3055\u304d":13,"_time":[135,148],tomo:44,"\u3055\u3044":[141,2,3,143,128,94,45,46,26,136,7,90,101,102,103,10,147,109,188,54,164,108,75,150,85,13,153,14,70,59,19,25,95,65,22,119,68,49,177,24,165,166,167,125,73,182,74,170,117,77,127,174,80,178,129,181,130,132,133,115,152,184,36,89,38,9],introduced:9,"\u524d\u65b9\u4e00\u81f4":[],"!!":[58,44,38,9,184],"\u6307\u3059\u5024":63,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":151,"!)":9,dataset:[131,64,186],"_object":2,guard:122,"\u30ec\u30fc\u30bf":7,rch:90,">default":4,"\u901f\u5ea6":[44,94,167,125,77,27],"\u7591\u554f":78,glib:125,"_inappropriate":2,"[power8":80,but:[12,122,131,103,139,127,64],"\u3068\u3068":[87,119],"\u3068\u3069":50,"\u3068\u306e":150,"\u3068\u3063":9,"\u30fb\u5168":155,buf:[113,79,121],bug:[7,42],"\u5730\u56f3":132,"-w":151,dangerous:[136,83,121],"\u3068\u3057":[45,97,48,9,108,75,150,13,16,114,18,44,68,69,167,125,169,78,175,176,80,179,38],"\u3068\u3048":[108,11,132,123,144,32,47,38,74,188,84,80,178],binlib:151,"\u3068\u304d":[1,90,3,45,144,97,48,7,9,10,77,188,53,54,164,108,75,150,151,85,13,153,14,16,115,113,18,158,63,65,22,44,69,120,134,124,125,73,169,172,27,174,175,176,80,178,129,189,181,130,132,154,32,135,152,184,89,38,102],"-disable":[131,27,154,80],"!\\":150,epel:[7,129],colum:139,pid:[1,188,97],"\u8a08\u7b97":[92,1,75,150,111,132,45,108,48,7,74,18,125,147,168,176,80],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[154,188,151],"-config":[1,154,97,7,27,188],saer:[153,18],"\u4f7f\u3044\u5206\u3051":[70,144],pip:20,"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":151,"\u305f\u3060\u3057":[1,181,144,97,125,73,60,36,63,27,178,80,150],"\u305f\u3060\u3051":7,"\u6291\u5236":[7,125,80],detail:167,"\u3068\u308b":79,"\u4fc2\u6570":[108,69],"\ufffecrch":90,"\u3068\u3082":[108,150,165,167,32,182,74,181],"_vars":40,"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":108,"\u306e\u3044\u305a\u308c":[95,91],"\u307b\u3069":[141,3,13,153,38,65],cpu:[131,132,167,9,188,54],"\u5909\u3048\u308b":[70,108,38],"\u307b\u3046":80,"\u307b\u304b":[13,132],"\u2026\uff09":18,"4e":165,"|ro":108,"\u3002groonga":[3,4,5,94,7,101,9,71,188,164,108,11,150,14,167,125,73,78,176,80,178,82,129,181,132,152,88,102],"\u6e1b\u3089":[7,94,18,91],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":63,tweet:114,"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":178,"\"ab":169,under:[131,9,64],"-ci\u4e0a":125,"\u3067\u3064\u306a\u3052\u308b":108,"\u904e\u7a0b":60,"/acccess":141,"/plugins":[22,174,154,125,10,188],"\u5b9f\u6570":45,"\u6761\u4ef6\u5f0f":[],"\u6700\u9577":[27,167,150],"_snip":[7,80],"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[153,176],"-repository":[7,14,151],estimates:110,"/mm":150,"\u7b87\u6240":[135,32,151,125],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[27,125,80],"\u4e00\u8a9e":70,"\u5b9f\u65bd":151,"\u81f4\u547d":7,"-rpm":151,"-idf":[122,12],"\u7d44\u8fbc":[67,145,111,6,45,72,168,180,73,34,8,155,140,157,159,190,105,37,82,126,107],"=largetable":103,"\u683c\u7d0d":[],"\u53cd\u8ee2":150,"\u30e2\u30cb\u30bf\u30fc":[152,129,14,164],"\u9069\u7528":[],"\u3002output":[157,80],studio:[7,77,101,125],path:[],"\u95a2\u4fc2\u5f0f":[],".ddl":167,"_scorers":12,"_target":[],"_key":[],"\u79cb\u8449":74,changed:[42,9,103],"\u5f62\u614b":[132,188,38,150],"\u58ca\u308c\u308b":[1,154,125,7,27,80],"\u63a8\u79fb":11,"\u3082\u3063\u3068":108,"-ci":[125,80],"\u30d3\u30eb\u30c8\u30a4\u30f3":125,"\u8fd4\u5374":[105,108,3],ts:38,"\u8aad\u307f\u3084\u3059\u3044":112,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[77,95,80],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":125,noarch:[164,129],m6:24,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":120,namebuf:[79,121],autogen:[7,151,119],"\u30a2\u30e1\u30ea\u30ab":75,"\u5909\u308a":80,"-bind":[7,27,97,77],must:[40,110,83,131,48,136,103,61,139,84,64,121],me:[76,38],te:[90,38],"\u7f6e\u304d\u63db\u3048":[97,181,80,119],mb:7,mm:[148,150],ml:124,"\"blank":189,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":167,mv:190,install:[],my:[108,181,150],"/xml":54,"_idf":[],"\"s":[90,153,18,38,176],end:[179,161,4,172],eng:[153,176],"\u3002html":161,"\u3002functions":177,"\u30d7\u30ed\u30bb\u30b9":[22,82,11,3,132,97,125,7,126,59,9,10,167,159,54,179],env:175,rroonga:[12,182,125,17,115,100,158,78,80,81],"\u30b4\u30df":[27,154,126],"\u7d42\u4e86":[],description:[184,144],"-devel":[164,129],"\u305d\u306e\u5f8c":[108,150,16],".tar":119,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[],"-files":[],"\u5c0f\u3055\u3044":[108,69,181,94,146,63,168,38,65],".tag":108,"]isk":178,"\u5272\u308a\u5f53\u3066":[17,154],"/tab":77,"\u4e88\u5b9a":[68,11,85,87,32,75,147,27,54,178],executed:102,"\u7acb\u3061\u4e0a\u3052":167,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":80,"\u305f\u304f":[130,125,32,169,27,178,54,119],"\u5bfe\u8c61table2":113,synonyms:175,"\u300c\u697d\u3057\u3044":144,"@packages":151,gqtp:[],"\u305f\u3073":[74,11,167,151],"\u305f\u3060":[164,85],"\u8fd4\u308a\u5024":[125,80],"\u300chello":108,"\u4e00\u884c":[167,154,97],"\u3072\u308d":143,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":125,"\u3072\u3089":[176,38,181,150],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,notified:103,"\u3054\u3089\u3093\u304f":104,"2\u3064":[0,141,3,95,48,54,164,108,111,14,115,65,125,73,182,77,78,80,178,129,181,130,184,152,38,191],each:[131,35,48,18,9,103,153,148,84,176],searc:176,signing:151,"\u3002\uff08":[92,108,154,181,119,94,45,144,32,47,16,126,18,150,158,63,27,48,38,176,81],"\u3002\uff09":[92,1,144,181,119,94,108,32,47,48,18,150,63,27,81,38,154,65],"(byte":[113,121],"\u6e96\u62e0":[9,125],goo:[181,150],msgpack:[4,172],"\u30da\u30a2":[108,91,13,48,169,18,175,176],newly:[127,32],"\u3002centos":77,"\u4f59\u8a08":124,"\u4e8c\u756a":[],free:[148,126,154,80,16],"\u305f\u308a":[108,93,132,45,158,124,141,94,88,178,80,65],"\u305f\u3089":[108,150,5,182,154,124,141,115,54,96,151,77,188,38,176,80,119],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":59,freq:48,"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u305f\u3081":[],"\u53e4\u304f":80,"\u53e4\u3044":[],"_locked":79,filter:[],onto:139,rand:[],already:[40,139,19,64],"\u53ef\u5909":[27,95,37,172],"\u897f\u66a6":150,top:[27,110,34],"\u30d6\u30e9\u30a6\u30b6":[188,102,151,119],".groonga":[119,129,151,164,24,14,167,152,101,188,89],too:[77,78,172],tom:115,tood:40,"_pragma":108,tool:81,serve:151,wareohji:7,".com":[189,3,151,130,13,74,102,104,119,81],"\u6d0b\u723e":27,"\"good":[108,150],"_untag":[],expr:[79,84,53,118],"*cursor":110,obata:154,"_isspace":40,"\u8d64\u9053":75,ram:167,"\u6709\u3057":95,"\u5834\u5408":[],"\u5f93\u3063":[108,113,63,36,56,54],"\u4e00\u89a7":[],"_source":151,hanako:170,"\u591a\u9762":132,"> y":125,"/stop":[163,46],"\u5f93\u3046":154,"/share":[27,97],"\u3044\u307e\u305b":[92,108,90,175,191,94,181,125,54,135,9,153,150,178,38,129,80,65],bsd:[188,80],"\u3072\u3068\u3064":[7,181,111],"\u30b5\u30b8\u30a7\u30b9\u30c8":[],"\u30ed\u30fc\u30de":176,",..":[58,105,108],"\u5225\u9014deb":151,"\u30ed\u30fc\u30c9":[],"\u30ec\u30b3\u30fc\u30c9":[],marverick:154,"\u307f\u306a\u3055":69,pkg:[24,154,188],"\u5ea6\u8868":154,"\u5c0f\u6570":[],"\u6c42\u307e\u308a":132,"\u3002hook":93,"\u306b\u3064\u3076\u3084\u3051\u308b":124,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":69,"\u59cb\u307e\u3063":[135,169],"\u3092\u3054":177,"_valid":9,fontaine:27,"*fin":53,"\u3064\u3064":[70,115],"/example":12,watch:151,"\u306f\u307e\u3068\u3081\u3066":151,report:61,"\u3064\u304d":[66,68,109,85,108,73,117,147,175,80],"\u3064\u304b":146,"\u3064\u3044":184,"\u7d50\u679c":[],hendro:125,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[],"-per":[131,27],"_with":[143,144,113,121,150,65,181],"\u3064\u3051":[108,75],nul:[40,27,38,83],"-commnad":11,ciritical:9,"\u5bfe\u8c61cursor":[63,120],"_for":[77,69],"\u4e8c\u3064\u76ee":[],"\u30d7\u30ed\u30b0\u30e9\u30e0":[150,95,154,7,9,88],"\u56db\u6368":27,"\u30d7\u30ed\u30bb\u30b9id":172,"\u30b5\u30fc\u30d0\u30fc":[],"\u59cb\u307e\u308a":151,"\u59cb\u307e\u308b":[108,181,175,167,73,169,113,60,54,38,176,80,150],news:[],"\u82e6\u624b":132,"\u3068\u3057\u307e\u3057\u3087":[78,91],extracts:84,"\u30e9\u30f3\u30c0\u30e0":74,"4gib":[94,172],"\u65b9\u5411":63,"\u591a\u91cd":179,"\u5f8c\u304b\u3089":157,"\u7d4c\u7def":[13,45,74],"/or":136,trust:151,"\uff13\u3064":45,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":167,"\u7b49\u3057\u3044":[108,69,181,79,150],"\u7b49\u3057\u304f":[69,181,150],"&lt":[161,32,47],been:151,"\u30a8\u30e9\u30fc\u30ed\u30b0":141,"_blog":78,"\u8d77\u6e90":13,"/shutdown":[97,9,54],tokenmecab:[],"\u5217\u60c5":90,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[],"-threads":[131,97],xxx:[97,125,150],"_not":[108,2,136,59,170,172,103,127,56],"\u6700\u9069":9,"\u7528\u9014":[164,108,85,132,14,125,135,152,101,141,137,94,129,80,178],"\u6728\u4e0a":63,"*ctx":[40,41,79,120,83,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"\"d":38,"\"e":[153,90,38,176],"\u3070\u3059\u3079\u3066":38,"\"a":[182,108,90,80],"\"b":[182,108],"\"c":[182,108],"\"n":[135,108,3,181,172,82,9,150,102],"\"o":38,"\"h":90,"\"i":[135,163,181,184,108,114,78,150],"\"k":44,"\"t":[90,38],"\u5c1a\u4e5f":125,"\u4e0a\u304c\u3063":38,"\u81ea\u8eab":[7,27,90,97,175],"\"}":[143,48,100,9,54,58,108,150,13,153,114,115,18,44,163,23,122,182,74,170,78,176,178,181,130,189],"\"x":[125,80,150],"\"@":184,"\u691c\u7d22\u4f8b":[],suggest:[],"\u30bf\u30fc\u30df\u30ca\u30eb":9,niku:80,"\"\\":178,"\"]":[44,108,3,150,85,70,184,95,97,32,157,176],"\"_":[3,91,12,95,46,48,100,9,109,127,54,143,122,114,108,75,150,85,13,153,58,115,59,18,157,44,163,70,125,182,74,170,96,78,176,178,181,130,184,135,189,102],"\"[":[7,178],"\"%":178,"\"'":[108,23,181,85,70,144,125,7,178,80,150],"\"\"":[182,45,112,150,178],"\"#":27,"\",":[90,3,91,12,95,97,46,47,48,100,9,103,105,127,143,122,114,108,75,150,85,13,153,58,115,59,18,157,44,163,70,161,167,125,126,74,170,172,96,78,176,178,181,130,182,184,32,135,109,189,102],"\"-":[27,75],"\".":[122,130,103,12,150],"\"/":[95,97,74,59,105,38],"\"(":[91,125],"\")":[44,75,150,111,123,115,125,7,34,74,100,103,96,80],"\"*":7,"\"<":[161,125,47],"\">":[161,4,47,32],"\"?":[108,4],"\":":[90,3,4,12,68,47,48,46,100,9,103,147,109,127,54,91,114,108,75,150,85,13,153,58,115,59,18,143,44,163,49,23,122,161,166,167,82,126,74,170,172,96,78,176,178,181,130,182,184,133,189,38,102],"\";":[167,9,54],"\u78ef\u90e8":125,charlie:184,"\u9054\u6210":23,"/run":[97,151],"\u3084\u3059\u304f":[154,80],"\u3084\u3059\u3044":[1,108,32,47,158],"(term":[122,12],"\u5bfe\u8c61table":[63,113,79,121],"_tags":[44,184],"_ctx":[],"\u4ecb\u6587":184,"_buffer":[86,2,172,16],".scr":167,"*bottom":110,"\u30ce\u30fc\u30c9":[7,63],"_selector":[],"5f":167,"5c":82,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":[],ceekz:125,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[181,150],advanced:42,"\u542b\u3080\u5168\u3066":59,"\u5c0f\u6587\u5b57":[63,90,3,189,65],poedit:119,"\u6b63\u3057\u304f":[181,125,7,77,176,80],"\"engine":[18,176,48],"\u6b63\u3057\u3044":[169,18,175,181],"\u7d20\u89e3":[132,188,38,150],"\u307e\u308f\u308a":88,"\u672a\u5b9a\u7fa9":80,successfully:40,"_str":[184,84],jennifer:143,escape:84,"\u73fe\u4ee3":132,tutorial:40,".zip":119,"_right":[27,110,34],".github":119,allocate:[],ahost:178,core:167,deleted:79,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":7,night:[114,91],"\u3001\u300c":[44,1,130,70,144,97,108,74,38,176],"\u6d88\u3048":94,limitation:139,"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[7,3,80],ppa:[],"\u3002ascii":[181,150],"\u3092\u3054\u89a7\u304f":132,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":105,two:[148,9,64],"[@":[7,27,125,80],git:[104,151,119],"[{":[9,54],"[a":131,gib:[66,139],"[test":7,"\u3084\u307e\u306d":[125,80],"[n":[125,80],head:[179,172,80],"_interrupted":[2,103],")senna":175,"\u6253\u3061":23,removed:10,"\u6253\u3064":151,"\u57f7\u7b46":[92,78,99],"\u9032\u6570":[126,150],versions:141,"[:":102,"[#":[7,27,112,80],"[\"":[44,108,150,85,13,184,95,32,70,153,176,126],autoconf:27,"\u5185\u8a33":70,"[,":168,"\u6dfb\u4ed8":7,"\u8abf\u3079\u308b":[34,168,125,165],decrypt:151,"(match":115,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[],check:[],ongaeshi:[7,77,154,125],"\u305f\u304b\u3063":[18,91],no:[1,42,94,108,125,110,172,153,139,178],"/mxcl":151,when:[131,97,83,121,20],ne:90,ng:90,ny:184,setting:139,"\u5217\u6319":3,"\u6ce8\u8a18":125,tid:120,saerch:[153,18],nt:38,"\u4e09\u756a\u76ee":150,"\u5024\u3054\u3068":130,"=number":[],"_touch":[154,83],"_unlock":[40,79],sql:[23,130,12],longer:42,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u672c\u756a":151,"_memory":[],"\u4e00\u8cab":[],backward:127,varying:40,llt:90,"\u30d0\u30c3\u30d5\u30a1id":126,"\u30d2\u30c3\u30c8":[108,69,143,70,184,144,125,114,176],row:32,"_same":125,"\u4e00\u822c":[108,3,181,132,17,158,79],environment:81,"}attr":125,"*tid":120,advantage:32,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[181,150],"=get":46,enqueue:134,"6elz":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,level:[40,6,97,8,9,148,64,172],"\u51fa\u6765\u308b":184,brother:181,"/db2":54,"/db1":54,slower:[122,12],"\u6d88\u305b":9,obsolete:141,"\u6f14\u7b97\u5b50":[],"\u79d2\u8868":[13,70,74,150],port:[131,167,172,51,89,102],"\u66f8\u304d\u5f8c":144,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":151,"_truncate":[27,113,121,80],"\u30d5\u30a1\u30bb\u30c3\u30c8":108,"/load":[68,9,54],"\u56f0\u3063":124,".builtin":83,reply:78,"/test":38,"3\u3064":[108,23,130,13,161,32,125,135,59,158,3,78,177],"\u751f\u3058":[145,6,72,8,155,190,107],baseball:[44,78],"\u9ad8\u6a5f":[132,69],"=groonga":[131,9],"\u6c17\u8efd":[124,80],"\u6b63\u78ba":[13,82,3],"\u63d0\u4f9b":[],"_success":[40,108,2,83,5,16,17,19,148,84,121],"-pgp":151,"\uff08ruby":81,"\u64ec\u4f3c":[],"\u9006\u306b":[44,184],"\u30ea\u30f3\u30af":[108,181,151,13,125,7,104,80,150],"_delete":[63,27,113,79,93],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":77,"\u307f\u307e\u3057\u3087":[44,108,23,91,130,13,184,74,3,78,150],"\uff08messagepack":188,handled:9,"-src":152,sports:44,"\"name":115,"\u76f8\u5fdc":113,memory:[],msg:134,outputs:[148,64],"_concurrency":179,cases:[122,12],"\u30bb\u30c3\u30c8":[46,69,144,113,63,79,107],"\u3044\u308f\u3086\u308b":44,"*dest":113,"_asc":113,".txt":[38,151],"\u30b9\u30b3\u30a2\u30e9\u30fc":[],"\u672a\u4f7f":80,"[tag":108,memry:139,"\uff11\u3064":[95,134],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[179,141,125,100,9,80],"/setup":81,"_sis":[143,144,181,113,65,150],"-docutils":151,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[],":clear":151,shibuya:154,"\u76f8\u5f53":[135,74,3,130],"\u5f15\u304d\u8d77\u3059":[7,125],clone:[],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":81,crashed:136,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":38,"\u7f72\u540d":[],quetzal:7,succeeded:[73,136,59,170,127],ueno:[7,154,146],"\u8efd\u3044":59,"\u30b0\u30eb\u30fc\u30d7":[],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u3002tag":44,"_res":167,"/srpm":151,"_descriptor":[2,172],"\u542b\u307e\u308c\u308b":[108,69,3,151,13,132,161,97,47,70],"\u56f2\u307e":[32,47],"\u56f2\u307f":[161,97,32,47],"[[":[143,12,97,68,47,46,103,147,105,127,108,75,150,85,13,114,115,59,44,163,23,70,161,170,78,176,181,131,184,32],"\u30d9\u30fc\u30b9\u30d1\u30b9":9,"_pass":9,"\u56de\u7e70\u308a":167,cutter:[],"\u89e6\u308c":3,"\u6ce8\u76ee":[108,130],"\u3059\u306a\u308f\u3061":13,term:[91,12,126,122,73,183],name:[],"\u500b\u3005":[70,142,11,23,69],"\u65e5\u3005":124,"\u30b7\u30a7\u30a2":26,"\u534a\u7121":[27,65],"\u5bfe\u8c61column":121,removep:79,"\u53d6\u308b":[150,172],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":125,"\u30cd\u30b9\u30c8":[7,78,125,80],"\u30d1\u30fc\u30b9":[27,123,84,158],exclamation:77,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":72,"\u6642\u4ee3":132,"\u3042\u3044\u307e\u3044":65,cancels:103,"\u60aa\u610f":150,libstemmer:80,"\u7d14\u7c8b":38,"-default":[],"=unique":103,"\u4e00\u4ef6\u9032\u3081":63,"\u56f2\u3093":150,"\u914d\u7f6e":[3,151],"\u56f2\u3080":[3,32,125],"\u3002key":[113,144,3],"\u30b3\u30fc\u30c9":[77,90,125,80,119],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":181,"\u4e92\u63db":[164,129,11,150,151,14,133,152,54,36,77,80],turn:9,"\"element":85,"\u30db\u30b9\u30c8":[179,151,97,167,7,172,27],yum:[7,164,129,151,20],"\u5b8c\u7d50":124,sentense:77,sho:125,"\u304a\u9858\u3044":[167,124],origin:119,fetched:48,redhat:[27,188],"-version":[],"\u3002geopoint":184,"\u30b7\u30f3\u30d7\u30eb":[191,130,158],"_function":[40,2,12,172,103,77],array:126,"\u7d5e\u8fbc":[],"\u30cf\u30a4\u30d5\u30f3":[3,65],returns:[40,110,121,131,113,103,127],"=fedora":151,"\u3084\u307e\u3060":80,releases:5,kbytes:167,released:[42,151],"\u30a8\u30f3\u30c8\u30ea":[108,150,181,17,182,121],specify:[12,131,186,136,9,64,119],"-httpd":[],"(tab":175,require:12,"(tag":100,"< t1":69,"\u3080\u308b\u3093":[181,150],posix:[77,150],"\u300cnippon":176,pre:42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":66,"_local":[167,157],ann:151,"_groonga":135,enourmous:48,any:12,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[],takuto:154,"_permitted":[2,172],"\u30d5\u30e9\u30b0":[1,90,3,143,6,95,99,7,8,145,107,108,150,85,13,190,16,155,63,65,72,73,126,172,27,112,80,178,181,133,189],animation:44,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[25,108,188,97],multiple:[131,103],"_suggest":146,"_down":[2,172],cleared:136,"\u81a8\u5927":132,"\uff09:":[164,68,144,24,14,129,152,147,89],"\u4e2d\u65ad":[7,27,93,80],geoindex:[],"\u5c06\u6765":[68,75,23,85,133,125,166,49,172,147,54],"\u4e00\u81f4":[],"\u7551\u30b1":[77,80],"\u547c\u3076":[7,177,5,158],"\u5ea6y":45,sitecountry:[102,130],"\u540c\u3058\u91cd\u307f":115,"\u88dc\u5b8c":[],"\u30d1\u30c3\u30b1\u30fc\u30b8":[],"\u5024\u3088\u308a":[108,69],"\u7530\u8fba":125,"_json":106,"\u985e\u7fa9":108,explicitly:20,"[2":97,"\u5f53\u8a72":[11,79],define:[],ssh:151,"\"null":7,"_port":167,":')":73,tokenfilterstopword:[],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,mapped:139,ignored:[7,83,103],"\u30b9\u30b3\u30a2\u30fc":[],"\\\\\\":178,replies:78,"#'":97,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[184,1,65],"\\\\z":178,"<gqtp":167,managing:83,"\u77ed\u7e2e":77,"\"#\"":167,"(..":125,"_tokenize":[],"\\\\a":38,"#{":148,cities:75,come:184,"[(":178,"\u4e0d\u5909":60,quiet:172,"\u30ec\u30b3\u30fc\u30c9id":[],"\"#{":150,"\u4e00\u822c\u7684":[132,38],color:189,whombx:125,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u91cd\u307f\u3064\u304d":80,"\u6a19\u8a18":80,"\u76f8\u5bfe":[27,108,151],"_clone":151,raring:[125,80],"#proxy":9,"\u5f8c\u4e8c":[],"*db":[79,83,16],"\u6709\u9650":108,"(age":96,"\u4ee3\u308f\u308a":[189,172,181,161,97,32,47,101,9,178,188,38,65],engine:[90,12,122,153,161,32,47,48,169,18,176],"/vdw":[74,3,130],"_tokenizer":[],"_value":[],"_tokenized":[90,133],"case":[40,12,122,10,139,64],"\u25cb\u25cb":124,"\u30ed\u30ae\u30f3\u30b0":16,shops:144,"\u975e\u63a8\u5968":7,"\u53d7\u3051":[75,3,91,172,125,54,7,9,96,134,80,150],"\u305f\u3068\u3048":70,saerc:[153,18],"\u559c\u3073":[87,119],archive:[],html:[],"\u5831\u4ee5":90,"\u516c\u5f0f":[27,129,164,115],events:54,"\uff08romaji":176,status:[],downloads:101,"[\u8a9e":126,"\u7d4c\u7531":[73,145,151,6,167,154,72,7,126,8,155,140,157,159,190,105,37,82,80,107],"\u8907\u6570":[],"-jemalloc":80,without:[48,9,32],"[geo":[27,125],"\u30d1\u30bf\u30fc\u30f3":[135,178,181,150],"/unit":177,"\u4f5c\u6210\u6e08":97,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],unicode:189,"\u3088\u304b\u3063":70,"\u5408\u7406":38,"\u53ef\u5426":3,"\u5c11\u3057\u9055\u3044":108,except:139,blog:[70,182,78,3],"\\'":[97,181],"\\%":101,"\\\"":[109,161,144,32,47,58,182,84,178],"\u9577\u65b9\u5f62":27,hino:125,"\u63a2\u3059":[78,38],"\\(":181,"/base":151,"\\\\":[38,161,84,182,178],")..":151,"\u4f1d\u7d71":132,accepted:103,"\u3068\u304a\u308a":[13,66,74,167,130],"\\u":38,"\\z":[38,178],"\\a":[38,178],"\\n":178,"*mutex":40,"_send":[17,106,16],"-mm":[148,150],"_host":167,"\u985e\u7d39":70,"\"groonga":[108,150,85,32,169,182,65],frees:40,automake:154,"[snippet":[32,80],"@uzulla":27,"_unlink":[79,16],mooz:27,"\u4e09\u3064":[75,144],o0:[],"/eval":147,"\u5f0f\u96c6\u5408":178,"\uff08personal":[],"\u30b9\u30da\u30a4\u30f3":75,tokenbigramsplitsymbolalpha:[],oo:[94,90],on:[40,42,83,12,122,161,32,47,131,113,90,9,110,79,28,106,183,54,119],om:38,ok:170,of:[],"_escalation":[],"\u30e6\u30fc\u30b6\u30fc":[],"\u8a2d\u5b9a\u5024":[165,1],os:[],or:[40,91,12,97,100,103,148,106,108,110,115,113,61,121,122,74,172,127,175,80,181,83,131,136,139,38],tokentrigram:[],"_leading":108,"\u5c11\u306a\u3051\u308c":65,"\u5f0f\u5168":[181,150],"\u884c\u76ee":[135,167,151],"\u8a66\u3059\u4f8b":38,"\u30c1\u30e3\u30f3\u30af":[77,126],libmecab:[152,14,151],"{path":188,"\u8a55\u4fa1":[69,150,181,125,182,147,178],there:[139,141,181,85],"\u53d7\u3051\u53d6\u308a":[69,3,9],strict:80,"\u300ccomments":184,"/modules":[154,9],"\u901a\u308a":[92,90,12,95,47,48,100,105,188,122,108,75,150,151,153,14,115,61,106,178,65,23,70,161,182,170,96,78,168,81,181,133,32,109,38],"*escaped":84,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":189,"(location":[44,74,75,184],datasets:186,":set":80,"\u69cb\u7bc9":[],"\u8a9e\u7528":38,"\u4f5c\u3063":[130,70,113,9,63,27,189,176],"\"\u8a9e":38,"/hostname":[167,97],"\u30de\u30fc\u30b8":[7,119],"\u65b9\u5f62":[75,168],mike:170,"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":125,"\u4f5c\u308a":[78,18,176,80,65],"\u4f5c\u308b":[44,108,91,85,184,134,18,178,158,150,119,80,65],"\u30de\u30fc\u30af":38,"\u4f5c\u3089":23,"\u5149\u7537":125,"\u3066\u3057\u307e\u3044":124,"\uff08proc":93,"_type":[],ftp:167,includes:122,included:122,"\u53d7\u3051\u53d6\u3063":132,"\u3002ctrl\u30ad\u30fc":3,"\u30ea\u30bd\u30fc\u30b9":[17,114,80,5],"\u65b9\u5f0f":[132,78,3],":mm":[148,150],"/usr":[188,97],"\u6c17\u306b":[95,79,23,119],"/select":[9,103,102],directory:[40,131,64,172],"4\u3064":[94,32],"+or":178,"\u30c7\u30fc\u30e2\u30f3":[],migrated:[108,181,150],all:[108,110,91,151,35,181,150,48,7,136,148,139,16,121],dist:151,"\u7d1b\u3089\u308f\u3057\u3044":178,executing:[131,16],"\u6761\u4ef6":[],disk:178,"\u306f\u305d\u306e":16,"\u8fd1\u3044\u9806":92,jessie:[125,80],"\u30d3\u30c3\u30c8":[],"\u5b58\u5426":79,"/rab":[74,3,130],init:[7,188,53,80],"\u304a\u5f85\u3061":26,"\u5b9f\u7528":80,".name":[126,182,184],"[logical":77,"[travis":125,"\u95a2\u9023":[],"=message":[],"-word":108,systemctl:141,"***":8,",\"tags":44,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[27,151],"\u8a9e\u7248":151,and:[40,42,12,97,46,48,9,103,148,106,28,108,110,150,115,113,19,61,20,64,163,121,122,125,74,78,79,80,83,131,32,186,136,139,84],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":80,longtext:[45,110],list:[151,64,186,20],"_html":[],"\u304a\u3088\u3073":[3,151,13,132,97,7,188,53],"\u4f4e\u6e1b":[141,154],"\u6d69\u4e8c":7,"<protocol":97,"\u89aa\u5207":154,"{key":108,"\"message":[122,178],yappo:[42,125,80],"\u884c\u3048\u308b":[7,44],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[],"/news":151,tex:90,"/centos":[129,141,151],"_scalar":[91,12,95,46,47,100,109,127,108,75,150,115,114,70,59,157,44,163,23,121,122,161,73,182,170,96,78,178,181,130,184,32,136,139],will:[40,122,79,139],"(packages":151,sub:[],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[],sum:[108,80,12],version:[42,3,4,151,172,167,16,82,116,102,27,9],memcached:[],tags:[44,108,85,95,100,105,65],"\u88dc\u5b8c\u8a9e":176,"#worker":9,serihiro:7,"\u6163\u308c":130,allows:32,matsuu:154,"\u65b0\u65e7":77,options:[],gtihub:27,tokenunigram:[],ocelot:[27,125],"\u5358\u7d14":[69,143,168],"\u300c\u697d\u3057":144,"/atv":[74,3,130],"\u69cb\u6587":[],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[82,140],"\u7a4d\u7b97":[108,69],"\u3002ruby":178,"_expire":79,thus:[64,186],"\u305f\u3051\u3069":108,known:12,"\u547c\u3093":[108,130,144,80,5],"\u3002git":151,"\u30d7\u30ed\u30f3\u30d7\u30c8":4,"\u524d\u63d0":[],"_supported":[2,172],"\u89e3\u6790":[],"\u79fb\u884c":[27,11],"_encoding":[],"\u306e\u306b\u5bfe\u3057":16,"=table":65,"\u671f\u5316":[7,16],"\u30ea\u30cd\u30fc\u30e0":27,grndb:[],"\u958b\u767a":[],"\u7406\u7531":[],">\u529b":8,recursive:[104,151],rather:[122,28,12],"&..":102,overcommit:139,disable:[131,27,9],"_text":[133,84,177,80],"\u30ea\u30dd\u30b8\u30c8\u30ea":[],"-max":[131,27,97],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,"-munin":[],"-http":[],specifying:[40,12],"\"book":150,":\u79d2":184,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":151,"\u9ad8\u307e\u3063":132,disables:[9,20],developed:163,disabled:148,elfring:7,"\"is":13,"\u30bf\u30a4\u30d7":[108,93,167,77,27,54],"_link":[2,172],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":118,soccer:44,"\u30d6\u30fc\u30ea\u30a2\u30f3":45,"_large":[2,172],"return":[135,148,5,16],"\u52d5\u4f5c":[],"\u6d45\u898b":125,"|info":178,"\u5897\u3048":[147,78,90,178,85],"\u8a71\u984c":26,"-encodiong":150,innodb:132,"_enable":77,"\u8208\u5473":[132,178],"-create":[],"\u5897\u3084":85,weight:[108,121,12,85,13,7],generation:20,"_release":151,"/en":[9,151,20],errror:178,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":14,"\u6c42\u3081":[132,111],"_new":[7,27,134],"/managers":[9,54],"_chunk":77,"\u3072\u3053\u3055\u3093":[7,80],generate:[40,20],thread:[40,83,134,167,136,113,148,121],"\u9855\u8457":38,"\u306b\u3088\u308b":[],"_hash":[],"\u30ab\u30b9\u30b1\u30fc\u30c9":[],"\u5927\u304d":[85,94,7,126,9,65],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":80,"\u5f62\u72b6":92,"${":[108,150,115,139,119,178],"\u306a\u306a\u3069":[181,150],gpl:42,passes:[151,103],"\u5b58\u5728":[1,3,144,141,7,9,108,168,16,113,60,157,63,165,167,125,74,172,96,77,78,79,80,130,132,154,135,34,38],script:[],gpg:151,"\u3050\u3088\u3046":75,"\u60c5\u5831\u540d":105,passed:[83,103,151],recovered:83,gps:132,"\u8a9e\u691c":108,option:[131,148,97,64,20],"$(":[164,152,129,14,89],"/synonyms":175,"[bernard":77,"\u6574\u5408":[1,79],"\u6271\u3048\u308b":[165,125,80],"/*":[141,5,87,165,16,9,119],"\u898b\u308b":[108,2],"double":[77,150],"\u306e\u304b\u308f\u308a":80,"/groonga":[141,3,95,97,7,101,9,10,104,105,188,164,151,87,14,59,61,119,22,24,125,102,172,27,174,175,81,129,131,154,152,139,189,89],"\u307e\u308a":[77,108],"-get":[7,152,14,151,20],",[\"":70,"7e":167,"\u898b\u3066":[135,108,9],"\u307e\u307e":[11,150,130,13,124,125,151,77],"\u898b\u3064":[7,153,154],"/#":17,"\u540dn":[105,108],"\u307e\u3060":[68,11,23,150,153,108,32,125,82,172,147,27,80],"\u307e\u3067":[3,143,94,97,114,108,151,58,19,119,66,69,23,17,167,125,96,78,80,178,130,184],"\u307e\u3059":[0,2,3,4,5,6,7,8,9,10,11,12,87,14,15,16,17,18,19,20,22,23,24,25,27,30,31,32,34,36,37,38,40,41,145,67,45,46,47,48,49,50,51,52,53,54,164,188,58,59,60,61,62,63,64,65,66,44,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,152,88,89,90,91,92,93,94,95,97,26,99,100,101,102,103,104,105,56,107,108,109,111,113,116,114,115,13,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,135,136,137,139,140,141,142,143,144,147,150,151,153,155,157,158,159,160,161,162,163,165,166,167,168,169,170,172,96,174,175,176,177,178,179,180,181,182,184,185,187,189,190,191],"\u307e\u305a":[3,91,130,70,184,144,167,101,9,151,150,78,188,119],"\u307e\u305b":[40,41,141,2,3,91,5,92,94,45,144,97,68,47,136,7,147,90,102,77,120,105,188,54,58,108,75,150,151,85,13,153,190,167,113,16,17,115,59,18,60,19,63,159,95,65,163,49,23,121,70,165,71,166,124,125,114,73,169,170,172,96,27,78,79,175,176,80,178,82,189,181,130,182,132,133,32,135,38,117,119,84,140,9],"_list":[],"\u307e\u305f":[],"\u3058\u304d":32,"\u6c42\u3081\u308b":[132,75,130,168],centos6:7,"\u7279\u5b9a":[],superior:32,"[pat":7,"\u9069\u6642":93,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":78,"\u5024\u6bce":130,"\u306a\u3051\u308c":[41,2,71,95,97,7,100,9,188,58,108,109,150,85,13,113,16,17,59,178,65,23,121,167,73,182,96,79,175,81,181,84],added:[113,42,110],"\u3093\u3057\u304d":158,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30a3\u30eb\u30bf":7,exec:172,customize:9,"\u907f\u3051\u308b":108,"\u30e1\u30fc\u30c8\u30eb":[75,168],"\u89e3\u653e":[82,120,5,16,17,136,63,79,80],nothing:[106,61],"\u9577\u3044":77,"\u73fe\u5b9f":130,"\u307e\u307e\u3067":70,"\u3002id":16,"-oriented":32,"\u9577\u3055":[121,13,62,167,7,113,63,79],orangain:125,"\u624b\u52d5":9,"&query":102,".rb":[68,154,80],"\u304a\u3051":108,"_users":184,"\u304a\u304d":[132,151],"\u304a\u304b":188,"\u304a\u3044":[3,121,151,13,132,125,113,60,27,79,177,119],"\u59cb\u70b9":3,"_call":[2,103,69,172],"_format":[2,172],firewood:[7,125],"\u304a\u3070":[27,1,125],concatinated:131,"-ftp":167,"\u300cnihon":176,"\u4f4e\u6a5f":69,"\u904b\u7528":132,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[],rose:13,"\u629c\u3051\u308b":3,"\u671b\u307e\u3057\u3044":[132,124,151],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":9,longest:113,"\u304a\u3070\u305f":[27,125],"\u305d\u308c":[3,91,45,144,48,101,164,108,109,150,151,13,63,95,119,69,120,70,62,82,78,79,181,130,154,65,38],"\u306b\u304a\u3044":[13,11,151],"\u4fdd\u8a3c":[126,11],armhf:80,"\u6570\u5024":[],"(content":[109,32,12],"\u30b3\u30df\u30c3\u30c8":151,"\u3002the":[],"\u76ee\u4ee5\u964d":108,art:184,tobby:115,dump:[],"]]":[108,131,153,97,58,170,155,167],"][":[181,125,7,77,27,112,80,178],"\u305d\u3046":[100,124,150,96,81],are:[40,108,110,12,85,122,148,32,186,48,136,131,19,61,125,139,28,84,64,119],jemalloc:80,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[167,151,119],"_mutex":40,"]}":[13,126,182],"\u30b9\u30b3\u30a2":[108,69,12,85,70,153,7,131,74,60,77],"]x":184,"\u5897\u3048\u308b":[166,49],libraries:12,"\u547c\u3076\u524d":5,"/non":125,"\u305d\u306e":[],"\u3067\u3088\u308a":80,korea:130,recently:117,creating:139,"\u5927\u91cf":[44,69,3,94,80,65],"\u304a\u3088":19,"\u898b\u3064\u3051\u308b":[108,59,9,189,38,176],"\u304a\u308a":[74,80],solr:150,"\u672a\u521d":7,"\u30c6\u30fc\u30d6\u30eb":[],license:[42,151],"\u8a02\u6b63":175,"]:":178,"]%":178,"]'":[9,54],became:141,context:[84,79,32,9,16],"]\"":[7,184,125,178],"],":[90,3,91,12,95,97,46,47,48,100,102,103,105,127,143,122,114,108,75,150,85,13,153,58,115,59,18,157,166,44,163,49,70,161,167,82,126,74,170,172,96,78,176,178,181,130,182,131,184,133,32,135,109,189,38],"]/":102,"].":[108,80],"])":[67,161,168,19],finds:113,minagawa:125,"\u691c\u7d22id":113,reasons:61,logged:148,improper:172,"\u30b3\u30de\u30f3\u30c9url":54,"_cancel":[],"'alice":181,"\u7d76\u5bfe":[22,174,10],":#{":148,"\u8003\u616e":[70,91],due:32,"\u89e6\u308c\u308b":38,pg:96,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":9,po:[],kiske:7,"\u3057\u3084\u3059\u304f":7,"\u6574\u5217":[132,3],"(html":109,"\u8a00\u8a9e\u540d":119,"\u7b46\u610f":38,"\u30d8\u30c3\u30c0":[125,80],"\u79d2\u9593":27,"\u5730\u7cfb":75,evaluated:147,"(body":[161,47],"\"sug":169,concurrently:148,"\u5404\u8a9e":126,"\u6027\u5225":132,"_expansion":[],rid:[86,120],"\u30ed\u30fc\u30ab\u30eb":[150,151],"_most":[],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[],"\u6210\u679c":[],"*type":121,"/ppa":14,"\u5065\u4f5c":44,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[],"/hoge":97,"_info":[],abcde:133,edge:134,nanoseconds:148,"\\bin":101,"\"alice":181,"\u6b8b\u5ff5":13,"\u9006\u5f15\u304d":[],"\u3067\u304d\u308b":[],tables:[61,186,48,157,139,16],"\u4e92\u63db\u6027":151,"\u3002keys":113,"\u64a4\u5ec3":[154,107,97,80,10],teruya:77,"\u5024\u7528":27,"\u304f\u3060":[141,2,3,143,128,94,45,46,26,136,7,90,101,102,103,10,147,109,188,54,164,108,75,150,85,13,153,14,70,59,19,25,95,65,22,119,68,49,24,165,166,167,125,73,182,74,170,117,77,127,174,80,178,129,181,130,132,133,115,152,184,36,89,38,9],integer:97,"_finalizer":[53,16],"@wareohji":7,tomita:154,ignore:77,"\u6642\u523b":[135,83,184,167,82,18,180],".title":[13,136],"\u7f6e\u304b":[36,188,175,9],"\u7f6e\u304d":[91,151,154,63,79,178],"\u7f6e\u304f":188,"\u7f6e\u3044":[151,80],"\u5404\u8981":85,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[1,189,150,123,16,188,84,80],"/rroonga":80,retry:172,"\u69cb\u6210":[164,129,69,3,151,14,141,152,80],proc:[40,164,108,93,14,129,152,113,53,118],"-drilldown":[108,130,80],"\u5ea6\u5206":45,"_improper":2,"+ffef":38,"{type":131,"\u9577\u751f\u304d":65,"\u5b9f\u73fe":[],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],"\"service":18,range:[],"lzo\u3044":73,"\u672c\u6587":[78,109],")grn":77,"\u5831\u544a":[],"\u524d\u65b9":[],shimoda:154,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[97,9,80],question:77,"\u7a2e\u5225":133,fast:[135,108,90,181,12,122,161,32,47,58,100,109,78,150],"/hosts":151,"_links":[2,172],"html\u30bf\u30b0":109,files:[],"-query":[141,3,181,184,161,97,32,47,125,7,115,9,148,27,175,80,143],"-host":167,"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":65,aramaki:[27,154],partitioning:23,"_op":[56,84,69],"_or":[],characteristic:122,"\u306b\u3064":7,"_of":[2,172],highlight:[],"_on":[2,172],called:40,"\u63a5\u982d":[27,150,94],associated:40,horikoshi:27,"\u679c\u305f":3,warning:[6,97,122,8,9,148,178],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":85,"\u306b\u5bfe\u3059\u308b":[],oniguruma:77,"\"\\\\":178,tatsuya:7,grn:[],gro:32,newvalue:121,nice:114,users:[],"\u5c5e\u3057":[45,71,130],"\u305f\u3076\u3093":188,generated:[40,186,20],drilldown:[],"\u982d\u8f9e":94,"\u306e\u305e\u3044":38,"\u300d\u3001":[44,80,184],"'grn":123,"\u300d\u3002":158,"\u570f\u5185":184,"\u8868\u3059\u578b":45,"-deafult":27,"\u8aad\u307f\u53d6\u308a":[58,59,97],"-package":[],"\u30b3\u30a2":[188,9,54],"-count":82,"\u958b\u304f\u969b":7,"\u5272\u308a\u5f53\u3066\u308b":[13,94,3,35],issues:80,"\u30b9\u30ad\u30c3\u30d7":[77,125,80],"_pvector":[84,16],"\u8a9e\u6271":144,"\u30ad\u30fc\u30b5\u30a4\u30ba":94,"\u30cb\u30e5\u30fc\u30b9":114,stable:11,include:[142,12,87,122,96,23,80],"\u7e70\u308a\u8fd4\u3057\u6570":167,"=gr":131,"\u30de\u30c9\u30ea\u30fc\u30c9":75,"\"saerch":18,"\u30d7\u30e9\u30b0\u30de":108,"\u306a\u3068\u304d":132,"*user":[40,53],"\u3002run":177,"\u3067\u5024":[97,3],ranguba:[17,80,85],"\"complete":169,"-in":[79,151],"-id":[7,97,103],"_dir":[40,27,151,77],"|correct":153,"_use":[2,172,80,16],".po":[],smaller:[148,85],memset:77,".pc":[27,146],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":38,"-line":81,"\u3053\u3046\u3059\u308c":124,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[77,78,95,80,125],"\u3002buf":121,etime:179,"\u30a8\u30f3\u30b8\u30f3":[44,108,13,132,97,178],"{time":148,"-exact":82,"\u521d\u56de":119,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":92,"\u5341\u5206\u6c17":108,larger:[139,64,48],"\u4e0a\u3052\u308b":70,"/coremodule":9,"_name":[],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":97,"\u30c8\u30e9\u30a4":[27,65,181,150,94],">version":4,"\u5206\u6790":132,apple:189,apt:[151,14,7,152,20,81],"*str":[40,84],expect:80,hardy:154,api:[],"_commit":86,"\u5148\u60c5":184,"\u9001\u4fe1":[],use:[],from:[],"\u3057\u307e\u3057":125,usa:130,"\u3057\u307e\u305b":[108,70,124,9,188,176],"\u3057\u307e\u3059":[108,181,184,144,129,169,150],"\u3057\u307e\u3046":[151,132,154,124,125,7,77,27,38,80],usr:[22,174,97,9,10,188,177,89],"\u3057\u307e\u3044":[13,70,18,167,143],"\u4efb\u610f":[3,151,132,45,167,97],start:[114,131,141,23],sort:[77,113],"(keyword":84,"_names":83,tokenbigramignoreblanksplitsymbolalpha:[],"?msg":151,"[args":97,"/index":[97,151,119],"-html":[7,154],"\u30b7\u30fc\u30b1\u30f3\u30b9":[18,176,48],tar:[164,129,151,24,14,152,188,89],"_install":[],tag:[44,108,151,12,122,100,28],tab:106,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[],"/rpmforge":129,sis:27,united:170,satoh:27,"\u30c0\u30d6\u30eb":[181,94,7,27,150,65],six:[148,3],"\u30d5\u30a3\u30fc\u30eb\u30c9":95,sid:[27,151,80,126],instead:[108,107,97,141,10],"_create":[],"\"rectangle":[7,75,168],"\u30a2\u30af\u30bb\u30b5":79,"\u601d\u3044\u51fa\u3057":108,"_configure":125,"\u30a2\u30af\u30bb\u30b9":[179,108,154,151,13,113,97,19,125,7,59,102,36,27,119,80,9],"\u3042\u308b\u3044":[164,11,121,132,172,181,168,34,113,100,9,69,150,56,80,65],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":125,"$home":151,interrupted:172,"-msgpack":54,"[github":80,freebsd:[],"\u4eac\u90fd":[70,144,38],"#groonga":[184,175],"\u300cbill":144,"/stem":163,"\u5bfe\u8a71":[3,172],"%'":80,"\u7279\u5225":[90,181,2,19,188,84,176,178],"\u30c0\u30f3\u30d7":[7,154,125],"%\"":178,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":151,"/apt":[152,151],"/api":54,restart:141,multithreading:103,"\u3057\u3046\u308b":80,crash:[],"\u30b9\u30ad\u30fc\u30de":[12,47,100,108,75,150,114,115,157,23,122,161,182,109,96,78,178,181,32,170,139,84],"\u30bb\u30af\u30b7\u30e7\u30f3":[90,142,12,133,95,46,48,101,9,103,147,188,50,164,108,75,85,14,58,122,59,18,117,61,178,160,65,162,68,23,121,136,24,185,172,77,127,175,176,80,81,129,181,130,31,135,152,137,139,88,119,89],"\u53c2\u52a0":[88,26],successor:150,articles:78,"_free":40,edit:[],".net":[44,3,151,130,13,26,74,102],"%\\":101,nfs:188,"\u6df7\u305c":[13,153],".overcommit":[],"_zone":9,",\"link":13,"\u5c3a\u5ea6":132,related:139,"\u89e3\u6c7a":[165,124,7,126,27,38],remove:[79,133],out:167,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":184,supports:[40,42,64],dictionary:[189,38],"\u30ec\u30a4\u30e4":69,york:[184,75],"8r":[7,188,97],lts:[14,81],"\u4e00\u90e8":[3,151,72,7,169,38],"\u8ca0\u62c5":124,lte:90,auth:[9,54],"\u304a\u3059\u3059\u3081\u3057":[141,181,151,150],"\u8aac\u660e":[],"\u30ea\u30d3\u30eb\u30c9":77,"1\u305a":[11,60],"\"tags":85,"\u53d6\u308a\u8fbc\u307e":151,"\u53d6\u308a\u8fbc\u307f":27,"_symbolic":[2,172],"\u8d77\u70b9":108,utc:150,"\u78ba\u8a8d":[],"\u6b20\u70b9":132,"_qlog":7,unknown:172,"\u304a\u304b\u3057":154,makefile:151,"\u5207\u308a":[159,27,125,80,151],priority:108,their:[139,12],"1\u3064":[66,90,71,94,95,47,100,9,103,10,147,127,54,108,150,85,153,115,65,22,44,68,167,124,125,169,172,27,78,80,178,181,182,84,32,136,184,38,117],"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":97,developer:184,"\u3082\u3057\u304b\u3057":38,"\u7279\u5316":[150,119],"_custom":12,"\u30d5\u30a9\u30eb\u30c0\u30fc":101,"-jumandic":164,"\u64a4\u53bb":27,"\u9ad8\u3044\u9806":3,"\u89e3\u6d88":[1,79,85,125,77,37],"_unsupported":2,"\u51fa\u73fe":[121,132,95,99,153,77],".grn":[9,157],"\u9001\u308a\u65b9":[],"\u884c\u6307\u5411":132,"\u30ab\u30bf\u30ab\u30ca":[63,153,189,38,176],"_ql":80,"\u76ee\u304f\u3089\u3044":65,"_expanders":[22,174,175,10],"=complete":131,"\u6f22\u5b57":38,which:[40,131,97,64],"\u4eee\u60f3":[74,125,130],"#inspect":77,"\u901f\u3084\u304b":11,who:[],".travis":81,"\u7d44\u8fbc\u578b":[],"class":[161,109,32,47],"_build":177,"\u73fe\u5728":[99,92,180,3,83,151,132,167,16,17,179,59,117,184,190,120,79,53,65],"_delimited":42,"/docs":9,"_is":[2,135,172,103,77,27,79],gronga:[169,175],"_ip":[102,172],"_io":80,"_in":[],"_ii":[],"-output":[108,109,161,167,32,47,125,7],"_id":[40,41,108,3,121,151,86,112,113,16,120,74,60,103,35,63,27,79,84,80,150],"_delimiter":[90,133],"\u6307\u3057":13,"\u5bfe\u8c61object":[41,83,93,79,53,118,121],"\u5c02\u7528":[172,187,102,151,119],",\n#":[44,108,90,3,181,12,85,13,184,46,115,74,102,38,150],"<limit":97,"\u5bfe\u8c61":[90,3,144,47,100,145,103,71,56,54,107,108,11,151,153,16,58,115,113,155,177,157,63,134,65,44,69,120,121,70,161,72,73,170,27,78,79,112,80,181,179,83,119,132,32,184,188,37,84],"\u3044\u308d\u3044\u308d":[],cache:[],"\u30b7\u30a7\u30eb":[77,188,167,181,178],daiki:[7,154,146],"*newvalue":121,he:38,local:[97,157],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":188,"\u4ed8\u3051\u308b":[163,3,91,134,189,150],"!condition":150,"!xxx":80,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":80,nvars:53,",\n{":[163,189,23,181,12,85,122,153,176,108,48,18,100,182,9,178,150,78,130,115,143],subrecord:125,words:[150,12],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u3070\u3044\u3051":[41,108,188,71,121,85,175,95,181,113,81,16,7,182,59,9,178,150,79,84,65],"(column":[12,161,32,47,96,80],",\n[":[32,157],",\n]":[70,182,74,143],candidate2:153,candidate1:153,queries:[167,32],view:131,"&arg":178,"\u304b\u304e\u308a":167,fullwidth:77,module:12,"\uff08\u578b":62,"\u884c\u6570":27,acquires:19,still:103,"\"table":97,dll:[7,27,80],"\u6b66\u8005":77,"\u30ea\u30c8\u30e9\u30a4":19,".askmonty":80,"\u4e43\u6bc5":154,job:167,homebrew:[],"\u3084\u305d\u306e":170,commands:35,april:151,"/local":[188,9,151],"\"double":150,"\u672a\u5bfe":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[7,36,154,97],"-text":38,"_var":[40,62,84,53,80],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[188,101],table:[],"\u671f\u5f85":[13,132,38,178],rpm:[164,129,151,154,125,7,27,80],"\u304a\u3059\u3059\u3081":[100,54],"\u30b5\u30d6\u30bb\u30c3\u30c8":[45,113],"=gro":131,"\u9bae\u5ea6":114,"_refused":[2,172],"\u78ba\u5b9f":18,porting:42,"\u521d\u671f\u5024":179,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":7,"\u5927\u6587\u5b57":[3,80,65],"\u96a3\u308a\u5408\u3063":38,sufficient:40,spammer:[122,12],"-cache":[97,125],hmm:184,"\u77e5\u3089":38,"\u5024\u578b":13,"\u672a\u5b9a":13,"\u4f4f\u6240":7,cursor:[63,110,120],"\u793a\u3059":[2,143,12,47,100,105,54,108,75,150,13,58,115,122,161,182,109,96,168,181,32,135,34,170],"\u793a\u3055":105,"\u793a\u3057":[92,2,23,130,12,70,30,133,82,75,100,102,51,3,78,38,151,172],"\u3072\u308d\u3086\u304d":143,"-debug":[154,151],"*src":113,avg:[179,108,80],"\u8fd4\u4fe1":[184,78,124],uptime:[1,3,4,172,82,102,9],"\u5185\u90e8":[82,151,13,86,32,16,17,113,77,79,112,80],"\u578b\u304b":45,"\uff08longest":[27,150],"\u6ce8\u610f":[108,109,3,181,130,85,13,167,125,70,113,9,151,143,27,150,54,65],gets:40,"\u691c\u7d22key":113,"\u6587\u8108":182,"\u5168\u6587\u691c":[],"\u6642\u70b9":[17,11,151,123,16,7,19],"\u3075\u306a\u3068":80,english:[108,26,20],uzulla:27,"\uff01:":188,"@kiske":7,"\u521d\u671f\u5316":[7,77,53,5,16],tcp:97,")=":165,"_device":[2,172],"(windows":167,"\u5236\u7d04":66,"\u898b\u76f4\u3057":80,"(name":40,unsigned:[40,121,86,17,113,62,63,79,84,53,80],"\u627f\u8a8d":80,other:[40,83,136,19,64,121],"\u9ad8\u7cbe":132,moritars:78,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[27,188,177,137,119],execute:[131,64,48],"\u300c\uff76":189,"'pid":97,"-inverse":[122,12],know:61,helpful:12,"\u307e\u305f\u3044":[7,75],earch:90,";rroonga":[161,47],james:143,"_threshold":[],"\u307e\u305f\u3050":[],"\u306a\u304b\u3063":[108,11,3,150,115,6,97,155,72,7,70,8,145,182,96,167,77,190,80,107],"_push":69,because:[4,12,122,48,131,9,139],sequence:[35,186,48,18,153,148,176],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[163,108,80,99],platforms:40,"export":20,vojtovich:80,yyyymmdd:[142,23],"\u30b3\u30e1\u30f3\u30c8":[],"_sortby":[],"_exists":[2,172],"\u306e\u307b\u304b":[13,45],"\u96e2\u308c":74,"\u2192id":94,"\u7d44\u5408":115,"enum":83,"\u884c\u672b":178,"\u7acb\u3061\u4e0a\u304c\u3063":167,"*path":[113,83,121],"\u518d\u691c":158,"\u306e\u3044\u305a\u308c\u304b":[34,113,56,168,62],"\u305d\u308c\u305e\u308c":[90,3,4,94,144,97,188,108,150,151,13,115,113,177,65,69,23,70,74,172,78,79,80,130,135,36],"\u5358\u72ec":[167,121],column:[],universe:14,"\u30fbor":74,".html":[97,9,151,119],"$groonga":151,"\u6570\u5b57":[108,150,70,167,18,178,38,80,65],"_length":[40,172],"\u5b9f\u7a3c":179,transfer:[132,141,172],"\u3002mroonga":[132,79],"*key":113,"var":[40,69,95,97,9,61,188],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":81,"\u30d5\u30a3\u30eb\u30bf\u30fc":182,palalles:[],"-pid":[27,97,77],"\u30b9\u30cb\u30da\u30c3\u30c8":[32,125],"_term":42,"\u6700\u5f8c":[90,150,151,13,154,167,16,7,70,9,77,38,178],"\u7834\u68c4":[53,16],squeeze:[125,151],palallel:151,"\u30e1\u30f3\u30d0":113,"\u56fa\u6709":[93,85],whether:[127,79,83,61],record:[75,3,12,85,13,122,113,110,102,28],"\u30ed\u30b0\u30a4\u30f3":151,"\u4e00\u9577":132,"\u6c7a\u5b9a":108,blogs:70,"\u305d\u308c\u3086\u3048":[13,181],"\u7a4d\u7528":108,"8bit":45,"\u7acb\u5834":88,"\"se":176,executes:[131,97],"@github":151,"\u52a0\u3048":[13,69,143,81],"(null":80,book:150,bool:[163,181,13,45,125,46,34,168,143],"-analyzer":[7,27],er:178,"\u306f\u307e\u305a":151,".gpg":151,"-sortby":125,".location":184,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":154,debian:[],space:[40,178,181,85],emerg:[6,8],"\u5909\u66f4\u70b9":[],"\u306f\u307e\u3060":[59,54]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/table_remove","news/1.1.x","reference/commands/ruby_eval","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","7.2. \u51fa\u529b","7.20.1. \u6982\u8981","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013/01/29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","2.4. Ubuntu","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. \u88dc\u6b63","7.20.2. \u5168\u4f53\u8a2d\u5b9a","12.2.1. Introduction","8. \u4ed5\u69d8","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011/12/29","&lt;no title&gt;","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.20. API","7.3. \u30b3\u30de\u30f3\u30c9","7.14.13. snippet_html","5. \u30b5\u30fc\u30d0\u30fc","7.14.5. geo_in_rectangle","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","7.4. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. \u63d0\u6848","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.16. \u30b5\u30b8\u30a7\u30b9\u30c8","5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. \u6bd4\u8f03","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. \u5236\u9650\u4e8b\u9805","7.14.12. rand","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. \u30ab\u30e9\u30e0","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6","7.14.3. geo_distance","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","11.1. Travis CI","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.20.11. grn_expr","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.2. Mac OS X","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.15.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. \u30c6\u30fc\u30d6\u30eb","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. groonga\u30b3\u30de\u30f3\u30c9","5.2.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","7.14.9. in_values","2.1. Windows","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012/01/29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. \u56fd\u969b\u5316","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014/01/29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","7.1.8. groonga-suggest-httpd","1. Groonga\u306e\u7279\u5fb4","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","8.2. \u691c\u7d22","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.18. Log","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. \u95a2\u6570","7.14.6. highlight_full","11. \u958b\u767a","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","2.6. Fedora","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. \u306f\u3058\u3081\u306b","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. \u88dc\u5b8c","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. \u6b63\u898f\u8868\u73fe","7.1.2. grnslap","7.14.10. now","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","7.15. \u64cd\u4f5c\u65b9\u6cd5","7.1.7. groonga-suggest-create-dataset","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","2.8. \u305d\u306e\u4ed6","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[179,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"-e":[97,0,1,"cmdoption-e"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[179,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[167,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[167,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[167,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[167,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"--log-output-dir":[167,0,1,"cmdoption--log-output-dir"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[167,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[167,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[167,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[167,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"_pat":94,"\u53c2\u7167\u578b":85,senna:42,"\u6539\u826f":[1,42,154,125,146,7,77,27,112,80],"\u7b26\u53f7":150,"\u6d41\u308c":119,"-prefix":188,prefix:69,per:139,"\u6761\u4ef6":[74,109,108,151,181],query:[115,108,172,148],"=number":188,keywordn:161,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":102,"_filters":[90,65],"\u30d3\u30c3\u30c8":150,"\u7279\u5fb4":[132,94],ruby:[147,68],"-release":151,"\u901a\u4fe1":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[131,97,4],to:[131,35],"_column":121,snippet:32,"\u524a\u9664":170,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":177,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[167,39],"-lz4":188,string:[46,90,133],groonga:[55,141,42,151,186,131,132,134,97,98,69,171,9,173,36,88,64,167,119],"\u95a2\u9023":[78,108,9,15,64],"=message":188,"\u304a\u6c17":184,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[179,167],"_database":9,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[175,177,137,20],"\u52d5\u4f5c":[177,18,176,151,48],"\u30b9\u30af\u30ea\u30d7\u30c8":[150,151],"_or":96,"\u3068\u3057\u3066":45,"\u3065\u3051":11,gnu:152,"-escalation":188,"\u6761\u4ef6\u5f0f":181,"\u7c21\u5358":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[179,167,186],".po":119,"\u8ad6\u7406\u548c":181,"\u4ed8\u4e0e":78,"\u771f\u507d\u5024":[13,150],"-benchmark":167,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":163,"\u6f14\u7b97\u5b50":150,"_cursor":[63,120],"_remove":[145,72],"\u7701\u7565":[46,75,142,131,133,115,90,23],sub:182,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":151,"\u53c2\u8003":[2,6,94,95,68,47,46,90,103,10,147,107,108,153,190,58,115,155,158,166,65,22,163,49,122,161,182,170,117,76,174,175,35,133,32,186,135,8,189],"\u30ea\u30c6\u30e9\u30eb":150,"\u6210\u529f":135,"new":59,tips:151,"\u683c\u7d0d":45,memcached:51,body:135,xml:135,"\u6587\u6cd5":74,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":181,"\u30c6\u30b9\u30c8":177,"\u30bf\u30b0":44,"\u9069\u7528":85,"\u3042\u308a":[181,150],ubuntu:14,"\u6e96\u5099":[91,151],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":54,"\u306b\u95a2\u3059\u308b":45,"\u95a2\u4fc2\u5f0f":69,"\u4e26\u5217":151,"_key":[94,142,23],"\u63d0\u4f9b":124,"\u4e3b\u30ad\u30fc":[45,143],blogroonga:151,"_version":[116,11],"_name":[136,59,161,127],"_output":108,"\u5165\u6f14":150,"_info":41,changes:42,options:[131,97,64],"\u7ffb\u8a33":[151,119],"\u30af\u30a8\u30ea":[132,69,91],"\u30de\u30c3\u30c1":150,tokenunigram:38,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":9,logical:[142,23],"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[88,15],"\u6587\u5b57\u5217":[13,150],api:[87,30],"_table":[63,142,113,69,23],select:108,"\u6982\u8981":[2,12,6,90,9,10,11,5,190,16,17,19,86,106,22,23,25,32,8,35,37,38,40,41,145,163,47,53,110,58,59,61,63,64,65,68,49,72,73,75,76,79,82,83,93,94,95,97,100,103,105,56,107,108,109,85,116,115,113,118,120,121,122,161,126,127,131,132,133,135,136,139,140,142,147,149,153,155,157,159,123,46,62,166,170,117,96,174,175,178,182,183,138,189],"\u9001\u4fe1":102,use:161,"\u69cb\u6587":[90,142,6,95,97,46,47,100,145,103,10,147,105,107,108,75,150,153,190,58,115,59,155,61,166,159,65,22,68,49,23,157,161,72,73,126,170,117,96,76,127,174,178,82,181,182,133,32,136,8,109,37,140],"\u624b\u9806":151,zip:101,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30ec\u30fc\u30ba":181,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":132,"\u305f\u3081":[108,69,124],https:54,tokenize:90,scope:182,"_flags":108,"\u3066\u308b":184,"\u60c5\u5831":[92,132,124,74,171,184,177],"\u30d6\u30ed\u30b0":151,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":29,"\u3059\u308b":[0,151,130,85,70,165,176,124,48,131,18,9,78,64,177],normalizer:[90,161,49,133,65],"\u7d4c\u7def\u5ea6":13,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":150,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":151,"\u5f15\u6570":[90,142,6,95,97,46,47,136,8,145,109,103,147,105,107,108,75,111,153,58,115,59,155,157,190,159,64,65,67,68,23,167,161,72,73,126,170,117,96,127,168,179,82,182,131,133,34,100,139,37,140],"_register":22,"\u3053\u3068":151,"_base":9,"_command":116,homebrew:[151,89],"_escape":161,"\u4ee5\u4e0b":181,"\u4ee5\u4e0a":[181,150],"\u30b8\u30aa\u30b5\u30fc\u30c1":44,"\u8d77\u52d5":[141,102,172],"\u3060\u3051":[124,85],"\u524d\u63d0":151,install:188,clearlock:107,"\u89e3\u6790":177,"\u7de8\u96c6":119,"\u6bd4\u8f03":[150,54],"_encoding":123,"\u304c\u3063":78,process:[139,148],lock:136,"_idf":122,"in":[100,42],shard:[142,23],"_install":188,"/linux":152,"\u660e\u793a":151,"\u3053\u3061\u3089":124,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":150,grndb:61,"\u958b\u767a":[162,171,124],"\u548c\u4ee3":150,normalize:133,"\u7406\u7531":124,sphere:75,tokendelimit:38,"\u540d\u524d":[179,67,180,111,45,167,186,34,60,36,168],"\u691c\u51fa":177,normalizernfkc:189,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":101,how:35,"\u548c\u6f14":150,"\u52d5\u7684":114,"\u8fd1\u508d":150,"\u30b3\u30de\u30f3\u30c9":[3,97,31,102,61,36],"_create":[73,9,65],"-gqtp":141,"\u7d42\u4e86":[141,9,172],tokenregexp:38,"_proc":53,max:[142,96,23,117,139],clone:119,"\u4e57\u7b97":150,mac:89,callback:69,offset:[108,142],"\u6642\u9593":[184,150],"\u7f72\u540d":151,data:[9,64],"\u30da\u30fc\u30b8\u30f3\u30b0":108,"\u8a2d\u5b9a":[151,131,19,9,54,81],status:[82,172,186],"-munin":188,"\u66f8\u5f0f":[179,67,180,3,111,131,167,34,9,36,168,64],tokenbigram:38,"-http":141,register:10,"-files":151,"\u7d22\u5f15":132,"\u9078\u629e":178,"_values":100,"\u30a4\u30f3\u30dd\u30fc\u30c8":151,"\u8ee2\u7f6e":132,order:142,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":156,"\u30c4\u30a4\u30fc\u30c8":124,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[55,15,151],rand:67,grntest:151,"\u30d1\u30c8\u30ea\u30b7\u30a2":143,"\u623b\u308a\u5024":[90,142,6,95,46,47,100,145,103,10,147,105,107,75,153,190,58,115,59,155,157,166,159,65,22,68,49,23,161,72,73,126,170,117,96,76,127,174,82,182,131,133,32,136,8,109,37,140],"\u305f\u3044":151,gqtp:[141,134,172,128],"\u6d6e\u52d5":150,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":149,"_api":69,"_match":25,"_rename":59,"\u6587\u66f8":[18,150],"=platform":188,html:[109,119,20],"\u63a5\u7d9a":172,tsv:[135,175],"\u4ee5\u4e0b\u6f14":150,cutter:[177,151],"\u57fa\u672c":[3,150],greater:69,"\u30d7\u30ed\u30c8\u30b3\u30eb":172,http:[36,141,191,4,102],"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":190,"\u9664\u7b97":150,not:69,"\u8a8d\u8a3c":54,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":102,now:180,"\u5c0f\u306a\u308a":[181,150],"\u90e8\u5206\u4e00\u81f4":[],"_select":69,"-pack":188,name:[59,65],edit:111,"-encoding":188,"\u66f4\u65b0":[132,176,151,119],kern:139,token:[90,65],mode:[46,90,69],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[138,3],".overcommit":139,"\u767b\u9332":0,"-create":186,"\u4e26\u3079":3,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":94,normalizerauto:189,"\u751f\u6210":[119,151,20],"\u74b0\u5883":[177,151],"\u5b9f\u4f8b":69,"\u9032\u3081":124,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":43,"\u30d8\u30c3\u30c0\u30fc":172,todo:[115,32],"\u9001\u308a\u65b9":[0,119],"-match":188,"\u30ab\u30d0\u30ec\u30c3\u30b8":177,"\u7def\u5ea6":132,"-default":188,"\u90e8\u5206":144,red:151,rk:[],"_content":106,"\u6307\u5b9a":[75,3,181,151,45,11,78],nofile:139,"\u30e6\u30fc\u30b6\u30fcid":184,proxy:9,"_string":[115,182],"_tf":[122,183],"\u7d50\u5408\u5f0f":181,"\u4ed5\u69d8":21,"\u4e8b\u9805":[66,45,167],launch:131,"\u53e4\u3044":77,filter:[142,108,23,182],"\u53ef\u80fd":[163,90,23,131,132,133,46,115,75,9,142],period:42,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":132,"_hash":94,"_user":118,assign:35,"\u30d9\u30af\u30bf\u30fc":45,"\u3078\u3068":124,"\u6e1b\u7b97":150,suffix:69,"\u8aac\u660e":[179,67,180,111,45,167,34,60,36,168],"-version":11,number:139,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":184,"\u7d44\u307f\u8fbc\u307f":[97,189,38,12],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":151,open:[139,161],size:172,"\u78ba\u8a8d":[151,119],"\u7d5e\u8fbc":74,dump:157,script:147,introduction:20,"\u30ab\u30b9\u30b1\u30fc\u30c9":170,"\u4fee\u6b63":[1,42,154,125,146,7,77,27,80],"\u5bfe\u7b56":[70,165],"\u6c38\u7d9a":94,"_obj":79,"\u30ea\u30dd\u30b8\u30c8\u30ea":[104,119],"=encoding":188,"\u306f\u3058\u3081":169,tokenizer:[166,90],configure:[188,151,20],"_clear":136,desctipion:186,"\u8ffd\u8de1":0,"=path":188,"\u4e00\u81f4rk":176,"_unregister":174,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":65,target:[136,127,100],"_index":120,"_untag":109,"-log":188,"\u30b9\u30bf\u30a4\u30eb":108,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[13,85],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":9,"\u30c6\u30fc\u30d6\u30eb":[66,3,13,94,45,115,184,78,64,65],"_expander":[115,108],"\u3044\u304f":124,hashtags:184,"\u30a8\u30e9\u30fc":[135,165],"-zlib":188,"\u56fd\u969b\u5316":119,"\u5834\u5408":[135,78,151],recover:61,"_circle":168,"\u3044\u308b":92,"\u7279\u6b8a":167,"\u4e00\u89a7":[184,2,61,29,189],"_list":[166,105,95,49],min:[142,23,96],"\u304b\u3089":[164,129,14,124,152,101,188,89],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":0,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":65,"-with":188,archive:14,"\u7279\u5b9a":[177,151],"\u307e\u3068\u3081":151,"_distance":[75,111],"\u30b0\u30eb\u30fc\u30d7":[178,181,150],mroonga:132,libmemcached:177,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":85,"\u7d22\u7528":[3,99],tokenbigramsplitsymbol:38,"\u30c4\u30fc\u30eb":[188,9,102],"\u7d44\u8fbc\u578b":45,"_pack":188,"\u30b5\u30b8\u30a7\u30b9\u30c8":50,synopstis:186,"_put":8,windows:[101,151],geoindex:184,request:[131,35,103,119],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[108,130],"_in":[34,168],"_ii":86,"\u91cf\u6307\u5b9a\u5b50":178,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":151,"\u30b5\u30fc\u30d0":[132,102,172],"\u30ed\u30fc\u30c9":[184,3,85],"_processes":9,tokenfilterstem:163,"\u3084\u308a":124,"\u5fc5\u9808":[108,75,23,131,95,133,46,115,59,90,103,142,127],"\u30ec\u30b3\u30fc\u30c9":[108,3],"-po":151,"\u5270\u4f59":150,"_calc":108,"\u30d1\u30c3\u30c1":119,"\u304a\u304f":124,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":151,"\u8ffd\u52a0":[189,151,119],solaris:24,"\u88dc\u5b8c":[169,176],"\u3044\u308d\u3044\u308d":13,"\u5c0f\u6570":150,"\u30d1\u30c3\u30b1\u30fc\u30b8":151,ellipsoid:75,"\u4e0d\u7b49\u4fa1":[181,150],grnslap:179,cache:[108,117],"\u9ad8\u5ea6":108,"\u65e5\u6642":13,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":151,"_equal":69,"\u65b9\u6cd5":[11,151,85,70,165,185,48,114,18,88,15,176,177,119],"\u30ea\u30ea\u30fc\u30b9":[1,151,154,125,146,7,77,27,112,80],rectangle:75,"\u4e00\u6642":94,"\u6295\u7a3f":184,"-server":141,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":54,wheezy:152,get:131,db:69,"\u5b66\u7fd2":[131,169,18,176,48],clang:177,"_html":[161,32,47],"_limit":[108,9,117],cannot:165,"\u7b97\u5b50":150,"_eval":147,"\u91cd\u307f":[78,85],geo:[34,75,168],"\u8aad\u307f":176,"-httpd":[131,141,9,98,64],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[11,54],"\u5171\u8d77":[18,176,48],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[70,38],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":2,"_search":56,"\u7d50\u679c":[70,167,3,130],tokenfilterstopword:163,"\u52a0\u7b97":150,"\u6570\u5024":13,contain:69,release:[],"\u64cd\u4f5c":[185,3],"\u3084\u308b":151,"\u69cb\u7bc9":[114,177],"\u5236\u5fa1":150,"\u30b9\u30b3\u30a2\u30fc":108,"\u4ee3\u5165":150,travis:81,arg:69,close:161,news:42,"\u8a00\u8a9e":119,"\u65b0\u898f":151,"\u7528\u79d8":151,"\u30ab\u30e9\u30e0":[66,75,3,130,60,71,78],"\u985e\u4f3c":[18,150],"\u7ba1\u7406":[9,102],"\u30e2\u30b8\u30e5\u30fc\u30eb":9,label:108,"_tokenize":46,between:96,"\u305d\u306e":[188,178],"\u7bc4\u56f2":[3,65],"\u4f4d\u7f6e":[92,11,132,74,75,184],"\u8868\u73fe":[69,181,178,150],"_geo":110,javascript:74,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":132,"\u904e\u53bb":124,key:65,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":167,"\u5373\u6642":132,"\u30b7\u30d5\u30c8":150,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[181,150],"_level":[6,9],"\u6392\u4ed6":150,"\u304a\u77e5\u3089":[77,1,154,146],"\u518d\u8d77\u52d5":141,"\u77e5\u308a":151,"-suggest":[131,64,186],"\u306a\u3057":[150,54],equal:69,"-document":20,"\u30b5\u30fc\u30d0\u30fc":[36,141,33],"\u88dc\u6b63":[169,18],"\u30d1\u30e9\u30e1\u30fc\u30bf":[78,11],"\u306a\u3044":[45,124],"\u975e\u308f\u304b\u3061":144,load:58,"\u8a9e\u5f59":[3,99],ci:81,"\u4f5c\u6210":[184,99,3,151,65],point:75,"\u306a\u306b":38,"\u4fdd\u5b58":[13,65],"\u62bd\u51fa":[150,48],header:135,"\u7f6e\u63db":115,"\u95a2\u6570":[160,150,177],"\u6574\u6570":150,"_cancel":103,path:68,table:[108,145,94,95,46,59,105,65],tokenbigramignoreblanksplitsymbol:38,quit:159,"\u53c2\u7167":[13,132,172,44],tuning:139,"\u6a5f\u80fd":92,"_no":94,"\u30e1\u30e2\u30ea":139,json:[58,135],"\u91cd\u307f\u4ed8\u304d":85,po:151,"\u7528\u3044":[190,74],define:155,"(geopoint":184,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[148,108,175],"-help":188,"_tokenizer":65,"_value":[100,96],"\u5b9f\u884c":[52,69,151,167,9,177],"\u7a2e\u985e":13,"_log":9,"-message":188,"\u5dee\u6f14":150,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[0,26],"}]":108,"\u5168\u4f53":19,"\u30a2\u30f3\u30ab\u30fc":178,plugin:[22,40,174],"\u30a8\u30b9\u30b1\u30fc\u30d7":[181,178],value:[100,65],"\u5236\u9650":[66,130,85,94,45,167,175],cast:57,near:69,"\u306e\u306b":70,"\u691c\u7d22":[44,108,144,3,91,92,70,132,85,48,181,74,18,184,143,150,78,176,65],"\u5f8c\u65b9\u4e00\u81f4":[],"\u30e9\u30a4\u30d6\u30e9\u30ea":[132,188],"\u540c\u3058":70,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":26,geopoint:184,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":189,"\u6307\u91dd":124,"\u5fc5\u8981":[109,20],vm:139,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":151,"_expansion":108,"\u53d6\u5f97":[3,151],"\u30ec\u30b3\u30fc\u30c9id":94,"\u95be\u5024":70,id:[35,103],".maxfileperproc":139,"\u8a9e\u5f59\u8868":65,"\u5ea7\u6a19\u5024":150,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":151,fedora:164,"\u4f7f\u3044\u65b9":[90,142,4,12,6,95,97,46,47,48,100,145,9,103,10,147,105,107,114,108,75,85,153,190,58,115,59,18,155,61,166,159,64,65,22,68,49,23,157,122,167,161,72,149,73,126,170,117,96,76,127,174,175,176,178,82,182,131,138,133,32,136,8,109,37,140],"_rectangle":34,suggest:153,make:[188,151],"\u4f8b\u3048":124,"\u6210\u679c":119,"-dataset":186,"\u7a4d\u6f14":150,"_filter":[76,182,142],"\u66ff\u3048":3,"-learner":64,messagepack:135,"\u30ad\u30fc\u30ef\u30fc\u30c9":[70,184],".max":139,"_at":183,"\u8a98\u5c0e":124,keys:108,".po\u30d5\u30a1\u30a4\u30eb":119,"null":150,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":9,"\u306b\u3088\u308b":[78,143,130],"\u8ab2\u984c":0,"_columns":[115,78,142,108],"_data":118,"\u64ec\u4f3c":60,"\u5834\u6240":[124,175],"\u5168\u6587\u691c":[3,99],"\u95a2\u4fc2":[44,108,188],database:[131,64],"\u307e\u305f":78,"\u3055\u307e\u3056\u307e\u306a":74,"()":69,flags:[46,90,133,172,65],sortby:108,"\u51fa\u529b":[135,108,3,4,119],gzip:54,the:139,lcov:177,"-localstatedir":188,"_path":[131,9,64],"\u8868\u793a":3,"-platform":188,protocol:172,"-path":188,less:69,"(v":69,"_tagn":161,"\u5229\u7528":[74,163,9],"_ctx":16,"\u5171\u6709":132,"\u9006\u5f15\u304d":44,"\u8fd4\u5024":[67,108,180,111,34,36,168],"\u547c\u3073\u51fa\u3057":150,"\u5f8c\u65b9":[150,181,143],"\u3067\u304d\u308b":[69,124],tokendelimitnull:38,loading:9,"\u8ad6\u7406":[181,150],mmap:165,"\u30bd\u30fc\u30c8":[74,130],defrag:37,"_selector":155,"\u660e\u793a\u7684":75,"\u62e1\u5f35":91,"\u4e00\u81f4":[150,176,144,181,143],match:[115,78,108],hat:151,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":54,"\u7d4c\u5ea6":132,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":132,"\u8ad6\u7406\u7a4d":181,enable:20,"\u9759\u7684":[114,177],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":20,nginx:9,"_hook":93,"\u30af\u30e9\u30b9":178,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":177,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":187,"\u30bd\u30fc\u30b9":[164,129,14,152,101,188,89],"\u7a4d\u4ee3":150,linux:139,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":51,"\u5354\u529b":124,"\u691c\u7d22\u4f8b":69,"-command":11,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[3,54],"_expr":[69,84,158],adjuster:108,"_threshold":108,"\u4f5c\u696d":151,"\u307e\u305f\u3050":78,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":102,"\u4ed5\u65b9":119,learning:64,centos:129,twitter:[124,151,26],"-plugins":188,"\u30b7\u30b9\u30c6\u30e0":[0,184],"\u5358\u8a9e":150,"_dat":94,"\u4f7f\u7528":139,"\u5727\u7e2e":54,"\u30b3\u30e1\u30f3\u30c8":184,"_sortby":108,"\u5411\u3051":[171,151],"\u5bc6\u9375":151,"\u66f8\u304d":144,freebsd:139,"\u5f62\u5f0f":[58,135],comments:184,exit:186,allocate:165,"\u30af\u30a8\u30ea\u30fc":[9,29,181],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":141,"\u30d3\u30eb\u30c9":[164,129,151,14,152,101,188,89],"\u5206\u3051":144,run:20,"\u5168\u6587\u691c\u7d22":181,"\u4ed8\u304d":[44,150],"\u3046\u307e\u304f":124,"\u4e0a\u9650":66,"_most":183,"\u4f9d\u5b58":188,"\u5b8c\u5168":144,"\u3042\u308b":184,"\uff08personal":14,"\u5927\u306a\u308a":[181,150],tokenbigramsplitsymbolalpha:38,output:[108,142],"\u96c6\u8a08":132,from:64,post:[9,54],"_auto":9,"\u6319\u52d5":144,by:9,"\u5b9f\u73fe":69,"_border":[142,23,96],"package":14,column:[161,72,47,73,59,96,95],of:139,"_escalation":[25,108],"\u30e6\u30fc\u30b6\u30fc":[184,124],location:75,range:76,"\u30b9\u30c8\u30ec\u30fc\u30b8":132,os:89,"\u524d\u65b9\u4e00\u81f4":[],tokentrigram:38,ppa:14,scorer:[122,183,74,108,12],"_reopen":190,"\u30ea\u30af\u30a8\u30b9\u30c8id":35,"\u5b9f\u9a13":27,domain:130,"\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u30d5\u30a1\u30a4\u30eb":[52,69,151,20,175,54,119],"_cache":[17,9],"\u5831\u544a":0,"\u524d\u65b9":[150,176,181,143],"\u7279\u6709":9,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":177,log:[6,148,8,190,64],"\u8907\u6570":[78,130,54],"_range":142,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":167,"_prefix":188,"\u5909\u66f4":[70,154,54],"\u30d0\u30fc\u30b8\u30e7\u30f3":[154,1,11,146,151],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,redmine:124,"\u30ed\u30b0":190,"\u5c55\u958b":29,"\u7b49\u4fa1":[181,150],"\u63d0\u6848":[131,169,48],"cpu\u30b3\u30a2":54,"_db":83,"\u30d5\u30a9\u30ed\u30fc":184,files:[139,64,186],shutdown:140,tokenbigramignoreblanksplitsymbolalphadigit:38,"_full":161,"\u6027\u80fd":[9,54],memory:165,"\u72ec\u81ea":150,"\u7b97\u8853":150,"with":20,"_load":68,"_types":108,pull:119,"\u5165\u308a":184,"default":[11,65],"\u5426\u5b9a":[181,150],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":151,limit:108,"[$":108,"\u304a\u3055\u3089\u3044":124,highlight:[161,47],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[40,41,5,93,86,106,53,56,116,16,17,113,19,25,118,120,121,62,123,63,110,79,83,84],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":38,similar:69,tokenmecab:38,"delete":170,"\u6587\u5b57":178,"\u611f\u8b1d":[1,154,125,146,7,77,27,112,80],bigram:184,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":151,approximate:75,command:11,"\u69d8\u3005":177,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":184,"\u3067\u304d":45,"\u56de\u907f":165,"\u3054\u3068":78,"\u70b9\u6570":150,check:[126,61],"\u306b\u5bfe\u3059\u308b":78,"\u5bfe\u5fdc":[92,124,54],tokenbigramignoreblank:38,"\u7570\u306a\u308b":70,"_target":108,"\u4ee3\u5165\u5f0f":181,"\u3068\u308a":124,"\u914d\u5217":150,"\u3042\u3052\u308b":70,"\u306e\u307f":[177,151],grn:[41,93,86,106,53,56,116,16,17,113,158,25,118,69,120,121,62,123,63,110,79,83,84],"\u5168\u6587":[70,132,74,3,78],tokenbigramsplitsymbolalphadigit:38,"_type":[75,62,106,172,65],users:184,truncate:127,"\u30c7\u30fc\u30bf":[3,13,184,45,48,176,65],worker:9,"-package":188,"\u30c7\u30d0\u30c3\u30ac":177,update:[151,20],"_query":9,"\u547d\u4ee4":167,"\u65b0\u3057\u3044":119,"_map":139,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":54,"\u4f7f\u3046":[75,9],"\u30b9\u30b3\u30a2\u30e9\u30fc":12,drilldown:108,"-latest":151,"\u3088\u3046":[18,176,48],debian:[152,151],"\u4f5c\u308a\u65b9":85,"_count":[139,23],"\u4f7f\u3044":144,"\u6b63\u898f":[178,181,150],macports:89,"-threshold":188,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[66,44,78,178,114],"_offset":108,queryexpandertsv:175,"_memory":139,"\u5909\u66f4\u70b9":151,oracle:24,"\u539f\u56e0":70,"\u30c7\u30fc\u30e2\u30f3":172,tokenbigramignoreblanksplitsymbolalpha:38}})
1
+ Search.setIndex({envversion:42,terms:{clumns:139,"\u51fa\u6765":[44,78,90],"\u300calice":185,localstatedir:[155,189],"\u3082\u3089\u3063":3,four:[97,3,149],"\u660e\u78ba":80,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[36,97],"\u811a\u6ce8":[75,3,45,72,34,169],"\u3082\u3089\u3048":124,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[152,20,101,158,77,27,189,80,119],"\u79d2\u60c5":27,"_column":[55,155,43,30,125,77,80],dewangga:77,"\u6b63\u5e38":[168,152],"\u30d5\u30c3\u30af":81,internally:[106,16],"\u5b9a\u5024":7,"/projects":152,"&q":131,"&s":131,incremented:35,"\u3044\u304f\u3064\u304b":[90,142,26,103,189,165,108,151,152,115,60,158,161,46,69,23,125,178,179,182,133,188,190,38,192],"\u89e3\u9664":[22,1,175,97,79,107],second:[149,12],"\u4f5c\u3089\u308c":[168,80],"\u4e8b\u524d":[68,142,152,70,170,145,23],"\u30de\u30af\u30ed":[27,79,125],"\u30b7\u30f3\u30dc\u30eb":73,"\u5f15\u3044":151,increasing:139,error:[40,110,6,97,125,16,135,122,8,9,149,80,179],here:[40,12,131,97,187,48,9,158,149,148,139,64],onga:32,"&!":151,china:130,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":160,"&&":[70,183,108,143,151],"\u4e0e\u3048":[58,69,3,70,123,97,125,7,173,63],"\u4e2d\u8eab":[168,3,173,80],"_output":[2,156,80,16],"\u30c8\u30fc\u30af\u30f3":[164,90,151,94,144,125,48,46,18,77,27,190,38,155,80,65],"\u7ffb\u8a33":88,"\u300c\"":97,"\u300c#":155,"\u300c,":158,"9e":190,"9f":4,unix:[135,189,80],txt:[87,38,119],"\u5ea6\u6d6e":45,"\u5bfe\u7167":115,"\u65e5\u672c\u4eba":177,"_check":[79,178,80],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":88,"\u975e\u63a8":[75,125,7,27,80,65],music:[44,149],tokenize:[55,46,43,31,125,80],"_flags":[40,121,62,7,113,84],"[pkg":[7,27],until:[40,139,19],"\u30d6\u30ed\u30b0":88,"\u30df\u30ea":[13,27,45,74,151],"\u6709\u529b":154,"\u7f6e\u304f\u4f8b":189,"[os":80,"\u4e0b\u304c\u308a":70,karmic:178,"\u300cv":152,"(pos":[34,169],"_command":[55,30,80,43],"\u6709\u52b9":[90,95,102,27,189,108,152,13,14,58,113,65,121,168,125,73,77,79,112,80,182,129,83,132,32,9],"\u6b63\u5f0f":80,"\u4e8c\u91cd":[125,80,182],"\u30e1\u30fc\u30eb":[0,152,119],"/functions":178,example:[44,108,3,130,12,131,13,97,122,74,9,139,28,177,102],"\u30af\u30a8\u30eaapi":77,"/blog":152,"\u6a2a\u5c71":[125,80],want:[131,97,128],"*cache":17,"<groonga":168,"\u4e0b\u304c\u3063":38,travel:185,feature:[119,97,9,12,83],machine:97,how:[40,55,20],"\u884c\u982d":179,types:[154,18,133,177,48],"\u63fa\u308c":91,"-normalizer":[165,129,14,133,7,153,190],"\u30d7\u30ec\u30fc\u30b9\u30db\u30eb\u30c0":125,"_resource":[2,79],"\u5b09\u3057\u304f":124,"\u901a\u5e38":[135,108,90,3,182,13,45,16,7,60,9,190,176,95,80],keeps:85,"\u500b\u5b9a":134,wing:[7,125],"\u3042\u305f\u308a":[27,155],vars:[40,53],"\uff11\u5bfe":134,"\u30d1\u30c8\u30ea\u30b7\u30a2":[55,3,144,7,63,157],"\u6e1b\u7b97":79,">\n<":4,"\u8fd4\u3063":[182,80,151],"_{":125,"-code":[152,80],"_w":38,"\u8fd4\u3057":[40,90,3,91,93,95,46,47,48,69,103,145,109,54,108,75,151,111,154,113,116,16,17,115,59,18,19,183,25,162,118,67,68,49,120,121,123,167,125,169,73,63,74,171,117,96,77,127,79,177,80,82,83,136,170,185,32,34,100,181],fix:[59,42,95],"\u8fd4\u3055":[58,108,11,154,123,7,126,79,80],"_s":80,"_desc":113,"_o":[2,173],"_n":[17,131,125],"_i":[2,173],fin:53,easier:12,"_a":[2,173],"\uff08tokenmecab":70,"\u3046\u3063\u304b\u308a":125,"\u30d7\u30ed\u30c8\u30b3\u30eb":[180,55,141,2,132,168,7,188,9,51],"-daemon":[131,97,64],"\u30b5\u30f3\u30d5\u30e9\u30f3\u30b7\u30b9\u30b3":75,"\u516c\u8f14":125,"\u3082\u3063\u3068\u3082":178,"\u30af\u30a8\u30ea\u30da\u30a2":170,"\u8a8d\u8a3c":[9,192],"_select":88,"(point":[34,75,169],"_deadlock":[2,173,79],timeout:[79,19],debug:[6,149,8,97,9],"\u6df7\u3056\u3063":38,"_$":[154,65],"_\"":27,"@do":80,"*keywords":84,rd:[70,144],re:[139,83],rf:[129,9],"post\u30e1\u30bd\u30c3\u30c9":125,moritapo:44,rc:[90,149,2,5,16],rl:38,rm:9,ro:90,gregex:125,rk:177,"\uff01\uff09":[18,177],"\uff01\uff08":119,"\u3042\u305f\u3044":117,"\u5909\u5316":132,"\u5168\u90e8":173,".msgpack":4,"/limits":139,ringtail:[125,80],"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":[55,71,43],"\u307e\u308d\u3086\u304d":143,"\u771f\u507d":[13,151,45,125,182],libedit:[165,1,155,7,77,27,189],"\u5f31\u70b9":132,"[cmake":77,"\u8fd4\u308a":[74,108,130],"\u8fd4\u308b":155,"\u7d99\u627f":125,"\"localhost":173,"_locks":[2,173],"\u25a1\u25a1":124,"\u300cnew":185,"\uff08age":65,":bob":185,mingw:[27,152],"nginx\u3089\u3057\u3044":80,"\u6607\u964d":63,"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[75,117,159],"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,125,133],service:[139,141,18],"/home":38,"\u4f7f\u308f":[2,91,94,90,9,27,108,152,16,17,159,179,65,44,125,173,96,77,176,177,80,81,182,130,190,38],"-benchmark":[52,55,43,125,7,80],"\u533a\u5207\u308a":[180,58,108,90,3,4,130,13,132,45,97,48,7,158,154,77,151,38,182],"\u533a\u5207\u308b":[108,155,176],master:9,"\u610f\u8b58":65,"\u8a8d\u8b58":124,"_db\u30d5\u30e9\u30b0":27,"'column":7,"{table":[115,108],"\u306e\u3059\u3079\u3066":[108,54],"\u4e0d\u5fc5\u8981":77,"(comments":183,"-common":[7,14],project:151,"_update":[182,108,2,113,121],"*namebuf":[79,121],boston:185,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":[55,129,49,43,165,162,14,133,125,47,7,153,90,46,80,65],"\u4f7f\u3048\u308b":[108,182,97,125,7,179,27,189,80,81],"\u304b\u3069\u3046":[2,183,70,115,96,189],"-executable":97,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":125,"-port":[131,168,97],"/max":80,object:[40,79,83,93,45,7,136,113,173,148,56,53,118,151],"\u7d22\u7528":[55,157,65],"\"black":190,microsecond:149,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":126,letter:190,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":54,"\u533a\u5207\u3063":[46,108,90,133,173],"\u4f7f\u3063":[0,90,3,91,5,45,144,47,7,2,101,9,151,189,54,143,165,108,12,152,85,13,112,14,16,115,18,61,159,179,65,163,44,68,69,120,70,124,125,73,126,74,173,77,117,176,80,81,129,190,182,130,170,119,185,133,32,135,153,100,137,88,89,38,102],"\u30d1\u30a4\u30d7":73,camp:185,"\u4f7f\u3048":[108,90,182,130,192,161,179,96,125,151,9,103,159,27,65,38,80,81],"\u4f7f\u3046":[1,90,142,5,7,10,145,77,189,165,108,152,85,87,154,14,17,155,158,65,22,68,69,23,121,168,125,171,117,27,80,81,129,30,133,135,153,137,84],"\u4f7f\u3044":[90,45,46,47,48,50,77,189,54,55,108,109,151,153,154,14,114,18,19,20,179,65,119,164,69,165,159,182,171,27,15,176,177,80,81,129,190,83,132,85,133,32,135,38,89,84,9],"\u66f8\u304d\u8fbc\u307f":189,"\u66f8\u304d\u8fbc\u307e":191,unmanaged:126,"\uff08@":[27,155],"\u30d0\u30a4\u30ca\u30ea\u30fc":135,layout:152,".fedoraproject":129,"2byte":173,"\u306f\u306a\u304f":179,"-enable":[88,155,20],createrepo:152,"\u79d8\u5bc6":152,"\u30a2\u30d4\u30fc\u30eb":152,"_age":96,"\u91cd\u307f":[7,55,125],tips:88,"\u30c8\u30d4\u30c3\u30af":152,"\u91cd\u3044":[132,108],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[55,43,155,31,16,80],"\u5b9f\u9a13":77,"\uff08piro":80,"\u91cd\u304f":70,patch:42,release:[101,152],unpatched:42,"\u69cb\u9020":[44,69,132,16,135,113,94],"\u5e83\u304f":[152,179],"[linux":7,result:[69,4,32,113,75,173,78,64],"<port":[168,97],"\u5206\u304b\u3061":132,wikipedia:45,score:[3,12,48,127,108,75,151,85,154,70,59,18,44,69,121,122,125,74,77,28,177,131,185,115,78],"-stem":[153,14,80],"\u611f\u3058":124,shidara:27,"\u554f\u3044\u5408\u308f":69,"\u539f\u99c5":74,country:[171,102,130],"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":190,"\u66f8\u304d\u8fbc\u3080":168,"\u540c\u69d8":[92,69,152,13,168,74,173,63],"\u4e00\u6587\u5b57":[77,80],"\u5931\u6557":[22,17,3,182,152,40,155,73,125,7,136,59,171,19,10,27,77,175,127,80,65],"\u30fb\u6d6e\u52d5\u5c0f":108,"\u95a2\u6570":69,diff:168,"\u5404\u7a2e":152,"\u6d88\u53bb":125,"\uff08node":81,"\u5360\u6709":79,"\u3044\u3046":108,correction:18,"\u30ab\u30f3\u30de":[58,3,151,130,158],worker:134,dave:96,"\u305f\u307e\u307e":54,"=query":131,"\"correction":170,"-message":137,spil:77,"/function":152,"_sel":42,"\u3069\u3093":105,"#set":168,"\u3069\u308c":[108,95,135,38,54,65],"_set":[17,41,93,123,16,7,25,116,19,63,77,79,112,53,80],"\"sound":18,"\u65ad\u7247":32,"\u4ee3\u8868":132,"\u79d2\u6570":[135,108,151,13,185,45,82],"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3":125,reports:40,"_false":79,"\u3069\u306e":[92,108,90,151,130,169,18,75,189],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":27,"1\u4ef6":[70,185],"_rectangle":[55,1,110,43,155,125,27,161],"\u3069\u3053":[27,189,80],"\u3002db":[27,69,3,173,16],"\u53b3\u5bc6":[77,177,80],"\u30df\u30ea\u79d2":45,"\u7121\u8996":[108,90,176,158,70,94,155,97,125,7,113,171,133,103,63,27,38,80,182],"\u5fdc\u7528":132,"\u3069\u3046":[1,146,83,130,6,124,72,108,7,70,8,156,9,61,191,38,107],"\u30e2\u30fc\u30c9":[90,3,69,173,36,80],"\"canceled":103,"\u5411\u4e0a":[27,141,9,54,159],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[108,90,70,144,18,63,38,80,65],"_skip":125,"_element":41,"\u30c4\u30fc\u30eb":[55,137,119],"\u30e9\u30d9\u30eb":[108,125,80],"_result":[108,2,113],sleepy:114,"\u4e00\u6c17":152,previous:[141,12],"\u5317\u4eac":75,had:12,easy:[97,12],"\u300ccharlie":185,"\u4fee\u5e73":80,hat:88,"*vars":[40,53],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":7,"\u7c21\u7565":[100,125],"\"content":[151,164,108,182],"\u9001\u308b":[0,173,54,119],"\u9001\u308a":[173,152],"\u30d0\u30a4\u30ca\u30ea":[101,152],"_broken":2,"\u8d8a\u3048":[70,77,80],unique:[131,103],"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":92,">command":4,"_error":[40,2,173],"_ascending":63,alice:[108,182,185,115,59,9,96,127,54],"-unauthenticated":[7,153],"\u30d4\u30ea\u30aa\u30c9":[73,78],sebastian:80,right:110,old:[40,152],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[97,90,3,133],truncated:125,begin:180,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u5358\u8a9e":[7,108,182,159],"/ngx":9,"\uff08score":108,groogna:[112,54],"\u9001\u3063":[87,0,88,119],"for":[40,141,42,12,128,45,97,26,48,7,101,9,149,189,127,75,151,16,19,106,64,122,110,28,79,185,83,131,84,32,187,136,35,139,38],bottom:[27,110,34],"_reference":108,".asc":152,"\u30b5\u30fc\u30d3\u30b9\u30b9\u30af\u30ea\u30d7\u30c8":125,ichii:27,yoku:[125,80],"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8":79,"\u5206\u985e":[13,130],"\"starttime":4,"\u89e3\u6c7a\u7b56":124,"\u306a\u3055\u3093":88,"\u65e2\u5b9a\u5024":141,"\u305b\u3044":[125,80],"_size":[40,55,69,121,43,86,16,113,62,63,77,79,84,53,161],".am\u30d5\u30a1\u30a4\u30eb":152,"\u89e3\u91c8":[155,69,182,158],waits:[40,19],"_range":[55,2,43,31,77,79],support:42,"\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0":96,joseph:143,"\u305b\u306a":[182,151],"\u5c71\u672c":80,"\u3086\u304d\u3072\u308d":143,thesaurus:108,"_org":152,pagerank:[122,28,12],"/tsv":[22,175,176,10],"\u5fa9\u65e7":[112,83,61],"\u8981\u7d20":[58,2,3,85,95,168,32,125,7,113,69,135],"\u30d0\u30f3\u30c9\u30eb":[77,125,80],"\u306e\u304b":[185,144],"\u9006\u5f15":44,"_sequence":[2,173],"\u306e\u3044":[11,6,132,45,97,58,75,113,8,173,69],"_records":[7,77,125],exist:12,"'\"":[7,125],"'.":[79,119],"'-":[97,125],"',":[79,187,80,48],sizeof:[77,84,16],"')":[58,180,97,80],"'(":97,"\u306e\u306b":[55,133,125,7,39,38,80],relax:139,"\u306e\u3067":[141,3,144,7,101,9,77,145,54,108,75,152,13,115,65,68,23,70,166,124,125,183,96,27,78,176,177,80,132,32,135,188,185,36,119],"*nvars":53,"\u3001_":3,"\u306e\u307f":[132,69],"'t":[106,83,12,122,35,97,16,136,19,139,28,48,84,9],"'s":[114,108,182,12,128,122,97,151,58,183,149,135,189,119],"\u306b\u304f\u3044\u304b":38,"\u3089\u308c\u308b":[69,121,132,144,125,7,63,80,179],"\u88dc\u3046":132,"\u305b\u308b":[141,69,132,162,47,115,36,178,65],"'n":97,"'m":[114,185,164,78],"-latest":88,"-tar":24,"\u305b\u308c":132,"\u6bb5\u843d":[73,95,121],"_count":[55,31,43,77],"\u5165\u529b\u30df\u30b9":18,time:[23,131,13,185,45,168,125,48,7,70,18,149,139,103,77,27,181,177,80,154],push:[152,119],"\u304a\u3053\u306a\u3063":3,":/":[3,4,97,101,9,103,104,189,54,165,109,152,85,13,14,17,158,119,44,24,74,102,80,81,180,129,130,131,153,36,190,89],"\u53cd\u6620":[132,69,152,139],"\u7b26\u53f7":2,":$":[143,151,182,20],"\u6d41\u308c":88,"-prefix":137,":#":80,"\u5c0f\u897f":125,":=":[108,182],":>":[108,182],"\u3002rroonga":159,"::":[2,4,12],netbsd:[155,125],millisecond:19,"\u3042\u307e\u308a":[78,124,113],"\u7aef\u672b":132,"_builtin":[27,79,83,62],"\u6700\u7d42":[108,83,85],dragonfly:155,"\u500b\u5225":152,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":7,"-root":[36,155,97],":~":[182,179],lru:117,"\u7d20\u6734":130,locked:40,".source":77,exact:69,"\u3092\u3064\u3051\u308b":151,minute:149,".body":[37,91,107],"\u30b9\u30af\u30ea\u30d7\u30c8":88,"{language":119,"\u6e08\u307f":[58,129,90,121,152,165,124,45,14,73,125,7,153,18,170,77,27,176,177,141],"-base":[131,64],":@":[44,108,3,182,13,185,115,102],":\\":[101,179],":^":[182,143],":[":[168,179],loads:[9,64],"\u4e00\u6b69":3,"\u7d50\u3073\u3064\u3044":134,"\u305f\u3055\u3093":[27,1,125],"\u7d50\u3073\u3064\u304f":134,sign:152,"\u6e08\u3080":77,"\u5316\u4f5c":152,makecache:[7,129],"\u4e8c\u9805":151,"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9":80,".ncpu":89,"\u7d4c\u904e":[135,11,151,13,185,45,82,19,27,79],"\u30bf\u30d6":[176,4,173],takashi:[27,171],"\u540d\u7b49":79,"\u4e3b\u8981":137,"'='":97,"\u76ee\u5b89":152,"\u63a8\u9032":125,"\u30bf\u30b0":[55,108,109,151,152,85,94,162,155,32,47,125,7,157,27,80,65],"gmo\u30e1\u30c7\u30a3\u30a2":80,"\u6d41\u3057":152,address:[7,27,97,173,131],"\u30a2\u30ab\u30a6\u30f3\u30c8":[26,80,152],"\u4e3b\u30ad\u30fc":[58,55,155,7,60,105],queue:134,"\u8b66\u544a":[108,11,155,125,7,112,80],"\u3002offset":93,"\u5ea6\u6570":[13,27,74,151],ipa:165,pentium:168,prefer:131,"`/":20,logical:[55,31,43,77],"\u6587\u5b57\u5217":[55,108,90,182,111,123,85,133,32,47,125,7,183,75,159,135,58,84,162,80],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,bookmarks:[158,85],"\u4e88\u3081":[45,97],"{\"_":[44,108,151,13,74,96,182],"|table":65,droonga:100,"\u30d5\u30a9\u30ed\u30fc":26,"/header":24,"\u3060\u3063":[108,11,151,70,7,113,77],"``":[1,155,84],"\u5168\u4e16\u754c":125,"\u3060\u3068":124,visual:[125,7,101,77,27,80],"_gt":63,"\u3002obj":79,"\u3060\u3044":[27,80],valuen:100,"_alloc":[40,84],values:[58,106,97,121,79],"\u3060\u3057":[27,168],"\u5024\u8a18":151,following:[40,121,12,128,131,97,187,149,20,148,139,64],pgroonga:12,".md\u30d5\u30a1\u30a4\u30eb":152,locks:[40,136,32],logrotate:[7,80],allowed:64,"\u5897\u3084\u3059":[108,178,85],"\u6a19\u6e96":[1,146,3,6,97,8,9,105,107,11,58,156,158,191,160,72,73,126,173,112,80,180,82,36,37,140],chroot:152,divided:122,"\u7551\u30f6":80,"\u30d2\u30e5\u30d9\u30cb":[75,169],parameter:[110,12,131,35,97,113,148,139,127,53],applications:32,date:168,such:[12,122,35,32,187,48,7,131,10,64,119],"?id":103,data:[93,83,158],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[55,157],"/dictionary":155,ss:[149,151],"/javascript":27,st:[90,38,151],sh:[152,81],so:[83,12,122,97,113,139,28,79],sa:[154,18],se:[90,177],"\u30e1\u30bd\u30c3\u30c9":77,"\u540c\u3058\u6570":[97,9,54],"[yum":7,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af":80,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":158,"\u30a2\u30c9\u30ec\u30b9":[168,97,113,102,27,173],"*query":[56,84],jis:63,"\u540c\u671f":[168,152],instantly:32,"\u30d7\u30e9\u30b0\u30a4\u30f3api":80,"\u4f7f\u308f\u305a":115,records:[149,110,158,48],"\u8d85\u3048\u308b":[7,63,166,94,13],matched:[122,131,28,110,12],config:[1,11,101],"\u7570\u5e38":[126,168],"_dat":[182,125,113,105,27,151,112,80,65],"_dataset":[147,64,187,48],"\u5927\u95a2":80,"\u4e26\u3073":[144,151],"\u4e26\u3079":[55,157],"-terminated":[40,53],gtar:24,"\uff1f\u300d":130,indexblog:78,"\u30d8\u30c3\u30c0\u30fc":[7,77,2,80,54],"-offset":108,container:84,"_msgpack":106,fu:90,".status":168,"\"search":[177,18,182,48],vervet:[77,14],"\"type":154,formula:152,"\u6700\u5c0f\u9650":9,"\u30b7\u30e3\u30fc\u30c7\u30a3\u30f3\u30b0":[94,23,77],mime:[77,54],"byte":[121,35,168,32,7,113,173,79],"\u7d20\u65b9":132,".index":77,"\u30de\u30eb\u30c1\u30b3\u30a2cpu":189,"\u30d9\u30af\u30bf\u30fc":[108,85,125,171,27,80],"\u4e00\u610f":[73,97,60,103],one:[40,12,128,97,32,136,148,139,64],submit:[131,154,18,177,48],"*expr":84,"\u5b9a\u5b50":179,city:[185,75],"\u5bfe\u7b56":[55,39],"\"sphr":169,"=encoding":137,"\u884c\u756a":[135,27],"\u8fd4\u4fe1\u5143":185,"\u8fd4\u4fe1\u5148":185,"\u306b\u5bfe\u8c61":27,"\u88d5\u4e5f":80,translate:[119,20],"\u540c\u6642":[108,11,132,134,168,113,74,63,77],effective:97,fumiyasu:27,groongau:38,"\u4e16\u754c":[75,13,45,34,74,169],argument:[148,151,12],"-scorer":161,say:151,"/span":[162,32,47],"/ubuntu":[7,141,152],"\u30b7\u30b9\u30c6\u30e0\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":125,"\u30ea\u30b9\u30c8":[58,164,176,3,182,152,44,38,97,108,190,7,104,179,92,105,151,84,119],uuuuuu:151,"\u5ea6\u5408\u3044":70,note:[40,131,97,139],"\u30cb\u30db\u30f3\u30b8\u30f3":177,"[[\"":126,"\u5fdc\u7b54":[132,125],"_lexicon":77,buffer:[126,79,16],"\u5148\u982d":[108,3,93,9,79,38,179],compress:73,"\u30b9\u30da\u30fc\u30b9":[27,108,125],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":88,"\u672b\u5c3e":[63,93,79,23,179],"\u9589\u3058":[27,94],"\u4ef6\u6570":[108,3,70,144,58,113,60,77,79,80],"\u5217\u6307\u5411":132,"_cursor":[55,155,43,30,125,110,77],xml:[155,125,7,27,106,112,80],"\u5927\u4e8b":[176,182],"\u4e00\u6642":[55,75,43,79],"\u3068\u3057\u307e\u305b":19,"_defrag":79,"\uff08tokenbigram":70,resource:173,"\u66f8\u304d\u8fbc\u3081\u308b":80,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[55,43,31,7,135,80],"\u76f4\u63a5":[185,158],"\u8868\u3057":[92,11,3,45,135,2,60,69,179],"\u7a7a\u767d":[90,3,182,70,132,97,48,58,133,38],"\u7528\u79d8":88,regexplexicon:179,"\u898f\u5247":7,".content":[108,151,114,183,139,78,182],"\u306b\u3068\u3063\u3066":[124,90,38],sites:158,"*column":121,"\u5927\u4e08":0,"\u4f9d\u5b58":[55,137],jobs:168,"\u7e26\u68d2":65,"\u4e0a\u554f":141,"\u5e73\u5747":[108,80],"@tomotaka":27,many:[12,128,122,85,187,139],"\u8fd4\u3059":[1,146,6,97,7,8,27,54,107,151,154,16,156,191,121,168,72,125,82,74,173,96,77,80,181,155,37,84],"\u30b3\u30ed\u30f3":73,"_otoj":178,expression:[131,139,68,84,108],")offset":[63,113],"-mecab":[165,129,14,125,7,153,80,89],"_t":2,"\u5404\u7d22":3,"(xxx":125,"\u3002http":125,"\u542b\u3080\u5024":[97,3],"\u30b7\u30f3\u30bf\u30c3\u30af\u30b9\u30a8\u30e9\u30fc":80,"\u5468\u4e0a":169,"_synonyms":176,"*added":113,"\u898b\u4ed8":125,"'ja":119,enable:152,"\u6607\u9806":[108,3,130,74,113,63,79],"\u5b9f\u884c":[132,88],"\u8fbc\u307f":[191,176],"-bye":[46,151,164,108,182],"\u304a\u3051\u308b":[66,44,3,182,13,132,45,125,7],executes:[131,97],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30ab\u30e9\u30e0":71,"\u7406\u89e3":[108,3],"?table":[103,9,54,102],ctrl:[97,173],"\u30af\u30ea\u30fc\u30f3":152,ivh:[165,129],"@lists":[152,26],".debian":152,".md":152,pthread:[27,125],"\u3002squeeze":178,ascii:[38,182,151],"\u633f\u5165":[3,152,93,97,32,7],binary:[132,45,4],hostname:[36,97,9],"/pipermail":80,"_filter":[55,43,31,125,77,80],"<path":[97,64],"_setoperation":113,"\u3002\u3057\u304b\u3057":[108,75,85,132,45,114,59,18,137,27,190,38,54],"_at":[12,112,155,16,7,113,77,79,84],"error\u30bf\u30b0":7,"\u8ab2\u984c":88,cmake:[7,189,101,125],"\u5b9f\u88c5":[68,75,108,7,9,36,145,27,77,192,80,119],"_date":152,takahiro:155,customized:149,"\u5217\u8868":[45,84],wiedenroth:80,"\u6b53\u8fce":88,"_normalize":[114,108,42,3,91,70,185,182,32,190,7,115,113,139,78,151,65],"\u53d6\u308a\u51fa\u3055":13,"\u30d3\u30eb\u30c9\u30a8\u30e9\u30fc":80,customizes:12,"\u53d6\u308a\u51fa\u3059":[63,13,69,120,155],"_retry":2,"({":131,"(x":80,"\u6771\u4eac\u90fd":[70,144,38],"[token":125,"\"utf":123,"(r":[168,179],rest:40,gdb:178,"(a":81,"_pack":137,"\u3046\u3061\u3044":97,"([":67,"-neologd":38,"(_":[154,177,18,151,48],"\u30d1\u30e9\u30e1\u30fc\u30bf":[55,121,125,7,113,63,27,79,80],"\u3042\u3052\u308b":[55,39],haystack:69,dcmake:101,"\u6c4e\u7528":[168,97,9],"\u639b\u3051":151,"(>":69,"(<":69,"(=":[2,151,69],res2:113,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":152,"((":[108,85],"()":88,"(.":[78,152],"*tables":16,"(-":151,"(\"":[75,3,123,97,32,47,125,7,115,103,162],world:38,"(!":69,"(&":[77,84,16],"('":[58,60,3,73,97],meaning:97,intel:168,"_but":69,"\u95a2\u308f\u3089":[108,168],"\u4ed5\u7d44":[54,119],conditional:154,yyyy:[149,151],";b":[162,47],".load":168,"-full":152,"\u591a\u3059\u304e\u308b":108,exit:[97,5],ddl:70,lucid:[155,125,152],"/httpd":[141,9],"\u8a18\u4e8b":[114,78,152],"\u5168\u6587\u691c\u7d22":[7,65],";\"":7,";/":[162,47],"package":[55,152,137],"\u5ec3\u6b62":11,favorite:119,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[27,54],"\u304b\u3048\u308b":183,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[190,133],"\u30ec\u30d9\u30eb":[6,7,8,97,80],"\u7b97\u51fa":[7,80],"\u306b\u3042\u308a":[133,65],"-size":77,"\u6df7\u305c\u308b":85,"\u7403\u9762":[75,169],"_prefix":137,"<encoding":97,"\u7530\u6cbc":80,"\u30e9\u30f3\u30ad\u30f3\u30b0":[3,80],emacs:119,recommends:139,"\u30aa\u30fc\u30d7\u30f3":[7,17,125,27],complete:[131,154,112,177,170],"/pull":152,"_empty":[2,173],"with":[88,152],"_load":[55,31,125,43],"_types":[133,80],pull:152,ideographic:77,october:80,"\u697d\u3057\u3044":[70,144],reqular:131,"\u304a\u77e5\u3089":55,gone:44,ac:190,uid:152,"| y":125,"\u30ec\u30b9\u30c8\u30e9\u30f3":132,am:[32,47],al:38,an:[40,110,83,12,97,113,9,139],"| n":151,as:[40,141,90,12,128,122,35,97,32,187,16,7,131,9,139,64,119],ar:[70,90,144],at:[42,185,97,149,110,20,139,189],"| c":151,"| _":74,"\u3002messagepack":[135,189],shimomura:7,"\u4e00\u65b9":[108,3,182,5,115,13,132,32,47,70,183,78,38,151],"\u30c7\u30d0\u30c3\u30b0":[77,90,9,80,126],"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[7,168,101],"\u9806\u4f4d":93,"\u30b9\u30c6\u30c3\u30d7":179,queryexpandertsv:[22,55,43,125,7,115,10,175,29],"\u6817\u5c71":[77,80],"_such":[2,173],original:[106,143,158],"\u5897\u5206":108,"\u6587\u6cd5":[55,157],senna:77,"\u4ed8\u968f":[146,72],"\u30c7\u30fc\u30bf\u30d9\u30fc":27,"\u5408\u8a08":[66,108,70,94,168,126,166,80],"\u6e80\u3055":125,"=yes":[108,152,125,77,112,178],"-talk":[77,125,26,152],"\u548c\u5e83":125,tx:38,"\u901a\u4fe1":[88,172],to:[40,55,42,121,79,16,7,113,110,19,20,189,135,106,84],tail:[173,152],tf:[122,184,12],"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[55,155],homepage:168,tc:[63,120],returned:[40,110],"/other":9,"\u30ab\u30c6\u30b4\u30ea":[108,90,46],"/rurema":80,"\u3002column":[69,3,121],condition:151,"(popular":108,large:139,adjust:108,"\u5909\u308f\u308b":[70,162,38,32,47],"\u5909\u308f\u308a":[144,126,74,117,103,38],"\u4e0d\u5b8c\u5168":27,"\u300c\u6771\u4eac\u90fd":70,"\u30ce\u30fc\u30de\u30e9\u30a4\u30ba":[90,133,125,80],"&gt":[162,32,47],"\u672c\u8a9e":38,"\u5927\u5225":13,pass:9,"\u30d0\u30b0\u30d5\u30a3\u30c3\u30af\u30b9\u30ea\u30ea\u30fc\u30b9":[7,77,80],"\u5909\u308f\u3063":38,"\u7701\u7565":[95,117,121,152,125],"\u7d22\u6642":155,"\u5897\u52a0":[108,125],"\u3067\u306b":[22,70,114,10],section:[40,86,97,121],"\u30ea\u30c6\u30e9\u30eb":[1,182,162,32,47,7,27],"\u4eba\u5411\u3051":77,"\u5927\u5207":132,"\"\u672c":38,"\u6700\u65b0":[27,117,152,26,77],"\u3002timeout":79,"_modified":185,method:9,contrast:[97,9],full:[90,12,32,77,38,179],hash:[94,185],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u30e2\u30fc\u30c9":[46,90],"\u30ce\u30a4\u30ba":[70,18],sender:[131,64],"\u975e\u516c\u958b":152,"_compare":79,"\u30af\u30a8\u30ea\u30fc\u30c6\u30ad\u30b9\u30c8":108,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcapi":7,"\u306b\u3059\u308b":54,via:48,followee:185,tokenizer:[7,55,31,80,43],"/scorer":12,"\u7121\u540d":[113,79],"(init":16,follower:185,"\u3067\u3059":[90,3,4,5,7,2,9,10,11,12,87,14,16,17,18,19,20,22,23,24,183,27,31,32,35,36,38,92,13,45,46,47,48,49,53,54,165,189,58,59,60,61,167,64,65,66,68,69,70,71,73,74,75,77,78,79,80,81,83,84,86,153,88,117,0,91,94,95,97,99,100,101,102,103,105,106,108,109,85,114,115,113,118,119,121,122,162,124,125,126,127,129,130,131,132,133,135,136,139,141,142,144,145,148,151,152,154,158,159,164,166,168,169,170,171,173,96,175,176,177,178,179,180,182,184,185,190,192],select:[17,1,11,43,55,35,85,31,125,147,7,59,171,117,103,77,76,27,155,80],executable:[52,55,43,101,103,77,189,80],"[grntest":27,mecab:[165,1,42,152,132,14,125,7,153,155,77,27,189,38,129,80,89],"\u7406\u95a2":53,"\u4e0a\u8a18url":152,more:[40,12,122,97,32,173,139,64],"\u30c6\u30ad\u30b9\u30c8":[46,90,152,85,38,162,155,133,32,47,125,7,109,190,179,77,119,84,168,65],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":44,"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[71,85],"\u518d\u5229":[94,108,60,80],"_argument":[63,113,2,173,79],"_messages":[152,119],endpoint:[131,64],installing:189,"_adjust":[108,56,69],learn:[131,64],"\u6bd4\u8f03":[55,108,182,155,168,7,80],scan:178,"_descending":63,accept:[35,155],states:171,gronoga:9,information:149,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":27,"\u300ccommand":36,"=dat":112,"\u52d5\u7684":[55,43,132,155,9,112],"\u5b9f\u884c\u4f8b":[90,3,91,12,95,68,47,48,7,145,100,9,10,148,105,127,143,108,11,151,85,13,154,114,115,59,18,117,167,162,65,22,44,164,49,23,122,149,82,183,74,75,173,96,46,78,175,177,178,179,182,130,131,185,133,32,135,136,171,109,190,38,102],"\u5019\u88dc":[154,18,177,170],"\u306b\u3059\u3050":114,"\u30fb\u81ea\u5df1\u7d39":185,"\u8aad\u307f\u51fa\u3057":132,github:[0,73,190,152,125,7,77,104,27,119,80,81],tokenbigram:[164,90,182,12,183,122,94,162,108,97,32,47,114,115,18,46,167,105,151,65],register:[22,55,43,133,31,125,77],replied:185,"\u666e\u53ca":132,sysctl:[166,139],"\u52d5\u753b":44,"\u8f09\u305b\u308b":152,installed:189,".co":[108,42],installer:152,its:[40,97,84,149],saucy:[125,80],".rpm":[165,129],"\u9577\u5185":80,confiugration:139,"\u63a5\u7d9a":[97,134,168,7,188,160,140],"[tokenizer":[7,125],"_weight":[73,95,121,80,85],salamander:[125,80],"\u6271\u3044":[11,13,144,38,177,80],"\u6271\u3046":[2,23,151,70,132,125,26,166,142,112],"\u6271\u3048":[99,16],"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":7,"\u5c0f\u306a\u308a":159,always:139,messagepack:[189,7,77,27,106,112],"\u6271\u3063":[185,1,125],"\u30ad\u30e3\u30b9\u30c8":[182,185,155,125,7,112],"[doc":[125,7,77,27,112,80],found:[113,110],".offset":113,"\u534a\u89d2":[63,190,3],"\u540c\u7fa9":176,"\u9ad8\u901f":[44,1,69,3,182,92,94,71,125,169,75,179,132,192,27,151,38,54,65],operation:[136,110,173],"\u6271\u308f":[92,108,90,182,13,168,125,16,7,70,77,190,80],really:[108,182,151],"\u524d\u8005":[74,190,176],"_entries":[17,117],"\u30ab\u30d0\u30ec\u30c3\u30b8":88,"\u30de\u30eb\u30c1\u30b3\u30a2":132,"\u6e2c\u7528":1,"\u305d\u308d\u305d\u308d":3,"/locale":[119,152,20],ftb:42,"_client":151,"/etc":[141,152,166,7,153,9,139,176],"\u6975\u4ed8":[75,169],"_hit":[3,4,82,102,9,173],"\u3053\u3053\u3067":152,"\u30a6\u30a7\u30a4\u30c8":73,"_user":[55,30,53,43],"\u3002\u3069\u308c":131,"-keyring":[7,153],number:[40,110,151,12,131,122,168,97,48,126,53],"_pipe":[2,173],"\u3059\u3079\u304d":69,"\u7d42\u308f\u308b":[114,182,151],"\u30b3\u30d4\u30fc":[121,152,93,113,7,59,158,79],"/disk":179,"|enable":90,"\u533a\u5207\u3089":27,introduction:[88,15],"\u30c9\u30e1\u30a4\u30f3":[130,80],">\u3001":156,"_stack":2,"_del":77,"\u642d\u8f09":132,"\u5b66\u7fd2":[154,155,125],"\u56de\u547c":155,"\u30b7\u30fc\u30b1\u30f3\u30b7\u30e3\u30eb":77,"\u30ea\u30b0\u30ec\u30c3\u30b7\u30e7\u30f3\u30d0\u30b0":80,listen:[7,97,9,54],"\u60f3\u5b9a":[82,44,158,126],"\u5b9f\u969b":[66,44,23,70,125,142,78],toybox:13,"_nofile":[149,125],canceling:35,"\u52d5\u74b0":180,"*data":93,"\u66f8\u304d\u63db\u3048":[152,81],gted:119,"_filtered":142,qps:[180,168],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[155,97],self:168,"_lock":[40,27,79,19],also:[108,182,12,128,131,35,32,151],internal:80,"\"theatre":91,"\u8a18\u53f7":[155,3,70,144,97,38],play:91,"\uff08todo":151,brooklyn:185,"\u306e\u3069\u3061\u3089":[108,151],"\u3060\u3055\u3044":[0,3,7,9,104,189,54,108,151,152,85,14,178,179,119,24,173,77,176,80,81,190,182,130,132,135,137,88,65],"\u5b57\u5217":[27,45,182,80,65],exe:[101,152],"_uint":62,cover:32,umemoto:27,"\u30ab\u30b9\u30bf\u30e0\u30ed\u30b0":80,arted:151,ext:90,"\u6d3b\u304b\u3059":108,"_vsize":[84,16],"\u306e\u305e\u3044":38,"_processes":2,microsoft:[77,101],"\u3057\u304b\u3057":[108,151,70,38,144,78,179,176,54,119],"/command":[179,9,102],xcode:89,session:[131,128],"-memory":155,"\u6570\u3048":130,"\u77e9\u5f62":[132,74,34],"\u5143\u6c17":125,columnn:7,"\u9577\u578b":[63,95],"\u6642\u306b":27,failed:19,"\u51e6\u7406":[1,2,93,133,144,46,47,7,90,9,54,108,151,60,119,164,69,168,125,74,173,77,80,182,132,155,31,32,65,38],factor:[108,80],"\u5225\u9014":[45,79],"\u30bf\u30fc\u30b2\u30c3\u30c8":7,columns:[58,108,155,187,7,139],"]]]":[70,154,156,151],"\u5fc5\u305a":[108,11,71,113,173,65],"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":54,"\u3082\u3057\u3054":7,"_point":[44,169,110],"\u30ed\u30b0\u30ec\u30d9\u30eb":9,bytes:[40,66,53],"\u6c7a\u3081":[23,65],"\u3082\u3057\u3042":77,"\u7528\u610f":[108,75,152,168,48,170,18,69,189,79,38,177],"\u3082\u3057\u304f":[142,45,47,7,9,165,151,152,13,113,63,23,166,162,125,173,96,77,78,80,182,32],set:[139,79,168],"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[73,1,155,125,7,178,27,80],see:[40,128,35,97,20,139],sed:[7,27],sec:19,"\u547c\u3073\u5143":16,sea:[90,177],sen:42,"\u8a00\u8a9e":[88,69,188],juman:165,currently:[106,9,83],mutex:[40,125],"\u65e5\u4ed8":[132,75,152],"\u3068\u3068\u3082\u306b":13,"\u3082\u3057\u308c":[176,38],available:[40,42,128],"<span":[162,32,47],"\u304c\u3064\u3044":[7,94,108,155,85],javascript:[55,152,9,36,157,102],"\uff09\uff08":65,"\u3082\u304d\u3061\u3093":9,"interface":131,"\u500b\u4eba":189,"\u6790\u5668":[132,38],"_already":[2,173],"\u77e5\u308c":[68,23,133,124,145,78],last:[7,185],"\u4e00\u8cab\u6027":124,"\u77e5\u308b":130,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[132,168,159],"\u578b\u5909":27,connection:173,mmap:[55,39,125],"<#{":149,"\u30a4\u30f3\u30b9\u30da\u30af\u30b7\u30e7\u30f3":125,load:[55,1,11,43,85,155,31,125,7,59,171,158,77,27,112,107],geolocation:[122,28,12],rdiscount:152,"):":[141,152],"@ceekz":125,"\u9577\u5185\u6b69":80,"-adjuster":[108,85],"\u30b9\u30ec\u30c3\u30c9":[132,134,168,16,97,54],"))":[77,108,176,151],"\u30ca\u30ce":[135,155],")-":152,"),":[73,122,28,125,12],")/":77,").":[141,152,12,122,97,32,131,184],"_exec":[2,84,16],")\"":[109,182,12,122,125,32,91],".htpasswd":[9,54],")'":[44,182,185,162,32,47,48,183,74,18,154,148,177,151],"[rpm":[7,27,112,125,80],tablename:11,"\u7c21\u6613":[141,75,80],"\u63a2\u3057":[132,108,38,168],"\u30d1\u30e9\u30e1\u30bf":[40,41,79,120,83,93,62,123,113,16,17,25,116,110,19,63,56,84,53,118,121],shinya:7,func:[40,53,16],"\u30ad\u30fc":[142,94,45,97,7,103,3,53,108,151,85,113,60,65,66,23,121,125,171,77,112,80,182,155,190,38],"\u3067\u307e\u3068\u3081":176,handling:139,")]":125,")\\":179,"-api":87,"\u3067\u306a\u3051\u308c":[182,151],"\u5236\u9650":55,"\u3002point":[34,169],"-apt":14,formats:149,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":[7,27,125],"_nromalize":190,"\u632f\u821e\u3044":[7,115,125,80,96],"\u63a1\u7528":[70,132,173],"<=":[185,151,9,125],binding:[162,42,47],"\u5316\u524d":60,"</":[162,109,4,47,32],"<-":54,"\u8a00\u3044":[183,71],"\u4e00\u7fa4":69,"_ptr":[40,84,16],swig:42,"\u56de\u52d5":168,alert:[6,97,8,9,149,80],levels:9,ifexists:58,stack:[125,173],"\u7121\u99c4":132,"1\u5ea6":5,"\u8981\u6c42":[124,3,125,183],"-path":[152,137],"_file":[2,135,9,176,54,173],mysql:[165,108,42,152,12,85,132,162,14,133,32,47,153,176,129,80],"\u5316\u51e6":[27,60],"\u30bd\u30fc\u30c8":[92,1,55,94,155,108,125,113,154,27,157],"_files":[2,173],location:[135,9,125,81],input:[58,135,106,173],emergency:[149,97,9],format:[40,42,4,131,149,106,119],"\u30cf\u30c3\u30b7\u30e5":[7,77,82,152,126],"\u30bd\u30fc\u30b9":[55,152,137],"\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea":152,"\u540c\u7b49":[144,168],"continue":80,"_nabe":80,"\u4ed5\u65b9":88,"\u30d6\u30ed\u30c3\u30af":[132,9,125],"_flow":[2,173],"_bool":[155,79],"\u30af\u30ed\u30fc\u30f3":189,"\u65e2\u77e5":23,bm:[122,12],"-mruby":[152,80],bi:[70,144],"\u4e0a\u4f4d":[70,113],wget:[165,129,24,14,153,189],by:[40,110,23,83,5,35,16,7,20,189,84],"\u30aa\u30fc\u30d0\u30fc\u30d8\u30c3\u30c9":[141,80],"1gb":77,"\u3068\u308f\u304b\u308b":152,garbage:[126,125],"\u983b\u51fa":77,into:[131,48,16],"\u3088\u308a":[45,144,7,100,27,189,108,75,151,85,13,114,63,65,69,70,168,125,77,78,169,176,177,80,179,182,130,185,155,137,38],"|key":[108,3,91,70,185,182,32,114,115,143,139,78,151,65],"\u8457\u4f5c":80,"\u30d5\u30a9\u30ed\u30ef\u30fc":152,pcre:7,span:[162,109,32,47],"\u56fd\u969b":119,custom:12,"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[7,55,157],"\u5074\u9762":132,"\u6574\u3063":178,opens:[139,110,83],"\"keyword":108,link:[13,102,130],line:[128,135,81,9,16],"\uff08ci":81,posted:185,"\u8868\u3059":[67,90,44,13,73,75,69,92,179],".php":152,up:4,".am":20,ul:90,"\u5206\u89e3":69,ui:108,"\u3054\u307f":[124,125],"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":88,"char":[40,83,62,123,16,113,79,84,53,80,121],"[sharding":77,"\u3054\u3068":[90,23,152,12,166,162,125,16,7,115,99,134],"\u3075\u308a":154,"\u304b\u307e\u3044":3,defines:187,codes:[152,5],taro:44,">uptime":4,logyyyymmddhhmmss:131,"=null":[136,108,90,117,65],invalid:[40,131,108,173],"\u8868\u308f":79,"\u898b\u4ed8\u3051":125,"\u7acb\u3061":135,elements:85,".dump":27,"\u53f3\u8fba":[27,155],"(nginx":141,"\u6307\u5b9a":[132,69],"\u4e00\u7dd2":[1,75,3,121,85,70,108,16,7,38,80,65],"\u3088\u304f":[108,96,38,179,85],"\u3088\u3046":[92,1,90,97,47,7,9,10,77,189,108,11,151,152,85,112,114,115,113,178,158,179,65,22,69,23,121,122,168,124,125,169,126,75,27,175,176,80,81,182,183,132,155,133,32,135,171,36,190,50],"\u3088\u3044":[108,182,130,151,78,79,54,119],"\u3088\u3073":69,age:[95,108,96],"/wgs":74,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u30d1\u30b9":125,oracle:[55,137],"\u3088\u3063":74,"\u8a66\u884c":132,hello:[46,151,108,164,114,38],code:[135,149,127,4,119],partial:69,"\u3067\u307f":132,",\"title":3,results:[7,131,113,32],existing:[97,64,20],"/sysctl":[166,139,89],"\u843d\u3061":[155,125],"\u3067\u306f":80,"\u3067\u306e":[135,38,32,80],"-lzo":73,"/json":[27,9,54],"\u3067\u3069":154,"\u3067\u3057":[24,13,151,80],"[label":108,"\u8a2d\u5b9a\u6e08\u307f":141,"\u306a\u304a\u3053\u306e":168,":..":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[27,155],"\u3067\u3044":[13,185,108,151],"\u30ea\u30af\u30a8\u30b9\u30c8uri":9,"\u3067\u304f":[108,151,85,137,88,176,80,81],"\u3067\u304d":[1,90,4,5,7,2,9,10,11,12,14,16,17,18,22,23,183,27,30,32,34,36,38,92,155,46,47,48,165,58,59,60,61,63,65,67,68,69,73,75,77,79,80,81,83,84,85,153,89,93,94,95,97,100,103,104,189,108,175,111,114,115,113,119,120,121,122,162,124,125,129,132,133,135,145,151,152,154,158,159,164,168,170,117,96,169,176,177,178,179,180,181,182,188,190],resources:[5,16],"{user":139,"-lz4":137,"\u7279\u306b":[69,152],"[snippet":[32,80],"'now":185,"\u8ca2\u732e":125,"\u983b\u5ea6":[77,154],"\u6368\u3066":27,".clean":152,"\u5f15\u304d\u7d9a\u304d":125,"try":[185,97,19],"\u6b8b\u308b":27,">rroonga":[162,47],"\u6b8b\u308a":[108,11,176,65],".sub":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[1,90,7,27,189,165,108,152,14,16,178,65,46,24,125,82,77,112,80,129,83,155,133,153,89],"_posting":[110,120],"\u4e00\u81f4\u3057":[108,144,80],video:44,".xml":4,index:[44,42,120,83,152,86,95,182,32,110,139,78,151,80,121],directive:9,"_operator":[113,56,84,121,110],"\u306e\u3067\u3057\u3087":108,"\u30bd\u30fc\u30b9\u30d5\u30a9\u30eb\u30c0":101,"\u30ef\u30fc\u30ab":9,"\u5224\u65ad":[83,151],"\u5fc3\u304c":178,nargs:84,"\u516c\u958b":[152,155,125,17,27,80],"?parameter":9,let:114,ubuntu:88,ctx:[40,83,134,16,17,113,79,84,53,121],"\u73fe\u308c":90,"\u3067\u3082":[0,2,3,94,144,47,7,101,9,189,165,108,152,14,115,178,65,70,168,125,73,183,74,173,27,78,177,80,179,129,132,32,153,137,119,38,102],grnslap:[52,55,43],buffered:86,"\u8d85\u904e":[166,125],firefox:119,"\u30c7\u30b6\u30a4\u30f3":7,"\u9014\u4e2d":[152,97,7,18,173,177,80],"\u3046\u3048":[7,27],standing:128,"\u3059\u304f":183,zip:[55,152,137],illegal:173,"\"sea":177,"\u3044\u304f\u3064":[88,179],next:[110,53],"\u3046\u3061":[92,11,121,7,126,113,69,96,63,27,79],"\u30b3\u30e1\u30f3\u30c8\u30c6\u30fc\u30d6\u30eb":78,"\u30af\u30a9\u30fc\u30c8":[90,133,182],"\u3059\u308b":[132,88,188,134,26],"\u7d4c\u7def\u5ea6":[55,157],"\u3059\u308c":[22,108,3,182,130,132,162,96,168,113,10,77,38,152,151],"/usage":12,src:113,"\u3059\u3080":23,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":88,"\u8ff0\u8a9e":77,occurred:[139,110],"-leaner":64,"\u578b\u6307":7,"_escape":84,"\uff08groonga":132,"\u4f7f\u3044\u65b9":[132,43,55],"this":[40,3,91,97,7,9,148,149,106,54,108,151,13,16,20,121,79,182,83,131,32,187,136,139,102],"(wgs":74,"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":7,"\u6e21\u3055":[7,75,69,53,125],"\u6e21\u3057":[69,3,103,58,102,61,77,80,182],"\u6e21\u3059":[112,77,3,151],"\u5171\u306b":[79,121],".domain":77,"\u6b8b\u3063":[155,125],edict:80,"\u3002\u3064\u307e\u308a":[108,3,182,19,38,91],"\u306f\u6708":151,process:[55,121,43,97,136,9,83],lock:[55,83,43,31,19,79,80,107],"_estimate":[27,110,77],"\u7d30\u5206":13,"\u3059\u3050":[132,103,54],"\u6301\u3061":[108,90,71,95,97,69,9,179],"\u6301\u3063":[108,90,182,85,132,95,124,7,18,49,167,190,133,151],"\u6301\u3064":[44,108,49,3,151,130,92,13,132,95,58,75,113,18,60,183,167,27,190,134],"\u6301\u3066":[164,95],"\u30d0\u30ea\u30e5\u30fc\u30b5\u30dd\u30fc\u30c8":94,"\u3059\u3067":[90,152,144,114,59,80],"\u3059\u3079":[108,90,151,94,173,168,80,136,185,11,9,69,77,27,127,38,177,54,107],"\u6b8b\u3057":108,defalt:155,"\u9664\u7b97":80,"-gqtp":[55,129,165,14,33,7,153,80],"\u3044\u304f\u3089":132,"_')":[73,60],"\u4e26\u3073\u9806":74,">starttime":4,tomotaka:27,"\u8a2d\u5b9a":88,alloc:[3,4,173,97,82,102,9],"\u4f53\u8fd1":169,"\u578b\u540d":95,element:[151,85],"\u9078\u629e":[108,75,152,132,100,77,84,80],allow:[7,153,108,182],":\\\"":58,op:[113,56,84,121,110],"[httpd":[7,77,125,80],"\u8abf\u3079":[93,34,79,130,169],"\u30ab\u30d0\u30fc":178,lz4:[189,80],naist:38,"\u30e6\u30fc\u30b9\u30b1\u30fc\u30b9":[38,85],comma:77,"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":180,yamaguchi:27,perfect:122,"\u3092\u3064\u3051":[108,23,182],"\u6539\u884c":[112,27,97,77],"_unavailable":[2,173],"\u6587\u66f8":[132,80,159],"=platform":137,total:[126,168,139],hobby:149,"\u30c7\u30a3\u30b9\u30af":[77,1,78],"\u5de6\u4e0b":1,"[space":182,"\u5165\u308c\u308b":179,python:[128,152,20],billiard:[70,144],lzo:[73,121,7,173,27,80],"\u4e00\u6642\u7d50\u679c":7,"_per":[27,16],"_implemented":[2,173],"/master":[119,81],"\u7121\u9650":[7,155,80],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30dd\u30fc\u30c8":80,"_none":106,".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":81,doing:136,"-patch":119,"\u753b\u9762":[1,152,80],frequency:[12,122,154,48,184,18,177,80],"\u30b3\u30e1\u30f3\u30c8id":185,"-fd":[131,27],"\u3002\u7701\u7565\u53ef\u80fd":162,"\u4e57\u308a":23,initialize:16,"\u4ed5\u69d8":[55,11,154,155,112,7,9,25,36,38,80],"\"\uff08":177,"\"\uff09":[13,1,74,177],"_friends":44,"\u30bb\u30b0\u30e1\u30f3\u30c8":[126,37,80,79],removing:83,"3ki":155,"\"timestamp":23,owned:84,"\u63db\u3048\u308b":[71,152],occurrences:122,"\uff08\u300c":[70,190],owner:9,"\u9069\u5408\u7387":38,"\u5897\u5927":75,"\u5bb9\u91cf":[77,108,126],"\u30cb\u30db\u30f3\u30b4":177,behaves:131,system:[108,182,24,45,97,32,139,151],"-keys":152,"\u30b9\u30da\u30eb":176,"\"weight":13,back:151,"\u304b\u3061":[108,144],"\u304b\u3064":[63,108,144,125,151],"_logger":[7,77],"\u304b\u3069":[108,182,70,166,96,34,74,9,61,154,169,80],"\u756a\u76ee":[108,90,3,182,13,95,133,125,113,63,179,151],"\u8ffd\u8de1":88,"-time":32,"\u500d\u7cbe":45,"\u6253\u3061\u5207\u308a":125,"\u304b\u3051":[125,107],"\u9650\u6587":[27,65],"_results":113,"\u304b\u305a":[7,80],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u304b\u305f":77,"-searchu":38,"false":[146,143,6,45,8,103,107,151,152,13,115,59,156,191,162,72,125,73,183,171,96,127,80,182,155,136,100],"_request":103,"\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"2grn":80,"*s":80,"_charlen":40,"\u304b\u3082":[68,49,23,182,133,124,135,167,59,103,145,78,179,80,151],documents:[122,115,32],"\u304b\u3089":[132,88,134],"\u3044b":[70,144],tokendelimitnull:[167,147],"_const":[69,84],"\u3069\u3061\u3089":[0,3,133,16,170,71,78,54],"/repositories":152,"*init":53,okapi:[122,12],"\u6a5f\u80fd":[1,142,186,47,7,9,103,27,189,108,85,154,16,115,61,159,65,69,23,162,168,125,77,175,112,80,182,132,155,133,32],"*/":[84,5,16],"\u3089\u308c":[17,90,3,91,132,95,155,105,125,7,69,103,94,124,27,78,38,171,107],"\u4e2d\u9593":[69,144],"\u3064\u3076\u3084\u304d":114,"\u6e80\u3059":[77,125],segment:126,"\u6e80\u305f":[183,74,69,179],"*\"":[147,78,108,80],latin1:7,"\u5168\u89d2":[63,27,190,3],"\u3067\u3059\u306d":124,"\u5408\u81f4":[74,3],"mo\u30d5\u30a1\u30a4\u30eb":119,"(arugment":151,"*res":[113,56,110],"\u30ea\u30af\u30a8\u30b9\u30c8":[146,6,8,9,103,105,54,107,108,151,156,158,191,160,72,125,82,126,173,80,180,73,35,31,36,37,140],"\uff08virtualbox":152,brew:[89,20],".gz":[165,129,152,24,14,89,153,189,119],"=r":7,"_initialized":[2,173],"_literal":80,"=g":131,"'localhost":[180,97],"=`":20,"=c":101,"=i":152,"=\\":[162,109,32,47],umask:80,terminal:[185,97],"\u8d70\u3063":59,"\u5373\u5ea7":77,"\u30ea\u30ea\u30fc\u30b9":[172,88,124],"\u5316\u5bfe":119,handle:[139,16],means:[40,108,110,122,136,9,149,139,106],"==":151,"=$":[189,152,119],"='":109,"\"ellip":169,"=\"":[108,4,24,162,32,47],db1:54,"=/":[176,189,97,178,152],db2:54,"=)":69,"/html":[27,119,54,20],">cache":4,"\u307b\u3068\u3093\u3069":[77,16],"_search":[55,43,30,7,77,27],nise:80,"\u64cd\u4f5c":[55,108,69,121,43,132,97,113,16,59,125,159,79,84,151],travis:163,"\u7cfb\u5ea7":[34,169],"/doc":152,"\u3002debian":178,"\u306b\u3064\u3044\u3066":[90,3,12,6,7,2,10,11,13,14,18,19,22,23,24,183,27,31,34,8,37,38,146,45,48,49,54,165,58,59,61,63,65,52,67,68,69,72,73,74,75,77,79,80,81,82,85,153,88,89,0,95,99,103,105,189,107,108,169,111,115,117,120,122,125,126,127,129,130,132,133,136,139,140,142,144,145,152,154,156,158,160,161,163,46,166,167,171,173,175,176,177,179,182,185,181,191],"\u8ffd\u8a18":[7,152],"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8":124,"_connected":[2,173],"\u30b9\u30bf\u30c3\u30af\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":125,"/var":[141,189,97,9,61],configuration:[139,9,125],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":80,"/status":[180,102,4,54,9],webclips:109,valgrind:178,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[182,94,155,125,27,151,65],etc:[139,9,54,152],tld:130,":\u5206":185,ci:163,ch:90,"\u533a\u5225":[45,179,108,143],allocates:40,ce:38,cd:[119,129,152,165,24,14,153,101,189,89],"\u7d99\u7d9a":[7,97,81],"\u591a\u69d8":132,zenigata:44,"\u66ff\u3048\u308b":3,allocated:40,"\u306b\u3044\u304f\u3064\u304b":[77,125],"\u304a\u3055\u3089\u3044\u3057":124,"_itoh":27,"\u5f97\u3089\u308c":100,"_vesion":109,"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":7,"[plugin":80,adjuster:[80,85],"@yappo":[125,80],"\u58ca\u308c":[155,7,126,61,77,27],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":1,"\u3068\u3064\u3044":74,"\u4fdd\u6301":[17,13,99,185,16],"\u518d\u5e30":[108,69,146,9,79,176,107],"\u5968\u6271\u3044":80,"\u5de6\u4e0a":[34,1],"\u6b20\u843d":125,tokenkytea:7,ultra:44,"\u307f\u305f\u3059":185,"0x":[13,45,112,182,173],"\u58ca\u3059":7,"\u58ca\u3057":61,vm:7,"\u4e00\u62ec\u3057":113,"_versions":152,"\u305d\u308c\u304b\u3089":[108,85],"\u5ea7\u6a19\u5024":27,"\u8a71\u3057":88,"\u3002\"":[130,70,185,125,18,100,102,51,80],"\u3002#":[27,155,185],"\u3002-":[63,36,189,93],"\u3002.":119,"\u3002(":[165,141,69,152,168,97,58,171,19,63,78,53],"\u3002)":[63,78,171,168,108],"\u300cbilliard":144,"\u8ab2\u7a0b":125,"\u3002:":[3,12,144,97,48,9,103,77,105,54,108,11,151,152,154,168,58,18,156,61,167,119,49,158,70,166,124,73,126,139,27,177,178,170,36,65],"_valule":100,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc\u30ea\u30b9\u30af":80,"\u982d\u6587":173,"\u518d\u5ea6":[77,69,19,80],"\"roonga":170,v1:69,v2:69,architectures:152,".group":183,php:[7,128],"\u3002[":[7,77,3,125,80],"_lzo":[73,2,121],off:[9,80],"\u3002c":[87,132,2],"\u3002n":[70,90,133],"\u4e00\u77ed":132,command:[40,16,7,116,20,81],ecmascript:[7,108,159,125,151],"_recover":[83,80],"\u81ea\u7531":[132,69,60,173],gettext:[119,20],"\u9806\u5e8f":[70,105,108,3],web:[1,182,152,154,108,48,18,189],"\u6b63\u898f\u5316":[7,133,32],"-values":77,"\u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":7,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":97,checking:[131,83],"|http":168,increases:122,five:3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[27,65,125,151,94],tvsec:82,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[55,188,178,33],"\u5947\u6570":151,string2:111,"\u672c\u8cea":168,become:42,"*target":84,"\"rect":[7,169],"/source":[119,129,152,153,87,14,24,101,20,165,189,89],"#{l":149,"\u63db\u3048":[63,79,91,179],nneded:139,"\u30dc\u30bf\u30f3":[7,125,152,119],"\u53d6\u308a\u9664\u3044":113,"_group":113,"\u53d6\u308a\u9664\u304d":[109,69],"(debian":141,iwai:[7,112],"\u5206z":45,"_queries":[3,4,82,102,9,173],"\u3053\u306a\u3044":80,software:14,suited:32,"\u7d42\u4e86\u30bf\u30b0":162,"\u7d42\u3048":152,"(get":180,virtualbox:152,"\u300cusers":185,"\u9805\u76ee":[1,108,99,82,126,141,54,65],"-node":129,"_remove":[55,43,31,125,7,27,79,80],"_started":135,"\u89a7\u4e0b":178,"function":[40,42,12,122,16,135,131,173,148,28,161],"\u300cpopular":108,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[108,11,166,168,191,189],"-dd":[149,151],sigstop:125,"-point":45,be:[40,12,128,97,48,10,149,28,110,16,113,20,64,121,122,127,79,83,131,35,136,139,84],count:108,compute:[122,139],"\u4e00\u756a":[108,189,54,85],official:152,"\u3002iptables":102,"[info":179,problem:139,yuki:27,"\u3067\u3082\u3059\u3079\u3066":38,"int":[40,3,4,12,44,93,86,45,48,7,53,122,108,75,151,85,13,154,113,16,17,115,59,18,19,25,67,120,121,70,62,125,63,74,110,96,78,79,177,80,182,83,130,127,185,155,84],"\u30d1\u30fc\u30df\u30c3\u30b7\u30e7\u30f3":80,inv:168,"\u65b0\u8a9e":38,"\u69d8\u3005":[88,69],"*proc":93,"\uff08not":159,redcloth:152,"%post":7,compared:32,"\u7570\u306a\u308b":[55,12,168,7,115,39,80],variety:44,"/message":152,"/default":[7,141],details:[40,35,149,139],"'user":115,"\u4eba\u3068":124,"/sources":[153,152],"_query":[69,154,125,7,77,84,80],"+ff":[77,190],needed:[9,16],eof:97,"_hugetlb":27,"-threshold":137,searched:110,rep:168,"*string":84,saves:131,"/sysconfig":141,"\u3070\u308c\u308b":155,lgpl:42,"const":[40,83,62,123,112,16,113,63,79,84,53,121],"/travis":81,spec:[7,155,125,152],"\u30e9\u30a4\u30bb\u30f3\u30b9":7,"\u304b\u305a\u3072\u3053\u3055\u3093":7,"\u4e0b\u66f8\u304d":92,editrc:27,"\u3002tokendelimit":48,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":152,replication:12,"\u4f8b\u3068\u3068\u3082":75,".en":152,"\u932f\u8aa4":132,upload:152,msyql:85,"[macports":27,starttime:[3,4,82,102,9,173],"\u7c21\u5358":[49,23,152,95,133,59,189,80],"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":155,"\u69cb\u9020\u4f53":[120,53,80,16],"\u304c\u3072\u3068\u3064":176,"/branches":178,"\u65e5\u672c\u6e2c":75,incompatible:173,"\u9006\u6587\u66f8\u51fa":80,zunda:27,above:[131,103,48],"\u3002\u3056\u3063\u304f\u308a":85,"\u4e8c\u3064":[90,11,46,69,23,115,168,144,133,16,75,100,183,142],"\u578b\u3068\u3057\u3066":45,"\u30a8\u30f3\u30b3\u30fc\u30c9":[36,190,155],"\u30af\u30a8\u30ea\u30ed\u30b0":[7,27,18,177,48],obtained:40,items:108,"\u540c\u3058\u4f8b":78,"-admin":7,"\u30d0\u30c3\u30d5\u30a1":[41,121,93,125,7,126,113,78,79,84],highly:[122,28,12],"_table":88,"\u6587\u5b57\u7a2e":179,negative:[40,53],program:[131,97,64],kytea:[7,90,125,189],separated:106,"\u304b\u304b\u308b":[114,113,3,103,61],"\u9df2\u7530\u57fa":125,aware:40,"_register":[40,55,43,31,147,158],"\u3064\u3065\u3044":185,"\u62bc\u3057":3,word:[7,108,182,151],work:[149,189],"\u62bc\u3059":[3,119],"\u30a2\u30fc\u30ab\u30a4\u30d6":[101,152,119],"\u5316\u6642":27,"\u540c\u68b1":[7,155,80,119],indicates:149,"-conditional":27,"\u5bfe\u51e6":80,"\u30b9\u30ad\u30e3\u30f3":[162,47],provide:[131,12],"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":152,length:40,recovers:83,"\"apple":190,"if":[40,5,128,97,9,149,189,53,106,12,85,16,113,19,64,69,121,122,110,77,79,151,83,131,35,187,136,139],"-lines":[131,27],"\u306e\u3046\u3061":[95,182],"/security":139,"_plugins":[27,77],"\u306b\u5bfe\u3057\u7570":115,after:[131,139,110,20],"|with":[3,91,12,95,47,108,151,85,114,70,164,122,162,73,183,115,78,80,179,182,185,133,32,139],"\u76f4\u4e0b":27,lat:168,"_title":[168,78,3,158],".description":185,"*func":[53,16],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":155,"@naoina":[7,125],"\u30d9\u30fc\u30b7\u30c3\u30af":54,"\u306e\u3069\u3061\u3089\u304b":[108,96,182,151],"\u30dc\u30c3\u30af\u30b9":108,"\u5bfe\u8c61id":41,choose:97,".conf":[166,141,9,139,77],japan:[171,102,130],"\u30d5\u30a1\u30a4\u30eb\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":176,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf":80,"\"say":151,"/windows":[101,152],"\u4e0b\u9650":[63,120],then:[40,131,148,9],them:[139,84,12],"\u8f9e\u691c":[27,151,94],"_token":80,they:[122,139,12,149],"\u5168\u3066":[108,151,45,114,113,9,159,78,119],"\u697d\u3057":[70,144],"\u56de\u6570":7,"\u3042\u304d\u3089":80,"-send":[131,64],"\u5168\u304f":77,"\u7a81\u7136":125,"\u5316\u65b9":[190,133],carlos:[59,127],serach:18,"/null":1,"_options":[125,151],logs:[142,122,23,131,149,105,179,64,65],"<endpoint":64,patsuffix:143,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":7,"+ y":45,"+c":97,"+a":182,network:173,"_directory":[2,173],".deb":152,"\u3068\u3059\u3079\u3066":[7,108],wgs:[44,75,130,13,185,45,34,74,110,102,27,169],"\u6210\u308a":[108,182,173],"\u90e8\u5206":[69,182,135,178,77,189,80,151],"\u77ed\u3044":[185,155],"+ \"":7,"_tp":180,"\u77ed\u304f":[114,132],standard:45,"_to":[185,78,123],"_tf":[77,12],"\u30eb\u30fc\u30eb":[155,108,90,80,54],"\u30eb\u30fc\u30d7":[7,155,80],created:[40,131,185],"++":[165,129,152,128,112,132,97,16,77,27,189,84,80],"+-":[84,9],creates:[40,139,84,187,149],"\"ni":177,"\"no":7,"\u6709\u7121":[13,162],"_failure":5,"\u30eb\u30fc\u30c8":27,"\u59a5\u5f53":94,"\u305d\u306e\u3088\u3046":171,"><":[84,4],">=":[125,151],">>":[125,151],"_next":[63,110,155,120,125],">.":[162,47],">\"":[108,109,162,125],"\u30bf\u30fc\u30b2\u30c3\u30c8\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u3082\u3089\u3048\u308b":124,"\u30b5\u30dd\u30fc\u30c8":[92,1,90,4,94,45,141,7,9,103,77,145,51,189,54,11,151,152,13,112,14,114,115,63,179,65,68,168,124,125,27,78,176,80,81,182,130,132,155,32,188,190,38,102],"\u898b\u306a\u3057":63,john:[171,143],"\u30b9\u30ab\u30e9\u30fc":85,"\u63a2\u7d22":132,tokenfilterstem:[153,14,80],">n":4,"\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9":[113,79,83,121],"\u3069\u3061\u3089\u304b":[151,32,47,182],"\"unknown":123,keyid:152,target:[110,83,101,20,79,84,80,121],">_":190,"\u3002value":[79,60],"\u57fa\u76e4":16,":byte":62,"\u30d6\u30fc\u30eb":[13,45],contents:40,latency:168,dbms:32,"\u5f8c\u8005":[74,190,176],",\\\"":58,"\u8ff0\u3079":3,indexes:158,indexbuf:121,"_distance":[55,1,43,125,7,27,161],"_jis":[189,38],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":[131,125,119],gzip:[7,189,192],"\u5408\u308f\u305b":[7,121,152,151],gronnga:170,"\u3002host":173,"-strings":112,"\ufff0\"":38,"\u767a\u751f":[73,1,189,152,70,132,135,125,16,7,113,77,79,80,65],"\u8003\u3048":[108,3,182,130,132,124,54,151],"\u5270\u4f59":80,"(target":[148,100],keywords:[122,84,12],"\u65e2\u5b9a":7,"_input":[135,2,151],implementation:128,"\u771f\u306a\u3089":151,"*section":121,rectangle:[7,110],"-frequency":27,iptables:54,"do":[136,168,80],"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":155,"\u3082\u3057x":125,"\u3055\u3089\u306b":[44,11,3,85,132,170,94,77,80],de:119,"\u53d6\u308a\u5f97\u308b":45,"\u8ab0\u304b":88,"[libedit":27,"\u8ab0\u304c":185,runs:[97,64],"\u81ea\u4f53":[182,80],"\u8ab0\u3067":80,"\u4e0b\u90e8":152,"_compress":121,depends:[122,28,42,12],"\"yyyy":151,"\u7d9a\u3051\u308b":38,"\u67d4\u8edf":[132,159,115],"\u5bfe\u8c61obj":41,"\u91cf\u6307":179,"\u3067\u3057\u304b":38,"\u3002json":58,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,terms:[122,164,3,182,12,126,70,162,108,97,32,47,46,115,139,151],wo:38,"\u3044\u305a\u308c":[45,11,60],"\uff12\u3064":74,packages:[119,129,152,165,24,14,141,153,101,189,89],received:97,"_tables":[77,125,16],"\u69cb\u3044":[177,32,47,119],ill:144,"\u6319\u304c\u3063":38,receiver:[131,64],requests:[131,35,149],com:[134,130],col:79,"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":[88,152],"\u7f6e\u63db":108,calros:96,"\u30d1\u30fc\u30b5\u30fc":[182,152,179],"\u95b2\u89a7":102,")\u300d":97,snippet3:32,")\u3001":80,enginen:177,"_accepted":103,"'needle":69,"\u3082\u3057\u3053\u306e":166,"\u65b0\u305f":[93,113,69,83,121],applied:[139,42],"-secret":152,has:[40,42,152,12,97,187,113,110,149,139],gnu:[55,152,137,20],"\u9650\u5b9a":179,zlib:[73,155,121,14,125,7,153,173,27,189,80],"_message":[135,78,179],"_only":[2,173],"\u7e4b\u3052":80,aio:125,"\u5165\u529b":[1,146,3,6,97,48,105,107,108,151,154,58,18,156,158,191,160,168,72,125,73,126,173,27,112,177,180,82,170,135,37],"_close":[40,69,120,86,16,17,63,27,79,84,80],"[solaris":7,cond:125,conf:166,"\u56fa\u5b9a\u9577":155,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":69,"\u9069\u3057":[114,132,65],"-dataset":[52,55,43,154,125,147],"\u4e0d\u5177\u5408":[7,77,88,125,80],"\u6771\u4eac":[70,74,75,38,144],"-packages":152,"[warning":179,hana:44,"\u76ee\u7684":[189,90,23,125],"\u72b6\u614b":[165,82,129,155,3,152,126,70,132,14,97,16,7,153,180,124,77,177,80],"\u30b0\u30ed\u30fc\u30d0\u30eb":[7,19],the:[40,42,12,97,48,7,9,103,148,149,189,53,108,75,151,87,16,113,19,158,20,106,64,121,122,110,79,182,83,131,35,32,187,136,84],"_shutdowned":[2,173],"\u30de\u30c3\u30d4\u30f3\u30b0":166,"\u826f\u4e8c":80,solaris:[55,137],"_score":[108,121,12,185,125,7,154,74,60,77,27,151],"\u8db3\u3057":151,repoforge:[7,129],thanks:185,"\u3068\u306a\u3063":125,adding:[35,20],"=sjis":189,"\uffef\"":38,"~ \"":[151,179],"\u7027\u5185":125,"\u7528\u3044\u308b":[44,3,13,132,99,74,173,79],"\u6307\u6a19":79,jekyll:152,arai:77,"\u30ed\u30c3\u30af":[1,97,125,7,136,19,27,79,107],"\u307e\u3068\u3081\u308b":9,"_expr":88,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[189,135,11,168,192],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[55,173,157],"\u307e\u3068\u3081\u3066":[13,132,152,130],"-token":[153,14,80],"\u3057\u304d\u308c":7,tokenbigramsplitsymbolalphadigit:[167,115,18],comments:[183,78],"_arg":2,tasuku:42,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":152,".sourceforge":[152,26],"(select":151,"_compile":84,"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":192,"\u8db3\u308a":[27,176],"\u30b5\u30fc\u30d3\u30b9":[7,132,125,80,81],substitution:115,"\u7a32\u7530":125,post:[108,152,125,7,77,80],properties:149,obj:[41,79,83,93,126,56,84,53,118,121],"*ic":120,accepts:[131,127,97],"*ii":86,"\u6709\u7528":[3,94,95,54,135,9,77,80],"\"text":27,"\u5224\u5b9a":74,zxvf:152,"\u3068\u306a\u308a":[182,54,32,47,102],".h":[87,40],"**":[121,8,63,79,53,83],"float":[108,75,4,13,45,7],"\uff09\u3001":[94,144,152],"\u6700\u521d":[141,3,47,103,27,108,151,13,16,65,162,124,96,77,78,176,80,179,182,131,32,135,38],"\u30a2\u30b8\u30e3\u30b9\u30bf\u30fc":[108,85],"*'":108,"_socket":[2,173],"\u5927\u6587":[108,179],"\u5b89\u5168":[77,173],way:64,cdbs:27,"cpu\u30b3\u30a2":[97,192],"_body":[70,73,91],"\u6027\u80fd":132,"\u6c7a\u307e\u308a":176,encoded:131,"true":[1,146,3,91,12,6,45,164,47,136,46,145,100,103,10,148,109,127,107,114,108,75,151,85,13,191,58,115,59,156,143,95,65,22,44,68,23,122,162,72,125,169,73,183,74,171,96,78,175,80,179,182,130,185,32,34,8,190],maximum:[35,12],"\u30e1\u30c3\u30bb\u30fc\u30b8":[185,11,80],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[55,164,90,43,108,48,46,18,190,77,27,189,65],mte:42,"\u6587\u5b57":[1,90,97,47,7,8,27,108,75,151,111,16,58,113,63,65,46,69,162,125,169,77,79,176,80,182,83,132,85,133,32,34,190,84],"\u7d44\u307f\u8fbc\u3080":[132,69,9],syscall:80,"\u30ed\u30c3\u30af\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],score1:69,score2:69,distributions:152,"\u3054\u89a7\u304f":[3,178],physical:126,test:[3,152,13,185,168,102,78,178],"\u5c5e\u6027":[90,133,147,73,109,49,167,105],"\u305f\u3081\u3057":74,truncate:[55,121,43,31,125,136,77,27,80],welcome:[185,108,182,151],update:88,"\u547d\u4ee4":97,"[gqtp":125,scorer:[55,156,43,77],tajima:7,"\u7de9\u3084\u304b":77,masaharu:[7,112],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":27,"/debian":[153,152],"\u30ea\u30af\u30a8\u30b9\u30c8gqtp":173,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[55,157],"<threshold":97,"\u901a\u77e5":[152,103],"(ptr":155,"_denied":[2,173],"\u8a2d\u6a02":27,"\u5f53\u3066\u308b":[13,103],entries:[108,182,162,47,139,151],"/http":[141,9],"\u72b6\u6cc1":[70,132,108,151,93],"\u3068\u3057\u3066":[92,2,142,5,112,94,97,68,47,136,7,9,77,145,56,53,58,108,11,151,152,111,154,14,15,16,17,115,18,60,178,20,65,163,164,69,23,121,165,159,168,125,73,170,75,27,127,79,176,177,80,179,129,190,182,132,30,32,153,171,189,155,119,38,89],"{column":179,"\u4e0d\u6574\u5408":1,localhost:[180,4,152,131,168,97,9,103,27,54],"(database":166,"4gbyte":66,initializes:[40,5],initialized:[40,16],"\u3002cursor":63,"[munin":[7,27,125,80],"\u30c8\u30e2":44,shared:[19,121,83],supporting:9,"dat\u30ad\u30fc":125,"[deb":[7,27,125,80],"\u6e2c\u4f4d":132,"\u30b5\u30d6\u30bf\u30b9\u30af":152,"\u96c6\u5408":[71,85,7,113,159,179],"-rotate":77,appears:32,change:[7,9,54,20],"\u30ec\u30dd\u30fc\u30c8":189,liblzo:[153,14],"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[70,108,159],"\u305d\u306e\u969b":152,usually:64,".spec":27,".exe":101,"\u305d\u306e\u307e\u307e":152,"\u6700\u5c0f":[165,108,14,129,153,96,141],marked:141,"-cutter":152,"'haystack":69,"\u7d71\u5408":[7,132,125],should:[40,35,16,20,127,189],httpd:[7,112,125,80,152],"\u6307\u6570":151,https:[119,192,190,152,81],selects:110,"/copyright":80,"enter\u30ad\u30fc":125,"\u6d41\u91cf":54,"_sum":108,"_plugin":[40,27,147,80,77],cas:173,"\u884c\u308f":[180,44,108,168],nfkc:190,cat:152,can:[40,119,106,83,12,128,122,35,10,97,32,16,149,19,158,20,189,139,127,48,9],clearlock:[55,1,43,31,7,80],",\"http":13,"_stable":116,"_stamp":149,"-sphinx":20,"\u884c\u3063":[178,74,130,80,152],"\u5b89\u5fc3":124,"\u884c\u3046":[180,44,164,75,143,152,185,144,124,141,7,115,74,155,178,63,78,80,65],",'":[13,45],"\u884c\u3044":[180,44,69,3,152,70,185,144,97,115,113,63,78,79,168],",\"":[44,4,185,126,158,77,78,80],",.":152,mpaa:96,"_logical":77,"\u884c\u3048":[178,115,3,182,80],write:[108,142,97,136,20,76,112],"^commit":152,"\u8fd1\u508d":[7,80,159],"??":108,"\u30e1\u30c3\u30bb\u30fc\u30b8\u30dc\u30c7\u30a3":125,"\u5316\u6e08":[79,83],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30e2\u30b8\u30e5\u30fc\u30eb":164,uint:[155,3,91,45,7,102,105,127,143,108,151,111,114,59,95,65,44,164,70,125,183,74,171,96,78,80,179,182,130,85,135,139,190],",_":[44,108,3,151,130,85,185,115,74,154],"\u5207\u308b":[9,80],",[":70,"\u5207\u3089":80,"\u8fd4\u3059\u304b":154,ghz:168,"\u5404\u56fd":152,"\u30b2\u30c3\u30c8":26,",{":[168,97,4],"\u304b\u308f\u308a":[70,77,80,165],"\u5357\u534a":7,"\u82f1\u8a9e":[0,152,27,38,80,119],"=-":189,"\u5bfe\u8c61ctx":16,ieee:45,"_account":119,":ss":[149,151],"_tsv":[106,176],"\u30bd\u30d5\u30c8":176,"-libedit":155,"=(":152,"_rotate":77,"\u3002gdb":178,"\u78ba\u5b9a":154,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9\u30e2\u30c7\u30eb":80,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":189,"\u4f5c\u7528":7,"\u542b\u3081\u308b":[108,90,23,182,152,112,133,80,27,142,176,3],rake:152,"\"version":4,"\"ruby":85,"\"vector":125,alisa:115,now:[55,161,43,20],"\u3086\u304d":143,"_lcp":113,january:131,"[normalizer":80,"\uff4d\uff59\uff53\uff51\uff4c":[162,47],"\u8aad\u307f\u8fbc\u3081\u308b":158,el:[129,38],domain:[40,87,95,97,59,173,105,79,84],en:[154,90,38,177],ea:[149,90],ec:108,kana:[154,18,177,187,48],ex:90,year:149,"\u70b9\u6570":[135,77],es:38,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":152,opened:[139,149],"\u9054\u3059\u308b":63,"\u518d\u69cb":27,increase:139,"\u3065\u3051":[7,125],"/files":[152,20],shows:106,"\u5230\u9054":66,"\u5d8b\u7530":7,"-rroonga":17,care:122,"/pub":129,"\u7d50\u5408\u5f0f":7,arnaud:27,"[windows":[7,27,125,80,77],british:91,period:77,"\u3078\u306e":[13,189],"_block":[2,173],omitted:[136,4],variables:40,"\u305f\u3069\u308b":44,"_process":[2,173],message:[40,23,122,8,149,78,179],xt:[90,38],size:[40,148,121,35,126,113,62,63,139,79],unlink:84,checked:152,silent:81,"\uff08=":108,bookmark:[158,85],"_obj":[41,69,120,83,43,55,93,86,30,112,125,16,7,110,77,27,84,80,121],"\uff08.":152,"\uff08,":3,"\uff08-":[108,3],".git":[104,152,119],"\u30bd\u30b1\u30c3\u30c8":[73,146,6,72,7,126,8,156,158,160,191,105,37,82,140,107],"\u3044\u308c":[7,13,79,38,77],"\u3044\u308b":[1,90,103,93,95,97,47,7,100,146,9,69,10,145,105,77,189,53,107,114,108,75,151,152,85,147,14,168,113,16,58,115,59,155,178,61,63,65,22,119,68,49,23,121,124,167,72,125,73,126,171,117,96,27,79,112,80,81,190,182,183,132,109,30,186,32,175,135,36,37,191,140],that:[40,108,110,121,12,128,122,97,32,136,7,131,113,9,149,148,139,106,84,53,19],kenichi:[27,155],"\u6a29\u8868":80,"=path":137,libevent:[189,153,14],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,"\u304by":125,x6:152,than:[12,85,122,128,48,149,139,28,179],"\u30d5\u30a9\u30fc\u30e0":[108,159,125,182],"*next":53,"[index":80,"/gat":[74,3,130],accesses:[139,121],"_basic":[9,54],"\u5404\u547d":168,browser:119,"\u3044\u304f":[88,172],"(scope":183,"\u3044\u304d":[124,3,152],remained:[149,179],"\u3059\u308b\u304b":130,"\u3044\u3044":[124,26],"-zlib":137,"\u30b3\u30f3\u30d1\u30a4\u30eb":[112,125],"\u30b3\u30f3\u30d1\u30a4\u30e9":[27,80],"_circle":[27,161,125,43,55],engin:[154,177],"\u591a\u5f69":132,"=none":[108,90,133,46],"\u3044\u3064":177,"\u3044\u3063":179,"*buffer":79,"\u3044\u307e":68,"\u9806\u6b21":[180,97,3,173],"|suggest":154,price:13,"\u5c0e\u5165":[77,11,178,80],"_section":[121,185,95,73,78,80],"\u79fb\u52d5":[152,87,7,101,191,27],"\u672a\u4f7f\u7528":173,"\u3068\u308a\u3068\u3093":[182,151],"-yyy":119,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[7,27,80,55],"\u305f\u3069\u3063":185,"\u3057\u3044":[70,144],"\u3057\u304f":125,"\u975e\u4e92":[7,77,125,80],"\u65b0\u5bbf\u99c5":74,"\u3057\u304b":[108,182,13,54,9,179,151,78,119,38,80,65],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":88,oldvalue:121,"\u3057\u3066":[44,108,155,3,152,130,70,14,124,125,7,113,9,178,119],"\u6700\u5927":[1,142,94,97,7,54,108,151,17,62,66,67,23,166,168,125,117,96,27,80,155,32,173],"\u30bf\u30a4\u30c8\u30eb":[44,108,151,13,78,182],title:[44,3,130,12,136,13,125,122,183,102,158,152,78,28,80],only:[40,12,122,97,9,158,28,106],"\u3057\u307e":124,"-server":[55,129,165,14,97,125,33,7,153,27,112,80],"\u30b9\u30ed\u30fc\u30af\u30a8\u30ea\u30fc":9,cannot:[55,39],"\u5f8c\u8ff0":[63,183,69,152,179],"1\u6708":[13,185,45,108,151],"\u8a73\u7d30":[141,90,3,45,7,9,10,56,165,108,189,151,85,14,17,115,178,61,25,95,65,22,46,70,168,125,74,77,175,80,179,129,182,130,135,153,188,36,119],"\u7528\u5909":80,".label":108,"/gqtp":[141,125],"\u62c5\u5f53\u8005":152,"\u8b70\u8ad6":0,"\u623b\u308a\u5024":[40,120,83,5,16,17,113,19,79,84,121],"\u840e\u7e2e":124,"\u300cbob":185,"\u4e21\u65b9":[108,185,182,85,132,114,94,151,38,177,143],"(scan":178,"\u8a18\u6cd5":[78,151],"\u70b9\u4ee5\u4e0b":13,"\u30d0\u30c3\u30d5\u30a1\u30ea\u30f3\u30b0":125,"_mode":80,"\u5dee\u96c6\u5408":151,between:[55,43,97,125,79,161,64,80],"[dd":179,"import":152,"\u5426\u304b":[142,23,96],"\u5e38\u306b":77,notice:[6,122,8,97,9],"{label":108,unlocks:40,"\u3057\u308c":[49,182,135,59,103,167,179,80,151],"\u3057\u308a":124,tokenbigrma:90,"\u3057\u3088":[41,69,13,114,125,16,58,75,19,27],"\u672a\u8a2d":7,article:78,"\u6a5f\u68b0":80,embedding:97,"\u3079\u30fc\u30b9":80,"\u8d77\u3053\u3063":59,"\u975e\u4f9d":129,"-groonga":[104,185,168,152],"\u5c55\u958b\u5f8c":108,learning:131,"\u30ad\u30e3\u30f3\u30bb\u30eb":103,"\u8868\u8a18":[75,91,152,85,13,45,125,7,74,27,151,119],"\u8d70\u3089":59,"\u578b\u60c5":7,cares:122,"\u3002callback":69,"\u8868\u8a08":176,"'>":109,"';":97,"_multiple":12,ruby:[55,42,152,43,85,132,31,125,7,80,81],"\u5438\u53ce":3,developing:164,these:[97,32,12],"\u4f55\u3089\u304b":45,"\u975eascii":38,"\u30b7\u30b0\u30ca\u30eb":[27,80],geodetic:45,"\u4f7f\u7528\u4f8b":75,"/packages":152,shorttext:[3,91,12,94,45,97,46,47,48,100,102,148,105,110,127,143,122,108,75,151,85,13,154,114,115,59,18,158,63,95,65,44,164,70,162,168,73,183,74,171,96,27,78,109,177,80,179,182,130,185,155,32,135,136,139,190],"\u3002\u3002":92,"\u3002\u300c":[44,108,90,182,133,46,151,78,179,38,80,65],"\u3002\u300d":70,"\u5fc5\u8981":[69,152,132,124,88,178,119],canceled:103,", {":[9,54],"\u5c65\u6b74":152,"\u8f9e\u66f8":[165,1,70,155,125,7,38,80],develop:[164,11],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30ce\u30fc\u30c9":77,"-dir":168,"\u6fc1\u70b9":190,document:[151,12,122,162,155,97,32,47,152,36],"\u3002\u3044":69,favorited:185,"\u5b89\u5b9a":[132,11,112,126],"_space":[2,173],initialization:131,".po\u30d5\u30a1\u30a4\u30eb":[88,152],", \"":[78,162,85],favorites:185,"\u3042\u306a\u305f":[77,152,26,179],eito:125,"\u3002\u3059":[114,168],theater:91,"\u8d77\u3053\u308a":91,"\u5171\u901a\u63a5":94,"\u3059\u3079\u3066":[90,3,95,46,7,9,27,189,108,11,151,85,59,113,164,168,96,77,80,179,130,155,38],"[output":112,"\u3002ecmascript":108,"\u6bd4\u3079":[114,80],appveyor:80,touch:139,"\u30ab\u30e9\u30e0":[132,189,55],speed:170,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":82,"\u3002api":[162,32,47,159],"\u4f4e\u304f":[70,38],"_filename":2,"_extract":42,"\u4f4e\u3044":[70,108],desktop:101,"\u30c7\u30fc\u30bf\u30ab\u30e9\u30e0":61,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":164,"\u3002apt":152,real:[139,32],"\u542b\u3081":[108,176,182,152,96],"\u542b\u3080":[180,73,108,69,23,182,85,185,134,144,125,7,154,77,3,78,80,151],"\u8a00\u3046":[177,85],"\u4e38\u62ec":3,"\u9234\u6728":7,read:[32,173],"\u8a00\u3048":[70,182],"\u5c55\u958b\u7528":27,amd:152,"\u542b\u3093":[108,69,182,13,185,32,135,170,18,38,80,151],"_hook":[55,30,43],using:[106,78,42,48],"\u6df7\u5728":36,"=site":102,output:[85,155,125,16,7,156,158,106,112,80],"\u5c5e\u3059\u308b":[63,105,45,79,121],"_interrupted":[2,103],unsplit:69,"\u30c4\u30ea\u30fc":80,"\u30b7\u30b9\u30c6\u30e0":[132,88],"\u5de6\u53f3":3,"id\u9806":63,"\u30ec\u30b9\u30dd\u30f3\u30b9":[17,2,125,7,54,27,80,173],moero:44,unlocked:40,"\u30de\u30b7\u30f3":97,forks:97,"\u542b\u307f":[63,135],"\u542b\u307e":[3,95,144,48,7,100,10,145,105,54,108,151,152,58,115,65,22,68,69,23,96,175,176,80,129,182,185,32,135,38],"\u5206\u3051":[55,95,152],tomoatsu:155,"\u30d7\u30ed\u30c0\u30af\u30b7\u30e7\u30f3":9,".posted":185,"-static":27,rdbms:[132,97],"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":168,central:185,backup:[83,158],processor:[153,129,14,165],"/admin":[27,97],"\u30ea\u30af\u30a8\u30b9\u30c8id":[55,31,43],"\u30aa\u30d5\u30bb\u30c3\u30c8":[7,77,108,154],"\u53f3\u4e0b":[34,1],"\u53f3\u4e0a":1,"=title":102,operator:110,your:[97,139,136,20,27,81,119],"_example":177,log:[40,55,152,43,31,7,27,189],prepare:9,aren:139,assumed:53,rpmforge:129,rlimit:[149,125],"\u77e5\u8b58":168,cflags:24,"\u306b\u3064\u3076\u3084\u3051":124,"d\u30ad\u30fc":3,"/query":[22,175,10],",\"links":13,"~${":179,"default":[189,20],"\u30b3\u30b9\u30c8":[114,113],"[benchmark":80,"\u30ef\u30fc\u30ab\u30fc\u30b9\u30ec\u30c3\u30c9":125,"\u30d5\u30a1\u30a4\u30eb":88,describe:40,"&request":103,"\u5bfe\u5fdc":[132,134],"\u5177\u5408":108,"\u95a2\u4fc2":[104,55,69,137],"\u56db\u89d2\u5f62":92,storage:[162,47],"\u691c\u67fb":79,"_code":[40,135,149],valid:48,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[102,54],you:[40,12,128,97,48,9,106,28,189,16,158,20,64,119,121,122,127,83,131,35,187,136,139,84],"\u4f4f\u3093":185,string1:111,massachusetts:185,coverage:178,"[fedora":[7,80],"<ip":[168,97],"\u4e94\u5165":27,building:106,bulk:84,"\u5b9a\u7fa9":[146,3,12,93,45,97,47,7,100,148,105,53,108,75,151,114,115,113,60,156,69,23,121,122,62,162,72,73,183,171,173,96,77,78,176,80,179,182,32,109],"\u8a66\u3057":124,"\u8a66\u3059":[38,192],"\u3002\u00d7":124,cores:131,"\u524d\u8ff0":[70,190,9,65],month:[44,149],"\u308f\u304b\u3061":144,"\u3002name":[113,121,16],"4byte":173,"-_":[122,108,12],"\u57fa\u6570":151,longitudexlatitude:125,"-e":97,"-d":[131,173,97,9,51,64,102],"-g":101,"\u4e16\u4ee3":11,"-a":[7,97,182],"_rk":63,"-c":[165,129,97,173],"-m":180,"-l":[131,149,97,64],"-n":[131,27,3,97],"-i":[168,97],"_rc":[40,41,108,79,83,5,93,86,123,113,16,17,25,116,110,19,63,56,84,53,121],"-j":189,"-t":[131,97],"_bulk":[84,16],"-p":[180,131,97,168,102,173],"-s":[131,97,64,173],"-r":[131,64],"-x":[125,152],"-z":131,"\u73fe\u983b":80,"\u524a\u6e1b":77,very:[135,108,182,12,162,32,47,58,151],"\u4ed5\u7d44\u307f":[7,9],"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[27,54],"\u76f4\u5f8c":16,":\"":[84,3,179],"_github":119,"\u6b8a\u547d":168,normalizers:49,"\u9df2\u7530":125,"-\"":46,"--":[40,41,1,90,91,12,93,97,46,47,48,7,100,101,9,148,120,56,53,122,108,109,151,152,85,113,16,17,115,116,19,63,162,118,44,164,23,121,70,62,123,168,125,25,74,110,27,79,176,80,179,83,130,185,155,32,147,36,84],"-(":[151,152],"-+":9,"\u3057\u307e\u3057\u3087":[38,23,91,85],"->":[77,155],"/work":152,"/alice":38,"\u518d\u73fe":[70,124,38,125,159],"-search":[38,80],"\u975e\u5206":108,"\u53ef\u8aad":80,"[admin":[7,27,125],"@s":155,naoina:[7,125],"-jinja":152,"\u6e2c\u5730":[75,13,45,34,74,169],learned:64,"@~":179,"\u30d1\u30b9\u30b9\u30bf\u30a4\u30eb":179,"\u9ad8\u3044":[108,3,132,126,9,154,38],"/ja":[17,152,119],"\u304b\u304b\u3063":[135,108],"\u306b\u95a2\u3059\u308b":[55,108,182,43,125,26,7,25,9,63,27,112,177,80,151],"\u30aa\u30b9\u30b9\u30e1":[165,129,14,153,101,137,38,179],"@'":3,"_dist":7,"\u30ec\u30b3\u30fc\u30c9r":69,daemonize:131,"\u308f\u304b\u308b":80,"\u308f\u304b\u308a":[108,155,38,130,80],"\u308f\u304b\u308c":108,"\u3068\u305d\u306e":11,"\u8ad6\u7406":[66,108,69,142,132,7,126,23],hoge:111,"\u30de\u30c3\u30c1":[1,69,23,182,85,162,108,32,47,125,115,183,159,96,77,189,27,56,84,80],"9\u3064":3,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":7,normallexicon:190,chunks:166,"=groo":131,takes:103,contains:[122,158,12],rect:75,"\u6c7a\u307e\u308b":3,"_xxx":108,"\u5c0f\u3055":77,"@yito":[7,125],fulltext:[162,90,97,32,47],".comment":[185,78],"-tokenizer":[165,129,14,125,7,153],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":32,"\u30af\u30ea\u30c3\u30af":108,"\u5fa9\u53f7":152,site:[3,130,13,136,74,102],"\u3002eclipse":119,"[load":[7,80],"/homebrew":152,"-databases":[3,131,95,59,102,105,173],nine:3,pushes:16,"\u9664\u53bb":[46,155,164,109,125],exclude:[142,125,7,158,96,23,80],string:[40,69,35,7,79,84,53,80],"_batch":80,"-address":[7,27,97,77],snippet:[55,42,43,125,7,161],"\u3042\u3089\u304b\u3058\u3081":[165,45,152],"[table":125,"_likes":[135,139,108,182,151],tried:185,"[dat":[7,112],derived:64,"\u7686\u5ddd":80,"\u901f\u304f":[44,189,65],fa:90,tries:19,"\u3002'":79,fd:131,"\u6642\u9593":[135,108,182,132,155,168,125,82,19,77,27,80],"\u4e0b\u3055\u3044":[165,129,90,152,95,14,125,7,153,113,188,101,137],"_avg":108,"\u56fd\u3054":130,documentation:[139,81,20],"\u30b9\u30c8\u30ea\u30fc\u30e0":80,"\u4e00\u5bfe":13,narwhal:27,uninstall:7,"\u5909\u63db":[2,151,94,45,9,185,63,27,190],help:[27,178,119],"\u592b\u5fc5":143,"-wno":27,"\u5dee\u3057":152,"/lzo":[27,155,125],systemd:7,"\u306f\u3044\u304f\u3064\u304b":[66,135,19,54,182],"_rename":[55,121,43,31,125,113,79,112,80],"\u30ab\u30fc\u30bd\u30eb":[63,27,155,120],shimada:155,systems:32,"\u30ad\u30fc\u30dc\u30fc\u30c9":108,"\u57fa\u672c":[55,108,152,132,7,80],"\u76f8\u5bfe\u30d1\u30b9":80,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":[97,84,125,182],"\u4e09\u8c37\u3055\u3093":80,"\u30c1\u30fc\u30e0":152,"-test":[178,152],"\u5e03\u6559":88,"\u30ad\u30fc\u30ef\u30fc\u30c9":[55,1,144,182,170,132,162,108,32,47,125,7,115,39,147,65],"\u597d\u304d":119,resizes:40,yito:[7,125],heavy:128,"/plain":77,"\u306a\u306a\u3069":[182,151],"\u9032\u3093":132,"\u30b5\u30a4\u30ba":[41,94,7,101,77,165,13,14,113,63,65,66,121,166,125,126,173,27,79,80,129,132,32,153,137],"_vprintf":80,"=grooon":131,"\"sequence":[154,18,177,48],"\u9032\u3081":[88,172],todo:[41,142,93,86,56,53,108,110,85,116,16,113,25,161,118,120,121,62,123,150,63,76,79,83,138,133,187,135,57,84],event:[154,187,64,18,48,177],"_position":[3,91,12,95,47,108,151,115,114,70,164,121,122,162,73,183,78,179,182,185,32,139],"\u52a0\u3048\u308b":[73,27],gemfile:7,trusty:[14,152,80],since:[149,127,141,10],"\u300cgrand":185,issue:0,"/mailarchive":152,"\u9045\u304f":[179,169,182,130,151],"\u9ad8\u304f":[70,77,85],"\u7acb\u3064\u304b":38,"\u9045\u3044":[94,75],"\u3002mysql":[153,129,14,165],pub:152,"\u3042\u308f\u305b\u308b":7,base:[40,9,152],put:[122,182],bash:189,"\u5931\u52b9":[9,117],"\u30b5\u30a4\u30c8":[13,44,108,152,159],"\u5024\u3068":[13,108,182],encoding:[40,123,97,4],"/data":81,"\u30b9\u30b3\u30fc\u30d7":179,"\u8ad6\u7406\u548c":[108,69],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":88,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea":[141,188],"\u65e5\u3054\u3068":23,"\u52a0\u308f\u308b":124,"\u30d0\u30a4\u30c8\u30b5\u30a4\u30ba":84,"\u3002_":[60,3],"\u5024\u304b":75,":value":[108,182],"\u53d7\u3051\u308b":[141,80],zeromq:189,"\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,schema:[158,187],"\u3002make":168,"\u3002null":[113,83,16],recursively:136,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":27,translation:119,"\u5024\u3054":130,jquery:[155,80],grep:[153,129,14,165],roonga:[182,151],"\u3002xml":135,utopic:[14,152],store:[110,84,16],str:[40,84],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":152,"\u5206\u3051\u308b":[13,152],"\u547c\u51fa":[41,113,79,121],"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":[103,80,54],"null":[40,47,7,105,53,108,109,16,17,113,63,68,69,120,121,162,125,110,27,79,83,32,84],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,lib:[22,155,175,125,10],"_incr":79,"\u79d2\u5358":[13,45],"\u5024\u3068\u3057\u3066":[166,75,97,185],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30b5\u30a4\u30ba":9,quote:151,"\u4e00\u81f4\u7528":143,tokenbigramsplitsymbol:[167,155],".repoforge":129,"'hay":69,"/dev":152,clear:[136,79,80],"\uff08and":159,"\u6697\u53f7":152,"\u4ecb\u3057":[132,102],geosite:44,clean:178,"-pip":20,"\u4fbf\u5229":[108,90,23,121,85,13,132,133,135,188,179,159,189,177,182],"\u62e1\u5f35\u578b":13,"\u59cb\u3081":119,parameters:[131,136,12,139],"\u5225\u3005":[108,130],"<level":64,"\u6cbf\u3046":80,"\u4eca\u5f8c":[145,27,90,191,179],httprewritemodule:9,".nginx":9,"*index":[110,120],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":[97,125,80],boost:177,"\u52a0\u7b97":[79,60,85],"\u68ee\u7530":44,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30fc\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":4,"\u82b1\u5b50":44,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":37,"(argument":151,locale:119,"_enough":[2,173],":groonga":[108,14,182,152],"_would":[2,173],"\u5f93\u6765":80,"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":69,"_probability":[27,154],"\u7d39\u4ecb":[185,88,108,80,152],"\u4e00\u5ea6":[22,114,130,7,19,10,27,78,190,176,80,9],"\u5909\u6570":[40,108,151,152,24,112,125,147,7,178,27,77,176,53,80],"-level":[97,64,80],"-working":7,"|persistent":[105,59,95],"\u306f\u3061\u3087\u3046":151,"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[163,159,81],"\u30c7\u30fc\u30bf\u30b9\u30c8\u30a2":17,delimit:125,oneiric:[27,125],geopoint:[44,1,75,130,13,45,155,125,34,110,169],"\u5f71\u97ff":[7,77,125,80,152],"\u767a\u63ee":132,jeff:143,"\u306f\u307b\u3068\u3093\u3069":108,"\u4e00\u5f0f":79,header:77,linux:[55,168,43],"\u4e0d\u80fd":168,tokenbigramignoreblanksplitsymbol:167,"\u518d\u767a":80,described:97,"\u6b62\u3081":80,"\u306e\u3069\u308c":[131,177],"\u4e8b\u67c4":124,stamp:149,describes:[135,97,20],empty:77,"\u3053\u306a\u308c":23,"else":77,"/db":[141,61,154,9,158,64,179],"/dd":151,"\u56de\u7279":168,"\u7a3c\u52d5":82,"\u6a29\u9650":[189,102,125],"\u30a8\u30b9\u30b1\u30fc\u30d7":[58,162,32,47,125,7,84,80],"\u6307\u793a":[93,3,102,177],"while":136,"\u505c\u6b62":[11,97,125,59,77,140],"_zlib":[73,2,121],malloc:80,"!(n":151,reads:64,ready:20,"\u898b\u3064\u3051":[1,124,108,7,38,177],fedora:[55,152,137,20],port:[131,168,97,173,51,89,102],dest:[180,113,97],"_keys":[108,113],"geopoint\u9593":27,"-jp":[38,125],"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[189,152],composition:190,used:[83,12,128,131,35,97,16,136,117,185,149,5,106,127,64],temporary:[97,83],uses:[83,12,122,149,139,28,106,64],user:[44,151,183,131,35,168,32,47,115,9,96,139,53],"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[164,90,182,130,133,46,108,97,32,125,7,156,139,77,190,177,80,65],database:[83,158,97,187,16,136,113,9,61,79],"-filter":[108,143,85,185,14,32,47,7,153,115,183,27,179,161,80,151],"\u30ef\u30a4\u30c9":27,"\u51fa\u529b":[132,88,178],clears:121,"\u9806\u756a":[120,182,70,97,63,3],"\u30b0\u30e9\u30d5":132,"_path":[152,168,97,125,7,61,77,79,112,80],"\u30d0\u30a4\u30b0\u30e9\u30e0":[70,38],"\u4e8c\u756a\u76ee":151,"\u8fd1\u4f3c":[7,27,75,169],"\u56de\u6307\u5b9a":182,"\u3002bash":77,"\"tritonn":108,"\"uptime":4,"-gram":[90,3,151,70,132,144],"\u3064\u3051\u308b":[108,124,143,80,85],"...":[41,4,5,93,86,97,7,9,103,105,56,53,114,108,110,151,154,113,16,17,116,19,183,25,179,162,118,120,121,62,123,168,125,63,27,79,80,182,83,126,131,185,57,36,84],"\u9759\u7684":88,"_schema":77,nginx:[165,129,14,125,7,153,77,80],"\u30b9\u30c6\u30fc\u30c8\u30d5\u30eb":173,"'..":125,"\uff09\u307e\u305f":[90,133,182,151],popular:[108,97],"\u518d\u751f":9,"\u4f5c\u696d":[88,124],"\u5f37\u529b":179,"\u30c7\u30d5\u30a9\u30eb\u30c8":[1,90,3,4,45,144,97,7,9,27,189,54,114,108,11,151,85,13,154,16,58,115,116,156,19,25,65,46,69,70,123,168,125,191,75,173,77,169,112,80,180,182,130,155],"\u5927\u304d\u306a":[54,65],some:[149,35,187,5,139],"\u96a3\u63a5":[132,182],"~number":151,"\u5927\u304d\u304f":[13,155,11,158,169],"\u5927\u304d\u3044":[108,69,182,94,61,77,27,38,80],"\u3061\u3083\u3093":44,slash:151,"\u30af\u30a8\u30ea\u30fc":[22,55,108,43,154,7,10,175,84,80],"\u5927\u304d\u3055":94,".sh":[7,119,178,152,81],run:[88,178,152],"\u4ed8\u304d":[55,108,2,182,85,24,154,155],processing:149,"\u81ea\u5df1":185,"\u4ed8\u3044":190,"\u5f37\u5236":[7,77,1,79,80],step:189,"\u898f\u683c":63,"\u4ed8\u3051":[3,13,162,47,7,171,173,103,96,78,54],"\u30ab\u30a6\u30f3\u30c8":[185,23,125],"\u305d\u3053\u306b":105,"\u4f3c\u305f":190,"_read":2,ids:[110,85],"\u5916\u90e8":134,"\u5185\u5bb9":[41,141,3,93,95,48,7,102,105,108,151,152,13,63,119,168,124,78,177,80,182,180,83,185,32,135,139],idf:80,"\"serach":18,"-separated":77,block:13,libzmq:[153,14],"\u3067\u3069\u3053":2,"\u30ad\u30e3\u30c3\u30b7\u30e5":[17,1,83,132,7,117,77],".column":[125,80],".(":152,".)":[139,151,125,12,149],".,":100,".-":119,"..":[40,3,12,95,97,7,100,9,103,54,108,151,85,154,58,115,119,122,125,126,179,182,35,36,65],"./":[189,119],"\u5316\u6f0f\u308c":7,"\u3067\u3082\u3063\u3068\u3082":31,".\"":[44,108,3,91,12,13,162,32,47,114,115,102,38,151],".$":108,"\u5909\u66f4":[55,1,152,77,189,81],".'":[7,73,125],".:":[131,64],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":185,patprefix:143,"\u652f\u63f4":170,"\u30da\u30fc\u30b9\u30c8":7,"[groonga":[7,27,152,80,77],pangolin:[7,14],registered:[40,32,158,10],tokenbigramignoreblanksplitalpha:38,".]":[151,85,154,126,103,105],"._":[108,182,130,13,125,79,80,151],"\u3002\u30bf\u30b0":[44,108,47,85],info:[6,97,122,8,9,179],".i":129,utf:[42,4,131,123,155,97,125,7,189,38,151],".n":[139,108,151,83,182],".o":44,munin:[165,1,14,129,7,153,27,189],"\u306b\u5bfe\u3057":[1,3,91,93,144,7,103,10,127,108,151,152,85,154,113,61,22,44,69,125,73,183,74,78,79,80,180,82,182,130,132,36,38],".c":[108,42],".d":[166,139,153],"_max":[67,108,2,120,17,116,173],".x":129,windows:88,".}":[126,151,85],"\u66ff\u3048":[70,55,152,80,157],".t":38,"\u6b63\u898f":[55,46,90,43,162,133,47,7,113,77,112,80,65],"\u5099\u8003":125,doesn:[122,139,9,12],"\u3002gnr":159,"\u5727\u7e2e":[73,121,125,7,27,189,80,192],"\u306b\u3068\u3063":[77,124],"_columns":[55,85,155,125,7,113,156,77,80],"\u958b\u3044":[190,155,125,61,27,37,107],"\u958b\u304b":61,"_float":[77,62],"\u958b\u304f":[7,17,190,27],"\u958b\u304d":[17,83],"\u958b\u3053":83,application:[97,9,54],"\u958b\u3051":7,"'\u3002":97,"\u56db\u3064":144,sigcont:125,"\u6642\u4ee5\u5916":155,"\u843d\u3061\u308b":[27,155,125],"\u767a\u884c":173,draw:44,": n":180,"_len":[7,84,121],"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":192,"(title":[125,12,111],"\u306a\u304c\u308b":7,"\u4e00\u5de5":143,required:[131,148,9,54],"\"suggest":170,"\u5f37\u5316":[27,155,80],requires:[148,12],kawaji:7,"_pat":[12,95,97,47,100,105,108,151,85,59,115,113,158,63,65,46,122,162,125,183,77,127,179,182,155,32],gt:[162,47],"\u30d6\u30e9\u30b8\u30eb":75,"\u4e00\u5207":77,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":108,gb:[166,4],ga:[90,168,190],go:[114,128],"\u30dc\u30c7\u30a3":[22,65,173,175,10],gi:90,"\u500b\u6240":80,".ssssss":149,nippon:177,"_unknown":2,"\u300cgroonga":[108,80,159],"po\u30d5\u30a1\u30a4\u30eb":119,"\u9632\u3050":151,"\u4e0d\u8db3":[165,129,14,153,101,137,80],"\u9632\u304e":125,"\u304a\u3053":[13,132],"-aki":80,"_calc":80,mercurial:152,".mo\u30d5\u30a1\u30a4\u30eb":119,"/bin":189,"\u5341\u5206":[70,41,166],"/sbin":89,"\u8ca0\u6570":[7,19],download:[129,152],onigmo:[77,80,179],"-known":32,"/introduction":[3,102,173],opaque:173,".tsv":[176,4],"\u542b\u307e\u308c":[22,108,132,144,32,125,135,96,10,175,65],"\u983b\u7e41":[113,189],"\u4fdd\u5b58":[55,108,23,85,95,125,7],"\u7b49\u5024":155,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":[90,80],"\u578b\u7528":84,"-libstemmer":80,"\u62e1\u5f35\u5b50":[22,4,155,168,10,175],"- \"":80,"\u3002max":63,accessor:[113,79],".weight":125,"(table":80,blogroonga:88,"\u300d\uff08":[108,144,158],"_child":[2,173],"\u306e\u3042\u3068":7,"\u5177\u4f53":[70,78,130],"\u8fd1\u304f":[132,151,92],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[163,132,151,86],"\u540c\u3058\u578b":85,"\u898b\u3064\u304b\u3089":113,"\u898b\u3064\u304b\u308a":[108,38],"\u898b\u3064\u304b\u308b":7,"\u898b\u3064\u304b\u308c":124,"\u8d85\u3048":[70,125],win:101,"\u5171\u901a":[142,151,94,45,124,23,27,78],"boolean":42,"\u7d5e\u308a\u8fbc\u3080":[170,108,80],"\u3092\u304a\u3053":185,"\u624b\u9806":[172,88,124],"\u3002\u30d0\u30b0":0,"\u7d5e\u308a\u8fbc\u3093":[132,125],"_no":[2,47,105,108,151,114,115,113,158,63,65,23,122,162,171,77,80,179,182,155,32,136],"\u81ea\u5206":[23,124,168,9,137,119],milliseconds:131,soundkitchen:[7,27],cosmo:[125,80],"\u30c1\u30e5\u30fc\u30cb\u30f3\u30b0":[166,108,85],started:[135,149,108,182,151],"\u5f15\u304d\u8d77\u3053\u3059":[7,125],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":178,"\u5371\u967a":[59,152,54],"\u53d7\u3051\u4ed8\u3051":[7,155,151],mitsuhiro:155,"\u7de8\u96c6":[88,178,152],links:[13,102,130],sudo:[165,129,152,24,166,14,141,7,153,102,20,139,189,178,89],">max":4,objname:[37,107],"\u30b7\u30e3\u30fc\u30d7":65,tokendelimit:[167,90,48],"\u6df1\u523b":[7,70,80],"_repair":112,"\u512a\u5148":[132,168,177],"*valuebuf":41,tokenregexp:179,"\"sphere":169,"\u9577\u4ee5\u4e0a":[113,79],spelling:91,".entries":139,"\u7d5e\u308a\u8fbc\u307f":[132,3],"\u66f8\u5f0f":[55,108],rakutan:78,"\u81ea\u52d5":[22,44,3,121,152,94,182,168,151,7,113,60,9,61,10,143,27,175,80,119],"\u898b\u3064\u304b\u3063":[170,108,38],"_characters":84,"\u4e00\u500b":69,"+ff0":77,"\u30c7\u30d5\u30e9\u30b0":27,"!\"":[44,108,90,3,182,12,13,185,114,7,9,135,78,151,38,54,102],"-mysql":[165,129,14,133,153,190],"\u88dc\u8db3":9,geoppoint:110,send:128,"_match":[55,30,80,43],auto:154,"\u629c\u304d\u51fa\u3059":132,"_seek":[2,173],takayuki:27,"\u306b\u304f\u308b":70,"\u5f15\u8a9e":3,"\u30a2\u30ab\u30a6\u30f3\u30c8groonga":124,"'query":7,"\u65e2\u5b58":[141,3,83,152,13,132,168,7,113,188,173,61,191,80],chunk:[126,139],"\u751f\u6210":88,special:108,"\u3050\u308b\u3093":[44,182,151],"-match":137,"\u306b\u304f\u3044":132,may:[83,12,122,136,139,28,121],"_default":[12,123,7,116,25,77,54],goroo:128,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":119,"_script":145,"_proxy":9,"\"\u5f37":38,"\u307f\u3066":74,deprecated:[108,11],times:19,"-localstatedir":137,"\u307f\u304c":69,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":[15,20],"_proc":[55,43,30,16,77,80],"\u8aa4\u5dee":[27,75,169],largetext:94,"<max":97,unsupported:173,improving:139,"\u305e\u308c":[108,69,120,151,152,48],"\u5185\u8fd1\u304f":151,management:[83,97,32,81],"\u305d\u3053":[13,70,152],mkdir:158,"\u6700\u4e2d":132,"\u52d5\u5c0f":45,"\u304a\u304b\u3057\u304f":155,"_bad":2,"-doc":112,"\u306f\u3058\u3081":[55,11,43,154,50,119],configure:88,"_utf":[63,123],travi:125,lists:80,".roonga":[182,151],"_vector":[44,108,121,85,13,185,95,125,16,73,183,171,148,79,84,80],"*min":63,updating:19,neologism:38,"_recv":80,"-log":137,arc:90,"_expander":125,"\u306a\u304a\u3059":80,"\u8a72\u5f53":[121,162,32,47,17,113,100,96,63,78,79,80],"\u306a\u304a\u3057":80,unchanged:40,msec:19,"\u56fd\u969b\u5316":[88,15],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":152,variable:40,"\u4fee\u6b63\u4e2d":18,"\u30de\u30a4\u30af\u30ed":[13,185,45,151],need:[12,122,97,131,20,139,28,106,84,127],"\u3068\u307f":[36,108,125,182],"\u3002sql":108,nsis:152,"\u6f14\u7b97":[151,155,125,7,113,159,189,80],able:[122,28,12],"-db":112,"\u3092\u308a":9,"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":189,"\u3002post":54,"\u7570\u306a\u3063":[63,77],"_lt":63,"\uff08markdown":152,url:[152,102,158,36,27,80],uri:[36,9],"\u6982\u5ff5":11,"_strerror":80,"\u57fa\u6e96":[13,132,3,152],"\u672b\u6c38":77,"_temporarily":[2,173],"\u5fc5\u9808":[189,101],"\u3084\u3089":152,"\u3084\u3081":[27,125,80,77],"\u3002\u2193":97,ssssss:149,"\u53cb\u4eba":44,"\u6e2c\u5b9a":168,"\u624b\u9593":124,based:[141,110,12,122,162,32,47,184],launchpad:[14,152,80],"\u3068\u3066":[108,151,132,94,177,54,182],"\u65e5\u6642":[55,45,157],":order":77,"\u4e0d\u6b63\u78ba":[7,82],"\\groonga":101,"\u5358\u306b":[68,125],processes:97,"\u4e0d\u8981":[132,125,7,77,38,80],sha:152,"\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0":188,"\u79d2\u3088\u308a":147,processed:149,"\u7121\u3057":179,"\u3050\u308b":[77,159,182,151],"_parse":[123,84],"_setpshared":125,kawada:80,"\u7a7a\u6587":[45,182,80],computed:40,"\\[(":179,computes:12,latin:[7,189,97],"\u63a5\u7d9a\u5148":180,".list":[153,152],"2\u3064\u3081":[78,103,54,182],"|ga":108,"\u975e\u5e38":[7,54,179],"_word":[46,164,158,80],"\u7ba1\u7406":[55,1,103,152,97,16,7,126,61,27,189,112,80],wibowo:125,written:[127,20],ken:44,"\u3084\u304c":11,importance:122,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":7,"\u3053\u308c\u3089":[3,4,94,48,7,9,10,189,54,165,108,75,151,85,14,70,60,159,22,44,24,125,170,175,179,129,182,130,185,133,153,36,88,190],key:[58,108,121,152,85,154,95,113,125,7,59,171,158,63,135,79,80],"\u3084\u3057":108,limits:[139,12],admin:[77,155,80],"\u3084\u307e":80,"\u682a\u5f0f":[77,80],"\u96e3\u3057\u3044":132,jersey:185,"\u304a\u3089":152,"\u4eca\u56de":[7,3,32,151],"\u4f5c\u6210":88,"_add":[93,113,84],"\u30af\u30ea\u30a2":[7,27,79],bigram:[70,144,168,187],quit:[55,31,152,43],"\u91cd\u8907":[113,80],"\u30b9\u30ab\u30e9":121,quiz:44,"\u547d\u540d":7,compatibility:[127,190],"\u306b\u3088\u3063":[146,3,6,144,97,8,105,107,108,11,85,13,113,16,59,156,158,159,191,160,44,69,23,134,72,125,82,126,173,79,180,73,132,36,37,140],"\u6b21\u671f":152,username:[44,101],"\u65e5\u672c":[182,152,45,34,74,169,38,177,80,151],corresponding:79,both:122,"\u4ef6\u542b":185,tweets:114,"\u7a2e\u985e":[41,90,94,97,48,2,53,157,55,108,151,152,85,154,113,18,60,65,69,70,168,173,27,177,182,131,188,38],"_binary":7,"\u4ee3\u308a":[7,75,182],glossary:81,"\u3076\u3093":124,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[108,90,183,13,112,115,101,9,103,27,176,80,65],demo:44,"\u3060\u304b\u3089":108,"/_":152,"\u76f4\u524d":93,"\u9818\u57df":[189,113,7,74,79,80],"/o":65,"_system":[27,2,173],"\u91cd\u8981":[114,108,90,152,85,178,132,31,16,17,124,9,189,99,38,54,65],"\u614e\u91cd":178,"/f":152,"/d":[80,9,54,179],"/c":[87,132,128],"/~":152,"\u91cd\u8996":[70,114],"-essential":[153,14],"/x":54,"-learner":[52,55,43,155,187,80],"\u8aa4\u5b57":[7,27,155,176,125],crch:90,"(mroonga":176,http:[43,97,7,101,9,103,189,55,152,85,14,17,158,119,52,165,24,168,125,27,80,180,129,132,155,153,188,89],"\u306b\u3088\u308a":[3,143,45,7,9,51,54,108,75,152,13,66,70,125,126,173,77,78,80,132,38,102],"_ito":27,frequently:12,"\u305f\u3070\u304b\u308a":114,"/.":27,"/+":152,"/*":[141,5,87,166,16,9,119],"/(":152,"/'":80,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":7,"/$":119,"/#":17,"/\"":[44,3,130,85,13,74,102,38],"/?":131,"/;":9,"\u3042\u304d":143,accurate:32,"\u3042\u304f":17,sources:[95,152,20],"\u3042\u3063":[165,58,108,11,23,121,152,44,154,168,125,7,113,60,179,151,79,54,119],"-ruby":[7,152],"/kytea":90,"\u3042\u3068":[152,119],"\u30b5\u30fc\u30d0\u30fc\u30e2\u30c7\u30eb":173,"\u30fb\u5186":132,"\u6790\u7cfb":151,"\u756a\u53f7":[180,141,121,168,97,125,54,60,102,179,80,173],"_mask":79,".js":152,".jp":[108,42,152,26],pikonyan:44,".score":127,"\u78ba\u4fdd":[41,166,84,16],"\u6587\u5b57\u6570":[32,151],"(\u300c":152,"/key":79,"\u4e0b\u8a18":[11,82,126,59,69,63],"-plugins":[153,129,137,165],library:[106,97,128],"\u3002optarg":83,home:[189,38,152],"'config":97,"\u30bb\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a9\u30eb\u30c8":7,"\u5411\u3051":88,"_permission":2,"2\u6708":23,"\u304f\u308c\u308b":[87,132,119],nihon:177,"\u5411\u3044":[135,94,108,80],"\u3093\u304c":[182,151],"_number":[135,51,102,173],"\u3057\u3064\u3064":178,"\u3042\u308c":[114,151,152,70,168,17,100,96,65],"\u3042\u308a":[0,66,90,142,5,95,178,46,47,136,7,120,69,101,9,103,10,104,105,77,189,58,108,11,152,85,87,154,14,16,17,115,113,188,60,19,61,159,63,160,65,22,68,49,23,158,165,168,162,167,124,125,73,183,145,75,26,96,27,79,80,82,129,191,131,132,109,133,32,135,153,171,137,36,88,119,84,140,117],"\u3042\u308b":[92,90,3,44,6,94,45,96,97,7,2,146,120,105,189,155,54,107,108,11,38,152,111,13,154,191,168,188,58,115,18,156,61,159,63,82,179,95,171,65,163,67,69,23,158,101,70,166,72,125,169,8,126,75,173,160,124,27,78,79,176,177,80,151,180,73,181,182,130,183,119,132,85,32,34,100,36,37,84,140],offset:[40,110,83,93,113,156,63,79,84],"\u304b\u3051\u308b":[124,9],"\"web":[18,48],"\u9055\u3063":177,".hash":185,"-source":152,"\u6f0f\u308c":[7,132,91,152,159],"\u306a\u3084\u308a\u304b\u305f":91,compatible:9,"\u9055\u3044":[108,75,3,182,13,74,78,179,38,54,65],"\u9055\u3046":155,"\u500b\u6570":[7,121],"<log":97,"_nhooks":93,additional:125,"_nsubrecs":[108,130,60,121,80],museum:185,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[55,157],"\u30ed\u30b4":7,"\u30ed\u30b0":[1,152,6,147,7,8,27,77,80],"\u5c55\u958b":[22,55,108,175,152,43,125,7,115,101,10,27,189],"\u7279\u6b8a":[135,79,125],"\u3059\u3053\u308c\u3089":108,hw:89,"\ufffetext":90,hh:[149,151],"\u540c\u3058\u5024":[3,9],ho:38,ear:90,"/reference":12,"*var":40,truncation:[27,127],"\u3068\u3053\u306e":[108,177,179],"=submit":131,limit:[63,27,113,110,156],"\u5b9f\u4f8b":[88,172],"-uploader":152,"\u3068\u3053\u308d":[68,151,87,112,73,145,38,119],"{\"":[164,23,182,85,122,154,162,168,68,47,48,114,115,18,145,78,179,177,126,151],"\u79d2\u5f62":45,"\u7389\u91ce":80,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":[7,173],eric:96,functions:[40,77,148,42,80],"\u3002video":44,halfwidth:190,"\u6163\u7fd2":7,"_many":[2,173,80],"\u4eee\u60f3":[74,125,130,152],"_auto":[7,125],"\u65b0\u3057\u3044":[132,88],"\u65b0\u3057\u304f":[108,11,3,124,114,159,80,65],friends:44,sphinx:[87,15,119,80,20],katagiri:125,persistent:[95,113,83],"{\\":58,"\u305a\u308c":[73,11,6,132,45,97,75,58,13,113,8,173,69],"\u300csenna":108,"=redhat":189,"\u5927\u62b5":9,"\u3002scan":178,"\u30ab\u30e9\u30e0n":183,"_filters":[158,80],calculate:131,segments:126,"/raw":81,"\u5bfe\u3057":[182,151],"\u592a\u90ce":44,swap:139,"\u30d9\u30fc\u30b9":[141,90,182,192,132,155,7,113,103,63,27,151,38,80,119],updated:[70,42,119],"void":[40,83,5,123,113,25,116,19,63,79,112],updates:[32,20],"\u3066\u307f\u307e\u3057\u3087":74,"\u53c2\u7167\u5143":13,"\u30df\u30b9":177,"\u53c2\u7167\u5148":125,"=pat":112,vector:[55,43,85,125,7,77,161],"\u30d0\u30a4\u30c8\u30aa\u30fc\u30c0\u30fc":7,"\u898b\u7a4d\u308b":166,japanese:[38,26],"\u9006\u9806":3,"\u3002grn":[69,159],implemented:[122,42],even:122,"\u30ed\u30b0\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":77,"\u50be\u5411":78,"\u6210\u529f":[40,83,5,16,17,113,152,84,121],"new":[40,20,152,16],net:130,maverick:27,metadata:[7,122,28,12],"\u306f\u3044\u3051":[171,79,151,61,16],"\u5fdc\u3058":[132,179,168,41],"<directory":64,"\u4e2d\u4e95":125,"\u4eee\u5b9a":103,"\u305a\u306b":85,"\u305a\u3064":[168,78,97],":port":[36,97,9],suitable:[122,97,12],serch:[154,18],"\u3080\u308b":[182,151],xvzf:[165,129,24,14,153,189,89],itagaki:155,"\u826f\u3044\u4f8b":124,"\u9023\u7d9a":[90,70,144,125,18,79,38],".yml":81,typo:[27,80],recommend:128,calc:108,type:[53,41,3,143,12,95,48,106,28,110,13,154,59,16,113,18,65,44,121,122,62,168,73,74,78,177,130,131,185,133],"-properties":14,posting:110,warp:80,language:119,"\u4ee5\u4e0b":[90,66,2,71,103,5,6,95,97,47,7,100,101,9,69,10,148,105,77,106,58,108,75,152,85,154,16,17,115,59,178,61,20,167,65,22,46,49,23,121,162,168,169,73,126,171,96,27,127,79,80,81,83,158,35,109,133,32,175,135,136,8,183,189,36,119,84],"\u4ee5\u4e0a":[71,95,97,7,100,101,9,108,152,85,154,16,115,178,63,119,69,121,162,168,125,183,77,80,32,65],"_comment":183,"_left":[27,110,2,173,34],"-ipadic":[165,38],akio:[7,155],root:[9,125,102],"\u306b\u95a2\u3057":[77,69,168,125,16],"\u304c\u3063":95,"\u304c\u3061":38,"\u80a5\u5927":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[1,37],"\u63a8\u5968":[135,108,11,7,102,137,77,80],normalizernfkc:49,"_xml":106,"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6\u30fc":80,"\u4f55\u500b":108,"\u6301\u3064\u3059\u3079":108,"_memo":115,"\u304c\u3059":113,"\uff08document":80,"\u9023\u7d61":119,sitedomain:[102,130],"\u30b9\u30fc\u30d7":144,"/result":112,"\u30b3\u30e1\u30f3\u30c8\u30a2\u30a6\u30c8":78,"\u3002tsv":[135,176],"_indexer":112,"_indexes":77,"\u30bf\u30b0\u30c6\u30ad\u30b9\u30c8":38,"_win":40,"\u9069\u5408":[70,38,3],"\u30a4\u30f3\u30dd\u30fc\u30c8":88,"\u9023\u7d50":[7,78,79,125],"\u5206\u5c90":178,"\u643a\u5e2f":132,"_ja":125,"\u5358\u4e00":73,"\u3002google":182,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":155,"_jp":189,"_small":[2,173],"\u6d6e\u52d5":[135,77],before:81,scoring:[122,28,12],"-add":83,"=allow":108,"\u6574\u6570":[67,108,2,85,60,77],"\"pp":80,"\u30d0\u30a4\u30b0\u30e9\u30e0\u30d9\u30fc\u30b9":38,weakness:32,"\u300coutput":36,"\u30b9\u30c6\u30fc\u30bf\u30b9":[2,125,61,173],"\u691c\u8a0e":[70,141],nested:125,"-pack":137,"\u691c\u8a3c":[180,80],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[55,1,120,43,71,125,77,80],"'or":7,"\u975e\u4e92\u63db":[27,80,77],"'article":78,"\u30d1\u30b9":[3,95,97,9,10,77,189,54,152,61,64,22,168,173,27,175,80,180,83,155,147,36],"_stop":[164,46,80],extract:[149,48],"\u30ed\u30b0\u30d1\u30b9":155,realtime:[154,48],"/bc":152,content:[114,164,109,182,12,183,135,108,32,125,7,115,9,139,27,78,80,54,151],"\u6570\u3048\u308b":[108,130],grease:13,"/\uff09":155,"\u30b5\u30fc\u30d0\u30fc\u30e2\u30fc\u30c9":77,"\u8996\u899a":132,"\u30d1\u30ea":75,"\u63a5\u8fd1":69,messages:125,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":155,iso:151,isn:[97,16],features:97,hook:93,"1\u884c":168,"\u7531\u6765":159,"\u30e1\u30e2\u30ea\u30fc":65,outputting:106,"_keywords":84,"\u5358\u4f4d":[62,75,3,151,132,45,144,31,32,135,155,173,185,27,169,38],"_clear":[55,43,31,27,79,80,107],tokens:90,"_chunked":77,mkostemp:80,"[http":[7,77,125,80],"\u5358\u4f53":[132,168],"\u5f79\u5272":[115,3],nsubrecs:[44,108,121,130,185],"\u63a8\u5b9a":77,distance:75,keyword:[108,182,12,122,162,32,47,125,7,84],".json":[4,9],enabled:149,"\u524d\u4ed8\u304d":79,gnupg:152,enables:9,"7\u3064":23,modern:185,"\u30a8\u30e9\u30fc":[1,5,7,101,27,189,55,11,152,14,16,17,121,165,125,77,79,112,80,129,83,153,137,84],"\u7e4b\u3052\u308b":124,"\u958b\u3051\u308b":7,"\u81ea\u52d5\u5207\u308a":80,estimated:110,"_cas":2,"\u3002\u3044\u304f\u3064\u304b":179,"\u308f\u3051":[108,90,151,13,46,177],specfied:110,"\u30b1\u30fc\u30b9":[108,83,130,70,182,74,17,59,9,151,179,38,80,65],"\u3002\u30df\u30ea":13,"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":81,regular:[131,9,179],"\u3002munin":[153,129,14,165],"\uff08textile":152,"\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba":77,don:[12,122,97,48,136,9,28,106,84],radious:169,doc:[87,119,91,152,20],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":152,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[18,177,147,48],"\u56fa\u5b9a":[3,95,173,63,79,80,65],"\u30b3\u30f3\u30c6\u30f3\u30c8\u30bf\u30a4\u30d7":173,"\uff08therubyracer":152,keybuf:113,sigsegv:113,"\u6210\u308a\u7acb\u3063":69,syntax:[97,173],"\u65e5\u672c\u8a9e":[0,182,70,132,7,151,38,177,119],"\u8ffd\u52a0":[132,88,69],"\u7bc4\u56f2\u5916":80,"\"\u308d\u3086\u304d":143,yoji:27,"_address":[2,102,173],"_http":[168,9],"\u5f0f\u8868":84,"\u72ec\u81ea":[135,132,180],"\\\"a":183,stop:[141,12,122,97,7,9,77,28],"_limit":[55,1,2,43,31,125,77],"/grntest":152,"\\\"}":58,gbyte:66,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[90,43,48,7,27,55,108,151,14,18,167,65,46,165,125,77,179,129,182,155,147,153,89],"(grn":[77,84,16],bad:[125,80,173],architecture:97,"\u5024\u3060\u3051":151,"\u623b\u308a":[7,79],"*name":[40,121,62,123,16,113,79,84,53],"\u524d\u56de":152,",\"location":[44,74],"\u591a\u304f":[108,3,182,192,13,32,70,9,179,27,151,38,141,65],reference:[108,125,85],"\u591a\u3044":[70,182,151],"\u623b\u3063":9,".kentaro":125,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":144,"\u30aa\u30fc\u30ca\u30fc":125,"\u4e88\u7d04":73,subject:125,brazil:130,libgroonga:163,"\u672a\u958b\u653e":155,"\u30b9\u30ab\u30e9\u30fc\u30c7\u30fc\u30bf":85,inappropriate:173,sigint:27,filename:173,simplest:35,"\u7bc4\u56f2":[55,108,11,120,132,125,7,60,63,77,79,80],"+fffe":90,threasd:97,"_geo":[27,30,43,55],"\u3092\u901a\u3057":[97,3],"_get":[40,17,121,41,93,112,123,113,16,7,25,116,19,77,63,27,79,84,53,80],"]\u3002":80,"\u534a\u5f84":169,"_operation":[2,173],"_level":[40,55,31,125,43],"\u73fe\u308c\u308b":70,against:[97,83,121],"0c":38,"\u3044\u3044\u306d":[108,182,151],"0e":168,"\u8a9e\u5f59":[66,55,164,94,144,46,77,190,157,65],appeared:12,"_reinit":79,"\u62bd\u51fa":[7,183,32,47,65],"\u3068\u3044\u3063":[165,108,75,23,182,85,94,142,125,7,74,80,159,77,54,151],"_too":[2,173,80],loaded:68,"\u6848\u5185":[124,152],"\u3068\u3044\u3051":[108,23,166,173,177,65],three:[13,122,3],"\u3068\u3044\u3046":[90,3,4,94,45,144,47,7,9,103,10,145,77,189,54,108,11,151,152,85,13,154,190,115,18,178,159,65,22,44,164,70,168,134,124,125,126,74,75,173,27,78,175,176,177,80,179,185,182,130,183,132,133,32,38,35,36,119,84,102],"\u3068\u3044\u3044":179,"\u30c8\u30c3\u30d7\u30ec\u30d9\u30eb\u30c9\u30e1\u30a4\u30f3":130,"\u7528\u3044":[55,1,132,17,27,178],digits:149,"-help":137,"\u7591\u4f3c":[58,67,125,7,60,80],multithread:113,sae:[154,18],"_log":[7,40,125,80],"\u554f\u984c":[17,1,3,182,152,166,155,73,125,147,16,7,126,9,77,168,27,151,38,80,119],logaling:81,"\u6700\u3082":[126,108,16],seven:3,ip:[131,168,102,173],is:[40,141,90,3,4,12,128,97,46,47,48,7,100,102,103,148,149,110,106,53,54,91,108,189,151,85,13,16,115,113,19,158,20,179,184,64,119,164,121,122,162,109,173,28,80,182,83,136,127,35,32,187,131,78,139,84,9],"\u6069\u6075":141,it:[40,141,5,128,97,148,149,106,58,108,110,12,16,114,113,158,20,151,64,44,121,122,127,83,182,131,135,136,139,84],voiced:190,il:[70,144],io:[77,42],"in":[55,69,7,20,77,80],ia:[70,144],ic:[120,38],id:[41,110,120,121,85,132,155,16,135,113,60,63,79,80],"/commits":80,".nested":108,"\u305d\u3093\u306a":[189,65],make:88,"\u30b5\u30a4\u30c9\u30e1\u30cb\u30e5\u30fc":108,"\u306b\u3088\u3063\u3066":[11,3,13,132,125,16,70,60,178],"\u5f15\u7528":[97,125],unicorn:14,kib:[77,139],"8byte":173,"\u3055\u307e\u3056\u307e\u306a":[55,157,185],"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[73,60,65],left:110,protocol:[141,4,128,132,97,51,36,54],just:[83,12,131,185,97,187,114,149,79],"@groonga":[152,26],"||":[69,151,12,125,7,78],"=add":90,"|b":179,yes:[180,77,178,158,154],yet:[122,12],"\u5f8c\u65b9":[7,55,69,80],"-with":[137,89],"\u89e3\u50cf":155,candidate:[131,154],defrag:[55,1,31,125,43],character:[40,149],"\u306f\u3059\u3079\u3066":[68,90,3,151,46,108,58,136,9,159,145,139,117,190,38,65],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[77,112],save:[131,152],"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[152,80,192],"\"http":85,"|>":149,"|<":149,"|:":149,"\u5cf6\u7530":7,background:97,"\u6539\u540d":[7,27],mruby:[145,68,125,80],unnecessary:139,"\u52b9\u7387":78,"*oldvalue":121,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[163,1,94,45,97,7,69,9,10,189,107,55,151,17,60,61,159,167,58,64,65,22,49,158,168,125,73,126,27,177,80,182,95,190,83,131,132,136,37,192],centos:[55,152,137,20],"_db":[55,155,43,30,147,16,77,27,112,80],"\u7570\u306a\u308a":[108,182,80],"\u3067\u3044\u3046":[190,130],"\u4f7f\u7528":[1,90,12,95,97,7,69,9,103,53,58,108,11,151,152,113,16,17,115,59,167,118,46,49,121,162,168,125,73,126,75,127,79,80,82,182,183,155,133,171,36,38],raltime:48,"\u964d\u9806":[63,154,108,3,113],"\u5bc6\u9375":88,"\u5c11\u3057":189,notification:149,tracker:0,"\u5c11\u304f":166,"\u7a0b\u5ea6":[27,3,125],"\u53c2\u8003":[55,152,43],debhelper:27,"\u5b8c\u5168":[108,69,151,94,73,113,65],"\u304c\u308f\u304b\u308a":[185,109,38],"\u304c\u308f\u304b\u308b":75,"\u898b\u8fbc\u3081":80,"\u304c\u308f\u304b\u308c":108,postgresql:[132,32],"/munin":189,"\u30c1\u30a7\u30c3\u30af":[180,96,155,168,125,7,126,61,77,27,80],"=true":103,"*optarg":[56,83],commit:119,meerkat:27,"_ratio":80,sphr:75,"\u30ad\u30e3\u30f3\u30bb\u30eb\u30ea\u30af\u30a8\u30b9\u30c8":103,contrib:152,"\u305d\u3061\u3089":189,editor:119,"\u6291\u3048":70,fork:119,tokenbigramignoreblanksplitsymbolalphadigit:167,form:[3,182,131,173,51,190],"\u3059\u304e\u308b":85,"[dump":[7,125,80],".ne":42,"_animal":13,"\u5165\u308c":[70,44,38,185],"\u5165\u308b":105,"\u5165\u308a":[38,3,151,130,173],grroonga:170,"\u5426\u5b9a":[108,69],lenny:27,"delete":[55,1,43,155,31,20,27,79],"_location":[135,185],"\u6c7a\u3081\u308b":[108,69],kwic:32,"\u3002\u307e\u3060":80,"\u5165\u3063":[44,3,135,125,7,173,77,78,177,178],"sort\u30ad\u30fc":1,floating:45,"\u73fe\u5728\u5730":185,"\u30a8\u30c7\u30a3\u30bf":119,tokenbigramignoreblank:167,excel:176,"\u3002\u307e\u305a":70,"\u914d\u5217":[90,95,7,69,105,53,108,85,113,167,65,49,121,73,126,27,79,80,182,83,155,133,32,135],"\u3002\u307e\u305f":[180,108,11,3,151,13,132,45,97,74,18,173,69,36,176,168],"\u304f\u308c":124,"\u30cf\u30a4\u30e9\u30a4\u30c8":[162,47],"\u300d:":190,".service":7,fsf:7,macports:[55,137],"\u6539\u5584":[1,125,7,77,27,80],"_offset":[40,156,2,84,80],vmstat:166,"\u9069\u5207":[108,90,23,132,155,168,3,179,38,80,65],managed:35,"\u81ea\u52d5\u7684":168,segv:[1,125],"\u7279\u6027":94,manager:[9,54],"\u7fa9\u8a9e":176,technique:[122,12],"\u3068\u3059\u3050":114,"\u524a\u9664":[1,79,93,132,155,72,125,7,113,60,77,63,27,56,112,80],kinjirou:44,"\u30bb\u30c3\u30b7\u30e7\u30f3":[160,97,173],"0mq":125,"-efficient":85,"\u8a2d\u8a08":[108,141],"\u4e0a\u91ce":155,"[php":[7,80],"\u30b5\u30f3\u30d7\u30eb":[7,108,155,125,147],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":18,"\"mysql":[170,85],"-escalation":137,item:[154,18,177,187,48],"\u672a\u6e80":[63,182],"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":126,"_entry":93,"-deb":152,"\u4ed8\u4e0e":[44,113,60,121,168],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":[7,125,179],"\u629c\u3051":[27,125,80],strerror:80,"\u5076\u6570":151,"\u63db\u6642":27,"\uff08normalization":190,"-dev":[152,14,125,26,7,153,178,77,27,80],"\"xxx":125,">alloc":4,".so":[22,175,10],"\u4f8b\u3068\u3057\u3066":13,"\u30a8\u30f3\u30c8\u30ea\u30fc":108,"-mode":[97,119],shift:[189,38],"\u3068\u3059\u308c":132,"_version":[55,43,152,30,27,80],"[suggest":[7,112,125],bom:155,suggestion:[131,187],raccoon:44,bob:[108,182,185,115,59,9,96,127,54],useful:[78,97,121,12],"\u30dd\u30a4\u30f3\u30bf":[16,113,63,79,53,118],"\u5fd8\u308c":[27,85],"\u3002table":[113,171,118],"-leak":155,"\u521d\u671f":[83,132,155,7,27,79,80],sako:77,"\u4e21\u8005":74,"-check":[131,27,155],"ci\u4e00\u822c":81,"-libevent":112,"\u5e74\u9f62":[132,65],"_min":[77,108,120,116],ooo:94,"-each":27,"\"color":190,"/nfs":189,mbytes:168,"\u8fd1\u3055":151,"\u30b8\u30aa\u30b5\u30fc\u30c1":[27,157,55],"\u30dd\u30a4\u30f3\u30c8":[176,85],"\u8fd1\u3044":[63,180],ull:90,"*tc":[63,120],"-directory":7,"\u30fb\u30b5\u30fc\u30d0":3,sample:[131,168,64,158],normalize:[55,31,80,43],"\u3002\u30ed\u30b0":[9,65],"\u30d0\u30a4\u30c8":[108,2,121,94,45,155,32,16,7,125,77,63,27,80],"/cpuinfo":[153,129,14,165],"\u8a9e\u53e5":[44,125],"_current":17,map:[149,27,139],groo:108,"\u518d\u8aad":[191,176],max:[7,63,80],"\u524d\u3082\u3063":77,mac:[55,137],designed:128,man:[1,96],".garbage":125,fluent:104,"\u540d\u524d":[55,83,43,62,155,147,16,7,113,121,152,27,79,53,119],"_values":[55,43,77,27,79,161,80],"\u5e02\u5185":92,vagrant:152,pointed:40,"_init":[40,5,16,7,149,27,79,84,80],pointer:40,mizuhara:77,"/fedora":[7,165,155,152],group:[113,130],"\u304b\u306a\u308a":80,"\u8a08\u6e2c":[27,1,178],"\u7d44\u307f\u5408\u308f":[132,108,69,96,65],mail:168,main:[153,152],"\u30b9\u30c6\u30df\u30f3\u30b0":[164,80],"\u91cd\u306a\u3063":125,"\u5b9f\u4f53":16,repositories:152,"_timeout":[2,19,173],unlock:79,nroonga:[115,78,81],libgcc:80,"\u624b\u6bb5":[69,84],summary:[55,142,168,33],"\u6240\u5c5e":59,"\u7a7a\u304d":[166,126],"_mecab":77,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":55,".flags":113,correct:[131,154,18],"\u624b\u7d9a\u304d":[93,53],"|allow":[108,182],"\u30ab\u30e9\u30e0id":113,earlier:127,"_content":[55,30,43],"\u3002min":63,debootstrap:152,"_string":[123,84,125,178],org:[102,130],"\u62ec\u5f27":58,"\"hello":[164,46],"\u4e8b\u9805":55,rewrited:42,"\u6b21\u90ce":44,"\u304c\u3042\u308a":[0,164,75,152,108,176],"] [":168,first:[40,108,182,12,185,151],wiki:9,"\u30dd\u30fc\u30c8":[180,141,4,168,97,125,102,54,173],"\u7db2\u7f85":9,"\u9078\u3079":108,"long":[25,77,103,86],"\u81ea\u5df1\u7d39":185,crit:[6,8],"\u9078\u3073":170,"\u9078\u3076":[132,108,9],"1g":[153,14],"1f":77,"\u30bd\u30fc\u30c8\u30ad\u30fc":[154,1,113,108],"\u30d8\u30eb\u30d7":178,"1o":179,"_preparer":[154,18,177,48],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":132,memo:[122,115,28,80,12],"\u62e1\u5f35":[27,179,157,80,55],"\\ahost":179,"\u5c0f\u3055\u304f":[75,94,114,54,77,169,80,179],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":11,"11":[108,90,151,85,70,115,139],"10":[168,3],"_index":[55,42,121,43,30,125,155,80],yoshioka:7,poyonga:128,"\u5229\u7528\u4f8b":132,zsh:[189,152],dash:189,"\"application":27,katakana:[190,177],".uuuuuu":151,"-receive":[131,64],speakers:26,"_open":[40,17,2,120,83,86,155,16,7,110,173,63,27],"\u914d\u5e03":[165,129,14,7,153,101,137,80],"_network":2,"\u8d70\u67fb":80,"\u5217\u4e2d":151,"\u6700\u7d42\u66f4":83,timeuot:19,">#{":149,"_enc":[63,123],performance:[131,139,32,128],"\u5f79\u7acb\u3061":125,theatre:91,normal:12,"(message":122,beta:42,pair:[154,18,177,187,48],synonym:[108,91],"_sort":113,fills:131,"\u4f1a\u793e":[77,80],"\u8003\u3048\u65b9":80,"|ng":108,"\u539f\u56e0":[55,124,168,39,61,77],precise:[7,14,152],lexicon:[183,168,114,115,158,77,105,78,190,65],show:1,"-po":88,"\u6700\u5927\u5024":[7,142,108,23,80],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":88,threshold:[25,27,37,79,77],"\u77ed\u6642\u9593":132,"-plugin":104,"\u306a\u3093":11,"\u306a\u308c":11,black:190,"\u306a\u3089":[142,97,7,9,109,165,108,11,151,85,14,113,18,178,61,160,179,65,164,69,23,121,166,168,125,82,171,77,78,79,177,80,81,129,83,182,153,190,38],"\u306a\u308a":[2,3,4,45,97,7,9,103,10,71,77,107,58,108,11,151,152,85,13,154,16,17,113,18,60,117,143,179,65,22,44,164,23,121,70,168,124,125,169,114,73,74,75,173,27,78,79,176,177,80,81,190,83,130,132,182,32,175,135,38,185,36,37,84,102],"\u306a\u308b":[1,3,45,97,48,7,100,101,9,189,107,165,108,169,151,152,153,13,14,16,114,115,158,65,119,69,70,168,124,125,73,171,96,77,79,80,182,129,83,130,132,155,32,147,34,137,37],"_module":9,"\u30dd\u30b9\u30c6\u30a3\u30f3\u30b0\u30ea\u30b9\u30c8":77,wheezy:[55,152,137],get:[46,90,97,7,110,27,80],"\u96c6\u3081":130,"\u51fa\u305b\u308b":132,geo:[55,1,110,43,112,155,125,7,27,161],gem:152,"\u3002utf":[190,125],tokyogeopoint:[110,45,34,74,27,169],restarted:139,"\u5bfe\u8c61table1":113,morning:114,"\u300c\u697d\u3057\u3044":144,"\u300c\u30e9\u30d9\u30eb":108,"\u5468\u8fba":[7,32],kernel:139,caller:53,"\u8907\u96d1":[108,69,151,125,7,179],sear:177,masahiro:155,ency:168,"\u884c\u306a\u308f":7,"\u53ca\u3073":168,"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":54,checks:[133,83,80],parent:108,"\u6700\u5c0f\u5024":[142,108,23,151,80],"\u306a\u3073":77,"-blog":185,"\u306a\u306e":177,"\u3088\u3063\u3066":[92,90,71,45,99,74],"\u306a\u3069":[99,92,90,3,94,45,144,47,48,7,145,102,77,104,189,54,108,11,151,152,13,114,18,159,191,179,119,163,68,69,70,162,168,126,27,79,176,177,80,182,83,132,32,185,38],"\u306a\u306b":[55,177,43],je:143,"\u306a\u3067":177,ja:[152,119],"\u306a\u3063":[141,90,3,7,102,54,108,11,151,152,85,13,178,23,70,124,125,126,27,78,112,177,80,182,132,155,135,185],"\u306a\u305c":[164,182,108,18,179,151,190,38,177,65],"\u5206\u5272":[3,151,94,144,132,77,27,38],"\u306a\u305f":77,"\u306a\u3059":34,"\u306a\u3055":[36,67],"\u306a\u3057":[108,11,182,183,97,125,115,2,117,63,109,169,80],"-document":[88,152],"_allowed":[2,173],"\u306a\u304e":183,"\u306a\u304f":[92,1,3,91,94,95,141,7,9,10,77,189,54,108,151,152,13,16,159,65,22,23,168,124,125,183,96,27,78,79,80,81,182,130,132,155,32,88,38],"\u4f8b\u5916":[145,165,68,80],"\u306a\u304a":[144,152],"\u306a\u304b":124,"\u306a\u3044":[132,134],"*bsd":[27,155],"_invalid":[63,113,2,79],"[mdev":77,"}:":179,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":144,"\u4e0d\u9069\u5207":[7,80],cancel:[35,103],"\u5f15\u304d\u51fa\u3059":132,"}/":[22,119,189,175,10],"}.":[115,108],"})":131,".select":[168,151],tuning:[55,125,43],"\u524d\u5f8c":[97,3],"\u9ed2\u3044\u70b9":92,mark:[77,190],"&filter":103,"*max":63,shopping:114,"\u62e1\u5927":124,"\u5b57\u5c0f":[108,179],"}|":149,senboku:125,"}e":151,"_avoided":[2,173,79],"\u6240\u5b9a":[70,164,144,65],sound:[18,190],"_information":95,"\u30bb\u30df\u30b3\u30ed\u30f3":168,"\u30af\u30a8\u30ea\u30fcapi":[2,31],"}]":[145,68,103],"}\\":151,hdd:168,"_corrupt":[2,173],"\"mroonga":[183,108,151,158,85],"\u6587\u66f8\u5185":164,characteristics:32,"\u8af8\u6761":66,"\u578bn":108,"\u30d5\u30a3\u30eb\u30bf\u30ea\u30f3\u30b0":125,"|')":73,"\uff01\u3057":26,nogpgcheck:7,"\u3002\u5024":96,different:131,pat:[63,94],"\u91cf\u8a08":1,same:[12,128,122,35,85,125,19],arguments:[40,97],"=squeeze":152,"\u3002\u3044\u307e":112,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[55,80],"< y":125,"\u8a00\u53ca":[185,183],"\uff01\u300d":[108,182,151],"\u7b49\u4fa1":[108,155,80,159],"< n":151,running:[35,97,103],"\u672c\u5f53":[91,177],montywi:112,"\u305d\u3057\u3066":[108,90,130,13,132,32,185,78,177],markus:7,markup:87,"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc\u30d7\u30e9\u30b0\u30a4\u30f3":80,"\u8aad\u307f\u98db\u3070":3,solve:[122,12],"\u6b21\u56de":[11,152],"(cmp":80,"[number":58,money:44,"\u5927\u898f\u6a21":132,"\u3002\u3059\u3079\u3066":[59,178,119],"\u518d\u8d77":[139,141,176],".dll":40,"\u8fd4\u5024":126,"\u30c0\u30a4\u30a2\u30ed\u30b0":125,"_rate":[3,4,82,102,9,173],"/false":[13,1],"\u4e2d\u592e\u5024":80,"\u5ea7\u6a19":[92,75,151,185,34,27,169],"\u56f0\u96e3":[7,132],"_syntax":[2,84],"\u9069\u5b9c":[152,80],server:[7,80],"\u9650\u308a":[69,70,144,58,60,79],"\u9650\u3089":124,quantal:7,specifies:[131,148,97],"\u9650\u3063":79,"\u7be0\u7530":[77,80],testdb:[168,64],specified:[40,148,110,53],generates:187,"\u99c4\u76ee":124,ellip:75,"/database":[9,54],"_realloc":40,"\u65b0\u5bbf":74,critical:[40,149,97],"\u6d0b\u5fd7":80,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":[7,55,80,33],valuebuf:41,uubntu:178,"\u30cb\u30c3\u30dd\u30f3":177,"\u306f\u3044":13,broken:[136,173,83,121],"_between":80,"\u306f\u305a":[7,168,38],"\u307e\u3064\u308f":125,"\u306f\u3069":[108,177,65],"\u306f\u3068":94,ptr:40,develops:164,"\u306f\u307f":88,"@soundkitchen":[7,27],"\u3082\u3061\u308d\u3093":[168,130],"\"\u30df\u30ea":151,".patch":119,"_reopen":[55,43,6,31,7,8],"\u8abf\u6574":[70,166,108,38,159],"\u3002\u3059\u3050":9,"_cache":[55,30,125,43],"\u4f55\u5ea6":[125,103],"\u7279\u6709":85,"-login":139,"/ '":79,"\u306a\u304c\u3089":[108,90,3,152,132,7,38],"\u3002command":11,"\u63d0\u6848":[55,43,154,155,124,125,7,77,27,112,80],"\u3082\u3046":[114,111,13,16,7,9,78],"\u8a18\u8f09":[7,152],"\u3002cpu\u30b3\u30a2":54,"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":152,"\u3082\u3057":[2,100,9,103,189,54,108,75,151,17,115,61,81,65,168,125,183,96,176,80,179,182,135],"\u7834\u58ca":113,"\u516c\u958b\u9375":152,"\u3082\u3059":[22,10],"\u3082\u305b":61,"\u3082\u3064":[77,171,130],"\u30c7\u30d7\u30ed\u30a4":9,"\u3082\u306e":[3,97,7,100,101,9,142,108,11,152,13,17,113,18,63,119,67,69,23,168,125,75,173,78,169,80,179,180,190],"|on":108,"|oo":108,"$prefix":27,"\u5883\u754c":[7,142,75,23],file:[52,55,1,43,155,101,103,20,77,189,80],"*obj":[41,79,83,93,56,84,53,118,121],again:[9,19],"\u53d6\u308c\u308b":58,"\uff08true":13,"\u5b50\u5348\u7dda":75,"\u4e0e\u3048\u308b":[58,180,74,11,97],"}}":85,"\u3002pcre":9,"\u3068\u3053\u308d\u3044\u304f\u3064\u304b":85,"\u8a18\u8ff0":[69,3,168,97,185,78],"\u4e00\u6642\u7684":[166,79],"\u4e0a\u9650":[55,134],important:[122,28,12],"6gib":139,"_all":[77,16],remote:97,starting:40,sergey:80,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[7,27,80],expressions:9,gr:[108,90],libmsgpack:[153,14],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":[80,5],"_difference":113,"/lib":[22,141,9,61,10,175],"-alloc":82,"\u8aad\u3081":7,"\u8aad\u3080":68,"\u5dee\u5206":168,"\u8aad\u3093":[88,81],"\u4f4e\u4e0b":125,")mroonga":176,hottolink:42,"\u52e7\u3081":80,"\u306f\u3053\u306e":[166,108,38,183],sigusr:27,"\u30d6\u30c3\u30af\u30de\u30fc\u30af":85,"\u30d6\u30e9\u30a6\u30b6":[189,102,152,119],"\u304c\u3053\u306e":182,titles:[182,151],"\u3002\u3057\u304b\u3082":192,plugins:[139,158,10],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":178,abi:77,"\u3002amazon":108,"@orangain":125,tokenbigramignoreblanksplitalphadigit:38,"_append":[86,69,84,79],"\u30e1\u30bf\u30c7\u30fc\u30bf":[145,68,95],"\u8aad\u307f":[132,1,50,152,159],"\u5909\u66f4\u5f8c":[123,113,16,116,25,79],"\u307e\u3057\u3087":[44,108,75,3],".value":108,"\u30c6\u30b9\u30c8":[88,172,152],threads:[131,149],tokenbigramsplitxxx:38,"\u6e96\u5099":88,"\u6d3b\u7528":141,"\u5931\u308f":7,search:[108,90,182,12,122,154,162,97,32,47,48,7,170,113,18,63,27,28,176,177,151],published:152,"\u300c\u5024":65,aptitude:178,"\u672a\u77e5":112,memos:[148,164,100,12],".synonym":108,"\u78ba\u7387":154,distinct:131,"\u5ca9\u4e95":[7,125],"\u5317\u534a\u7403":7,"\u5c0f\u5024":[142,23],"_gqtp":168,"\u3053\u3068":[69,132,134,124,188,88],"\u3053\u306e":[2,3,4,12,7,90,9,75,13,14,17,18,19,23,24,183,27,30,31,32,38,40,47,48,50,54,165,58,59,61,63,65,44,68,69,70,73,74,77,78,80,81,84,153,88,89,91,94,95,97,26,99,101,103,189,108,169,85,112,114,115,113,117,119,122,162,125,127,129,130,132,133,135,136,137,139,142,144,145,151,152,161,163,46,168,173,96,175,176,177,179,182,185,186,192],varying:40,"[element":[151,85],"\u4e00\u756a\u5de6":151,"[example":80,none:[108,90,133,97,46,187,136,9,78,189,173],hour:[149,19],"\u3053\u3053":[108,3,182,152,13,185,135,70,74,154,190,176,151],dev:[153,14],deb:[7,153,14,152],"\u3053\u3046":124,"\u4e2d\u5fc3":169,share:189,"\u96c5\u5e83":80,minimum:40,numbers:35,"/..":[9,152],strlen:40,needs:139,maps:139,"\u3053\u308c":[90,142,91,5,94,144,47,48,7,9,103,10,77,189,54,114,108,75,151,152,85,87,17,18,179,65,22,69,23,70,166,125,73,170,74,173,96,27,78,175,176,177,80,182,190,83,130,183,132,32,13,185,119,38,117],"\u3053\u3080":68,"*value":[63,41,113,79,86],"\u591a\u3059\u304e":155,"/afr":[74,3,130],"\u666e\u901a":[124,151],mariadb:[125,80],"\u30cf\u30a4\u30d5\u30f3":[3,65],kuriyama:80,"\u3066\u304d":2,"\u3066\u304f":178,"\u30c4\u30a4\u30fc\u30c8":26,"\u547c\u3073":[108,69,5,85,13,168,97,32],"\u547c\u3070":[108,3,151,45,113,16,59,125,77,53],"\u3002ftp":168,"/vector":[148,77],"`hostname":97,"\u5217\u578b":[13,130,182,80],"\u3002\u4f8b":79,finalizes:40,through:9,"\u975e\u308f":144,existence:83,"\u308c\u308b":[92,3,93,94,45,144,97,48,7,100,103,77,145,189,53,114,108,11,152,85,154,191,16,17,59,18,60,178,63,65,68,69,23,70,134,168,125,126,74,75,173,96,27,177,80,179,190,183,132,133,32,119,38,117],"-launchpad":152,"\u6955\u5186":[75,169],good:[164,151,108,46,114,182],timestamp:23,"\u3079\u3066":[108,9,130],"\u9664\u304f":7,"\u5316\u95a2":155,"\u3079\u304d":[190,151,152,95,173,79],"\u3079\u304f":3,"\u9577\u91ce":80,"\u9664\u3044":[142,100,23,32,168],"-encoding":137,micro:185,token:[77,158],learing:48,"\u52b9\u679c":185,"\u9664\u3051":113,"\u767b\u9332":[132,88,69,152],hard:139,"\u4ee5\u964d":[92,109,23,152,178,162,155,97,125,47,102,27,190,38,80,119],flower:13,"\u30d5\u30e9\u30f3\u30b9":75,"\"gr":65,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":178,"\u8ddd\u96e2":[92,1,75,151,111,132,7,74,169],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":101,foreground:97,"\uff08\u79d2":79,"\u3068\u3082\u3063\u3068":189,"\u89b3\u70b9":[166,100,151,80],"_blank":133,tahr:[14,80],"\u4e09\u8c37":80,tritonn:[108,182,151],"\u308c\u305a":11,"(default":77,"\u306b\u3082":[108,144],"\u306b\u3088":7,done:19,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":[185,75],".blog":70,"_data":[55,30,53,43],koi:[7,189,97],"\u306b\u5bfe\u5fdc\u4ed8\u3051":177,least:139,"\u516c\u5e73":125,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":54,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[36,97,9],"/archive":152,"*results":113,selector:156,"\u308c\u307e\u305b":[11,162,97,126,113,78,189,176],"\u6574\u7406":[7,125],"},":[90,3,91,148,127,143,108,75,151,85,114,115,59,167,44,46,49,168,109,78,179,182,185,38],"\u4e71\u6570":[67,74],"_tag":[162,100],"\u8a18\u9332":[7,22,60,132,10],"\"requires":7,"\u30d3\u30e5\u30fc":7,"\u4e0a\u8a18":[3,48,7,189,108,109,115,18,119,66,23,70,168,183,74,173,96,77,176,81,130,65,38],ages:[105,96,65],"/lc":[152,119],"_scorer":77,".key":113,built:[189,79],"/lists":152,"-limit":[1,97,108,125],extracted:84,"\u307e\u3068\u3081":[88,124],build:[152,14,125,82,153,101,20,189,81],"_available":[2,173],"\u53d6\u308a\u51fa\u3057":[63,120,3],eggs:78,most:110,"~*":84,"\u306b\u3057":[108,151,125,77,80,182],myisam:132,"\u5e73\u884c":152,sharding:[77,142,23],"\u306b\u3059":70,kb:166,ka:190,"\u306b\u3066":[7,75,125,152],"_put":[6,55,31,125,43],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u306b\u3069":69,ko:42,km:185,"\"theater":91,"\u7528\u8a9e\u96c6":126,"\u4e0a\u66f8\u304d":[74,152],mlock:155,think:[122,28,12],"\u30ad\u30fc\u30b5\u30a4\u30ba":[94,77],"(drilldown":60,"\u30d1\u30c3\u30c1":87,"\u5927\u8cb4":7,relation:79,nterms:126,"[mecab":77,find:20,"_int":[77,79,84,62],proonga:128,"\u7d50\u57ce":80,"\u30a2\u30ca\u30a6\u30f3\u30b9":152,permission:173,express:[7,101,125],"\u601d\u3044":119,"\u601d\u3046":[78,130],"\u62c5\u5f53":152,resolve:[122,28,12],"\u9593\u9055\u3063":[125,7,170,18,61,27,80],"\"popular":108,transitional:141,"_and":[69,56,12],"\uff08byte":[79,121],common:[63,27,113,97,151],"\u601d\u3063":87,"+fff":38,"/log":[131,141,189,97,9],"_sjlj":80,lion:7,tokenizers:[167,90],"\u76f8\u624b":124,"[backslash":182,"\u30bb\u30f3\u30c8\u30e9\u30eb\u30d1\u30fc\u30af":185,"\u30e2\u30b8\u30e5\u30fc\u30eb":[132,11,155,55],"(news":152,"\u5024\u57df":71,".log":[141,11,12,168,97,9,189],"\u30cb\u30db\u30f3":177,readme:[125,152],"\u8a9e\u4ee5":[38,151],"\u8868\u73fe":88,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3api":7,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30a8\u30e9\u30fc":77,"\u66f8\u3051\u308b":[7,125,80],reverse:[9,152],hiroyuki:77,"\u6570\u70b9":[45,108],"-file":[131,27,135,97,77],"\u5b9f\u51e6":[69,53],"-org":152,point:[131,59,110,112,103],simple:[148,141],"\u3059\u304e\u307e\u305b":44,"\u306f\u3058\u307e\u308a":11,hideki:77,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b9\u30bf\u30a4\u30eb":179,simply:122,shutdown:[31,155,23,43,55],"\u6253\u3064\u524d":152,"\"gronga":170,"_connection":2,create:[40,97,158],"\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8":[17,183,16],"\u53ce\u96c6":[135,132],"_when":135,"\u30a2\u30ed\u30b1\u30fc\u30c8":82,bill:[70,144],replaced:[64,187],ful:90,"\u307b\u3057\u304f":108,engi:[154,177],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[94,3,9],cents:38,"\u5f15\u6570":[55,1,11,43,125,16,7,69,63,77,80],"^ \"":151,itself:85,"\u56db\u5247":80,rubygems:7,"\u95be\u5024":[55,108,154,144,97,16,39,77,25,27,189,80],"-key":[112,152],"\u7d42\u7aef":[7,84,83,16],emphasize:109,")groonga":176,"\u56fd\u540d":130,development:185,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":80,"-chroot":152,"\uff08perl":9,keys:[113,80],"-existence":125,aggregate:32,"\u5834\u6240":26,"\u53cc\u65b9":124,"\"\u3001":[177,130],"\"\u3002":80,"\u5409\u7530":125,"\u7d44\u307f\u5408\u308f\u305b":[69,3,152,70,132,73,38,80],flags:[40,120,121,62,95,113,16,73,126,59,63,79,84],sortby:[27,156],entry:[73,146,93,72,58,136,171,156,37,107],"\u305f\u3059\u3079\u3066":108,"\u3064\u307e\u308a":[77,108,90,23,152],sunos:80,"\u3002dump":158,"\u547c\u3073\u51fa\u3059":[67,169,111,34,159,181],"\u3001\u00d7":124,"\u5024\u306a\u3089":125,"\"value":108,"\u547c\u3073\u51fa\u3055":[93,108],"\u547c\u3073\u51fa\u3057":[69,132,155,32,16,7,158,159,80],"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb":168,"\u306f\u3069\u3061\u3089":54,source:[44,3,83,152,185,95,73,59,135,77,78],realloc:155,"5\u3064":96,bin:[101,20],manage:20,"?arg":179,kashihara:80,"\u968e\u5c64":69,bit:[165,129,24,45,14,168,125,153,101,137,77,81],"\u5f53\u3066":[94,90,105,103,16],"\u30d7\u30e9\u30b0\u30a4\u30f3":[1,142,68,7,10,145,77,189,165,14,115,119,22,164,23,125,27,175,176,80,129,132,155,147,153,190],"\u5927\u4e08\u592b":[189,124],"\u8aa4\u308a":[7,77,125,80],"\u5354\u529b":[88,172],"\u3057\u307e\u3063":80,"\u4e0a\u8ff0":176,"*keys":113,"-command":[155,81],"_over":[2,173],"\u4ee5\u5916":[92,5,94,45,108,152,85,16,17,113,61,179,65,69,120,121,62,168,125,82,27,79,80,182,83,132,155,84],google:[122,170,28,108,12],"\u5168suffix":113,"\u8aa4\u3063":[7,77,125,80,152],examples:155,"\u3001[":3,"'ve":185,"\u3002set":168,"\u66f8\u304b":[7,185],"\u3001c":3,"\u66f8\u304f":[78,182,80],"\u8a73\u3057\u304f":[13,132,3],"\u66f8\u304d":[132,108,168,179],"\u66f8\u3044":[151,185,182,77,80,179],newark:185,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u30fc":80,"\u3002travis":81,"\u30d3\u30eb\u30c9":88,"\u5024\u306a\u3057":112,"/cutter":152,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30d7\u30ed\u30c8\u30b3\u30eb":7,"_checks":133,cxxflags:24,"\u3001#":185,"\u3001\"":[109,3,91,183,100,185,45,125,48,7,170,18,27,177],"\u3001$":152,"\u3001'":[151,13,45,97,115,123,80],"\u3001(":[63,45,168,113,96],nginxhttpstubstatusmodule:80,"\u3001-":[36,45,155,168],"\u3001/":[3,102],"\u3001.":[178,119],"\u5730\u5f62":[75,169],"\u3001:":168,"(fedora":141,"\u3084\u3059\u3044\u304b":176,"\u3001>":72,"\u5730\u70b9":[74,75],"\u7a4d\u307f\u91cd\u306a\u3063":125,"/yum":152,"\u9010\u6b21":[132,38,80,179],suffixsearchterms:[182,151],"\u6295\u5165":[70,1,23],"[label2":108,"[label1":[108,80],"_fin":[7,40,84,5,16],errno:[77,80],"\u51fa\u3059":185,"\u51fa\u3055":125,"\u51fa\u3057":185,"_full":[55,161,80,43,152],"-type":[48,18,9,27,177,54],"\u7b97\u8853":125,"-binary":[9,54],"/epel":129,"\u56de\u907f":[55,152,70,39,77,80],"\u52d5\u304d":[108,54],"\u52d5\u304f":[7,27,192],"\u52d5\u304b":[125,80,179],"*keybuf":113,"\u30b3\u30de\u30f3\u30c9\u30d1\u30fc\u30b5\u30fc":179,curl:[189,4,131,97,7,9,103,89,54,81],sourceforge:152,"\u90fd\u6c11":[70,144],"\u6570\u73e0":183,functionality:131,"_enabled":77,"\u5207\u308a\u6368\u3066":13,libwinpthread:80,"\u30c7\u30fc\u30bf":[1,43,95,7,101,27,55,108,85,154,14,158,69,23,165,125,77,112,80,129,132,155,153,137],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":168,"\u53d6\u5f97":[88,124],confirm:119,"_nil":[63,113,155,84,16],failures:152,"\u7d50\u5408":[69,182,159],getaddrinfo:7,jason:143,wanabe:125,"/cache":9,"\u57cb\u3081\u8fbc\u3080":168,query:[22,55,69,43,85,132,125,175,7,156,147,10,56,84,80],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":7,"_debug":178,"/\u65e5":185,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[151,78,108,182],"-release":88,"\u3042\u3089\u308f\u3057":91,"\u4f59\u308a":151,"\u5f97\u308b":[38,9],putting:139,"/request":103,"_database":[7,125],"\u30b9\u30c6\u30fc\u30bf\u30b9\u30b3\u30fc\u30c9":7,"-build":178,"\u306b\u3064\u3051":151,"\u512a\u308c":[132,38],".output":36,"\u76f4\u611f":143,"\u9665\u3063":7,"_header":95,"\u3001 \"":100,"\u9023\u643a":132,vmware:152,"_thread":168,"= n":151,access:139,"\u5f35\u308c\u308b":125,"\u4e2d\u56fd":75,"\u3002\u30ad\u30fc":108,"= y":125,"\u826f\u304f":78,"\u826f\u3044":[78,124],nonexistent:108,"\u30ef\u30fc\u30ab\u30fc":9,"\u632f\u821e":75,"0xc":173,"-dump":77,masatoshi:77,"\u306b\u5bfe\u5fdc":[41,108,79,23,121,93,62,97,16,7,113,36,191,27,58,112,53,80],"= \"":[108,23,151,80],"/tmp":[176,54],"_printf":80,"\u57cb\u3081\u8fbc\u307e":152,"\u57cb\u3081\u8fbc\u307f":[32,47],"\u3002adjuster":80,"\u30b9\u30b1\u30fc\u30d7":179,"/to":[9,54],"\u30ed\u30f3\u30c9\u30f3":75,"ci\u4e0a":81,"(ctx":[17,69,84,121,16],"\u53d7\u4ed8":[91,125],"\u5b8c\u4e86":[108,152,119],"'mroonga":[115,78],"\u30d5\u30ec\u30fc\u30ba":7,".pid":97,"\u5f35\u3063":[108,125],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[90,71,43,7,10,107,55,79,151,85,16,17,113,159,167,22,49,121,126,27,175,80,181,133,37],"\u4e2d\u7a0b\u5ea6":[165,129,14,153,101,137],normalizer:[55,31,80,43],"_previous":17,"[header":[22,135,68,49,23,167,133,73,136,59,90,117,10,145,142,127,175,171,65],normalized:133,"\u305d\u308c\u3089":[180,108,121,73,19,176,54,179],escaped:84,"\u96c6\u307e\u3063":130,"\uff08or":159,"\u30e2\u30cb\u30bf\u30ea\u30f3\u30b0":125,"_malloc":40,"\u8d77\u52d5":[82,11,4,152,168,155,97,125,7,101,51,36,54],twiter:7,"\u96c6\u307e\u308a":108,"\u30af\u30e9\u30c3\u30b7\u30e5":[155,125,7,59,77,27,80],"{prefix":[22,189,175,10],"/linux":[55,152,137,20],"-za":131,"\u6295\u7a3f\u5834\u6240":185,msvc:77,gcc:[165,129,24,125,7,27,189],df:122,dd:[149,151,179],"\u30b3\u30de\u30f3\u30c9":[17,1,69,152,43,55,85,125,7,155,178,77,104,27,112,80],"\u5186\u6ed1":152,"(score":77,"\u5f35\u3089":[7,13,121,125,77],"\u5f35\u308b":[182,151],"\u30af\u30a8\u30ea\u30aa\u30d7\u30c6\u30a3\u30de\u30a4\u30b6":80,"\u30b5\u30fc\u30d0\u30fcid":27,bind:27,lines:[131,178],"-protocol":[51,97,102,168],"/meetup":77,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":155,"\u7d9a\u304d":58,"\u306e\u3088\u3046":[108,23,182,95,125,17,59,159,179,38,80,151],"(cutter":178,"\u7d9a\u3044":[70,108],hiroshi:[27,155],jiro:44,"\u3002int":125,"\u7d9a\u3051":168,lf:180,"\u6d88\u8cbb":114,ld:38,lc:119,lo:38,ll:[70,90,38,144],euc:[97,189,38,125],li:[70,144,38],lt:[162,90,32,47],ls:152,"_gqpt":168,tsv:77,lz:189,"\u9589\u3058\u308b":[27,1,94],"\u306f\u3069\u3061\u3089\u304b":[182,151],"\u4f75\u305b":3,"\u3067\u3057\u3087":[163,151,130,132,114,59,80],dat:94,"\uff08world":45,"\u30c7\u30a3\u30b9\u30afi":65,day:[114,149],"\u30e6\u30fc\u30b6":[73,108,69,3,152,45,168,48,7,170,18,177],"\u4e00\u3064":[146,6,45,144,8,105,107,11,111,13,16,17,113,156,158,191,160,67,121,72,73,126,75,169,82,181,183,132,34,109,37,140],"\u70b9\u9593":[92,75],"_persistent":[113,121],"\u5217\u5f0f":84,"& y":125,"& x":80,normalizerauto:[108,90,162,133,46,47,115,49,77,105,65],"\u74b0\u5883":[132,88],"\u5217\u5f15":69,"& b":151,"\u3042\u308c\u3053\u308c":124,"\u5f85\u3061\u53d7\u3051\u308b":[102,173],"\u30b5\u30f3\u30d7\u30eb\u30b9\u30ad\u30fc\u30de":[109,12,183,122,115,100,148],"\u5fc3\u914d":137,res:[113,56,168,110],"& _":74,"\u30ab\u30ec\u30fc":144,red:88,"/\u6708":185,frank:96,"\u73fe\u72b6":11,please:[141,83,12,122,28,119],"\u4ed8\u5c5e":[36,9],"/aba":[74,3,130],"& (":151,"\u76ee\u8996":135,"\u30d6\u30e9\u30b8\u30ea\u30a2":75,"*top":110,"_long":[2,173],"\u91ce\u9996":80,"-appearing":12,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":132,hex:44,reaches:139,"\u30d9\u30af\u30bf":[7,155,1,79,125],"\u7d44\u307f\u8fbc\u307f":[55,90,83,43,133,31,158],monkey:13,"\u8aad\u307f\u8fbc\u3093":[68,173],"\u6c38\u7d9a":[55,121,43,95,113,79,65],"\u8aad\u307f\u8fbc\u3080":[1,68],natty:27,acquire:19,documentations:161,"\u3068\u3088\u3044":189,"_unregister":[22,55,31,43,77],"\u305b\u3044\u305c\u3044":65,"_illegal":2,"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[7,125],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d5\u30a1\u30a4\u30eb":9,"\u5229\u70b9":132,"\u30da\u30fc\u30b8":[55,108,3,152,97,125,26,7,36,119],"\u81f3\u308b":13,have:[114,139,106,83],"=users":[9,54],"\"co":170,min:[7,63,19,80],"_control":[2,173],"\u914d\u4e0b":[36,152],"_func":[40,53,80,16],"\u8aad\u307f\u8fbc\u307f":[22,68,3,125,10,27,176,80],"\uff08gnu":189,"/commands":[105,59,95,80],"_character":84,eight:3,"_offline":112,"\u306a\u3082\u306e":[121,152,179],"\uff09\u3002":70,"\u6e2c\u5730\u7cfb":45,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[7,18,65],request:152,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[135,1,11,155,125,7,27,112,80],"\uff08least":117,"\u7d44\u307f\u8fbc\u3093":[132,80],"\u304b\u304b\u308a":[114,38,182,151],normally:[139,106,97,16],text:[90,4,12,94,45,7,54,108,110,151,115,23,122,168,77,78,179,182,32,135,136,139],"\u8d8a\u3048\u308b":[70,77,23,80],supported:[42,9],"\u5ea6\u3068":27,conifugration:81,"\u610f\u5473":[108,69,3,176,130,85,38,95,97,125,74,151,103,154,77,189,84,177,168,182],"\u5b66\u3093":185,"*table":[63,113,79,121],bernard:77,"get\u30e1\u30bd\u30c3\u30c9":36,"[mruby":[77,80],"\u65b9\u6cd5":132,")\u3059\u3079\u3066":96,"\u5c11\u306a\u304f":[182,132,124,32,114,77,151],"\u5c11\u306a\u3044":[108,182,114,159,176,80,151],"[column":80,"\u7e70\u308a\u8fd4\u3059":155,"_prepend":79,"\u306e\u307f\u3057\u304b":170,"_eval":[55,31,125,43],"\u7e70\u308a\u8fd4\u3057":[168,151,119],"\u5272\u308a":[90,151,13,94,16,103,105],calling:[40,5],fixed:7,"_busy":[2,173],"\u5236\u5fa1":[7,115,9,96],"\u3002blogs":70,we:128,"\u4ee3\u5165":[155,69,125,182],enhanced:42,wc:[153,129,14,165],xxxxx:152,"\u985e\u4f3c":[69,154,125,7,159,80],pattern:[182,151],"{name":151,"(string":111,"\u30c7\u30e1\u30ea\u30c3\u30c8":94,progress:149,"\u6751\u4e0a":[77,125,80],"_incompatible":2,"\u5b66\u3073":[108,75,130],"\u7dad\u6301":[132,54],superior:32,"\u5168\u4ef6":[63,182,151],"\"ddl":80,"\u518d\u8d77\u52d5":[22,10],plugin:[55,43,30,77,27,80],"-suggest":[52,55,43,154,155,125,147,7,27,80],"_expression":[108,179],".org":[3,101,9,189,165,109,152,85,13,14,17,158,119,44,24,168,74,102,80,129,130,153,89],"\u88dc\u6b63":[55,50,43,154],"\u628a\u63e1":124,otherwise:[40,79],comment:[185,78,183],"\"fulltext":90,"\u304a\u304d\u307e\u3057\u3087":13,"-history":27,"\u4ee5\u524d":[70,185,125,7,13,27,190,80],"\u30ab\u30b9\u30bf\u30e0":9,"\u91cd\u307f\u4ed8\u3051":[70,108],"\u30e1\u30e2\u30ea":[17,129,155,165,14,125,16,7,153,101,137,79,80],"\u5c0f\u6570\u70b9":13,"\u52c9\u5f37":38,json:[85,155,7,27,106,80],"\u91cd\u307f\u4ed8\u304d":80,copied:40,"\u901f\u3044":[94,80],"_end":2,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":27,"\u306a\u306b\u5bfe\u3057":[182,151],finished:[149,103],"_domain":2,"=..":152,"\u5168\u4f53":[189,55,30,125,43],value:[40,41,68,121,85,95,108,125,7,145,113,19,158,63,77,79,53,80],"=arg":179,"\u540c\u3058":[1,90,45,97,9,103,10,105,54,55,108,11,151,85,154,16,115,18,63,22,168,191,27,176,80,179,132,155,135,36,190,84,39],almost:[139,128],"\u6307\u91dd":[88,172],"(cve":80,"\u30bf\u30a4\u30df\u30f3\u30b0":[7,3],".db":[97,173,3,102,125],pkgs:129,"-endpoint":[131,64],optarg:[56,83],"\u67af\u308c":[141,188],":!":182,"[api":77,"[apt":7,"\u672c\u4f53":88,"\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3":152,center:169,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30e2\u30fc\u30c9":125,builder:86,sets:16,position:[40,46,90,38,110],"*result":113,"1byte":173,"\"ellipsoid":169,"\u8868\u793a":[1,4,97,7,77,105,189,157,55,108,11,152,13,44,70,168,125,82,126,173,27,112,80,132,155],"-platform":137,stores:84,"_byte":[2,173],"x\u30df\u30ea":[45,151],"|..":80,"\u5229\u7528":[90,43,97,7,101,27,189,55,152,14,17,113,178,61,119,158,165,168,124,125,77,80,129,83,132,135,153,188,137,65],stored:[64,48],"\u30ad\u30fc\u30b5\u30dd\u30fc\u30c8":94,":<":[108,182],"\u958b\u59cb":[108,75,162,168,125,82,59,178,27,79,80],"\u300c\u5f0f":84,"_true":79,"\u3055\u3093":[130,155,32,147,125,7,170,54,77,27,179,112,80,119],add:[108,90,161,14,7,20,38,80,119],"\u3002gqtp":[180,2,173],"\u3055\u3089":78,match:[55,85,155,125,16,156,77,189,80],tests:152,"|none":108,"\u5730\u57df":132,elapsed:[131,135,4,149],"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":[70,38],like:[128,97,9,121],success:173,"_leak":178,"_decr":79,"\u6709\u76ca":132,"\u30af\u30a8\u30ea\u30fc\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":54,works:[40,149],soft:139,"\u63d0\u6848\u7528":131,"\u4e0d\u6b63":[1,155,125,178,27,80,65],"((x":45,"\u30b5\u30fc\u30d0\u30fc\u30d7\u30ed\u30bb\u30b9":125,"\u8ca0\u8377":[155,9],"\u7121\u52b9":[108,182,123,125,7,113,9,63,77,189,112,177],"\u610f\u56f3":[182,183,125,7,115,78,80],tmp:[3,152,131,154,95,97,125,59,102,105,179,176,54,173],"_optarg":[77,56,83],sjis:[189,42,97],"\u30b5\u30de\u30ea":125,"\u5f62\u5f0f":[55,1,69,43,123,31,16,7,27,106,112,80],",\"domain":130,"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":151,"\u30d0\u30b0":[27,124,125],"\u3046\u307e\u304f":[88,172],dcb:80,"-h":[97,9,54],host:[168,179,97,102,173],"\u6319\u52d5":[55,155,97,7,25,38,80],"\u30c0\u30e1\u30fc\u30b8":70,about:[40,135,12,122,35,97,149,17,20,139,28,161,81],actual:[9,12],socket:173,"\u3055\u305b":124,"\u4ee5\u5185":[185,74,18,151,177],"\u3055\u304d":13,"_time":[135,149],tomo:44,"\u3055\u3044":[141,2,3,143,94,45,46,26,136,7,90,101,102,103,10,145,109,189,54,165,108,75,151,152,85,13,154,14,70,59,19,25,95,65,22,119,68,49,178,24,166,167,168,125,73,183,74,171,117,77,127,175,80,179,129,182,130,132,133,115,153,185,36,89,38,9],introduced:9,"!!":[58,44,38,9,185],"\u6307\u3059\u5024":63,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":152,"!)":9,dataset:[131,64,187],"_object":2,guard:122,"\u30ec\u30fc\u30bf":7,rch:90,">default":4,"\u901f\u5ea6":[44,94,168,125,77,27],"\u7591\u554f":78,glib:125,"_inappropriate":2,"[power8":80,but:[12,128,122,97,131,139,127,189,64],"\u3068\u3068":[87,119],"\u3068\u3069":50,"\u3068\u306e":151,"\u3068\u3063":9,"\u30fb\u5168":156,buf:[113,79,121],bug:[7,42],"\u5730\u56f3":132,"-w":152,dangerous:[136,83,121],"\u3068\u3057":[45,97,48,9,108,75,151,13,16,114,18,44,68,69,168,125,170,78,176,177,80,180,38],"\u3068\u3048":[108,11,132,123,144,32,47,38,74,189,84,80,179],binlib:152,"\u3068\u304d":[1,90,3,45,144,97,48,7,9,10,77,189,53,54,165,108,75,151,152,85,13,154,14,16,115,113,18,159,63,65,22,44,69,120,134,124,125,73,170,173,27,175,176,177,80,179,129,190,182,130,132,155,32,135,153,185,89,38,102],"-disable":[131,27,155,80],"!\\":151,epel:[7,129],colum:139,pid:[1,189,97],"\u8a08\u7b97":[92,1,75,151,111,132,45,108,48,7,74,18,125,145,169,177,80],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[155,189,152],"-config":[1,155,97,7,27,189],saer:[154,18],"\u4f7f\u3044\u5206\u3051":[70,144],pip:20,"\u30c1\u30a7\u30c3\u30af\u30b5\u30e0":152,"\u305f\u3060\u3057":[1,182,144,97,125,73,60,36,63,27,179,80,151],"\u305f\u3060\u3051":7,"\u6291\u5236":[7,125,80],detail:168,"\u3068\u308b":79,"\u4fc2\u6570":[108,69],"\ufffecrch":90,"\u3068\u3082":[108,182,166,168,32,183,74,77,151],"_vars":40,"\u30b0\u30eb\u30fc\u30d7\u30ad\u30fc":108,"\u306e\u3044\u305a\u308c":[95,91],"\u307b\u3069":[141,3,13,154,38,65],cpu:[131,132,168,9,189,54],"\u5909\u3048\u308b":[70,108,38],"\u307b\u3046":80,"\u307b\u304b":[13,132],"\u2026\uff09":18,"4e":166,"|ro":108,"\u3002groonga":[3,4,5,94,7,101,9,71,189,165,108,11,151,14,168,125,73,78,177,80,179,82,129,182,132,153,88,102],"\u6e1b\u3089":[7,94,18,91],"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9":63,tweet:114,"\u30d1\u30bf\u30fc\u30f3\u30de\u30c3\u30c1":179,"\"ab":170,under:[131,9,64],"-ci\u4e0a":125,"\u3067\u3064\u306a\u3052\u308b":108,"\u904e\u7a0b":60,"/acccess":141,"/plugins":[22,175,155,125,10,189],"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":[27,125],"\u5b9f\u6570":45,"\u6761\u4ef6\u5f0f":7,"\u6700\u9577":[27,168,151],"_snip":[7,80],"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":[154,177],"-repository":[7,14,152],estimates:110,"/mm":151,"\u7b87\u6240":[135,32,152,125],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":[27,125,80],"\u4e00\u8a9e":70,"\u5b9f\u65bd":152,"\u81f4\u547d":7,"-rpm":152,"-idf":[122,12],"\u7d44\u8fbc":[67,146,111,6,45,72,169,181,73,34,8,156,140,158,160,191,105,37,82,126,107],"=largetable":103,"\u683c\u7d0d":[66,41,121,69,83,79,92,93,94,105,151,114,17,73,113,60,97,132,27,56,65],"\u53cd\u8ee2":151,"\u30e2\u30cb\u30bf\u30fc":[153,129,14,165],"\u9069\u7528":[84,80],"\u3002output":[158,80],studio:[7,77,101,125],path:[40,83,95,10,113,59,20,79,121],"\u95a2\u4fc2\u5f0f":88,".ddl":168,"_scorers":12,"_target":80,"_key":[58,1,110,121,85,62,95,155,113,125,7,136,59,171,60,158,77,63,27,112,80],"\u79cb\u8449":74,changed:[42,9],"\u5f62\u614b":[132,189,38,151],"\u6e1b\u3063":77,"\u58ca\u308c\u308b":[1,155,125,7,27,80],"\u63a8\u79fb":11,"\u3082\u3063\u3068":108,"-ci":[125,80],"\u30d3\u30eb\u30c8\u30a4\u30f3":125,"\u8fd4\u5374":[105,108,3],ts:38,"\u8aad\u307f\u3084\u3059\u3044":112,"\u30bd\u30fc\u30b9\u30ab\u30e9\u30e0":[77,95,80],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":125,noarch:[165,129],m6:24,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id":120,namebuf:[79,121],autogen:[7,152,119],"\u30a2\u30e1\u30ea\u30ab":75,"\u5909\u308a":80,"-bind":[7,27,97,77],must:[40,110,83,131,48,136,139,84,64,121],me:[76,38],te:[90,38],"\u7f6e\u304d\u63db\u3048":[97,182,80,119],mb:7,mm:[149,151],ml:124,"\"blank":190,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":168,mv:191,install:[165,129,152,153,137,20,89,178,81],my:[108,182,151],"/xml":54,"_idf":12,"\"s":[90,154,18,38,177],end:[180,162,4,173],eng:[154,177],"\u3002html":162,"\u3002functions":178,"\u30d7\u30ed\u30bb\u30b9":[22,82,11,3,132,97,125,7,126,59,9,61,10,168,160,54,180],env:176,rroonga:[12,183,125,17,115,100,159,148,78,80,81],"\u30b4\u30df":[27,155,126],"\u7d42\u4e86":[11,103,5,168,155,97,125,16,7,160,61,152,77,53,80],description:[185,144],"-devel":[165,129],"\u305d\u306e\u5f8c":[108,151,16],".tar":119,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[55,71,80,43,125],"-files":88,"\u5c0f\u3055\u3044":[108,69,182,94,147,63,169,38,65],".tag":108,"]isk":179,"\u5272\u308a\u5f53\u3066":[17,155],"/tab":77,"\u4e88\u5b9a":[68,11,85,87,32,75,145,27,54,179],executed:102,"\u7acb\u3061\u4e0a\u3052":168,"\u30ed\u30b0\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":80,"\u305f\u304f":[130,125,32,170,27,179,54,119],"\u5bfe\u8c61table2":113,synonyms:176,"\u305f\u304b":[27,108,18,103],"@packages":152,gqtp:[132,88,188],"\u305f\u3073":[74,11,168,152],"\u305f\u3060":[165,85],"\u8fd4\u308a\u5024":[125,80],"\u300chello":108,"\u4e00\u884c":[168,155,97],"\u3072\u308d":143,"\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30d7\u30ed\u30b0\u30e9\u30e0":125,"\u3072\u3089":[177,38,182,151],"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5\u30a8\u30f3\u30c8\u30ea\u30fc":117,"\u3054\u3089\u3093\u304f":104,"2\u3064":[0,141,3,95,48,54,165,108,111,14,115,65,125,73,183,77,78,80,179,129,182,130,185,153,38,192],each:[131,35,48,18,9,154,149,84,177],searc:177,signing:152,"\u3002\uff08":[92,94,45,144,47,48,103,108,151,16,18,159,63,119,126,27,177,81,182,155,32,38],"\u3002\uff09":[92,1,144,182,119,94,108,32,47,48,18,103,63,27,81,38,155,151,65],"(byte":[113,121],"\u6e96\u62e0":[9,125],goo:[182,151],msgpack:[4,173],"\u30da\u30a2":[108,91,13,48,170,18,176,177],newly:[127,32],"\u3002centos":77,"\u4f59\u8a08":124,free:[149,126,155,80,16],"\u305f\u308a":[108,93,132,45,159,124,141,94,88,179,80,65],"\u305f\u3089":[108,103,5,183,155,124,141,96,115,54,61,152,77,151,38,177,80,119],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":59,freq:48,"\u30b0\u30ed\u30fc\u30d0\u30eb\u30ad\u30e3\u30c3\u30b7\u30e5\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":17,"\u305f\u3081":[132,88,188,172,26],"\u53e4\u304f":80,"\u53e4\u3044":152,"_locked":79,filter:[85,155,125,7,171,156,77],onto:139,rand:[55,161,43],already:[40,139,19,64],"\u53ef\u5909":[27,95,37,173],"\u897f\u66a6":151,top:[27,110,34],"\u771f\u507d\u5024":55,".groonga":[119,129,152,165,24,14,168,153,101,189,89],too:[77,78,173],tom:115,tood:40,"_pragma":108,tool:81,serve:152,wareohji:7,".com":[190,3,152,130,13,74,102,104,119,81],"\u6d0b\u723e":27,"\"good":[108,151],"_untag":[55,161,125,43],expr:[79,84,53,118],"*cursor":110,obata:155,"_isspace":40,"\u8d64\u9053":75,ram:168,"\u6709\u3057":95,"\u5834\u5408":[69,124],"\u5f93\u3063":[108,113,63,36,56,54],"\u4e00\u89a7":[55,43,119],"_source":152,hanako:171,"\u591a\u9762":132,"> y":125,"/stop":[164,46,158],"\u5f93\u3046":155,"/share":[27,97],"\u3044\u307e\u305b":[92,108,90,176,192,94,182,125,54,135,9,154,151,179,38,129,80,65],bsd:[189,80],"\u3072\u3068\u3064":[7,182,111],"\u30b5\u30b8\u30a7\u30b9\u30c8":[55,43,154,155,187,7,27,189,80],"\u30ed\u30fc\u30de":177,"> \"":77,",..":[58,105,108],"\u30ed\u30fc\u30c9":[55,132,155,125,77,27,80],"\u30ec\u30b3\u30fc\u30c9":[41,7,27,120,56,55,85,58,113,60,63,156,66,69,23,121,125,171,77,79,80,132,155,84],marverick:155,"\u307f\u306a\u3055":69,pkg:[24,155,189],"\u5ea6\u8868":155,"\u5c0f\u6570":[135,27,108,77],"\u6c42\u307e\u308a":132,"\u3002hook":93,"\u518d\u3073":80,"\u306b\u3064\u3076\u3084\u3051\u308b":124,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":69,"\u59cb\u307e\u3063":[135,170],"\u3092\u3054":178,"_valid":9,fontaine:27,"*fin":53,"\u3064\u3064":[70,115],"/example":12,watch:152,"\u306f\u307e\u3068\u3081\u3066":152,"\u3064\u304d":[66,68,109,85,108,73,117,145,176,80],"\u3064\u304b":147,"\u3064\u3044":185,"\u7d50\u679c":[7,103,27,145,56,55,108,152,113,60,178,158,68,69,61,125,117,77,80,81,132,155,133,135],hendro:125,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[108,75,23,183,100,162,32,47,115,171,96,148,109],"-per":[131,27],"_with":[143,144,113,121,151,65,182],"\u3064\u3051":[108,75],nul:[40,27,38,83],"-commnad":11,ciritical:9,"\u5bfe\u8c61cursor":[63,120],"_for":[77,69],"\u30d7\u30ed\u30b0\u30e9\u30e0":[151,95,155,7,9,88],"\u56db\u6368":27,"\u30d7\u30ed\u30bb\u30b9id":173,"\u30b5\u30fc\u30d0\u30fc":[52,55,129,43,165,14,125,7,153,188,9,103,77,27,80],"\u59cb\u307e\u308a":152,"\u59cb\u307e\u308b":[108,182,176,168,73,170,113,60,54,38,177,80,151],news:[77,152],"\u82e6\u624b":132,"\u3068\u3057\u307e\u3057\u3087":[78,91],extracts:84,"\u30e9\u30f3\u30c0\u30e0":74,"4gib":[94,173],"\u65b9\u5411":63,"\u591a\u91cd":180,"\u5f8c\u304b\u3089":158,"\u7d4c\u7def":[13,45,74],"/or":136,trust:152,"\uff13\u3064":45,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":168,"\u7b49\u3057\u3044":[108,69,182,79,151],"\u7b49\u3057\u304f":[69,182,151],"&lt":[162,32,47],been:152,"\u30a8\u30e9\u30fc\u30ed\u30b0":141,"_blog":78,"\u8d77\u6e90":13,"/shutdown":[97,9,54],tokenmecab:[7,167],"\u5217\u60c5":90,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[126,158],"-threads":[131,97],xxx:[97,125,151],"_not":[108,2,136,59,171,173,103,127,56],"\u6700\u9069":9,"\u7528\u9014":[165,108,85,132,14,125,135,153,101,141,137,94,129,80,179],"\u6728\u4e0a":63,"*ctx":[40,41,79,120,83,93,86,16,17,25,113,110,62,63,56,84,53,118,121],"\"d":38,"\"e":[154,90,38,177],"\u3070\u3059\u3079\u3066":38,"\"a":[183,108,90,80],"\"b":[183,108],"\"c":[183,108],"\"n":[135,108,3,182,173,82,9,151,102],"\"o":38,"\"h":90,"\"i":[135,164,182,185,108,114,78,151],"\"k":44,"\"t":[90,38],"\u8907\u6570":[1,90,12,93,186,7,84,100,9,103,77,105,55,108,85,154,17,115,65,46,69,23,121,168,162,124,125,73,171,27,177,80,179,182,132,155,133,36,38,192],"\u5c1a\u4e5f":125,"\u4e0a\u304c\u3063":38,"\u81ea\u8eab":[7,27,90,97,176],"\"}":[143,48,100,9,148,54,58,108,151,13,154,114,115,18,158,44,164,23,122,183,74,171,78,177,179,182,130,190],"\"x":[125,80,151],"\"@":185,"\u691c\u7d22\u4f8b":88,suggest:[27,155,31,43,55],"\u30bf\u30fc\u30df\u30ca\u30eb":9,niku:80,"\"\\":179,"\"]":[44,108,3,151,85,70,185,95,97,32,158,148,177],"\"_":[3,91,12,95,46,48,100,9,148,109,127,54,143,122,114,108,75,151,85,13,154,58,115,59,18,158,44,164,70,125,183,74,171,96,78,177,179,182,130,185,135,190,102],"\"[":[7,179],"\"%":179,"\"'":[108,23,182,85,70,144,125,7,179,80,151],"\"\"":[183,45,112,151,179],"\"#":27,"\",":[90,3,91,12,95,97,46,47,48,100,9,103,148,105,127,143,122,114,108,75,151,85,13,154,58,115,59,18,158,44,164,70,162,168,125,126,74,171,173,96,78,177,179,182,130,183,185,32,135,109,190,102],"\"-":[27,75],"\".":[122,151,130,12,128],"\"/":[95,97,74,59,105,38],"\"(":[91,125],"\")":[44,75,151,111,123,115,125,7,34,74,100,103,96,80],"\"*":7,"\"<":[162,125,47],"\">":[162,4,47,32],"\"?":[108,4],"\":":[90,3,4,12,97,68,47,48,46,145,100,9,103,148,109,127,54,91,114,108,75,151,85,13,154,58,115,59,18,158,143,44,164,49,23,122,162,167,168,82,126,74,171,173,96,78,177,179,182,130,183,185,133,190,38,102],"\";":[168,9,54],"\u78ef\u90e8":125,charlie:185,"\u9054\u6210":23,"/run":[97,152],"\u3084\u3059\u304f":[155,80],"\u3084\u3059\u3044":[1,108,32,47,159],"(term":[122,12],"\u5bfe\u8c61table":[63,113,79,121],"_tags":[44,185],"_ctx":[17,121,43,55,30,7,19,77,27,106,80],"\u4ecb\u6587":185,"_buffer":[86,2,173,16],".scr":168,"*bottom":110,"\u30ce\u30fc\u30c9":[7,63],"_selector":[55,31,80,43,77],"5f":168,"5c":82,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":117,ceekz:125,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[182,151],descending:77,advanced:42,"\u542b\u3080\u5168\u3066":59,"\u5c0f\u6587\u5b57":[63,90,3,190,65],"-client":128,specific:158,poedit:119,"\u6b63\u3057\u304f":[182,125,7,77,177,80],"\"engine":[18,177,48],"\u6b63\u3057\u3044":[170,18,176,182],"\u7d20\u89e3":[132,189,38,151],"\u307e\u308f\u308a":88,"\u672a\u5b9a\u7fa9":80,successfully:40,"_str":[185,84],jennifer:143,escape:84,"\u73fe\u4ee3":132,tutorial:40,".zip":119,"_right":[27,110,34],".github":119,allocate:[55,39],ahost:179,core:168,deleted:79,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":7,night:[114,91],"\u3001\u300c":[44,1,130,70,144,97,108,74,38,177],"\u6d88\u3048":94,limitation:139,"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[7,3,80],ppa:[55,152,137],"\u3002ascii":[182,151],"\u3092\u3054\u89a7\u304f":132,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":105,two:[149,9,64],"[@":[7,27,125,80],git:[104,152,119],"[{":[9,54],"[a":131,gib:[66,139],"[test":7,"\u3084\u307e\u306d":[125,80],"[n":[125,80],head:[180,173,80],removep:79,")senna":176,"\u6253\u3061":23,removed:10,"\u6253\u3064":152,"\u57f7\u7b46":[92,78,99],"\u9032\u6570":[126,151],versions:141,"[:":102,"[#":[7,27,112,80],"[\"":[44,108,151,85,13,185,95,32,70,154,148,177,126],autoconf:27,"\u5185\u8a33":70,"[,":169,"\u6dfb\u4ed8":7,"\u8abf\u3079\u308b":[34,169,125,166],decrypt:152,"(match":115,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[27,77,125,80,55],check:[55,1,43,31,27,79,178],ongaeshi:[7,77,155,125],"\u305f\u304b\u3063":[18,91],no:[1,42,94,108,125,154,110,173,158,139,77,179],"/mxcl":152,when:[83,128,131,97,20,121],ne:90,ng:90,ny:185,setting:139,"\u5217\u6319":3,"\u6ce8\u8a18":125,tid:120,saerch:[154,18],nt:38,"\u4e09\u756a\u76ee":151,node:152,"\u5024\u3054\u3068":130,"=number":137,"_touch":[155,83],"_unlock":[40,79],sql:[23,130,12],longer:42,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":126,"\u672c\u756a":152,"_memory":[7,2],backward:127,jsonp:[131,27,77],llt:90,"\u30d0\u30c3\u30d5\u30a1id":126,"\u30d2\u30c3\u30c8":[108,69,143,70,185,144,125,114,177],"\u3084\u308b":88,"_same":125,"\u4e00\u822c":[108,3,182,132,17,159,79],environment:81,"}attr":125,"*tid":120,advantage:32,"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[182,151],"=get":46,enqueue:134,"6elz":80,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":37,level:[40,6,97,8,9,149,64,173],"\u51fa\u6765\u308b":185,brother:182,"/db2":54,"/db1":54,slower:[122,12],"\u6d88\u305b":9,obsolete:141,"\u6f14\u7b97\u5b50":[7,155,108,69,125],"\u79d2\u8868":[13,70,74,151],"\u6c42\u3081\u308b":[132,75,130,169],"\u66f8\u304d\u5f8c":144,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":152,"_truncate":[27,113,121,80],"\u30d5\u30a1\u30bb\u30c3\u30c8":108,"/load":[68,9,54],"\u56f0\u3063":124,".builtin":83,reply:78,"/test":38,"3\u3064":[108,23,130,13,162,32,125,135,59,159,3,78,178],"\u751f\u3058":[146,6,72,8,156,191,107],baseball:[44,78],"\u9ad8\u6a5f":[132,69],"=groonga":[131,9],"\u6c17\u8efd":[124,80],"\u6b63\u78ba":[13,82,3],"\u63d0\u4f9b":[132,188],"_success":[40,108,2,83,5,16,17,19,149,84,121],"-pgp":152,"\uff08ruby":81,"\u64ec\u4f3c":[55,71,121,43],"\u9006\u306b":[44,185],"\u30ea\u30f3\u30af":[108,182,152,13,125,7,104,80,151],"_delete":[63,27,113,79,93],"\u30b3\u30cd\u30af\u30b7\u30e7\u30f3":77,"\u307f\u307e\u3057\u3087":[44,108,23,91,130,13,185,74,3,78,151],"\uff08messagepack":189,vivid:[77,14],"-src":[153,152],sports:44,"\"name":115,"\u76f8\u5fdc":113,memory:[40,55,179,39,139],msg:134,outputs:[149,64],"_concurrency":180,cases:[122,12,128],"\u30bb\u30c3\u30c8":[46,69,144,113,63,79,107],"\u3044\u308f\u3086\u308b":44,"*dest":113,"_asc":113,".txt":[38,152],"\u30b9\u30b3\u30a2\u30e9\u30fc":[55,43,77],"\u672a\u4f7f":80,"[tag":108,memry:139,"\uff11\u3064":[95,134],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[180,141,125,100,9,77,80],"/setup":81,"_sis":[143,144,182,113,65,151],"\u30a2\u30af\u30bb\u30b5\u30fc":77,"-docutils":152,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[55,137],":clear":152,shibuya:155,"\u76f8\u5f53":[135,74,3,130],"\u5f15\u304d\u8d77\u3059":[7,125],clone:[104,88,152],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":81,crashed:136,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u30e2\u30fc\u30b8\u30e5\u30fc\u30eb":38,"\u7f72\u540d":88,quetzal:7,succeeded:[73,136,59,171,127,189],ueno:[7,155,147],"\u8efd\u3044":59,"\u30b0\u30eb\u30fc\u30d7":[108,132,125,7,113,60,80],"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u3002tag":44,"_res":168,"/srpm":152,"_descriptor":[2,173],"\u542b\u307e\u308c\u308b":[108,69,3,152,13,132,162,97,47,70],"\u56f2\u307e":[32,47],"\u56f2\u307f":[162,97,32,47],"[[":[143,12,97,68,47,46,103,145,105,127,108,75,151,85,13,114,115,59,44,164,23,70,162,171,78,177,182,131,185,32],"\u30d9\u30fc\u30b9\u30d1\u30b9":9,"_pass":9,"\u56de\u7e70\u308a":168,cutter:88,"\u89e6\u308c":3,"\u6ce8\u76ee":[108,130],"\u3059\u306a\u308f\u3061":13,term:[91,12,126,122,73,184],name:[40,83,62,95,123,72,16,73,126,113,79,84,53,121],"\u500b\u3005":[70,142,11,23,69],"\u65e5\u3005":124,"\u30b7\u30a7\u30a2":26,"\u534a\u7121":[27,65],"\u5bfe\u8c61column":121,"\u53d6\u308b":[151,173],"\u30ad\u30e3\u30c3\u30b7\u30e5\u30d2\u30c3\u30c8":125,"\u30cd\u30b9\u30c8":[7,77,78,125,80],"\u30d1\u30fc\u30b9":[27,123,84,159],exclamation:77,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":72,"\u6642\u4ee3":132,"\u3042\u3044\u307e\u3044":65,"\u60aa\u610f":151,libstemmer:80,"\u7d14\u7c8b":38,"-default":137,"=unique":103,candidate2:154,"\u56f2\u3093":151,"\u914d\u7f6e":[3,152],"\u56f2\u3080":[3,32,125],"\u3002key":[113,144,3],"\u30b3\u30fc\u30c9":[77,90,125,80,119],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30b7\u30a7\u30eb":182,"\u4e92\u63db":[165,129,11,151,152,14,133,153,54,36,77,80],turn:9,"\"element":85,"\u30db\u30b9\u30c8":[180,152,97,168,7,173,27],yum:[7,165,129,152,20],"\u5b8c\u7d50":124,sentense:77,sho:125,"\u304a\u9858\u3044":[168,124],origin:119,fetched:48,redhat:[27,189],"-version":[155,152],"\u3002geopoint":185,"\u30b7\u30f3\u30d7\u30eb":[192,130,159],"_function":[40,2,12,173,103,77],array:126,"\u7d5e\u8fbc":[55,157],response:131,returns:[40,110,121,131,113,148,127],"=fedora":152,"\u3084\u307e\u3060":80,releases:5,kbytes:168,released:[42,152],"\u30a8\u30f3\u30c8\u30ea":[108,151,182,17,183,121],specify:[12,131,97,187,136,9,158,189,64,119],"-httpd":[52,17,129,165,43,55,14,7,153,103,77,27,80],"(tab":176,require:12,"(tag":100,"< t1":69,"\u3080\u308b\u3093":[182,151],posix:[77,151],"\u300cnippon":177,pre:42,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":66,"_local":168,ann:152,"_groonga":[135,97],enourmous:48,any:[97,12],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":88,takuto:155,"_permitted":[2,173],"\u30d5\u30e9\u30b0":[1,90,3,143,6,95,99,7,8,146,107,108,151,85,13,191,16,156,63,65,72,73,126,173,27,112,80,179,182,133,190],animation:44,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[25,108,189,97],multiple:[131,128],"_suggest":147,"_down":[2,173],cleared:136,"\u81a8\u5927":132,"\uff09:":[165,68,144,24,14,129,153,145,89],"\u4e2d\u65ad":[7,27,93,80],geoindex:44,later:97,"\u5c06\u6765":[68,75,23,85,133,125,167,49,173,145,54],"\u4e00\u81f4":[55,1,69,152,154,108,147,16,7,113,63,112,80,65],"\u7551\u30b1":[77,80],"\u547c\u3076":[7,178,5,159],"\u5ea6y":45,sitecountry:[102,130],"\u540c\u3058\u91cd\u307f":115,"\u88dc\u5b8c":[22,55,43,154,155,125,50,10,175],"\u30d1\u30c3\u30b1\u30fc\u30b8":88,"\u5024\u3088\u308a":[108,69],"\u7530\u8fba":125,"_json":106,"\u985e\u7fa9":108,explicitly:20,"[2":97,"\u5f53\u8a72":[11,79],"(tags":148,define:[55,31,43],ssh:152,"\"null":7,"_port":168,":')":73,tokenfilterstopword:[77,46,80],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":144,mapped:139,ignored:[7,83],"\u30b9\u30b3\u30a2\u30fc":85,"\\\\\\":179,replies:78,"#'":97,"_suffix":[27,77],connections:97,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[185,1,65],"\\\\z":179,"<gqtp":168,managing:83,"\u77ed\u7e2e":77,"\"#\"":168,"(..":125,"_tokenize":[55,31,43,77],"\\\\a":38,"#{":149,cities:75,come:185,"[(":179,"\u9577\u6642\u9593":[103,61],"\u4e0d\u5909":60,quiet:173,"\u30ec\u30b3\u30fc\u30c9id":[55,120,43,7,113,79],"\"#{":151,"\u4e00\u822c\u7684":[132,38],color:190,whombx:125,"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":7,"\u91cd\u307f\u3064\u304d":80,"\u6a19\u8a18":80,"\u76f8\u5bfe":[27,108,152],"_clone":152,raring:[125,80],"#proxy":9,"*db":[79,83,16],"\u6709\u9650":108,"(age":96,"\u4ee3\u308f\u308a":[190,173,182,162,97,32,47,101,9,179,189,38,65],engine:[90,12,122,154,162,32,47,48,170,18,177],"/vdw":[74,3,130],"_tokenizer":[7,108,2],"_value":[68,121,112,155,108,16,145,60,125,77,63,27,79,84,80],"_tokenized":[90,133],"case":[40,12,122,10,139,64],"\u25cb\u25cb":124,"\u30ed\u30ae\u30f3\u30b0":16,shops:144,"\u975e\u63a8\u5968":7,"\u53d7\u3051":[75,3,91,173,125,54,7,9,103,96,134,80,151],"\u305f\u3068\u3048":70,saerc:[154,18],"\u559c\u3073":[87,119],archive:[55,152,137],html:[88,178,152],"\u5831\u4ee5":90,"\u516c\u5f0f":[27,129,165,115],events:54,"\uff08romaji":177,status:[55,1,43,155,31,125,7,171],downloads:101,"[\u8a9e":126,"\u7d4c\u7531":[73,146,152,6,168,155,72,7,126,8,156,140,158,160,191,105,37,82,80,107],modes:97,"-jemalloc":80,without:[48,9,32],model:97,"[geo":[27,125],"\u30d1\u30bf\u30fc\u30f3":[135,77,179,182,151],"/unit":178,"4kib":77,"\u4f5c\u6210\u6e08":97,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[88,172],unicode:190,"\u3088\u304b\u3063":70,"\u5408\u7406":38,"\u53ef\u5426":3,"\u5c11\u3057\u9055\u3044":108,except:139,blog:[70,183,78,3],"\\'":[97,182],"\\%":101,"\\\"":[109,162,144,32,47,58,183,84,179],"\u9577\u65b9\u5f62":27,hino:125,"\u63a2\u3059":[78,38],"\\(":182,"/base":152,"\\\\":[38,162,84,183,179],")..":152,"\u4f1d\u7d71":132,"\u3068\u304a\u308a":[13,66,74,168,130],"\\u":38,"\\z":[38,179],"\\a":[38,179],"\\n":179,"*mutex":40,"_send":[17,106,16],"-mm":[149,151],"_host":168,"\u985e\u7d39":70,"\"groonga":[108,151,85,32,170,183,158,65],frees:40,automake:155,provides:[97,12],"@uzulla":27,"_unlink":[79,16],mooz:27,"\u4e09\u3064":[75,144],"/eval":145,"\u5f0f\u96c6\u5408":179,"\uff08personal":[55,137],"\u30b9\u30da\u30a4\u30f3":75,tokenbigramsplitsymbolalpha:[167,108,90],oo:[94,90],on:[40,42,83,12,122,162,97,32,47,131,113,90,9,110,79,28,106,184,54,119],om:38,ok:171,of:[40,42,12,97,47,48,7,9,148,149,53,110,154,16,113,20,64,121,122,162,126,28,183,131,32,187,136],");":[69,121,16,17,77,84],"_escalation":[55,155,43,30,16,189],"\u30e6\u30fc\u30b6\u30fc":[88,172],"\u8a2d\u5b9a\u5024":[166,1],os:[55,152,137,20],or:[40,91,12,97,100,103,149,106,108,110,115,113,158,121,122,74,173,127,176,80,182,83,131,136,139,38],tokentrigram:[167,90],"_leading":108,"\u5c11\u306a\u3051\u308c":65,"\u5f0f\u5168":[182,151],"\u884c\u76ee":[135,168,152],"\u8a66\u3059\u4f8b":38,"\u30c1\u30e3\u30f3\u30af":[77,126],libmecab:[153,14,152],"{path":189,"\u8a55\u4fa1":[69,151,182,125,183,145,179],there:[141,182,128,85,97,148,139],stateful:128,"\u53d7\u3051\u53d6\u308a":[69,3,9],strict:80,"\u300ccomments":185,"/modules":[155,9],"\u901a\u308a":[92,90,12,95,47,48,100,148,105,189,122,108,75,151,152,154,14,115,61,106,179,65,23,70,162,183,171,96,78,169,81,182,133,32,109,38],"*escaped":84,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc\u30aa\u30d7\u30b7\u30e7\u30f3":190,"(location":[44,74,75,185],faster:128,datasets:187,":set":80,"\u69cb\u7bc9":88,"\u8a9e\u7528":38,"\u4f5c\u3063":[130,70,113,9,63,27,190,177],"\"\u8a9e":38,"/hostname":[168,97],"\u30de\u30fc\u30b8":[7,119],"\u65b9\u5f62":[75,169],mike:171,"\u30d0\u30a4\u30c8\u30b7\u30fc\u30b1\u30f3\u30b9":125,"\u4f5c\u308a":[78,18,177,80,65],"\u4f5c\u308b":[44,108,91,85,185,134,18,179,159,151,119,80,65],"\u30de\u30fc\u30af":38,"\u4f5c\u3089":23,"\u5149\u7537":125,"\u3066\u3057\u307e\u3044":124,"\uff08proc":93,"_type":[7,55,30,80,43],ftp:[168,152],includes:122,included:122,"\u53d7\u3051\u53d6\u3063":132,"\u3002ctrl\u30ad\u30fc":3,"\u30ea\u30bd\u30fc\u30b9":[17,114,80,5],"\u65b9\u5f0f":[132,78,3],":mm":[149,151],"/usr":[189,97],"\u6c17\u306b":[95,79,23,119],"/select":[9,103,102],directory:[40,131,64,173],"4\u3064":[94,32],"+or":179,"\u30c7\u30fc\u30e2\u30f3":[1,97,125,7,9,51],migrated:[108,182,151],all:[108,110,91,35,182,151,48,7,136,158,149,139,16,121],dist:152,"\u7d1b\u3089\u308f\u3057\u3044":179,executing:[131,16],"\u6761\u4ef6":[88,69],disk:179,"\u306f\u305d\u306e":16,"\u8fd1\u3044\u9806":92,jessie:[55,137],"\u30d3\u30c3\u30c8":[63,182],"\u5b58\u5426":79,"/rab":[74,3,130],init:[7,189,53,80],"\u304a\u5f85\u3061":26,"\u5b9f\u7528":80,".name":[126,183,185],"[logical":77,"[travis":125,"\u95a2\u9023":[132,88,124,152,26],"=message":137,"-word":108,systemctl:141,"***":8,",\"tags":44,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[132,88,152],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[27,152],"\u8a9e\u7248":152,and:[40,42,12,97,46,48,9,148,149,106,28,108,110,151,115,113,19,158,20,64,164,121,122,125,74,78,79,80,83,131,32,187,136,139,84],"\u30d3\u30c3\u30b0\u30a8\u30f3\u30c7\u30a3\u30a2\u30f3":80,longtext:[45,110],list:[152,64,187,20],"_html":[55,43,97,125,7,27,161,80],"\u304a\u3088\u3073":[3,152,13,132,97,7,189,53],"\u4f4e\u6e1b":[141,155],"\u6d69\u4e8c":7,"<protocol":97,"\u89aa\u5207":155,"{key":108,"\"message":[122,179],yappo:[42,125,80],"\u884c\u3048\u308b":[7,44],"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":[55,46,90,43,14,153,80,65],"/news":152,tex:90,"/centos":[129,141,152],"_scalar":[91,12,95,46,47,100,109,127,108,75,151,115,114,70,59,158,44,164,23,121,122,162,73,183,171,96,78,179,182,130,185,32,136,139],cursor:[63,110,120],"(packages":152,sub:[55,161,125,43,152],"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":88,sum:[108,80,12],version:[42,3,4,152,173,168,16,82,116,102,27,9],row:32,memcached:[132,188,55,178,33],tags:[44,108,85,95,100,148,105,65],behaviour:158,"\u88dc\u5b8c\u8a9e":177,"#worker":9,serihiro:7,"\u6163\u308c":130,allows:32,matsuu:155,"\u65b0\u65e7":77,options:[180,77,61],gtihub:27,tokenunigram:167,ocelot:[27,125],"\u5358\u7d14":[69,143,169],"\u300c\u697d\u3057":144,"/atv":[74,3,130],"\u69cb\u6587":[55,43,85,125,147,7,77,84,80],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[82,140],"\u7a4d\u7b97":[108,69],"\u3002ruby":179,"_expire":79,thus:[64,187],"\u305f\u3051\u3069":108,known:12,"\u547c\u3093":[108,130,144,80,5],"\u3002git":152,"\u30d7\u30ed\u30f3\u30d7\u30c8":4,"\u524d\u63d0":88,"_supported":[2,173],"\u89e3\u6790":88,"\u79fb\u884c":[27,11],"_encoding":[55,30,43],"\u306e\u306b\u5bfe\u3057":16,"=table":65,"\u671f\u5316":[7,16],"\u30ea\u30cd\u30fc\u30e0":27,grndb:[52,55,80,43],"\u958b\u767a":[132,88],"\u7406\u7531":132,">\u529b":8,recursive:[104,152],rather:[122,28,12,128],"&..":102,overcommit:139,disable:[131,27,9],"_text":[133,84,178,80],"\u30ea\u30dd\u30b8\u30c8\u30ea":[88,172,152],therubyracer:152,"-max":[131,27,97],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":178,"-munin":[153,129,137,165],"-http":[55,125,33,7,9,80],specifying:[40,12],"\"book":151,":\u79d2":185,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":152,"\u9ad8\u307e\u3063":132,disables:[9,20],developed:164,disabled:149,elfring:7,"\"is":13,"\u30bf\u30a4\u30d7":[108,93,168,77,27,54],"_link":[2,173],"\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf":118,soccer:44,"\u30d6\u30fc\u30ea\u30a2\u30f3":45,"_large":[2,173],"return":[135,149,5,16],"\u52d5\u4f5c":88,"\u6d45\u898b":125,"|info":179,"\u5897\u3048":[145,78,90,179,85],"\u8a71\u984c":26,"-encodiong":151,innodb:132,"_enable":77,"\u8208\u5473":[132,179],"-create":[52,55,83,43,154,125,147],"\u5897\u3084":[77,85],weight:[108,121,12,85,13,7],generation:20,"_release":152,"/en":[9,152,20],"\u56de\u9001\u308b":103,errror:179,"_ruby":77,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30fc":14,"\u6c42\u3081":[132,111],"_new":[7,27,134],"/managers":[9,54],"_chunk":77,"\u3072\u3053\u3055\u3093":[7,80],generate:[40,20],thread:[40,83,134,168,136,113,149,121],"\u9855\u8457":38,"\u306b\u3088\u308b":[55,75,151,152,13,132,45,124,125,7,157,27,112,80],"_hash":[108,75,151,12,85,136,114,115,113,100,148,109,158,96,63,105,110,190,171,65],"\u30ab\u30b9\u30b1\u30fc\u30c9":[125,80],"\u5927\u304d":[85,94,7,126,9,65],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e9\u30a4\u30d6\u30e9\u30ea\u30fc":80,"\u5f62\u72b6":92,"${":[108,151,115,139,119,179],"\u30bb\u30af\u30b7\u30e7\u30f3":[90,142,12,133,95,46,48,101,9,103,145,189,50,165,108,75,152,85,14,58,122,59,18,117,61,179,161,65,163,68,23,121,136,24,186,173,77,127,176,177,80,81,129,182,130,31,135,153,137,139,88,119,89],gpl:42,passes:152,"\u5b58\u5728":[1,3,144,141,7,9,103,108,169,16,113,60,158,63,166,168,125,74,173,96,77,78,79,80,130,132,155,135,34,38],script:[58,80],gpg:152,"\u3050\u3088\u3046":75,"\u60c5\u5831\u540d":105,passed:[83,152],recovered:83,gps:132,"\u8a9e\u691c":108,option:[131,97,20,148,149,189,64],"$(":[165,153,129,14,89],"/synonyms":176,"[bernard":77,"\u6574\u5408":[1,79],"\u6271\u3048\u308b":[166,125,80],"\u898b\u308b":[108,2],"double":[77,151],"\u306e\u304b\u308f\u308a":80,"/groonga":[141,3,95,97,7,101,9,10,104,105,189,165,152,87,14,59,61,119,22,24,125,102,173,27,175,176,81,129,131,155,153,139,190,89],"\u307e\u308a":[77,108],"-get":[7,153,14,152,20],",[\"":70,"7e":168,"\u898b\u3066":[135,108,9],"\u307e\u307e":[11,151,130,13,124,125,152,77],"\u898b\u3064":[7,154,155],well:[189,32],"\u540dn":[105,108],"\u307e\u3060":[68,11,23,151,154,108,32,125,82,173,145,27,80],"\u307e\u3067":[3,143,94,97,114,108,152,58,19,119,66,69,23,17,168,125,96,78,80,179,130,185],"\u307e\u3059":[0,2,3,4,5,6,7,8,9,10,11,12,87,14,15,16,17,18,19,20,22,23,24,25,27,30,31,32,34,36,37,38,40,41,146,67,45,46,47,48,49,50,51,52,53,54,165,189,58,59,60,61,62,63,64,65,66,44,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,153,88,89,90,91,92,93,94,95,97,26,99,100,101,102,103,104,105,56,107,108,109,111,113,116,114,115,13,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,135,136,137,139,140,141,142,143,144,145,151,152,154,156,158,159,160,161,162,163,164,166,167,168,169,170,171,173,96,175,176,177,178,179,180,181,182,183,185,186,188,190,191,192],"\u307e\u305a":[3,91,130,70,185,144,168,101,9,152,151,78,189,119],"\u307e\u305b":[2,3,5,7,90,9,75,13,16,17,18,19,23,63,27,32,38,40,41,45,47,54,58,59,60,61,191,65,68,49,70,73,77,78,79,80,82,84,117,91,92,94,95,97,102,103,105,189,108,85,114,115,113,119,120,121,124,125,130,132,133,135,136,140,141,71,144,145,151,152,154,160,164,166,168,170,171,173,96,176,177,179,190,182,183,167],"_list":[55,1,2,43,155,31,7,27,80],"\u307e\u305f":[0,146,71,4,6,94,45,97,47,8,9,103,105,189,54,107,108,75,151,152,16,113,156,178,61,191,160,179,95,65,121,168,72,82,126,96,27,127,112,80,81,73,182,158,32,135,136,37,140],"\u3058\u304d":32,"\u307e\u3057":[7,9,27,108,75,151,152,65,18,119,44,70,124,125,77,80,179,182,130,185,190,38],centos6:7,"\u7279\u5b9a":132,"[pat":7,"\u9069\u6642":93,"\u30b3\u30e1\u30f3\u30c8\u30ab\u30e9\u30e0":78,"\u5024\u6bce":130,"\u306a\u3051\u308c":[41,2,71,95,97,7,100,9,103,189,58,108,109,151,85,13,113,16,17,59,179,65,23,121,168,73,183,96,79,176,81,182,84],added:[113,42,110],"\u3093\u3057\u304d":159,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30a3\u30eb\u30bf":7,exec:173,customize:[189,9,158],"\u907f\u3051\u308b":108,"\u30e1\u30fc\u30c8\u30eb":[75,169],"\u89e3\u653e":[82,120,5,16,17,136,63,79,80],nothing:[148,106],"\u9577\u3044":77,"\u73fe\u5b9f":130,"\u307e\u307e\u3067":70,"\u3002id":16,"-oriented":32,"\u9577\u3055":[121,13,62,168,7,113,63,79],orangain:125,"\u624b\u52d5":9,"&query":102,".rb":[68,155,80],"\u304a\u3051":108,"_users":185,"\u304a\u304d":[132,152],"\u304a\u304b":189,"\u304a\u3044":[3,121,152,13,132,125,113,60,27,79,178,119],"\u59cb\u70b9":3,"_call":[2,103,69,173],"_format":[2,173],firewood:[7,125],"\u304a\u3070":[27,1,125],concatinated:131,"-ftp":168,"\u300cnihon":177,"\u4f4e\u6a5f":69,"\u904b\u7528":132,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[18,192,177,48],rose:13,"\u629c\u3051\u308b":3,"\u671b\u307e\u3057\u3044":[132,124,152],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":9,longest:113,"\u304a\u3070\u305f":[27,125],relational:97,"\u305d\u308c":[3,91,45,144,48,101,165,108,109,151,152,13,63,95,119,69,120,70,62,82,78,79,182,130,155,65,38],"\u306b\u304a\u3044":[13,11,152],"\u4fdd\u8a3c":[126,11],armhf:80,"\u6570\u5024":[55,1,69,182,85,144,108,73,155,117,145,169,157,151],"(content":[109,32,12],"\u30b3\u30df\u30c3\u30c8":152,"\u76ee\u4ee5\u964d":108,art:185,tobby:115,dump:[55,1,43,155,31,7,77,27,106,80],"]]":[108,131,154,97,58,171,156,168],"][":[182,125,7,77,27,112,80,179],"\u305d\u3046":[151,124,100,103,96,81],are:[40,108,110,12,85,122,128,97,32,187,48,136,131,19,125,149,139,28,84,64,119],jemalloc:80,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[168,152,119],"_mutex":40,"]}":[13,126,183],"\u30b9\u30b3\u30a2":[108,69,12,85,70,154,7,131,74,60,77],"]x":185,"\u5897\u3048\u308b":[167,49],libraries:[12,128],"\u547c\u3076\u524d":5,"/non":125,"\u305d\u306e":[55,69,152,132,124,137,119],"\u3067\u3088\u308a":80,korea:130,recently:117,creating:139,"\u5927\u91cf":[44,69,3,94,80,65],"\u304a\u3088":19,"\u898b\u3064\u3051\u308b":[108,59,9,190,38,177],"\u304a\u308a":[74,80],solr:151,"\u672a\u521d":7,"\u30c6\u30fc\u30d6\u30eb":[55,69],license:[42,152],"\u8a02\u6b63":176,"]:":179,"]%":179,"]'":[9,54],became:141,context:[84,79,32,9,16],"]\"":[7,185,125,179],"],":[90,3,91,12,95,97,46,47,48,100,102,103,148,105,127,143,122,114,108,75,151,85,13,154,58,115,59,18,167,44,164,49,70,162,168,82,126,74,171,173,96,78,177,179,182,130,183,131,185,133,32,135,109,190,38],"]/":102,"].":[108,80],"])":[67,162,169,19],finds:113,minagawa:125,"\u691c\u7d22id":113,logged:149,improper:173,"\u30b3\u30de\u30f3\u30c9url":54,"_cancel":[55,31,80,43,35],"'alice":182,"\u7d76\u5bfe":[22,175,10],":#{":149,"\u8003\u616e":[70,91],due:32,"\u89e6\u308c\u308b":38,pg:96,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed":9,po:88,kiske:7,"\u3057\u3084\u3059\u304f":7,"\u6574\u5217":[132,3],"(html":109,"\u8a00\u8a9e\u540d":119,"\u7b46\u610f":38,"\u30d8\u30c3\u30c0":[125,80],"\u79d2\u9593":27,"\u5730\u7cfb":75,evaluated:145,"(body":[162,47],"\"sug":170,concurrently:149,"\u5404\u8a9e":126,"\u6027\u5225":132,"_expansion":[27,125],rid:[86,120],"\u30ed\u30fc\u30ab\u30eb":[151,152],"_most":[77,12],"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":88,"\u6210\u679c":88,"*type":121,"/ppa":[14,152],"\u5065\u4f5c":44,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[132,88],"/hoge":97,"_info":[7,55,30,43],abcde:133,edge:134,nanoseconds:149,"\\bin":101,"\"alice":182,"\u6b8b\u5ff5":13,"\u9006\u5f15\u304d":[55,157],"\u3067\u304d\u308b":[132,88,134],tables:16,"\u4e92\u63db\u6027":152,"\u3002keys":113,"\u64a4\u5ec3":[155,107,97,80,10],teruya:77,"\u8aa4\u52d5\u4f5c":77,"\u5024\u7528":27,"\u304f\u3060":[141,2,3,143,94,45,46,26,136,7,90,101,102,103,10,145,109,189,54,165,108,75,151,152,85,13,154,14,70,59,19,25,95,65,22,119,68,49,24,166,167,168,125,73,183,74,171,117,77,127,175,80,179,129,182,130,132,133,115,153,185,36,89,38,9],integer:97,"_finalizer":[53,16],"@wareohji":7,tomita:155,ignore:77,"\u6642\u523b":[135,83,185,168,82,18,181],".title":[13,136],"\u7f6e\u304b":[36,189,176,9],"\u7f6e\u304d":[91,152,155,63,79,179],"\u7f6e\u304f":[77,189],"\u7f6e\u3044":[152,80],"\u5404\u8981":85,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[1,190,151,123,16,189,84,80],"/rroonga":80,retry:173,"\u69cb\u6210":[165,129,69,3,152,14,141,153,80],proc:[40,165,108,93,14,129,153,113,53,118],"-drilldown":[108,130,80],"\u5ea6\u5206":45,"_improper":2,"+ffef":38,"{type":131,handled:9,"\u9577\u751f\u304d":65,"\u5b9f\u73fe":[132,88,172],"\u30bf\u30a4\u30e0\u30a2\u30a6\u30c8":[19,125],"\"service":18,range:[55,43,95,31,59,80],"lzo\u3044":73,"\u672c\u6587":[78,109],")grn":77,"\u5831\u544a":[88,124],"\u524d\u65b9":[55,1,69,154,147,7,63,112,80,65],shimoda:155,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":[97,9,80],question:77,"\u7a2e\u5225":133,fast:[135,108,90,182,12,122,162,32,47,58,100,109,78,151],"/hosts":152,"_links":[2,173],"html\u30bf\u30b0":109,files:[9,152],"-query":[141,3,182,185,149,97,32,47,125,7,115,9,77,27,176,162,80,143],"-host":168,"\u30a2\u30c3\u30c8\u30de\u30fc\u30af":65,aramaki:[27,155],partitioning:23,"_op":[56,84,69],"_or":[2,69,136,59,171,103,127,56],characteristic:122,"\u306b\u3064":7,"_of":[2,173],highlight:[55,161,80,43],"_on":[2,173],called:40,"\u63a5\u982d":[27,151,94],associated:40,horikoshi:27,"\u679c\u305f":3,warning:[6,97,122,8,9,149,179],"\u30d9\u30af\u30bf\u30fc\u30c7\u30fc\u30bf":85,"\u306b\u5bfe\u3059\u308b":[55,69,3,152,44,13,132,155,125,157,103,154,63,27,80],oniguruma:77,"\"\\\\":179,tatsuya:7,grn:88,gro:32,newvalue:121,nice:114,users:[108,35,95,115,59,171,101,9,96,149,127,54],"\u5c5e\u3057":[45,71,130],"\u305f\u3076\u3093":189,generated:[40,187,20],drilldown:[1,156,80],"\u982d\u8f9e":94,"\u7d42\u308f\u3063":5,"\u300d\u3001":[44,80,185],"'grn":123,"\u300d\u3002":159,"\u570f\u5185":185,"\u8868\u3059\u578b":45,"-deafult":27,"\u8aad\u307f\u53d6\u308a":[58,59,97],"-package":[152,137],"\u30b3\u30a2":[189,9,54],"-count":82,"\u958b\u304f\u969b":7,"\u5272\u308a\u5f53\u3066\u308b":[13,94,3,35],issues:80,"\u30b9\u30ad\u30c3\u30d7":[77,125,80],"_pvector":[84,16],"\u8a9e\u6271":144,"_by":[40,185,112,147,113,63,27,79,84,80],"\u30cb\u30e5\u30fc\u30b9":114,stable:11,include:[142,12,87,122,96,23,80],"\u7e70\u308a\u8fd4\u3057\u6570":168,"=gr":131,"\u30de\u30c9\u30ea\u30fc\u30c9":75,"\"saerch":18,"\u30d7\u30e9\u30b0\u30de":108,"\u306a\u3068\u304d":132,"*user":[40,53],"\u3002run":178,"\u3067\u5024":[97,3],ranguba:[17,80,85],"\"complete":170,"-in":[79,152],"-id":[7,97,103],"_dir":[40,27,152,77],"|correct":154,"_use":[2,173,80,16],".po":88,smaller:[149,85],memset:77,".pc":[27,147],"\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b3\u30b9\u30c8":38,"-line":81,"\u3053\u3046\u3059\u308c":124,"\u30de\u30eb\u30c1\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[77,78,95,80,125],"\u3002buf":121,etime:180,"\u30a8\u30f3\u30b8\u30f3":[13,132,108,179,44],"{time":149,"-exact":82,"\u521d\u56de":119,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":92,"\u5341\u5206\u6c17":108,larger:[139,64,48],"\u4e0a\u3052\u308b":70,"/coremodule":9,"_name":[121,147,135,77,79,80],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":97,"\u30c8\u30e9\u30a4":[27,65,182,151,94],">version":4,"\u5206\u6790":132,apple:190,apt:[152,14,7,153,20,81],"*str":[40,84],expect:80,hardy:155,api:[88,69,15,188],"_commit":86,"\u5148\u60c5":185,"\u9001\u4fe1":[82,146,158,6,168,72,125,73,126,8,156,103,160,191,105,37,140,107],use:[40,119,108,83,136,131,112,97,16,135,126,121,10,127,106,84,107],from:[40,42,83,131,97,16,110,9,158,84],"\u3057\u307e\u3057":125,usa:130,"\u3057\u307e\u305b":[108,70,124,9,189,177],"\u3057\u307e\u3059":[108,182,185,144,129,170,151],"\u3057\u307e\u3046":[152,132,155,124,125,7,61,77,27,38,80],usr:[22,175,97,9,10,189,178,89],"\u3057\u307e\u3044":[13,70,18,168,143],"\u4efb\u610f":[3,152,132,45,168,97],start:[114,131,141,23],sort:[77,113],"(keyword":84,"_names":83,tokenbigramignoreblanksplitsymbolalpha:167,"?msg":152,"[args":97,"/index":[97,152,119],"-html":[7,155],"\u30b7\u30fc\u30b1\u30f3\u30b9":[18,177,48],tar:[165,129,152,24,14,153,189,89],"_install":[137,81],tag:[44,108,152,12,122,100,28],tab:106,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":[77,80],"/rpmforge":129,sis:27,united:171,satoh:27,"\u30c0\u30d6\u30eb":[182,94,7,27,151,65],six:[149,3],"\u30d5\u30a3\u30fc\u30eb\u30c9":95,sid:[27,152,80,126],instead:[108,107,97,141,10],"_create":[40,55,69,83,43,85,62,31,125,147,7,113,27,84,53,80,121],"\"rectangle":[7,75,169],"\u30a2\u30af\u30bb\u30b5":79,"\u601d\u3044\u51fa\u3057":108,"_configure":125,"\u30a2\u30af\u30bb\u30b9":[180,108,155,152,13,113,97,19,125,7,59,102,36,27,119,80,9],"\u3042\u308b\u3044":[165,11,121,132,173,182,169,34,113,100,9,69,151,56,80,65],"\u30d1\u30c3\u30b1\u30fc\u30b8\u30f3\u30b0\u30dd\u30ea\u30b7\u30fc":125,light:128,"$home":152,interrupted:173,"-msgpack":54,"[github":80,freebsd:[55,43,77],"\u4eac\u90fd":[70,144,38],"#groonga":[185,176],"\u300cbill":144,"/stem":164,"\u5bfe\u8a71":[3,173],"%'":80,"\u7279\u5225":[90,182,2,19,189,84,177,179],"\u30c0\u30f3\u30d7":[7,77,155,125],"%\"":179,interpreter:152,"\u9577\u3059\u304e\u308b":125,"/apt":[153,152],"/api":54,restart:141,bye:46,"\u3057\u3046\u308b":80,"\u30b9\u30ad\u30fc\u30de":[12,47,100,148,108,75,151,114,115,158,23,122,162,183,109,96,78,179,182,32,171,139,84],"\u53c2\u52a0":[88,26],successor:151,articles:78,"_free":40,edit:[55,1,161,152,43],".net":[44,3,152,130,13,26,74,102],"%\\":101,nfs:189,"\u6df7\u305c":[13,154],".overcommit":7,"_zone":9,",\"link":13,"\u5c3a\u5ea6":132,related:139,"\u89e3\u6c7a":[166,124,7,126,27,38],remove:[79,133],out:168,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":185,supports:[40,42,64],dictionary:[190,38],"\u30ec\u30a4\u30e4":69,york:[185,75],"8r":[7,189,97],lts:[14,81],"\u4e00\u90e8":[3,152,72,7,170,77,38],"\u8ca0\u62c5":124,lte:90,auth:[9,54],"\u304a\u3059\u3059\u3081\u3057":[141,182,152,151],"\u8aac\u660e":[0,55,129,69,152,43,165,24,119,14,125,7,153,101,137,163,189,88,89,80,81],"\u30ea\u30d3\u30eb\u30c9":77,"1\u305a":[11,60],"\"tags":85,"\u53d6\u308a\u8fbc\u307e":152,"\u53d6\u308a\u8fbc\u307f":27,"_symbolic":[2,173],"\u8d77\u70b9":108,utc:151,"\u78ba\u8a8d":[88,124],"\u6b20\u70b9":132,"_qlog":7,unknown:173,"\u304a\u304b\u3057":155,makefile:152,"\u5207\u308a":[160,27,125,80,152],priority:108,their:[139,12],"1\u3064":[66,90,71,94,95,47,100,9,103,10,145,127,54,108,151,85,154,115,65,22,44,68,168,124,125,170,173,27,78,80,179,182,183,84,32,136,185,38,117],"\u30b3\u30de\u30f3\u30c9\u30ea\u30b9\u30c8":97,developer:185,"\u3082\u3057\u304b\u3057":38,"\u7279\u5316":[151,119],shell:97,"_custom":12,"\u30d5\u30a9\u30eb\u30c0\u30fc":101,"-jumandic":165,"\u64a4\u53bb":27,"\u9ad8\u3044\u9806":3,"\u89e3\u6d88":[1,79,85,125,77,37],"_unsupported":2,"\u51fa\u73fe":[121,132,95,99,154,77],".grn":[9,158],"\u9001\u308a\u65b9":88,"\u884c\u6307\u5411":132,"\u30ab\u30bf\u30ab\u30ca":[63,154,190,38,177],"_ql":80,"\u76ee\u304f\u3089\u3044":65,"_expanders":[22,175,176,10],"=complete":131,"\u6f22\u5b57":38,which:[40,131,148,97,64],inverted:32,"#inspect":77,"\u901f\u3084\u304b":11,".travis":81,"\u7d44\u8fbc\u578b":[55,43],"class":[162,109,32,47],"_build":178,"\u73fe\u5728":[99,92,181,3,83,152,132,168,16,17,180,59,117,185,191,120,79,53,65],"_delimited":42,"/docs":9,"_is":[2,135,173,103,77,27,79],gronga:[170,176],"_ip":[102,173],"_io":80,"_in":[55,1,2,43,155,125,135,110,27,161,80],"_ii":[55,30,43,77],"-output":[108,109,162,168,32,47,125,7],"_id":[40,41,3,86,103,27,108,151,152,16,113,60,63,120,121,74,77,79,112,80,35,84],"_delimiter":[90,133],"\u6307\u3057":13,"\u5bfe\u8c61object":[41,83,93,79,53,118,121],"\u5c02\u7528":[173,188,102,152,119],",\n#":[44,108,90,3,182,12,85,13,185,46,115,74,102,38,151],"<limit":97,"\u5bfe\u8c61":[90,3,144,47,100,146,103,71,56,54,107,108,11,152,154,16,58,115,113,156,178,61,63,134,65,44,69,120,121,70,162,72,73,171,27,78,79,112,80,182,180,83,158,119,132,32,185,189,37,84],"\u3044\u308d\u3044\u308d":[55,157],cache:[17,1,43,55,31,7,77,79],"\u30b7\u30a7\u30eb":[77,189,168,182,179],daiki:[7,155,147],"*newvalue":121,he:38,local:97,"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":189,"\u4ed8\u3051\u308b":[164,3,91,134,190,151],"!condition":151,"!xxx":80,"\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb":80,nvars:53,",\n{":[143,12,48,100,9,108,151,85,154,115,18,158,164,23,122,183,78,177,179,182,130,190],subrecord:125,words:[151,12],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":1,"\u3070\u3044\u3051":[41,108,189,71,121,85,176,95,182,113,81,16,7,183,59,9,179,151,79,84,65],"(column":[12,162,32,47,96,80],",\n[":[32,158],",\n]":[70,183,74,143],"\u4e00\u4ef6\u9032\u3081":63,candidate1:154,queries:[168,32],view:131,"&arg":179,"\u304b\u304e\u308a":168,fullwidth:77,module:12,"\uff08\u578b":62,"\u884c\u6570":27,acquires:19,still:103,"\"table":97,dll:[7,27,80],"\u6b66\u8005":77,"\u30ea\u30c8\u30e9\u30a4":19,".askmonty":80,"\u4e43\u6bc5":155,job:168,homebrew:88,"\u3084\u305d\u306e":171,commands:[35,128],april:152,"/local":[189,9,152],"\"double":151,"\u672a\u5bfe":7,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[7,36,155,97],"-text":38,"_var":[40,62,84,53,80],"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[189,101],table:[43,7,27,53,55,11,85,16,113,63,69,120,121,125,73,110,77,79,112,80,83,155,31],"\u671f\u5f85":[13,132,38,179],rpm:[165,129,152,155,125,7,27,80],"\u304a\u3059\u3059\u3081":[100,54],"\u30b5\u30d6\u30bb\u30c3\u30c8":[45,113],"=gro":131,"\u9bae\u5ea6":114,"_refused":[2,173],"\u78ba\u5b9f":18,porting:42,"\u521d\u671f\u5024":180,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":7,"\u5927\u6587\u5b57":[3,80,65],"\u96a3\u308a\u5408\u3063":38,sufficient:40,spammer:[122,12],"-cache":[97,125],hmm:185,"\u77e5\u3089":38,"\u5024\u578b":13,"\u672a\u5b9a":13,"\u4f4f\u6240":7,will:[40,189,128,122,97,139,79],"\u793a\u3059":[2,143,12,47,100,148,105,54,108,75,151,13,58,115,122,162,183,109,96,169,182,32,135,34,171],"\u793a\u3055":105,"\u793a\u3057":[92,2,23,130,12,70,30,133,82,75,100,102,51,3,78,38,152,173],"\u3072\u308d\u3086\u304d":143,"-debug":[155,152],"*src":113,avg:[180,108,80],"\u8fd4\u4fe1":[185,78,124],uptime:[1,3,4,173,82,102,9],"\u5185\u90e8":[82,152,13,86,32,16,17,113,77,79,112,80],"\u578b\u304b":45,"\uff08longest":[27,151],"\u6ce8\u610f":[108,109,3,182,130,85,13,168,125,70,113,9,103,152,143,27,151,54,65],gets:40,"\u691c\u7d22key":113,"\u6587\u8108":183,"\u5168\u6587\u691c":[55,155,157,65],"\u6642\u70b9":[17,11,152,123,16,7,19],"\u3075\u306a\u3068":80,english:[108,26,20],uzulla:27,"\uff01:":189,"@kiske":7,"\u521d\u671f\u5316":[7,77,53,5,16],tcp:97,")=":166,"_device":[2,173],"(windows":168,"\u5236\u7d04":66,"\u898b\u76f4\u3057":80,"(name":40,unsigned:[40,121,86,17,113,62,63,79,84,53,80],"\u627f\u8a8d":80,other:[40,83,97,136,19,64,121],"\u9ad8\u7cbe":132,moritars:78,usage:[148,97],"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[27,189,178,137,119],execute:[131,97,64,48],"\u300c\uff76":190,"'pid":97,"-inverse":[122,12],helpful:12,"\u307e\u305f\u3044":[7,75],earch:90,";rroonga":[162,47],james:143,"_threshold":[155,16,77,25,27,189],"\u307e\u305f\u3050":[7,55,75,157],"\u306a\u304b\u3063":[183,108,11,3,151,115,6,97,156,72,7,70,8,146,61,96,168,77,191,80,107],"_push":69,because:[4,12,128,122,48,131,9,139],sequence:[35,187,48,18,154,149,177],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[164,108,80,99],platforms:40,"export":20,vojtovich:80,yyyymmdd:[142,23],"\u30b3\u30e1\u30f3\u30c8":[168,155,97,125,183,78,176],"_sortby":156,"_exists":[2,173],"\u306e\u307b\u304b":[13,45],"\u96e2\u308c":74,"\u2192id":94,"\u7d44\u5408":115,acronym:128,"enum":83,"\u884c\u672b":179,"\u7acb\u3061\u4e0a\u304c\u3063":168,"*path":[113,83,121],"\u518d\u691c":159,"\u306e\u3044\u305a\u308c\u304b":[34,113,56,169,62],"\u305d\u308c\u305e\u308c":[90,3,4,94,144,97,189,108,151,152,13,115,113,178,65,69,23,70,74,173,78,79,80,130,135,36],"\u5358\u72ec":[168,121],column:[55,1,69,83,43,85,155,31,125,7,113,110,118,27,79,112,53,80,121],universe:14,"\u30fbor":74,".html":[97,9,152,119],"$groonga":152,"\u6570\u5b57":[108,151,70,168,18,179,38,80,65],yuya:77,"_length":[40,173],"\u5b9f\u7a3c":180,transfer:[132,141,173,128],"\u3002mroonga":[132,79],"*key":113,"var":[40,69,95,97,9,61,189],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":81,"\u30d5\u30a3\u30eb\u30bf\u30fc":183,"-pid":[27,97,77],"\u30b9\u30cb\u30da\u30c3\u30c8":[32,125],"_term":42,"\u6700\u5f8c":[90,151,152,13,155,168,16,7,70,9,77,38,179],"\u7834\u68c4":[53,16],squeeze:[125,152],palallel:152,"\u30e1\u30f3\u30d0":113,"\u56fa\u6709":[93,85],whether:[127,79,83,158],record:[75,3,12,85,13,122,113,110,102,28],"\u30ed\u30b0\u30a4\u30f3":152,"\u4e00\u9577":132,"\u6c7a\u5b9a":108,blogs:70,"\u305d\u308c\u3086\u3048":[13,182],"\u7a4d\u7528":108,"8bit":45,"\u7acb\u5834":88,"\"se":177,"@github":152,"\u52a0\u3048":[13,69,143,81],"(null":80,book:151,bool:[164,182,13,45,125,46,34,169,143],"-analyzer":[7,27],er:179,"\u306f\u307e\u305a":152,".gpg":152,"-sortby":125,".location":185,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":155,debian:88,space:[40,179,182,85],emerg:[6,8],"\u5909\u66f4\u70b9":88,"\u306f\u307e\u3060":[59,54]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},objnames:{"0":["std","option","option"],"1":["c","function","C \u306e\u95a2\u6570"],"2":["c","type","C \u306e\u30c7\u30fc\u30bf\u578b"],"3":["c","macro","C \u306e\u30de\u30af\u30ed"],"4":["c","member","C \u306e\u30e1\u30f3\u30d0\u5909\u6570"]},filenames:["contribution/report","news/0.x","reference/command/return_code","tutorial/introduction","reference/output","reference/api/overview","reference/commands/log_level","news/2.x","reference/commands/log_put","reference/executables/groonga-httpd","reference/commands/register","reference/command/command_version","reference/scorer","tutorial/data","install/ubuntu","contribution/documentation","reference/api/grn_ctx","reference/api/grn_cache","reference/suggest/correction","reference/api/global_configurations","contribution/documentation/introduction","spec","reference/commands/plugin_register","reference/commands/logical_count","install/solaris","reference/api/grn_match_escalation","community","news/1.2.x","reference/scoring_note","reference/query_expanders","reference/api","reference/command","reference/functions/snippet_html","server","reference/functions/geo_in_rectangle","reference/command/request_id","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","troubleshooting","reference/api/plugin","reference/api/grn_info","news/senna","reference","tutorial/index","reference/types","reference/commands/table_tokenize","reference/functions/highlight_html","reference/suggest/suggestion","reference/commands/normalizer_list","reference/suggest","server/memcached","reference/executables","reference/api/grn_proc","server/http/comparison","index","reference/api/grn_search","reference/cast","reference/commands/load","reference/commands/column_rename","reference/columns/pseudo","reference/executables/grndb","reference/api/grn_type","reference/api/grn_table_cursor","reference/executables/groonga-suggest-learner","reference/commands/table_create","limitations","reference/functions/rand","reference/commands/ruby_load","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/column","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/functions/geo_distance","reference/commands/range_filter","news","tutorial/match_columns","reference/api/grn_obj","news/4.x","development/travis-ci","reference/commands/status","reference/api/grn_db","reference/api/grn_expr","reference/columns/vector","reference/api/grn_ii","contribution/documentation/c-api","contribution","install/mac_os_x","reference/commands/tokenize","tutorial/query_expansion","reference/operations/geolocation_search","reference/api/grn_hook","reference/tables","reference/commands/column_list","reference/functions/between","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/functions/in_values","install/windows","tutorial/network","reference/commands/request_cancel","contribution/development/repository","reference/commands/table_list","reference/api/grn_content_type","reference/commands/clearlock","reference/commands/select","reference/functions/html_untag","reference/api/grn_geo","reference/functions/edit_distance","news/1.3.x","reference/api/grn_table","reference/indexing","reference/functions/query","reference/api/grn_command_version","reference/commands/cache_limit","reference/api/grn_user_data","contribution/documentation/i18n","reference/api/grn_index_cursor","reference/api/grn_column","reference/scorers/scorer_tf_idf","reference/api/grn_encoding","contribution/development/cooperation","news/3.x","reference/commands/check","reference/commands/truncate","server/gqtp","install/centos","tutorial/drilldown","reference/executables/groonga-suggest-httpd","characteristic","reference/commands/normalize","contribution/development/com","reference/command/output_format","reference/commands/lock_clear","install","reference/columns/index","reference/tuning","reference/commands/shutdown","server/package","reference/commands/logical_range_filter","tutorial/patricia_trie","spec/search","reference/commands/ruby_eval","reference/commands/table_remove","news/1.1.x","reference/functions/vector_size","reference/log","reference/columns/scalar","reference/grn_expr/script_syntax","contribution/development/release","install/debian","reference/commands/suggest","news/1.0.x","reference/commands/define_selector","tutorial","reference/commands/dump","reference/grn_expr","reference/commands/quit","reference/function","reference/functions/highlight_full","development","reference/token_filters","install/fedora","troubleshooting/mmap_cannot_allocate_memory","reference/commands/tokenizer_list","reference/executables/groonga-benchmark","reference/functions/geo_in_circle","reference/suggest/introduction","reference/commands/delete","contribution/development","spec/gqtp","server/http/groonga","reference/commands/plugin_unregister","reference/query_expanders/tsv","reference/suggest/completion","contribution/development/test","reference/regular_expression","reference/executables/grnslap","reference/functions/now","reference/grn_expr/query_syntax","reference/functions/sub_filter","reference/scorers/scorer_tf_at_most","tutorial/micro_blog","reference/operations","reference/executables/groonga-suggest-create-dataset","client","install/others","reference/normalizers","reference/commands/log_reopen","server/http"],titles:["12.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","7.3.4. \u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","7.2. \u51fa\u529b","7.20.1. \u6982\u8981","7.3.18. <tt class=\"docutils literal\"><span class=\"pre\">log_level</span></tt>","2.1.2\u30ea\u30ea\u30fc\u30b9 - 2013-01-29","7.3.19. <tt class=\"docutils literal\"><span class=\"pre\">log_put</span></tt>","7.1.5. groonga-httpd","7.3.29. <tt class=\"docutils literal\"><span class=\"pre\">register</span></tt>","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.11. Scorer","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","2.4. Ubuntu","12.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.20.8. <tt class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></tt>","7.20.4. <tt class=\"docutils literal\"><span class=\"pre\">grn_cache</span></tt>","7.16.3. \u88dc\u6b63","7.20.2. \u5168\u4f53\u8a2d\u5b9a","12.2.1. Introduction","8. \u4ed5\u69d8","7.3.25. <tt class=\"docutils literal\"><span class=\"pre\">plugin_register</span></tt>","7.3.21. <tt class=\"docutils literal\"><span class=\"pre\">logical_count</span></tt>","2.7. Oracle Solaris","7.20.17. <tt class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></tt>","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011-12-29","&lt;no title&gt;","7.10. \u30af\u30a8\u30ea\u30fc\u5c55\u958b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u4e00\u89a7","7.20. API","7.3. \u30b3\u30de\u30f3\u30c9","7.14.13. snippet_html","5. \u30b5\u30fc\u30d0\u30fc","7.14.5. geo_in_rectangle","7.3.3. \u30ea\u30af\u30a8\u30b9\u30c8ID","7.1.6. groonga HTTP\u30b5\u30fc\u30d0\u30fc","7.3.13. <tt class=\"docutils literal\"><span class=\"pre\">defrag</span></tt>","7.8. \u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","7.20.3. Plugin","7.20.16. <tt class=\"docutils literal\"><span class=\"pre\">grn_info</span></tt>","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","7.4. \u30c7\u30fc\u30bf\u578b","7.3.40. <tt class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></tt>","7.14.7. highlight_html","7.16.4. \u63d0\u6848","7.3.24. <tt class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></tt>","7.16. \u30b5\u30b8\u30a7\u30b9\u30c8","5.4. Memcached\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.20.19. <tt class=\"docutils literal\"><span class=\"pre\">grn_proc</span></tt>","5.2.1. \u6bd4\u8f03","Groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.20.20. <tt class=\"docutils literal\"><span class=\"pre\">grn_search</span></tt>","Cast","7.3.16. <tt class=\"docutils literal\"><span class=\"pre\">load</span></tt>","7.3.11. <tt class=\"docutils literal\"><span class=\"pre\">column_rename</span></tt>","7.6.3. \u64ec\u4f3c\u30ab\u30e9\u30e0","7.1.1. <tt class=\"docutils literal\"><span class=\"pre\">grndb</span></tt>","7.20.23. <tt class=\"docutils literal\"><span class=\"pre\">grn_type</span></tt>","7.20.22. <tt class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></tt>","7.1.9. groonga-suggest-learner","7.3.37. <tt class=\"docutils literal\"><span class=\"pre\">table_create</span></tt>","9. \u5236\u9650\u4e8b\u9805","7.14.12. rand","7.3.32. <tt class=\"docutils literal\"><span class=\"pre\">ruby_load</span></tt>","12.3.4. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","7.6. \u30ab\u30e9\u30e0","7.3.10. <tt class=\"docutils literal\"><span class=\"pre\">column_remove</span></tt>","7.3.8. <tt class=\"docutils literal\"><span class=\"pre\">column_create</span></tt>","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6","7.14.3. geo_distance","7.3.28. <tt class=\"docutils literal\"><span class=\"pre\">range_filter</span></tt>","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.20.18. <tt class=\"docutils literal\"><span class=\"pre\">grn_obj</span></tt>","4.1.1\u30ea\u30ea\u30fc\u30b9 - 2015-01-29","11.1. Travis CI","7.3.35. <tt class=\"docutils literal\"><span class=\"pre\">status</span></tt>","7.20.9. <tt class=\"docutils literal\"><span class=\"pre\">grn_db</span></tt>","7.20.11. grn_expr","7.6.2. \u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0","7.20.14. <tt class=\"docutils literal\"><span class=\"pre\">grn_ii</span></tt>","12.2.3. C API","12. Groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.2. Mac OS X","7.3.41. <tt class=\"docutils literal\"><span class=\"pre\">tokenize</span></tt>","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.15.1. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.20.13. <tt class=\"docutils literal\"><span class=\"pre\">grn_hook</span></tt>","7.5. \u30c6\u30fc\u30d6\u30eb","7.3.9. <tt class=\"docutils literal\"><span class=\"pre\">column_list</span></tt>","7.14.1. between","7.1.3. <tt class=\"docutils literal\"><span class=\"pre\">groonga</span></tt> executable file","5.2.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u7528\u306e\u8a9e\u5f59\u8868\u306e\u4f5c\u6210","7.14.9. in_values","2.1. Windows","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.3.30. <tt class=\"docutils literal\"><span class=\"pre\">request_cancel</span></tt>","12.3.1. \u30ea\u30dd\u30b8\u30c8\u30ea","7.3.38. <tt class=\"docutils literal\"><span class=\"pre\">table_list</span></tt>","7.20.7. <tt class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></tt>","7.3.7. <tt class=\"docutils literal\"><span class=\"pre\">clearlock</span></tt>","7.3.33. <tt class=\"docutils literal\"><span class=\"pre\">select</span></tt>","7.14.8. html_untag","7.20.12. <tt class=\"docutils literal\"><span class=\"pre\">grn_geo</span></tt>","7.14.2. edit_distance","1.3.0\u30ea\u30ea\u30fc\u30b9 - 2012-01-29","7.20.21. <tt class=\"docutils literal\"><span class=\"pre\">grn_table</span></tt>","7.17. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.14.11. query","7.20.6. <tt class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></tt>","7.3.5. <tt class=\"docutils literal\"><span class=\"pre\">cache_limit</span></tt>","7.20.24. <tt class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></tt>","12.2.2. \u56fd\u969b\u5316","7.20.15. <tt class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></tt>","7.20.5. <tt class=\"docutils literal\"><span class=\"pre\">grn_column</span></tt>","7.11.3.2. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></tt>","7.20.10. <tt class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></tt>","12.3.3. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","3.1.2\u30ea\u30ea\u30fc\u30b9 - 2014-01-29","7.3.6. <tt class=\"docutils literal\"><span class=\"pre\">check</span></tt>","7.3.43. <tt class=\"docutils literal\"><span class=\"pre\">truncate</span></tt>","5.3. GQTP","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","7.1.8. groonga-suggest-httpd","1. Groonga\u306e\u7279\u5fb4","7.3.23. <tt class=\"docutils literal\"><span class=\"pre\">normalize</span></tt>","12.3.2. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","7.3.2. \u51fa\u529b\u5f62\u5f0f","7.3.17. <tt class=\"docutils literal\"><span class=\"pre\">lock_clear</span></tt>","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.6.4. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0","7.19. Tuning","7.3.34. <tt class=\"docutils literal\"><span class=\"pre\">shutdown</span></tt>","5.1. \u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8","7.3.22. <tt class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></tt>","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","8.2. \u691c\u7d22","7.3.31. <tt class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></tt>","7.3.39. <tt class=\"docutils literal\"><span class=\"pre\">table_remove</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","7.14.15. vector_size","7.18. Log","7.6.1. \u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0","7.12.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","12.3.6. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","7.3.36. <tt class=\"docutils literal\"><span class=\"pre\">suggest</span></tt>","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","7.3.12. <tt class=\"docutils literal\"><span class=\"pre\">define_selector</span></tt>","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","7.3.15. <tt class=\"docutils literal\"><span class=\"pre\">dump</span></tt>","7.12. grn_expr","7.3.27. <tt class=\"docutils literal\"><span class=\"pre\">quit</span></tt>","7.14. \u95a2\u6570","7.14.6. highlight_full","11. \u958b\u767a","7.9. \u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc","2.6. Fedora","10.2. mmap Cannot allocate memory\u30a8\u30e9\u30fc\u3092\u56de\u907f\u3059\u308b\u306b\u306f","7.3.42. <tt class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></tt>","7.1.4. groonga-benchmark","7.14.4. geo_in_circle","7.16.1. \u306f\u3058\u3081\u306b","7.3.14. <tt class=\"docutils literal\"><span class=\"pre\">delete</span></tt>","12.3. Groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.1. GQTP","5.2.2. groonga","7.3.26. <tt class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></tt>","7.10.1. QueryExpanderTSV","7.16.2. \u88dc\u5b8c","12.3.7. \u30c6\u30b9\u30c8\u65b9\u6cd5","7.13. \u6b63\u898f\u8868\u73fe","7.1.2. grnslap","7.14.10. now","7.12.1. \u30af\u30a8\u30ea\u30fc\u69cb\u6587","7.14.14. sub_filter","7.11.3.1. <tt class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></tt>","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","7.15. \u64cd\u4f5c\u65b9\u6cd5","7.1.7. groonga-suggest-create-dataset","6. \u30af\u30e9\u30a4\u30a2\u30f3\u30c8","2.8. \u305d\u306e\u4ed6","7.7. \u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc","7.3.20. <tt class=\"docutils literal\"><span class=\"pre\">log_reopen</span></tt>","5.2. HTTP"],objects:{"":{grn_ctx_get_match_escalation_threshold:[25,1,1,"c.grn_ctx_get_match_escalation_threshold"],"--cache-limit":[97,0,1,"cmdoption--cache-limit"],grn_obj_reinit:[79,1,1,"c.grn_obj_reinit"],grn_get_default_match_escalation_threshold:[25,1,1,"c.grn_get_default_match_escalation_threshold"],grn_db_create:[83,1,1,"c.grn_db_create"],grn_plugin_charlen:[40,1,1,"c.grn_plugin_charlen"],grn_obj_get_hook:[93,1,1,"c.grn_obj_get_hook"],grn_obj_expire:[79,1,1,"c.grn_obj_expire"],grn_table_cursor_close:[63,1,1,"c.grn_table_cursor_close"],"-P":[180,0,1,"cmdoption-P"],grn_table_cursor_set_value:[63,1,1,"c.grn_table_cursor_set_value"],grn_expr_syntax_escape:[84,1,1,"c.grn_expr_syntax_escape"],"--log-output-dir":[168,0,1,"cmdoption--log-output-dir"],"-d":[64,0,1,"cmdoption-d"],"-a":[97,0,1,"cmdoption-a"],"-c":[97,0,1,"cmdoption-c"],grn_obj_set_info:[41,1,1,"c.grn_obj_set_info"],"-m":[180,0,1,"cmdoption-m"],"-l":[64,0,1,"cmdoption-l"],"--disable-max-fd-check":[131,0,1,"cmdoption--disable-max-fd-check"],"-i":[168,0,1,"cmdoption-i"],"-h":[97,0,1,"cmdoption-h"],grn_db:[83,2,1,"c.grn_db"],"-t":[131,0,1,"cmdoption-t"],grn_command_version:[116,2,1,"c.grn_command_version"],grn_obj_set_element_info:[41,1,1,"c.grn_obj_set_element_info"],"-p":[131,0,1,"cmdoption-p"],"-s":[64,0,1,"cmdoption-s"],"-r":[64,0,1,"cmdoption-r"],grn_plugin_proc_get_var:[40,1,1,"c.grn_plugin_proc_get_var"],grn_ctx_at:[16,1,1,"c.grn_ctx_at"],"--bind-address":[97,0,1,"cmdoption--bind-address"],GRN_COMMAND_VERSION_STABLE:[116,3,1,"c.GRN_COMMAND_VERSION_STABLE"],"--config-path":[97,0,1,"cmdoption--config-path"],grn_table_size:[113,1,1,"c.grn_table_size"],"--query-log-path":[97,0,1,"cmdoption--query-log-path"],grn_ctx_use:[16,1,1,"c.grn_ctx_use"],grn_obj_defrag:[79,1,1,"c.grn_obj_defrag"],db:[168,0,1,"cmdoption-arg-db"],grn_get_lock_timeout:[19,1,1,"c.grn_get_lock_timeout"],grn_table_cursor_open:[63,1,1,"c.grn_table_cursor_open"],grn_get_default_encoding:[123,1,1,"c.grn_get_default_encoding"],GRN_OBJ_LOCK:[79,3,1,"c.GRN_OBJ_LOCK"],grn_ii_buffer_append:[86,1,1,"c.grn_ii_buffer_append"],grn_obj_column:[79,1,1,"c.grn_obj_column"],grn_geo_estimate_in_rectangle:[110,1,1,"c.grn_geo_estimate_in_rectangle"],grn_table_sort:[113,1,1,"c.grn_table_sort"],GRN_COLUMN_NAME_SCORE:[121,3,1,"c.GRN_COLUMN_NAME_SCORE"],grn_obj_unlink:[79,1,1,"c.grn_obj_unlink"],grn_obj_id:[79,1,1,"c.grn_obj_id"],grn_obj_set_value:[79,1,1,"c.grn_obj_set_value"],grn_plugin_win32_base_dir:[40,1,1,"c.grn_plugin_win32_base_dir"],grn_encoding:[123,2,1,"c.grn_encoding"],grn_proc_create:[53,1,1,"c.grn_proc_create"],GRN_PLUGIN_FREE:[40,3,1,"c.GRN_PLUGIN_FREE"],GRN_COLUMN_NAME_VALUE:[121,3,1,"c.GRN_COLUMN_NAME_VALUE"],"--log-base-path":[64,0,1,"cmdoption--log-base-path"],"--dir":[168,0,1,"cmdoption--dir"],GRN_OBJ_SET_MASK:[79,3,1,"c.GRN_OBJ_SET_MASK"],grn_table_group_result:[113,2,1,"c.grn_table_group_result"],grn_expr_close:[84,1,1,"c.grn_expr_close"],grn_obj_path:[79,1,1,"c.grn_obj_path"],grn_cache_get_max_n_entries:[17,1,1,"c.grn_cache_get_max_n_entries"],grn_obj_db:[83,1,1,"c.grn_obj_db"],grn_geo_cursor_next:[110,1,1,"c.grn_geo_cursor_next"],GRN_OBJ_APPEND:[79,3,1,"c.GRN_OBJ_APPEND"],grn_table_lcp_search:[113,1,1,"c.grn_table_lcp_search"],grn_table_create:[113,1,1,"c.grn_table_create"],grn_ctx_get_all_tables:[16,1,1,"c.grn_ctx_get_all_tables"],"--address":[97,0,1,"cmdoption--address"],"--daemon":[64,0,1,"cmdoption--daemon"],grn_obj_is_builtin:[79,1,1,"c.grn_obj_is_builtin"],grn_table_columns:[113,1,1,"c.grn_table_columns"],grn_ctx_set_output_type:[16,1,1,"c.grn_ctx_set_output_type"],"--pid-path":[97,0,1,"cmdoption--pid-path"],"--encoding":[97,0,1,"cmdoption--encoding"],grn_ctx_set_finalizer:[16,1,1,"c.grn_ctx_set_finalizer"],grn_cache:[17,2,1,"c.grn_cache"],grn_table_delete_by_id:[113,1,1,"c.grn_table_delete_by_id"],grn_content_type:[106,2,1,"c.grn_content_type"],grn_plugin_mutex:[40,2,1,"c.grn_plugin_mutex"],grn_expr_get_keywords:[84,1,1,"c.grn_expr_get_keywords"],grn_ii_buffer:[86,2,1,"c.grn_ii_buffer"],"--host":[168,0,1,"cmdoption--host"],grn_ctx_get_output_type:[16,1,1,"c.grn_ctx_get_output_type"],grn_obj_set_finalizer:[53,1,1,"c.grn_obj_set_finalizer"],grn_cache_current_set:[17,1,1,"c.grn_cache_current_set"],grn_obj_user_data:[118,1,1,"c.grn_obj_user_data"],grn_obj_lock:[79,1,1,"c.grn_obj_lock"],grn_obj_name:[79,1,1,"c.grn_obj_name"],"--log-path":[64,0,1,"cmdoption--log-path"],GRN_COLUMN_NAME_KEY_LEN:[121,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],"-e":[97,0,1,"cmdoption-e"],GRN_OBJ_COMPARE:[79,3,1,"c.GRN_OBJ_COMPARE"],grn_expr_append_const:[84,1,1,"c.grn_expr_append_const"],grn_plugin_mutex_lock:[40,1,1,"c.grn_plugin_mutex_lock"],grn_obj_clear_lock:[79,1,1,"c.grn_obj_clear_lock"],grn_table_cursor_next:[63,1,1,"c.grn_table_cursor_next"],grn_expr_alloc:[84,1,1,"c.grn_expr_alloc"],grn_expr_compile:[84,1,1,"c.grn_expr_compile"],grn_user_data:[118,2,1,"c.grn_user_data"],grn_obj_get_range:[79,1,1,"c.grn_obj_get_range"],grn_table_get:[113,1,1,"c.grn_table_get"],grn_ctx_fin:[16,1,1,"c.grn_ctx_fin"],grn_geo_cursor_open_in_rectangle:[110,1,1,"c.grn_geo_cursor_open_in_rectangle"],"--max-threads":[97,0,1,"cmdoption--max-threads"],grn_ctx_init:[16,1,1,"c.grn_ctx_init"],grn_ii_buffer_close:[86,1,1,"c.grn_ii_buffer_close"],GRN_OBJ_DECR:[79,3,1,"c.GRN_OBJ_DECR"],grn_table_sort_key:[113,2,1,"c.grn_table_sort_key"],grn_obj_rename:[79,1,1,"c.grn_obj_rename"],grn_table_group_flags:[113,2,1,"c.grn_table_group_flags"],grn_obj_check:[79,1,1,"c.grn_obj_check"],grn_table_at:[113,1,1,"c.grn_table_at"],grn_column_name:[121,1,1,"c.grn_column_name"],grn_table_difference:[113,1,1,"c.grn_table_difference"],"--n-lines-per-log-file":[131,0,1,"cmdoption--n-lines-per-log-file"],GRN_PLUGIN_INIT:[40,1,1,"c.GRN_PLUGIN_INIT"],grn_cache_close:[17,1,1,"c.grn_cache_close"],grn_obj_close:[79,1,1,"c.grn_obj_close"],GRN_COLUMN_NAME_ID_LEN:[121,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],grn_table_truncate:[113,1,1,"c.grn_table_truncate"],grn_obj_get_value:[79,1,1,"c.grn_obj_get_value"],grn_cache_open:[17,1,1,"c.grn_cache_open"],"--server-id":[97,0,1,"cmdoption--server-id"],grn_obj_delete_hook:[93,1,1,"c.grn_obj_delete_hook"],"-n":[97,0,1,"cmdoption-n"],"--port":[131,0,1,"cmdoption--port"],grn_ii:[86,2,1,"c.grn_ii"],"--ftp":[168,0,1,"cmdoption--ftp"],grn_obj_is_locked:[79,1,1,"c.grn_obj_is_locked"],grn_expr_exec:[84,1,1,"c.grn_expr_exec"],grn_plugin_proc_alloc:[40,1,1,"c.grn_plugin_proc_alloc"],"--log-level":[64,0,1,"cmdoption--log-level"],grn_table_rename:[113,1,1,"c.grn_table_rename"],grn_fin:[5,1,1,"c.grn_fin"],GRN_COLUMN_NAME_NSUBRECS:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],grn_plugin_mutex_unlock:[40,1,1,"c.grn_plugin_mutex_unlock"],GRN_COMMAND_VERSION_MAX:[116,3,1,"c.GRN_COMMAND_VERSION_MAX"],grn_plugin_expr_var_init:[40,1,1,"c.grn_plugin_expr_var_init"],grn_obj_get_element_info:[41,1,1,"c.grn_obj_get_element_info"],grn_search_optarg:[56,2,1,"c.grn_search_optarg"],grn_expr_append_const_str:[84,1,1,"c.grn_expr_append_const_str"],script:[168,0,1,"cmdoption-arg-script"],GRN_PLUGIN_ERROR:[40,3,1,"c.GRN_PLUGIN_ERROR"],GRN_COMMAND_VERSION_MIN:[116,3,1,"c.GRN_COMMAND_VERSION_MIN"],grn_expr_get_var_by_offset:[84,1,1,"c.grn_expr_get_var_by_offset"],GRN_PLUGIN_MALLOC:[40,3,1,"c.GRN_PLUGIN_MALLOC"],grn_obj_add_hook:[93,1,1,"c.grn_obj_add_hook"],GRN_PLUGIN_LOG:[40,3,1,"c.GRN_PLUGIN_LOG"],grn_index_cursor_open:[120,1,1,"c.grn_index_cursor_open"],grn_proc_func:[53,2,1,"c.grn_proc_func"],grn_db_create_optarg:[83,2,1,"c.grn_db_create_optarg"],grn_column_table:[121,1,1,"c.grn_column_table"],grn_table_add:[113,1,1,"c.grn_table_add"],grn_obj_unlock:[79,1,1,"c.grn_obj_unlock"],grn_cache_set_max_n_entries:[17,1,1,"c.grn_cache_set_max_n_entries"],grn_init:[5,1,1,"c.grn_init"],grn_proc_type:[53,2,1,"c.grn_proc_type"],grn_proc_get_info:[53,1,1,"c.grn_proc_get_info"],GRN_OBJ_INCR:[79,3,1,"c.GRN_OBJ_INCR"],grn_ctx_close:[16,1,1,"c.grn_ctx_close"],grn_ctx:[16,2,1,"c.grn_ctx"],GRN_COLUMN_NAME_KEY:[121,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_SCORE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE_LEN:[121,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],grn_table_cursor_get_key:[63,1,1,"c.grn_table_cursor_get_key"],grn_obj_get_values:[79,1,1,"c.grn_obj_get_values"],grn_column_rename:[121,1,1,"c.grn_column_rename"],GRN_OBJ_UNLOCK:[79,3,1,"c.GRN_OBJ_UNLOCK"],grn_obj_get_info:[41,1,1,"c.grn_obj_get_info"],grn_ctx_db:[16,1,1,"c.grn_ctx_db"],"--protocol":[168,0,1,"cmdoption--protocol"],GRN_PLUGIN_REALLOC:[40,3,1,"c.GRN_PLUGIN_REALLOC"],grn_table_cursor:[63,2,1,"c.grn_table_cursor"],grn_table_cursor_get_value:[63,1,1,"c.grn_table_cursor_get_value"],grn_ctx_get:[16,1,1,"c.grn_ctx_get"],grn_ctx_set_match_escalation_threshold:[25,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_db_open:[83,1,1,"c.grn_db_open"],grn_column_index:[121,1,1,"c.grn_column_index"],"--n-threads":[131,0,1,"cmdoption--n-threads"],"--help":[97,0,1,"cmdoption--help"],"--groonga":[168,0,1,"cmdoption--groonga"],grn_table_setoperation:[113,1,1,"c.grn_table_setoperation"],GRN_COLUMN_NAME_ID:[121,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_OBJ_SET:[79,3,1,"c.GRN_OBJ_SET"],"--document-root":[97,0,1,"cmdoption--document-root"],grn_info_type:[41,2,1,"c.grn_info_type"],grn_column_truncate:[121,1,1,"c.grn_column_truncate"],grn_obj:[79,2,1,"c.grn_obj"],grn_obj_remove:[79,1,1,"c.grn_obj_remove"],grn_plugin_mutex_open:[40,1,1,"c.grn_plugin_mutex_open"],GRN_OBJ_GET:[79,3,1,"c.GRN_OBJ_GET"],grn_expr_append_const_int:[84,1,1,"c.grn_expr_append_const_int"],grn_expr_syntax_escape_query:[84,1,1,"c.grn_expr_syntax_escape_query"],grn_ii_buffer_open:[86,1,1,"c.grn_ii_buffer_open"],grn_geo_select_in_rectangle:[110,1,1,"c.grn_geo_select_in_rectangle"],grn_set_lock_timeout:[19,1,1,"c.grn_set_lock_timeout"],grn_ii_buffer_commit:[86,1,1,"c.grn_ii_buffer_commit"],grn_obj_search:[56,1,1,"c.grn_obj_search"],"--send-endpoint":[64,0,1,"cmdoption--send-endpoint"],grn_table_update_by_id:[113,1,1,"c.grn_table_update_by_id"],grn_hook_entry:[93,2,1,"c.grn_hook_entry"],grn_expr_append_op:[84,1,1,"c.grn_expr_append_op"],grn_geo_point:[110,2,1,"c.grn_geo_point"],grn_table_cursor_table:[63,1,1,"c.grn_table_cursor_table"],grn_index_cursor_next:[120,1,1,"c.grn_index_cursor_next"],grn_table_delete:[113,1,1,"c.grn_table_delete"],dest:[97,0,1,"cmdoption-arg-dest"],grn_ctx_open:[16,1,1,"c.grn_ctx_open"],grn_plugin_isspace:[40,1,1,"c.grn_plugin_isspace"],grn_column_index_update:[121,1,1,"c.grn_column_index_update"],grn_obj_delete_by_id:[79,1,1,"c.grn_obj_delete_by_id"],grn_ctx_get_command_version:[16,1,1,"c.grn_ctx_get_command_version"],"--default-match-escalation-threshold":[97,0,1,"cmdoption--default-match-escalation-threshold"],grn_table_cursor_delete:[63,1,1,"c.grn_table_cursor_delete"],grn_type_create:[62,1,1,"c.grn_type_create"],grn_obj_path_by_id:[79,1,1,"c.grn_obj_path_by_id"],grn_plugin_command_create:[40,1,1,"c.grn_plugin_command_create"],grn_db_recover:[83,1,1,"c.grn_db_recover"],grn_builtin_type:[62,2,1,"c.grn_builtin_type"],grn_table_get_key:[113,1,1,"c.grn_table_get_key"],GRN_OBJ_PREPEND:[79,3,1,"c.GRN_OBJ_PREPEND"],grn_set_default_match_escalation_threshold:[25,1,1,"c.grn_set_default_match_escalation_threshold"],grn_cache_current_get:[17,1,1,"c.grn_cache_current_get"],grn_expr_create:[84,1,1,"c.grn_expr_create"],grn_get_default_command_version:[116,1,1,"c.grn_get_default_command_version"],grn_expr_add_var:[84,1,1,"c.grn_expr_add_var"],grn_encoding_parse:[123,1,1,"c.grn_encoding_parse"],grn_column_create:[121,1,1,"c.grn_column_create"],grn_ctx_set_command_version:[16,1,1,"c.grn_ctx_set_command_version"],grn_table_sort_flags:[113,2,1,"c.grn_table_sort_flags"],grn_obj_get_nhooks:[93,1,1,"c.grn_obj_get_nhooks"],grn_set_default_encoding:[123,1,1,"c.grn_set_default_encoding"],grn_set_default_command_version:[116,1,1,"c.grn_set_default_command_version"],grn_plugin_proc_get_var_by_offset:[40,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_encoding_to_string:[123,1,1,"c.grn_encoding_to_string"],"--receive-endpoint":[64,0,1,"cmdoption--receive-endpoint"],GRN_COLUMN_NAME_NSUBRECS_LEN:[121,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],grn_table_group:[113,1,1,"c.grn_table_group"],GRN_PLUGIN_FIN:[40,1,1,"c.GRN_PLUGIN_FIN"],command:[97,0,1,"cmdoption-arg-command"],GRN_PLUGIN_REGISTER:[40,1,1,"c.GRN_PLUGIN_REGISTER"],grn_plugin_mutex_close:[40,1,1,"c.grn_plugin_mutex_close"],grn_db_touch:[83,1,1,"c.grn_db_touch"],grn_table_update:[113,1,1,"c.grn_table_update"]},grn_db_create_optarg:{n_builtin_type_names:[83,4,1,"c.grn_db_create_optarg.n_builtin_type_names"],builtin_type_names:[83,4,1,"c.grn_db_create_optarg.builtin_type_names"]}},titleterms:{"_pat":94,"\u53c2\u7167\u578b":85,senna:42,"\u6539\u826f":[1,42,155,125,147,7,77,27,112,80],"\u7b26\u53f7":151,"\u6d41\u308c":119,"-prefix":189,"\u9ad8\u5ea6":108,prefix:69,per:139,"\u6761\u4ef6":[74,109,108,152,182],query:[115,108,173,149],"=number":189,keywordn:162,jessie:153,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":102,"_filters":[90,65],"\u30d3\u30c3\u30c8":151,"\u7279\u5fb4":[132,94],ruby:[145,68],"-release":152,"\u901a\u4fe1":134,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[131,97,4],to:[131,35,128],"_column":121,"\u524a\u9664":171,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":178,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[168,39],"-lz4":189,file:97,string:[46,90,133],groonga:[55,141,42,152,187,131,132,134,97,98,69,172,9,174,36,88,64,168,119],"\u95a2\u9023":[78,108,9,15,64],"=message":189,"\u304a\u6c17":185,facebook:26,"\u30b5\u30f3\u30d7\u30eb":[180,168],"_database":9,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[176,178,137,20],"\u52d5\u4f5c":[178,18,177,152,48],"\u30b9\u30af\u30ea\u30d7\u30c8":[151,152],"_or":96,"\u3068\u3057\u3066":45,"\u3065\u3051":11,gnu:153,"-escalation":189,vector:148,min:[142,23,96],"\u7c21\u5358":108,"\u30aa\u30d7\u30b7\u30e7\u30f3":[180,168,187],".po":119,"\u8ad6\u7406\u548c":182,"\u4ed8\u4e0e":78,"\u771f\u507d\u5024":[13,151],"-benchmark":168,"\u30c8\u30fc\u30af\u30f3\u30d5\u30a3\u30eb\u30bf\u30fc":164,"\u6f14\u7b97\u5b50":151,"_cursor":[63,120],"_remove":[146,72],"\u7701\u7565":[46,75,142,131,133,115,90,158,23],sub:183,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":152,"\u53c2\u8003":[2,6,94,95,68,47,46,90,103,10,145,107,108,154,191,58,115,156,159,167,65,22,164,49,122,162,183,171,117,76,175,176,35,133,32,187,135,8,190],"\u30ea\u30c6\u30e9\u30eb":151,"\u6210\u529f":135,"new":59,tips:152,"\u683c\u7d0d":45,memcached:51,body:135,xml:135,"\u6587\u6cd5":74,"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":182,"\u30c6\u30b9\u30c8":178,"\u30bf\u30b0":44,"\u9069\u7528":85,"\u3042\u308a":[182,151],ubuntu:[14,152],"\u6e96\u5099":[91,152],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":54,"\u306b\u95a2\u3059\u308b":45,"\u95a2\u4fc2\u5f0f":69,"\u4e26\u5217":152,"_key":[94,142,23],"\u63d0\u4f9b":124,"\u4e3b\u30ad\u30fc":[45,143],blogroonga:152,"_version":[116,11],"_name":[136,59,162,127],"_output":108,"\u5165\u6f14":151,"_info":41,changes:42,options:[131,97,64],"\u7ffb\u8a33":[152,119],"\u5909\u66f4":[70,155,54],"\u30af\u30a8\u30ea":[132,69,91],"\u30de\u30c3\u30c1":151,tokenunigram:38,"\u30af\u30a8\u30ea\u30fc\u30ad\u30e3\u30c3\u30b7\u30e5":9,"_schema":158,logical:[142,23],"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[88,15],"\u6587\u5b57\u5217":[13,151],api:[87,30],"_table":[63,142,113,69,23],select:108,"\u6982\u8981":[2,12,6,90,9,10,11,5,191,16,17,19,86,22,23,25,32,8,35,37,38,40,41,146,164,47,53,106,58,59,61,63,64,65,68,49,72,73,75,76,79,82,83,93,94,95,97,100,103,105,56,107,108,109,110,85,116,115,113,118,120,121,122,162,126,127,131,132,133,135,136,139,140,142,145,148,150,154,156,158,160,123,46,62,167,171,117,96,175,176,179,183,184,138,190],"\u9001\u4fe1":102,use:162,"\u69cb\u6587":[90,142,6,95,97,46,47,145,100,146,103,10,148,105,107,108,75,151,154,191,58,115,59,156,61,167,160,65,22,68,49,23,158,162,72,73,126,171,117,96,76,127,175,179,82,182,183,133,32,136,8,109,37,140],"\u624b\u9806":152,zip:101,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":69,"\u30d5\u30ec\u30fc\u30ba":182,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":132,"\u305f\u3081":[108,69,124],https:54,tokenize:90,scope:183,"_flags":108,"\u3066\u308b":185,"\u60c5\u5831":[92,132,124,74,172,185,178],"\u30d6\u30ed\u30b0":152,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":29,"\u3059\u308b":[0,152,130,85,70,166,177,124,48,131,18,9,78,64,178],normalizer:[90,162,49,133,65],"\u7d4c\u7def\u5ea6":13,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":151,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":152,"\u5f15\u6570":[90,142,6,95,97,46,47,136,145,8,146,109,103,148,105,107,108,75,111,154,58,115,59,156,158,191,160,64,65,67,68,23,168,162,72,73,126,171,117,96,127,169,180,82,183,131,133,34,100,139,37,140],"_register":22,"\u3053\u3068":152,"_base":9,"_command":116,homebrew:[152,89],"_escape":162,"\u4ee5\u4e0b":182,"\u4ee5\u4e0a":[182,151],"package":14,"\u8d77\u52d5":[141,102,173],"\u3060\u3051":[124,85],"\u524d\u63d0":152,install:189,clearlock:107,"\u89e3\u6790":178,"\u7de8\u96c6":119,"\u6bd4\u8f03":[151,54],"_encoding":123,"\u304c\u3063":78,process:[139,149],lock:136,"_idf":122,"in":[100,42],shard:[142,23],"_install":189,"/linux":153,"\u660e\u793a":152,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u30fc":151,grndb:61,"\u958b\u767a":[163,172,124],"\u548c\u4ee3":151,normalize:133,filter:[142,108,23,183],sphere:75,tokendelimit:38,"\u540d\u524d":[180,67,181,111,45,168,187,34,60,36,169],"\u691c\u51fa":178,normalizernfkc:190,snippet:32,how:[35,128],"\u548c\u6f14":151,"\u52d5\u7684":114,"\u8fd1\u508d":151,"\u30b3\u30de\u30f3\u30c9":[3,97,31,102,61,36],"_create":[73,9,65],"-gqtp":141,"\u7d42\u4e86":[141,9,173],tokenregexp:38,"_proc":53,"\u7406\u7531":124,"_plugins":158,clone:119,"\u4e57\u7b97":151,mac:89,offset:[108,142],"\u6642\u9593":[185,151],"\u7f72\u540d":152,data:[9,64],"\u30da\u30fc\u30b8\u30f3\u30b0":108,"\u8a2d\u5b9a":[152,131,19,9,54,81],status:[82,173,187],"-munin":189,"\u4e00\u81f4rk":177,tokenbigram:38,"-http":141,"_indexes":158,register:10,"-files":152,"\u7d22\u5f15":132,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":101,"\u9078\u629e":179,"_values":100,"\u30a4\u30f3\u30dd\u30fc\u30c8":152,"\u8ee2\u7f6e":132,order:142,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":157,"\u30c4\u30a4\u30fc\u30c8":124,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[55,15,152],rand:67,grntest:152,"\u30d1\u30c8\u30ea\u30b7\u30a2":143,"\u623b\u308a\u5024":[90,142,6,95,46,47,145,100,146,103,10,148,105,107,75,154,191,58,115,59,156,158,167,160,65,22,68,49,23,162,72,73,126,171,117,96,76,127,175,82,183,131,133,32,136,8,109,37,140],"\u305f\u3044":152,gqtp:[141,134,173,128],"\u6d6e\u52d5":151,"\u30b9\u30ab\u30e9\u30fc\u30ab\u30e9\u30e0":150,"_api":69,"_match":25,"_rename":59,"\u6587\u66f8":[18,151],"=platform":189,"\u63a5\u7d9a":173,tsv:[135,176],"\u4ee5\u4e0b\u6f14":151,cutter:[178,152],"\u57fa\u672c":[3,151],greater:69,"\u30d7\u30ed\u30c8\u30b3\u30eb":173,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":191,"\u9664\u7b97":151,not:69,"\u8a8d\u8a3c":54,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":102,now:181,"\u5c0f\u306a\u308a":[182,151],"_select":69,"-pack":189,name:[59,65],edit:111,"-encoding":189,"\u66f4\u65b0":[132,177,152,119],kern:139,token:[90,65],mode:[46,90,97,69],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[138,3],".overcommit":139,"\u767b\u9332":0,"\u3053\u3061\u3089":124,"\u4e26\u3079":3,"\u4e00\u6642\u30c6\u30fc\u30d6\u30eb":94,normalizerauto:190,"\u751f\u6210":[119,152,20],"\u74b0\u5883":[178,152],"\u5b9f\u4f8b":69,"\u9032\u3081":124,"_cache":[17,9],http:[36,141,192,4,102],"\u30d8\u30c3\u30c0\u30fc":173,todo:[115,32],"\u9001\u308a\u65b9":[0,119],"-match":189,"\u30ab\u30d0\u30ec\u30c3\u30b8":178,"\u7def\u5ea6":132,"\u6761\u4ef6\u5f0f":182,max:[142,96,23,117,139],"-default":189,"\u90e8\u5206":144,red:152,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[182,151],"_content":106,"\u6307\u5b9a":[75,3,182,152,45,11,78],nofile:139,"\u30e6\u30fc\u30b6\u30fcid":185,proxy:9,"-create":187,"_string":[115,183],"_tf":[122,184],"\u7d50\u5408\u5f0f":182,"\u4ed5\u69d8":21,"\u4e8b\u9805":[66,45,168],launch:131,"\u53e4\u3044":77,"-localstatedir":189,"\u53ef\u80fd":[164,90,23,131,132,133,46,115,75,9,158,142],period:42,"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":132,"_hash":94,"_user":118,assign:35,"\u30d9\u30af\u30bf\u30fc":45,"\u3078\u3068":124,"\u6e1b\u7b97":151,suffix:69,"\u8aac\u660e":[180,67,181,111,45,168,34,60,36,169],"-version":11,number:139,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":185,"\u7d44\u307f\u8fbc\u307f":[97,190,38,12],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":152,open:[139,162],size:173,"\u78ba\u8a8d":[152,119],"\u7d5e\u8fbc":74,dump:158,script:145,introduction:20,"\u30ab\u30b9\u30b1\u30fc\u30c9":171,"\u4fee\u6b63":[1,42,155,125,147,7,77,27,80],"\u5bfe\u7b56":[70,166],"\u6c38\u7d9a":94,"_obj":79,"\u30ea\u30dd\u30b8\u30c8\u30ea":[104,119],"=encoding":189,"\u306f\u3058\u3081":170,tokenizer:[167,90],configure:[189,152,20],"_clear":136,desctipion:187,"\u8ffd\u8de1":0,"=path":189,"\u66f8\u5f0f":[180,67,181,3,111,131,168,34,9,36,169,64],"_unregister":175,"\u30bf\u30b0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":65,target:[148,136,127,100],"_index":120,"_untag":109,"-log":189,"\u30b9\u30bf\u30a4\u30eb":108,"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":43,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[13,85],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":9,"\u30c6\u30fc\u30d6\u30eb":[66,3,13,94,45,115,185,78,64,65],"_expander":[115,108],"\u3044\u304f":124,hashtags:185,"\u30a8\u30e9\u30fc":[135,166],"-zlib":189,"\u56fd\u969b\u5316":119,"\u5834\u5408":[135,78,152],recover:61,"_circle":169,"\u3044\u308b":92,"\u7279\u6b8a":168,"\u4e00\u89a7":[185,2,61,29,190],"_list":[167,105,95,49],callback:69,"\u304b\u3089":[165,129,14,124,153,101,189,89],"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":0,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30c6\u30fc\u30d6\u30eb":65,"-with":189,archive:14,"\u7279\u5b9a":[178,152],"\u307e\u3068\u3081":152,"_distance":[75,111],"\u30b0\u30eb\u30fc\u30d7":[179,182,151],mroonga:132,libmemcached:178,"\u30ce\u30fc\u30de\u30eb\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":85,"\u7d22\u7528":[3,99],tokenbigramsplitsymbol:38,"\u30c4\u30fc\u30eb":[189,9,102],"\u7d44\u8fbc\u578b":45,"_pack":189,"\u30b5\u30b8\u30a7\u30b9\u30c8":50,synopstis:187,"_put":8,windows:[101,152],geoindex:185,request:[131,35,103,119],"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[108,130],"_in":[34,169],"_ii":86,"\u91cf\u6307\u5b9a\u5b50":179,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":152,"\u30b5\u30fc\u30d0":[132,102,173],"\u30ed\u30fc\u30c9":[185,3,85],"_processes":9,tokenfilterstem:164,"\u3084\u308a":124,"\u5fc5\u9808":[108,75,23,131,95,133,46,115,59,90,103,142,127],"\u30ec\u30b3\u30fc\u30c9":[108,3],"-po":152,"\u5270\u4f59":151,"_calc":108,"\u30d1\u30c3\u30c1":119,"\u304a\u304f":124,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":152,"\u8ffd\u52a0":[190,152,119],solaris:24,"\u88dc\u5b8c":[170,177],"\u3044\u308d\u3044\u308d":13,"\u5c0f\u6570":151,"\u30d1\u30c3\u30b1\u30fc\u30b8":152,ellipsoid:75,"\u7528\u79d8":152,"\u4e0d\u7b49\u4fa1":[182,151],grnslap:180,cache:[108,117],"\u72ec\u81ea":151,"\u65e5\u6642":13,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":152,"_equal":69,"\u65b9\u6cd5":[11,152,85,70,166,186,48,114,18,88,15,177,178,119],"\u30ea\u30ea\u30fc\u30b9":[1,152,155,125,147,7,77,27,112,80],rectangle:75,"\u4e00\u6642":94,"\u6295\u7a3f":185,"-server":141,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":54,wheezy:153,get:131,db:69,"\u5b66\u7fd2":[131,170,18,177,48],clang:178,"_html":[162,32,47],"_limit":[108,9,117],cannot:166,"\u7b97\u5b50":151,"_eval":145,"\u91cd\u307f":[78,85],geo:[34,75,169],"\u8aad\u307f":177,"-httpd":[131,141,9,98,64],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[11,54],"\u5171\u8d77":[18,177,48],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":134,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[70,38],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":2,"_search":56,"\u7d50\u679c":[70,168,3,130],summary:128,tokenfilterstopword:164,"\u52a0\u7b97":151,"\u6570\u5024":13,contain:69,"\u64cd\u4f5c":[186,3],"\u3084\u308b":152,"\u69cb\u7bc9":[114,178],"\u5236\u5fa1":151,"\u30b9\u30b3\u30a2\u30fc":108,"\u4ee3\u5165":151,travis:81,arg:69,close:162,news:42,"\u8a00\u8a9e":119,"\u65b0\u898f":152,"\u6a5f\u80fd":92,"\u30ab\u30e9\u30e0":[66,75,3,130,60,71,78],"\u985e\u4f3c":[18,151],"\u7ba1\u7406":[9,102],"\u30e2\u30b8\u30e5\u30fc\u30eb":9,label:108,"_tokenize":46,between:96,"\u305d\u306e":[189,179],"\u7bc4\u56f2":[3,65],"\u4f9d\u5b58":189,javascript:74,"\u8868\u73fe":[69,182,179,151],"_geo":110,"[$":108,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":132,"\u904e\u53bb":124,key:65,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":168,"\u5373\u6642":132,"\u30b7\u30d5\u30c8":151,"_level":[6,9],"\u6392\u4ed6":151,"\u304a\u77e5\u3089":[77,1,155,147],"\u518d\u8d77\u52d5":141,"\u77e5\u308a":152,"-suggest":[131,64,187],"\u306a\u3057":[151,54],equal:69,"-document":20,"\u30b5\u30fc\u30d0\u30fc":[36,141,33],"\u88dc\u6b63":[170,18],"\u30d1\u30e9\u30e1\u30fc\u30bf":[78,11],"\u306a\u3044":[45,124],"\u975e\u308f\u304b\u3061":144,load:58,"\u8a9e\u5f59":[3,99],ci:81,"\u4f5c\u6210":[185,99,3,152,65],point:75,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[149,108,176],"\u306a\u306b":38,"\u4fdd\u5b58":[13,65],"\u62bd\u51fa":[151,48],header:135,"\u7f6e\u63db":115,"\u95a2\u6570":[161,151,178],"\u6574\u6570":151,"_cancel":103,path:68,table:[108,146,94,95,46,59,105,65],tokenbigramignoreblanksplitsymbol:38,quit:160,"\u53c2\u7167":[13,132,173,44],tuning:139,"_no":94,"\u30e1\u30e2\u30ea":139,json:[58,135],"\u91cd\u307f\u4ed8\u304d":85,po:152,"\u7528\u3044":[191,74],define:156,"(geopoint":185,enable:20,"-help":189,"_tokenizer":65,"_value":[100,96],"\u5b9f\u884c":[52,69,152,168,9,178],"\u7a2e\u985e":13,"_log":9,"-message":189,"\u69d8\u3005":178,"\u5dee\u6f14":151,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[0,26],"}]":108,"\u5168\u4f53":19,"\u30a2\u30f3\u30ab\u30fc":179,plugin:[22,40,175],"\u30a8\u30b9\u30b1\u30fc\u30d7":[182,179],value:[100,65],"\u5236\u9650":[66,130,85,94,45,168,176],cast:57,near:69,"\u306e\u306b":70,"\u691c\u7d22":[44,108,144,3,91,92,70,132,85,48,182,74,18,185,143,151,78,177,65],match:[115,78,108],"\u30e9\u30a4\u30d6\u30e9\u30ea":[132,189],"\u540c\u3058":70,"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":26,geopoint:185,"\u30ce\u30fc\u30de\u30e9\u30a4\u30b6\u30fc":190,"\u6307\u91dd":124,"\u5fc5\u8981":[109,20],vm:139,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":152,"_expansion":108,"\u53d6\u5f97":[3,152],"\u30ec\u30b3\u30fc\u30c9id":94,"\u95be\u5024":70,id:[35,103],".maxfileperproc":139,"\u8a9e\u5f59\u8868":65,"\u5ea7\u6a19\u5024":151,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":152,fedora:165,"\u4f7f\u3044\u65b9":[90,142,4,12,6,95,97,46,47,48,145,100,146,9,103,10,148,105,107,114,108,75,85,154,191,58,115,59,18,156,61,167,160,64,65,22,68,49,23,158,122,168,162,72,150,73,126,171,117,96,76,127,175,176,177,179,82,183,131,138,133,32,136,8,109,37,140],"_rectangle":34,suggest:154,make:[189,152],"\u4f8b\u3048":124,"\u6210\u679c":119,"-dataset":187,"\u7a4d\u6f14":151,"_filter":[76,183,142],html:[109,119,20],"-learner":64,messagepack:135,"\u30ad\u30fc\u30ef\u30fc\u30c9":[70,185],".max":139,"_at":184,"\u8a98\u5c0e":124,keys:108,".po\u30d5\u30a1\u30a4\u30eb":119,"null":151,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":9,"\u306b\u3088\u308b":[78,143,130],"\u8ab2\u984c":0,"_columns":[115,78,142,108],"_data":118,"\u64ec\u4f3c":60,"\u5834\u6240":[124,176],"\u5168\u6587\u691c":[3,99],"\u95a2\u4fc2":[44,108,189],database:[131,64],"\u307e\u305f":78,"\u3055\u307e\u3056\u307e\u306a":74,client:97,flags:[46,90,133,173,65],sortby:108,"\u51fa\u529b":[135,108,3,4,119],gzip:54,the:139,lcov:178,"_path":[131,9,64],"\u8868\u793a":3,"-platform":189,protocol:173,"-path":189,less:69,"(v":69,"_tagn":162,"\u5229\u7528":[74,164,9],"_ctx":16,"\u5171\u6709":132,"\u9006\u5f15\u304d":44,"\u8fd4\u5024":[67,108,181,111,34,36,169],"\u547c\u3073\u51fa\u3057":151,"\u5f8c\u65b9":[151,182,143],"\u3067\u304d\u308b":[69,124],tables:158,loading:9,"\u8ad6\u7406":[182,151],mmap:166,"\u30bd\u30fc\u30c8":[74,130],defrag:37,"()":69,"_selector":156,"\u660e\u793a\u7684":75,"\u62e1\u5f35":91,"\u4e00\u81f4":[151,177,144,182,143],hat:152,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":54,"\u7d4c\u5ea6":132,"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":132,"\u8ad6\u7406\u7a4d":182,"\u9759\u7684":[114,178],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":20,nginx:9,"_hook":93,"\u30af\u30e9\u30b9":179,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":178,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":188,"\u30bd\u30fc\u30b9":[165,129,14,153,101,189,89],"\u7a4d\u4ee3":151,linux:139,daemon:97,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":51,"\u5354\u529b":124,"\u691c\u7d22\u4f8b":69,server:97,"-command":11,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[3,54],"_expr":[69,84,159],adjuster:108,"_threshold":108,"\u4f5c\u696d":152,"\u307e\u305f\u3050":78,"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":102,"\u4ed5\u65b9":119,learning:64,centos:129,twitter:[124,152,26],"-plugins":189,"\u30b7\u30b9\u30c6\u30e0":[0,185],"\u5358\u8a9e":151,"_dat":94,"\u4f7f\u7528":139,"\u5727\u7e2e":54,"\u30b3\u30e1\u30f3\u30c8":185,"_sortby":108,"\u5411\u3051":[172,152],"\u5bc6\u9375":152,"\u66f8\u304d":144,freebsd:139,"\u5f62\u5f0f":[58,135],comments:185,exit:187,allocate:166,"\u4f4d\u7f6e":[92,11,132,74,75,185],"\u30af\u30a8\u30ea\u30fc":[9,29,182],"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":141,"\u30d3\u30eb\u30c9":[165,129,152,14,153,101,189,89],"\u5206\u3051":144,run:[128,20],"\u5168\u6587\u691c\u7d22":182,"\u4ed8\u304d":[44,151],"\u3046\u307e\u304f":124,"\u4e0a\u9650":66,"_most":184,executable:97,"\u5b8c\u5168":144,"\u3042\u308b":185,"\uff08personal":14,"\u5927\u306a\u308a":[182,151],tokenbigramsplitsymbolalpha:38,output:[108,142],"\u96c6\u8a08":132,from:64,post:[9,54],"_auto":9,"\u6319\u52d5":144,by:9,"\u5b9f\u73fe":69,"_border":[142,23,96],standalone:97,column:[162,72,47,73,59,96,95],of:139,"_escalation":[25,108],"\u30e6\u30fc\u30b6\u30fc":[185,124],location:75,range:76,"\u30b9\u30c8\u30ec\u30fc\u30b8":132,os:89,tokentrigram:38,ppa:14,scorer:[122,184,74,108,12],"_reopen":191,"\u30ea\u30af\u30a8\u30b9\u30c8id":35,"\u5b9f\u9a13":27,domain:130,"\u30ad\u30e3\u30c3\u30b7\u30e5":[108,9],"\u30d5\u30a1\u30a4\u30eb":[52,69,152,20,176,54,119],"_size":148,"\u5831\u544a":0,"\u524d\u65b9":[151,177,182,143],"\u7279\u6709":9,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":178,log:[6,149,8,191,64],"\u8907\u6570":[78,130,54],"_range":142,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":168,"_prefix":189,approximate:75,"\u30d0\u30fc\u30b8\u30e7\u30f3":[155,1,11,147,152],"\u30ab\u30e9\u30e0\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":78,redmine:124,"\u30ed\u30b0":191,"\u5c55\u958b":29,"\u7b49\u4fa1":[182,151],"\u63d0\u6848":[131,170,48],"cpu\u30b3\u30a2":54,"_db":83,"\u30d5\u30a9\u30ed\u30fc":185,files:[139,64,187],shutdown:140,tokenbigramignoreblanksplitsymbolalphadigit:38,"_full":162,"\u6027\u80fd":[9,54],memory:166,"\u7b97\u8853":151,"\u30b8\u30aa\u30b5\u30fc\u30c1":44,"with":20,"_load":68,"_types":108,pull:119,"\u5165\u308a":185,"default":[11,65],"\u5426\u5b9a":[182,151],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":152,limit:108,"\u66ff\u3048":3,"\u304a\u3055\u3089\u3044":124,highlight:[162,47],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9":[40,41,5,93,86,106,53,56,116,16,17,113,19,25,118,120,121,62,123,63,110,79,83,84],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":38,similar:69,tokenmecab:38,"delete":171,"\u6587\u5b57":179,"\u611f\u8b1d":[1,155,125,147,7,77,27,112,80],tokendelimitnull:38,bigram:185,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":152,command:11,"_records":158,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":185,"\u3067\u304d":45,"\u56de\u907f":166,"\u3054\u3068":78,"\u70b9\u6570":151,check:[126,61],"\u306b\u5bfe\u3059\u308b":78,"\u5bfe\u5fdc":[92,124,54],tokenbigramignoreblank:38,"\u7570\u306a\u308b":70,"_target":108,"\u4ee3\u5165\u5f0f":182,"\u3068\u308a":124,"\u914d\u5217":151,"\u3042\u3052\u308b":70,"\u306e\u307f":[178,152],grn:[41,93,86,106,53,56,116,16,17,113,159,25,118,69,120,121,62,123,63,110,79,83,84],"\u5168\u6587":[70,132,74,3,78],tokenbigramsplitsymbolalphadigit:38,"_type":[75,62,106,173,65],users:185,truncate:127,"\u30c7\u30fc\u30bf":[3,13,185,45,48,177,65],worker:9,"-package":189,"\u30c7\u30d0\u30c3\u30ac":178,update:[152,20],"_query":9,"\u547d\u4ee4":168,"\u65b0\u3057\u3044":119,"_map":139,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":54,"\u4f7f\u3046":[75,9],"\u30b9\u30b3\u30a2\u30e9\u30fc":12,drilldown:108,"-latest":152,"\u3088\u3046":[18,177,48],debian:[153,152],"\u4f5c\u308a\u65b9":85,"_count":[139,23],"\u4f7f\u3044":144,"\u6b63\u898f":[179,182,151],macports:89,"-threshold":189,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[66,44,78,179,114],"_offset":108,queryexpandertsv:176,"_memory":139,"\u5909\u66f4\u70b9":152,oracle:24,"\u539f\u56e0":70,"\u30c7\u30fc\u30e2\u30f3":173,tokenbigramignoreblanksplitsymbolalpha:38}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. サーバー &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5. サーバー &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="index.html" />
30
30
  <link rel="next" title="5.1. サーバーパッケージ" href="server/package.html" />
31
31
  <link rel="prev" title="4.11. クエリ拡張" href="tutorial/query_expansion.html" />
32
32
  </head>
@@ -42,7 +42,7 @@
42
42
 
43
43
  <div class="other-language-links">
44
44
  <ul>
45
- <li><a href="../../en/html/server.html"><img src="_static/us.png" alt="English">English page</a></li>
45
+ <li><a href="../../en/html/server.html">English</a></li>
46
46
  </ul>
47
47
  </div>
48
48
  </div>
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
62
62
  accesskey="P">前へ</a> |</li>
63
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
63
+ <li><a href="index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
64
64
  </ul>
65
65
  </div>
66
66
 
@@ -85,7 +85,11 @@
85
85
  <li class="toctree-l2"><a class="reference internal" href="server/http/groonga-httpd.html">5.2.3. groonga-httpd</a></li>
86
86
  </ul>
87
87
  </li>
88
- <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a></li>
88
+ <li class="toctree-l1"><a class="reference internal" href="server/gqtp.html">5.3. GQTP</a><ul>
89
+ <li class="toctree-l2"><a class="reference internal" href="server/gqtp.html#summary">5.3.1. Summary</a></li>
90
+ <li class="toctree-l2"><a class="reference internal" href="server/gqtp.html#how-to-run">5.3.2. How to run</a></li>
91
+ </ul>
92
+ </li>
89
93
  <li class="toctree-l1"><a class="reference internal" href="server/memcached.html">5.4. Memcachedバイナリプロトコル</a></li>
90
94
  </ul>
91
95
  </div>
@@ -137,7 +141,7 @@
137
141
  <li class="right" >
138
142
  <a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
139
143
  >前へ</a> |</li>
140
- <li><a href="index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
144
+ <li><a href="index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
141
145
  </ul>
142
146
  </div>
143
147
  <div class="footer">
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.3. GQTP &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.4. Memcachedバイナリプロトコル" href="memcached.html" />
32
32
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../en/html/server/gqtp.html"><img src="../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../en/html/server/gqtp.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -73,8 +73,44 @@
73
73
 
74
74
  <div class="section" id="gqtp">
75
75
  <h1>5.3. GQTP<a class="headerlink" href="#gqtp" title="このヘッドラインへのパーマリンク">¶</a></h1>
76
- <p>TODO</p>
77
- <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groongaコマンド</em></a> を参照してください。</p>
76
+ <div class="section" id="summary">
77
+ <h2>5.3.1. Summary<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
78
+ <p>GQTP is the acronym standing for &quot;Groonga Query Transfer Protocol&quot;.</p>
79
+ <p>GQTP is a protocol designed for Groonga. It's a stateful
80
+ protocol. You can send multiple commands in one session.</p>
81
+ <p>GQTP will be faster rather than <a class="reference internal" href="http.html"><em>HTTP</em></a> when you send many
82
+ light commands like <a class="reference internal" href="../reference/commands/status.html"><em>status</em></a>. GQTP will be
83
+ almost same performance as HTTP when you send heavy commands like
84
+ <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a>.</p>
85
+ <p>We recommend that you use HTTP for many cases. Because there are many
86
+ HTTP client libraries.</p>
87
+ <p>If you want to use GQTP, you can use the following libraries:</p>
88
+ <blockquote>
89
+ <div><ul class="simple">
90
+ <li>Ruby: <a class="reference external" href="https://github.com/ranguba/groonga-client">groonga-client</a></li>
91
+ <li>Python: <a class="reference external" href="https://github.com/hhatto/poyonga">poyonga</a></li>
92
+ <li>Go: <a class="reference external" href="https://github.com/hhatto/goroo">goroo</a></li>
93
+ <li>PHP: <a class="reference external" href="https://github.com/Yujiro3/proonga">proonga</a></li>
94
+ <li>C/C++: Groonga (Groonga can be also used as library)</li>
95
+ </ul>
96
+ </div></blockquote>
97
+ <p>It's not a library but you can use
98
+ <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> as a GQTP client.</p>
99
+ </div>
100
+ <div class="section" id="how-to-run">
101
+ <h2>5.3.2. How to run<a class="headerlink" href="#how-to-run" title="このヘッドラインへのパーマリンク">¶</a></h2>
102
+ <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> is a GQTP server implementation.
103
+ You can run a Groonga server by the following command line:</p>
104
+ <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -s [options] DB_PATH
105
+ </pre></div>
106
+ </div>
107
+ <p>You can run a Groonga server as a daemon by the following command
108
+ line:</p>
109
+ <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -d [options] DB_PATH
110
+ </pre></div>
111
+ </div>
112
+ <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> for available <tt class="docutils literal"><span class="pre">options</span></tt>.</p>
113
+ </div>
78
114
  </div>
79
115
 
80
116
 
@@ -83,6 +119,15 @@
83
119
  </div>
84
120
  <div class="sphinxsidebar">
85
121
  <div class="sphinxsidebarwrapper">
122
+ <h3><a href="../index.html">目次</a></h3>
123
+ <ul>
124
+ <li><a class="reference internal" href="#">5.3. GQTP</a><ul>
125
+ <li><a class="reference internal" href="#summary">5.3.1. Summary</a></li>
126
+ <li><a class="reference internal" href="#how-to-run">5.3.2. How to run</a></li>
127
+ </ul>
128
+ </li>
129
+ </ul>
130
+
86
131
  <h4>前のトピックへ</h4>
87
132
  <p class="topless"><a href="http/groonga-httpd.html"
88
133
  title="前の章へ">5.2.3. groonga-httpd</a></p>
@@ -123,7 +168,7 @@
123
168
  <li class="right" >
124
169
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
125
170
  >前へ</a> |</li>
126
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
171
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
127
172
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
128
173
  </ul>
129
174
  </div>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. HTTP &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.2.1. 比較" href="http/comparison.html" />
32
32
  <link rel="prev" title="5.1. サーバーパッケージ" href="package.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../en/html/server/http.html"><img src="../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../en/html/server/http.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="package.html" title="5.1. サーバーパッケージ"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -149,7 +149,7 @@
149
149
  <li class="right" >
150
150
  <a href="package.html" title="5.1. サーバーパッケージ"
151
151
  >前へ</a> |</li>
152
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
152
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
153
153
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
154
154
  </ul>
155
155
  </div>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.1. 比較 &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.2.1. 比較 &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="5.2. HTTP" href="../http.html" />
31
31
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
32
32
  <link rel="prev" title="5.2. HTTP" href="../http.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../../en/html/server/http/comparison.html"><img src="../../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../../en/html/server/http/comparison.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="../http.html" title="5.2. HTTP"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
66
66
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
67
67
  </ul>
@@ -438,7 +438,7 @@ http {
438
438
  <li class="right" >
439
439
  <a href="../http.html" title="5.2. HTTP"
440
440
  >前へ</a> |</li>
441
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
441
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
442
442
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
443
443
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
444
444
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.3. groonga-httpd &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.2.3. groonga-httpd &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="5.2. HTTP" href="../http.html" />
31
31
  <link rel="next" title="5.3. GQTP" href="../gqtp.html" />
32
32
  <link rel="prev" title="5.2.2. groonga" href="groonga.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../../en/html/server/http/groonga-httpd.html"><img src="../../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../../en/html/server/http/groonga-httpd.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="groonga.html" title="5.2.2. groonga"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
66
66
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
67
67
  </ul>
@@ -123,7 +123,7 @@
123
123
  <li class="right" >
124
124
  <a href="groonga.html" title="5.2.2. groonga"
125
125
  >前へ</a> |</li>
126
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
126
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
127
127
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
128
128
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
129
129
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.2. groonga &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.2.2. groonga &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../../index.html" />
30
30
  <link rel="up" title="5.2. HTTP" href="../http.html" />
31
31
  <link rel="next" title="5.2.3. groonga-httpd" href="groonga-httpd.html" />
32
32
  <link rel="prev" title="5.2.1. 比較" href="comparison.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../../en/html/server/http/groonga.html"><img src="../../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../../en/html/server/http/groonga.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="comparison.html" title="5.2.1. 比較"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
66
66
  <li><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
67
67
  </ul>
@@ -123,7 +123,7 @@
123
123
  <li class="right" >
124
124
  <a href="comparison.html" title="5.2.1. 比較"
125
125
  >前へ</a> |</li>
126
- <li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
126
+ <li><a href="../../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
127
127
  <li><a href="../../server.html" >5. サーバー</a> &raquo;</li>
128
128
  <li><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
129
129
  </ul>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.4. Memcachedバイナリプロトコル &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.4. Memcachedバイナリプロトコル &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="6. クライアント" href="../client.html" />
32
32
  <link rel="prev" title="5.3. GQTP" href="gqtp.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../en/html/server/memcached.html"><img src="../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../en/html/server/memcached.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="gqtp.html" title="5.3. GQTP"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -127,7 +127,7 @@
127
127
  <li class="right" >
128
128
  <a href="gqtp.html" title="5.3. GQTP"
129
129
  >前へ</a> |</li>
130
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
130
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
131
131
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
132
132
  </ul>
133
133
  </div>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.1. サーバーパッケージ &mdash; Groonga v5.0.1-42-g4d10df1ドキュメント</title>
10
+ <title>5.1. サーバーパッケージ &mdash; Groonga v5.0.3ドキュメント</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.0.1-42-g4d10df1',
18
+ VERSION: '5.0.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="../_static/translations.js"></script>
28
28
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.0.1-42-g4d10df1ドキュメント" href="../index.html" />
29
+ <link rel="top" title="Groonga v5.0.3ドキュメント" href="../index.html" />
30
30
  <link rel="up" title="5. サーバー" href="../server.html" />
31
31
  <link rel="next" title="5.2. HTTP" href="http.html" />
32
32
  <link rel="prev" title="5. サーバー" href="../server.html" />
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="other-language-links">
45
45
  <ul>
46
- <li><a href="../../../en/html/server/package.html"><img src="../_static/us.png" alt="English">English page</a></li>
46
+ <li><a href="../../../en/html/server/package.html">English</a></li>
47
47
  </ul>
48
48
  </div>
49
49
  </div>
@@ -61,7 +61,7 @@
61
61
  <li class="right" >
62
62
  <a href="../server.html" title="5. サーバー"
63
63
  accesskey="P">前へ</a> |</li>
64
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
64
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
65
65
  <li><a href="../server.html" accesskey="U">5. サーバー</a> &raquo;</li>
66
66
  </ul>
67
67
  </div>
@@ -393,7 +393,7 @@ Please use <tt class="docutils literal"><span class="pre">groonga-httpd</span></
393
393
  <li class="right" >
394
394
  <a href="../server.html" title="5. サーバー"
395
395
  >前へ</a> |</li>
396
- <li><a href="../index.html">Groonga v5.0.1-42-g4d10df1ドキュメント</a> &raquo;</li>
396
+ <li><a href="../index.html">Groonga v5.0.3ドキュメント</a> &raquo;</li>
397
397
  <li><a href="../server.html" >5. サーバー</a> &raquo;</li>
398
398
  </ul>
399
399
  </div>