rroonga 2.0.4-x86-mingw32 → 2.0.7-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (887) hide show
  1. data/Rakefile +29 -2
  2. data/bin/grndump +3 -2
  3. data/ext/groonga/extconf.rb +37 -10
  4. data/ext/groonga/rb-grn-accessor.c +8 -10
  5. data/ext/groonga/rb-grn-array-cursor.c +2 -2
  6. data/ext/groonga/rb-grn-array.c +39 -36
  7. data/ext/groonga/rb-grn-column.c +185 -200
  8. data/ext/groonga/rb-grn-context.c +104 -93
  9. data/ext/groonga/rb-grn-database.c +116 -114
  10. data/ext/groonga/rb-grn-double-array-trie-cursor.c +3 -3
  11. data/ext/groonga/rb-grn-double-array-trie.c +159 -168
  12. data/ext/groonga/rb-grn-encoding-support.c +2 -3
  13. data/ext/groonga/rb-grn-encoding.c +39 -34
  14. data/ext/groonga/rb-grn-exception.c +1 -1
  15. data/ext/groonga/rb-grn-expression.c +141 -159
  16. data/ext/groonga/rb-grn-fix-size-column.c +12 -13
  17. data/ext/groonga/rb-grn-geo-point.c +55 -0
  18. data/ext/groonga/rb-grn-hash-cursor.c +3 -3
  19. data/ext/groonga/rb-grn-hash.c +73 -86
  20. data/ext/groonga/rb-grn-index-column.c +80 -90
  21. data/ext/groonga/rb-grn-index-cursor.c +48 -15
  22. data/ext/groonga/rb-grn-logger.c +42 -63
  23. data/ext/groonga/rb-grn-object.c +73 -100
  24. data/ext/groonga/rb-grn-operator.c +1 -1
  25. data/ext/groonga/rb-grn-patricia-trie-cursor.c +2 -2
  26. data/ext/groonga/rb-grn-patricia-trie.c +200 -260
  27. data/ext/groonga/rb-grn-plugin.c +17 -24
  28. data/ext/groonga/rb-grn-posting.c +6 -1
  29. data/ext/groonga/rb-grn-snippet.c +37 -54
  30. data/ext/groonga/rb-grn-table-cursor-key-support.c +3 -3
  31. data/ext/groonga/rb-grn-table-cursor.c +21 -26
  32. data/ext/groonga/rb-grn-table-key-support.c +53 -63
  33. data/ext/groonga/rb-grn-table.c +366 -393
  34. data/ext/groonga/rb-grn-type.c +122 -26
  35. data/ext/groonga/rb-grn-utils.c +77 -7
  36. data/ext/groonga/rb-grn-variable-size-column.c +12 -20
  37. data/ext/groonga/rb-grn-variable.c +6 -7
  38. data/ext/groonga/rb-grn-view-accessor.c +1 -1
  39. data/ext/groonga/rb-grn-view-cursor.c +2 -2
  40. data/ext/groonga/rb-grn-view.c +46 -58
  41. data/ext/groonga/rb-grn.h +36 -4
  42. data/ext/groonga/rb-groonga.c +7 -6
  43. data/lib/1.8/groonga.so +0 -0
  44. data/lib/1.9/groonga.so +0 -0
  45. data/lib/groonga/command.rb +3 -1
  46. data/lib/groonga/database.rb +27 -0
  47. data/lib/groonga/dumper.rb +201 -46
  48. data/lib/groonga/expression-builder.rb +24 -0
  49. data/lib/groonga/geo-point.rb +216 -0
  50. data/lib/groonga/pagination.rb +30 -24
  51. data/lib/groonga/posting.rb +29 -1
  52. data/lib/groonga/record.rb +21 -18
  53. data/lib/groonga/schema.rb +185 -186
  54. data/lib/groonga.rb +3 -1
  55. data/rroonga-build.rb +1 -1
  56. data/rroonga.gemspec +90 -0
  57. data/test/groonga-test-utils.rb +168 -0
  58. data/test/run-test.rb +60 -0
  59. data/test/test-accessor.rb +36 -0
  60. data/test/test-array.rb +146 -0
  61. data/test/test-column.rb +350 -0
  62. data/test/test-command-select.rb +246 -0
  63. data/test/test-context.rb +130 -0
  64. data/test/test-database-dumper.rb +299 -0
  65. data/test/test-database.rb +173 -0
  66. data/test/test-double-array-trie.rb +189 -0
  67. data/test/test-encoding.rb +33 -0
  68. data/test/test-exception.rb +230 -0
  69. data/test/test-expression-builder.rb +643 -0
  70. data/test/test-expression.rb +134 -0
  71. data/test/test-fix-size-column.rb +77 -0
  72. data/test/test-geo-point.rb +190 -0
  73. data/test/test-gqtp.rb +70 -0
  74. data/test/test-hash.rb +367 -0
  75. data/test/test-index-column.rb +180 -0
  76. data/test/test-index-cursor.rb +149 -0
  77. data/test/test-logger.rb +37 -0
  78. data/test/test-pagination.rb +249 -0
  79. data/test/test-patricia-trie.rb +440 -0
  80. data/test/test-plugin.rb +35 -0
  81. data/test/test-procedure.rb +37 -0
  82. data/test/test-record.rb +577 -0
  83. data/test/test-remote.rb +63 -0
  84. data/test/test-schema-create-table.rb +267 -0
  85. data/test/test-schema-dumper.rb +235 -0
  86. data/test/test-schema-type.rb +208 -0
  87. data/test/test-schema-view.rb +90 -0
  88. data/test/test-schema.rb +886 -0
  89. data/test/test-snippet.rb +130 -0
  90. data/test/test-table-dumper.rb +353 -0
  91. data/test/test-table-offset-and-limit.rb +100 -0
  92. data/test/test-table-select-mecab.rb +80 -0
  93. data/test/test-table-select-normalize.rb +57 -0
  94. data/test/test-table-select-weight.rb +123 -0
  95. data/test/test-table-select.rb +191 -0
  96. data/test/test-table-traverse.rb +304 -0
  97. data/test/test-table.rb +711 -0
  98. data/test/test-type.rb +136 -0
  99. data/test/test-variable-size-column.rb +147 -0
  100. data/test/test-variable.rb +28 -0
  101. data/test/test-vector-column.rb +76 -0
  102. data/test/test-version.rb +61 -0
  103. data/test/test-view.rb +72 -0
  104. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  105. data/vendor/local/bin/groonga.exe +0 -0
  106. data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
  107. data/vendor/local/bin/libgroonga-0.dll +0 -0
  108. data/vendor/local/bin/libmecab-1.dll +0 -0
  109. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  110. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  111. data/vendor/local/bin/libstdc++-6.dll +0 -0
  112. data/vendor/local/bin/mecab-config +2 -2
  113. data/vendor/local/bin/mecab.exe +0 -0
  114. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +49 -0
  115. data/vendor/local/include/groonga/groonga/plugin.h +1 -1
  116. data/vendor/local/include/groonga/groonga.h +83 -7
  117. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  118. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  119. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  120. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +3 -3
  121. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  122. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  123. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  124. data/vendor/local/lib/groonga/plugins/table/table.la +41 -0
  125. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  126. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  127. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  128. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +3 -3
  129. data/vendor/local/lib/libgroonga.a +0 -0
  130. data/vendor/local/lib/libgroonga.dll.a +0 -0
  131. data/vendor/local/lib/libgroonga.la +3 -3
  132. data/vendor/local/lib/libmecab.a +0 -0
  133. data/vendor/local/lib/libmecab.dll.a +0 -0
  134. data/vendor/local/lib/libmecab.la +1 -1
  135. data/vendor/local/lib/libmsgpack.a +0 -0
  136. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  137. data/vendor/local/lib/libmsgpack.la +2 -2
  138. data/vendor/local/lib/libmsgpackc.a +0 -0
  139. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  140. data/vendor/local/lib/libmsgpackc.la +2 -2
  141. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  142. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  143. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  144. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  145. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  146. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  147. data/vendor/local/sbin/groonga-httpd-restart +64 -0
  148. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  149. data/vendor/local/share/doc/groonga/en/html/_sources/community.txt +17 -0
  150. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +638 -0
  151. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +21 -6
  152. data/vendor/local/share/doc/groonga/en/html/_sources/contribution.txt +0 -1
  153. data/vendor/local/share/doc/groonga/en/html/_sources/development/travis-ci.txt +61 -0
  154. data/vendor/local/share/doc/groonga/en/html/_sources/development.txt +15 -0
  155. data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +2 -0
  156. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +131 -0
  157. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +136 -0
  158. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +72 -0
  159. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +53 -0
  160. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +267 -0
  161. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +43 -0
  162. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +196 -0
  163. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +77 -0
  164. data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +21 -346
  165. data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +3 -3
  166. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +16 -16
  167. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
  168. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +17 -17
  169. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +235 -4
  170. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_expr.txt +8 -0
  171. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +8 -0
  172. data/vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt +8 -0
  173. data/vendor/local/share/doc/groonga/en/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
  174. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
  175. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/check.txt +0 -0
  176. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
  177. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
  178. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
  179. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
  180. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/define_selector.txt +1 -1
  181. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
  182. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/delete.txt +0 -0
  183. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/dump.txt +0 -0
  184. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/load.txt +1 -1
  185. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
  186. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
  187. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
  188. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/quit.txt +0 -0
  189. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +892 -0
  190. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
  191. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/status.txt +5 -6
  192. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands/suggest.txt +8 -8
  193. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
  194. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_list.txt +3 -26
  195. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/table_remove.txt +3 -3
  196. data/vendor/local/share/doc/groonga/en/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
  197. data/vendor/local/share/doc/groonga/en/html/_sources/{commands.txt → reference/commands.txt} +0 -0
  198. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/add.txt +0 -0
  199. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/get.txt +0 -0
  200. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/commands_not_implemented/set.txt +0 -0
  201. data/vendor/local/share/doc/groonga/en/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
  202. data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/grntest.txt +1 -1
  203. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +209 -0
  204. data/vendor/local/share/doc/groonga/{ja/html/_sources/executables/groonga-http.txt → en/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
  205. data/vendor/local/share/doc/groonga/{ja/html/_sources → en/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
  206. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/executables/groonga.txt +4 -4
  207. data/vendor/local/share/doc/groonga/en/html/_sources/{executables.txt → reference/executables.txt} +0 -0
  208. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
  209. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +284 -0
  210. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
  211. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  212. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/now.txt +0 -0
  213. data/vendor/local/share/doc/groonga/en/html/_sources/{functions → reference/functions}/rand.txt +0 -0
  214. data/vendor/local/share/doc/groonga/en/html/_sources/{functions.txt → reference/functions.txt} +0 -0
  215. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
  216. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
  217. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +59 -0
  218. data/vendor/local/share/doc/groonga/{source → en/html/_sources/reference}/indexing.txt +7 -7
  219. data/vendor/local/share/doc/groonga/en/html/_sources/{log.txt → reference/log.txt} +0 -0
  220. data/vendor/local/share/doc/groonga/en/html/_sources/{output.txt → reference/output.txt} +0 -0
  221. data/vendor/local/share/doc/groonga/en/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  222. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +8 -0
  223. data/vendor/local/share/doc/groonga/en/html/_sources/{type.txt → reference/type.txt} +4 -4
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +12 -9
  225. data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +16 -0
  226. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +288 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt +8 -0
  228. data/vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt +8 -0
  229. data/vendor/local/share/doc/groonga/en/html/_sources/server/http.txt +29 -0
  230. data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +12 -0
  231. data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
  232. data/vendor/local/share/doc/groonga/en/html/_sources/spec.txt +2 -2
  233. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt +1 -1
  234. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/correction.txt +2 -2
  235. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/introduction.txt +2 -0
  236. data/vendor/local/share/doc/groonga/en/html/_sources/suggest/suggestion.txt +1 -1
  237. data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  238. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +11 -11
  239. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +23 -23
  240. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +3 -1
  241. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +1 -1
  242. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +8 -6
  243. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
  244. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +3 -3
  245. data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -154
  246. data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +29 -21
  247. data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
  248. data/vendor/local/share/doc/groonga/en/html/community.html +25 -10
  249. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +22 -22
  250. data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +30 -30
  251. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +67 -67
  252. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +742 -0
  253. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +47 -47
  254. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +23 -22
  255. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +19 -19
  256. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +38 -38
  257. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +19 -19
  258. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +46 -21
  259. data/vendor/local/share/doc/groonga/en/html/contribution.html +85 -50
  260. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +191 -0
  261. data/vendor/local/share/doc/groonga/en/html/{executables.html → development.html} +27 -28
  262. data/vendor/local/share/doc/groonga/en/html/genindex.html +61 -61
  263. data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +10 -10
  264. data/vendor/local/share/doc/groonga/en/html/index.html +167 -108
  265. data/vendor/local/share/doc/groonga/en/html/install/centos.html +251 -0
  266. data/vendor/local/share/doc/groonga/en/html/install/debian.html +260 -0
  267. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +202 -0
  268. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +186 -0
  269. data/vendor/local/share/doc/groonga/en/html/install/others.html +394 -0
  270. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +171 -0
  271. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +321 -0
  272. data/vendor/local/share/doc/groonga/en/html/install/windows.html +200 -0
  273. data/vendor/local/share/doc/groonga/en/html/install.html +91 -349
  274. data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -17
  275. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +8 -8
  276. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -21
  277. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
  278. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +23 -23
  279. data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
  280. data/vendor/local/share/doc/groonga/en/html/news.html +301 -37
  281. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +111 -0
  283. data/vendor/local/share/doc/groonga/en/html/reference/api.html +134 -0
  284. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +111 -0
  285. data/vendor/local/share/doc/groonga/en/html/{command_version.html → reference/command_version.html} +44 -44
  286. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/cache_limit.html +48 -48
  287. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/check.html +48 -48
  288. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/clearlock.html +48 -48
  289. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_create.html +48 -48
  290. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_list.html +48 -48
  291. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/column_remove.html +48 -48
  292. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/define_selector.html +51 -51
  293. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/defrag.html +48 -48
  294. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/delete.html +48 -48
  295. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/dump.html +46 -46
  296. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/load.html +51 -51
  297. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_level.html +50 -50
  298. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_put.html +50 -50
  299. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/log_reopen.html +52 -52
  300. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/quit.html +46 -46
  301. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +2340 -0
  302. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/shutdown.html +46 -46
  303. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/status.html +67 -51
  304. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/suggest.html +246 -246
  305. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_create.html +48 -48
  306. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_list.html +140 -72
  307. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/table_remove.html +51 -51
  308. data/vendor/local/share/doc/groonga/en/html/{commands → reference/commands}/view_add.html +48 -48
  309. data/vendor/local/share/doc/groonga/en/html/{commands.html → reference/commands.html} +55 -55
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +201 -0
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +182 -0
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +203 -0
  313. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grnslap.html +46 -46
  314. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/grntest.html +62 -62
  315. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +367 -0
  316. data/vendor/local/share/doc/groonga/en/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +46 -46
  317. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga-suggest-create-dataset.html +53 -53
  318. data/vendor/local/share/doc/groonga/en/html/{executables → reference/executables}/groonga.html +54 -54
  319. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +144 -0
  320. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/edit_distance.html +46 -46
  321. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +551 -0
  322. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_circle.html +46 -46
  323. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/geo_in_rectangle.html +46 -46
  324. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/now.html +44 -44
  325. data/vendor/local/share/doc/groonga/en/html/{functions → reference/functions}/rand.html +46 -46
  326. data/vendor/local/share/doc/groonga/en/html/reference/functions.html +143 -0
  327. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +1365 -0
  328. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +1977 -0
  329. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +192 -0
  330. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +318 -0
  331. data/vendor/local/share/doc/groonga/en/html/{log.html → reference/log.html} +42 -42
  332. data/vendor/local/share/doc/groonga/en/html/{output.html → reference/output.html} +39 -39
  333. data/vendor/local/share/doc/groonga/en/html/{pseudo_column.html → reference/pseudo_column.html} +38 -38
  334. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +134 -0
  335. data/vendor/local/share/doc/groonga/en/html/{type.html → reference/type.html} +45 -45
  336. data/vendor/local/share/doc/groonga/en/html/reference.html +84 -76
  337. data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
  338. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  339. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +135 -0
  340. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +452 -0
  341. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +136 -0
  342. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +136 -0
  343. data/vendor/local/share/doc/groonga/en/html/server/http.html +168 -0
  344. data/vendor/local/share/doc/groonga/en/html/{functions.html → server.html} +26 -28
  345. data/vendor/local/share/doc/groonga/en/html/spec/search.html +30 -30
  346. data/vendor/local/share/doc/groonga/en/html/spec.html +18 -20
  347. data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +35 -35
  348. data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +36 -36
  349. data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +13 -11
  350. data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +39 -39
  351. data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
  352. data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
  353. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
  354. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -19
  355. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +340 -340
  356. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +452 -36
  357. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +382 -382
  358. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +755 -79
  359. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
  360. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +311 -311
  361. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +561 -535
  362. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +107 -107
  363. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +145 -143
  364. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +176 -176
  365. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +415 -34
  366. data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
  367. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  368. data/vendor/local/share/doc/groonga/ja/html/_sources/community.txt +17 -0
  369. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +638 -0
  370. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +21 -6
  371. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt +0 -1
  372. data/vendor/local/share/doc/groonga/ja/html/_sources/development/travis-ci.txt +61 -0
  373. data/vendor/local/share/doc/groonga/ja/html/_sources/development.txt +15 -0
  374. data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +2 -0
  375. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +131 -0
  376. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +136 -0
  377. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +72 -0
  378. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +53 -0
  379. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +267 -0
  380. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +43 -0
  381. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +196 -0
  382. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +77 -0
  383. data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +21 -346
  384. data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +3 -3
  385. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +16 -16
  386. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
  387. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +17 -17
  388. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +235 -4
  389. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_expr.txt +8 -0
  390. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +8 -0
  391. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt +8 -0
  392. data/vendor/local/share/doc/groonga/ja/html/_sources/{command_version.txt → reference/command_version.txt} +0 -0
  393. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/cache_limit.txt +0 -0
  394. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/check.txt +0 -0
  395. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/clearlock.txt +0 -0
  396. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_create.txt +0 -0
  397. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_list.txt +0 -0
  398. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/column_remove.txt +0 -0
  399. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/commands/define_selector.txt +1 -1
  400. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/defrag.txt +0 -0
  401. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/delete.txt +0 -0
  402. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/dump.txt +0 -0
  403. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/load.txt +1 -1
  404. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_level.txt +0 -0
  405. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_put.txt +0 -0
  406. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/log_reopen.txt +0 -0
  407. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/quit.txt +0 -0
  408. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +892 -0
  409. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/shutdown.txt +0 -0
  410. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/status.txt +5 -6
  411. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/suggest.txt +8 -8
  412. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/table_create.txt +0 -0
  413. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_list.txt +3 -26
  414. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/commands/table_remove.txt +3 -3
  415. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands → reference/commands}/view_add.txt +0 -0
  416. data/vendor/local/share/doc/groonga/ja/html/_sources/{commands.txt → reference/commands.txt} +0 -0
  417. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/add.txt +104 -0
  418. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/get.txt +80 -0
  419. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands_not_implemented/set.txt +105 -0
  420. data/vendor/local/share/doc/groonga/ja/html/_sources/{executables → reference/executables}/grnslap.txt +0 -0
  421. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/grntest.txt +1 -1
  422. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +209 -0
  423. data/vendor/local/share/doc/groonga/{source/executables/groonga-http.txt → ja/html/_sources/reference/executables/groonga-server-http.txt} +3 -3
  424. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga-suggest-create-dataset.txt +1 -1
  425. data/vendor/local/share/doc/groonga/{en/html/_sources → ja/html/_sources/reference}/executables/groonga.txt +4 -4
  426. data/vendor/local/share/doc/groonga/ja/html/_sources/{executables.txt → reference/executables.txt} +0 -0
  427. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/edit_distance.txt +0 -0
  428. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +284 -0
  429. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_circle.txt +0 -0
  430. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  431. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/now.txt +0 -0
  432. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions → reference/functions}/rand.txt +0 -0
  433. data/vendor/local/share/doc/groonga/ja/html/_sources/{functions.txt → reference/functions.txt} +0 -0
  434. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +584 -0
  435. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +805 -0
  436. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +59 -0
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/{indexing.txt → reference/indexing.txt} +7 -7
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/{log.txt → reference/log.txt} +0 -0
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/{output.txt → reference/output.txt} +0 -0
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +8 -0
  442. data/vendor/local/share/doc/groonga/{source → ja/html/_sources/reference}/type.txt +4 -4
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +12 -9
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +16 -0
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +288 -0
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt +8 -0
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt +8 -0
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.txt +29 -0
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +12 -0
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/spec.txt +2 -2
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt +1 -1
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/correction.txt +2 -2
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/introduction.txt +2 -0
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/suggestion.txt +1 -1
  456. data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  457. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +11 -11
  458. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +23 -23
  459. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +3 -1
  460. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +1 -1
  461. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +8 -6
  462. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
  463. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +3 -3
  464. data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -154
  465. data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +29 -21
  466. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
  467. data/vendor/local/share/doc/groonga/ja/html/community.html +22 -10
  468. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +22 -22
  469. data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +30 -30
  470. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +67 -67
  471. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +743 -0
  472. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +47 -47
  473. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +23 -22
  474. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +19 -19
  475. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +38 -38
  476. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +19 -19
  477. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +41 -17
  478. data/vendor/local/share/doc/groonga/ja/html/contribution.html +85 -50
  479. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +180 -0
  480. data/vendor/local/share/doc/groonga/ja/html/{executables.html → development.html} +25 -28
  481. data/vendor/local/share/doc/groonga/ja/html/genindex.html +61 -61
  482. data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +10 -10
  483. data/vendor/local/share/doc/groonga/ja/html/index.html +167 -108
  484. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +236 -0
  485. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +250 -0
  486. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +190 -0
  487. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +182 -0
  488. data/vendor/local/share/doc/groonga/ja/html/install/others.html +348 -0
  489. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +168 -0
  490. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +309 -0
  491. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +186 -0
  492. data/vendor/local/share/doc/groonga/ja/html/install.html +83 -340
  493. data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -17
  494. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +8 -8
  495. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -21
  496. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
  497. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +23 -23
  498. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
  499. data/vendor/local/share/doc/groonga/ja/html/news.html +273 -40
  500. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  501. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +112 -0
  502. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +135 -0
  503. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +112 -0
  504. data/vendor/local/share/doc/groonga/ja/html/{command_version.html → reference/command_version.html} +45 -45
  505. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/cache_limit.html +49 -49
  506. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/check.html +49 -49
  507. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/clearlock.html +49 -49
  508. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_create.html +49 -49
  509. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_list.html +49 -49
  510. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/column_remove.html +49 -49
  511. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/define_selector.html +52 -52
  512. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/defrag.html +49 -49
  513. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/delete.html +49 -49
  514. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/dump.html +47 -47
  515. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/load.html +52 -52
  516. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_level.html +51 -51
  517. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_put.html +51 -51
  518. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/log_reopen.html +53 -53
  519. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/quit.html +47 -47
  520. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2134 -0
  521. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/shutdown.html +47 -47
  522. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/status.html +68 -52
  523. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/suggest.html +254 -254
  524. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_create.html +49 -49
  525. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_list.html +141 -73
  526. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/table_remove.html +52 -52
  527. data/vendor/local/share/doc/groonga/ja/html/{commands → reference/commands}/view_add.html +49 -49
  528. data/vendor/local/share/doc/groonga/ja/html/{commands.html → reference/commands.html} +56 -56
  529. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +202 -0
  530. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +183 -0
  531. data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +204 -0
  532. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grnslap.html +47 -47
  533. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/grntest.html +63 -63
  534. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +339 -0
  535. data/vendor/local/share/doc/groonga/ja/html/{executables/groonga-http.html → reference/executables/groonga-server-http.html} +47 -47
  536. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +187 -0
  537. data/vendor/local/share/doc/groonga/ja/html/{executables → reference/executables}/groonga.html +55 -55
  538. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +145 -0
  539. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/edit_distance.html +47 -47
  540. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +510 -0
  541. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_circle.html +47 -47
  542. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/geo_in_rectangle.html +47 -47
  543. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/now.html +45 -45
  544. data/vendor/local/share/doc/groonga/ja/html/{functions → reference/functions}/rand.html +47 -47
  545. data/vendor/local/share/doc/groonga/ja/html/reference/functions.html +144 -0
  546. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +1210 -0
  547. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +1819 -0
  548. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +169 -0
  549. data/vendor/local/share/doc/groonga/ja/html/{indexing.html → reference/indexing.html} +147 -147
  550. data/vendor/local/share/doc/groonga/ja/html/{log.html → reference/log.html} +55 -55
  551. data/vendor/local/share/doc/groonga/ja/html/{output.html → reference/output.html} +40 -40
  552. data/vendor/local/share/doc/groonga/ja/html/{pseudo_column.html → reference/pseudo_column.html} +39 -39
  553. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +135 -0
  554. data/vendor/local/share/doc/groonga/ja/html/{type.html → reference/type.html} +48 -48
  555. data/vendor/local/share/doc/groonga/ja/html/reference.html +84 -76
  556. data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
  557. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  558. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +136 -0
  559. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +406 -0
  560. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +137 -0
  561. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +137 -0
  562. data/vendor/local/share/doc/groonga/ja/html/server/http.html +166 -0
  563. data/vendor/local/share/doc/groonga/ja/html/{functions.html → server.html} +26 -28
  564. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +30 -30
  565. data/vendor/local/share/doc/groonga/ja/html/spec.html +18 -20
  566. data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +35 -35
  567. data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +36 -36
  568. data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +15 -13
  569. data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +39 -39
  570. data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
  571. data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
  572. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +28 -28
  573. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -19
  574. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +339 -339
  575. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +452 -36
  576. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +382 -382
  577. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +756 -80
  578. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
  579. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +311 -311
  580. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +561 -535
  581. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +108 -108
  582. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +145 -143
  583. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +176 -176
  584. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +415 -34
  585. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
  586. data/vendor/local/share/doc/groonga/source/community.txt +17 -0
  587. data/vendor/local/share/doc/groonga/source/conf.py +3 -16
  588. data/vendor/local/share/doc/groonga/source/contribution/development/release.txt +638 -0
  589. data/vendor/local/share/doc/groonga/source/contribution/report.txt +21 -6
  590. data/vendor/local/share/doc/groonga/source/contribution.txt +0 -1
  591. data/vendor/local/share/doc/groonga/source/development/travis-ci.txt +61 -0
  592. data/vendor/local/share/doc/groonga/source/development.txt +15 -0
  593. data/vendor/local/share/doc/groonga/source/example/completion-1.log +29 -30
  594. data/vendor/local/share/doc/groonga/source/example/correction-1.log +29 -30
  595. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log +41 -0
  596. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log +59 -0
  597. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log +65 -0
  598. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log +32 -0
  599. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log +35 -0
  600. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log +31 -0
  601. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log +35 -0
  602. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log +74 -0
  603. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log +35 -0
  604. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log +29 -0
  605. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log +29 -0
  606. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log +36 -0
  607. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log +31 -0
  608. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log +41 -0
  609. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log +41 -0
  610. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log +41 -0
  611. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log +52 -0
  612. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log +131 -0
  613. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log +12 -0
  614. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log +41 -0
  615. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log +59 -0
  616. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log +90 -0
  617. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log +41 -0
  618. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log +59 -0
  619. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log +47 -0
  620. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log +41 -0
  621. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log +47 -0
  622. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log +65 -0
  623. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log +65 -0
  624. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log +35 -0
  625. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log +65 -0
  626. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log +18 -0
  627. data/vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log +33 -0
  628. data/vendor/local/share/doc/groonga/source/example/reference/commands/status.log +21 -0
  629. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log +31 -0
  630. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log +31 -0
  631. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log +12 -0
  632. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log +14 -0
  633. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log +8 -0
  634. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log +77 -0
  635. data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log +35 -0
  636. data/vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log +94 -0
  637. data/vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log +21 -0
  638. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log +16 -0
  639. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log +26 -0
  640. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log +15 -0
  641. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log +26 -0
  642. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log +26 -0
  643. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log +26 -0
  644. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log +13 -0
  645. data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log +16 -0
  646. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log +33 -0
  647. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log +41 -0
  648. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log +47 -0
  649. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log +47 -0
  650. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log +41 -0
  651. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log +47 -0
  652. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log +92 -0
  653. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log +53 -0
  654. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log +59 -0
  655. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log +41 -0
  656. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log +41 -0
  657. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log +47 -0
  658. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log +59 -0
  659. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log +41 -0
  660. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log +41 -0
  661. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log +47 -0
  662. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log +51 -0
  663. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log +41 -0
  664. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log +59 -0
  665. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log +41 -0
  666. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log +41 -0
  667. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log +41 -0
  668. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log +53 -0
  669. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log +47 -0
  670. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log +41 -0
  671. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log +41 -0
  672. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log +47 -0
  673. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log +92 -0
  674. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log +41 -0
  675. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log +47 -0
  676. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log +41 -0
  677. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log +59 -0
  678. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log +47 -0
  679. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log +29 -0
  680. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log +41 -0
  681. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log +52 -0
  682. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log +59 -0
  683. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log +29 -0
  684. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log +35 -0
  685. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log +41 -0
  686. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log +29 -0
  687. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log +41 -0
  688. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log +51 -0
  689. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log +39 -0
  690. data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log +41 -0
  691. data/vendor/local/share/doc/groonga/source/example/reference/indexing-data.log +9 -0
  692. data/vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log +4 -0
  693. data/vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log +8 -0
  694. data/vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log +8 -0
  695. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log +31 -0
  696. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log +35 -0
  697. data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log +27 -0
  698. data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +33 -34
  699. data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +2 -3
  700. data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +44 -45
  701. data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +53 -54
  702. data/vendor/local/share/doc/groonga/source/example/tutorial/data-4.log +43 -44
  703. data/vendor/local/share/doc/groonga/source/example/tutorial/data-5.log +43 -44
  704. data/vendor/local/share/doc/groonga/source/example/tutorial/data-6.log +43 -44
  705. data/vendor/local/share/doc/groonga/source/example/tutorial/data-7.log +44 -45
  706. data/vendor/local/share/doc/groonga/source/example/tutorial/data-8.log +52 -53
  707. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log +21 -22
  708. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +76 -3
  709. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log +83 -3
  710. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +111 -3
  711. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log +84 -3
  712. data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log +72 -3
  713. data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +22 -23
  714. data/vendor/local/share/doc/groonga/source/example/tutorial/index-2.log +103 -104
  715. data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +18 -19
  716. data/vendor/local/share/doc/groonga/source/example/tutorial/index-4.log +82 -83
  717. data/vendor/local/share/doc/groonga/source/example/tutorial/index-5.log +76 -77
  718. data/vendor/local/share/doc/groonga/source/example/tutorial/index-6.log +37 -38
  719. data/vendor/local/share/doc/groonga/source/example/tutorial/index-7.log +39 -40
  720. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +0 -1
  721. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +2 -3
  722. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log +2 -3
  723. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log +34 -3
  724. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +34 -3
  725. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +74 -3
  726. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +127 -7
  727. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +74 -3
  728. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log +74 -3
  729. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log +74 -3
  730. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +19 -3
  731. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +2 -3
  732. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +25 -3
  733. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log +31 -5
  734. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log +13 -14
  735. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log +74 -3
  736. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log +34 -3
  737. data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +34 -3
  738. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log +19 -20
  739. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log +135 -136
  740. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log +17 -18
  741. data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log +135 -136
  742. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log +57 -34
  743. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log +96 -97
  744. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log +33 -34
  745. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log +33 -34
  746. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log +87 -88
  747. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log +33 -34
  748. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +71 -72
  749. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log +52 -53
  750. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log +56 -57
  751. data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log +35 -36
  752. data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +19 -20
  753. data/vendor/local/share/doc/groonga/source/example/tutorial/network-2.log +0 -1
  754. data/vendor/local/share/doc/groonga/source/example/tutorial/network-3.log +82 -83
  755. data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log +41 -41
  756. data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log +98 -98
  757. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +24 -25
  758. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +68 -69
  759. data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +78 -79
  760. data/vendor/local/share/doc/groonga/source/example/tutorial/search-1.log +29 -3
  761. data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +82 -5
  762. data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +148 -5
  763. data/vendor/local/share/doc/groonga/source/example/tutorial/search-4.log +41 -11
  764. data/vendor/local/share/doc/groonga/source/example/tutorial/search-5.log +39 -3
  765. data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +39 -3
  766. data/vendor/local/share/doc/groonga/source/example/tutorial/search-7.log +29 -3
  767. data/vendor/local/share/doc/groonga/source/index.txt +2 -0
  768. data/vendor/local/share/doc/groonga/source/install/centos.txt +131 -0
  769. data/vendor/local/share/doc/groonga/source/install/debian.txt +136 -0
  770. data/vendor/local/share/doc/groonga/source/install/fedora.txt +72 -0
  771. data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +53 -0
  772. data/vendor/local/share/doc/groonga/source/install/others.txt +267 -0
  773. data/vendor/local/share/doc/groonga/source/install/solaris.txt +43 -0
  774. data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +196 -0
  775. data/vendor/local/share/doc/groonga/source/install/windows.txt +77 -0
  776. data/vendor/local/share/doc/groonga/source/install.txt +21 -346
  777. data/vendor/local/share/doc/groonga/source/news/0.x.txt +3 -3
  778. data/vendor/local/share/doc/groonga/source/news/1.0.x.txt +16 -16
  779. data/vendor/local/share/doc/groonga/source/news/1.1.x.txt +1 -1
  780. data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +17 -17
  781. data/vendor/local/share/doc/groonga/source/news.txt +235 -4
  782. data/vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt +8 -0
  783. data/vendor/local/share/doc/groonga/source/reference/api.txt +8 -0
  784. data/vendor/local/share/doc/groonga/source/reference/cast.txt +8 -0
  785. data/vendor/local/share/doc/groonga/source/{command_version.txt → reference/command_version.txt} +0 -0
  786. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/cache_limit.txt +0 -0
  787. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/check.txt +0 -0
  788. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/clearlock.txt +0 -0
  789. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_create.txt +0 -0
  790. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_list.txt +0 -0
  791. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/column_remove.txt +0 -0
  792. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/define_selector.txt +1 -1
  793. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/defrag.txt +0 -0
  794. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/delete.txt +0 -0
  795. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/dump.txt +0 -0
  796. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/load.txt +1 -1
  797. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_level.txt +0 -0
  798. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_put.txt +0 -0
  799. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/log_reopen.txt +0 -0
  800. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/quit.txt +0 -0
  801. data/vendor/local/share/doc/groonga/source/reference/commands/select.txt +892 -0
  802. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/shutdown.txt +0 -0
  803. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/status.txt +5 -6
  804. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/commands/suggest.txt +8 -8
  805. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/table_create.txt +0 -0
  806. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_list.txt +3 -26
  807. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/commands/table_remove.txt +3 -3
  808. data/vendor/local/share/doc/groonga/source/{commands → reference/commands}/view_add.txt +0 -0
  809. data/vendor/local/share/doc/groonga/source/{commands.txt → reference/commands.txt} +0 -0
  810. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt +104 -0
  811. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt +80 -0
  812. data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt +105 -0
  813. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grnslap.txt +0 -0
  814. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/grntest.txt +1 -1
  815. data/vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt +209 -0
  816. data/vendor/local/share/doc/groonga/{en/html/_sources/executables/groonga-http.txt → source/reference/executables/groonga-server-http.txt} +3 -3
  817. data/vendor/local/share/doc/groonga/source/{executables → reference/executables}/groonga-suggest-create-dataset.txt +1 -1
  818. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/executables/groonga.txt +4 -4
  819. data/vendor/local/share/doc/groonga/source/{executables.txt → reference/executables.txt} +0 -0
  820. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/edit_distance.txt +0 -0
  821. data/vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt +284 -0
  822. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_circle.txt +0 -0
  823. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/geo_in_rectangle.txt +0 -0
  824. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/now.txt +0 -0
  825. data/vendor/local/share/doc/groonga/source/{functions → reference/functions}/rand.txt +0 -0
  826. data/vendor/local/share/doc/groonga/source/{functions.txt → reference/functions.txt} +0 -0
  827. data/vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt +584 -0
  828. data/vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt +805 -0
  829. data/vendor/local/share/doc/groonga/source/reference/grn_expr.txt +59 -0
  830. data/vendor/local/share/doc/groonga/{en/html/_sources → source/reference}/indexing.txt +7 -7
  831. data/vendor/local/share/doc/groonga/source/{log.txt → reference/log.txt} +0 -0
  832. data/vendor/local/share/doc/groonga/source/{output.txt → reference/output.txt} +0 -0
  833. data/vendor/local/share/doc/groonga/source/{pseudo_column.txt → reference/pseudo_column.txt} +0 -0
  834. data/vendor/local/share/doc/groonga/source/reference/tokenizers.txt +8 -0
  835. data/vendor/local/share/doc/groonga/{ja/html/_sources → source/reference}/type.txt +4 -4
  836. data/vendor/local/share/doc/groonga/source/reference.txt +12 -9
  837. data/vendor/local/share/doc/groonga/source/server/gqtp.txt +16 -0
  838. data/vendor/local/share/doc/groonga/source/server/http/comparison.txt +288 -0
  839. data/vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt +8 -0
  840. data/vendor/local/share/doc/groonga/source/server/http/groonga.txt +8 -0
  841. data/vendor/local/share/doc/groonga/source/server/http.txt +29 -0
  842. data/vendor/local/share/doc/groonga/source/server.txt +12 -0
  843. data/vendor/local/share/doc/groonga/source/spec/search.txt +1 -1
  844. data/vendor/local/share/doc/groonga/source/spec.txt +2 -2
  845. data/vendor/local/share/doc/groonga/source/suggest/completion.txt +1 -1
  846. data/vendor/local/share/doc/groonga/source/suggest/correction.txt +2 -2
  847. data/vendor/local/share/doc/groonga/source/suggest/introduction.txt +2 -0
  848. data/vendor/local/share/doc/groonga/source/suggest/suggestion.txt +1 -1
  849. data/vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
  850. data/vendor/local/share/doc/groonga/source/tutorial/data.txt +11 -11
  851. data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +23 -23
  852. data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +3 -1
  853. data/vendor/local/share/doc/groonga/source/tutorial/network.txt +1 -1
  854. data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +8 -6
  855. data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +1 -1
  856. data/vendor/local/share/doc/groonga/source/tutorial/search.txt +3 -3
  857. data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +10 -5
  858. data/vendor/local/share/man/ja/man1/groonga.1 +12354 -3896
  859. data/vendor/local/share/man/man1/groonga.1 +16934 -7750
  860. data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
  861. data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
  862. metadata +1251 -905
  863. data/lib/groonga/query-log.rb +0 -348
  864. data/vendor/local/share/doc/groonga/en/html/_sources/commands/select.txt +0 -504
  865. data/vendor/local/share/doc/groonga/en/html/_sources/expr.txt +0 -45
  866. data/vendor/local/share/doc/groonga/en/html/_sources/functions/geo_distance.txt +0 -92
  867. data/vendor/local/share/doc/groonga/en/html/commands/select.html +0 -891
  868. data/vendor/local/share/doc/groonga/en/html/expr.html +0 -178
  869. data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +0 -226
  870. data/vendor/local/share/doc/groonga/en/html/indexing.html +0 -318
  871. data/vendor/local/share/doc/groonga/ja/html/_sources/commands/select.txt +0 -504
  872. data/vendor/local/share/doc/groonga/ja/html/_sources/expr.txt +0 -45
  873. data/vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_distance.txt +0 -92
  874. data/vendor/local/share/doc/groonga/ja/html/commands/select.html +0 -810
  875. data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +0 -187
  876. data/vendor/local/share/doc/groonga/ja/html/expr.html +0 -179
  877. data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +0 -227
  878. data/vendor/local/share/doc/groonga/source/commands/select.txt +0 -504
  879. data/vendor/local/share/doc/groonga/source/commands/suggest-completion.log +0 -32
  880. data/vendor/local/share/doc/groonga/source/commands/suggest-correction.log +0 -32
  881. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-completion.log +0 -13
  882. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-correction.log +0 -15
  883. data/vendor/local/share/doc/groonga/source/commands/suggest-learn-suggestion.log +0 -9
  884. data/vendor/local/share/doc/groonga/source/commands/suggest-mixed.log +0 -78
  885. data/vendor/local/share/doc/groonga/source/commands/suggest-suggestion.log +0 -36
  886. data/vendor/local/share/doc/groonga/source/expr.txt +0 -45
  887. data/vendor/local/share/doc/groonga/source/functions/geo_distance.txt +0 -92
@@ -1 +1 @@
1
- Search.setIndex({objects:{"":{"--ftp":[17,0,1,"cmdoption--ftp"],"--dir":[17,0,1,"cmdoption--dir"],"--document-root":[14,0,1,"cmdoption--document-root"],"--cache-limit":[14,0,1,"cmdoption--cache-limit"],"-P":[0,0,1,"cmdoption-P"],"--pid-path":[14,0,1,"cmdoption--pid-path"],"-e":[14,0,1,"cmdoption-e"],"-d":[14,0,1,"cmdoption-d"],"-a":[14,0,1,"cmdoption-a"],"-c":[14,0,1,"cmdoption-c"],"-m":[0,0,1,"cmdoption-m"],"-l":[14,0,1,"cmdoption-l"],"-n":[14,0,1,"cmdoption-n"],"-i":[14,0,1,"cmdoption-i"],"-h":[14,0,1,"cmdoption-h"],"-t":[14,0,1,"cmdoption-t"],"-p":[14,0,1,"cmdoption-p"],"-s":[14,0,1,"cmdoption-s"],"--log-path":[14,0,1,"cmdoption--log-path"],"--default-match-escalation-threshold":[14,0,1,"cmdoption--default-match-escalation-threshold"],"--log-output-dir":[17,0,1,"cmdoption--log-output-dir"],"--config-path":[14,0,1,"cmdoption--config-path"],"--query-log-path":[14,0,1,"cmdoption--query-log-path"],"--protocol":[14,0,1,"cmdoption--protocol"],"--bind-address":[14,0,1,"cmdoption--bind-address"],"--groonga":[17,0,1,"cmdoption--groonga"]}},terms:{"\u305a\u308c":[37,14,22,65,75,44,39,86,68,61,82],EPEL:70,".status":17," thread":[56,17],"\u51fa\u6765":[36,41],localstatedir:[20,70],"\u3082\u3089\u3063":3,"\u578b\u304b":61,",\"suggest":[],prefix:[88,18,37,19,70],"\u3002scan":88,"-history":18,"\u6e1b\u3089":[40,64],"\"test":3,"\u3070\u308c\u308b":20," deb":40,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[14,85],"\u811a\u6ce8":[13,3,22,63,81,61,5],"\u6539\u826f":[2,25,20,90,40,18]," scan":88,"\u3002groonga":[3,83,68,8,28,47,58,55,29,23,40,41,86],spec:20,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[14,18,73,62,23],"\u79d2\u60c5":18,"_column":[31,74,26,17,79],"\"ab":4," InnoDB":68," Lynx":[31,70]," English":[28,53]," YOUR":18,"_left":[13,18]," GitHub":62,"\u304b\u305a\u3072\u3053\u3055\u3093":40," use":[84,28,62],editrc:18,"void":40," stamp":56,"\u4e0d\u6b63":[18,2,20,88],"\u30d0\u30c3\u30d5\u30a1ID":84,"\u6b63\u5e38":17,"\u3066\u307f\u307e\u3057\u3087":39,"\u300cOffGao":89,"\nfact":[],"\u30b9\u30ab\u30e9":12,"_sel":25,MAP:18,"\u53c2\u7167\u5143":44," ToyBox":44,"\u30df\u30b9":29,"\u3054\u7528\u5fc3":40,"\u932f\u8aa4":68,"=pat":40,"\u5408\u8a08":[38,84,17],"\u5b9f\u6570":61,"\nrecords":[],"\u6761\u4ef6\u5f0f":[31,59],"\u6700\u9577":[18,8,17],starttime:[83,23,55],"GET\u30e1\u30bd\u30c3\u30c9":85,"\u7c21\u5358":[38,3,55,28],"_snip":40," threads":56,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":19,"\u5c3a\u5ea6":68,"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":20," searches":[],"-repository":[40,70],"/Fedora":[40,20],"\u7b2c\u4e00":3,"\u3044\u304f\u3064\u304b":[37,8,28,53,79,88]," column":[44,15,39,3,19],"\u79d2x":[],"[http":40,"\u89e3\u9664":[14,2,71,80]," specifying":[],"\u9006\u9806":3,"\u4f5c\u3089\u308c":17," install":[0,17,70,40,10,88],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":18,"\u4e00\u8a9e":38,"\"cache":[]," CUTTER":88,"[2":14,"\u5236\u9650":[35,31,26,20,17,55,18,61],"\u3002\u30df\u30ea":44," domain":[7,67],"\u5230\u9054":35,"\u65e5\u672c\u6e2c":[],selected:[],"\u6210\u529f":[6,57,3,65,8,43,76,80,58,55,81,48,82],"\u4e8b\u524d":[38,4],zunda:18," relative":[],Visual:18,"\u30b7\u30f3\u30dc\u30eb":[8,58],"\u505c\u6b62":[14,32,86],net:67,"\u683c\u7d0d":[36,37,3,51,67,14,68,27,15,9,74,44,58,79,89,18,61,12],"-e":14,"\u4e8c\u3064":[74,86,17],args:14,Synonym:51,"\u7fbd\u7530":89,"\u578b\u3068\u3057\u3066":61,"-d":[14,55],"\u306f\u3044\u3051":76," has":[25,56,16],"\u5fdc\u3058":[22,17,68],"& ":[38,39,37,74,70],"\u9069\u7528":[3,28],"\u3002output":73,"\u30af\u30a8\u30ea\u30ed\u30b0":[18,64,45,29],china:67,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":33,"&&":28,GRN:[37,18,20,28,40],"const":40,"\u300cComments":89,"\u4e0e\u3048":[37,3,67,14,75,38,55],Alert:56,".ddl":17,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":18," option":56,"\u305a\u306b":8,"_key":[2,3,19,67,89,28,39,79],"\u79cb\u8449":39,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":[70,17],"\u4e2d\u8eab":[3,17],"\u5f62\u614b":[68,8,70],"_output":[43,67,28]," cleared":40,":port":[14,85],"\u5411\u4e0a":18," data":23,serch:[19,64],"\u7ffb\u8a33":[47,62],"\u63a8\u79fb":86,"\u300c$":28,"-n":[14,18,3],"\u300c\"":14,"\u300c#":[89,20],"\"sound":64,"\u300c.":[],"\u300c,":73,"9f":23," options":[],"-YYY":62,"\u8aad\u307f\u3084\u3059\u3044":40,total:[84,17],"\u5ea6\u6d6e":61," fact":[]," Blog":41,"\u624b\u9806":45,"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[47,37],"\u592a\u90ce":36,noarch:70,"\u975e\u63a8":[18,63],Reported:40,"\u304a\u3063\u3055\u3093":89,typo:18,ip:17,TABLE:[20,8,3,9,72],"[pkg":[18,40],type:[36,3,19,67,64,44,89,17,39,58,45,29,41,12,72],"\"n":[],"\u30d6\u30ed\u30b0":[89,41,15],"\u30df\u30ea":[44,18,39,61],"_LIBRARY":70,"\u6709\u529b":19," opened":56,"-s":[14,55],autogen:[40,62],"\u52d5\u753b":36,Entries:[73,28],"\nweight":[],"\u4e0b\u304c\u308a":38,"'Site":[],"_register":90,"(pos":[13,63,5],EMERG:[65,82],"-bind":[14,18,40],"_command":[23,3,55],"\u30fb\u5186":68,Normally:[],"\u7518\u6817":89,"\u3042\u3089\u304b\u3058\u3081":61,"\u6709\u52b9":[14,68,8,75,28,44,17,70,40,18,55],"\u62bc\u3057":3,"\u7f6e\u304d\u63db\u3048":[14,62],"\u4ee5\u4e0a":[37,3,19,14,28,17,61,88,62],mm:56,Text:[61,28],"\u4e00\u6b69":[],"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":17,"\u62bc\u3059":[3,62]," matched":[],"\u30a2\u30fc\u30ab\u30a4\u30d6":62,"GeoPoint\u9593":18,"\u30c0\u30f3\u30d7":[40,20]," done":[],"_EXPR":37,"\u300c_":[],"\u306b\u95a2\u3057":[37,17],"\u5316\u6642":18,"\u304c\u3063":41,"-> ":20,JavaScript:[31,39,85,55,30],updated:38,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[2,71],"\u63a8\u5968":[40,55,86],"\u4e92\u63db":[85,86],"2Gbyte":[]," pdf":10,"\u4e0b\u66f8\u304d":27,LF:0,"\u3002Debian":88,end:0,LC:62,eng:[29,19],"\u540d\u524d":[71,3,26,73,63,75,52,17,76,40,5,6,31,32,33,8,9,79,83,34,58,84,81,60,61,12,62,13,14,65,0,82,57,39,85,86,18,80,19,22,20,43,90,69,89,48]," chunk":84,travel:89,"\u53ef\u80fd":[31,84,37,3,19,36,14,68,86,8,74,17,38,39,85,28,79,72,18,88,51]," Geodetic":61,"\u30d7\u30ed\u30bb\u30b9":[84,3,14,68,0,17,83,86,33],"\nworks":56,"\nomitted":[],config:[2,86],"-lines":18,"\u30b4\u30df":[18,20,84],"\u7d42\u4e86":[14,33,20,17,55,86]," title":[44,36,41,3,55],description:[89,74],less:37,"_plugins":18,"\u30b9\u30fc\u30d7":74," HTML":[],"\ndebug":[65,82],lat:17,"\"@":[]," hobby":56,"_title":[41,3,17],types:[29,64,19,45],"\u63fa\u308c":51,"\u305d\u306e\u5f8c":42,"=$":62,".tar":62,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[44,31,51,30,89],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":20,"\u5c0f\u3055\u3044":[37,63,90,28,5],"\u56fa\u5b9a\u9577":20,">#{":56,"\u901a\u5e38":[44,61,3,79,28],"\uff08TokenMecab":38,"\u5272\u308a\u5f53\u3066":20,"\u500b\u5b9a":66,"\u30e6\u30fc\u30b6":[37,3,51,64,22,8,17,58,45,29,61,4],"\u3069\u3053":18,"\u4e88\u5b9a":[7,18,86],"\u3042\u305f\u308a":[18,20],"\u643a\u5e2f":68,"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":68,"\u7acb\u3061\u4e0a\u3052":17," smaller":56,"\u5358\u4e00":58," url":73,"\u305f\u304f":[18,4,28,62],"\u305f\u304b":[18,28,64],"\u30d1\u30c8\u30ea\u30b7\u30a2":[31,74,3,72,8,28,30],"/plugins":20,Debug:56,japan:[55,67],"\u305f\u3044":[36,3,67,44,7,45,28,14,17,70,29,18,41,61,55],gqtp:[31,14,66,0,17,55,40,47,30],"\u6d6e\u52d5":44," PostgreSQL":68," google":[],"\u9ad8\u5ea6":[22,28],LongText:61,"\u8fd4\u3057":[13,37,3,19,64,83,63,28,34,69,45,29,60,4,5],"\u8fd4\u3055":[19,84,75,52,28,86],"\u305f\u3073":[39,86,17],"\u6574\u6570":[44,61,52,79,69]," type":58," message":[41,82],"\u3002grntest":17," speed":4,"-version":[20,86],"\u8f9e\u691c":18," support":25,"\u30d7\u30ed\u30c8\u30b3\u30eb":[31,68,0,17,55,40,30],"\u30ab\u30c6\u30b4\u30ea":28,"\u30c6\u30b9\u30c8\u30c4\u30fc\u30eb":17,"\u3082\u3063\u3068\u3082":88,"\u300coutput":85,"\u691c\u8a0e":38,"\u8a8d\u8a3c":55,"\u8fd4\u5024":[8,73,63,75,52,28,76,5,6,32,33,71,9,34,58,84,81,60,12,82,13,83,65,57,85,80,19,43,69,48],"\u5168\u3066":[61,41,15,28,62],"\u3072\u3089":29,"_select":[18,47,37,28,22],"\ncustomized":56,"\u4e0d\u5177\u5408":40,"\u7d44\u307f\u8fbc\u3093":[68,8],"\u56de\u6570":40,"\u691c\u8a3c":0,"(point":[13,63,5],"\u6771\u4eac":[38,89,39,74],"2\u3064":[1,3,89,28,45,41,60]," go":15,API:[37,22,20,90,40,18]," words":[],each:[29,64,19,45],PROGRESS:56,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[31,2,3,36,84,12,41,30],"_$":19,"_\"":18,"\u30ec\u30d9\u30eb":[14,65,82],serach:64,searc:29,"\u30d1\u30b9":[3,14,90,20,0,17,85,55,18],"\u3059\u3067\u306b":52,"\u3002\uff08":[27,64,84,20,74,45,29,18,61,62],"\u3002\uff09":[2,27,64,20,74,45,18,62],"_DAT":[18,8]," clang":88,"\nbe":[]," contain":[],"\" ":[3,51,38,28,44,39,17,23,61],"\u3050\u308b\u3093\u3057\u304d":22,"\u3068\u3068":[7,62],"\nrecord":[],TokenBigramSplitSymbolAlphaDigit:[38,64],"\u30ed\u30b0\u30d1\u30b9":20," Tracking":1,msgpack:23," porting":25,realtime:45,".deb":[],"\u3068\u3059\u3079\u3066":28,"\u5207\u308a":[18,33],"\u30da\u30a2":[29,64,4,45],content:[15,28],rf:70,moritapo:36,rc:56," above":[],"\u90e8\u5206":[38,37,74,88],"\".":67,"[macports":18,"\u77ed\u3044":[89,20],GCC:40,SYNOPSTIS:16," section":[],"/\uff09":20,"_tp":0,"\uff01\uff08":62,"\u77ed\u304f":[68,15],".name":[84,89],free:20,"\u5909\u5316":68," html":[10,62]," editor":62,"\u305f\u308a":[22,8,52,68,47,61],"\u305f\u3089":[29,20,28,62],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":12,"\u8996\u899a":68,"\u305f\u3081":[3,51,73,74,53,54,55,40,29,5,44,68,8,38,59,72,62,36,37,64,14,84,0,39,17,18,88,89,22,63,28,70,45,47],"\u30eb\u30fc\u30eb":20,"\u307e\u308d\u3086\u304d":72,"\u771f\u507d":[44,61],"\u30eb\u30fc\u30d7":20,libedit:[18,2,20,40],"\u5f31\u70b9":68,"\u63a5\u8fd1":37,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":20,filter:[36,74,38,89,20,43,28,76,39,40]," text":73,"\"ni":29,"\u8fd4\u308a":[39,28],"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":[44,31,68],TIME:56,"\u6709\u7121":44,"\u30eb\u30fc\u30c8":18," You":[]," must":[],"\u57fa\u70b9":28,"|COMPRESS":12,"\u304a\u304b\u3057":20,"><":23,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[68,17],"\u53ef\u5909":[18,71],"_INDEXER":40,Notification:56,"\"BLT":73,Please:[],"2\u5104":35,"\u304a\u3055\u307e\u308b":39,"_next":20," processed":56,"> ":[36,25,3,51,67,44,90,15,28,39,55,40,41,72]," brew":70,"\u6607\u964d":[8,28],"1\u884c":17," status":23,"\u30b5\u30dd\u30fc\u30c8":[2,27,44,68,20,15,17,55,23,18,40,61,86]," escalation":[],"\u540c\u4e00":[74,51,8,28,58,17,79,41,86]," one":[]," shows":[],top:[13,18]," Synonym":51,"_obj":[18,37,40],"\u4f7f\u308f":[18,59,28,29],"\u533a\u5207\u3089":18,"\u533a\u5207\u308a":[3,19,67,14,75,73,0,28,68,44,45,23,61],"\u533a\u5207\u308b":20," mysql":25,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[14,85],"\u898b\u306a\u3055":28,"(Windows":17,Search:[],"\u63a2\u7d22":68,"\u5358\u4f4d":[74,3,68,20,63,28,18,61,5],"_clear":18,"\u5b57\u5217":[18,61],"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":84,"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[14,43,28],".com":[3,67,44,39,55,40,62],">n":23,Oracle:18,"\u5358\u4f53":[68,17],"\u3069\u3061\u3089\u304b":[],"\u5f79\u5272":3,nsubrecs:[36,67,89],"\u7121\u99c4":68,".json":23,"\u30b9\u30bf\u30a4\u30eb":14,ELAPSED:[23,56],See:[],"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[88,31,55,30],"\u30bd\u30b1\u30c3\u30c8":[8,73,75,52,76,6,32,33,71,9,80,58,81,12,82,83,84,57,40,65,43,48],"(location":[36,39,89],"\u69cb\u9020":[68,22,37,36]," sphinx":10," license":25,"\u30a8\u30e9\u30fc":[6,2,57,65,86,8,43,28,76,80,58,81,70,40,18,48,82],Query:[31,56,26],SSSSSS:56,"\u30d6\u30fc\u30eb":[44,61],Animation:36,"\u5834\u5408":[2,71,3,51,73,74,75,52,17,76,55,4,5,6,57,8,38,80,58,83,84,81,61,62,35,36,37,64,14,0,15,39,85,28,18,41,19,67,82,65,20,43,63,69,70,89,23,48,86],"\u3002grn":[22,37],"\u5f93\u3063":[8,85,28],"\u304b\u3069\u3046":38,"\n<":23,latency:17,"\n>":[36,3,19,67,44,15,28,39,55,72,41,51],"\u5f8c\u8005":39,"\u4e00\u89a7":[31,77,26,36,14,84,38,89]," and":[47,25,56,28],",\\\"":75,ifexists:75,"\u8ff0\u3079":3,"/run":14,"\u591a\u9762":68,"\n-":[80,76],point2:63,"\u4ed5\u69d8":[31,19,44,20,85,86,40,11],"\n(":[23,56],"-port":[14,17],They:56,"_distance":[36,2,26,31,63,77,39,18,60],"\n%":[14,73,55,70,40,18,88,62]," any":[],"\n ":[36,84,89,83,19,64,38,43,15,9,28,44,51,17,45,72,29,41,12,55],"\u5f93\u3046":20,"\n\"":[23,17],"\n#":[14,10,17],"\n]":[29,73,64,75,45]," index":[36,41],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":14,"\u69d8\u3005":[22,39,37,47,88],"/share":[14,18],"\n[":[8,3,51,73,75,52,17,55,29,72,44,57,71,38,80,58,84,82,36,64,14,65,15,39,28,41,19,67,89,43,45,23],Tweets:15,"') ":14,"\u7d22\u7528":[31,3,30],"\u3044\u307e\u305b":[22,27,19,70],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":62,"\u3084\u3059\u3044":2,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":84,"\u7701\u7565":[3,14,63,75,28,44,55,17,69,29,5],contain:37,"\u4f7f\u3063":[1,36,37,3,51,64,38,84,74,63,28,44,39,55,70,59,40,47,61,4,62],"\u3072\u3068\u3064":60,"\u30b5\u30b8\u30a7\u30b9\u30c8":[31,19,78,20,16,40,18,4],"\n}":37,"\u540c\u68b1":[40,20,62],"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":88,radious:5,"\n{":[83,75,17],doc:[7,16,62],Float:[44,63,61],".GitHub":62,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[29,64,90,45],"\u767a\u751f":[38,68,2],"\u56fa\u5b9a":[8,3],"\u4f7f\u3048":[18,70,28],"\u4f7f\u3046":[2,73,27,17,55,40,29,4,44,61,37,64,38,28,18,41,19,22,20,7,45,23],"\u30ed\u30fc\u30c9":[31,3,14,68,20,75,89,18,30],"\n`":[6,8,57,65,71,43,52,76,80,58,84,81,48,82],"\na":56,"\ngeo":63," task":[],"\u8003\u3048":[68,3],Fedora:[18,20,70,31],"\u30ec\u30b3\u30fc\u30c9":[3,51,27,75,28,76,18,30,72,31,44,8,9,79,38,61,35,36,37,14,15,39,40,89,19,67,22,20,43,68],"\u306a\u304a\u3053\u306e":17,"\u6210\u308a\u7acb\u3063":37," adv":40,"\u8a9e\u610f":54,"\u307f\u306a\u3055":37,"\u65e5\u672c\u8a9e":[1,38,68,40,29,62],"\u8ffd\u52a0":[2,8,3,72,75,28,54,18,4,30,31,44,57,79,38,58,62,36,37,14,15,40,41,67,68,20,43,90,47]," X":[31,20,70],"\nrequest":56,"\u5ea6\u8868":20,"\u5206\u3051":[31,74],"\"\u308d\u3086\u304d":[],"\u5c0f\u6570":[44,18,39,61,28],"\u6c42\u307e\u308a":68," \u3057\u3044":[38,74],submit:[29,64,19,45],ellipsoid:63," GPL":25,grnslap:[49,31,0,26],"\u72ec\u81ea":[44,68,0],naoina:40,specify:62," enhanced":25,"? ":[],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":37,nanoseconds:56,rectangle:63,"-frequency":18,"do":17," candidate":19,"-enable":20,df:[]," Ventry":57,"\u3055\u3089\u306b":[36,3,89,86,68,4],de:62,db:[18,71,80,17]," disabled":56,"\u30ea\u30af\u30a8\u30b9\u30c8":[8,73,75,52,76,6,32,33,71,9,80,81,84,58,12,82,83,65,0,57,85,43,48],"\u8fd1\u4f3c":[18,63,5]," also":28," KEY":3,"_limit":[31,2,67,26,43,42,28,52],"\u5019\u88dc":[29,64,4,19],None:16,"\u8ab0\u304b":47,"\u91cd\u307f":[38,31,41,30,28],"[libedit":18,"\u8ab0\u304c":89," Binary":61,"\u91cd\u3044":68,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[31,42,26,20,85,86]," counts":[],"\u3064\u304b":90,"\u5171\u8d77":[29,64,45],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[31,74,64,38,90,20,28,24,40,18,45],"\u91cd\u304f":38,"_index":[89,28],"\u7d50\u679c":[3,51,73,74,28,24,29,30,31,79,37,64,38,45,39,85,17,18,41,88,89,67,22,20,68],"\u30ec\u30b3\u30fc\u30c9ID":[44,76],"\u5411\u3051":[31,47,37,46],"`${":62," five":3,"-per":18,"\u623b\u308a":40," IndexBlog":41,"\nload":73,",\"location":[36,39],"\u591a\u304f":[3,44,14,22,28,38,18],"\u5e83\u304f":89,"[linux":40,"\u591a\u3044":38," this":3,"\nnot":[],"< t1":37,nul:18,result:37,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":74," first":28,"-commnad":86,"<port":[14,17],"\u67d4\u8edf":[22,68],"\u6a5f\u80fd":[31,2,27,19,78,45,14,22,20,17,68,64,37,51,28,29,18,40,89,4,55],"(Cutter":88,"\u5206\u304b\u3061":68,"\u4e8c\u3064\u76ee":37,"\u4e88\u7d04":[8,58],"\u3002status":[],"\nwithout":[],score:[36,37,3,19,64,38,89,28,39,45,29],":\u5024":59," datails":[],"\u304b\u304e\u308a":17,"\u5bbf\u99c5":89,"\u56db\u6368":18,"\u7bc4\u56f2":[13,27,3,31,38,68,86,8,28,44,79,89,30,5],Advanced:[],".grn":73,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":37,"_CHECK":88," information":62,"\u611f\u3058":89,"\u30de\u30af\u30ed":18,"_geo":18," It":[],"\u3044\u305a\u308c":[61,86,79]," groonga":[3,56,14,68,73,28,55,70,40,18,41,62],"\u3092\u901a\u3057":[14,3],"_get":[18,40],"\u30b5\u30fc\u30d0\u30fc":[18,40,23],COMMAND:3,"\u59cb\u307e\u308b":[29,58,4,17,79],"_NORMALIZE":[25,3,51,38,89,8,15,9,28,41],"\u534a\u5f84":5,"\u5373\u6642":[31,68],"\u539f\u99c5":39,packages:[70,62]," If":[],"\u3092\u901a\u3058":39," Names":62,"\u30e2\u30cb\u30bf\u30fc":70,"\u884c\u6307\u5411":68,Log:[31,56,26],"\u69cb\u3044":[29,62],"\u3068\u3057\u307e\u3057\u3087":41,country:[55,67],"0x":[44,40,61],Supported:[],"\u30e9\u30f3\u30c0\u30e0":39,"\u30a8\u30f3\u30b3\u30fc\u30c9":[20,85],"\u66f8\u304d\u8fbc\u3093":89,"\u30ab\u30bf\u30ab\u30ca":[29,19],"|PERSISTENT":[9,12],"\u4e00\u4ef6":76,"\u4e09\u7a2e":55,"\u975e\u308f\u304b\u3061":[38,74],com:[66,67]," with":[84,56],"\u540c\u69d8":[36,37,44,27,28,39,17,55]," https":62,"\u591a\u91cd":0,abbreviate:75,"\u5931\u6557":[18,20,3],"\u5f8c\u304b\u3089":73,"\u7d4c\u7def":[44,39,61],"/ja":62,"\u4fdd\u5b58":[31,36,14,89,27,44,39,61,30],"\u62bd\u51fa":40,"\u6709\u76ca":68,"\u95a2\u6570":[6,13,2,20,26,31,22,8,63,77,39,34,69,37,40,60,88,5],path:[14,9,12]," formats":56,diff:17," Senna":[40,25]," following":56," my":28,"\u52a0\u3048":[44,37,72],"\uff13\u3064":61,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":17," Gothic":10,"\u7b49\u3057\u3044":[22,37],"_local":[73,17],"\u3068\u3044\u3051":29," four":[3,56],"\u7b49\u3057\u304f":37," period":[40,25]," some":56," {\"":[15,19],"\u3068\u3044\u3046":[3,51,74,17,55,29,44,10,61,62,36,64,38,84,66,39,85,28,18,88,89,19,67,22,68,23,86],JSON:[3,19,20,75,23,18],daijiro:89,")\u300d":14,"\u3082\u3059\u3079":22,"_blog":41,"\u8d77\u6e90":44," array":84,")\u3002":76,"{TIME":56,"\u7528\u3044":[6,31,2,89,3,88,36,38,68,63,28,39,85,55,18,10,41,30,5],"\u95a2\u4fc2\u5f0f":[47,37],"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[19,14,84,73,28,89],"'needle":37,"-help":14,"\u30ab\u30f3\u30de":[75,73,3,67,28],worker:66,"\u65b0\u305f":37,"\u62ec\u3089":28,CMake:40,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[36,67,31,89,28,18,61,30],applied:25,"\u554f\u984c":[2,3,44,84,20,17,90,40,18,62],NAME:[3,55,16],"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[31,53],Process:[31,56,26],"\u7528\u3044\u308b":[36,3,44,68,54,39,55],"\u3069\u3093":[9,12],zlib:[18,20,40],"_message":41,"\u7528\u9014":[68,70,28],"\u305a\u3064":[14,89,41,17],near:37,"\u3069\u308c":28,"\u5165\u529b":[2,8,3,51,73,75,52,17,76,55,40,29,4,6,32,33,71,9,83,80,58,84,81,12,82,64,14,65,0,57,18,19,22,43,45,48],tasukuchan:89,"_set":40,TokenMecab:[38,8,74],"\u6700\u3082":[84,28],"\u30d0\u30c3\u30d5\u30a1":84,"[solaris":40,"\u4ee3\u8868":68,"\u79d2\u6570":[44,83,61,28,89],"\u6709\u9650":28,is:[44,56,62],it:56,"\u5f62\u5f0f":[2,71,3,26,73,63,75,17,76,40,5,6,31,44,57,8,9,83,34,58,84,81,60,61,12,82,13,37,14,65,0,39,85,28,18,41,80,19,22,43,69,23,48]," can":[56,62],il:[38,74],io:25,"\u53d6\u5f97":[36,3,67,31,64,52,28,70,45,29,30],ia:[38,74],"\"}":[36,19,67,64,44,75,15,39,45,72,29,41,51],id:[36,3,19,67,64,14,73,15,9,28,76,38,39,55,45,72,29,41,79,12,51],"if":37,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":18,TokenBigramIgnoreBlank:38," remained":56,"1\u4ef6":[38,89,76],"_rectangle":[13,2,26,31,20,77,39,18],suggest:[31,42,19,26,64,20,18,29,4,45],make:[0,88,70,62],"\u4f8b\u3048":[36,19,67,64,14,74,15,28,54,38,17,45,29,41,4,72],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":37,"\u9069\u3057":[68,15],"-dataset":[49,31,19,26,64,16,90],"\u30df\u30ea\u79d2":[39,61],"\u7121\u8996":[14,73,20,76,38,40,18],"\"]":[36,3,67,14,89,73,9,38,39,12],"\"_":[36,3,51,67,38,73,75,28,44,39,41,72],"\u3002rst":10,"\u5fdc\u7528":68,"\u3069\u3046":[6,2,57,38,65,8,43,28,76,80,58,81,40,48,82]," Kazuhiko":[],"\"'":[38,74,28],"\u30e2\u30fc\u30c9":[85,37,3,55],"\"\"":[40,61],"\"#":18,"\",":[3,51,73,75,17,55,29,72,44,9,38,12,36,64,14,84,15,39,28,41,19,67,89,45],"\"-":18,"\u306b\u3088\u3063\u3066":[3,38,22,28,44,79,68,88,86],"\"/":[14,39],"\")":[13,63,36,22,8,28,39,60]," should":[],"_or":5,"\u5f15\u7528":14," Masahiro":20,".groonga":[70,17,62],"\">":23,"\"?":23,normalization:[],"\";":17," hash":89,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[38,74,64],"\u72b6\u614b":[3,14,68,20,0,28,38,83,70,84,40],"\u3055\u307e\u3056\u307e\u306a":[31,39,30,89],DB:[37,3,14,9,17,40],"\"\n":[36,19,64,44,89,45,15,28,51,17,29,72,23,41,55],options:[14,0,16,17],MATSUU:20,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[58,79],"\u3084\u3059\u304f":20,"\u58ca\u308c\u308b":[18,2,20],"\u30c4\u30fc\u30eb":[31,14,0,85,55,10,30,62],the:[7,25],"IP\u30a2\u30c9\u30ec\u30b9":[],"\u304b\u3089":[2,3,51,73,27,75,17,68,55,40,29,4,5,44,38,83,59,61,62,37,64,14,0,66,15,39,28,18,76,89,19,22,20,63,69,70,45,47,86],protocol:[14,23,85,55],"_score":[3,19,89,28,39,79,18],"||":[41,37]," environment":[],"_tags":[36,89],"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":88,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":17,"_ctx":[18,40],"\u3002load":[],"-admin":40,yes:[19,88],Maverick:18,"\u5f8c\u65b9":[31,37,72,8,74,30],note:63,"\u89e3\u50cf":20,keyserver:40,candidate:19,"\u9806\u6b21":[14,0,3,55,28]," Markus":[],defrag:[31,2,71,42,26],help:[18,88],"\u306f\u3059\u3079\u3066":[3,28],".scr":17,Elapsed:56,"\u6e80\u8db3":[],"-Point":61,"_selector":[14,31,42,43,26],easy:10,"\u30de\u30c3\u30c1":[2,37,38,28,59,18],News:[40,25],"5f":17,"5a":3,"\u8fd4\u5374":[28,3,9,12],"5c":[],"_close":[18,37],"\u7d4c\u5ea6":[31,44,89,39,68,61],"_ADDRESS":55,"\u8ad6\u7406\u7a4d":59,"|>":56,"\u9001\u308b":62,"|:":56,"|'":[],"| ":[38,39,56,28],"\nrep":17,"\u6539\u540d":[18,40],Kawaji:40,advanced:25,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":27,"\u30ed\u30c3\u30af":[14,18,2,71,80],">command":23,"\u4eee\u60f3":[39,8,67]," means":56,"\u307e\u3068\u3081\u308b":59,universe:70,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[14,28],"/Linux":[18,70,31],"\u30d4\u30ea\u30aa\u30c9":[8,58]," others":[],"_expr":[31,37,26,13,22,63,43,28,76,34,69,75,47,60,5]," report":47,"\"engine":[29,64,45],"\u6b63\u3057\u3044":[4,64],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[31,55,30]," request":62,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":89,centos:40,"\u307e\u3068\u3081\u3066":[44,68,8,28],"_BUT":37,"_db":[40,20,90],"_str":89,"\u3080\u3044\u3061\u3083\u3044":89,"\u5358\u8a9e":[3,89,28,54,40,41,4],"\u4f7f\u7528":[2,3,51,74,75,17,76,55,44,8,38,58,83,59,61,37,14,84,85,28,40,22,20,70,89,86],"\u3002prefix":[],"\u73fe\u4ee3":68,"\u5217\u6319":3,".zip":62,"\nExecuted":55,"\u9001\u3063":[7,47,62],"_table":[37,22,20,17,40,18,47],bottom:[13,18],"_right":[13,18],"\u30fbOR":39,"_lock":18,tasuku:25," result":41," design":[],".sourceforge":53,"-command":[20,86],localhost:[18,0,17,23],"-threads":14," mechanism":[],"\u7a0b\u5ea6":[18,3],"\u30c7\u30d5\u30a9\u30eb\u30c8":[2,3,74,75,17,55,40,63,5,6,44,8,38,59,61,37,14,0,15,28,18,19,67,20,43,23,86],"\u53c2\u8003":[3,19,28,62]," since":56,"\u3001\u300c":[36,2,14,89,74,38,29],"\u5b8c\u5168":[37,51,38,8,74,28,58],"\u304c\u308f\u304b\u308a":89,"\u6b63\u78ba":[44,83,3],"\u30b5\u30fc\u30d3\u30b9":[49,31,85,26,68],IndexBlog:41,post:[]," HTTP":[49,31,26,68,85,23],"\u3067\u3082\u3046":1," username":36,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[86,17],obj:84," shopping":15,"\u30c1\u30a7\u30c3\u30af":[84,20,0,17,40,18],"/squeeze":[],"\u6709\u7528":3,"\"text":18,"\u5224\u5b9a":39,"(GET":0,"_columns":[31,3,19,67,36,38,43,20,15,28,44,39,56,89,41,30,51],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":3,"\u7d44\u307f\u7acb\u3066\u308b":22,"\u3068\u306a\u308a":55,Use:[14,47]," last":89,"\u7d20\u89e3":[68,8],"[[":[36,3,19,67,44,14,15,9,28,38,39,72,41,12,51],"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":9,".title":44,"\u306a\u3055\u3093":47,"\nlevel":56,Critical:56,"_size":37,"\u6700\u521d":[18,3,28]," RAND":69," Term":[8,58,51],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[14,3,28],"\u9023\u7d9a":[38,74,64],support:25," correction":64," number":[14,17],approximate:[63,5],"_open":[18,20],"\u30d0\u30fc\u30b8\u30e7\u30f3":[2,3,20,90,86,40,18],"\u5927\u6587":28,"\u5b89\u5168":55," examples":[],editor:62,"[test":40,Ubuntu:[31,20,70,40,18,88],cdbs:18,"\u6291\u3048":38,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":62,"_body":[38,58,51],fork:[14,62]," TokenBigram":[3,51,38,89,8,15,28,41],head:0,"\u969b\u3057":28,"(id\u30d1\u30e9\u30e1\u30fc\u30bf":76,TokenUnigram:8," make":[10,88,70],",\u3000":17,TokenBigramSplitSymbol:[38,20],"_animal":44,"`` ":63," ftb":25,"\u96a3\u63a5":68,"[\n":[36,15,51,28,72],"true":[2,8,3,51,36,65,28,76,72,6,44,57,80,58,81,5,61,82,13,75,15,39,41,67,43,48],"\u5fa9\u65e7":40,"\u57f7\u7b46":[41,27,54],"\u691c\u7d22\u4f8b":[47,37],"\u9032\u6570":84," power":[],"\u5165\u308b":[9,12],"\u5165\u308a":[3,67,89,9,55,12],grroonga:4,"\u5426\u5b9a":37,GeoPoint:[13,2,63,67,36,44,89,20,39,55,61,5],"[#":[18,40],"[\"":[36,3,19,67,44,84,9,39,12]," friends":36,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[31,74,68,8,70,40],"\u53ef\u5909\u9577":8,"\u30e1\u30c3\u30bb\u30fc\u30b8":[89,86],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[3,64,38,74,70,45,18],"\u5185\u8a33":38,"delete":[31,2,26,20,42,76,18],"\u6587\u5b57":[2,3,51,36,74,75,28,40,29,5,44,8,60,61,82,13,37,64,14,39,18,41,89,67,22,63,68],"\u30c6\u30ad\u30b9\u30c8":[20,17,62],"\u3002sortby":28,"\u306e\u304b":[89,74],"\u8abf\u3079\u308b":[13,5],"\u6c7a\u3081\u308b":37,Variety:36,Introduction:47," flags":58,"\u306e\u3044":[37,14,22,65,75,39,86,68,61,82]," MeCab":68,"\u3088\u30fc":89,score1:37,"\u53d7\u3051":[22,66,3,55,40],"' ":[36,25,56,38,89,8,28,44,39,61],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":40,"'-":14,"',":[],"'*":[],"')":[14,0,28],"'(":[14,75],"\u30a8\u30c7\u30a3\u30bf":62,"\u305f\u304b\u3063":64,"\u306e\u306b":[38,31,24]," Takahiro":20,no:[25,19,28],"\u306e\u3061":28,"\u306e\u3067":[3,38,68,74,44,85,40,18,62],"\u4ed5\u65b9":[47,62],"_CODE":56,"\u914d\u5217":[36,20,3,44,84,8,74,9,37,58,89,18,12],Microsecond:56,"\u3002\u307e\u305f":[37,3,72,64,14,22,8,0,17,44,39,85,55,68,61,86],"_TABLE":18,test:[3,44,9,17,12,88],saerch:[19,64],TokenMeCab:74,"'\n":[36,3,38,15,28,39],"\u5c5e\u6027":[90,8,58,9,12],"\u305f\u3081\u3057":39,groogna:40,"'t":40,"'s":[15,56,28,62],"_touch":20," seven":3,Windows:[18,70,17,31],"'|":[],"\u3089\u308c\u308b":[40,37,74,68],VALUE:[3,55],"\u88dc\u3046":68,"\u547d\u4ee4":[14,17],"\u964d\u9806":[67,3,19,28],scorer:[31,36,43,28,39,30],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[14,20,17,40,18,88,62],"\u305b\u308b":[22,37,85,88,68],"'n":14,"'m":15,"\u30b4\u30fc\u30e4\u30c1\u30e3\u30f3\u30d7\u30eb":51,"\u305b\u308c":68,"\u6bb5\u843d":58,"_count":[83,23,3,55]," complete":[29,19],"/COMMAND":55," columns":[],"'_":[75,28]," TABLE":[36,3,51,67,38,89,73,8,15,28,44,41,72],"\u6765\u307e\u3057":89,pseudo:[31,79,26],"\u6539\u5584":[18,2,40],"_offset":[43,67,28],Second:56," json":[23,75],"\u5165\u529b\u30df\u30b9":64,"_memory":40,time:[44,29,64,19,45],"/Ubuntu":40,"\u9069\u5207":[68,20,3,17],"\u304a\u3053\u306a\u3063":3,"\u6307\u3057":[44,22],":/":[36,3,67,14,73,0,44,39,85,55,70,23,62],"\u53cd\u6620":[68,37],"\u81ea\u52d5\u7684":17,Title:[]," always":[],TEXT:[23,40]," required":[],": ":[2,3,51,75,28,24,29,31,44,9,38,59,61,12,35,37,64,14,0,39,85,86,18,20,45],":!":59,"-prefix":70,"/debian":70,":<":59,trigram:8,":>":59,"\u30d2\u30c3\u30c8":[37,51,38,89,74,15,28,29,72],"::":23," uninstall":[]," Umemoto":18," load":[15,3,19],"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[31,55,30],"\u7aef\u672b":68," all":56,":\n":55,"<threshold":14,"\u795e\u5948\u5ddd":89,"\u3064\u3065\u3044":89," sudo":[40,88,70]," installed":[],"\u4e00\u822c":[68,3,28,59],Standard:61,"\u3068\u3059\u3050":15,"/Functions":88,"(ptr":20," #":[89,20,90,62],"_MAX":69,"\u30d7\u30ed\u30bb\u30b9ID":55,"\u524a\u9664":[2,14,68,20,79,76,81,40,18,48],Let:15,"\u30bb\u30c3\u30b7\u30e7\u30f3":[14,33],Day:56,"*BSD":[18,20],"/LZO":20,supported:25,string:[60,37],groonga:[49,1,2,25,3,51,26,36,73,27,75,52,53,54,55,40,29,81,74,4,30,5,6,31,32,56,44,33,8,9,79,38,89,34,58,83,84,72,10,60,61,12,62,35,13,37,64,14,0,66,15,82,57,68,39,85,17,63,18,41,76,88,78,80,19,67,90,71,65,20,43,28,69,70,45,23,47,48,46,16,86],"\u8a2d\u6a02":18,"\u5341\u4e00":74,"\nrequests":56,"\nescalation":[],"\u304a\u6c17":89,"-root":[14,20,85],"\u306b\u3088\u3063":[8,3,51,73,74,75,52,28,68,55,6,32,44,57,71,9,83,80,58,84,81,12,82,36,37,14,65,66,0,85,86,76,67,22,43,33,48]," character":56,enqueue:66,"\u4e0a\u91ce":20,VERSION:17,"[php":40,"_MESSAGES":62," yes":0,"\u3084\u3081":18,exact:37,".body":[80,71,51,12]," \u3002":38,"\u72b6\u6cc1":[38,68],"\u30b9\u30af\u30ea\u30d7\u30c8":[31,90,20,28,21,17,40,11],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":64,"\u6e08\u307f":[64,8,75,58,29,18,61,4],level:[65,82],"\u3068\u3057\u3066":[3,27,75,17,54,55,40,29,4,44,8,79,38,60,61,62,36,37,64,14,74,39,28,18,87,88,19,68,20,63,70,86],"\u8208\u5473":68,":@":[36,3,72,44,89,55,59],"-escalation":[14,38,20,28],"\"\u3086\u304d":[],":\\":75,item:[29,64,19,45],"\u4e0d\u6574\u5408":2,Tag:36,":[":17,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":84,"\u8ad6\u7406\u548c":[37,59],"\u4ed8\u4e0e":[36,3,72,8,17,39,79,41],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":40," whether":[],"\u305f\u3055\u3093":[18,2],"\u3002ifexists":75,",\n>":[36,19,67,39,72,41,51],"\u7d50\u3073\u3064\u304f":66,"\u63db\u6642":18,"\u6f14\u7b97\u5b50":[31,37,22,20,28,59],"=)\n":37," Baseball":36,"-dev":[18,88,53,40],"\u5bfe\u8c61":[71,3,51,73,74,75,28,18,30,31,8,80,58,59,81,12,62,36,37,38,66,0,86,40,41,88,89,19,22,43,70,68,48]," commit":62," PatPrefix":72,"\u79d2\u8868":[38,44,39],"\u6c42\u3081\u308b":[68,63,5],substitute:[],">alloc":23,Fork:62,column:[2,3,51,26,17,40,29,72,31,44,8,58,81,12,36,37,64,14,15,28,18,41,42,89,19,67,22,20,45,48],"[munin":18,"\u5024\u306a\u3057":40,Form:3,"\u7d4c\u904e":[44,18,61,83,86],"\u30bf\u30d6":23,"\u4ed8\u304d":[31,8,3,19,36,44,20,45,29,27,61,30],"\u30d5\u30a1\u30bb\u30c3\u30c8":28," syntax":[],"/natty":[],mv:6,Imagine:[],"\u30c8\u30e2":36,"_FOR":37,"'='":14,"3\u3064":[44,3,88,28]," indexes":[],"\u30d1\u30c3\u30b1\u30fc\u30b8":[49,20,86,70,40,18],".\" ":55,"\u4f8b\u3068\u3057\u3066":44,"\u751f\u3058":[6,8,65,57,43,76,80,58,81,48,82],"[deb":[18,40],Good:15," two":56,"\u6e2c\u4f4d":68,"\u30bf\u30b0":[36,31,89,20,18,30],"\u540d\u4e00\u89a7":12," morning":15,"\u4f75\u305b":3,baseball:41,"\u9ad8\u6a5f":[68,37],WGS:[13,67,36,44,63,39,55,18,61,5]," MyISAM":68,"\u96c6\u5408":8,Changes:25,"\u6700\u5927":[35,2,14,20,52,28,17,18,69],MBytes:17,"-MM":56,"= \u5024":59,"\u89e3\u6790":[18,47,8,88]," string":60,"-mode":62,"\u3002Tag":36,"\u4e26\u5217":17,MM:56,"\u63d0\u4f9b":[49,37,68,20,86,70,40,18,4],"\u4e3b\u30ad\u30fc":[31,8,3,51,67,36,44,20,75,9,28,76,79,61,30,72],"\u3068\u3059\u308c":68,"_version":[3,85,86,23,18,55],example:[36,3,67,44,39,55],queue:66,"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[38,28],"[suggest":40,User:36,"\u8a2d\u5b9a":[90,2,14,65,20,75,52,28,79,70,40,88,82]," threasd":14,"\u8b66\u544a":[40,20,86],"\u9006\u306b":36,"\u3002offset":28,".db":[14,3,9,12,55],"_DB\u30d5\u30e9\u30b0":18," definition":[],"` ":23,cache:[31,2,3,26,42,28,52,55,23]," level":[14,65,56,82]," Users":[89,73],"\u3002table":8,"-leak":20,"\u521d\u671f":[18,20,68],"\u30ea\u30f3\u30af":[44,40]," \u3044b":[38,74]," server":[],"'haystack":37,"_delete":18,"\u6587\u5b57\u5217":[31,89,3,51,67,44,22,8,75,28,76,59,40,60,61,30],Emacs:62,"/main":[],"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[14,37],"\u7d71\u5408":68," entry":[58,43],"\u4e88\u3081":[14,61]," Table":14,"\uff08Romaji":29," related":[],or:22,"\u4e21\u8005":39,"-check":[18,20]," sequence":56,"\u5916\u90e8":66,"-src":70,"\u672c\u5bb6":70,"\uff08World":61," ERROR":82,"\u30d5\u30a9\u30ed\u30fc":89,https:62,"-libevent":40,msg:66,bill:[38,74],"\u5e74\u9f62":68,"\u306a\u3089":[37,64,14,33,17,83,86,29,88],"\u3060\u3063":[38,40,86],"``":[6,71,2,8,83,57,65,20,43,52,76,80,58,84,81,48,63,82],"\u591a\u69d8":68,"\u5b9f\u73fe":[31,37,3,68,46,47],Default:19,"\u8ee2\u7f6e":[31,3,36,68,8,58,40],Required:[],"_concurrency":0,"-each":18,"\u6e80\u305f":[22,39,37,89],Time:[38,89,44,34,18,61]," Yamaguchi":18,"\u305d\u3053\u306b":[9,12]," version":[23,25],"\u30bb\u30c3\u30c8":[71,37,74,80],"po\u30d5\u30a1\u30a4\u30eb":62,"_plugin":[18,90],"\u5bfe\u591a":[]," returned":[],"\u3001'":[51,14,28,44,39,61],"\u3060\u3044":18,DATABASE:16,"\u884c\u308f":[36,0,28,17],"\u30b8\u30aa\u30b5\u30fc\u30c1":[18,36,30,31],"_PREFIX":20,"\u660e\u793a":[14,29,70,17],",\"test":3,"\u542b\u307e\u308c":[68,74],"\u3060\u3051":[37,38,15,28,44,70,40,18,62],values:75,"\u8fd1\u3044":0,JSONP:18,",\"http":44,"\nnotice":[65,82],"\u8fd1\u304f":[68,27]," on":[25,62],"\u5f85\u3061\u53d7\u3051":[],"\u30fb\u30b5\u30fc\u30d0":3,"\u884c\u3063":[39,88,67]," of":[62,84,25,19,56]," Lucid":[31,70],",\n":[36,19,84,73,15,9,28,51,17,89,72,41,12,55],define:[14,31,42,43,26],"_AND":37,sample:[],"\uff11\u3064":66,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":0,"\u5897\u3084\u3059":88,"/rpmforge":70,Issue:1,YOUR:62," }\n":[89,55],"\u6a19\u6e96":[2,8,3,73,75,52,76,55,6,32,33,71,9,83,80,58,84,81,12,82,14,65,0,57,85,86,40,43,48],"\u884c\u3046":[36,8,72,67,20,0,28,39,40,41,74,88],"\u884c\u3044":[36,37,3,67,14,89,74,0,28,38,17,41],":true":72,Terms:[38,84,3],", ":[1,25,3,51,36,63,75,17,29,5,56,9,38,60,61,12,13,37,64,14,84,39,85,28,40,19,68,20,45,47,86]," variables":[],"_INDEX":[36,25,3,51,38,89,20,15,28,58,41],Shinya:40,"\u884c\u3048":[3,88],"\u30d2\u30e5\u30d9\u30cb":[63,5],write:[40,28]," extract":56,query:[3,72,74,28,55,29,51,56,44,36,37,64,38,15,39,41,89,19,22,43,90,45],"\u30d0\u30a4\u30c8":[18,20,61,40],"\u76f8\u5f53":[39,3],"\u8fd1\u508d":22,"\u8a9e\u53e5":36,map:18,Tomita:20,"\u518d\u8aad":6,max:[3,84,0,52,17,55,23,69],clone:[47,62],value:[8,9],date:17,",_":[36,3,19,67,89,39],"\u6b20\u70b9":68,"\u3069\u3061\u3089":[1,41,3,4,51],",[":[38,39,3,67],"<groonga":17,".ubuntu":40,"\u3001:":17,"/dictionary":20,"\u8fd4\u3059\u304b":19,ss:56," but":[],Format:56,"/javascript":18,"\u3002limit":28,"\u7d22\u5f15":[31,2,8,3,38,68,20,74,44,37,70],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[18,20],"\u30b0\u30eb\u30fc\u30d7":[68,67,28,79],"_values":18,sa:[19,64],"\"starttime":[23,3],EXACT:37,",{":[23,3,17],se:29,"\u5e02\u5185":27,"\u304b\u308f\u308a":38,Raccoon:36,"\u540c\u3058\u6570":14,"=\"":[23,28],"_init":[18,56],".\n":[40,73,17],"\u82f1\u8a9e":[1,18,62],"\u9ad8\u901f":[36,2,27,3,14,68,8,63,37,18,5],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":2,"\"\"]":[],"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":73,Grease:44,"\u542b\u307e\u308c\u308b":[37,3,44,14,68,38],"=/":[14,88,70],"\u30a2\u30c9\u30ec\u30b9":[14,18,55,17],"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":20,"/fedora":70,"_VIEW":8," just":[15,56,16],Similar:[],"\u56f2\u307f":14,"\u4e0a\u66f8\u304d":39,"-libedit":20,"\u7e70\u308a\u8fd4\u3057":[17,62],"\u3092\u3054\u89a7\u304f":68,"\u3002gdb":88," at":[25,56],"\u5272\u308a":[44,9,12],"\u78ba\u5b9a":19,"\u56de\u7e70\u308a":17,"\u7d44\u307f\u5408\u308f":[22,37,68]," ${":62,"\u3042\u308b":[71,3,72,36,73,27,75,52,17,76,55,40,29,63,5,6,32,44,33,8,9,83,34,58,84,81,60,61,12,62,13,37,64,38,65,0,82,57,39,85,28,18,41,80,19,68,20,43,69,89,48,86],RK:29,"_PUSH":37,"float":[],"-alloc":83," firefox":62," sjis":14,"\u542b\u3081\u308b":[18,3,40],"\u3053\u308c":[59,37,67,44,7,68,45,15,28,89,38,39,64,29,41,18,40,74,4,62]," Japanese":53,records:56,"\u6ce8\u76ee":28,"\"version":23,"&..":55,not:[22,37],now:[31,77,34,26]," checks":[],"\u3086\u304d":72,"\u3059\u306a\u308f\u3061":44," description":[89,74,28],"\u53d6\u3063":[],name:[36,3,72,67,14,84,8,43,9,44,39,58,89,81,41,12],"\u500b\u3005":[38,37,86],Simple:[]," operators":[],"\u7570\u5e38":[84,17],"_dat":[18,40],"_dataset":90,"[@":[18,40]," link":44,"\nof":[],"\u8aad\u307f\u8fbc\u3081\u308b":73,"\u534a\u7121":18,el:70,domain:[14,67,9,12,55],en:[29,19],"\u30b5\u30fc\u30d0\u30fcID":18," Terms":[38,84,3,28],"\u306f\u3058\u3081":[31,19,78,86,4,62],"\u4e26\u3079":[31,3,30],"\u53d6\u308b":22,ea:56,"\u6700\u5f8c":[38,40,20,17,44]," expand":[],"\u3002query":28,"\u5b9f\u4f8b":[31,47,37,46],"\u624b\u6bb5":37,"\u30d1\u30fc\u30b9":[18,22]," Entries":[73,28],"\u70b9\u6570":44,"\u4e00\u77ed":68,"\uff1f\u3000":17,"\u6642\u9593":[3,44,68,20,15,28,17,89,18,61],"\u7a7a\u304d":84,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":81,Added:[],"\u6642\u4ee3":68,Welcome:28,"\u518d\u69cb":18,"\"search":[29,64,45],"\"type":19,"-default":[14,40],"\u3065\u3051":86,correct:[19,64],"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":68,END:23,"_content":28," segments":84,KBytes:17,"\u89e3\u91c8":[73,20,37],"\u56f2\u3080":3,"_string":88,org:[55,67],"byte":17,"\u7d20\u65b9":68,"/pub":70,"\u62ec\u5f27":[75,28],"\u7d50\u5408\u5f0f":59,"\u30b3\u30fc\u30c9":62,"\u4e8b\u9805":[35,31,61,26,17],Money:36,"[windows":[18,40],Karmic:88,"\u6b21\u90ce":36," key":[],"\u30db\u30b9\u30c8":[14,18,0,55,17],yum:[40,70],"-host":17,Installer:[31,70],"] [":17,".gz\u30d5\u30a1\u30a4\u30eb":70,"\u7d44\u307f\u5408\u308f\u305b\u308b":59,"\u30d9\u30af\u30bf\u30fc":[18,61],"\u3078\u3068":55,"\u3078\u306e":44,"\u7a2e\u5225":12," country":67,"\u30dd\u30fc\u30c8":[14,23,0,55,17],There:[],"\u8a71\u3057":47,"\u4e00\u610f":[14,8,58,79],"\u5909\u66f4":[31,2,3,19,38,84,20,52,17,24,23,18,40,79,86]," LOCALE":62,"1C":[],"\u305f\u3069\u308b":36,fast:28,"\nscripts":[],"\u81ea\u5df1\u7d39":89,"\u9078\u3073":4,message:[41,82],".'":[8,58],"\u9078\u3076":68," TokenMecab":38,size:84,"\u53d6\u308a\u9664\u304d":37,truncation:18,SET:17,"\u7d5e\u8fbc":[31,39,30],"\u8907\u96d1":[37,28],"\u914d\u7f6e":3,COLUMN:[44,58,3,12],"\nalso":[],"\u5bfe\u7b56":[38,31,24],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[22,63],"\u5411\u3044":28,SEE:16,"\uff08.":70,">\n<":23,"\uff08,":3,"\uff08-":3,"\"sphr":[63,5],SEN:25,"\uff08 ":27,"\u30bd\u30fc\u30c8\u30ad\u30fc":[2,19,28],Debian:[18,40,88,70,31],"\u5f53\u3066\u308b":44,"_preparer":[29,64,19,45],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":68,"\u3044\u308c":44,HASH:[],"\u3044\u308b":[2,71,3,27,75,17,76,55,40,29,74,4,6,31,32,44,78,8,9,38,80,58,59,81,12,62,36,37,64,14,84,15,39,85,28,18,41,88,89,22,20,90,70,68,48]," engine":[64,45,4,19],"_HUGETLB":18,"#'":14," selected":[]," Solaris":18," logged":56,"\u300ctitle":[],"\u30d1\u30a4\u30d7":[8,58],github:62,"\u62e1\u5f35":[18,51,30,28,31],"\u30a8\u30f3\u30c8\u30ea":28,"\u8fd4\u4fe1\u5143":89,"\u5c0f\u3055\u304f":[63,15,5],"\uff08@":[18,20],"\u8fd4\u4fe1\u5148":89,"\u30d5\u30a9\u30fc\u30e0":[22,59],"\u306b\u5bfe\u8c61":18,"11":[38,39,28],"10":[3,17],Precise:[31,70],"\u652f\u63f4":4,"\u540c\u6642":[68,39,66,17,86],"-httpd":[18,4,16],"16":39,"\"\u4e8c":29," nonexistent":[],"\u3002ID":8,"/gat":[39,3,67],"\n..":73," implementing":[],"\u5229\u7528\u4f8b":68,"\u5404\u547d":17,"\u6e2c\u5b9a":17,"\u7cfb\u5ea7":[13,63,5]," indexed":[],browser:62,and:22,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":35,"\u3044\u304d":3," name":[44,89,73,8,43,28,58,81]," \u307e\u305f":[23,28,17],CORE:17,"\u3044\u3046":28,DD:56,"\u4e16\u754c":[13,44,63,39,61,5],Sites:73,sae:[19,64],"\u4e21\u65b9":[89,72,68,15,28,59,29],"\u30b3\u30f3\u30d1\u30a4\u30eb":40,"\u30b3\u30f3\u30d1\u30a4\u30e9":18,"\"application":18,"/ubuntu":70,"_circle":[36,77,26,31,89,39,18,5],"\u53b3\u5bc6":29,"\u30ea\u30b9\u30c8":[36,3,14,27,75,9,28,12,62],Web:[2,28,59],engin:[29,19],"\u591a\u5f69":68,"\u914d\u5e03":70," dump":[18,73],"\u3044\u3066":28,"\u5ea6\u5408\u3044":38,"\u3044\u3064":29,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[1,31,47]," inv":17," the":[56,62],"-with":[40,70,28],"\u30d5\u30e9\u30b0":[6,2,57,3,72,44,65,8,43,54,84,80,58,81,40,76,18,48,82],"@naoina":40," operation":[]," objname":[71,80],".ne":25,"[[\"":84,"\u5fdc\u7b54":68," LD":[]," LC":62,ongaeshi:20,"_suggest":90,buffer:84,price:44,"\u5148\u982d":3,debhelper:18,"\u5c0e\u5165":[10,86,88]," Comments":[89,73],beta:25,"\u306b\u3064\u3044\u3066":[49,71,3,73,74,75,52,28,54,29,89,63,5,6,32,44,33,8,9,83,34,58,84,81,60,61,12,82,13,37,64,14,65,57,86,18,76,42,80,19,68,43,69,45,47,48]," moritars":41,"\u30a4\u30f3\u30dd\u30fc\u30c8":40,pair:[29,64,19,45]," main":70,"\u81a8\u5927":68,"\"saerch":64,"_NUMBER":55,"_STAMP":56,"\uff09:":[74,70],Bigram:[38,89,74],"\u79fb\u52d5":[6,7,18],"\u4e2d\u65ad":18,"\u7ba1\u7406":[31,2,74,14,84,8,85,55,40,18,30],MeCab:[18,2,20,70,40],"\u30b9\u30da\u30fc\u30b9":[18,28],"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[36,50,3,67,31,44,78,39,18,30],"\u4e00\u81f4":[31,37,3,19,38,89,8,74,28,90,59,72,29,30,51],"**":82,"\uff09 ":[18,20],"\u30b5\u30fc\u30d0":[57,73,75,52,17,76,55,6,31,32,33,71,9,83,80,58,84,81,12,82,14,65,85,18,68,43,8,70,48],"\u3066\u304f":88,"\u539f\u56e0":[38,31,24,17],precise:70,"\u9589\u3058":18,"\u5217\u8981":8,show:2,"\u5ea6y":61,"\u76f4\u4e0b":18,"\u65b0\u5bbf\u99c5":39,"\u3057\u304b":[44,41,28,62],"\u9ad8\u307e\u3063":68,Comments:89,"\u4ef6\u6570":[3,38,74,75,52,28,79],"#SET":17,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[31,7,20,17,46,18,10,40,87,47,62],"\u5217\u6307\u5411":[14,68],"\"#\"":17," popular":[],threshold:18," found":[]," requests":62," contact":62,"\u3002weight":44,"\u77ed\u6642\u9593":68,xml:[23,85,40],"\u3002Time":89,"\u6982\u5ff5":86,"\u5024\u3088\u308a":[37,28],"\u30bf\u30a4\u30c8\u30eb":[44,36,41,28],title:[36,3,67,44,55,41]," LocalNames":73,"\u89e3\u6c7a":[18,84],"\u306a\u3093":86,"\u306a\u308c":86,"\u305f\u3057":36,"_ADJUST":37,"\u306a\u308a":[8,3,51,63,75,17,55,29,5,44,71,79,38,80,58,59,72,10,61,36,64,14,15,39,85,28,18,41,19,68,89,23,86],"\u306a\u308b":[2,8,3,51,73,63,17,5,44,57,71,38,80,58,61,62,13,37,14,15,28,68,20,90,70,45],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcAPI":40,MessagePack:[18,40,23],"\u4e00\u6642":8,"-server":[14,18,40],wheezy:70,get:18,"\u5f53\u8a72":86,"-setuptools":10,"((x":61,clang:88," ALSO":16,"=\u5024":[],"\u5f8c\u8ff0":37,"\u51fa\u305b\u308b":68,"1\u6708":[44,61,28],"\uff11\u5bfe":66,geo:[13,2,63,26,31,89,36,20,77,39,40,18,5],For:53,"\u8a73\u7d30":[3,38,28,85,17,61,88,62]," Web":[],"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":28,summary:17,":')":[8,58]," scores":[],"[:":55," wget":[],"\u300c\u697d\u3057\u3044":74,"\"string":[],"\u76f4\u63a5":[22,73,89]," \uff08":[29,64,45],"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":20," lenny":18,"IP\u307e\u305f":[],Sending:62,sear:29,"# ":[14,63,62],"\u884c\u756a":18,"*'":28,"\u7a7a\u767d":[3,14,68,8,75,28,38,45],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[89,2]," similar":[],"\u8b58\u5225\u5b50":22," become":25,"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":18,"(scan":88,"\u8a18\u6cd5":41,"\u70b9\u4ee5\u4e0b":44,"<gqtp":17,"\u306a\u305f\u3081":[],".content":[15,28],"\u77ed\u7e2e":75,"-threashold":[38,20],"\u8fd4\u3063":89," arg":37," are":[56,62]," zero":[],"\u30bf\u30a4\u30d7":[18,17],"\u5229\u7528":[3,73,74,28,29,30,31,44,38,61,62,27,64,14,39,85,17,18,88,68,63,70,45],"\u3053\u3053":[3,19,38,89,28,44,39,51],"\u4f9d\u5b58":[22,40],jobs:17,"\u5206\u985e":44," ShortText":[36,3,51,67,38,89,73,8,15,28,44,58,17,41,72],"3cf":3,"\u30ed\u30fc\u30de":29,"\u3057\u3088":[37,44,15,75,76,18],"#{":56,"\u672a\u8a2d":40,"\u3088\u3063\u3066":[39,27,61,54],"\u306a\u3069":[3,74,17,54,55,29,6,44,68,61,62,37,64,38,84,15,28,18,89,27,22,70,45,86],Each:56," target":[],"\u306a\u3067":29," difference":[],"\u306a\u3063":[84,20,3,38,68,8,28,44,55,40,18,41,89,88,86]," be":56,"\u5206\u5272":[18,8,3,74,68],"@tomotaka":18,"/hoge":14,"\u306a\u3059":13,"\u306a\u3055":[8,85,69,28],"\u8fd4\u3059":[2,57,51,65,52,17,76,6,71,80,83,34,58,81,82,14,39,18,19,20,43,8,48],"\u30b3\u30ed\u30f3":[8,58],"\u306a\u3052":51,nogpgcheck:40,"\u3002gqtp":[0,55],"\u306a\u304f":[2,27,3,51,44,68,20,17,40,18,47],"_otoj":88,"-unauthenticated":70,"#]":81,"\u306a\u3044":[2,3,73,27,17,40,29,74,4,44,8,38,83,59,61,35,84,37,64,14,0,66,15,85,28,18,88,19,68,20,90,70,23,86],"\u306a\u3046":89,"[,":5," by":[40,56]," records":[],"\u6b21\u56de":86,"-mecab":70,"\u4e00\u822c\u7684":[],"\u975e\u4f9d":70,FSF:40,"\u30fb\u5168":43,"\u5404\u7d22":3,"-groonga":17,"\u306a\u306b":29,"/WGS":39," rewrited":25,"/wheezy":[],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":74,"\u76f8\u5bfe":[18,28],"} ":[56,62],"\u30b9\u30ad\u30fc\u30de":[73,15,28],"\u5f15\u304d\u51fa\u3059":68,"}/":62,"}.":28,curl:40,"\u3002http":[],".select":17,"\u8868\u8a18":[44,18,39,61,51]," followee":89," Time":[38,44,17,89],"\u524d\u5f8c":[14,3],"\u3002callback":37,"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":14,ja:62,"\u5468\u4e0a":5,"<encoding":14," follower":89,Updated:[],"\u5f15\u6570":[2,71,3,73,63,75,52,17,76,55,5,6,32,44,33,8,9,83,80,58,84,81,60,12,82,13,37,14,65,0,57,85,28,22,43,69,48,86],"\u4ee3\u308f\u308a":[14,63,55,76],Bug:47,"\u4e0b\u3055\u3044":[40,70],"'ja":62,engine:[29,19,45],"\u306a\u305c":[29,64],enable:[83,20],"\u3057\u3066":[1,36,3,38,89,20,28,10,88,62],"[admin":[18,40],"\u5b57\u5c0f":28,"/vdw":[39,3,67],"_tokenizer":[3,51,38,89,8,15,28,17,41],"\nstarted":[]," res":17," [\"":[19,38,84,9,89,12],"\u6607\u9806":[39,3,28],"\u5b9f\u884c":[49,71,3,26,73,75,52,17,76,55,40,29,6,31,32,56,33,8,9,79,83,80,58,84,81,12,62,37,64,14,65,82,57,39,85,28,18,88,19,68,43,90,70,45,47,48,86],UInt:[36,3,51,67,38,20,15,9,28,39,55,41,61,12,72],"\u5165\u3063":[29,41,3,88,36],begin:0,"\u6240\u5b9a":[38,74],"=yes":[40,88,28],Mitsuhiro:20,ruby:40,sound:64," fork":62,"\u30bb\u30df\u30b3\u30ed\u30f3":17,"\u304a\u3051\u308b":[35,36,3,44,68,61]," configure":[38,40],"}]":[44,23,75,3,17],"\u4e0d\u5b8c\u5168":18,"\u9032\u3093":68,"\u30b7\u30b0\u30ca\u30eb":18," allocation":[],"\u7406\u89e3":[3,28],"\u3002filter":[39,76],QUERY:56,"?table":55," Shimada":20,"'\"":40,"\u57fa\u672c":[31,3,38,68,74,44,30],"\u306a\u3057":[64,44,8,15,76,86,70,61,5],score2:37,"[grntest":18,"\u3002DB":[18,37,3,55]," many":16,"\u4e0d\u5909":79,"\u8af8\u6761":35,"\u5fc5\u8981":[2,3,51,75,17,55,40,29,4,8,10,62,37,64,38,15,85,28,18,88,68,20,70,45],"\u578bn":28,"\"This":3,Content:18,"|')":[8,58],"\u305f\u3068\u3048":38," Yuki":18,"'.":62,saerc:[19,64],"\u3002squeeze":88,"-document":14,IEEE:61,"\u633f\u5165":[14,3],"\nSUFFIX":37,"\u8f9e\u66f8":[38,2,20],"\u3059\u3063\u3071\u3044":51,develop:86,"\u8aad\u307f\u51fa\u3057":68,"\u91cf\u8a08":2,"\u3002id\u30d1\u30e9\u30e1\u30fc\u30bf":76,"\u3054\u89a7\u304f":[3,88],html:[10,47,88,62],"<path":14," once":[],"-dir":17,"\u516c\u5f0f":[18,70],"\u3002\u3044\u307e":40,"\u5206\u5c90":88,"\u3002\u3044":37,favorited:89,"_at":[38,40,20],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[31,15,26],"\u306a\u304a":74," xml":23,"0\u30d9\u30fc\u30b9":28,IP:[55,17],".po\u30d5\u30a1\u30a4\u30eb":[47,62],"\u4ee5\u4e0b":[3,73,27,75,17,55,29,4,5,44,8,9,38,58,59,10,61,12,62,35,36,84,37,64,14,65,74,39,85,28,18,88,89,19,67,22,63,70,45,23,82],IT:36,"\u7b49\u4fa1":[20,28],"\u4e26\u3073\u66ff\u3048":[],"\u53c2\u7167":[31,2,19,67,36,38,68,20,28,44,85,17,89,18,61,30],"\u4e00\u884c":[14,20,17],favorites:89,IN:25,"\u3059\u3079\u304d":37,"-origin":[],"\u5b9f\u88c5":[18,85,28,62],"\u3079\u3066":28,montywi:40,ID:[8,3,56,14,84,20,9,44,12]," added":25," hit":[],"\u305d\u3057\u3066":[44,29,89,68],"\u653e\u68c4":75,It:[56,28],"\u5217\u8868":61,"\u3059\u3079\u3066":[42,3,20,28,17,18,86],"\u53d6\u308a\u51fa\u3057":[8,3],"\u300chsiomaneki":89,In:[],"\u53d6\u308a\u51fa\u3059":[44,22,20,37],"[geo":18,If:56,"/unit":88,"\u56db\u89d2":27,"(x":[],"\u6771\u4eac\u90fd":[38,89,74],"\u4f5c\u6210\u6e08":14,"\u5927\u898f\u6a21":68,"\u3002\u3059\u3079\u3066":[88,62],"\u30af\u30a8\u30ea\u30da\u30a2":4,gdb:88,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[14,20,85],BOM:20,"\u3088\u304b\u3063":38,"\u5171\u6709":[68,31,53,36],"\u5b9f\u7a3c":0,".dll":17,"\u30ab\u30e9\u30e0":[2,71,3,51,26,27,75,28,68,40,29,4,30,72,31,44,8,79,38,80,58,59,81,61,12,36,64,14,15,39,18,41,89,19,67,22,20,43,45,48],speed:4,"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[31,55,30],"\u3046\u3061\u3044":14,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":83,"\u3002none":14,"(_":[29,64,19,45],"/false":[44,2],"\u3002\u307e\u305a":38,"(R":17,"\u30d1\u30e9\u30e1\u30fc\u30bf":[31,3,51,67,22,74,0,28,76,39,55,89,18,41,30,86],"_extract":25,"\u4f4e\u3044":[38,28]," indicates":56,"\u5ea7\u6a19":[13,63,89,27,18,5],blog:[],"\u56f0\u96e3":68,"\u63a2\u3057":[68,17],Uint:[60,3],"\u9577\u65b9\u5f62":18,"_HASH":[36,3,67,44,89,73,8,15,9,28,41],"_syntax":[],"\u30ad\u30fc":[8,3,14,20,28,79,40,61],"\u5f37\u5236":2,TokenTrigram:8,"\u6c4e\u7528":[14,17],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":[68,18,31],"\u542b\u3080":[37,3,19,22,66,8,0,28,58,89,41,74],"_SECTION":[89,41,58],"(<":37,"(=":[8,37],"DB\u30d1\u30b9":[],"\u8a00\u3048":38,"\u5c55\u958b\u7528":18," non":[],"\u697d\u3057":[38,74],Mecab:40,"\u542b\u3093":[37,64,44,28,59,4],"((":[],"()":[13,2,37,22,20,63,90,39,34,69,40,18,47,60,5],"\u8d8a\u3048":38,"(,":[]," music":56,"(\"":[14,3,28],"\u4f1d\u7d71":68,"( ":[14,59],"(!":37,TODO:[50,51,16,21,28,59],"('":[3,14,8,75,28,58,79]," Yoji":18,"\u3068\u304a\u308a":[35,17]," then":[]," them":[],"\u9069\u5b9c":51," format":[23,25,56,62],ill:74,Kenichi:[18,20]," very":28,"\u3002'":28,"\u5207\u308a\u6368\u3066":44,"\u95a2\u308f\u3089":17,Warning:56,"\u4f4e\u901f":67,"\u9650\u308a":[74,38,8,75,79,37],output:[36,3,19,38,89,20,43,28,44,39,85,40,23,56],"8\u3064":17,"\u5c5e\u3059\u308b":[61,9]," datasets":16,"\u5b9f\u9a13":[18,40],"\nPREFIX":37,LocalNames:73,conditional:19,"_SUCCESS":[56,28],"\u30b7\u30b9\u30c6\u30e0":[1,31,68,15,89,18,30],"\u5de6\u53f3":3,"},":[36,3,51,89,15,28,17,72],"_VECTOR":[44,36,58,89],"\u30ec\u30b9\u30dd\u30f3\u30b9":18," page":[],"\u671f\u5f85":68,"\u30d5\u30a9\u30f3\u30c8":10,"\u985e\u7d39":38," command":[40,55,16,86],truncate:18,"\u307e\u307e\u3067":38,confirm:62,"\nfulltext":[],"\u30c7\u30fc\u30bf":[2,3,72,26,73,27,75,28,68,40,29,4,30,31,44,61,36,37,64,38,15,18,89,19,22,20,70,45],"\u65b0\u5bbf":39," cd":62,automake:20,"\u9234\u6728":40,"\u30de\u30b7\u30f3":14,"@uzulla":18,"& _":39,mooz:18,Ruby:[40,25,68],"\u542b\u307e":[37,3,74,75,9,70,45,12]," check":88,"\u7a7a\u6587":61," binary":[23,68],"\u8a18\u4e8b":15,Term:[8,58,9],"\u5168\u6587\u691c\u7d22":59," Float":44,"-suggest":[49,31,19,26,64,20,16,90,18,4],"\u306f\u3044":44," CODE":23,"\n{\"":[29,64,45],SiteDomain:[55,67],"\u597d\u304d":62,"; ":[14,17],"\u306f\u305a":17,"-static":18,"\u542b\u3080\u5024":[14,3],"CPU\u30b3\u30a2":14," schema":16,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":17,"\"s":29,"_OP":37,"\u306f\u3069":28,"_OR":[37,55],"\u66f8\u304d\u5f8c":74,"\u5ec3\u6b62":86,"_escalation":[20,28],"\u30e6\u30fc\u30b6\u30fc":[36,89]," condition":[],"\u306f\u307f":47,"_itoh":18,"\u304b\u3048\u308b":67,";\n":17,Katakana:29,CUTTER:88,"\u5f8c\u4e8c":86,"@soundkitchen":18,"\u3082\u3061\u308d\u3093":17,"/admin":[14,18],"-Type":18,"/null":2,"\u884c\u76ee":17,"\u9ed2\u3044\u70b9":27,"\u30aa\u30d5\u30bb\u30c3\u30c8":19,"\u8abf\u6574":38,"\u5c0f\u6570\u70b9":44,"\u53f3\u4e0b":[13,2],"\u53f3\u4e0a":2,"\u30c1\u30e3\u30f3\u30af":84,"=title":55," kana":[29,64,19,45],"\u30a8\u30ed":89," recrods":[]," []":12,"\u8a55\u4fa1":37,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":88,log:[6,31,42,56,26,14,65,18,82],NO:2,"\u306a\u304c\u3089":[40,3,28,68],"\ndeb":70,"\n``":[83,84],"\u591a\u5be1":22,"\u53d7\u3051\u53d6\u308a":[37,3],"\u30e9\u30f3\u30ad\u30f3\u30b0":3,"\u77e5\u8b58":17," mode":37,"\u63d0\u6848":[31,19,78,20,40,18,4,45],"d\u30ad\u30fc":3,"/modules":20,"/query":[],",\"This":3,"\u3082\u3046":[41,60,15,63],"\nCRIT":[65,82],"\u30aa\u30fc\u30d7\u30f3":18,complete:[29,40,4,19]," retrieving":[],"/configure":70,"\nare":[],"\u3082\u3057":[28,17],"\u534a\u89d2":3,"\u4e2d\u7a0b\u5ea6":70," Video":36,"(ShortText":51,"\u6b63\u898f":[40,8,3],hsiomaneki:89,",\"links":44,"\"Items":73,pull:62,gtqp:55,IDENTIFIER:22,"\u3082\u3063":[],"default":[3,51,38,89,86,8,15,28,17,23,41,55],"\u3082\u306e":[37,3,51,64,14,89,86,8,0,17,44,28,70,69,41,62,5],"\u30b3\u30b9\u30c8":15,Month:[36,56],"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[6,86,17],"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":84,EXIT:16,"\u4f5c\u3063":[38,18,89],"\u3088\u3073":37,"\"sequence":[29,64,45]," using":25,"}\n":[36,19,64,44,89,15,28,45,72,29,56],"_WEIGHT":58," posted":89,"\u30d5\u30a1\u30a4\u30eb":[49,2,71,3,26,73,75,52,17,76,18,6,31,32,56,33,8,9,83,80,58,84,81,12,62,37,14,65,57,85,28,40,82,43,70,47,48,86],"_CREATE":37,USE:40," enabled":56,"/hostname":[14,17],"\u65e5\u672c":[13,63,39,29,61,5],"\u3082\u308c":51,"\u30de\u30fc\u30b8":62,"\u30ec\u30b9\u30c8\u30e9\u30f3":68,"\u65b9\u5f62":[63,5],an:[],Blog:41,ar:[38,74],"\u901a\u3058":[],"\nerror":[65,82],file:[2,20],"+ y":61," universe":70," directory":[],"\u4f5c\u308a":[29,41,64],"\u4f5c\u308b":[36,66,64,89,62],Cutter:88,GByte:35," logical":[],"\u53d6\u308c\u308b":75,"\u5bfe\u5fdc":[31,2,20,3,19,64,14,68,66,8,75,90,34,37,29,18,40,27,4,88,45],"\uff08true":44,"\u95a2\u4fc2":[31,42,37,36,44,89,28,40,30],"\u56db\u89d2\u5f62":[]," sleepy":15,"\u4e0e\u3048\u308b":[14,75,39,0,86],"/IPAexGothic":10,".jp":[73,25,28,53],"\u3002Munin":70,"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":55,"}|":56,"\u518d\u5e30":[37,80,48],"\u8aad\u307f\u53d6\u308a":[14,75],"\u8a18\u8ff0":[37,3,51,14,22,17,89]," rpm":70,string2:60,string1:60,"_type":[36,63,3,72,67,44,89,73,8,75,17,85,79,23,41,5],"\u9001\u308a\u65b9":[1,31,47,55,62],KyTea:40,"\u4e0a\u9650":[35,31,66,44],"\u30c7\u30d0\u30c3\u30b0":84,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":23,"\n% ":62,"4Kbyte":[],coverage:88,"[fedora":40,Entry:[43,8,75,9,76,58,12],"\u4e94\u5165":18,"\u7d50\u5408":[59,22,37,31],"]\n\n":[89,55],"_value":[18,20,79,40],"\u30ea\u30bd\u30fc\u30b9":15,"\u5b9a\u7fa9":[57,37,3,43,14,22,8,15,9,28,58,79,81,48,61,12],"\u65b9\u5f0f":[14,68,41,3],":mm":56,"-count":83,"\u30ab\u30d0\u30ec\u30c3\u30b8":[47,88],"\u6c17\u306b":62,"/select":55,"\u305d\u3053":[38,44],Year:56," location":[44,36,39,89],"-threshold":[14,38,28]," \"\u308d\u3086\u304d":72,"\ntreated":[],SIS:18,"\u6587\u6cd5":[31,39,30],SHIMODA:20,"\u4ed8\u968f":[48,81],"\u30c7\u30fc\u30bf\u30d9\u30fc":18," default":56,port:17,"\u5343\u4e07":35," `":[23,63]," equal":[],"\u308f\u304b\u3061":74,"/oneiric":[],"\u3002name":8,"-P":0,"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":18,"\u6761\u4ef6":[31,37,3,19,14,22,20,43,28,89,38,39,59,40,61,30,72],"-]":28,partial:37,"\u7d30\u304b\u304f":22,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":18,"\u8fd1\u3044\u9806":27,rd:[38,74],"-talk":53," haystack":37,"-a":[14,40],"\u30d3\u30c3\u30c8":44,"-c":[14,55],"-m":0,"-l":[14,56],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc":51,"\u7b26\u53f7":[44,61],"-i":[14,17],"_rc":28,"-t":14,"\u304a\u5f85\u3061":53,"-p":[14,55,17],"\u304b\u304b\u308b":[15,3],"\u304b\u304b\u308a":15,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[31,20,24,17],homepage:17,"_SIS":[8,74,72],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":23,"\u5f0f\u4e2d":22,"-conditional":18,"\u95a2\u9023":[6,31,87,3,44,75,65,45,43,28,68,80,40,18,47,76,4,82],"\u8868\u578b":8,"\u4ed5\u7d44\u307f":40,"\u5dee\u5206":17,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":18," as":62,"\u3002column":37,"***":82,"\u8aad\u3093":47,"\u5438\u53ce":[3,51],"/C":68,",\"tags":36,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[31,14,68,20,0,17,85,70,18,10,40,47,88],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[18,70],"\uff1f ":17," between":[],pre:25,unigram:8,GROONGA:[],"--":[36,2,51,14,89,20,28,76,38,39,80,85,17,40,18,90]," implemented":25," Please":62,"\u3057\u307e\u3057\u3087":39,"\u304a\u3088\u3073":[3,14,68,8,44,40],"\u4f4e\u6e1b":20,"\u5909\u308f\u308b":38,"\u5909\u308f\u308a":[84,39,74],"\u306f\u3053\u306e":28,"<protocol":14,"\u89aa\u5207":20,"\ndatails":[],"\u4f55\u3089\u304b":61,"\u30a2\u30b9\u30bf\u30ea\u30b9\u30af":28,VIEW:14,"\u300c\u6771\u4eac\u90fd":38,"\u30d6\u30c9\u30a6":51,"\ngronga":4,"\u771f\u507d\u5024":[44,31,30],TokyoGeoPoint:[13,63,39,18,61,5],"\u884c\u3048\u308b":36," log":[31,56,26]," price":44,"x\u5ea6y":[],"\u5927\u5225":44,"\n> ":[36,3,19,67,44,15,39,72,41,51],ECMAScript:[22,28]," {":[36,3,19,67,64,44,89,28,55,45,72,29,41,51],TSV:23,"\u518d\u73fe":38,"/centos":70," searched":[],"\u6c42\u3081":[68,60,63]," point":[40,63],"\uff1a\n":[],"\u7d22\u6642":20,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":88,"\u3067\u306b":[38,15],"\u30ea\u30c6\u30e9\u30eb":[18,2],CPU:[68,17],"\u5927\u5207":68,"@s":20,"\u6700\u65b0":18,version:[18,3,55,23],"_append":37,"_NO":[38,20,73,8,15],"\u6e2c\u5730":[13,44,63,39,61,5],"_modified":89,"\u8aad\u307f":[29,2,68],memcached:[88,31,55,30,68],"\u793a\u3059":[13,63,72,44,8,75,9,28,12,5],Pull:62,"\u307e\u3057\u3087":[36,3,28],hash:89,tags:36,"\"Table":14," rather":[],"\u30c6\u30b9\u30c8":[31,38,89,20,46,70,40,47,88]," coverage":88,"\u30ce\u30a4\u30ba":[38,64],"\u88dc\u5b8c\u8a9e":29,"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":14," testing":[],DLL:[18,40],"\u304b\u304b\u3063":28,"\u306b\u95a2\u3059\u308b":[31,26,89,28,53,29,18,40,61],"\u30aa\u30b9\u30b9\u30e1":70,search:[29,64,45,4,19],TokenDelimit:[8,45]," clone":62,Paging:[]," Kawaji":40,"\u975e\u63a8\u5968":40,"-Wno":18,"\u540c\u3058":[6,31,2,3,19,44,14,68,86,20,9,17,38,64,85,28,18,41,61,12,24],LZO:40,"\u308f\u304b\u308a":20,SIGUSR:18,"\ninfo":[65,82],"\u3068\u305d\u306e":86,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":28,"\u30b3\u30e1\u30f3\u30c8ID":89,followee:89,"\u8ad6\u7406":[35,68,37,28,84],hoge:[22,60],"\u30ce\u30fc\u30c9":40,"\u30ce\u30fc\u30c8":[18,3,19,70,62],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":74,"\u30d3\u30eb\u30c9":[18,20,40],"9\u3064":3,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[31,47,87],follower:89,"\u3067\u3059":[1,3,51,73,27,75,17,54,55,29,74,4,5,7,68,8,9,79,38,84,61,12,62,35,37,64,14,0,15,39,85,28,18,41,88,89,19,67,22,63,44,70,45,23,47,86],"\u307e\u308f\u308a":47,ICHII:18,"\u672a\u77e5":40,select:[2,3,51,26,74,28,55,18,72,31,56,44,38,36,14,39,86,40,41,42,20,90],"\u300c\u697d\u3057":74,"\u78ba\u7387":19,"/atv":[39,3,67],"\u69cb\u6587":[31,22,28,21,90,59,40,11],"\u3002\u3002":27," less":[]," supported":[]," apt":[40,70]," SWIG":25,mecab:8,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[83,32],"\u3002\u300c":[36,41],"\u7a4d\u7b97":[37,28],Baseball:36,Block:44,"\u3002\u300d":38,"\u6c7a\u307e\u308b":3,"\u6c7a\u307e\u308a":[],"\u5ea6\u7d4c":[],"_PATH":[85,23,3,55,70],LTS:[31,70],fulltext:[],"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":36,Intel:17,"-tokenizer":70,objname:[71,80],ivh:70,"\u518d\u5229":[79,28],"_gqtp":17,"@lists":53,"\u3053\u3068":[2,71,3,51,36,73,27,75,52,17,54,55,40,29,81,89,4,5,6,32,44,33,8,9,79,38,34,58,83,59,72,10,60,61,12,62,13,84,37,64,14,0,66,15,57,39,85,28,18,41,76,88,80,82,67,22,65,20,43,63,69,70,68,23,47,48,86],So:[],"\u3053\u306e":[3,51,74,17,54,40,29,5,44,78,8,38,62,36,37,64,14,15,39,28,18,41,76,89,67,68,63,45,23,47],git:62,"[load":40,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":88," parameter":[],none:41," return":56,"\u3053\u305d":89,Int:[36,3,19,67,64,38,89,20,28,44,39,69,45,29,61],"-databases":[3,55],Facet:[],"\u30d7\u30ed\u30f3\u30d7\u30c8":23,"++":[68,18,40],"\u7e70\u308a\u8fd4\u3057\u6570":17,abandon:75,"-debug":20,deb:70,"\u3002KEY":[74,3],"\u6bd4\u8f03":[40,20,28,17,59],"\u79fb\u884c":[18,86],Codes:62,"\u4e2d\u5fc3":5,scan:88," Nonexistent":28,"\u30ea\u30cd\u30fc\u30e0":18," ":[71,57,51,65,52,17,76,55,29,72,6,44,8,80,58,84,81,82,36,37,64,83,0,15,39,28,41,19,89,43,45,23,48,86],accept:20,"\u9001\u4fe1":[71,73,75,52,17,76,55,6,32,33,57,9,80,58,84,81,12,82,83,65,43,8,48],sphere:63,"_OBJ":18,"\u9664\u53bb":20,"\u958b\u767a":[31,68,46,86,70,89,47],"\u3064\u3044":89," '":[36,74,3,19,44,14,89,45,15,28,38,39,64,40,29,62,61,56]," dataset":16,"\u7406\u7531":[68,28],"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":18," useful":[]," original":[73,72]," ..":[84,3,19,28,62]," Doc":51,"-address":[14,18,40],snippet:25,"\u3044\u308d\u3044\u308d":[44,31,30,89],"\u4f55\u500b":28," aptitude":[10,88,70],"=dat":40,"\u52d5\u7684":[31,74,3,26,68,20,15,40],"\u8db3\u308a":18,"\u5b9f\u884c\u4f8b":[36,3,51,67,64,44,89,86,15,39,55,45,29,41,88,72]," (":[35,31,25,26,79,37,70],"\u8fd4\u308b":20,"\u3002COLUMN":3,"\u3002drilldown":[67,28],"\u591a\u3059\u304e":20," .":[38,88,17],"[dat":40,"\"localhost":55,"\u6d41\u308c":[47,62],"\u8a9e\u5f59\u8868":[8,3]," three":[44,3]," /":[3,19,14,74,0,38,55],"/afr":[39,3,67],disable:18,"\u304a\u9858\u3044":17,"_text":88,"\u91cd\u8981":[68,15,88,28,54],"\u306b\u3059\u3050":15,"\u30cf\u30a4\u30d5\u30f3":3,"\u30da\u30fc\u30b8\u30f3\u30b0":28," tsv":23,"-max":[14,18]," files":56,Solaris:40,"_builtin":18,callback:37," segment":84," designed":[],Linux:17," path":56,"\u4e00\u5bfe":44,"3\u4ef6":89,":\u79d2":89,uninstall:40,replied:89,"\u666e\u53ca":68,hostname:[14,85],"\u30b5\u30f3\u30d7\u30eb":[20,0,90,17],"\u592b\u5fc5":72,rand:[31,39,69,26,77],"\u3002ftp":17,"\u3002(":[37,14,8,75,28,17],"`hostname":14,"\u5217\u578b":[44,67,51,28]," id":84," learn":[],"\u975e\u308f":74,"\nlog":56," OR":[51,28,59]," OS":[31,20,70]," creates":[56,16],"/lzo":18,".rpm":70,systemd:40,Fixed:40,"\u5024\u3068":[44,28]," >":[73,74,17,39,59,18],".git":62,"\u308c\u308b":[3,51,27,17,68,29,74,6,44,57,79,38,59,61,62,37,64,14,84,66,15,39,28,18,88,19,22,45,86],"_rename":40,"sort\u30ad\u30fc":2,"\u30ab\u30fc\u30bd\u30eb":[18,20],"\u30b3\u30de\u30f3\u30c9select":22,"\nimportant":[],"\u63a5\u7d9a":[32,3,14,33,66,17,55,40],"[tokenizer":40,"/windows":70,"\u6955\u5186":[63,5],"\nwhen":[],"\u30d6\u30fc\u30ea\u30a2\u30f3":61," feature":62,good:15,".description":89,Music:36,"\u52d5\u4f5c":[31,64,44,78,86,20,28,17,29,18,47,62,88,45],URL:[18,85,55],"2]":3,"\u3002GeoPoint":63,URI:85," Syntax":[],"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":14,"-learner":[20,4,16],"\u6271\u3044":[44,29,74,86],"\u6271\u3046":[38,40,53,68],"\u6271\u3048":54,"\u8a71\u984c":53," \u30d0\u30c3\u30d5\u30a1":84,"\u5316\u95a2":20,document:[14,20,85],"-test":88,"\u3079\u304f":3," python":10,"\u9664\u3044":17,"-encoding":[14,18],"\u6271\u3063":[89,2],"\u30ad\u30e3\u30b9\u30c8":[40,20,89],"'title":[],man:2,"[doc":[18,40],".posted":89,bigram:[8,74],"\u81ea\u7531":[22,37,79,68],Defines:16,status:[31,2,3,26,14,20,42,17,83,55,40],"-create":[49,31,19,26,64,16,90]," don":[],weight:[44,28]," box":[],"\u30b5\u30a4\u30ba":[44,84,52,70,68,18],Rose:44,korea:67," doc":62,Sports:36,HDD:17,GHz:17," nine":3,"\u547c\u3076":[22,88],"\nfeature":[],UTF:20,">\"":28,"\u6271\u308f":[38,44,27,28,17],gettext:62,"\u524d\u8005":39,ftp:17,"<ip":[14,17],"/usr":[14,70],"\u30de\u30eb\u30c1\u30b3\u30a2":68,"\u7def\u5ea6":[31,44,89,39,68,61],"\u6e2c\u7528":2,"_QUERY":37,"\u305d\u308d\u305d\u308d":3,"/locale":62,"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":88,"\u8ddd\u96e2":[2,63,68,27,39,60,5],InnoDB:68," table":[36,3,19,67,14,43,57,15,28,76,44,58,75,81,41,48,72,12,51]," our":62,"\u30d6\u30e9\u30a6\u30b6":[55,62],"\u9045\u304f":[63,5],"/etc":[40,70],"\u6975\u4ed8":[63,5],Hour:56,"_new":66,"(WGS":39,"\u5b58\u5728":[13,2,74,3,67,68,73,20,17,39,55,28,79,41,5],"\u9ad8\u3044":[68,3,19,84],", \"":28," does":[],NULL:37,"\u5ea6\u5ea7":[],"\u3072\u3053\u3055\u3093":40,"\u3053\u3053\u3067":28," Int":44,recv:40,"\u30a6\u30a7\u30a4\u30c8":58," more":[],"\n\u30b9":18,"\u81ea\u8eab":[14,18],"\u547c\u3093":74,thread:[66,17],"\u30b5\u30a4\u30c8":[44,36]," processing":56," process":56,"\u8a18\u3057":[],"\u306b\u3088\u308a":[35,3,72,38,68,44,39,55,84,40,61],grntest:[49,31,26,20,17,40,18],"\u306b\u3088\u308b":[31,3,72,44,68,40,18,61,30],"|correct":19,"\u5927\u304d":[40,84],"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":88,"\u308c\u305a":86," not":56,"\u3067\u3064":51,"\u306b\u3082":74,".SSSSSS":56,"-keyring":[40,70],",[[":[],"\u306f\u3044\u304f\u3064\u304b":35,encoding:23,SiteCountry:[55,67],"\u7d4c\u7531":[8,73,75,52,76,6,32,33,71,9,80,58,81,12,82,83,84,57,65,20,43,48],number:84,"=Site":55,"\u5f62\u72b6":27,"\u7d42\u308f\u308b":15,"${":28,"\u30bb\u30af\u30b7\u30e7\u30f3":[64,78,28,70,45,29,47,62],"\n\u308b":20,"\u30b3\u30d4\u30fc":73,HTTP:[31,20,55,23,18,40,30],".blog":38,koi:14," en":[29,19],"\u306b\u5bfe\u5fdc\u4ed8\u3051":29,"\u73fe\u5728\u5730":89," weight":[44,28],"\u30c9\u30e1\u30a4\u30f3":67,"\u672c\u6587":41,"\u7d50\u3073\u3064\u3044":66,"\u547c\u3073":[37,51,67,14,22,28,44,17,59],">\n":[23,25],"\u3002\u3059":[15,17],"-cache":14,"\u60c5\u5831\u540d":[9,12],Homebrew:[18,70,31]," unmanaged":84," local":73,"-get":[40,70],"\u3002make":17,"\u300cUsers":89,"\uff01 ":89,Munin:[18,2,70],"\u547c\u3070":[61,3],"\u642d\u8f09":68,selector:43,No:[]," Tag":36,"\u4fbf\u5229":[44,29,28,68]," optional":[],"\u6574\u7406":40," conditions":[],"\u540d\u4e00":9,"\"weight":44,"\u4e71\u6570":[39,69],"\u5b66\u7fd2":[31,19,64,78,20,45,29,4],"\u56de\u547c":20,Horikoshi:18,"\u898b\u308b":39,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[14,55],"_IP":55,"_probability":[18,19],"/RESULT":40," user":17," uses":56,KEY:[8,74,72,28],"\u8a18\u9332":[68,79],"\u30c6\u30fc\u30d6\u30eb":[2,8,3,51,73,75,28,54,18,30,72,31,44,57,71,9,79,38,80,58,81,61,12,36,37,14,84,40,41,76,19,67,89,20,43,48],",[\"":[38,39,3,67],"\u60f3\u5b9a":[83,22,73,84,36],"7e":17,"\u5b9f\u969b":[35,36,51,38,89,9,28,41,12],"\u307e\u307e":[44,86],"\nGRN":37,"\u540dn":[28,9,12],"\u52d5\u74b0":0,"1\u30c8\u30fc\u30af\u30f3":8,"\u8aad\u307f\u98db\u3070":3," [":28,gted:62,"\u3002Functions":88,"\u3002\u3057\u304b\u3057":[64,68,15,28,18,61]," abandon":76,"\u307e\u3060":[83,18,19,86],qps:[0,17],"/ ":[20,70],"\ngroonga":[18,4,90,86],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[14,20],"\u307e\u305a":[42,3,51,38,89,74,17,62],"\u307e\u305b":[3,27,75,17,76,55,29,4,6,32,44,33,8,9,79,38,58,83,61,12,62,74,64,14,15,28,18,41,19,68],"\u5c0f\u6587\u5b57":3,"_list":[31,2,3,26,14,42,20,9,18,12],"\u307e\u305f":[71,73,75,52,17,76,18,6,32,33,57,9,83,80,58,84,81,61,12,82,14,65,39,28,40,41,88,89,43,8,48],check:[31,2,26,84,42,18],"\uff09\u3002":[38,89],Lucid:20," parameters":[],"\u79d2\u5358":[44,61]," : ":16,"\u307e\u3057":[36,51,64,38,89,63,28,39,40,18,62],"-limit":[14,2,28],"\u7279\u5b9a":[67,22,73,8,68,41,88],"\u307e\u3068\u3081":28,build:83,"[pat":40,command:[3,14,85,55,23,86],mroonga:[40,68],"\u8a18\u53f7":[14,38,20,3,74],"$PREFIX":18,"\u5024\u6bce":28,"\u306a\u3051\u308c":[14,8,75,28,44,58,17,70,40],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":37," realtime":[19,45],"\u30e1\u30fc\u30eb":62,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":18,"\u53d6\u308a\u51fa\u3055":44,".co":[25,28],"\u30e1\u30fc\u30c8\u30eb":[63,5],Monkey:44,"\u4f7f\u3048\u308b":[14,18,40],"\u89e3\u653e":83,".repoforge":70,"\u3060\u3055\u3044":[3,68,63,55,70,47,88,62],The:[40,28],"\nall":[],DragonFly:20,"\u30ea\u30c3\u30b9\u30f3":[],"'hay":37," full":[],exe:70,"_put":[6,31,42,26,14,65,82],"\u30e6\u30fc\u30b6\u30fcID":89,windows:25,"\u306b\u3069":37,"\u3002Sphinx":10," lcov":88,"\u9577\u3055":[44,40,17]," Tweets":15,"\u4ecb\u3057":[68,55]," UInt":36,"\u7528\u8a9e\u96c6":84," testdb":17,"\u6e96\u5099":[31,51,38,8,28,30,62]," rst":10,"&query":55,"\u3057\u304b\u3057":[38,74,62],mlock:20," longer":25,"\u300ccommand":85,"_by":[18,89,90,40],".rb":20,"\u62e1\u5f35\u578b":44,SEGV:2,"\u304a\u3051":28,"-keys":40,"_users":89," item":[29,64,19,45],"\u304a\u304d":68,"\u30d1\u30c3\u30c1":[7,18,20,62,40]," omitted":23," night":15,nterms:84,"\n]\n":73,MySQL:68,"\u304a\u3044":[3,44,22,8,79,39,68,18,88,62],"\u59cb\u70b9":3,"\u77e9\u5f62":[13,39,68],"\u3068\u307f":85,"\nmeans":[],"\u59cb\u3081":62," Floating":61,"\u601d\u3044":62,"\u4ed8\u52a0":28,"\u6bd4\u3079":[15,67]," because":23,"\u6642\u306b":18,"/pool":[],"-ftp":17,"\u306e\u3067\u3057\u3087":28,"\u51e6\u7406":[2,37,68,20,74,28,39,17,79,40,62],"\u4f4e\u6a5f":37,"\u5225\u9014":[8,61,67]," depends":25,columns:[20,75],"]]]":[38,43,39,3,19],"\u904b\u7528":68,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[29,64,45],"\nency":17,"\u629c\u3051\u308b":3,"(v":37,"\u30d8\u30eb\u30d7":88," used":56,"\u671b\u307e\u3057\u3044":68,"_html":[14,18],"\u4eca\u5f8c":[6,18],"\nexample":[]," MySQL":68,"\u9069\u5408":[38,3],OBATA:20,"\u304a\u3070\u305f":18,"\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":51,"\u305d\u308c":[37,3,51,38,89,20,74,44,83,45,61,62],"\u3068\u3044\u305a\u308c\u304b":59," supports":25," STATUS":16,"\u53c2\u52a0":[47,53],Help:62,"\u306b\u304a\u3044":[44,86],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[31,47,46,66],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":14,"\u89e6\u308c":3," isn":40,"\u7b49\u5024":20,"(>":37,"\u3002Redmine":1," http":[14,0,85,55,70,23],"\u52a0\u7b97":79,"\u6570\u5024":[31,2,8,3,14,20,74,28,44,37,58,30,5],"\u68ee\u7530":36," ')":75,"\u8a00\u3046":29,RLIMIT:56,"\u3082\u3057\u304f":[44,41,61,55],"\u82b1\u5b50":36,"\u305d\u3057":89,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":71,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[18,2,20,88],dump:[31,2,26,73,20,42],"/log":14,"]]":[3,19,67,14,75,8,43,17,76,39,28,12],"]_":[],Kbyte:[],"\u7d44\u8fbc":[8,73,63,65,52,76,5,6,32,33,71,9,34,58,84,81,60,61,12,82,13,83,75,57,80,43,69,48],"][":[18,40]," Tomita":20,"\u554f\u3044\u5408\u308f":37,sed:18,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[35,31,27,3,81,26,36,38,84,20,15,28,80,58,30,40,18,41,48,89,12],sea:29,arg:37,sen:25,"\ncolumn":[38,89,73],"\u8a00\u8a9e":[14,47,20,37,62],PORT:[55,17],"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":37,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[17,62],"\u7d39\u4ecb":[36,47,28,89],"(a":[],"\u4e00\u5ea6":[18,15],GET:55,"]}":[44,84],"\u5909\u6570":[18,90,88,40],"-level":14,"\u5c02\u7528":[31,55,30,62],"]x":[89,39],TCP:14,"\nspecified":[],".log":[14,86,17],"\u30cb\u30db\u30f3":29," operator":[],"\u305d\u306e":[3,51,73,74,75,28,55,29,72,31,38,61,62,36,37,14,17,67,68,70,89,86],"\u7a7a\u6e2f":89,"\u8868\u73fe":[37,44,22,75,84,47,61],"([":69," Lexicon":15,Server:36,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":[31,68],"\u5927\u91cf":[36,37,3],"\u898b\u3064\u3051\u308b":29,"\u304a\u308a":[89,41]," easy":10,UNSPLIT:37,"\u6790\u5668":[68,8]," groogna":[]," higher":[]," issue":1,AND:39,"\u3002value":79,last:89,"\u5024\u578b":44,oneiric:70,"\u6b8a\u547d":17,"\u304a\u52e7\u3081":70,"\u578b\u5909":18,SHIDARA:18,"-api":7," Sites":73,"]:":[],"\u958b\u59cb":[88,18,28,17]," appears":[]," reason":[],"] ":[14,0,17,16,55,40,18],"-file":[14,18],"\u53ef\u5426":3,"\u3002:":[3,73,74,75,17,76,29,4,8,9,38,58,10,12,62,64,14,84,85,28,18,88,19,43,70,45,86],"],":[3,51,73,75,17,55,29,72,44,9,38,12,36,64,14,84,15,39,28,41,19,67,89,45],"]/":55,"])":[63,69,5],"\u6642\u70b9":[40,8,86],RESULT:23,load:[2,3,51,26,73,75,28,76,40,29,72,31,44,38,80,61,36,64,14,39,86,18,41,42,67,89,20,45]," about":56,");":37," GRN":[37,56],"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":27," database":16,point:[13,74,63,5],"\u90fd\u6c11":[38,74],address:[18,40],"\u3059\u304e\u307e\u305b":36,"\u306f\u3058\u307e\u308a":86,"\u30b9\u30ec\u30c3\u30c9":[14,68,66,17],"\u30ca\u30ce":20,"),":[8,58],shutdown:[31,32,26,14,20,42,55],"-plugins":[40,70],"\u4e0d\u80fd":17,") ":[37,8,61,17]," documentation":47,")\"":51,"\u3002ECMAScript":28,")'":[36,19,64,89,39,45,29],":#{":56,"[rpm":[18,40],"\nconditions":[],"\"web":[64,45],"\u8003\u616e":38,"\u306e\u3069\u308c":29,all:[],ShortText:[3,51,73,28,55,29,72,44,8,9,38,58,61,12,36,64,14,15,39,18,41,19,67,89,20,45],"\u898b\u3064":[40,20,19],"\nparameter":[],"\u53ce\u96c6":68,")\n":[69,25,56,37,5]," sample":17,txt:[7,62],"\\\"":[74,75]," memcached":55,po:62,XML:[18,20,23]," #{":56,"|<":56," COLUMN":[36,3,51,67,38,89,73,15,28,44,58,41]," raltime":45,RPMforge:70,"#groonga\u30bf\u30b0":89,"[output":40,"/db":[73,19],EXAMPLE:16,"\u30d9\u30fc\u30b9":[68,18,20,62],"\u56de\u7279":17," warning":65," propose":[]," User":36,"\u79d2\u9593":18,"\u5730\u7cfb":[],"\nLucid":20,"\u30a8\u30b9\u30b1\u30fc\u30d7":75,"\u6307\u793a":[29,3,55]," most":[],INT:23,"\u691c\u7d22":[2,3,51,27,28,54,24,40,29,74,30,72,31,44,68,8,79,38,59,61,11,36,37,64,14,15,39,18,41,89,19,67,22,20,43,90,70,45],"\u30b9\u30c8\u30ec\u30fc\u30b8":[31,68],TokenBigramSplitSymbolAlpha:[38,74],"\u30e9\u30a4\u30d6\u30e9\u30ea":[31,3,68]," entries":28,"\u4eca\u5ea6":89,"\u30b0\u30cb\u30e3\u30e9":89,"\"sug":4,"\u30c8\u30fc\u30af\u30f3":[74,64,8,20,45,18],engi:[29,19],"\n\n":[57,3,63,65,52,76,6,71,9,83,80,58,81,12,82,14,84,75,89,43,8,48],"\u63a1\u7528":[38,68,55]," customized":56,"<=":89,"(title":60,"\u5316\u524d":79,"\u5404\u8a9e":84,"\nusing":[],"\u6027\u5225":68,"_expansion":[18,51,28]," values":75,"\u53f3\u8fba":[18,20],"</":23,NetBSD:20," free":[84,56],TokenBigramIgnoreBlankSplitSymbol:38,"\u898b\u3064\u3051":[29,2,40],"-key":40,"\u30d5\u30eb\u30d1\u30b9":[],"\u7f6e\u304b":85,"null":[18,9]," logs":56,fedora:40,"\u4e00\u7fa4":37,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":14," float":[]," AND":[],"\u4e38\u62ec":3,"\nfile":[],"\u6210\u679c":[47,62],"\"]]":[],"_PER":18,"\u5065\u4f5c":36,"_to":89,"\u30ec\u30a4\u30e4":37,"|http":17,"\u56fd\u540d":67,"\u30c8\u30e9\u30a4":18,"\u307e\u3067":[35,37,3,72,14,75,15,17,89,62]," select":[36,3,51,67,38,89,15,28,39,41],"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[68,47,62],"\u307e\u3059":[49,1,71,3,51,36,73,27,75,52,53,54,55,29,81,74,4,5,6,32,87,7,33,8,9,79,38,89,34,58,83,59,72,10,60,61,12,62,35,13,84,37,64,14,15,0,82,57,68,39,85,17,63,18,41,76,88,78,42,80,19,67,22,65,43,28,44,69,70,45,23,47,48,86]," tweet":15,"\nthan":[],"\u30ec\u30b3\u30fc\u30c9r":37,Lines:88,"\u901a\u4fe1":[31,66,0,17,85,46,47],"\u5730\u57df":68," describes":62,"\u3088\u304f":28,"\u5909\u63db":[18,61],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":23,user:17," columnes":[],"\u9006\u5f15":36," complex":[],".spec":18,"\u5834\u6240":[20,17,53],Moero:36,"\u672c\u6765":51,Senna:[40,25],"\"\u3001":29,Marverick:20," buffer":84,"\u7d44\u307f\u5408\u308f\u305b":[37,3,38,68,8,58],"\u3002true":[],center:5," here":[],"\u30ef\u30a4\u30c9":18,edge:66,flags:[36,3,72,67,14,84,8,9,17,44,58,89,41,12],sortby:[36,3,19,43,28,39,18],"\u30b1\u30fc\u30b9":38,entry:58,"\u9806\u756a":[14,38,3],"\u3053\u3061\u3089":[3,62],"\u30b0\u30e9\u30d5":68,"_path":[40,17],"\u5ea6\u6570":[44,18,39],"\u30d0\u30a4\u30b0\u30e9\u30e0":[38,8],"\u8981\u6c42":3,"\u8aad\u307f\u65b9":22,"-path":[2,19,14,20,40,18,56],"_KEY":[36,2,20,3,51,67,38,89,73,8,15,9,28,44,40,18,41,72]," --":[36,89]," work":56,"/Branches":88,"\u547c\u3073\u51fa\u3059":[13,63,34,69,60,5],"_NIL":20,"\nfirst":[]," common":18,"\u6b8b\u5ff5":44,mysql:25,"\u9006\u5f15\u304d":[31,89,30,36],"\u547c\u3073\u51fa\u3055":28,"\u547c\u3073\u51fa\u3057":[40,73,20,37,68],"\u3067\u304d\u308b":[51,73,27,17,55,18,72,44,8,38,58,5,36,37,14,66,15,28,40,88,89,19,22,63,68,47],tables:73,"\u30af\u30a8\u30ea":[3,51,74,28,29,4,30,31,59,11,37,64,38,45,0,39,46,18,19,22,20,68,47],"\u5316\u51e6":[18,79],point1:63," BOOLEAN":25,"\u30bd\u30fc\u30c8":[31,2,27,19,36,20,28,39,18,30],PID:[14,2],"-gram":[38,68,74,3],Example:56,source:[36,3,89,58,41,12],"\u5024\u3068\u3057\u3066":14,location:[36,67,44,89,39,55],realloc:20,input:75,"\u3057\u307e\u3059":[74,67,89,8,28,70,4],"\u8981\u7d20":[37,3,14,57,75,17],"\u3064\u3051\u308b":72,"...":[50,19,84,73,59,15,9,17,21,85,28,23,18,12]," speakers":53," storategy":[],"\nPARTIAL":37,"\u5024\u7528":18," CentOS":[]," code":[56,62],"-untrusted":70,"\u968e\u5c64":37,"\u9759\u7684":[31,3,26,14,15,85,40,47,88],"\u304f\u3060":[3,19,38,68,28,44,85,17,70,62,61,55],Flower:44," blog":[38,3],"<#{":56," add":[28,62],"\u30cf\u30c3\u30b7\u30e5":[83,84,8,28]," Have":15,bit:[61,70],"\u30bd\u30fc\u30b9":18,"\u5f53\u3066":[9,12],"\u30d7\u30e9\u30b0\u30a4\u30f3":[2,68,20,90,70,18,62],"\u5927\u4e08\u592b":1," latin":[],"@wareohji":40,OK:[]," familiar":[]," your":62," Takuto":20,"\u540c\u7b49":[74,17],"(ctx":37,unstable:70,"\u308f\u3051":[44,29,28],"\"uptime":[23,3]," Kinjirou":36,mode:37,"\u4ee5\u5916":[37,27,51,83,68,20,28,17,18,61],OS:17,OR:[39,51],"\u6642\u523b":[83,34,17,64]," lower":[],"\u3001C":3,google:28,"_NONE":12,"\u7f6e\u304d":20,"\u30d6\u30ed\u30c3\u30af":68,FILES:16,"[dump":40,"\u3068\u3068\u3082\u306b":[44,8],"-DD":56,"\u5404\u8981":51,examples:20,"\u307f\u307e\u3057\u3087":[36,3,51,44,89,39,41],cd:62,"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[14,2],"\u3001[":3,"\u3001_":[89,39,3,67],"\u66f8\u304b":89,"_bool":20,"\u5927\u304d\u304f":[63,44,73,20,86,5],"\u8a73\u3057\u304f":[44,68,3,70],"\u66f8\u304d":[38,68,74,17],RPM:[18,20]," nanoseconds":56,"\u66f8\u3044":89,"\u5927\u304d\u3044":[14,18,37,28],"\u3061\u3083\u3093":36,"\u69cb\u6210":[37,3],"\u308c\u307e\u305b":[14,84,86],"\u3002JSON":75," total":[],"\u56de\u52d5":17,"\u5148\u60c5":89,proc:28,".sh":[40,88,62],"\u5b8c\u4e86":[28,62],"\u7f72\u540d":40,run:88," Hiroshi":20,httpd:40,"\u3001\n":[39,52],"\ncheck":[],bi:[38,74],"\u4ed8\u3044":89," tablename":86," other":[],"\u4e0a\u4f4d":38,"\u4ed5\u7d44":62,"\u96c6\u8a08":[31,68]," test":[3,44,17,55,41,88],"\u4ed8\u3051":[44,40,3,55],Typically:[],Hello:15,"\u30ab\u30a6\u30f3\u30c8":89,"{\"_":[44,36,39,28],"\u3001 ":[3,51,44,89,63,28,39,55,70,59,61,62]," schea":16,"\u3001\"":[3,51,64,89,45,29,18,61,4],"\"mori":73,zip:[31,70],Dump:56,"\"service":64,"\u4f3c\u305f":39,"\"yu":73,"\u3001-":[61,20,85,17],"\u53ca\u3073":[17,76],"\u3001/":[3,55,70],"\u3001.":[88,62],"\u5730\u5f62":[63,5],range:[9,12],"\u5185\u5bb9":[3,44,89,0,9,17,28,45,29,41,62,12,55]," garbage":84," configuration":[],"\u30fb\u30c6\u30fc\u30d6\u30eb":22,"\u95be\u5024":[31,19,14,74,28,38,24,18],"\"serach":64,"\u306e\u3069\u3061\u3089":28," DATASET":16," LGPL":25,"\"sea":29,"\u30ad\u30e3\u30c3\u30b7\u30e5":[14,40,2,28,68]," DB":[85,23,3,55],"\u3088\u308a":[37,51,74,38,22,20,15,17,44,89,28,70,29,18,40,61,63,5],"-protocol":[14,55,17],"'comment":[],"\u9010\u6b21":68,url:73,"\u6295\u5165":[38,2],"\u5831\u544a":[18,20,90,17,40],"\u524d\u65b9":[31,37,3,19,8,74,90,29,30,72],Natty:[18,70,31]," grouping":[],".)":56," speaker":[],".-":62,"..":[14,63,75,16,85,28],"\u3046\u3061":[37,84,27,63,28,86,18],". ":[49,1,50,3,51,26,36,73,27,75,52,53,54,25,55,29,81,74,4,30,5,6,32,87,56,7,33,8,9,79,38,89,34,58,83,59,72,10,60,61,11,12,62,35,13,84,37,71,64,14,0,66,15,77,57,68,39,85,17,63,41,76,86,88,78,42,80,19,67,82,22,65,43,28,44,21,69,70,45,23,47,48,46,16,24],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":17,"\u6b53\u8fce":47,"\nonly":[],"\u56fd\u969b":62," you":[],"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":89,"\u51fa\u3059":89," hottolink":25,"\"rect":[63,5],"\":":[36,84,89,3,19,67,64,44,75,45,15,28,83,39,51,17,29,72,23,41,55],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":86," curl":23,"\u5074\u9762":68,"\u6574\u3063":88,usr:[14,88,70],"\u5408\u5bbf":89,"[groonga":[18,40],".O":36," Demo":36,"-query":[14,18,3,56],"\u3002Ctrl\u30ad\u30fc":3,"-type":[29,64,45],Google:4,link:[44,55,67],".]":[84,9,12,19],"._":[44,28],"\u3002\u30bf\u30b0":36,"/epel":70,posted:89,".h":7,".i":70,"\u8868\u3059":[36,37,44,27,58,69],utf:[14,23,25],"_op":37," that":[40,56],"\u56de\u907f":38,munin:70,"\u306b\u5bfe\u3057":[36,2,37,3,19,67,83,68,8,0,28,39,85,58,41,74],Twitter:89,".c":[25,28],".d":70,"\u8868\u3057":[37,3,27,79,86,61],".x":70," attention":[],"\u52d5\u304f":[18,40],"\u5206\u89e3":37,".}":84,Pentium:17,similar:[40,37,19]," types":19,"\u4e0d\u4e00\u81f4\u6761\u4ef6":[],"\u63a5\u982d":[18,8],"_NOFILE":56," JQuery":20,"\u679c\u305f":3," candidate1":19,Cache:[],To:[],"\u3054\u3068":[41,66,54],"\u3075\u308a":19,"\u30ea\u30dd\u30b8\u30c8\u30ea":[18,47,70,62],"\u4f4e\u304f":38,"\u304b\u307e\u3044":3,"\u7279\u5fb4":[68,31,36],"\u5165\u308c":[38,36,89],"5km":89,"\u306b\u5bfe\u3059\u308b":[31,37,3,19,67,36,44,68,20,54,55,89,18,41,30],taro:36,">uptime":23,".comment":89,"\u958b\u3044":[80,18,20,71],"\u5f8c\u308d":[],"=null":28,"\u958b\u304f":18,"\u4e0d\u4e00\u81f4":59,invalid:28,"_rate":[23,3,55]," categorized":[],Mac:[31,20,70],"\nunderstand":[],"\u3042\u3052\u308b":[38,31,24],"'\u3002":14,"'\u3001":[],"\u56db\u3064":74,grn:[13,37,56,26,31,22,20,43,63,28,76,34,69,40,75,18,41,60,47,90,5],"\u6d3b\u304b\u3059":28,"\u30ed\u30b0":[6,2,64,14,65,17,90,18,40,82],"\u6642\u4ee5\u5916":20,"\u5168\u6587":[31,74,3,36,14,22,27,28,54,38,39,24,70,68,41,89,30,44],tmp:[14,3,19,55]," fix":25,".load":17,"\u3002dump":73,".dump":18," script":17,": n":0,"\nin":[],lucid:70," eight":3,"\u6307\u5b9a":[2,71,3,51,36,73,27,75,52,17,76,55,40,74,63,30,5,31,44,57,8,79,38,80,58,83,59,72,81,60,61,12,82,13,84,37,14,65,0,39,85,28,18,41,19,67,68,20,43,69,70,89,23,48,86],"\u5c5e\u3057":61,"\u4e00\u7dd2":[38,2,3,28],"\u3002Video":36," old":40,"\nis":[],".patch":62,Output:[],drilldown:[36,2,67,89,43,28],Summary:[],"\u3088\u3046":[2,3,51,73,27,17,68,55,40,29,74,4,5,31,44,78,38,59,72,10,36,37,64,14,84,15,39,85,28,18,88,89,67,22,20,63,70,45,86],"\u3088\u3044":62," tokenizer":[],"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":17,"\u4f7f\u3044":[31,37,19,74,44,68,45,15,28,89,64,55,70,29,18,78,87,61,62],"\u300d\u3001":[36,89],"\u4e00\u5de5":72,Hiroshi:18,"\"groonga":4,"\"suggest":4,"\u3002TLD":67,An:[],"\u5f37\u5316":[18,20],"/tutorial":[],"\u3088\u3063":39,"-benchmark":40," post":28,"\u8a66\u884c":68,DESCTIPION:16," b":59,"_pat":20," a":[40,15,56,16]," changed":25,"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":89," d":[38,74]," against":[],"\u3067\u307f":68,",\"title":3,"\u66f8\u304d\u8fbc\u307f":89,"\u57cb\u3081\u8fbc\u3080":17,"-filter":18,"\u66f8\u304d\u8fbc\u307e":6,"\u843d\u3061":20,gb:23,ga:17,"\u5272\u308a\u5f53\u3066\u308b":44," z":61," push":62,"/json":18," Ruby":[],"\u3067\u3069":19," }":89,"\u3067\u3057":44," C":[7,18,68]," @":[38,40,74,28,89]," binding":25,pthread:18,"\u8a9e\u6271":74,"/\u65e5":89,Object:61,"-release":70,"\u30cb\u30e5\u30fc\u30b9":15,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[18,20]," Token":17,"\u3067\u3044":[44,28],"\ngronnga":4,stable:86,"\u3067\u304f":47," [":[3,51,73,75,17,76,55,29,72,44,8,38,58,84,16,36,64,14,0,15,39,28,41,19,67,89,43,45],"\u3067\u304d":[2,3,72,36,73,27,75,17,54,55,40,29,4,5,44,68,8,79,38,34,58,59,10,60,61,62,13,37,64,14,0,15,39,85,28,18,41,88,89,19,67,22,20,63,69,70,45,23,86],include:7," _":[36,3,72,67,44,89,28,39]," \\":74,"\nseparated":[]," \"":[3,51,63,75,17,55,29,72,44,9,61,12,36,64,38,84,15,39,28,40,41,19,89,45],"_API":37,"\u7279\u306b":[22,37]," !":59," &":[38,39,74,70]," comment":89," ./":62,logos:[]," *":[38,28,40,62,61,82],"\u8fbc\u307f":6,"_DELIMITED":25," )":[],"\u306a\u3068\u304d":68,"\u3044\u308f\u3086\u308b":36," -":[71,2,25,3,51,36,73,74,75,52,17,76,55,40,29,81,89,5,6,32,56,44,33,8,9,38,34,58,83,59,72,10,60,61,12,62,16,13,84,63,64,14,15,0,82,57,39,85,28,18,41,88,80,19,67,22,65,20,43,90,69,70,45,23,48,86],"\u3002run":88,"\u3067\u5024":[14,3],"\u6e0b\u8c37":89,"\u983b\u5ea6":19,"\u4e0d\u8db3":70,"\nand":[],"\u304a\u3053":[44,68],"\u6368\u3066":18," <":[25,38,73,17,39,59,18]," =":[36,37,14,22,28,39,59],"2pdf":10,"\"complete":4,"(drilldown":79,"-build":88," update":[40,70,62],"-id":[14,40],"\u4e09\u3064":74,"_dir":18,"\u6b8b\u308b":18,"\u304a\u304f":44,ctx:66," maximium":[],"\u6b8b\u308a":[86,28]," such":62,Here:56,".output":85,"\u30aa\u30d7\u30b7\u30e7\u30f3":[2,3,72,74,17,55,40,29,83,38,64,14,0,85,28,18,41,88,19,20,70,45,23]," backup":73,".po":[47,62]," term":84,"\u5341\u5206":38,"\u4e00\u81f4\u3057":[],"\u304a\u3070":[18,2]," word":[],"-memory":20," outputs":56,".pc":[18,90],"\ntable":[38,89,73],"\u9023\u643a":68,equal:37,download:70,".xml":23,"_cursor":20,"_SCALAR":[36,51,67,38,89,73,15,28,58,41,12],index:[36,41,25]," specifies":[],"_thread":17,"/introduction":[3,55],".tsv":23,squeeze:70,etime:0," WGS":[44,36,39,89],HTML:[18,47,62,85,40]," specified":[],"\u30dc\u30c3\u30af\u30b9":28,"\u5358\u7d14":[37,63,72,5],"\u30a8\u30f3\u30b8\u30f3":[36,14,22,28,44,68],"3f":55,"\u3060\u3057":[18,17],body:[51,38,71,75,80,58],FTP:17,"-exact":83,"\nsecond":[],"\u5fc3\u304c":88,clearlock:[31,2,26,14,42,80],"\u516c\u958b":[18,20]," PatSuffix":72," Precise":40," score":[],"\u62e1\u5f35\u5b50":[23,20,17]," digits":56," memory":[],"\u3002Blogs":38," libmemcached":88," \"":[51,84,9,17,55,89,41,12],"\u306b\u5bfe\u5fdc":[6,14,75,28,85,18,40]," ":[36,19,64,44,89,86,15,28,55,45,72,29,41,51],"= \"":[22,28]," users":[89,56],Ctrl:[],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":3,"\u4e0a\u3052\u308b":38,"\u300d\uff08":[73,74],"_name":[73,90],Hardy:20,"\u5177\u4f53":38,"\u3067\u3082":[3,38,68,74,28,39,17,70,29,18,41,62,88,55]," Shibuya":20,">version":23,".fedoraproject":70," both":[],"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":28," like":[],"\u8d85\u3048":[38,28],"\u6982\u8981":[31,86,28,68]," functional":[],"\u5171\u901a":[18,41,8,61,22],"\u7518\u3044":51,"\u30c7\u30b6\u30a4\u30f3":40," twice":[],"\u9014\u4e2d":[14,29,64],",\"correct":[],"\u3046\u3048":[18,40],"_NAME":55,"'ABC":8," v":37,Nice:15,"\u4ee5\u964d":[27,14,20,18,88,62],Draw:36,tar:70,usa:67,Hex:36,"\u3057\u307e\u305b":[29,28],"\u5730\u70b9":39," SiteCountry":67,"\u3044\u304f\u3064":47," defines":16,"\u30d5\u30ec\u30fc\u30ba":59,"\u7d5e\u308a\u8fbc\u3093":68,"\u3057\u307e\u3046":[68,18,20,40],".pid":14,"\u3057\u307e\u3044":[38,44,72,17,64],Itagaki:20,"/master":62,"\u81ea\u5206":[17,62],"\u4efb\u610f":[14,61,3,17,68],soundkitchen:18,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[80,18,34,71,84]," functions":25,"\u3059\u308b":[49,78,2,71,3,51,36,73,27,75,52,53,54,55,40,29,81,74,4,5,6,31,32,44,33,8,9,79,38,89,34,58,83,59,72,10,60,61,12,62,13,84,37,64,14,15,66,0,82,57,68,39,85,17,63,18,41,76,86,88,42,80,19,67,22,65,20,43,28,69,70,45,23,47,48,24],"\u7d4c\u7def\u5ea6":[44,31,39,30],"\u3059\u308c":[68,3,17],"\u9ad8\u304f":38,Markus:40,"\u8868\u3059\u578b":61,HOST:[55,17],"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":88,"\u3059\u3093":89,Ultra:36,"/rab":[39,3,67],"\u305d\u308c\u305e\u308c":[37,3,51,67,44,14,89,74,28,38,39,85,70,23,41,88]," Fontaine":18,"_install":10,"\u4e00\u81f4RK":[],GtiHub:18,"_NEW":18,"this":[44,3,55]," dpkg":[],"\u672c\u5f53":29,Syntax:[],"<limit":14,autoconf:18,"\u8d77\u52d5":[3,14,20,17,83,85,55,23,86],"\u6e21\u3055":37,"_WITH":[8,74,72],"\u6e21\u3057":[75,37,3,55],"/index":[14,62],"\u6e21\u3059":[40,3],"\u53d7\u3051\u4ed8\u3051":20,"-html":[40,20],"\u7de8\u96c6":[2,60,47,88,62],"\u4f5c\u696d":62,"\u4e16\u4ee3":86,"\u6b8b\u3063":20,"\u3001&":39,"\u51fa\u3057":89,TokenBigramIgnoreBlankSplitSymbolAlphaDigit:38,"\u3002\u3064\u307e\u308a":[3,28],"-strings":40,sudo:[40,70],"_estimate":18,"\"correction":4,"\u30af\u30e9\u30c3\u30b7\u30e5":[18,20,40],">max":23,"\u4f7f\u3044\u65b9":[31,3,26,64,14,68,45,15,17,28,29,23,78]," example":[19,28],"\u7d30\u5206":44,Details:56,"\u3059\u3050":68," mte":25,"\uff08TokenBigram":38,Mroonga:28,"\u6301\u305f":8,"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":20,"\u6301\u3061":[14,8,37],"\u8a2d\u5b9a\u5024":[2,52],tomotaka:18,",' ":[44,61],"\u6301\u3064":[36,27,3,67,64,14,68,66,8,75,79,44,18],"\u53d7\u4ed8":[]," or":56,"\u6df1\u523b":38,"\u691c\u51fa":[18,2,20,88],"\u3059\u3067":[74,15],"\u3059\u3079":[37,89,73,28,80,17,29,18,86],"_repair":40,"\u512a\u5148":[68,17]," view":57,defalt:20,"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[40,64],"\u4fee\u6b63":[2,25,64,20,90,55,40,18,4]," port":70,"\u3064\u3064":38," physical":84,"\u30b3\u30de\u30f3\u30c9":[2,71,3,51,26,73,74,75,52,17,76,55,40,29,81,4,30,72,6,31,32,44,33,8,9,83,80,58,84,10,61,12,82,37,64,14,65,57,39,85,28,18,88,42,19,22,20,43,45,23,48,86],"_create":[3,51,26,73,17,72,31,44,8,38,58,36,14,15,39,28,18,41,42,67,89,90],"\u81ea\u5df1":89,"\u3044\u304f\u3089":68,"_')":[58,79],"_PORT":17,"\"sphere":[63,5]," Text":[28,17]," appers":[],">starttime":23," msgpack":23,"\u6301\u3063":[68,40,28,64],"\u5206\u6790":68,"\"rectangle":[63,5]," deatils":[]," mroonga":28,"\u5f35\u3089":44," instead":14,"\u3055\u3044":[3,19,38,68,28,44,85,17,70,62,61,88,55],",\"":[36,3,84,73,39,89,23,41],"\u30a2\u30af\u30bb\u30b9":[14,20,0,44,85,55,40,18,62]," nice":15,"\u7d5e\u308a\u8fbc\u307f":[68,3],"\u3042\u308b\u3044":[13,37,68,63,28,86,5],alloc:[83,23,3,55],"\u66f8\u5f0f":[71,3,73,63,75,52,17,76,55,30,5,6,31,32,33,8,9,83,34,58,59,81,60,12,82,13,84,14,65,0,57,85,80,19,43,69,48]," access":[],"\u81ea\u52d5":[36,3,72,8,17,79,18,62],"\u4f53\u8fd1":[63,5],"_LEAK":88,"\u30da\u30fc\u30b8":[31,3,14,28,85,59,40,62],"\u578b\u540d":[22,8],"\u7b97\u51fa":28,"_TIME":56,"\u9078\u629e":[68,28],"\u524d\u65b9\u4e00\u81f4":[29,2,19,40],allow:70," simple":[],"\u3002GRN":37,MESSAGE:[56,82],"\u4eac\u90fd":[38,74],"\u30c0\u30d6\u30eb":[18,8],"\u300cbill":74,"\u7d9a\u304d":75,gcc:18," build":[],"\u8abf\u3079":[13,5],"\u7d9a\u3044":[38,28],"\u4e00\u500b":37,"\u5fc5\u305a":[86,28],"\u30ab\u30d0\u30fc":88,"% ":62,jiro:36,"\u30c7\u30d5\u30e9\u30b0":18,"|WITH":[3,51,38,89,15,28,58,41]," clean":88,Usage:[],"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":0,"\u4fc2\u6570":37,"\u629c\u3051":18,"\u7d9a\u3051":17,"\u4e00\u9023":22,lib:20,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":6,"\u6539\u884c":[14,18,9,12,40],TokenBigram:[74,3,64,38,8,28]," kernel":[],ll:[38,74],"_reopen":[6,31,42,26,65,82],"/apt":70,euc:14," localhost":14,"\u3002Eclipse":62,"\u66ff\u3048":[38,31,3,30],"_gqpt":17,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":2,"\u6b8b\u3057":28,"\u5de6\u4e0a":[13,2],"\u5de6\u4e0b":2,"\u30a4\u30f3\u30c7\u30c3\u30af":41,"-munin":[40,70]," determine":[],"\u9589\u3058\u308b":[18,2],greater:37," keyserver":40,auto:19," |":[38,39,0,28],"\u3067\u3057\u3087":[68,15],"\u629c\u304d\u51fa\u3059":68,YYYY:56," start":15,billiard:[38,74],lzo:18,"\u512a\u308c":68,"\u9593\u9055\u3063":[18,64,4,40]," threshold":71,"\u90e8\u5206\u4e00\u81f4":[38,74],"_point":[36,5]," function":25,"\u306b\u304f\u308b":38," fulltext":[],translate:62,"}`":62,edit:[31,2,60,77,26],".net":[36,3,67,44,53,39,55],OffGao:89," updated":[38,25,62],"\u66f4\u65b0":[36,37,3,31,44,75,15,68,86,40,18,47,62],Why:[],"\u30ed\u30b0\u30ec\u30d9\u30eb":14,XXX:14," hh":56," size":84,"\u4fdd\u8a3c":[84,86]," no":[],"\u70b9\u9593":[39,27],"\u6df7\u305c":[44,19],"\u65e2\u5b58":[6,3,44,68,17,55],"\u5b9f\u51e6":37," maximum":[],"/LC":62,",\"link":44,chunk:84,"|suggest":19,"-patch":62," Aramaki":[18,20],"\u74b0\u5883":[68,17,70,40,18,47,88],"\u5217\u5f15":37,frequency:[29,64,19,45],"\u8a66\u3057":[],"\u751f\u6210":[22,74,79,69,47,62],"\u975e\u4e92\u63db":18,"\u3050\u308b\u3093":36,"\u4e26\u3073\u9806":39,"-match":[14,38,3,28],res:17,"';":14,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":14,"\u306b\u304f\u3044":68,"\u51fa\u6765\u308b":89,"\u3002roonga":[]," finished":56,"\u30ab\u30ec\u30fc":74,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":89,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":18,"_hit":[23,3,55],"/unstable":[],"\u7528\u610f":[37,64,22,28,17,45,29,4],"\u3064\u304d":28,"-fd":18,"\u601d\u3063":7,"/\u6708":89,This:[3,56,44,16,55,28],"\u904e\u7a0b":79," Site":[36,3,67,44,39,55],"'hoge":22,"\u73fe\u72b6":86," correct":[19,64]," concurrently":56,"\u4ed8\u5c5e":85,"/aba":[39,3,67],"8r":14," \u6c11":74," HashTags":89,"'this":[]," A":16,PHP:40,"\u5217\u5f62":22,Point:5,deprecated:86,"\u4e00\u90e8":[81,3,4],"\u8907\u6570":[2,3,74,17,54,30,31,44,8,9,58,59,12,36,37,38,85,28,18,41,19,67,68,20,89],"\"\uff08":29,"\"\uff09":[44,29,2,39],"_friends":36,"\u30bb\u30b0\u30e1\u30f3\u30c8":[84,71],"\u307f\u304c":37,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":87," output":[],"\u7403\u9762":[63,5],Users:89,"3ki":20," F":40,"\u8aa4\u5dee":[18,63,5]," doubled":[],"<max":14,"\u76ee\u4ee5\u964d":28,suffix:37,"_DEBUG":88," thatn":[],"\u8aac\u660e":[49,78,71,3,26,73,74,75,52,17,76,29,63,5,6,31,32,44,33,8,9,79,38,34,58,83,84,81,60,61,12,62,13,37,64,14,65,0,82,57,39,85,28,42,80,19,22,43,69,70,45,47,48]," Pangolin":[31,70,40],"1\u305a":[86,79]," Blogs":38,Daiki:[40,20,90],"\u30d9\u30af\u30bf":[2,20,12]," search":[18,64,45,4,19],"\u305e\u308c":[37,45],"\uff08\u300c":38,"\u53d6\u308a\u8fbc\u307f":18,"\u9805\u76ee":[6,2,83,75,65,43,28,54,39,80,84,76,82],"\u8d77\u70b9":28,"\u78ba\u8a8d":[2,3,44,89,17,47,62]," links":44,"\u5bb9\u91cf":[84,28],"\u305d\u308c\u3089":0,"\u8aad\u307f\u8fbc\u3093":55,mkdir:73,"\u6700\u4e2d":68,"\u6c38\u7d9a":8," Meerkat":18,"\u52d5\u5c0f":61," prefix":18,"\u7d44\u8fbc\u578b":[31,61,26],"-doc":40,"\u7d44\u307f\u8fbc\u307f":[31,42,26,14,22,73,77,17]," show":[],"\nCtrl":55," content":[15,28],natty:70,"\u8d85\u3048\u308b":44,"\u3002command":86," for":[25,61,56,16,62],"\u304b\u3061":74,configure:[38,20,28,83,40,18,88,62],"_query":[29,64,45,19,40],"\u304b\u3064":[74,28]," service":64,"\u304b\u3069":[13,19,38,28,39,5]," mecab":25,"\u756a\u76ee":[44,3,28],",..":[28,75,9,12],"\u8ffd\u8de1":1,"\u64a4\u53bb":18,"\u60c5\u5831":[2,3,27,53,54,18,30,31,44,9,58,12,36,38,39,46,40,88,19,68,20,89,47],rst:10," Elfring":40," gets":[],"\u500d\u7cbe":61,"\u3092\u3054":88,"\u9ad8\u3044\u9806":3,"\u53d6\u308a\u5f97\u308b":61,"\u89e3\u6d88":[2,71],Bool:[44,13,61,72,5]," started":[56,28],"-log":[14,18,56,17],rakutan:41,"\u51fa\u73fe":[68,19,54]," SiteDomain":67,"\u8aad\u307f\u8fbc\u3080":2," contents":[],"\u304b\u3051":80,"\u9650\u6587":18,bind:18,"_OFFLINE":40,"\u304b\u305a":40,"\u82e6\u624b":68,Video:36,ITS:1,"\u5229\u70b9":68,Information:56,"\u898b\u3064\u304b\u3063":[4,28],"false":[6,8,72,44,57,65,20,43,76,80,58,81,48,61,82],"\u8a72\u5f53":[],Pay:[],"\uff01\uff09":[29,64],"\u548c\u7528":28,"\u7d5e\u308a\u8fbc\u3080":4,"\u81f3\u308b":44,"\u56fd\u969b\u5316":[31,47,87,62],"\u96e3\u3057\u3044":68,"\u4fee\u6b63\u4e2d":64,"\u30de\u30a4\u30af\u30ed":[44,89,61],PATH:17,"{\\":75,Soccer:36," described":[],"\u5358\u72ec":17," from":25,"\"co":4,tvsec:83," retrieve":[],min:[0,17],"\n ":37,"\u6f14\u7b97":20,"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":40," lexicon":17,"\u914d\u4e0b":85,".msgpack":23,"_const":37,"\u306e\u307f":[3,72,73,27,75,52,37,29,51,6,44,8,79,62,74,38,85,41,88,19,67,68]," Representation":62,BIT:17,Takayuki:18,libmemcached:88," Gone":36,brazil:67,"\u901f\u3084\u304b":86,"_ACCOUNT":62," suggest":[29,64,19,45],"\u8aad\u307f\u8fbc\u307f":[18,3],ieee:[],":\\\"":75," six":[3,56],"\u672a\u958b\u653e":20,"-h":14,"*,":28," I":62," API":[7,31,47,25,87],"\u3089\u308c":[20,3,68,8,9,28,39,37,40,80,18,12],"\u4e2d\u9593":[37,74],"\u3064\u3076\u3084\u304d":15,"\uff09\u3001":74,"_suffix":18,"* ":61," bug":[40,25],"*\"":[90,28],"_build":88,"\u3042\u306a\u305f":53,"*')":28," N":68,"\u6e2c\u5730\u7cfb":61,latin1:40," RDBMS":68," importance":[],"\u5168\u89d2":[18,3],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":14,FLOAT:23,"_is":18,hh:56,"\u5408\u81f4":3,"mo\u30d5\u30a1\u30a4\u30eb":62,"_in":[13,2,26,31,89,36,20,77,39,18,5],"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[18,2,20,86,40],"\u540c\u3058\u5024":3,"\u901f\u304f":36,"\nwarning":[65,82],Masahiro:20,"\u30b9\u30b3\u30a2":[37,19,38,22,28,39,79,89],":tasukuchan":89,"-output":[28,17],"\u57fa\u6e96":[44,68,3],"_id":[18,39,3,79,40]," Type":[],".gz":62," short":28,"\nALERT":[65,82],"\u5fc5\u9808":28,",\n ":[36,89,19,64,38,84,15,9,28,44,55,45,72,29,41,12,51],"\u8d8a\u3048\u308b":38,Error:56," favorite":62,"\u30e2\u30b8\u30e5\u30fc\u30eb":[31,20,86,68],"/script":[],Redmine:1,"'localhost":[14,0],"\u3002\u2193":14,"\u5ea6\u3068":18,"\u53cb\u4eba":36,"\u4e0a\u8a18":[35,3,64,38,28,39,17,70,45,62,55],"_truncate":18,"\u5b66\u3093":89,MacPorts:[18,70,31],"with":[38,18]," is":[3,56,44,28,55,23]," it":15," doesn":[],"\u30b7\u30a7\u30eb":17,"\u65e5\u6642":[44,31,61,30,89]," GeoIndex":36," sid":[18,84,70,31],IPA:10,"\u4e0d\u6b63\u78ba":83," in":[37,56,84,28,25,40],"\u5bfe\u8a71":[3,55],"\u7d20\u5358":70,"_equal":37,"\u65b9\u6cd5":[3,26,73,74,17,24,40,29,5,31,44,78,38,61,62,63,64,14,86,15,46,28,18,87,88,89,68,70,45,23,47,55],"\u30ea\u30ea\u30fc\u30b9":[2,20,15,90,86,40,18],"\u5316\u5bfe":62,"\u65e5\u4ed8":68,"\u559c\u3073":[7,62],"\u6295\u7a3f":89,"\u4ed8\u3051\u308b":[66,3],"\u30d7\u30ed\u30b0\u30e9\u30e0":[47,20],"\u5c11\u306a\u304f":[68,15],"1\u3064":[35,36,19,89,28,17,18,41,4,1],"\u7279\u5225":29," YOSHIOKA":40,"\u5c11\u306a\u3044":[22,15,28],ko:25,"\u7d44\u307f\u8fbc\u3080":[68,37]," same":[],TokenDelimitNull:90,"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc\u30b8\u30e5\u30fc\u30b9":51,",\n{":[29,64,45],"\u7e70\u308a\u8fd4\u3059":20,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[52,28],"= ":39,"\"ellip":[63,5],"\u306e\u307f\u3057\u304b":4,"_GITHUB":62,"_CURSOR":20,"_res":17,"/html":[18,62],">cache":23,GPS:68,gbf:[],"\u5f97\u308b":[],"\u4e0d\u8981":68," releases":40,"\u697d\u3057\u3044":[38,74],"_search":[18,19,40],"\u3070\u3044\u3051":[40,28]," released":25," never":[],",\n[":73,"\u79d2\u3088\u308a":90,",\n]":38,"_CTX":18,queries:17,"\u64cd\u4f5c":[31,37,3,14,22,8,28,44,55,68,30],"_parse":22,"\u69cb\u7bc9":[31,26,74,15,40,47,88],view:[31,42,57,26,14,8],"\u5236\u5fa1":22," eggs":41,RETURN:56,Script:[]," markup":7,Wikipedia:61,"\u4ee3\u5165":[39,20,37],"\"float":[],latin:14,"\u63a5\u7d9a\u5148":0," missing":[],"\u884c\u6570":18,".list":70,"/doc":[]," Properties":56,"\u65b0\u898f":17,"\nBigram":17,"\u975e\u5e38":[22,8,40]," day":15," Request":62,"\u985e\u4f3c":[22,64,37,19,40],".\"":[44,15,3,36],"\u51fa\u529b":[2,3,26,73,65,17,40,30,31,9,83,10,61,12,62,14,84,85,28,18,88,19,68,20,43,89,23,47,82,86],WITH:[58,3],"\u304c\u3064\u3044":[40,20],"(string":60,"\ncolumns":[]," yappo":25," Akio":20," compared":[],"\nfind":[]," gqtp":68,Minute:56,"\u4e00\u9577":68," quit":14,ken:36,"\u3084\u304c":86,"\u5b66\u3073":28,"\u7dad\u6301":68,"\u304c\u304a\u304c":89,"/var":14,"\u6d88\u8cbb":15,"\u7121\u52b9":40,"\u4f4d\u7f6e":[36,3,31,68,27,39,58,86,89,18,30],"\u5168\u4ef6":[],"\u4e43\u6bc5":20,job:17," only":[],"\u3053\u308c\u3089":[3,67,38,89,79,85,45,23,47,4],key:[36,3,19,67,64,44,89,73,8,75,28,76,39,51,17,45,72,29,41,12,55],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":17,users:89," Languages":62,"\uff12\u3064":[39,67],"2\u4ef6":89,"\u304a\u77e5\u3089":[31,2,20,90,40],"\u7279\u5316":62,Emergency:56," map":56,plugin:18,admin:20,"/lucid":[],"/status":[23,0,55],":ss":56,valgrind:88," max":[52,69]," may":[],"\u6728\u578b":[8,28],".org":[36,3,67,44,73,17,39,55,70,62],"\u88dc\u6b63":[31,78,64,4,19],"/local":70," GNU":[18,70,31],"\nnumber":[],"\u843d\u3061\u308b":[18,20],"\u64a4\u5ec3":20," which":[],comment:89," pull":62,"\u4eca\u56de":[40,3],RAM:17,"\u304a\u304d\u307e\u3057\u3087":44," \"@":89,"\u4f5c\u6210":[2,3,51,17,40,29,30,72,6,31,44,8,79,38,58,10,61,36,14,15,46,28,18,41,19,67,89,20,45,47],"\u6295\u7a3f\u5834\u6240":89,"\u533a\u5225":[61,72,28],"/senna":73,DDL:38," \"I":[15,28],"\u6b63\u3057\u304f":29," \"K":36,"\u6df7\u5728":85,"_add":[14,31,42,57,26]," IWAI":40,"\u30af\u30ea\u30a2":18," an":[],"\u66ff\u3048\u308b":[3,67],table:[57,3,51,26,73,75,17,76,55,40,29,72,31,44,8,9,38,58,81,12,36,37,64,14,15,39,28,18,41,42,19,67,89,20,43,45,48,86]," \"_":[36,19,64,44,89,15,28,55,45,72,29,41,51],li:[38,74],rpm:[40,70],Uubntu:88," \"e":[29,19],quit:[31,42,56,26,14,33],"\u30b5\u30d6\u30bb\u30c3\u30c8":61,"\u91cd\u307f\u4ed8\u3051":[38,28],Tomoatsu:20,"\u30e1\u30e2\u30ea":[40,20,70]," \"n":55,"\nsearch":[],"\u9bae\u5ea6":15,json:[57,3,65,52,17,76,6,71,9,80,81,84,58,12,82,83,75,85,28,43,8,23,48],"\u78ba\u5b9f":64,TokenBigramIgnoreBlankSplitSymbolAlpha:38," \"s":[19,64],"}\u300d":28," Entry":[8,57,71,43,9,76,80,58,81,75,48,12],"]\n":[8,3,51,65,52,28,76,55,29,72,6,44,57,71,80,58,81,82,36,64,14,84,15,39,41,19,67,89,43,45,48],"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":40,"\u3002SET":17,"\u521d\u671f\u5024":0,username:36,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":40,"\u5927\u6587\u5b57":3,HashTags:89,"\u8a08\u6e2c":[18,2,88],"\u30fb\u81ea\u5df1\u7d39":89,"_level":[6,31,42,56,26,14,65,82],SJIS:25,"\u5185\u90e8":[44,40,83,28],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":74,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":18," when":[]," fast":28,"\u58ca\u308c":[18,20,84],tsv:[23,85],"\u3068\u3064\u3044":39,"\u4fdd\u6301":54,"\u524d\u8ff0":38,"\u7a2e\u985e":[31,37,3,19,44,14,45,79,38,64,29,18,30],"\u540c\u671f":17," MessagePack":23,"\u3068\u3053\u308d":[7,40,89,62],"\u30c7\u30a3\u30b9\u30af":2,"\u307f\u305f\u3044":[]," favorited":89," \" ":17,"\u672a\u5b9a":[44,8],saer:[19,64],"\u52a0\u3048\u308b":[18,8,58],means:56,"\u533a\u5207":[8,28]," System":[1,61]," language":62,"\nmany":[],"\u4f4f\u6240":40," favorites":89,"\u793a\u3055":[9,12],"\u793a\u3057":[3,67,38,27,28,83,55],"\u73fe\u308c\u308b":38,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[18,40],at:[],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[31,53,62]," Good":15,"\u6570\u70b9":61,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[14,3],"\u79d2\u5f62":61,"\u3072\u308d":72,"\u8a08\u7b97":[2,63,64,68,27,39,45,29,60,61,5],"\u578b\u3068":67,"\u3072\u308d\u3086\u304d":72,vm:40,"\u3002\n":[2,74,52,17,5,6,9,83,81,61,12,36,37,14,84,66,86,18,41,89,20,90],"\nbox":[]," record":[44,3,55],"/\\":[],"/[":[],"\u9818\u57df":[40,39],"\u3002LD":70,"\u30bf\u30a4\u30df\u30f3\u30b0":[40,3],You:[],avg:0,pkg:20,"\u8fd4\u4fe1":89,"\u8aa4\u5b57":[18,20,40],uptime:[83,23,2,55],"\u5ea7\u6a19\u5024":18,"{LANGUAGE":62,"\u614e\u91cd":88,"\u3002\"":[38,89,55,64],"\u3002#":[18,20],"/g":[],"-deafult":18,"\u3002.":62,"/d":[],"/c":7,"\u3002)":[28,17]," replied":89,"\uff08longest":18,"\u91cd\u8996":[38,15],"\u901a\u308a":[63,19,38,27,9,28,45,12,5],"\u6ce8\u610f":[38,18,3,17,44],"\u300cbilliard":74,"\u767b\u9332":[84,8,3,64,44,75,20,15,90,68,39,37,40,29,89,4]," need":[]," PORT":55,"\u30ad\u30fc\u30ef\u30fc\u30c9":[31,2,3,38,68,74,28,24,89,4,90],"| _":39,"\u518d\u5ea6":37,"\nits":[],"/\n":[20,62],"\u3002C":[7,68],"\u3002N":38,"]\"":[89,39],"\u3002TokenDelimit":45," Ocelot":[18,70,31],"\"roonga":4,"[apt":40,v1:37,v2:37,"_ito":18,"\u672c\u4f53":47,pdf:[10,47],"\u3082\u3063\u3068":28,"\u304a\u304b\u3057\u304f":20,"\u3002_":[3,79],EOF:14,"\u300d\u300c":89,"\u3002[":[40,81,3],"/.":18,"\u5168\u6587\u691c":[31,20,3,30],"\uff01\"":89,"/*":[7,62],"/groonga":[3,7,20,14,55,70,40,18,62]," ID":[68,56],":\"":[22,3],"/$":62,"/\"":[36,3,67,44,73,39,55],"\u66f8\u304d\u8fbc\u3080":17,"\u30d7\u30ed\u30c8\u30b3\u30eb\u30e2\u30fc\u30c9":[],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[2,8,3,73,75,17,76,55,29,30,31,71,79,80,58,61,37,14,84,18,22,68]," ECMAScript":[],"\u4e00\u81f4\u7528":[],uzulla:18,"_POSITION":[3,51,38,89,15,28,58,41],lcov:88," translation":62,"\"ellipsoid":[63,5],"\u8868\u793a":[2,3,17,55,40,30,31,44,9,83,38,12,36,14,84,39,86,18,67,68,20,23],"\ndo":17," obj":84,"@' ":3,"\u8a9e\u5f59":[35,31,74,3,8,54,30],"\u3042\u304d":72,"\u3001(":[61,17],"x\u30df\u30ea":61,"\u767a\u63ee":68,detail:17,"_HOST":17," yum":[40,70],Nonexistent:28,".mo\u30d5\u30a1\u30a4\u30eb":62,"\u5fd8\u308c":18,"\u3002Point":[13,5],"\u9806\u5e8f":[3,38,8,9,28,12]," \u6642":89,web:[64,19,45],"\u5236\u7d04":35," Fumiyasu":18,listen:[14,40],"\u3042\u3063":[36,19,86,75,79,17,62],"-ruby":40," ]":[36,19,64,44,89,15,28,39,55,45,72,29,41,51],"\u3002 ":[13,27,3,45,68,20,63,17,64,55,28,29,18,40,62,61,90,5],"\u3042\u3068":62,self:17,"\u3055\u3093":[20,90,40,18,4,62],wareohji:40,"\u306b\u3059":38,script:[13,26,31,22,63,75,28,76,34,17,69,60,5],add:28," shema":[],"\u9ad8\u7cbe":68,"\nHere":[],"\u660e\u793a\u7684":23,qwik:73," its":56,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[18,88,62],match:[31,74,3,51,38,43,20,15,28,89,41,30,56],"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":40," followings":[],ctrl:55,pkgs:70,RedHat:18,gd:[],dest:[14,0]," squeeze":[31,70],"\u756a\u53f7":[3,14,0,28,17,79,55],"\u59cb\u307e\u3063":4,"\u5b89\u5b9a":[40,84,86,68],Renamed:[],"'pid":14,"\u5f15\u8a9e":3,"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":18," keywords":[],Release:[],Masaharu:40,"2nd":[]," tracker":1,you:62,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":38," usages":[],Poedit:62,"\u4e00\u65b9":[38,44,3,68],"\"MySQL":4,"\u4e00\u3064":[57,73,74,75,52,28,76,5,6,32,44,33,71,9,34,58,84,81,60,61,12,82,13,63,83,65,86,80,68,43,8,69,48],CentOS:[18,40,20,70,31],"\u6574\u5408":2,"\u4f4f\u3093":89,"\u672c\u8cea":17," specify":[],"\u88dc\u5b8c":[31,19,78,20,45,29,4],"\u7f6e\u63db":[51,28],"\u5ea6\u5206":61,"\u6d0b\u723e":18,Sphinx:[7,10,47,87,62],"\u3068\u3044\u3063":39,"_threshold":[19,64,20,28,45,29,18],"\u4e0b\u8a18":[83,84,37,86],"\u306a\u304b\u3063":[6,57,3,81,14,65,86,8,43,52,28,76,38,80,58,17,40,48,82],Parameters:[],sequence:[29,64,19,45],OPTIONS:16,"\u4ee5\u524d":[38,18,89,52,44],Appended:[]," doest":[],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u30b5\u30fc\u30d3\u30b9":[],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":54,Quiz:36," range":[]," candidate2":19,"\u8ca0\u8377":20,"/source":[7,70,62]," unpatched":25,"\u5727\u7e2e":18,"'config":14,"\u610f\u56f3":40,"\u30b3\u30e1\u30f3\u30c8":[14,89,20,17],"_CALL":37,"_sortby":[43,67,28],"\u767a\u884c":55," origin":62,"_PAT":[36,3,51,38,89,73,8,9,28,41,72],"\u306e\u307b\u304b":[44,61],"\u304f\u3093":89,LANGUAGE:62,"\u7121\u9650":20,"\u96e2\u308c":39," than":56,"\u304f\u308c\u308b":[7,68,62],"\"gronga":4,"\u30dc\u30bf\u30f3":62,MinGW:18," mail":17," reasons":[],"\ncommand":[],"#{L":56,",\"domain":67," The":[]," Bool":[44,72],"\u5206\u3051\u308b":44,"\u3002-":[89,85],"\u30d0\u30b0":18,"/sources":70,"\u3057\u3064\u3064":88," deprecated":[],"\u3042\u308c":[38,15,17],"\u30c7\u30d0\u30c3\u30ac":88,"_DB":[18,40]," unexpected":[],"\u3042\u308a":[1,3,51,74,75,53,55,29,4,6,32,7,33,8,9,79,83,58,61,62,35,37,64,38,15,39,85,17,18,41,88,89,19,68,63,28,44,70,78,23,47,86]," body":[38,81,48,58,51],"\u7acb\u3061\u4e0a\u304c\u3063":17,host:17,GitHub:[1,18,62,40],offset:[43,67,3,19,28],"\u306e\u3044\u305a\u308c\u304b":[13,63,5],"\u307b\u307c":41,"\u6319\u52d5":[14,31,20,38,74],"\u9055\u3063":29,".hash":89,hana:36,"\u30c0\u30e1\u30fc\u30b8":38,"\u6f0f\u308c":[22,68],Groonga:[68,56,28],Weight:[],"\u3069\u306e":[64,27,63,28,5],"\u4ee5\u5185":[29,39,89,64],".overcommit":40,"\u5206z":61,"\u30b7\u30fc\u30b1\u30f3\u30b9":[29,64,45],http:[36,3,67,14,73,0,17,44,39,85,55,62],UP:23," important":[],"_queries":[23,3,55]," saerch":[19,64],"|KEY":[3,51,38,89,8,15,9,28,41,72],tomo:36,".html":[14,62],"\u9055\u3044":[44,3,28],"\u9055\u3046":20,SATOH:18," Ueno":[40,20,90],"\u610f\u5473":[37,3,19,14,28,39,17,29],Really:28,"!!":[36,89],"! ":[37,15,28],"!\"":[36,3,44,89,15,28,55],"\u6587\u66f8":[3,51,44,22,74,15,68,4],"\u6570\u5b57":[38,17,64],SIGINT:18," patch":25," value":[],Removed:[]," Shops":74,"\u4e26\u3073":[74,67],"<log":14,"\u53d7\u3051\u53d6\u3063":68,"0e":17,"\u3072\u308d\u3042\u304d":72,"\u85a6\u3081":[],"\u3002HOST":55,"_nsubrecs":[79,67],"-node":70,friends:36,"\u3002mroonga":68,"_remove":[31,42,26,14,81,18,48],"\u30ed\u30b4":40,"\u95b2\u89a7":55,development:47,">default":23,"\u5c55\u958b":[18,70]," event":[29,64,19,45],"var":[14,37,70,12],"\u901f\u5ea6":[18,17,36]," query":[19,56],Execution:[19,28],"\u89a7\u4e0b":88,"\u7279\u6b8a":[85,3,17],"\n\uff08":20,revised:59,"-pid":[14,18]," Bigram":[38,89],"\u304c\u3068\u3046":89,"-db":40," time":[44,56,17],IWAI:40," ready":[],"\u73fe\u5728":[6,3,68,27,0,52,17,54,34,89],gronga:4,"\u3068\u3069":78," +":[61,85,28,59],"\u53d7\u3051\u4ed8\u3051\u308b":[]," usage":[],"\u3068\u3066":68,"&& ":38,"_term":25,"\u5730\u56f3":68,enginen:29," Takashi":18,"\u753b\u9762":2,"\u4e00\u756a":28,"\nmatched":[]," wheezy":[18,70,31],"\u3068\u3053\u306e":29,"\u3068\u3057":[15,36,37,64,14,22,0,17,44,45,29,41,61,4],"\u4ecb\u6587":89," git":62,"\u3068\u3048":[74,51,68,8,39,86],"\u3002iptables":55,limit:[36,3,19,67,43,28,18,56]," accumulated":[],"\u6c7a\u5b9a":28,"\u3068\u304d":[2,3,74,28,55,40,29,4,44,61,12,36,37,64,14,66,18,19,68,20,70,45],"-disable":[18,20],epel:70,"\u611f\u8b1d":[18,2,20,90,40],Gemfile:40,links:[44,55,67],"\u518d\u691c":22,"\u4e2d\u91ce":89,pid:[14,2]," Shinya":40,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":20,"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[31,30,89],"{\"":[84,17],"\u4f7f\u3044\u5206\u3051":[38,74],"\"\u307e\u308d\u3086\u304d":[]," error":40,"8bit":61,"\u521d\u56de":62," suggestion":16,"\"se":29,"_system":18,"%post":40,"-config":[14,18,2,20,40],"\u305f\u3060\u3057":[2,14,74,79,85,18],"\u7570\u306a\u308b":[31,44,14,17,38,39,24],"\u7570\u306a\u308a":28,"\u30a2\u30ed\u30b1\u30fc\u30c8":83,"\u5f85\u3061\u53d7\u3051\u308b":55,"/default":40,Arnaud:18," VALUE":3,"\u3068\u308a":[85,88,28]," Narwhal":[18,70,31],"_COLUMN":20,bool:[],Pikonyan:36,"\u3055\u304d":44,"\u6574\u5217":[68,3],"\u3068\u3082":[89,39,28,17],"{\n":37,"-analyzer":18,out:17," developer":89,"'abc":8,Zenigata:36," \u2026":[],":\u5206":89,"\u8ab2\u984c":1,Oneiric:[18,70,31],"\"GROONGA":[]," aren":[],".location":89,"\nfrom":[],"\u7591\u4f3c":[31,26,8,75,79,69],"\u65b0\u3057\u3044":[3,14,68,40,18,47,4,62],"-offset":28," MODE":25,"\u65b0\u3057\u304f":[15,3,86],"\u307b\u3069":[14,44,3,19],"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":20,"\u7cfb\u7def":[],debian:40,"\u305f\u3070\u304b\u308a":15," to":[25,56,28]," available":25," tags":36,"\u30c7\u30fc\u30e2\u30f3":[14,40,2,55]," Gemfile":[],"\u6027\u80fd":68,Site:[44,3,55,67],original:72,Repoforge:70,"\u5909\u3048\u308b":38," space":[],"\"is":44,"\u307b\u304b":[44,68,89],"\u2026\uff09":64," advanced":25,rep:17,"\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4":89," Content":[]},objtypes:{"0":"std:option"},titles:["7.1.1. grnslap","1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","5.1. \u306f\u3058\u3081\u306b","7.7.3. geo_in_circle","7.3.15. log_reopen","3.1. C API","7.3.21. table_create","7.3.22. table_list","2.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u4f5c\u6210","8. \u4ed5\u69d8","7.3.6. column_list","7.7.4. geo_in_rectangle","7.1.3. groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","7.8. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","7.1.5. groonga-suggest-create-dataset","7.1.2. grntest","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011/12/29","7.3.20. suggest","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","8.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","7.6. grn_expr","7.2. \u51fa\u529b","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","News in Senna period","7. \u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb","6. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","7.3.17. select","5.3. \u88dc\u5b8c","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","7.3.18. shutdown","7.3.16. quit","7.7.5. now","9. \u5236\u9650\u4e8b\u9805","4.6. \u30bf\u30b0\u691c\u7d22\u30fb\u53c2\u7167\u95a2\u4fc2\u306e\u9006\u5f15\u304d","2.3. \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","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","7.3. \u30b3\u30de\u30f3\u30c9","7.3.8. define_selector","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","5.5. \u63d0\u6848","2. groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","11. groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","7.3.23. table_remove","7.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","5.2. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.3.2. cache_limit","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","7.9. Log","7.3.24. view_add","7.3.5. column_create","8.1. \u30af\u30a8\u30ea\u69cb\u6587","7.7.1. edit_distance","7.4. \u30c7\u30fc\u30bf\u578b","3.2. \u56fd\u969b\u5316","7.7.2. geo_distance","5.4. \u88dc\u6b63","7.3.13. log_level","2.1. groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","1. groonga\u306e\u7279\u5fb4","7.7.6. rand","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","7.3.9. defrag","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","7.3.11. dump","8.3. \u691c\u7d22","7.3.12. load","7.3.10. delete","7.7. \u7d44\u307f\u8fbc\u307f\u95a2\u6570\u4e00\u89a7","5. \u30b5\u30b8\u30a7\u30b9\u30c8","7.5. \u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","7.3.4. clearlock","7.3.7. column_remove","7.3.14. log_put","7.3.19. status","7.3.3. check","7.1.4. groonga HTTP\u30b5\u30fc\u30d3\u30b9","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","3. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.5. \u30c6\u30b9\u30c8\u65b9\u6cd5","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b"],objnames:{"0":["std","option","option"]},filenames:["executables/grnslap","contribution/report","news/0.x","tutorial/introduction","suggest/introduction","functions/geo_in_circle","commands/log_reopen","contribution/documentation/c-api","commands/table_create","commands/table_list","contribution/development/document","spec","commands/column_list","functions/geo_in_rectangle","executables/groonga","indexing","executables/groonga-suggest-create-dataset","executables/grntest","news/1.2.x","commands/suggest","news/1.0.x","spec/script_syntax","expr","output","troubleshooting","news/senna","reference","geolocation_search","commands/select","suggest/completion","tutorial","index","commands/shutdown","commands/quit","functions/now","limitations","tutorial/index","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","tutorial/search","news","tutorial/match_columns","commands","commands/define_selector","tutorial/data","suggest/suggestion","contribution/development","contribution","commands/table_remove","executables","suggest/tutorial","tutorial/query_expansion","commands/cache_limit","community","tutorial/lexicon","tutorial/network","log","commands/view_add","commands/column_create","spec/query_syntax","functions/edit_distance","type","contribution/documentation/i18n","functions/geo_distance","suggest/correction","commands/log_level","contribution/development/com","tutorial/drilldown","characteristic","functions/rand","install","commands/defrag","tutorial/patricia_trie","commands/dump","spec/search","commands/load","commands/delete","functions","suggest","pseudo_column","commands/clearlock","commands/column_remove","commands/log_put","commands/status","commands/check","executables/groonga-http","command_version","contribution/documentation","contribution/development/test","tutorial/micro_blog","news/1.1.x"]})
1
+ Search.setIndex({objects:{"":{"--ftp":[89,0,1,"cmdoption--ftp"],"--dir":[89,0,1,"cmdoption--dir"],"--document-root":[60,0,1,"cmdoption--document-root"],"--cache-limit":[60,0,1,"cmdoption--cache-limit"],"-P":[109,0,1,"cmdoption-P"],"--pid-path":[60,0,1,"cmdoption--pid-path"],"-e":[60,0,1,"cmdoption-e"],"-d":[60,0,1,"cmdoption-d"],"-a":[60,0,1,"cmdoption-a"],"-c":[60,0,1,"cmdoption-c"],"-m":[109,0,1,"cmdoption-m"],"-l":[60,0,1,"cmdoption-l"],"-n":[60,0,1,"cmdoption-n"],"-i":[60,0,1,"cmdoption-i"],"-h":[60,0,1,"cmdoption-h"],"-t":[60,0,1,"cmdoption-t"],"-p":[60,0,1,"cmdoption-p"],"-s":[60,0,1,"cmdoption-s"],"--log-path":[60,0,1,"cmdoption--log-path"],"--default-match-escalation-threshold":[60,0,1,"cmdoption--default-match-escalation-threshold"],"--log-output-dir":[89,0,1,"cmdoption--log-output-dir"],"--config-path":[60,0,1,"cmdoption--config-path"],"--query-log-path":[60,0,1,"cmdoption--query-log-path"],"--protocol":[60,0,1,"cmdoption--protocol"],"--bind-address":[60,0,1,"cmdoption--bind-address"],"--groonga":[89,0,1,"cmdoption--groonga"]}},terms:{"\u305a\u308c":[7,56,90,3,81,60,31,8,40,4,36,87,44],EPEL:78,"\u5927\u62b5":5,"\u8a73\u7d30":[70,1,107,37,5,42,18,67,44,89,74],".overcommit":42,"\u3002groonga":[90,46,70,1,2,101,81,110,108,39,64,21,42,27,43,67,5,52,33],"\u51fa\u6765":[25,43],"=redhat":67,localstatedir:[94,67],"\u6587\u6cd5":[29,40,96],prefix:[36,91,93,14,67,107],"\u5909\u66f4":[0,1,2,28,65,14,56,67,89,29,7,108,91,93,68,45,37,77,104,42,90,94,115],"\u3002scan":107,"\u30c7\u30fc\u30bf":[0,101,1,84,24,26,64,42,27,6,28,29,70,7,108,8,93,9,31,96,97,25,36,75,37,73,14,44,78,111,110,81,94,92,82,51,53],"-history":14,senna:[70,108,110],"\u6e1b\u3089":[42,75],"\u3070\u308c\u308b":94," deb":42,"\ntitle":91,"\u4e8c\u70b9":7,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3":[18,60],"const":42,"\u6539\u826f":[0,23,94,112,42,14]," scan":107,"/travis":45,"=MESSAGE":[67,82]," thread":[88,89],"\u9818\u57df":[42,40,67],"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3":[2,91,115,60,64,97,14,67,28,74],"\u79d2\u60c5":14,"_column":[29,70,24,85,68,89],"\u975e\u4e92\u63db":14," InnoDB":81," Lynx":[29,9,82]," English":[70,13]," YOUR":14,spec:[94,91]," GitHub":74,"\u304b\u305a\u3072\u3053\u3055\u3093":42," use":[77,70,110,108,74],editrc:14,"\u3002Video":25,"void":42," stamp":88,"\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":91,"\u3082\u3089\u3063":1,"\u30d0\u30c3\u30d5\u30a1ID":77,"\u6b63\u5e38":[91,89],"\u3066\u307f\u307e\u3057\u3087":40,"\u300cOffGao":111,"\u30d5\u30c3\u30af":45,"/plugins":[94,67],"\u5371\u967a":[91,28],"\u4f8b\u3068\u3068\u3082":7,".en":91,MAP:14," ToyBox":8,"\u30df\u30b9":27,"\u5b9a\u5024":42,"\u3065\u3051":[29,90,24],"\u932f\u8aa4":81,"=pat":42,upload:91,"\u5b9f\u6570":44,Nice:73,"\u6761\u4ef6\u5f0f":[42,110],"\u6700\u9577":[14,108,89,33],starttime:[21,46,1,2,5],"\u30a2\u30ed\u30b1\u30fc\u30c8":46,"\u7c21\u5358":[70,7,1,108,115,37,110,5,67,28,21],"_snip":42," threads":88,"\u63a5\u8fd1":36,"\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":94,"-repository":[42,91],zlib:[14,67,94,42],Debian:[29,91,92,82,42,14,52,107],"\u3044\u304f\u3064\u304b":[70,36,91,115,13,107,67,68,33]," column":[8,93],Makefile:91,"\u3046\u3061":[14,26,90,36,77],"[http":42,"\u89e3\u9664":[0,19,60,69],"\u9006\u9806":1,"\u7b87\u6240":91,"\u4f5c\u3089\u308c":89," install":[109,101,78,91,12,9,92,107,82,42,10,67,89,53],"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc":14," Regular":5," root":5," CUTTER":107,"[2":60,"\u5236\u9650":[34,29,7,98,24,94,21,42,14,89,44,28,110],"\u3002\u30df\u30ea":8," domain":[49,79],"-rpm":91,"\u5230\u9054":34,"\u65e5\u672c\u6e2c":7,"\u30ec\u30a4\u30e4":36,"\u6210\u529f":[69,63,1,3,38,102,39,4,95,21,32,67,50,33],"\u4e8b\u524d":[37,6,91],zunda:14,"\u306a\u3068\u304d":81,"\u30de\u30af\u30ed":14,Visual:[14,64,42],"\u30b7\u30f3\u30dc\u30eb":[39,33],Put:110,"\u5f15\u3044":108,net:79,"\u683c\u7d0d":[25,36,1,57,79,8,81,59,26,60,85,73,39,111,66,14,44,68],"\u3059\u3050":[81,28],"\u8fd1\u3044\u9806":26,"\u4e8c\u3064":[7,85,89,36,90],"\u914d\u7f6e":[1,91],"\u30de\u30c3\u30c1\u30ab\u30e9\u30e0":110," gcc":[12,101,78],"\u578b\u3068\u3057\u3066":44,"\u53cd\u8ee2":108,"\u306f\u3044\u3051":[50,56],"\u30e9\u30a4\u30d6\u30e9\u30ea":[100,29,1,110,81,82,98,42,67]," has":[88,23,86],"\u305f\u3070\u304b\u308a":73,"\u5fdc\u3058":[81,89],"& ":[37,40,36,85,108],"\u9069\u7528":[70,1],"\u30a8\u30f3\u30b3\u30fc\u30c9":[18,94],"\u30af\u30a8\u30ea\u30ed\u30b0":[14,75,51,27],china:79,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9":99,"&&":70,GRN:[87,70,36,56,80,94,42,14],path:[66,59,60,5],"\u300cComments":111,"\u95a2\u4fc2\u5f0f":[52,36],".ddl":89,"\u30d9\u30af\u30bf\u30ab\u30e9\u30e0":14,CMake:[42,67,64],"\u305a\u306b":33,"_key":[0,1,108,93,70,111,42,68,110],"\u79cb\u8449":40,"\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":[101,78,91,12,9,92,64,67,89,53],"\u4e2d\u8eab":[1,89],"\u5f62\u614b":[81,67,108,33],"_output":[70,95,79],hostname:[18,60,5],":port":[18,60,5],objname:[19,69],"\u5411\u4e0a":[14,28,98]," data":2,"\u58ca\u308c\u308b":[14,0,94,42],"\u7ffb\u8a33":[52,91,74],"\u63a8\u79fb":90,"\u3002Debian":107," tests":91,"-admin":42,"\u300c#":[111,94],"\u300c ":70,"\"sound":75,"\u3080\u308b":[108,110],"\u8fd4\u5374":[87,70,56,80,59,66,1]," synonym":70,"9f":2,"/en":91," options":5,"-YYY":74,"\u8aad\u307f\u3084\u3059\u3044":42,"_table":[36,94,42,14,52,89],"\u5ea6\u6d6e":44,Tritonn:108,"\u985e\u7fa9":70,"/munin":67,to:5,"\u624b\u9806":[29,91,64,51,42,52,67,103],Express:[42,64],"\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[42,52,36],"-w":91,noarch:[101,78],"\u975e\u63a8":[14,7],"\u9023\u7d9a":[37,85,75],m6:12,".yml":45,typo:14,ip:89,TABLE:[70,1,84,94,110,66,108,33],"_flags":[42,70,110],"[pkg":[14,42],type:[25,111,1,84,79,75,8,93,59,39,40,51,27,43,89],"\"n":[70,108,110],"\u30d6\u30ed\u30b0":[73,111,43,52,91],"\u30df\u30ea":[8,14,40,44,108],"\u6709\u529b":93," opened":88,"-s":[60,21],autogen:[42,91,74],"\u7f6e\u304f\u4f8b":67,"\u52d5\u753b":25,Entries:[70,108,97,110],"\u4e0b\u304c\u308a":37,"\u5f15\u6570":[0,63,1,3,59,60,4,21,66,56,89,69,70,7,90,72,8,31,95,97,32,99,33,87,35,36,38,39,77,102,104,42,71,108,109,46,80,30,50,18,19,83],"_register":112,"(pos":[30,71]," json":[31,2],"-bind":[14,60,42],"_command":[1,2,46,21,28,5]," saerch":[93,75],"\u30fb\u5186":81," \"\u308d\u3086\u304d":84,"\u3064\u3065\u3044":111,"\u7518\u6817":111,"\u6709\u52b9":[87,70,56,110,91,81,9,60,78,31,21,5,42,14,67,89,33],"\u62bc\u3057":1,word:[42,70,108,110],"\u7f6e\u304d\u63db\u3048":[60,110,74],"\u4ee5\u4e0a":[70,36,1,108,91,93,110,60,64,107,44,89,74],mm:[88,108],Text:[70,44,108,110],pid:[0,60],"\u4e00\u6b69":1,"\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":89,"\u62bc\u3059":[1,74],"_VALUE":70,"\u30a2\u30fc\u30ab\u30a4\u30d6":[64,91,74],mv:32,"\u30e1\u30fc\u30eb":[54,74],install:[91,45],"_EXPR":36,MIME:28,"\u306b\u95a2\u3057":[36,89],"/xml":28,"\u60c5\u5831":[0,1,59,26,13,62,14,66,67,96,29,91,8,93,25,37,39,40,103,42,107,81,94,111,52],"\u5316\u6642":14,"\u304c\u3063":43,"/blog":91,"-> ":94,"\u540c\u68b1":[42,94,74],updated:37,"\u30ed\u30fc\u30c9\u30a8\u30e9\u30fc":42,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3":[0,19],"\u660e\u793a":[7,91,60,28,27,89],"'pid":60," Expressions":5,"\u4e92\u63db":[18,108,90,28,91]," pdf":10,"\u4e0b\u66f8\u304d":26,LF:109,end:109,LC:74,eng:[27,93],"\u540d\u524d":[80,63,56,24,3,59,60,4,5,42,1,68,69,29,90,91,72,93,31,95,89,97,32,99,33,87,35,86,38,39,77,40,102,104,14,71,44,108,109,46,114,74,111,94,66,112,30,50,18,19,83]," chunk":77,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":91,"3\u3064":[8,70,1,107,98],"\ngpg":91," Geodetic":44,"\u30d7\u30ed\u30bb\u30b9":[109,1,90,81,60,46,77,89,99,42,28],"\u4f55\u500b":70,"\u30de\u30eb\u30c1\u30b3\u30a2CPU":67,config:[0,90],rroonga:[98,45],"-lines":14,"\u30b4\u30df":[14,94,77],"\u7d42\u4e86":[7,90,91,94,60,5,99,42,89,21]," title":[8,25,43,1,21],description:[111,85],"\u306e\u3046\u3061":110," kana":[27,93,75,51],less:36,"_plugins":14,"\u518d\u5ea6":36,"\u30b9\u30fc\u30d7":85,"-devel":[101,78],"\u76f4\u4e0b":14,lat:89,"\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8":[52,91]," hobby":88,"_title":[43,1,89],types:[27,93,75,51],"\u305d\u3093\u306a":67,"\u63fa\u308c":57,"\u305d\u306e\u5f8c":41,".tar":74,"\u30d9\u30af\u30bf\u30fc\u30ab\u30e9\u30e0":[8,29,57,96,111],"-files":[52,91],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf":94,"\u5c0f\u3055\u3044":[70,36,110,112,71],"\u56fa\u5b9a\u9577":94,"@naoina":42,"\u901a\u5e38":[70,1,110,8,5,44,68],"\u30d9\u30fc\u30b7\u30c3\u30af":28,"\uff08TokenMecab":37,"\u5272\u308a\u5f53\u3066":94,"\u30a4\u30f3\u30dd\u30fc\u30c8":[42,52,91],"\u3069\u3053":[14,67],"=PATH":[67,82],"\u5206\u5c90":107,"\u304b\u3064":[70,85,108],"\u3042\u305f\u308a":[14,94],"\u643a\u5e2f":81,chunk:77,"\u7acb\u3061\u4e0a\u3052":89," smaller":88,"\u5358\u4e00":39,"\u65b0\u898f\u30ea\u30ea\u30fc\u30b9":91,"\uff11\u5bfe":76,"\u305f\u304f":[14,6,28,74],"\u305f\u304b":[14,70,75],"\u30d1\u30c8\u30ea\u30b7\u30a2":[29,1,84,85,96,33],"_jp":67,"/new":91," Users":[111,70,97],"\u3078\u306e":[8,67],"@packages":91,"\u305f\u3044":[25,70,101,1,91,79,51,49,9,60,78,110,92,5,27,14,43,67,44,89,21],gqtp:[109,29,76,60,96,21,42,52,89],"\u8fd4\u3063":[111,108,110],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":89," zxvf":91,"_PER":14,"_in":[25,0,24,29,111,48,94,30,40,14,71],redhat:67,LongText:44,PRM:78,"\u8fd4\u3057":[87,35,70,7,1,108,72,80,93,75,114,46,30,36,56,51,27,71,6,28],"\u8fd4\u3055":[70,56,90,80,93,31,77,104,87],"\u305f\u3073":[40,90,89],"/windows":91,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":[60,64,42,67,89,29,91,9,10,101,12,14,107,45,109,78,81,94,92,82,18,52,53]," message":[43,4],"\u3002grntest":89,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9":[14,91]," speed":6,"-version":[94,90,28,91],RubyGems:42,"\u3084\u3059\u3044":[0,70,98],"\u3002C":[49,81],"\u30d7\u30ed\u30c8\u30b3\u30eb":[109,29,81,96,5,42,89,21],"@s":94,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":[67,91],"\u30ab\u30c6\u30b4\u30ea":70,"\u4e00\u884c":[94,60,89],"\u3082\u3063\u3068\u3082":107,"\u300coutput":18,"/Functions":107,"\u8a8d\u8a3c":[115,5,28,21],"\u30d6\u30e9\u30a6\u30b6\u30d9\u30fc\u30b9":[29,21,96],"\u64cd\u4f5c":[29,70,36,1,108,8,81,60,21,98,96,33],"\u5168\u3066":[70,108,73,5,98,43,44,74],"\u3072\u3089":[27,108,110],"_select":[14,52,36,70]," nsis":91,"\ncustomized":88,"-pack":[67,82],"\u7d44\u307f\u8fbc\u3093":[81,33],"\u56de\u6570":42,"\u691c\u8a3c":109,"(point":[30,7,71],"\u6771\u4eac":[37,111,40,7,85],"2\u3064":[54,70,1,110,72,111,51,43,28,115],API:[29,36,98,24,15,112,94,42,14],"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9":[18,94,60,42],each:[27,93,75,51],"\u30aa\u30fc\u30d7\u30f3":[14,42],PROGRESS:88,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0":[25,0,1,108,29,59,77,43,96,110]," Yuki":14,"_\"":14,"\u30ec\u30d9\u30eb":[3,42,4,60],serach:75,"/null":0,"\u5185\u8fd1\u304f":108,"\u300c\"":60,"\u30d1\u30b9":[109,1,91,89,94,60,112,21,18,14,67,28,5],"\u3059\u3067\u306b":104,"` ":2,"\u3002\uff08":[70,85,98,75,26,108,110,77,94,51,27,14,74,44,45],"\u3002\uff09":[0,85,108,75,26,70,110,94,51,14,74,45],"_DAT":[14,110,108,33]," clang":107,"\u30ea\u30af\u30e9\u30c3\u30b7\u30e5":42,"-G":64,"\u30e2\u30fc\u30c9":[18,36,1,21],"\u5373\u6642":[29,81],GQTP:[29,42,58,16],"\"Mroonga":108," referred":8,"\u6e96\u62e0":5,"\u30ed\u30b0\u30d1\u30b9":94,"+a":110," xvzf":[101,78,12,9,92,67,53],"@' ":1,realtime:51,gpg:91," music":88,".deb":91,"\u3068\u3059\u3079\u3066":70,"-rsync":91,"{\\":31,content:[73,42,70,108,110],rf:78,moritapo:25,rc:88,"\u6210\u308a":[70,110],"\u90e8\u5206":[36,108,37,111,85,67,107,110],"\".":[8,108,79],"[macports":14,"\u77ed\u3044":[111,94],GCC:42,SYNOPSTIS:86,"/\uff09":94,"_tp":109,"\uff01\uff08":74,"\u77ed\u304f":[73,81],free:94,"\u5909\u5316":81," html":[10,91,74]," editor":74,"\u305f\u308a":[81,104,98,52,44,33],"\u305f\u3089":[70,108,91,94,27,67,28,74],"\u30ab\u30e9\u30e0\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":59," Key":91,"\u8996\u899a":81,"\u305f\u3081":[54,1,57,85,60,13,62,64,5,42,27,67,28,84,101,70,7,108,91,8,9,37,89,97,33,25,36,75,12,77,40,14,71,107,45,109,78,111,110,81,92,82,51,52,74,21],"\u30eb\u30fc\u30eb":94,"\u307e\u308d\u3086\u304d":84,"\u771f\u507d":[8,44,108,110],"\u30eb\u30fc\u30d7":[42,94],libedit:[14,0,67,94,42],"\u5f31\u70b9":81,freecode:[52,91],"\u53e4\u3044":91,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9":94,filter:[25,70,7,84,37,111,85,40,94,95,98,42,50,108],COLUMN:[8,39,59,1,70],"\"ni":27,"\u4f4f\u6240":42,Tokenizers:[29,70,20,24],"\u30ab\u30e9\u30e0\u30b9\u30c8\u30a2":[8,29,81],TIME:88,"\u6709\u7121":8,"{TABLE":70,"\u30eb\u30fc\u30c8":14," NEW":91,"\u5f15\u7528":60,"\u5024n":[80,87,56],rand:[29,40,48,24,35],"\u304a\u304b\u3057":94,"><":2,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8":[81,89,98],"\u53ef\u5909":[14,19],"_INDEXER":42,Notification:88," geo":7,"\u304a\u3055\u307e\u308b":40,mingw:91,"_next":94," processed":88,"> ":[23,108,91,112,64,21,42]," brew":53,">\"":70,"\u6700\u4e2d":81,"1\u884c":89,"/projects":91,"\u30b5\u30dd\u30fc\u30c8":[0,67,2,89,8,81,26,110,108,73,94,90,21,42,14,45,44,91,28,5],"\u540c\u4e00":33," Meerkat":14,top:[14,30],"\u30d6\u30e9\u30a6\u30b6":[67,21,91,74],"\u3002Fedora":101,"@Kiske":42,"\u4f7f\u308f":[70,110,98,27,14,45],"-benchmark":42,">\n":[23,2,91],"\u533a\u5207\u308b":94," mysql":[70,23],"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6":[18,60,5]," users":[88,111],listen:[42,60,28],Search:110,"\u500b\u5b9a":76,"\uff08,":1,"\u63a2\u7d22":81,"\u5358\u4f4d":[7,1,108,81,85,94,111,14,71,44],"_clear":14," XXX":108," if":[8,5]," Travis":45,wareohji:42,"\u30ab\u30b9\u30bf\u30de\u30a4\u30ba":[95,70,67,60,110]," ls":91,".com":[1,91,79,8,40,21,52,74,45],">n":2,Oracle:[12,14,42,82,29],"\u5358\u4f53":[81,89],"\u3069\u3061\u3089\u304b":[108,110]," Floating":44,"_MESSAGES":[91,74],nsubrecs:[25,79,111],"\u7121\u99c4":81,"\u73fe\u5728":[109,1,91,81,26,62,104,111,32,114,89],distance:7,"\u306e\u3059\u3079\u3066":28,keyword:110,".json":2,Marverick:94,"-common":42,ELAPSED:[88,2],apt:[92,9,91,45],"\u3002PCRE":5,"\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb":[107,29,21,96],"\u30bd\u30b1\u30c3\u30c8":[63,56,3,59,4,66,87,69,31,95,97,32,99,33,38,39,77,102,104,42,46,80,50,19,83],"\u8d64\u9053":7," change":5,"\u69cb\u9020":[25,36,81]," sphinx":10," license":23,"\u30a8\u30e9\u30fc":[0,63,56,3,4,64,14,87,67,69,101,70,90,91,9,95,32,33,38,39,102,42,78,110,80,92,50,82,53],raw:45,"\u30d6\u30fc\u30eb":[8,44],Animation:25,"\u30aa\u30d5\u30e9\u30a4\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":42,"\u5834\u5408":[101,80,0,63,1,2,35,3,85,60,4,64,5,42,56,67,6,28,57,73,70,7,90,91,93,9,108,53,31,37,87,89,97,32,95,69,33,34,25,36,75,12,38,39,77,40,102,104,14,43,71,44,45,109,46,78,110,79,74,111,94,92,50,82,18,19,21],"\u3002grn":[36,98],"\u5f93\u3063":[18,70,33],"\u304b\u3069\u3046":[37,87,67,56],"\n<":2,latency:89,"\n>":21,"\u5f8c\u8005":40,"\u4e00\u89a7":[25,108,24,29,37,111,48,60,77,5,66,59,110]," and":[70,23,8,5,88,52],",\\\"":31,ifexists:31,"\u8ff0\u3079":1,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":[39,68],"\u591a\u9762":81,"-level":60,"\n-":[56,91,80,50,87,69],"\n(":[88,2,91],"-port":[60,89],They:88,"_distance":[29,0,7,108,24,25,48,72,40,42,14],"\n%":[74,78,91,101,12,9,60,92,21,97,42,14,67,107,53],DISTRIBUTIONS:91,"\u5f93\u3046":94,"\u308f\u3051":[8,27,70,108],"\n#":[1,57,60,5,27,66,89,84,70,7,108,8,93,73,10,25,75,46,40,43,110,79,111,51,21],"\u30d6\u30ed\u30c3\u30af":[81,5]," index":[25,43,108,110],"/share":[14,60],"\n[":[1,2,3,60,4,5,27,89,69,73,70,7,108,8,93,31,57,97,84,95,33,25,75,37,39,77,40,102,104,43,110,79,111,51,19],"\u30b1\u30fc\u30b9":[37,70],"\u7d22\u7528":[29,1,96],quit:[29,24,91,60,41,99,88],"\u3044\u307e\u305b":[70,108,93,26,78,115,28,110],"\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7":74,gzip:[42,67,28,115],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":45,"|WITH":[73,70,1,57,37,111,110,39,43,108],"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8":77,"\u30c7\u30fc\u30bf\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":28,"\u7701\u7565":[35,70,7,1,91,8,60,31,21,56,87,27,71,89],"\u533a\u5207\u3063":70,"\u4f7f\u3063":[54,1,57,85,64,21,67,5,6,28,84,101,70,108,8,9,98,74,100,25,36,75,37,77,40,42,44,45,78,110,92,82,52,53],the:[49,8,7,23],"\u5f53\u65e5":101,"\u30b5\u30b8\u30a7\u30b9\u30c8":[29,93,94,86,42,14,67,6,113],"\n}":[36,5,28]," installer":91,"\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af":107,radious:71,"\n{":[25,70,1,57,79,8,110,73,31,108,43,89,84],doc:[49,86,91,74],Float:[8,42,7],"/releases":91,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8":91,"\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7":[27,75,112,51],"\u767a\u751f":[0,91,37,81,42,67],"\u56fa\u5b9a":[1,33],"\u4f7f\u3048":[70,110,115,98,14,45,108],"\u4f7f\u3046":[0,2,26,5,42,27,67,6,28,101,70,7,108,91,49,93,89,97,98,36,75,37,14,43,44,45,110,94,8,82,51,21],"\u30ed\u30fc\u30c9":[29,1,108,81,94,60,31,111,14,96],"\n`":[69,63,3,38,102,39,77,4,95,104,32,19,50,33],"\na":88,"\u66f8\u304d\u8fbc\u307f":[111,67],"\u8003\u3048":[81,1,110,28],Fedora:[29,101,94,82,42,14,67],"\u30ec\u30b3\u30fc\u30c9":[1,57,26,60,14,66,68,84,29,70,108,8,93,73,95,96,56,98,31,33,34,25,36,37,40,87,42,44,110,79,80,81,94,50,111],"\u306a\u304a\u3053\u306e":89,"\u6210\u308a\u7acb\u3063":36,"\u3068\u3088\u3044":67,"/json":[14,28],"\u307f\u306a\u3055":36,"\u65e5\u672c\u8a9e":[54,108,37,81,110,42,27,74],"\u8ffd\u52a0":[0,1,84,60,62,5,14,56,67,6,68,29,108,91,8,9,31,95,96,33,87,25,36,37,73,39,102,42,43,79,81,94,112,92,52,74]," from":[8,23],"\u975e\u63a8\u5968":42,"\u5ea6\u8868":94,protocol:[18,60,2,28,21],"\u5206\u3051":[29,85,91],"\u5c0f\u6570":[70,56,108,8,111,80,40,87,14,44]," libzmq":[92,9],"\u6c42\u307e\u308a":81," \u3057\u3044":[37,85],"[,":71,layout:91," dist":91,ellipsoid:7," GPL":23,x6:91,grnslap:[22,29,109,24],"\u72ec\u81ea":[8,81,108,109],"\u6700\u65b0":[14,91,13,101],"\u771f\u306a\u3089":108,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8":[54,91,81,52,45,74],specify:74,"_score":[70,111,40,93,14,68],"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf":36,"|| ":108,nanoseconds:88,rectangle:7,"-frequency":14,iptables:28,"do":89,"\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":94,"\"groonga":[70,6],"-enable":94,"(location":[25,40,7,111]," Ventry":102,"\u3055\u3089\u306b":[25,1,90,111,81,6],de:74,"\u79d8\u5bc6":91,"\uff08MessagePack":67," also":[70,108,110],"\u30a2\u30d4\u30fc\u30eb":91,"_limit":[29,0,24,79,70,95,104,41],"\u6642\u70b9":[42,90,91,33],"\u4e09\u3064":[7,85],"\u306f\u307e\u3068\u3081\u3066":91,"\u5019\u88dc":[27,93,6,75],"\u8ab0\u304b":52,"/grntest":91,"[libedit":14,"\u30c8\u30d4\u30c3\u30af":91," Binary":44,"\u91cd\u3044":[81,70],"\u3067\u3057\u3087":[73,81,67,100],"\u3064\u304d":70,",\n ":[25,70,108,37,93,59,77,5,111,110],"\u3064\u304b":112,"\u5171\u8d77":[27,75,51],Disables:5,"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[101,29,70,85,108,75,37,9,78,112,110,92,94,65,42,14,51],"\u91cd\u304f":37," Mac":42,"\u7d50\u679c":[1,57,85,28,65,42,27,68,29,70,108,91,89,97,98,96,36,75,37,40,14,43,107,45,111,79,81,94,51,18],"\u30ec\u30b3\u30fc\u30c9ID":[8,42,50,56],"`${":74,"\u30b5\u30f3\u30d7\u30eb\u30c7\u30fc\u30bf":[70,7,108,110],"-per":14,release:91,"\u623b\u308a":42," IndexBlog":43,"\u524d\u56de":91," debootstrap":91,".sln":64,"_RELEASE":91,"\nPREFIX":36,"\u63db\u3048\u308b":91,"\u5e83\u304f":[111,91],"[linux":42,"\u3092\u3064\u3051\u308b":108,"\u591a\u3044":[37,108,110]," keyword":110,mysql:23,"\u8fd4\u3059":[0,63,57,3,60,4,14,89,69,108,93,95,28,32,33,38,46,40,102,104,42,39,114,94,50,19],"< t1":36,"\u623b\u3063":5,nul:14,full:91,result:[7,36],Synonym:57,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":85," first":[70,108,110],"-commnad":90,"\u7fbd\u7530":111,"<port":[60,89],"\u67d4\u8edf":[81,98],"\u6a5f\u80fd":[113,0,57,26,60,21,42,27,67,6,89,29,70,93,28,98,36,75,14,111,110,81,94,51,115,5],"\u9006\u5f15\u304d":[25,111,96,29],"'needle":36,"\\'":110,"(Cutter":107,"_basic":[5,28],"\u5206\u304b\u3061":81,"_NOFILE":88,web:[93,75,91,51],score:[25,70,7,1,75,37,93,40,36,51,27,111],"\u30d7\u30ed\u30b0\u30e9\u30e0":[52,94,5],"\u5bbf\u99c5":111,"\u56db\u6368":14,"\u7bc4\u56f2":[29,70,1,90,8,81,26,30,96,111,71,37,68,33],"\u9650\u6587":14,"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":36,"_CHECK":107,wc:[92,78,9,101],korea:79," information":74,"\"Groonga":108,"_geo":14,"\u3044\u305a\u308c":[44,90,68],"\u3092\u901a\u3057":[60,1],"_get":[14,42],"\u30b5\u30fc\u30d0\u30fc":[22,29,2,24,16,5,14,18,42,28,115],"\u59cb\u307e\u308a":91," Gothic":10,"_NORMALIZE":[70,23,1,57,37,111,110,73,66,43,108,33],"\u30c7\u30a3\u30ec\u30af\u30c6\u30a3\u30d6":[42,5,28],"\u534a\u5f84":71,news:91,"\u539f\u99c5":40,packages:[101,78,91,12,9,53,92,67,74],"\u4ee3\u5165\u5f0f":110,"\u3092\u901a\u3058":40,"\u30e2\u30cb\u30bf\u30fc":[92,78,9,101],"\u884c\u6307\u5411":81,Log:[88,14,24,29],"\u69cb\u3044":[27,74],"\nmercurial":91,country:[21,79],"0x":[8,42,44,110],"\u30e9\u30f3\u30c0\u30e0":40,"\u3002output":97,"\u66f8\u304d\u8fbc\u3093":111,ITS:54,"|PERSISTENT":[66,59],"\u3082\u3046\u307e\u304f":67,tomotaka:14,"\u5730\u56f3":81,"\u4e00\u4ef6":[80,87,50,56],"\u3044\u3044\u306d":[70,108,110],"0e":89,"\u975e\u308f\u304b\u3061":[37,85]," ID":[8,81,88]," with":[8,77,88,45],"\u540c\u69d8":[25,70,36,91,26,40,21,89],"\u88dc\u5b8c\u8a9e":27,"\u591a\u91cd":109,"#worker":5,"\u5931\u6557":[1,110,91,94,42,14],"\u5f8c\u304b\u3089":97,"\u7d4c\u7def":[8,40,44],"/ja":[91,74],"\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":45,"\u62bd\u51fa":[42,108],"\u6709\u76ca":81,"\u95a2\u6570":[29,0,7,108,24,35,48,72,114,30,40,36,32,42,71,94,107,33],"\u3002[":[38,1,42]," formats":88,diff:89,trust:91," my":[70,108,110],"\u52a0\u3048":[8,36,84,45],"\uff13\u3064":44,"\u5404\u7a2e":91,"\u6848\u5185":91,"\u7b49\u3057\u3044":[70,36,108,110]," \u307e\u305f":[70,2,110,28,67,89,108],"\u3068\u3044\u3051":27,"\u7b49\u3057\u304f":[36,108,110],"\uff08node":45,".Dest":8," period":[42,23]," some":88,"\u30d1\u30fc\u30b5\u30fc":110," Compatible":5,JSON:[1,2,93,94,31,42,14],daijiro:111,")\u300d":60,"_blog":43,"\u8d77\u6e90":8,"\u58ca\u308c":[14,94,77,42]," array":77,")\u3002":[80,50,56],"\u3044\u3044":13,"\u7528\u3044":[25,0,111,1,107,29,37,81,70,40,21,14,18,32,10,43,71,96],"\u5168\u4f53":67,"\u4e0e\u3048":[36,1,79,37,60,31,21],"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8":[108,93,60,77,97,111,28],easy:10,Arnaud:14," GROONGA":91,"\u30ab\u30f3\u30de":[70,56,108,79,80,31,97,87,1],worker:[76,5,28],"\u65b0\u305f":36,Sites:97,"\u305f\u307e\u307e":28," option":88,"-message":[67,82],applied:23,"-secret":91,"\u554f\u984c":[0,1,108,91,8,94,112,110,77,42,14,89,74],"_sel":23,"\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8":[54,29,52,91,13],Process:[29,24,88],"\u3069\u3093":[66,59],"\u6700\u9069":5,"_message":43,"\u7528\u9014":[101,70,81,9,78,92,64,82,53],"\u305a\u3064":[111,43,60,89],near:36,"\u3069\u308c":[70,28],"\u5165\u529b":[0,63,1,57,3,59,60,4,21,27,56,42,6,89,69,93,31,95,97,32,99,33,87,75,38,39,77,102,104,14,109,46,80,66,50,51,19,83],"\u5909\u6570":[108,91,12,112,42,14,107],tasukuchan:111,"_set":42,TokenMecab:[37,85,33],"\u6700\u3082":[77,70],"\u30d0\u30c3\u30d5\u30a1":77,"[solaris":42,"\u4ee3\u8868":81,"\u79d2\u6570":[70,56,108,8,111,46,80,87,44]," -e":9,"\u6709\u9650":70,is:[8,88,5,74],it:[8,88],Write:20,"\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8":93,"\uff08Longest":108,"\uff08OR":98,il:[37,85],io:23,"\u53d6\u5f97":[25,70,1,91,79,29,80,75,104,51,27,52,96],ia:[37,85],"\"}":[25,57,79,75,8,93,110,31,40,51,27,43,108,84],id:[1,57,59,60,21,27,66,68,84,70,108,93,73,97,25,75,37,40,50,43,56,110,79,51],"if":[36,108],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8\u30c1\u30e3\u30fc\u30c8":14,TokenBigramIgnoreBlank:37," remained":88,"1\u4ef6":[37,111,50],"_rectangle":[29,0,24,48,94,30,40,14],suggest:[29,94,24,75,93,51,41,27,14,6],make:[109,101,78,91,82,52,67,107,74],"\u4f8b\u3048":[84,85,60,62,27,67,6,89,70,108,93,73,28,98,100,25,75,37,43,45,110,79,51],"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af":36,"\u9069\u3057":[73,81],"-dataset":[22,29,24,75,93,112,86],"\u7a4d\u6f14":108,"\u30bf\u30fc\u30df\u30ca\u30eb":5," that":[8,42,70,88],"\u305f\u3069\u308b":25,"\u7121\u8996":[87,70,56,110,37,94,60,80,50,97,42,14],"\"]":[25,70,1,108,37,111,59,60,80,97],"\u4e0d\u5177\u5408":42,"\u3002rst":10,"\u5fdc\u7528":81,"\u3069\u3046":[0,63,3,38,70,102,39,37,4,95,5,32,42,69,50,33],"\"'":[70,108,37,85,42,110],"\" ":[70,1,2,91,12,44,8,40,64,84,108,37,89,57],"\"\"":[42,44],"\"#":14,"\",":[1,57,59,60,5,27,66,89,84,31,70,7,108,8,93,73,97,25,75,37,46,77,40,43,110,79,111,51,21],"\"-":14,"\u306b\u3088\u3063\u3066":[1,90,8,81,37,107,68],"\"/":[40,60],"\u76ee\u7684":67,"\")":[25,7,108,72,30,40,33],cdbs:14,"\\%":64,"\"co":6,"\u57fa\u70b9":70,"\u7591\u4f3c":[29,70,24,35,31,42,68,33]," Masahiro":94,"\u753b\u9762":0,"\">":2,"\"?":2,"\":":[1,2,21,27,89,57,31,70,7,108,8,93,73,84,25,75,46,77,40,43,110,79,111,51,5],"\";":[89,5,28],"\u65e5\u5f8c":101," hash":111," blog":[37,1],"\u306b\u3088":42,"mo\u30d5\u30a1\u30a4\u30eb":74,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[37,85,75],"\u72b6\u614b":[109,101,78,94,1,91,77,37,81,9,60,46,92,42],"\u3055\u307e\u3056\u307e\u306a":[29,40,96,111],DB:[36,1,60,66,42,89],"\"\n":[1,2,21,27,66,89,84,70,7,108,8,93,73,57,25,75,40,43,110,79,111,51],SIGUSR:14,MATSUU:94,"/run":[60,91],"\u3084\u3059\u304f":94,serch:[93,75],"\u30c4\u30fc\u30eb":[109,29,74,60,96,64,21,82,18,10,67,28,5]," packages":91,"\u304b\u3089":[0,101,1,57,26,60,64,5,42,27,67,6,28,29,70,7,90,91,8,93,9,31,37,89,97,98,74,35,36,75,12,76,73,46,40,50,14,71,44,108,109,78,111,110,80,81,94,92,82,51,52,53,21],"=-":67,solaris:42,"@groonga":[91,13],"||":[43,36],"\u8db3\u3057":108,"_tags":[25,111],"\u3002\u30bf\u30b0":25,"\u4e00\u6c17":91,"_ctx":[14,42],"\u3082\u3063\u3068":70,yes:[93,107],Maverick:14,"\u5f8c\u65b9":[29,36,84,85,110,96,42,108,28,33],"-with":[42,70,67,108,82]," Blog":43,"\u30bd\u30fc\u30b9":[29,78,91,101,12,9,92,64,82,42,14,67,53],"\u89e3\u50cf":94,"\u8ad6\u7406":[34,70,36,108,81,77,42,110],candidate:93,"=sjis":67,defrag:[29,0,19,41,24],"\u306f\u3059\u3079\u3066":[70,1,108,98],".scr":89,Elapsed:88," four":[88,1],"-Point":44,"_selector":[29,95,60,41,24]," libmecab":[92,9,91],"\u30ce\u30fc\u30c8":[78,7,1,108,91,93,9,110,14,115,74],News:[42,23],has:91,"\u7528\u3044\u308b":[25,1,8,81,62,40,21],"\u300c,":97,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9":[91,28,115],"_close":[14,36],"\u7d4c\u5ea6":[29,108,8,81,40,111,44]," GNU":[14,92,82,29],"\u8ad6\u7406\u7a4d":110,"\"content":[70,108,110],">command":2,"|>":88,"\u9001\u308b":[54,74],"\u30d5\u30ec\u30fc\u30ba":[42,110],"\u30d0\u30a4\u30ca\u30ea":91,Alice:110,"-(":[108,91],"\u5cf6\u7530":42,jekyll:91,"\u30ab\u30e9\u30e0\u30d9\u30fc\u30b9":[108,110]," result":43,"| ":[37,88,40,70,108],"\nrep":89," means":[88,70,5],"\u7b97\u5b50":108,Kawaji:42,advanced:23,"\u30b1\u30f3\u30bf\u30c3\u30ad\u30fc":26,"\u30ed\u30c3\u30af":[0,60,42,14,19,69],"\u3002ASCII":[108,110],Takayuki:14,"\u6539\u540d":[14,42],"],":[1,57,59,60,21,27,66,89,84,31,70,7,108,8,93,73,56,87,25,97,75,37,46,77,40,43,110,79,80,111,51],"& _":40,"\u691c\u7d22\u4f8b":[52,36],"\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9":60,alice:70,universe:9,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":[70,67,60],"/Linux":[14,92,82,29],"\u30d4\u30ea\u30aa\u30c9":[39,33],"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":[100,0,1,115,60,5,27,56,42,67,68,69,29,108,89,31,28,97,98,96,33,87,36,39,77,50,14,44,80,81,19,21],"_expr":[29,70,7,24,35,72,114,31,30,36,95,98,42,52,71,47,50]," report":52,"\"engine":[27,75,51],"\u6b63\u3057\u3044":[6,75],"\u5408\u5bbf":111,"\u7d20\u89e3":[81,67,108,33]," request":74,"\u30c6\u30b9\u30c8\u30c6\u30b9\u30c8":111,"-packages":91,"\u307e\u3068\u3081\u3066":[8,81,70,91,33],"_BUT":36,"_db":[42,94,112],"\u30b3\u30df\u30c3\u30c8":91,"_str":111,TokenBigramSplitSymbol:[37,94],"\u4fdd\u5b58":[25,7,29,8,111,26,60,40,44,96],"-jinja":91,"\u5358\u8a9e":[70,1,108,111,62,98,42,43,6,110],"\u4f7f\u7528":[0,1,57,85,60,5,87,56,28,70,7,90,91,8,31,89,33,36,37,39,77,50,42,44,108,46,110,80,111,94,18,21],"_ACCOUNT":74,"\u73fe\u4ee3":81,"\u5217\u6319":1,".zip":74,groogna:[42,28],"\u9001\u3063":[49,54,52,74],txt:[49,74],"\u5bc6\u9375":[52,91],"\u5c11\u3057":67,"-unauthenticated":[42,9,92],"_right":[14,30],Downloads:64," firefox":74,".github":[91,45]," Solr":108,".asc":91,tasuku:23,Facebook:[29,13,42],Kiske:42,".sourceforge":[91,13],unstable:[92,91],localhost:[109,2,91,28,14,89,5],"-threads":60,"\u7a0b\u5ea6":[14,1],"\u53c2\u8003":[29,70,1,24,91,93,86,98,74]," since":88,"\u30d0\u30c3\u30c1\u30e2\u30fc\u30c9":42,"\u3001\u300c":[25,0,37,111,85,60,70,27],"\u5b8c\u5168":[70,36,57,37,85,39,108,33],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u30d1\u30b9":[28,115],"-MM":[88,108],"\u8db3\u308a":14,"\u30b5\u30fc\u30d3\u30b9":[81,42,45],"\u3002\u5b50":7," ARCHITECTURES":91,IndexBlog:43,post:91,"\u3067\u3082\u3046":54," username":25,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3":[67,90,89],obj:77," shopping":73,"\u30c1\u30a7\u30c3\u30af":[109,94,77,42,14,89]," Match":5,"\u6709\u7528":[1,28],"\"text":14,"\u5224\u5b9a":[87,40,56],ARCHITECTURES:91,"(GET":109," TABLE":[25,70,7,1,57,79,8,111,110,73,37,97,84,108,43,33],"\u30a8\u30e9\u30fc\u30b3\u30fc\u30c9":[42,1],"GET\u30e1\u30bd\u30c3\u30c9":18,Use:[52,60]," last":[42,111],"\u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9":[29,21,96],"\u3092\u3054\u89a7\u304f":81," glossary":45,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":66,".title":8," Thesaurus":70,sphr:7,stop:42,"\u306a\u3055\u3093":52,"\nlevel":88,"[@":[14,42],"_size":36,".am\u30d5\u30a1\u30a4\u30eb":91,"\u6700\u521d":[14,70,1,108,110]," RAND":35,git:[91,74],Mac:[29,53,94,82,42],centos:[42,91],"\uff08Perl":5,"\u305d\u3061\u3089":67,"* ":[44,108],support:23," correction":75," number":[60,89],approximate:[7,71],"_open":[14,94],"\u30d0\u30fc\u30b8\u30e7\u30f3":[29,0,7,1,90,24,94,112,42,14,91],"\u5927\u6587":70,"\u5b89\u5168":21,"\uff08\u307e\u3082":28,editor:74,"[test":42,Ubuntu:[29,94,9,82,42,14,107,45],"\u7b49\u4fa1":[110,70,94,108,98],"\u305b\u306a":[108,110]," it":[73,110],"_body":[37,39,57],fork:[60,74]," TokenBigram":[70,1,57,37,111,110,73,108,43,33],head:109,"\u3086\u304d\u3072\u308d":84,"(id\u30d1\u30e9\u30e1\u30fc\u30bf":[80,50,56],"\u8a66\u884c":81,"\u7f6e\u3044":91,".ne":23," make":[101,78,91,12,9,92,10,67,107,53],"\u3080\u3044\u3061\u3083\u3044":111,"_animal":8," ftb":23,"\u96a3\u63a5":[81,110],PCRE:42,"[\n":[25,70,7,1,57,8,111,110,73,40,108,84],"true":[0,63,1,57,3,4,87,69,31,70,7,108,8,73,95,32,33,25,38,39,40,102,43,71,44,84,110,79,111,30,50],"\u5fa9\u65e7":42,"\u6253\u3064":91,"\u8981\u7d20":[36,1,60,31,102,56,87,42,89],"-path":[0,91,93,94,60,88,82,42,14,67],"\u9032\u6570":[77,108],"\u5165\u308b":[66,59],"\u5165\u308a":[1,108,79,111,59,21]," groonga":[1,60,64,5,14,88,67,28,101,70,108,91,9,97,74,12,21,42,43,78,110,81,92,53],"\u5426\u5b9a":[70,36,108,110],GeoPoint:[25,0,7,79,8,111,94,30,40,21,71,44],"\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba":91,"/cutter":91,"[#":[14,42],"[\"":[25,108,8,93,59,77]," friends":25,"\u30c8\u30fc\u30af\u30f3":[94,108,75,85,51,14,33],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6":[81,29,42,85,33],"\u53ef\u5909\u9577":33,"\u30e1\u30c3\u30bb\u30fc\u30b8":[111,90],"\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":[70,1,75,37,85,51,14,67],Xcode:53,"\u5185\u8a33":37," dpkg":91,"\u6587\u5b57":[0,1,57,85,60,4,42,27,70,7,108,72,8,31,33,25,36,75,40,14,43,71,44,110,79,81,30,111],LTS:[29,9,91,82],"\u3002sortby":70,FLOAT:2,"\u8abf\u3079\u308b":[30,71],"\u6c7a\u3081\u308b":[70,36],Variety:25,Introduction:52,"\u3057\u304d\u308c":42,decrypt:91,"\u5165\u3063":[25,43,1,107,27],"_records":42,"''":9,"_VERSIONS":91,score2:36,"' ":[101,25,70,23,108,92,8,111,9,78,37,40,88,42,44,33],"\u30ab\u30fc\u30cd\u30eb\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":42,"'-":60,"\u3059\u3063\u3071\u3044":57,"\u3054\u89a7\u304f":[1,107],ongaeshi:94,"'(":[31,60],"\u30a8\u30c7\u30a3\u30bf":74,"\u305f\u304b\u3063":75,"\u306e\u306b":[37,29,65]," Takahiro":94,no:[93,70,23]," LOCALE":74,sjis:67,".repoforge":78,"\u306e\u3067":[70,7,1,91,8,81,85,37,18,14,42,28,74],"\u4ed5\u65b9":[52,74],"_CODE":88,"\u914d\u5217":[25,70,36,1,108,8,111,59,85,110,39,77,94,66,14,33],Microsecond:88,"\u3002\u307e\u305f":[109,90,36,1,84,75,8,81,60,40,21,18,108,44,89,33],"\u306e\u307f":[1,57,26,5,27,87,68,84,91,93,31,56,32,74,36,97,37,85,104,43,107,45,79,81,18,33],test:[1,91,8,59,89,107],saerch:[93,75],TokenMeCab:85,"'\n":[25,70,7,1,84,37,110,73,40,108],"\u4e09\u756a\u76ee":108,"\u5c5e\u6027":[39,66,59,112,33],"\u305f\u3081\u3057":40,"\nExecuted":21,"'t":5,"'s":[70,110,73,88,74,108],"\u4e00\u81f4":[29,0,36,1,57,37,93,85,70,112,110,42,84,27,108,111,96,33],"_touch":94," seven":1,Windows:[29,91,64,82,42,14,52,89],Shift:67,"\u3089\u308c\u308b":[42,36,85,81],VALUE:[1,21],"\u88dc\u3046":81,"\u547d\u4ee4":[60,89],"\u4ee5\u964d":[94,91,26,60,14,107,74],"\u964d\u9806":[93,70,1,79],"\u5fa9\u53f7":91,scorer:[25,70,7,29,40,95,98,96],"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[91,94,60,107,42,14,52,67,89,74],"\u305b\u308b":[18,36,107,81],"'n":60,"'m":73,"-latest":[52,91],"\u30b4\u30fc\u30e4\u30c1\u30e3\u30f3\u30d7\u30eb":57,"-tar":12,"\u305b\u308c":81,"\u6bb5\u843d":39,"_count":[21,46,1,2,5],".service":42,"\u3069\u306e":[70,7,75,26,71,67],"for":108," columns":70,"\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8":77,Win:64,"_at":[37,42,94]," createrepo":91,"\u672c\u756a":91,"\u6539\u5584":[14,0,42],"\u307f\u304c":36,"_offset":[70,95,79],Second:88,EMERG:[3,4],"\u5165\u529b\u30df\u30b9":75,"_memory":42,KyTea:[42,67],push:91,"/Ubuntu":42,"\u9069\u5207":[81,94,1,89],"\u304a\u3053\u306a\u3063":1,":-":101,":/":[1,2,60,5,67,28,101,91,8,9,97,74,25,12,40,21,45,109,78,79,92,18,53],"\u53cd\u6620":[81,36,91],CENTOS:91,"\u7b26\u53f7":[8,44,108],":$":[110,84,108],TEXT:[42,2]," required":[5,28],": ":[0,1,57,59,60,65,27,56,67,28,29,70,90,91,8,31,108,34,36,75,37,40,87,14,44,45,109,110,94,51,18,20],"\u6d41\u308c":[52,74],"-prefix":[67,5,82],"/debian":92,"\u8a9e\u7248":91,":=":[70,110],":>":[70,110],"\npackages":91,"\u3002rroonga":98,"::":2,"\u66ff\u3048\u308b":[1,79]," requires":8,"\u3084\u308b":[52,91]," Umemoto":14,"\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3":[29,21,96],"\u56fd\u969b":74,"\u7aef\u672b":81," all":[88,70,108,110],":\n":[21,45],"(Precise":91,"\u795e\u5948\u5ddd":111,"\u901a\u77e5":91," sudo":[101,78,91,12,9,92,42,67,107,53],"\u3084\u3089":91,"_left":[14,30],"\u4e00\u822c":[81,70,1,110,98],Standard:44,"_builtin":14,"(ptr":94," #":[111,94,112,28,74],text:28,"\u524a\u9664":[0,63,60,94,38,81,50,5,42,14,68],Let:73,"\u30fb\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":107,Day:88,"*BSD":[14,94],"/LZO":94,supported:23,string:[36,72],groonga:[0,1,2,3,4,5,6,7,8,9,10,12,13,14,94,16,30,18,19,22,23,24,25,26,27,28,29,31,32,33,34,35,36,37,38,39,40,42,43,44,45,46,92,50,51,52,53,54,56,57,58,59,60,61,62,63,64,21,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,93,95,96,97,98,99,100,101,102,103,104,105,71,107,108,109,110,111,112,113,114,115],"\u8a2d\u6a02":14,"\nrequests":88,"\u304a\u6c17":111,"-root":[18,94,60],"\u8a2d\u8a08":70," character":88,enqueue:76,"\u4e0a\u91ce":94,VERSION:89,domain:[66,59,60,21,79],"[php":42,"\u30b5\u30f3\u30d7\u30eb":[109,70,7,94,112,42,89],"\u691c\u8a0e":37,"\u3084\u3081":14,exact:36,"$GROONGA":91,".body":[59,19,57,69]," \u3002":37,"\u72b6\u6cc1":[37,81],"\u30b9\u30af\u30ea\u30d7\u30c8":[29,70,91,24,94,112,110,98,42,52,67,89,108],"\u30b5\u30b8\u30a7\u30b9\u30c8\u30c7\u30fc\u30bf\u30bb\u30c3\u30c8\u30b9\u30ad\u30fc\u30de":75,"\u4ee5\u4e0b":[1,2,3,59,26,60,4,64,5,66,27,67,6,28,70,7,108,91,8,93,31,89,56,10,33,34,25,36,97,75,37,85,39,77,40,87,14,71,44,107,45,110,79,80,111,51,18,74,21],level:[3,4],"\u3068\u3057\u3066":[1,26,60,62,5,42,27,67,6,28,101,70,7,90,89,72,8,93,9,31,68,98,33,100,25,36,75,37,85,110,40,14,106,44,107,108,78,91,81,94,92,74,21],"\u8208\u5473":81,":@":[25,70,1,110,8,111,21],"-escalation":[70,37,94,60,82,67],"\u4e2d\u7a0b\u5ea6":[101,78,9,92,64,82,53],":\\":[31,64],item:[27,93,75,66,51],"\u4e0d\u6574\u5408":0,Tag:25,"\u306f\u307e\u305a":91,":[":89,"\u5217\u6307\u5411":[81,60],":public":91,"\u672a\u6e80":110,"/db2":28,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba":77,"-deb":91,"\u8ad6\u7406\u548c":[70,36,108,110],HTTP:[29,2,94,16,96,21,42,14,115,28,5],"\u30ed\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8":42,"\u7d50\u3073\u3064\u3044":76,"\u305f\u3055\u3093":[14,0],"\u3002ifexists":31,"\u7d50\u3073\u3064\u304f":76,sign:91,"\u5076\u6570":108,"\u63db\u6642":14,"\u6f14\u7b97\u5b50":[42,70,36,94,108],"=)\n":36," Baseball":25,"-dev":[91,9,13,92,42,14,107],"\u5bfe\u8c61":[63,1,57,59,85,14,67,28,69,29,70,90,91,93,33,31,95,96,97,74,25,36,37,76,38,39,42,43,107,109,110,81,111,19]," commit":74," PatPrefix":84,"\u5316\u4f5c":91,"\u6c42\u3081\u308b":[81,7,71],Red:[52,67,91],">alloc":2,"\u66f8\u304d\u5f8c":85,column:[0,1,57,24,59,60,42,27,89,84,29,70,7,108,8,93,73,33,25,36,75,38,39,40,41,14,43,110,79,111,94,51],"[munin":[14,42],"\u4e8c\u9805":108,"\u3068\u3053\u308d":[49,42,111,108,74],"\u5024\u306a\u3057":42,Form:1,".ncpu":53,"\u7d4c\u904e":[90,8,111,46,14,44,108],"\u30bf\u30d6":2,"\u5408\u308f\u305b":108,"\u4e3b\u8981":82,TIPS:[52,91],"/.":14,"GeoPoint\u9593":14,"\u30c8\u30e2":25,"\u5411\u3051":[29,36,110,91,103,52,67],"'='":60," day":73," ')":31,"\u76ee\u5b89":91," makecache":[42,78]," libevent":[92,9],"\u4f8b\u3068\u3057\u3066":8,"\u751f\u3058":[63,3,38,102,39,4,95,32,69,50,33],"[deb":[14,42]," two":88,"\u6e2c\u4f4d":81,"\u30bf\u30b0":[29,108,91,25,111,94,14,96],baseball:43,"\u9ad8\u6a5f":[81,36],"\u6d41\u3057":91," MyISAM":81,"\u96c6\u5408":[42,98,33],Changes:23,"\u30a2\u30ab\u30a6\u30f3\u30c8":13,change:28,"\u5024\u3088\u308a":[70,36],MBytes:89,"\u304c\u308f\u304b\u308a":111,"\u8b70\u8ad6":54,"\u89e3\u6790":[14,52,107,33]," string":72,"-mode":74,"\npublished":91,"\u4e26\u5217":[91,89],MM:[88,108],"\u30ec\u30dd\u30fc\u30c8":67,"\u4e3b\u30ad\u30fc":[87,25,1,57,79,29,8,94,31,80,50,96,56,66,84,42,44,68,33],"\u3068\u3059\u308c":81,"_version":[90,1,2,91,46,21,18,14,28,5],example:[25,1,79,8,40,21],queue:76,Travis:[100,29,45,42],"\u305d\u306e\u969b":91,User:25,"\u8a2d\u5b9a":[0,56,3,60,4,64,5,87,68,29,70,91,31,28,100,104,42,107,45,94,112,52,115]," threasd":60,"\u8b66\u544a":[42,70,94,90],"\u9006\u306b":25,"-filter":[14,84],".db":[60,59,1,21],".exe":64,"_DB\u30d5\u30e9\u30b0":14,"\u5ea6\u6570":[8,14,40,108]," case":8,"/Branches":107,cache:[29,0,1,2,24,70,46,21,41,104,5]," level":[3,88,4,60],"\u305d\u306e\u307e\u307e":91,"\u30af\u30a8\u30ea":[1,57,24,85,5,42,27,6,96,29,70,108,93,98,36,75,37,40,103,14,109,110,81,94,51,52],"\u3002table":33,"-leak":94,"\u521d\u671f":[81,14,94,42],"\u30ea\u30f3\u30af":[8,42,108,91,110]," \u3044b":[37,85],"-cutter":91,"'haystack":36,"_delete":14,"\u6587\u5b57\u5217":[29,70,7,1,57,79,72,8,111,98,31,80,50,56,87,42,108,44,96,33],Emacs:74,"/main":9," test":[1,107,91,8,21,43,89],"\u7d71\u5408":[42,81]," entry":[39,95],"\u4e88\u3081":[60,44]," Table":60,"\uff08Romaji":27,"\u5fdc\u7b54":81,httpd:42,"\u4e21\u8005":40," reference":8," sequence":88,"\u6307\u6570":108,"\u5916\u90e8":76,"-src":[92,9],"\uff08World":44," ERROR":4,"\u30d5\u30a9\u30ed\u30fc":[111,13],https:[91,74],"-libevent":42,msg:76,Cities:7,"\u5e74\u9f62":81,"\u306a\u3089":[70,36,90,75,110,60,46,107,99,27,108,89,45],"\u3060\u3063":[37,42,70,90],"``":[69,46,0,63,3,94,38,102,39,77,4,95,104,32,19,50,33],JavaScript:[29,40,5,18,96,21]," in":[70,23,110,8,77,36,88,42],"\\groonga":64,"\u5b9f\u73fe":[29,70,36,1,108,81,103,98,52],Default:[93,5],"\u8ee2\u7f6e":[25,1,108,29,81,39,42,33]," Release":64,"_concurrency":109,"\u6d41\u91cf":28,"-each":14," rpmforge":78,Uubntu:107,"_base":5," Ocelot":[14,9,82,29]," Yamaguchi":14,"\u305d\u3053\u306b":[66,59],"/nfs":67," version":[23,2],"\u30bb\u30c3\u30c8":[19,85,36,69],"po\u30d5\u30a1\u30a4\u30eb":74,"_plugin":[14,112],"\u3044\u308f\u3086\u308b":25," run":5,"\u8fd1\u3055":108,"\u3001'":[8,60,40,44,57],"\u3060\u3044":14,DATABASE:86,"\u884c\u308f":[109,25,70,89]," Signing":91,"\u30b8\u30aa\u30b5\u30fc\u30c1":[14,29,96,25],"$HOME":91,"\u63a8\u5968":[42,70,21,82,90],"\u542b\u307e\u308c":[81,70,85],"\u3060\u3051":[101,70,36,108,91,92,8,9,110,78,73,37,64,82,42,14,74,115,28,53],values:[31,87,56],"\u8fd1\u3044":109,".txt":91,clearlock:[29,0,24,60,41,42,69],",\"http":8,"\nnotice":[3,4],"\u8fd1\u304f":[81,26,108]," on":[23,5,28,74],"-directory":42,"\u30fb\u30b5\u30fc\u30d0":1,"\u884c\u3063":[107,40,91,79]," of":[23,8,93,77,5,88,74]," Lucid":[29,9,82],",\n":[25,70,7,1,57,8,93,59,110,73,77,40,21,97,111,66,43,108,89,84],"_VERSION":91,"_AND":36,logrotate:42," ignored":42,"\uff11\u3064":76,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":[109,5],"\u5897\u3084\u3059":107,"/rpmforge":78,".]]":56,Issue:54,YOUR:74," }\n":[111,5],"\u6a19\u6e96":[0,63,1,3,59,60,4,5,87,66,69,90,31,95,56,32,99,33,97,38,39,77,102,104,42,109,46,80,50,18,19,83,21],"\u884c\u3046":[109,25,70,7,84,79,85,40,94,91,42,43,107,33],"\u884c\u3044":[109,25,36,1,91,79,37,111,85,60,43,89],chroot:91,Terms:[37,77,70,1],", ":[54,23,1,57,59,60,88,5,66,27,89,84,73,70,7,90,91,72,8,93,31,56,87,25,36,75,37,77,40,42,43,71,44,108,111,110,79,80,81,94,30,51,18,52],",.":91,get:[80,14,42],Shinya:42,"-docutils":91,"\u884c\u3048":[1,107],"\u30d2\u30e5\u30d9\u30cb":[7,71],"\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u30fc":[29,64,82],"==":108," extract":88,query:[1,57,85,21,27,88,84,70,108,8,93,73,95,98,25,36,75,37,40,43,110,111,112,51],"\u30d0\u30a4\u30c8":[14,94,44,42],"\u76f8\u5f53":[40,1],"^commit":91,"/cpuinfo":[92,78,9,101],"\u8fd1\u508d":[42,108,98],"\u8a9e\u53e5":25,"\u5f15\u304d\u8d77\u3059":42,map:14,groo:70,Tomita:94,"\u518d\u8aad":32,max:[109,35,1,2,46,77,21,42,104,89,5],clone:[52,91,74],"\u30aa\u30fc\u30d7\u30f3\u30bd\u30fc\u30b9\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":45,date:89,"\u7f72\u540d":[42,52,91],"\u6b20\u70b9":81,"\u5207\u308b":5,"\u5207\u308a":[14,91,99]," content":[73,70,108,110],"|ALLOW":[70,110],"\u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0":[29,96,111],"\u3001:":89,"/dictionary":94,"\u8fd4\u3059\u304b":93,ss:[88,108],"{TIME":88,Format:88,"/javascript":14,"_auto":42,"\u7d22\u5f15":[29,0,36,1,8,81,85,37,94,33],"\u5404\u56fd":91,"\u30b0\u30eb\u30fc\u30d7":[70,108,79,81,42,68,110],"_values":14," &":[37,40,85,108],sa:[93,75],"\u3068\u306a\u308a":[21,28,110],EXACT:36,",{":[2,89],se:27,"\u5e02\u5185":26,"\u304b\u308f\u308a":37,"$PREFIX":14,"\u540c\u3058\u6570":[60,5,28],"\u4f1d\u7d71":81,"=\"":[12,70,2,91],"_init":[88,14,42],"\u5357\u534a":42,"[yum":42,"\u82f1\u8a9e":[54,14,74],"\u9ad8\u901f":[25,0,7,1,108,115,81,26,60,110,36,14,71,28,33],"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3":0,"\u30d0\u30c3\u30af\u30a2\u30c3\u30d7":97,"\u542b\u307e\u308c\u308b":[36,1,91,37,81,60],"_PACK":[67,82],"\u30a2\u30c9\u30ec\u30b9":[14,60,21,89],"\"starttime":2,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0":94,"/fedora":[101,91],"_VIEW":33," just":[73,88,86],"\u6642\u306b":14,"\u56f2\u307f":60,Thesaurus:70,"-libedit":94,"/html":[14,28,74],"=PLATFORM":[67,82]," as":[8,5,74]," at":[88,23],"\u5272\u308a":[8,66,59,108],"\u8a08\u6e2c":[14,0,107],"\u56de\u7e70\u308a":89,"\u7d44\u307f\u5408\u308f":[81,70,36]," ${":74,"\u4ee5\u4e0b\u6f14":108,"\u30de\u30c3\u30c1\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3":67,RK:27,"_PUSH":36,"\nworks":88," sjis":60,"\u542b\u3081\u308b":[70,1,110,91,42,14]," aptitude":[10,107,92]," Japanese":13," been":91,records:88,"\u6ce8\u76ee":70,"\"version":2,"\u52d5\u7684":[29,94,1,24,81,85,73,42],not:[8,36,91],now:[29,48,114,24],"\u8d85\u3048\u308b":8,"\u7528\u610f":[70,7,91,75,36,51,27,67,6,89],"\u56de\u907f":[37,91],"\u3059\u306a\u308f\u3061":8," description":[111,85],"\u5b9f\u884c\u4f8b":[1,57,5,88,66,84,70,7,90,8,93,73,25,75,46,40,42,43,107,108,110,79,111,51,27,21],name:[25,63,1,84,79,8,60,59,38,39,77,40,95,111,66,43,108,33],"\u500b\u3005":[37,36,90],"\u614e\u91cd":107," rake":91,"\u30b7\u30a7\u30a2":13,repositories:91,"_dat":[14,42],"_dataset":112,Critical:88," link":8,"\u8aad\u307f\u8fbc\u3081\u308b":97," line":45,"\u534a\u7121":14,el:78,"\u3053\u3061\u3089":[1,74],en:[27,93],"\u30b5\u30fc\u30d0\u30fcID":14," Terms":[70,1,108,37,77,110],"\u4e26\u3079":[29,1,96],ea:88," management":45,"\u6700\u5f8c":[108,91,8,94,37,5,42,89],kana:66,ggdb:91,nroonga:45,"\u5b9f\u4f8b":[29,52,36,103],"\u624b\u6bb5":36,"\u30d1\u30fc\u30b9":[14,98]," Entries":[70,108,97,110],"\u70b9\u6570":[8,44,108],"\u4e00\u77ed":81,"\uff1f\u3000":89,"\u7a7a\u304d":77,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":38,"-offset":70,"\u4e0d\u5909":68,"\u6642\u4ee3":81,"\u524d\u65b9":[29,0,36,1,84,93,85,112,110,42,27,108,96,33],Welcome:[70,108,110],"\u518d\u69cb":14,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u30da\u30fc\u30b8":91,"\"search":[27,75,110,51],"\"type":93,"-default":[108,60,82,42,67,28],"\u304c\u308f\u304b\u308b":7,"\u3054\u7528\u5fc3":42,correct:[93,75],"/files":91,"\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3":[100,81],".(":91,END:2,"_content":[70,108,110],"[grntest":14," segments":77,KBytes:89,"\u89e3\u91c8":[94,36,97],"\u56f2\u3080":1,"/dev":91,"_string":107,org:[21,79],"byte":[42,89],"\u7d20\u65b9":81,NONE:70,"/pub":78,"\u62ec\u5f27":31,"\u7d50\u5408\u5f0f":[42,110],"\u30b3\u30fc\u30c9":74,"\u4e8b\u9805":[34,29,44,89,24],Money:25,"[windows":[14,42],Karmic:107,"\u6b21\u90ce":25," key":[8,42],"\u30db\u30b9\u30c8":[109,91,60,21,14,89],yum:[42,78,91,101],"\u81ea\u52d5\u7684":89,"\u304c\u3042\u308a":[54,7],"] [":89,"\ndebug":[3,4],"\u30d9\u30af\u30bf\u30fc":[14,70,44],"\u3078\u3068":21,"\u6e1b\u7b97":108," country":79,"\"Alice":110,"\u30dd\u30fc\u30c8":[109,2,60,28,89,21],There:110,"[backquote":110,"\u4e00\u610f":[39,60,68,33],"\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":111,"\u30b7\u30f3\u30d7\u30eb":[115,98],ISO:108," Studio":[42,64],"\u5348\u7dda":7,"\u81ea\u5df1\u7d39":111,"\u9078\u3073":6,message:[43,4],".'":[39,33],"\u9078\u3076":81," TokenMecab":37,size:77," epel":78,SET:89,"\u7d5e\u8fbc":[29,40,96]," text":[97,28],"\u3068\u308a\u3068\u3093":[108,110],"\u5bfe\u7b56":[37,29,65],"\u30a2\u30eb\u30b4\u30ea\u30ba\u30e0":[7,98],"_obj":[14,36,42]," ALLOW":70,"1g":[92,9],"\uff08-":[70,1],"\"sphr":71,SEN:23,"\uff08 ":[101,70,26,108,12,9,78,110,92,5,67,53],"\u30bd\u30fc\u30c8\u30ad\u30fc":[93,0,70],"\u30d8\u30eb\u30d7":107,"\u5f53\u3066\u308b":8,"_preparer":[27,93,75,51],"\u30ea\u30a2\u30eb\u30bf\u30a4\u30e0":81,"\u3044\u308c":8,"\u3044\u308b":[0,63,1,84,59,26,60,5,42,27,67,85,6,28,69,29,70,7,108,91,8,113,31,89,56,32,33,87,25,36,75,37,38,73,39,77,40,50,14,43,107,45,110,74,81,94,66,112,80,111,18,19,83,21],"-max":[14,60],"_HUGETLB":14,"\u884c\u756a":14," Solaris":[12,14,42,82,29]," logged":88,"\u30d1\u30a4\u30d7":[39,33],github:[91,74],"\u62e1\u5f35":[14,57,96,29],"\u30a8\u30f3\u30c8\u30ea":[70,108,110],libevent:67,"\u5c0f\u3055\u304f":[73,7,28,71],"\uff08@":[14,94],Enables:5,"\u8fd4\u4fe1\u5148":111,"\u30d5\u30a9\u30fc\u30e0":[70,110,98],"\u306b\u5bfe\u8c61":14,"11":[37,70],"10":[1,89]," many":86,"\u652f\u63f4":6,"\u540c\u6642":[70,90,81,76,40,89],"-httpd":[22,29,24,86,61,16,5,42,14,6,28,115],"_index":[111,70,108,110],"\u65e5\u6642":[8,29,44,96,111],"\u3002ID":33,"/gat":[40,1,79],"\u6574\u3063":107,libgroonga:100,"\u3080\u308b\u3093":[108,110],"\u5404\u547d":89,"\u307e\u3057":[25,70,7,57,91,75,37,111,110,40,42,14,108,74],"\u7cfb\u5ea7":[30,71],"=ENCODING":[67,82],zsh:[67,91],browser:74," gnu":12,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30b5\u30a4\u30ba":34,"\u3044\u304d":[1,91]," name":[70,63,108,8,111,38,39,95,5,97,33],"_local":[97,89],CORE:89,"\u3044\u3046":70,DD:[88,108],".list":[92,9],"\u4e16\u754c":[7,8,30,40,71,44],argument:108,sae:[93,75],"-zlib":[67,82],dash:67,"\u4e21\u65b9":[70,7,84,81,110,73,111,27,108],"\u6291\u3048":37,"\u30b3\u30f3\u30d1\u30a4\u30eb":42,"\u30b3\u30f3\u30d1\u30a4\u30e9":14,"\"application":14,"/ubuntu":9," or":88,".uuuuuu":108,"_circle":[29,24,25,111,48,40,14,71],"\u53b3\u5bc6":27,"\u30ea\u30b9\u30c8":[87,25,70,1,108,91,80,59,26,60,31,110,66,56,74],Web:[0,70,91,110],"/doc":91,engin:[27,93],"\u591a\u5f69":81,"\u914d\u5e03":[101,78,9,92,64,82,42,53]," dump":[14,97],uuuuuu:108,"\u5ea6\u5408\u3044":37,"\u3044\u3064":27,"\u30d0\u30b0\u30ec\u30dd\u30fc\u30c8":[54,29,52,67]," inv":89,"\u65b0\u898f":[87,56,91,89],"-Type":14,"\u9806\u6b21":[109,60,1,21],">#{":88,"_COM":91,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":107," objname":[19,69],"\nBigram":89,"\u6027\u80fd":[81,5,28,115],"[[\"":77,begin:109," LC":74,"_suggest":112,buffer:77,price:8,"\u5148\u982d":[70,1,5],debhelper:14,"\u5c0e\u5165":[10,90,107],"_CLONE":91,beta:23,Good:[73,70,108,110],mecab:[42,91,33]," moritars":43,"\nstatus":[1,21],pair:[27,93,75,66,51]," main":92,RedCloth:91,"\u81a8\u5927":81," needed":5,"_STAMP":88,"\uff09:":[101,78,85,12,9,92,53],synonym:70,"\u79fb\u52d5":[49,14,32,64,91]," PORT":21,"\u4e2d\u65ad":[14,42],"\"book":108,"\u7ba1\u7406":[29,0,67,91,85,60,77,21,18,14,42,33,96,5],MeCab:[101,0,94,9,78,92,42,14,67],"\u306e\u3069\u3061\u3089\u304b":[70,108,110],"\u30b9\u30da\u30fc\u30b9":[14,70],"_NOT":70,",_":[25,1,79,111,40,93],"\u5c06\u6765":[7,28],CFLAGS:12,"\u4fdd\u8a3c":[77,90],"\uff09 ":[14,70,94],"\u30b5\u30fc\u30d0":[63,56,3,59,60,4,64,21,87,66,89,69,29,91,9,31,95,97,32,99,33,101,38,39,77,102,104,14,46,78,80,81,92,50,82,18,19,83,53],"\u3066\u304f":107,"\u539f\u56e0":[37,29,65,89],precise:[9,91],"\u9589\u3058":14,"{name":108,set:56,"\u5217\u8981":33,show:0,"\u5ea6y":44,"\u975e\u4e92":42,"\u65b0\u5bbf\u99c5":40,"\u3057\u304b":[70,108,8,110,5,43,28,74],"\u9ad8\u307e\u3063":81,Comments:111,"\u4ef6\u6570":[70,1,37,85,31,104,68],"#SET":89,"\u62c5\u5f53\u8005":91,"\u30dc\u30c3\u30af\u30b9":70,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[52,91],"-threashold":[37,94]," CFLAGS":[12,91],threshold:14,"\u88dc\u5b8c":[29,93,94,51,27,6,113]," requests":74," contact":74,"\u3002weight":8,"\u77ed\u6642\u9593":81,"\u30d1\u30c3\u30b1\u30fc\u30b8":[22,101,78,94,90,91,12,9,92,64,82,42,14,52,53],"\u3057\u3066":[54,25,70,94,1,91,37,111,9,5,10,107,74],"\u6700\u5927":[34,35,0,108,94,60,70,89,42,14,28,104],"\u30bf\u30a4\u30c8\u30eb":[25,70,110,8,43,108],title:[25,1,79,8,21,43]," LocalNames":97,"\u5316\u5bfe":74,"\u306a\u3093":90,"\u306a\u308c":90,"\u305f\u3057":25,"_ADJUST":36,"\u306a\u308a":[1,2,60,5,27,68,57,73,70,7,90,91,8,93,108,31,89,84,10,69,33,25,75,37,39,40,14,43,71,44,45,110,81,111,18,19,21],"\u306a\u308b":[0,1,57,60,64,5,67,89,69,101,70,108,91,30,8,9,73,97,33,74,36,37,39,102,42,71,44,78,81,94,112,92,82,51,19,53],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fcAPI":42,MessagePack:[14,67,2,28,42],"\u811a\u6ce8":[7,1,38,30,71,44],"\u4e00\u6642":[7,33],".h":49,"-server":[14,60,42],wheezy:[29,91,82,92],"_INDEX":[25,70,23,1,57,37,111,94,110,73,39,43,108],"\u5f53\u8a72":90,"-setuptools":10," checked":91,"-WORD":70,clang:107,self:89,define:[29,95,60,41,24],"\u8868\u3059":[25,7,35,8,26,39,36],ssh:91,"\u5f8c\u8ff0":[36,91],"\u51fa\u305b\u308b":81,"1\u6708":[70,56,108,8,111,80,87,44]," url":97,geo:[25,0,7,24,29,111,48,94,30,40,42,14,71],For:13,manager:[5,28],"/Fedora":[42,94],"\u3002CPU\u30b3\u30a2":28," Web":67,"\u30ea\u30bf\u30fc\u30f3\u30b3\u30fc\u30c9":[80,87,70,56],summary:89," jekyll":91,":')":[39,33],"[:":21," wget":[101,78,12,9,92,67],"\u300c\u697d\u3057\u3044":85,"\u76f4\u63a5":[111,97],"/\"":[25,1,79,8,40,21,97]," \uff08":[27,75,67,51],".conf":5,wiki:5,".c":[70,23]," lenny":14,"\u8907\u96d1":[42,70,36,108],Src:8," package":91,sear:27,"# ":[1,57,60,5,27,66,28,84,70,7,108,8,93,73,74,25,75,40,43,110,79,111,51,21],"#'":60,"_suffix":14,"\u7a7a\u767d":[1,110,37,81,60,31,51,33],"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9":[111,0],"\u5b66\u3073":[70,7],"\u843d\u3061\u308b":[14,94],japan:[21,79]," become":23,"\u5c11\u306a\u304f":[73,81,108,110],"/DD":108,"\u5024\u3068\u3057\u3066":[7,60],"(scan":107,"\u8a18\u6cd5":[43,108],".x":78,"\u7528\u79d8":[52,91],"-check":[14,94],"<gqtp":89,"\u898f\u5247":42,".content":[73,70,108,110],"|ng":70,"\u77ed\u7e2e":31,"\"#\"":89,"\u5dee\u96c6\u5408":108,"\"BLT":97," are":[8,88,70,74],"\u30c0\u30a4\u30b8\u30a7\u30b9\u30c8":28," shutdown":5,"\u3002Google":110,"import":91,before:45,"\u5229\u7528":[101,1,26,60,64,5,42,27,67,89,29,108,91,8,9,96,97,74,85,75,37,40,14,44,107,78,110,81,92,82,51,18,53],"\u5927\u4e08":54,"\u3053\u3053":[70,1,57,91,8,93,110,37,40,111,108],"\u4f9d\u5b58":[29,67,82,42],"-Encoding":28,jobs:89," PALALLES":91,"\u3088\u3044":[70,110,28,74]," ShortText":[25,70,7,1,57,79,8,111,110,73,39,37,97,84,108,43,89,33],"\u6700\u5c0f\u5024":108," Environment":45," depends":23,"\u3057\u3088":[73,7,56,8,31,36,87,14,50],"#{":88,"\u672a\u8a2d":42,"\u904e\u53bb":91,"\u3088\u3063\u3066":[40,26,44,62],"\u306a\u3069":[1,26,62,21,27,67,89,70,90,91,8,73,28,98,32,74,100,36,75,37,85,77,14,44,108,111,110,81,51],Each:88," target":8,"\u306a\u3067":27,ja:[91,74],"\u306a\u3063":[107,70,111,1,90,91,77,8,81,94,110,37,21,42,14,43,28,33],"\u306a\u305c":[27,70,110,108,75],"\u5206\u5272":[1,108,81,85,14,33],autoconf:14,"/hoge":60,"\u306a\u3059":30,"\u306a\u3055":[18,35,70,33],"-code":91,"\u30af\u30ea\u30fc\u30f3":91,"\u3082\u306e":[109,35,70,7,1,57,91,75,8,111,60,71,36,64,5,90,43,74,89,33],"\u306a\u3052":57,"-document":[60,91],"\u3002gqtp":[109,21],"\u306a\u304f":[87,0,94,1,57,89,8,81,98,26,70,110,5,108,42,14,52,67,91,28,45],"_otoj":107,"\u306a\u304a":[85,91],"\u306a\u3044":[0,1,2,26,60,5,42,27,67,6,89,84,101,70,90,91,8,93,73,37,97,98,108,33,34,36,75,12,76,85,46,77,14,44,107,45,109,110,81,94,112,82,18],"\u306a\u3046":111,"delete":[29,0,24,94,50,41,14]," by":[8,42,110,88],"-output":[70,89],"\u6b21\u56de":[90,91],"-mecab":[101,42,78,9,92],"\u4e00\u822c\u7684":81,"\u975e\u4f9d":78,FSF:42,"\u30fb\u5168":95,"\u5404\u7d22":1,"-groonga":[91,89],"\u30c6\u30fc\u30d6\u30eb\u30d7\u30e9\u30b0\u30a4\u30f3":42,"/WGS":40," rewrited":23,Note:8,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":85," arted":108,"\u5c55\u958b\u5f8c":70,"\u76f8\u5bfe":[14,70,91],Here:88," Ubuntu":91,"_res":89,"\u5f15\u304d\u51fa\u3059":81,"}/":[67,74]," command":[90,8,86,21,5,42,45],curl:[42,67,45],"'column":42,WITH:[39,1],"\u9006\u5f15":25,save:91,"\u8868\u8a18":[7,57,91,8,40,14,44,108]," followee":111," associated":8,"\u578b\u60c5":42,"\u524d\u5f8c":[60,1],"\u3002callback":36,"\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":[52,91],"\u9ed2\u3044\u70b9":26," []":59,"\u5468\u4e0a":71,"<encoding":60," follower":111,"\u679c\u305f":1,"\u4ee3\u308f\u308a":[101,56,110,80,60,50,64,21,67],Bug:52,"\u4e0b\u3055\u3044":[101,78,91,9,92,64,82,42,53],"'ja":74,engine:[27,93,51]," be":[8,88],enable:[46,94,91],"[admin":[14,42],"\u5b57\u5c0f":70,"\u306e\u3044":[7,56,90,3,81,60,31,40,4,36,87,44]," \u7528":67,"_tokenizer":[70,1,57,37,111,110,73,108,43,89,33],"\u6392\u4ed6":108," res":89,"_value":[14,94,68,42],"\u6607\u9806":[40,1,70],"\u5b9f\u884c":[101,63,1,24,3,59,60,4,64,5,42,27,67,28,69,29,70,7,90,89,93,9,53,31,87,68,56,98,32,95,33,22,74,36,97,75,12,38,39,77,40,102,104,99,14,107,46,78,91,80,81,66,112,92,50,51,18,52,19,83,21],UInt:[25,70,1,57,79,37,59,94,110,73,40,21,66,43,108,44,84]," MeCab":81,"\u6240\u5b9a":[37,85],"=yes":[42,70,107,91],Mitsuhiro:94,ruby:[42,91]," tags":25,sound:75," fork":74,"-bye":[70,108,110],"\u30bb\u30df\u30b3\u30ed\u30f3":89,"\u304a\u3051\u308b":[34,25,1,110,8,81,42,44],GROONGA:91," form":110,"}]":[31,2,89]," autogen":91,"\u4e0d\u5b8c\u5168":14,"\u30b7\u30b0\u30ca\u30eb":14,"\u7406\u89e3":[70,1]," coverage":107,"/packages":91,"?table":21," Shimada":94,score1:36,"\u57fa\u672c":[29,1,108,91,8,81,85,37,42,96],"\u306a\u3057":[56,90,75,8,110,108,73,80,50,115,87,71,44,28,33],"\u6982\u8981":[29,70,7,90,24,81,5],"\u3002\u3002":26,"\u3002DB":[14,36,1,21],"\u3002\u300c":[25,43,110,70,108],"\u30b3\u30ed\u30f3":[39,33],"\u8af8\u6761":34,"\u5fc5\u8981":[0,101,1,57,5,42,27,67,6,28,73,70,108,91,9,31,37,89,10,33,87,36,75,12,14,107,78,110,81,94,92,51,18,74,21],"@lists":[91,13],valgrind:107,Content:[14,28],".md":91,"|')":[39,33],"\u305f\u3068\u3048":37,"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc\u30b8\u30e5\u30fc\u30b9":57,"\uff01\u3057":13,"'.":74,"\"}\n":73,"\u8f9e\u691c":[14,108],"\u3002squeeze":107,nogpgcheck:42,IEEE:44,"\u633f\u5165":[60,1],"\nSUFFIX":36," support":23,"\u8f9e\u66f8":[37,0,94],develop:90,"\u559c\u3073":[49,74],"\u91cf\u8a08":0,"\u3002id\u30d1\u30e9\u30e1\u30fc\u30bf":[50,56],"/function":91,check:[29,0,24,77,41,14]," special":70,html:[10,52,107,91,74],"<path":60,"')":[109,70,56,80,60,87],"-dir":89,"=squeeze":91,".org":[25,78,67,1,79,74,92,12,9,8,40,5,97,91,101,53,89,21],document:[18,94,60,108],events:28,"\u3002\u3044":36,UTC:108,"\u5b89\u5b9a":[81,42,90,77],"\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb":[73,29,24],"#]":38," xml":2,"0\u30d9\u30fc\u30b9":70,IP:[21,89],".po\u30d5\u30a1\u30a4\u30eb":[52,91,74],"\uff01\u300d":[70,108,110],IT:25," Int":[8,7],"{PREFIX":67,"\u53c2\u7167":[0,58,5,42,67,89,29,70,7,108,91,8,93,9,37,96,25,101,12,14,44,45,78,110,79,81,94,92,111,18,53],"\u672c\u5f53":27,favorites:111," porting":23,"\u3042\u306a\u305f":13,cmake:64,"\u5b9f\u88c5":[70,7,18,5,42,14,115,28,74],"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":60,montywi:42,ID:[1,8,59,94,60,77,88,66,33]," added":23," binding":23,"\u305d\u3057\u3066":[8,27,70,111,81],"\u96e3\u3057\u3044":81,It:[88,70,108,110],"\u5217\u8868":44,"-msgpack":28,"_rename":42,"\u53d6\u308a\u51fa\u3057":[1,33],"\u306e\u3061":70,"\u53d6\u308a\u51fa\u3059":[94,36]," ./":[67,74],"[geo":14,If:[8,88],"/unit":107," brother":110,"\u6771\u4eac\u90fd":[37,111,85],"\u4f5c\u6210\u6e08":60,"(v":36,"\u672a\u5bfe":42,"\u3002\u3059\u3079\u3066":[107,74],"\u30af\u30a8\u30ea\u30da\u30a2":6,gdb:107,"\u3088\u3073":36,BOM:94,"\u6271\u3048":62,"\u5171\u6709":[81,25,67,13,29],"\u5b9f\u7a3c":109,".dll":89,"\u30ab\u30e9\u30e0":[0,63,1,57,24,59,26,60,42,27,67,6,68,69,29,70,7,108,8,93,31,95,96,56,84,33,87,25,75,37,38,73,39,40,14,43,44,111,110,79,80,81,94,51,19],speed:6,"\u8fd4\u5024":[63,56,3,59,4,87,66,69,70,7,72,93,31,95,97,32,99,33,35,38,39,77,102,104,71,46,114,80,30,50,18,19,83],"\u30cb\u30db\u30f3":27,"\u30e1\u30e2\u30ea\u30d6\u30ed\u30c3\u30af":46,"\u3002none":60,"(_":[27,93,75,108,51],"/false":[8,0],"\u3002\u307e\u305a":37,"(R":89,"\u30d1\u30e9\u30e1\u30fc\u30bf":[87,29,70,1,57,79,80,111,85,109,40,50,21,56,42,14,43,96,90],"_extract":23,"\u30b3\u30de\u30f3\u30c9URL":28,"\u4f4e\u3044":[37,70]," indicates":88,"\u5ea7\u6a19":[7,108,111,26,30,14,71],"\u56f0\u96e3":[42,81],"\u63a2\u3057":[81,89],Uint:[1,72],"\u9577\u65b9\u5f62":14,"_HASH":[25,70,7,1,108,79,8,111,73,97,66,43,33]," C":[49,14,108,81],"\u500b\u6570":42,"\u30ad\u30fc":[70,1,108,94,60,110,42,44,68,33],"(A":45,TokenTrigram:33,"\u6c4e\u7528":[60,89],"\u30ed\u30c3\u30af\u30d5\u30ea\u30fc":[81,14,29],"\u639b\u3051":108,"\u542b\u3080":[109,70,36,1,108,80,93,76,85,110,39,56,111,42,43,33]," git":[91,74],"/base":91,"(<":36,"(=":[36,108,33]," \"I":[73,70,108,110],"\u8a00\u3048":[37,110],"\u5c55\u958b\u7528":14,"\u697d\u3057":[37,85],Mecab:42,"\u542b\u3093":[70,36,108,75,8,6,110],grn:[56,24,14,88,87,29,70,7,72,31,95,98,35,36,50,42,43,71,80,94,112,30,52,114,47],")..":91,"()":[35,0,36,72,94,112,114,30,40,7,42,14,52,71],"(.":91,"\u30ea\u30af\u30a8\u30b9\u30c8URI":5,"(-":108,"(\"":[60,7,1],"-test":[107,91],"( ":60,"(!":36," BOOLEAN":23,"('":[39,70,1,80,60,31,87,56,68,33]," Yoji":14,"\u3068\u304a\u308a":[34,89],license:91,"\u9069\u5b9c":[57,91]," format":[8,88,23,2,74],Kenichi:[14,94]," very":[70,108,110],server:[5,28,91],"\u95a2\u308f\u3089":89," ssh":91," Representation":74,"_SIS":[110,108,85,84,33]," python":[10,91],"\u9650\u308a":[36,37,85,31,68,33],"\u4ed5\u7d44":[28,74],TokyoGeoPoint:[14,40,71,44,30],"} ":[88,74],"8\u3064":89,"\u5c5e\u3059\u308b":[66,44]," datasets":86," tool":45,LocalNames:97,conditional:93," supports":23,"_SUCCESS":[80,88,70,56,87],"\u9650\u3063":7,"\u30b7\u30b9\u30c6\u30e0":[54,29,81,73,111,14,52,67,96],"\u5de6\u53f3":1,"\u843d\u3061":94,"},":[25,70,7,1,57,111,110,73,108,89,84],"_VECTOR":[8,25,70,39,111],"\uff08CI":45," \"_":[25,70,7,1,57,79,75,8,93,110,73,40,21,51,27,43,108,111,84],"\u30d5\u30a9\u30f3\u30c8":10,"\u985e\u7d39":37,"}.":70,truncate:14," init":42,ellip:7,"/database":5,": n":109,"\u65b0\u5bbf":40," cd":[64,91,74],automake:94,"\u6c42\u3081":[81,72],"\u9234\u6728":42,"\u30de\u30b7\u30f3":60,"@uzulla":14,"\u30b5\u30fc\u30d0\u30fc\u30d1\u30c3\u30b1\u30fc\u30b8":42," cp":9,mooz:14,Ruby:[81,42,23,98,45],"\u306b\u3064\u3051":108," check":107,"/httpd":5," binary":[81,2],"\u8a18\u4e8b":[73,91],Term:[39,33],"\u5168\u6587\u691c\u7d22":[42,110],".select":89," Float":8," handled":[8,5],"\u306f\u3044":8," CODE":2,"\n{\"":[108,75,93,73,51,27,110],SiteDomain:[21,79],";\"":42,"; ":[60,5,89],"\u306f\u305a":89,"-static":14,"\u542b\u3080\u5024":[60,1],"CPU\u30b3\u30a2":[60,28,115],"/index":[60,91,74]," schema":86,"\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":89," enable":5,"_$":93,"\u578b\u6307":42,"_OP":36,"\u306f\u3069":70,"_OR":[36,21]," instead":60,of:8,"_escalation":[94,70,67],"\u30e6\u30fc\u30b6\u30fc":[25,70,110,111,5,67],"\u30b9\u30eb\u30fc\u30d7\u30c3\u30c8":[14,28],Tomoatsu:94,"\u304b\u3048\u308b":79,";\n":[89,5,28],Katakana:27,Defines:86,processor:[92,78,9,101],"@soundkitchen":[14,42],"\u3082\u3061\u308d\u3093":89,Information:88,"/admin":[14,60]," \"n":[70,1,108,110,46,5,21],".patch":74,searc:27,"\u884c\u76ee":[91,89],"\u30b9\u30b1\u30fc\u30e9\u30d6\u30eb":60,"\u30aa\u30d5\u30bb\u30c3\u30c8":[93,70],"\u8abf\u6574":[37,98]," age":70,"\u3002\u3059\u3050":5," nine":1,"\u53f3\u4e0a":0,"\u30c1\u30e3\u30f3\u30af":77,"=title":21,"\u9bae\u5ea6":73,"\u306f\u3044\u304f\u3064\u304b":[34,110,28],"\u30a8\u30ed":111,"\u305d\u308c\u3089":[109,70,28],"\u76f4\u611f":84," comment":111,"\u8a55\u4fa1":36,"\u7279\u6709":5,"\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":107,log:[29,24,3,60,4,41,88,32,42,67],NO:0,"(title":72,"\u9032\u3093":81,"\n``":[46,77],"_truncate":14,"\u53d7\u3051\u53d6\u308a":[36,1],"\u30e9\u30f3\u30ad\u30f3\u30b0":1,"\u6b21\u671f":91,"\u77e5\u8b58":89,"\u6d3b\u304b\u3059":70,README:91,"\u63d0\u6848":[29,94,93,51,42,14,6,113],"d\u30ad\u30fc":1,"/modules":94,"\u3082\u3046":[73,43,72],"\u8a18\u8f09":[42,91],Sphinx:[49,10,52,106,74],complete:[27,93,6,42],"\u901a\u308a":[70,7,108,91,37,93,59,26,71,110,51,66,67,45],"\u3002gdb":107,"\u3082\u3057":[70,7,110,28,67,89,45],POSIX:108," doc":[91,74]," B":108,"\u30d1\u30bf\u30fc\u30f3":108,"(ShortText":57," complete":[27,93],"\u516c\u958b\u9375":91,hsiomaneki:111,",\"links":8,"\"Items":97,pull:74,"\u304b\u304e\u308a":89,"\u306b\u3088\u3063":[63,1,57,3,59,85,60,4,21,66,56,69,70,90,8,31,95,97,98,32,99,33,87,25,36,76,38,39,77,102,104,109,46,79,80,81,50,18,19,83],"_TABLE":14,"\u697d\u3057\u3044":[37,85],"default":[73,70,1,2,89,37,111,110,46,57,21,90,43,108,5,28,33],"\u69cb\u7bc9":[29,24,85,73,42,52,107],"\u30b3\u30b9\u30c8":73,Month:[25,88],"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb":[32,70,67,90,89],"'_":31,"-po":[52,91],"\u4f5c\u3063":[37,14,111],Hiroshi:14,".gpg":91," using":23,"\u304a\u77e5\u3089":[29,0,94,112,42],"|on":70,"|oo":70," posted":111,Build:64,"_CREATE":36,Time:[8,111,37,42,14,114]," enabled":88,uid:91,"\u5883\u754c":7,"\u3082\u308c":57,"\u30de\u30fc\u30b8":[42,74],"\u30ec\u30b9\u30c8\u30e9\u30f3":81,"\u65b9\u5f62":[7,71],"/CoreModule":5,Blog:43,"| n":108,ar:[37,85],"\u3002TLD":79,file:[0,94],"+ y":44,bob:70," universe":9,"\u30ea\u30af\u30a8\u30b9\u30c8":[63,56,3,59,4,5,66,87,28,69,31,95,97,32,99,33,38,39,77,102,104,109,46,80,50,18,19,83],"\u4f5c\u308a":[27,43,75],"\u4f5c\u308b":[25,75,111,76,98,74],Cutter:107,GByte:34,"\u53d6\u308c\u308b":31,"\u5bfe\u5fdc":[0,1,26,60,42,27,6,28,29,70,93,31,33,36,75,76,14,107,81,94,112,51,114,115],"\uff08true":8,"\u95a2\u4fc2":[25,70,36,82,29,8,111,41,42,67,96,110],"\u56db\u89d2\u5f62":26,"\u597d\u304d":74,"\u30aa\u30d7\u30b7\u30e7\u30f3":[0,1,2,85,60,21,42,27,67,28,84,101,70,108,91,93,9,37,89,98,75,12,46,14,43,107,109,78,110,94,86,92,51,18,53],"5km":111,gettext:74,"/IPAexGothic":10,Bigram:[37,111,85],"\u3002Munin":[92,78,9,101],"\u30cd\u30c3\u30c8\u30ef\u30fc\u30af":[21,28],"}|":88,"\u518d\u5e30":[70,36,63,69],"'OR":42,"\u8a18\u8ff0":[36,1,57,111,60,89]," rpm":[101,78,91],string2:72," approximate":7,string1:72,TokenBigramSplitSymbolAlphaDigit:[37,75],"_type":[25,7,1,2,79,8,111,66,31,89,97,42,84,18,43,71,68,33],ftp:89,time:[8,27,93,75,51],"\u30c7\u30d0\u30c3\u30ac":107," Tracking":54,"=(":91,"_name":[97,112],"\u30c7\u30d0\u30c3\u30b0":77,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":2,"\n% ":74,msgpack:2,"\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8":[42,64,89],"\u3088\u3063":40,Entry:[39,56,80,59,31,50,95,87,33],"\u4e94\u5165":14,"\u7d50\u5408":[36,110,98],"]\n\n":[111,21]," [\"":[70,37,111,59,77,93],IWAI:42,"\u5b9a\u7fa9":[73,70,7,1,108,110,60,59,95,38,102,39,36,63,66,42,44,68,33],"\u65b9\u5f0f":[60,43,1,81],":mm":[88,108],"\u8a66\u3059":115,"\u767a\u63ee":81,"\u30ab\u30d0\u30ec\u30c3\u30b8":[52,107],"\u6c17\u306b":74," stop":5,"/select":21," JSON":28,"\u305d\u3053":[8,37,91],Year:88," location":[25,7,8,111,40,5],"-threshold":[37,70,67,60,82],original:84,"\u5730\u57df":81,"}`":74,SIS:14,"\u306a\u3051\u308c":[39,70,67,108,8,110,60,31,42,33,89,45],SHIMODA:94,"\u4ed8\u968f":[63,38],"\u30c7\u30fc\u30bf\u30d9\u30fc":14," default":[8,88]," upload":91,"_pat":94,"\u308f\u304b\u3061":85,"\u5408\u8a08":[37,77,89]," OLD":91,"\u30da\u30a2":[27,75,6,51],"\u30a8\u30e9\u30fc\u30c1\u30a7\u30c3\u30af":[14,42],"\u6761\u4ef6":[29,70,36,1,84,91,37,93,94,60,110,111,40,95,98,42,52,44,96,108],partial:36,"\u57fa\u6570":108," lcov":107,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af":14,"-e":60,rd:[37,85],"-talk":[91,13],"\u300cSubmit":91,"-a":[42,60,110],"\u30d3\u30c3\u30c8":[8,108,110],"-c":[101,78,60,21],"-m":109,"-l":[88,60],"\u30b7\u30fc\u30af\u30ee\u30fc\u30b5\u30fc":57,"-n":[14,1,60],"-i":[60,89],"_rc":[80,87,70,56]," CI\u4e0a":45,"-j":67," mingw":91," hottolink":23,tail:91,"\u304a\u5f85\u3061":13,"-p":[60,21,89],"\u304b\u304b\u308b":[73,1],"\u304b\u304b\u308a":[73,108,110],"/lib":5,".GitHub":74,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[29,94,65,89],homepage:89,"-x":91,".name":[77,111],"\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":2,"-alloc":46,"-conditional":14,"\u8aad\u3081":42,"\u95a2\u9023":[1,3,13,4,5,14,56,67,6,69,29,70,91,8,9,31,95,98,32,87,101,50,42,106,45,78,80,81,92,51,52],"/other":5,"\u4ed5\u7d44\u307f":42,"\u5dee\u5206":89,"\u30de\u30eb\u30c1\u30d7\u30ed\u30bb\u30b9":[14,28],"\u3002column":36,"***":4,"\u8aad\u3093":[52,45],"\u5438\u53ce":[1,57],"/C":81,",\"tags":25," type":39,condition:108,"(popular":70,"\uff1f ":89,":<":[70,110],pre:23,unigram:33,"- ":[91,45],"\u7d42\u3048":91,trigram:33,"--":[87,25,0,56,57,91,37,111,94,60,70,112,80,40,50,18,14,42,108,89,69]," implemented":23,allow:[42,9,92],"\u30b3\u30f3\u30d1\u30a4\u30e9\u30fc":67,list:91," Please":74,USE:42,"\u30e1\u30cb\u30e5\u30fc":91,"\u30d5\u30a1\u30bb\u30c3\u30c8":70,"\u3057\u307e\u3057\u3087":40,"\u304a\u3088\u3073":[1,91,8,81,60,42,67,33],"\u4f4e\u6e1b":94,"\u5909\u308f\u308b":37,"\u6d69\u4e8c":42,"\u306f\u3053\u306e":70,"<protocol":60,"\u7d4c\u7531":[63,56,3,59,4,66,87,69,91,31,95,97,32,99,33,38,39,77,102,104,42,46,80,94,50,19,83],"\u89aa\u5207":94,ASCII:[108,110],"/work":91,VIEW:60,"\u300c\u6771\u4eac\u90fd":37,"\u30d6\u30c9\u30a6":57,"\u771f\u507d\u5024":[8,29,108,96],"\u304c\u3053\u306e":110,"\u884c\u3048\u308b":25,None:86," price":8,"_DIR":91,"\u5927\u5225":8,"\u8a08\u7b97":[0,7,108,72,81,26,40,75,42,27,71,44,51],ECMAScript:[42,70,108,98]," {":[7,1,75,93,46,5,51,27,111,28,21],link:[8,21,79],"\u64ec\u4f3c":[70,108,110],"\u518d\u73fe":[37,98],"/centos":[78,91],"\u975e\u5206":70,"\u6975\u4ed8":[7,71],"}E":108,"(packages":91," Official":91," point":[8,42,7],sub:91,"\u7d22\u6642":94,devenv:64,"\u5225\u9014deb":91,"\u30ea\u30c6\u30e9\u30eb":[14,0,110,108,42],"\u4ee5\u524d":[8,111,37,104,42,14],"\u5927\u5207":81,"\u8868\u578b":33,naoina:42,version:[1,2,46,21,14,5],"_append":36,"_NO":[70,108,37,94,110,73,97,66,33],"\u6e2c\u5730":[7,8,30,40,71,44],"_modified":111,"\u8aad\u307f":[27,0,98,91,81],"\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u30fc":42,memcached:[107,29,21,96,81]," %":108,"\u793a\u3059":[80,70,7,56,84,8,59,110,108,31,30,87,66,71,28,33],Pull:74," httpd":91,"\u307e\u3057\u3087":[25,70,7,1],hash:111,"\u305e\u308c":[36,108,51],"\u5f62\u5f0f":[0,63,1,2,3,59,60,4,5,42,56,89,69,70,108,72,8,93,31,95,97,32,33,87,35,36,38,39,77,40,102,14,43,71,44,109,46,114,80,66,30,50,18,19],tags:25,"\"Table":60,"\u30c6\u30b9\u30c8":[29,78,94,91,101,37,111,9,92,64,82,42,52,103,107,53],"\u3002filter":[40,50]," Shinya":42,"\u30ce\u30a4\u30ba":[37,75],NFS:67," https":[74,45],"\u53d7\u3051":[7,1,76,21,42,28],"\u30de\u30cb\u30e5\u30a2\u30eb\u30da\u30fc\u30b8":60,"\u6e96\u5099":[29,70,57,91,37,110,108,52,74,96,33],DLL:[14,42],"\u304b\u304b\u3063":[80,87,70,56],"\u306b\u95a2\u3059\u308b":[29,70,108,24,111,13,5,42,27,14,44,110],"\u30aa\u30b9\u30b9\u30e1":[101,78,9,92,64,82,53],search:[110,75,93,51,27,6],"\u793a\u3057":[7,1,91,79,37,26,46,21],"=..":91,TokenDelimit:[51,33]," clone":[91,74],"\u975e\u516c\u958b":91,"<threshold":60,"_hit":[21,46,1,2,5],"_dist":42," ruby":91,"-Wno":14,"-localestatedir":67,"\u540c\u3058":[0,1,59,60,5,66,89,29,70,90,93,28,32,75,37,14,43,44,108,81,94,18,65],LZO:[42,67],published:91,"\u306b\u3064\u3044\u3066":[54,100,63,1,3,59,85,60,62,4,42,27,67,28,69,101,70,7,90,91,92,8,93,9,31,87,56,32,95,33,22,35,36,97,75,12,38,39,77,102,104,41,99,14,71,44,45,46,78,111,110,80,81,72,66,114,30,50,51,52,19,83,53],"\u308f\u304b\u308a":94,options:[109,60,86,89],"\ninfo":[3,4],"\u3002ftp":89,"\u3068\u305d\u306e":90,"\u30d6\u30ed\u30b0\u30a8\u30f3\u30c8\u30ea":[70,108,110],"\u30b3\u30e1\u30f3\u30c8ID":111,followee:111,"=ALLOW":70," Fontaine":14,"\u30ce\u30fc\u30c9":42,"\u30de\u30c3\u30c1":[0,36,108,37,70,98,14,67,110],"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":85,"\u30d3\u30eb\u30c9":[29,78,67,91,101,12,9,92,94,64,82,42,14,52,53,45],"9\u3064":1,":..":70,"\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8":[29,52,106],follower:111," Visual":64,"\u30ed\u30b1\u30fc\u30b7\u30e7\u30f3":42,"\u307e\u308f\u308a":52,ICHII:14,"\u672a\u77e5":42,".synonym":70,"\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":91,"\u300c\u697d\u3057":85,Redmine:54,"\u3068\u3059\u3050":73,"/atv":[40,1,79],"\u69cb\u6587":[29,70,7,108,24,112,98,42,110]," HTTP":[22,29,2,24,81,5,18]," supported":5," apt":[42,9,91,92]," SWIG":23,"\u5ca9\u4e95":42,"\u5317\u534a\u7403":[42,7],"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9":[46,83]," disabled":88,"\u7a4d\u7b97":[70,36]," tag":91,rect:7,"\u3002\u300d":37,"\u6c7a\u307e\u308b":1,"@yito":42," zlib":[92,9],pseudo:[29,70,68,24],"\u30c6\u30ad\u30b9\u30c8":[94,91,89,74],"\u3060\u304b\u3089":70,"\u30bd\u30fc\u30b7\u30e3\u30eb\u30cd\u30c3\u30c8\u30ef\u30fc\u30ad\u30f3\u30b0\u30b5\u30a4\u30c8":25,Intel:89,"-tokenizer":[101,42,78,9,92],"/TO":28,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u30ea\u30c6\u30e9\u30eb":108,"\u30af\u30ea\u30c3\u30af":91,Emergency:88,"\u518d\u5229":[70,68],"_gqtp":89,"\u578bn":70,"\u3067\u304f":[52,70,82,45],"\u4e00\u8a9e":37,"\u3053\u3068":[101,80,0,63,1,2,35,3,59,26,60,62,4,64,5,42,27,100,67,115,6,28,57,73,70,7,90,89,92,8,9,108,53,31,94,95,68,56,98,32,10,69,33,87,25,110,36,97,75,37,76,38,39,77,40,102,104,99,14,43,71,44,84,107,45,109,46,78,114,91,79,74,81,72,66,30,50,82,111,18,52,19,83,21],"\u3053\u306e":[100,1,2,85,60,13,62,64,5,42,27,67,28,57,101,70,7,108,91,8,113,9,73,37,89,56,33,87,25,36,75,12,40,50,14,43,71,45,78,111,110,79,80,81,92,82,51,52,74,53],"[element":108,"[load":42,"\u4e00\u756a\u5de6":108,"\u30bb\u30c3\u30b7\u30e7\u30f3":[99,60],"\u53f3\u4e0b":[30,0]," parameter":8,"/_":91,none:[43,67],"\u4f7f\u7528\u4f8b":7," return":88,"\u3053\u305d":111,Int:[25,70,7,1,110,79,35,8,93,75,111,37,40,94,51,27,44],"}\n":[25,70,7,84,75,8,93,110,88,73,5,51,27,111,28,108],"-databases":[66,1,21],fast:[70,108,110],dev:[92,9],"\u30d7\u30ed\u30f3\u30d7\u30c8":[64,2],"_PATH":[18,1,2,91,21],"++":[101,78,91,81,42,14,67],"\u524d\u63d0":[52,91],abandon:31,deb:[92,9,91],"\u3002KEY":[85,1],"\u7d44\u8fbc":[63,56,3,59,4,87,66,69,72,31,95,97,32,99,33,35,38,39,77,102,104,71,44,46,114,80,30,50,19,83],"\u6bd4\u8f03":[29,70,108,94,16,28,42,115,89,110],"\u79fb\u884c":[14,90],Codes:74,"\u4e2d\u5fc3":71,scan:107," libedit":101,"\u30ea\u30cd\u30fc\u30e0":14,share:67,"\u7279\u306b":36,accept:94,sphere:7,"_OBJ":14,"\u4f59\u308a":108,"\u9664\u53bb":94,GnuPG:91,"\u5c65\u6b74":91,gronoga:5,"\u958b\u767a":[100,29,78,90,91,101,81,9,92,64,82,111,103,52,45,53],"\u30d2\u30c3\u30c8":[70,36,57,37,111,85,73,27,84]," '":[1,84,85,60,27,88,101,70,7,108,8,93,9,73,74,25,75,37,40,42,44,78,110,111,92,51]," dataset":86,"\u7406\u7531":[81,70,28],"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0":14,"\u500b\u5225":91," ..":[56,108,93,77,5,87,1,28,74]," Doc":57,"-address":[14,60,42],snippet:23," *":[70,108,37,4,42,44,28,74]," pkg":12," Tritonn":[70,108,110],"\u300ccommand":18,"=dat":42,"&..":21,"\u3042\u3089\u304b\u3058\u3081":[44,91]," threshold":19," (":[34,29,70,7,91,24,110,78,23,64,36,68,108],"\u8fd4\u308b":94,"\u3002COLUMN":1,"\u30af\u30a8\u30ea\u30d1\u30e9\u30e1\u30fc\u30bf":42,Don:5," \" ":89,"\u591a\u3059\u304e":94," YOSHIOKA":42,"[dat":42,"\"localhost":21,uptime:[0,1,2,46,21,5]," three":[8,1],"<groonga":89,"\u4e57\u7b97":108,"\u666e\u901a":108,disable:14,"\u304a\u9858\u3044":89,"_text":107,"\u91cd\u8981":[70,91,107,81,62,73,5,67,28],"\u306b\u3059\u3050":73,"\u30cf\u30a4\u30d5\u30f3":1,"\u30da\u30fc\u30b8\u30f3\u30b0":70,"\u8aad\u307f\u51fa\u3057":81," engine":[93,75,6,51]," files":[88,5],Solaris:42,"-http":5,"\u65b9\u6cd5":[101,1,2,24,85,60,64,21,42,27,67,28,29,70,7,90,91,8,113,9,73,37,65,89,97,98,74,75,12,71,103,14,106,44,107,45,78,111,81,92,82,51,52,53],callback:36," segment":77,Linux:89," path":[88,5]," under":5,taro:25,"\u4e00\u5bfe":8,"\u3002.":74,":\u79d2":111,uninstall:42,replied:111,"\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf":91,"\u666e\u53ca":81,XXX:60,help:[14,107],"\u592b\u5fc5":84,"|COMPRESS":59,"\u8f09\u305b\u308b":91,"\u3002(":[36,91,60,31,89,33],"`hostname":60,"\u5024\u6bce":70,"\u5217\u578b":[8,57,79,110],natty:[9,91]," liblzo":[92,9],grntest:[22,29,91,24,94,42,14,89]," release":91,"\nlog":88," OR":[70,57,110],"\"is":8," creates":[88,86],"/lzo":14,".rpm":[101,78],systemd:42,Fixed:42,"[Groonga":91,">>":108," Src":8," >":[108,85,40,97,14,89],".git":[91,74],"\u308c\u308b":[1,57,26,60,64,27,67,68,101,70,7,90,91,93,73,89,32,74,36,75,37,76,85,77,40,102,14,44,107,81,51],GHz:89,">> ":108,"sort\u30ad\u30fc":0,"\u30ab\u30fc\u30bd\u30eb":[14,94],"\u53ef\u80fd":[1,57,85,60,5,42,67,68,84,29,70,7,90,89,93,28,33,25,36,37,77,40,14,107,108,91,81,110,111,18],"\u91cd\u8996":[37,73],"\u63a5\u7d9a":[1,89,76,60,21,99,42,83],"\u6574\u6570":[35,108,8,111,104,44,68],"\u6955\u5186":[7,71]," log":[29,91,24,88]," PALALLEL":91,"-essential":[92,9],"\u30d6\u30fc\u30ea\u30a2\u30f3":44,"2pdf":10," feature":74,good:73,".description":111,Music:25,"\u52d5\u4f5c":[29,70,90,91,75,8,113,94,107,5,51,27,14,52,115,89,74],URL:[14,21,18],"\u516c\u5f0f":[14,78,101],URI:[18,5],"_to":111,"\u3079\u3066":70," valid":8,"\u6271\u3044":[27,85,90,115],"\u6271\u3046":[37,42,108,13,81],".i":78,"\u3088\u304b\u3063":37,"\u30d0\u30a4\u30ca\u30ea\u30c7\u30fc\u30bf":42,"\u5c0f\u306a\u308a":[110,108,98],"\u8a71\u984c":13,"\u6e08\u307f":[39,91,75,31,27,14,42,44,6,33]," \u30d0\u30c3\u30d5\u30a1":77,"\u5316\u95a2":94,"\u3002\u3057\u304b\u3057":[70,7,75,81,73,82,14,44,28],"\u3079\u304d":91," outputs":[8,88],"=Site":21,"-encodiong":108,"\u9664\u3044":89,"-encoding":[14,67,60,108,82],"\u304a\u3070":[14,0],"\u6271\u3063":[111,0],"\u30ad\u30e3\u30b9\u30c8":[42,94,110,111],"\u3002:":[1,59,85,60,5,66,56,6,28,70,90,91,93,31,95,89,97,10,74,87,75,37,39,77,50,14,107,80,51,27,18,33],"[doc":[14,42],".posted":111,"\u4e0d\u9069\u5207":42,"\u81ea\u7531":[81,36,68],yito:42,CUTTER:[107,91],"\u767b\u9332":[54,1,27,87,6,29,70,108,91,8,73,56,31,33,36,75,77,40,42,110,81,94,112,111,52],"-create":[22,29,24,75,93,112,86],"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[52,91],weight:[8,70],"\ndeb":[92,9],"\u30b5\u30a4\u30ba":[101,78,77,8,81,9,92,64,104,82,42,14,53],Rose:8,"\u592a\u90ce":25,"\u3079\u304f":1," st":108,Sports:25," sh":91,HDD:89,"\"sequence":[27,93,75,51],"\u30d5\u30a1\u30a4\u30eb":[0,63,1,24,3,59,60,4,5,42,56,67,28,69,29,70,90,91,31,87,89,97,32,95,33,22,74,36,38,39,77,102,104,99,14,46,80,66,50,18,52,19,83,115],"\u30c4\u30a4\u30fc\u30c8":13,"\u897f\u66a6":108,UTF:[94,108],event:66,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8":77,"\u524d\u8005":40,".mo\u30d5\u30a1\u30a4\u30eb":74,"<ip":[60,89],"/usr":[67,60],"\u30de\u30eb\u30c1\u30b3\u30a2":81,"\u7def\u5ea6":[29,108,8,81,40,111,44],bill:[37,85],":^":[84,110],"\u6e2c\u7528":0,"_QUERY":36,"\u305d\u308d\u305d\u308d":1,"/locale":[91,74],"\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":107,"\u8ddd\u96e2":[0,7,108,72,81,26,40,42,71],InnoDB:81," table":[39,70,56,8,60,59,38,31,80,102,95,93,87,50],"\u30b9\u30bf\u30fc\u30c8\u30e1\u30cb\u30e5\u30fc":64," our":74,"/mailarchive":91,"\u9045\u304f":71,"/etc":[42,9,5,91,92],"\u9ad8\u304f":37,Hour:88,"_new":[42,76],"\u9045\u3044":7,"\u3068\u3082\u3063\u3068":67,"\u5b58\u5728":[0,7,1,79,81,85,70,71,30,40,94,21,97,42,43,89,68],"/managers":[5,28],"\u3042\u308f\u305b\u308b":42," does":8,base:91,"\u3072\u3053\u3055\u3093":42,POST:[42,28,115],"_MAX":35,"\u30a6\u30a7\u30a4\u30c8":39,Block:8,"\u5024\u304b":7,RAM:89,"\u81ea\u8eab":[14,60],"\u547c\u3093":85,thread:[76,89],"_user":[5,28]," successor":108," processing":88," process":88,TokenUnigram:33,v2:36,"\u30b3\u30a2":[67,5,28],"/db1":28,"\u5927\u304d":[42,77],tritonn:70,"\u308c\u305a":90,"-gram":[37,81,85,1,108]," not":[8,88,70],"\u3067\u3064":57,"\u306b\u3082":[70,85]," pull":74,",[]":56,"-keyring":[42,9,92],"\u5024\u3068":[8,70,110],"@tomotaka":14,"\u5fc3\u914d":82,SiteCountry:[21,79],Twiter:42,"\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":32,"\u3059\u3079\u304d":36,"\u5f62\u72b6":26," term":77,"\u30cb\u30e5\u30fc\u30e8\u30fc\u30af":7,"\u30bb\u30af\u30b7\u30e7\u30f3":[100,74,70,7,110,75,12,113,9,78,101,92,64,5,82,51,67,27,52,53,45],"\n\u308b":94,"\u30b3\u30d4\u30fc":[42,97,91],"\u4ed8\u4e0e":[25,84,40,89,43,68,33]," Cities":7,".blog":37,"\"_":[25,70,7,1,57,79,8,110,31,37,97,108,43,84],koi:[67,60],passes:91," en":[27,93],"\u306b\u5bfe\u5fdc\u4ed8\u3051":27,"\u73fe\u5728\u5730":111," weight":[8,70],"\u30c9\u30e1\u30a4\u30f3":79,"\u672c\u6587":43,".SSSSSS":88,"\u547c\u3073":[70,36,57,79,8,60,89],"\u533a\u5207\u308a":[87,109,70,1,2,79,97,8,81,93,110,60,31,80,56,51,42,44,108],"\u3002\u3059":[73,89],"/sbin":53,"-cache":60,":value":[70,110],"\u60c5\u5831\u540d":[66,59],passed:91,"\u7531\u6765":98," unmanaged":77,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9":[12,52,67,107,91],"\u96c6\u8a08":[29,81],"-get":[42,9,91,92],"\u3002make":89,"\u300cUsers":111,"\u8a9e\u691c":70,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30c7\u30fc\u30bf":28,"$(":[101,92,78,9,53],"\uff01 ":111,Munin:[101,0,9,78,92,42,14,67],"\u547c\u3070":[44,1,108],"\u642d\u8f09":81,"\u5168\u6587\u691c":[29,94,1,96],"$ ":[84,108],selector:95,"\u65e5\u5f53\u65e5":101,"-help":[67,60,82]," Tag":25,"\u4fbf\u5229":[70,110,8,81,98,27,67],Homebrew:[14,53,82,29],"\u6574\u7406":42,"/*":[49,74],"\u4e71\u6570":[35,40],"\u5b66\u7fd2":[29,75,93,94,51,27,6,113],Packages:91,"\u56de\u547c":94,Horikoshi:14," ":[1,57,21,27,66,28,84,70,7,90,8,93,73,25,75,46,40,43,108,110,79,111,51],"\u898b\u308b":40,"_IP":21,"_probability":[14,93],"\u304a\u3070\u305f":14,"-working":42,"/RESULT":42," user":89," uses":88,KEY:[70,110,85,84,33,108],"\u8a18\u9332":[42,68,81]," gem":91,"\u30c6\u30fc\u30d6\u30eb":[0,63,1,57,59,60,62,14,56,68,69,29,70,7,108,8,93,31,95,96,97,84,33,87,25,36,37,38,39,77,102,42,43,44,110,79,80,111,94,66,50,19],",[\"":37,"\u30ab\u30b9\u30bf\u30e0\u30bb\u30ec\u30af\u30bf":42,"\u5206\u3051\u308b":[8,91],Goo:[108,110],"\u5b9f\u969b":[34,25,70,57,37,111,59,43],"\u898b\u3066":70,"\u307e\u307e":[8,90,91],"\nGRN":36,"\u540dn":[66,59,70],"\u52d5\u74b0":109,"1\u30c8\u30fc\u30af\u30f3":33,"\u8aad\u307f\u98db\u3070":1,"\u66f8\u304d\u63db\u3048":[91,45],download:78,gted:74,"\u3002Functions":107," abandon":[80,87,50,56],"\u307e\u3060":[70,108,93,46,14,90],qps:[109,89]," arg":36,"\u307e\u3067":[34,73,36,1,84,91,111,60,31,89,74],"\u307e\u3059":[1,2,3,4,5,49,6,7,8,9,10,12,14,30,18,19,22,63,25,26,27,28,101,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,92,50,51,52,53,54,56,57,59,60,13,62,64,21,66,67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,87,89,90,91,93,95,97,98,99,100,102,104,106,107,108,109,110,111,113,114,115],"\u307e\u305a":[1,57,91,37,111,85,64,5,41,108,67,89,74],"\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30a4\u30b9":2,Users:[111,64],"_list":[29,0,1,24,59,94,60,41,66,14],"\u307e\u305f":[63,56,3,59,60,4,14,66,89,69,70,108,91,31,95,97,32,99,33,87,38,39,77,40,102,104,42,43,44,107,45,46,110,80,111,50,19,83],"\u79d2\u8868":[8,37,40,108],Lucid:94,"/archive":91,"\u79d2\u5358":[8,44]," : ":86,"\u30a8\u30af\u30b9\u30dd\u30fc\u30c8":94,port:89,"-limit":[0,60,70],centos6:42,"\u3059\u3079\u3066":[70,1,90,94,41,42,14,67,89,108],"\u307e\u3068\u3081":[52,70,91],build:[46,91],"[pat":42,command:[90,1,2,60,46,21,18,5],mroonga:[42,70,108,81],"\u8a18\u53f7":[37,60,85,1,94],"\u6b53\u8fce":52,Fork:74,"\u3093\u3057\u304d":98,"\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":36,"\u30d5\u30a3\u30eb\u30bf":42," prefix":14,"\u30de\u30eb\u30c1\u30d0\u30a4\u30c8":14,In:8,".co":[70,23],"\u30e1\u30fc\u30c8\u30eb":[7,71],"\u6607\u964d":[70,33],"\u306b\u3057":[70,108,110],"\u306e\u3069\u3061\u3089":[70,108],"\u5e73\u884c":91,"\u3060\u3055\u3044":[54,74,70,1,108,91,12,81,9,110,64,21,82,52,67,107,45],The:[8,42,70,108,110],DragonFly:94,"\u4f55\u3089\u304b":44,"'hay":36,"\u5b57\u5217":[14,44,110],exe:[64,91],"\u306b\u3066":[7,91],"_put":[29,24,3,60,4,41,32],"\u30e6\u30fc\u30b6\u30fcID":111,"\u307e\u307e\u3067":37,"\u306b\u3069":36,"_SOURCE":91,init:67," translation":74,"\u6697\u53f7":91,"\u9577\u3055":[8,42,89]," Tweets":73,"\u4ecb\u3057":[81,21]," UInt":[25,70,108,110],"\u7528\u8a9e\u96c6":77," testdb":89," rst":10,"&query":21,"\u3057\u304b\u3057":[70,108,37,85,28,74],mlock:94," element":108,"\"Good":70," longer":23,"\u308c\u307e\u305b":[77,67,60,90],"/command":5,"_by":[14,111,112,42],".rb":94,"\u62e1\u5f35\u578b":8,SEGV:0,"\u304a\u3051":70,"-keys":91,"_users":111," item":[27,93,75,51],"(drilldown":68,"\u30d1\u30c3\u30c1":[49,14,74,94,42]," omitted":2," night":73,nterms:77,"\n]\n":97,"-memory":94,"\u304a\u3044":[1,91,8,81,40,107,14,74,68,33],"id]]":[80,56],"\u59cb\u70b9":1,"\u77e9\u5f62":[30,40,81]," OS":[29,53,94,82,42],"\u59cb\u3081":74,"\u5f79\u5272":1,"\u6bd4\u3079":[73,79],"\u3002MessagePack":67,"\u6d0b\u723e":14," yum":[42,78,101],"-ftp":89,HTML:[91,18,5,42,14,52,74],"\u51e6\u7406":[0,36,56,108,89,80,81,85,70,110,40,94,5,87,42,68,28,74],"\u4f4e\u6a5f":36,"\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9":107,ANN:91," PostgreSQL":81,"\u30bf\u30fc\u30b2\u30c3\u30c8":42,columns:[31,42,94,56,87],"]]]":[37,93,95,108],"\u5168\u89d2":[14,1],"\u904b\u7528":81,"\u30a2\u30af\u30bb\u30b9\u30ed\u30b0":[27,75,115,28,51],"\nency":89,"\u629c\u3051\u308b":1,"\u5927\u898f\u6a21":81,"\u3002ECMAScript":70,"\u671b\u307e\u3057\u3044":81,"_html":[14,60],"\u30c7\u30fc\u30e2\u30f3\u30d7\u30ed\u30bb\u30b9":5,"\u601d\u3044":74," MySQL":81,"\u9069\u5408":[37,1],OBATA:94," build":[92,9,91,45],"\u30b7\u30fc\u30af\u30a1\u30fc\u30b5\u30fc":57,Clang:42,grep:[92,78,9,101],SSSSSS:88,"-source":91,".nginx":5," localhost":60,"\u62c5\u5f53":91,hoge:72," STATUS":86,"\u53c2\u52a0":[52,13],Help:74,"\u306b\u304a\u3044":[8,90,91],"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[29,52,103,76,91],"\u30ed\u30b0\u30ec\u30d9\u30eb":60,"\u89e6\u308c":1,"-github":91,"\u7d44\u307f\u8fbc\u3080":[81,36,5],"(>":36,"\u3002Redmine":54," http":[109,101,78,67,2,12,9,60,92,21,18,53,28,5],"\u30bf\u30a4\u30d7":[14,89,28],"\u601d\u3063":49,":!":110,"\u68ee\u7530":25," RedCloth":91," GRN":[88,36],"\u8a00\u3046":27,RLIMIT:88,"\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7":91,"\u3082\u3057\u304f":[108,91,8,21,42,43,44,110],"\u66f8\u304d\u8fbc\u307e":32,"\u82b1\u5b50":25,"\u305d\u3057":111,"\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":19,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af":[14,0,94,107,42],detail:89,dump:[29,0,97,24,94,41,42],"/log":[67,60],"]]":[70,56,80,93,59,60,31,50,95,87,89,33],"_SECTION":[39,111,43],"][":[14,110,42],":groonga":91,"/SRPM":91," Tomita":94,"\u554f\u3044\u5408\u308f":36,"\u305d\u3046":[108,45],"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":[63,1,24,59,26,14,96,69,29,70,108,73,34,25,37,38,39,77,42,43,110,111,94],sea:27,arg:36,sen:23,"\ncolumn":[37,111,7,97],"\u8a00\u8a9e":[100,36,94,60,52,45,74],PORT:[21,89],"\u3088\u308a":[70,7,57,8,111,85,110,71,73,37,36,82,27,14,42,67,44,94,89,108],"\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0":36,"\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":[91,89,74],"\u7d39\u4ecb":[25,52,70,91,111],"\u4e00\u5ea6":[73,14],GET:21,"]}":[8,77],"\u30b9\u30b3\u30a2":[70,36,37,93,40,111,42,68]," Munin":42,"\u5c02\u7528":[96,29,21,91,74],"]x":[111,40],TCP:60,"(news":91,"\uff08NOT":98,".log":[67,60,90,89],"\u3046\u3061\u3044":60,"\u3068\u3068\u3082\u306b":[8,33],"\u305d\u306e":[1,57,85,60,21,27,67,89,84,29,70,90,91,31,97,74,25,36,101,37,44,108,110,79,81,82,111],"\u8a9e\u4ee5":108," application":28,"\u7a7a\u6e2f":111,"\u8868\u73fe":[36,56,8,31,77,98,87,52,44],"\u304c\u3064\u3044":[42,94],"\u306f\u3061\u3087\u3046":108," Lexicon":73,"\nPARTIAL":36,Server:25,"\u30b9\u30c8\u30ec\u30fc\u30b8\u30a8\u30f3\u30b8\u30f3":[29,81],"\u5927\u91cf":[25,36,1],"\u304a\u304b":67,"\u898b\u3064\u3051\u308b":27,"\u304a\u308a":[111,43]," easy":10," realtime":[93,51],"\u500b\u4eba":67,"\u6790\u5668":[81,33],"\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":[100,98,45],encoding:2," issue":54,AND:40,"\u3002value":68,last:111,reverse:91,"\n\u30b9":14,"\u632f\u821e":7,"\u578b\u5909":14,SHIDARA:14,"/lists":91,"-api":49," Sites":97,".php":91,"\u958b\u59cb":[70,7,56,80,107,87,14,89],"] ":[109,91,60,86,21,42,14,89],"-file":[14,60],"\u53ef\u5426":1,"<= ":5,Query:[29,24,88],"]/":21,"])":[35,71],"<#{":88,"\u30b5\u30d6\u30bf\u30b9\u30af":91,load:[0,1,57,24,60,42,27,69,29,70,7,90,8,93,31,56,84,87,25,97,75,37,73,40,50,41,14,43,44,108,110,79,80,111,94,51]," about":88,");":36," off":5," Names":74," database":[5,86],point:[30,7,85,71],address:[14,42],"\u3059\u304e\u307e\u305b":25,"7e":89,"\u30b9\u30ec\u30c3\u30c9":[81,76,60,89,28]," intall":[101,92,78,9,53],"\u30ca\u30ce":94,"-patch":74,")-":91,"),":[39,33],shutdown:[29,83,24,94,60,5,41,28,21],").":91,"\u4e0d\u80fd":89,"\u4e0a\u8a18":[34,74,70,7,1,75,37,40,21,51,67,89,45],")\"":[57,110],".htpasswd":[5,28],")'":[25,111,108,75,93,40,51,27,110],":#{":88,"\u78ba\u5b9f":75,"[rpm":[14,42],GitHub:[54,14,74,42],"\"web":[75,51],"\u8003\u616e":37,Groonga:[70,110,91,81,88,108],all:[42,91],"\u30b3\u30df\u30e5\u30cb\u30c6\u30a3":[54,29,13,74]," Ueno":[42,94,112],"\u898b\u3064":[42,94,93],NULL:[42,36,108],"\u53ce\u96c6":81,"\u7c21\u6613":7,")\n":[35,7,91,23,36,88,71]," sample":89,"\u30b9\u30ad\u30fc\u30de":[70,7,108,73,97,110],"\\\"":[31,85]," memcached":21,po:[52,91,74],"\u534a\u89d2":1,"\uff08GNU":67,XML:[14,94,2,28,42]," #{":88,"\u3057\u3084\u3059\u304f":42,"|<":88,etc:[9,5,28]," COLUMN":[25,70,7,1,57,79,8,111,110,73,39,37,97,43,108]," raltime":51,"_reopen":[29,24,3,4,41,32,42],"#groonga\u30bf\u30b0":111,"\u30de\u30eb\u30c1\u30b9\u30ec\u30c3\u30c9":28,"[output":42,"/db":[93,5,97],"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9":60,"\u30d9\u30fc\u30b9":[108,81,94,110,42,14,115,74],"\u56de\u7279":89," warning":3,"\u3002Tag":25," User":25,"\u79d2\u9593":14,"\u5730\u7cfb":7,"\nLucid":94,"\u3067\u306a\u3051\u308c":108,"\u6307\u793a":[27,1,21],"-plugins":[101,78,9,92,82,42,67],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[29,106,82,91,49,94,108,110,103,14,42,10,52,67,89,74],INT:2,"\u505c\u6b62":[60,90,83],"\u30b9\u30c8\u30ec\u30fc\u30b8":[29,81],TokenBigramSplitSymbolAlpha:[37,70,85],"\u63d0\u4f9b":[22,101,78,7,90,91,81,9,94,92,36,5,42,14,115,6,28,45]," entries":[70,108,110],"\u4eca\u5ea6":111,"\u30b0\u30cb\u30e3\u30e9":111,"\"sug":6,"\u307b\u3057\u304f":70,engi:[27,93],"\u60f3\u5b9a":[46,25,97,77],"\u8a73\u3057\u304f":[8,81,1],"\u63a1\u7528":[37,81,21]," customized":88,"<=":111,"!(n":108,"\u5316\u524d":68,"^ \"":108,"\u5404\u8a9e":77,"\u958b\u3051\u308b":42,"\u6027\u5225":81,"\nALERT":[3,4],"_expansion":[14,70,57]," values":31,"< ":108,"</":2,NetBSD:94," free":[77,88],TokenBigramIgnoreBlankSplitSymbol:37,"\u898b\u3064\u3051":[27,0,42],"-key":[42,91],QUERY:88," Nonexistent":70,"\u30ed\u30fc\u30ab\u30eb":[108,91],"null":[14,108,66]," logs":88,fedora:[42,67,91],"\u4e00\u7fa4":36,"\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2":[37,70,98],google:70,"\u4e38\u62ec":1,"\u6210\u679c":[52,74],Alert:88," registers":8,"\u5065\u4f5c":25,"[suggest":42," file":5,"\u56fd\u540d":79,"\u30c8\u30e9\u30a4":[14,108,110],"\ngroonga":[14,90,112]," select":37,development:52,About:45,"-chroot":91,Then:8," tweet":73," unpatched":23,"\u30ec\u30b3\u30fc\u30c9r":36,Lines:107,"\u901a\u4fe1":[109,29,76,103,5,18,52,89],amd:91," describes":74,"_equal":36,"\u5909\u63db":[14,44,5,111],"\u307e\u305b":[1,59,26,60,21,27,66,67,6,28,73,70,7,108,89,8,93,31,68,56,32,99,33,85,75,37,39,50,14,43,44,110,46,91,81,74,83,5],user:[5,89],ALLOW:[70,110],"{PATH":67,"\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb":91,".spec":14,"\u5834\u6240":[94,89,13,91],Moero:25,Project:64,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0":89,"\u672c\u6765":57,Senna:[42,23,108],"\"\u3001":27,"\u30b9\u30bf\u30a4\u30eb":60,"\u3044\u308d\u3044\u308d":[8,29,96,111]," buffer":77,"\u7d44\u307f\u5408\u308f\u305b":[36,1,91,37,81,39,33]," yappo":23,"((":70,"_INSTALL":[67,64,82],"\u30ef\u30a4\u30c9":14,edge:76,flags:[25,1,84,79,8,111,59,60,39,77,66,43,89,33],sortby:[25,70,1,93,40,95,14],"') ":60,entry:39,"\u9806\u756a":[37,60,1,110],"\u30b0\u30e9\u30d5":81,"\u3064\u307e\u308a":[70,91]," digits":88,"\u30d0\u30a4\u30b0\u30e9\u30e0":[37,33],"_lock":14,"\u3053\u308c":[85,5,42,27,67,6,28,70,7,108,91,49,73,74,36,75,37,40,14,43,111,110,79,81,8,51],"\u4e8c\u756a\u76ee":108,"_KEY":[25,0,7,1,57,79,8,111,94,66,70,73,37,110,97,42,84,14,43,108,33]," --":[25,70,108,111]," work":88,"\\bin":64,"_file":[5,28],"\u8fd1\u4f3c":[14,7,71],"\u56de\u6307\u5b9a":110,"\u547c\u3073\u51fa\u3059":[35,71,72,30,98,114],"_NIL":94,favorited:111," common":14,"\u6b8b\u5ff5":8,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":[60,21],"\"tritonn":70,"\"value":70,"\u547c\u3073\u51fa\u3055":70,"\u547c\u3073\u51fa\u3057":[36,108,81,94,97,98,42],O0:91,"\u3067\u304d\u308b":[57,26,60,5,14,89,84,70,91,8,93,73,28,97,33,25,36,37,76,39,42,71,107,110,81,111,52,21],tables:97,"\u4e92\u63db\u6027":91,"\u5fd8\u308c":14,"\u5316\u51e6":[14,68],also:108,TODO:[70,55,57,58,20,15,61,110,17,86,105,47,28,108],"\u30bd\u30fc\u30c8":[29,0,94,25,93,26,70,40,14,96],PID:[0,67,60],"3\u4ef6":111,"[[":[25,70,7,56,84,8,111,59,110,60,73,37,87,80,66,108],source:[25,1,91,111,59,39,43],"\u7279\u5b9a":[70,91,79,81,97,98,43,67,107,33],location:[25,7,79,8,111,40,5,28,21],input:31,"\u3057\u307e\u3059":[70,108,79,111,85,78,110,6,33],"\u3064\u3051\u308b":84,bin:64,"...":[70,55,2,77,110,93,59,15,66,73,17,5,97,14,18,42,47,89,108],"1\u305a":[90,68]," speakers":13,"\u30fbOR":40,"\u5024\u7528":14," code":[88,74],"-untrusted":92,"\u968e\u5c64":36,"\u9759\u7684":[29,1,24,60,73,42,18,52,107]," can":[8,88,74],"\u304f\u3060":[1,84,58,13,64,5,67,28,101,70,7,108,8,93,9,37,89,74,12,21,42,44,78,110,81,92,18,53],nginx:[42,5,115]," Lion":42," add":[70,74],"\u30cf\u30c3\u30b7\u30e5":[46,77,33]," Have":73,bit:[101,78,12,9,92,64,82,45,44,53],"\uff08AND":98,"\u5f53\u3066":[66,59],"\u30d7\u30e9\u30b0\u30a4\u30f3":[101,0,94,81,9,78,112,92,42,14,67,74],"\u5927\u4e08\u592b":[54,67]," City":7,"@wareohji":42," -G":64,"\u8aa4\u308a":42," Hat":[52,67,91],"\n ":[25,70,7,108,89,37,111,59,77,40,95,5,28,110]," Takuto":94,"\u540c\u7b49":[85,89],"\u533a\u5207\u3089":14,"\uff09\u307e\u305f":[108,110],"-command":[94,90,28,45],"\n\"":[2,89],"\"uptime":2," Kinjirou":25,mode:36,"\u4ee5\u5916":[70,36,56,57,91,80,81,26,46,94,87,14,44,89],OS:89,OR:[40,70,57,110],"\u6642\u523b":[46,111,114,89,75],"\u5927\u304d\u306a":28,"\u3001C":1,"\u7f6e\u304b":[18,67,5],"_NONE":59,"\u7f6e\u304d":[94,91],"\n]":[25,7,1,57,79,75,8,93,110,31,97,51,27,43,108,84],FILES:86,"[dump":42,"\u8aa4\u3063":[42,91],"-DD":[88,108],"\u5404\u8981":57,"|correct":93,examples:94," \u30e1\u30bf\u30d1\u30c3\u30b1\u30fc\u30b8":42,"\u307f\u307e\u3057\u3087":[25,1,57,8,111,40,43],cd:[101,78,12,9,53,92,67,74],"\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0":[0,67,60,108],"\u3001[":[87,1],Hardy:94,"~number":108,"\u3001_":[111,40,1,79],"\u66f8\u304b":111,"_bool":94,"\u30af\u30ed\u30fc\u30f3":67,"\u5927\u304d\u304f":[8,94,90,97,71],"\u66f8\u304f":110,"/COMMAND":21,"\u66f8\u304d":[37,81,70,85,89],RPM:[101,14,94,91,42]," nanoseconds":88,"\u66f8\u3044":[111,108,110],"\u5927\u304d\u3044":[14,70,36,60,110],"\u3061\u3083\u3093":25,"\u69cb\u6210":[36,1,91]," sed":9,"\u3002JSON":31,"}]\n":8,"\u56de\u52d5":89,"\u5148\u60c5":111,proc:[92,70,9,78,101],".sh":[42,74,107,91,45],"\u5b8c\u4e86":[70,91,74],object:108,run:[107,5,91]," Hiroshi":94,"\u4ed8\u304d":[25,94,1,108,29,12,93,26,110,8,51,27,44,96,33],"\u3001\n":[40,104,91],",\u3000":89,bi:[37,85],"\u4ed8\u3044":111," tablename":90,"\u5f37\u5236":[42,0],"\u5c0f\u6587\u5b57":1,"_ADDRESS":21,output:[87,25,70,7,1,2,8,93,94,88,37,40,95,56,42,80,18,111,108],Raccoon:25,"\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[36,60],Bob:110,"\u4ed8\u3051":[8,42,1,21,28],"_FOR":36,Hello:[73,108],"\u30ab\u30a6\u30f3\u30c8":111,"{\"_":[25,70,110,8,40,108],"\u3001 ":[74,70,7,1,57,8,111,110,40,5,98,108,67,44,28,21],"\u78ba\u5b9a":93,"\u3001\"":[1,57,75,111,51,27,14,44,6],"\"mori":97,"\u3001$":91,Dump:88,"\"service":75,"\u4f3c\u305f":40,"\"yu":97,"\u3001-":[18,94,44,89],"\u53ca\u3073":[50,89],"\u3001/":[1,21],"\u3001.":[107,74],"\u5730\u5f62":[7,71],range:[66,59],"\u5185\u5bb9":[87,109,70,1,108,91,8,111,59,110,66,80,21,56,51,27,43,89,74],"\u3057\u307e\u305b":[37,27,70,67]," configuration":5,"\u95be\u5024":[29,70,37,93,85,60,65,14,67],"\"serach":75,"\u89e3\u653e":46," DATASET":86," LGPL":23,"\u5730\u70b9":[40,7]," search":[110,75,93,51,14,6],"\uff11\u4ef6":87,"(ctx":36," Dest":8,"_repair":42,"\u7e70\u308a\u8fd4\u3057\u6570":89,"\u30ad\u30e3\u30c3\u30b7\u30e5":[42,0,60,70,81]," SiteCountry":79,travel:111,"-protocol":[60,21,89],"/yum":91,"\u9010\u6b21":81,"\u4e88\u5b9a":[49,14,7,90,28],"\u6295\u5165":[37,0],NEW:[70,91],"\u5831\u544a":[54,29,94,112,42,14,52,89],".status":89,Natty:[14,9,82,29],"|:":88,".)":[88,108],"_fin":42," own":8,".-":74,"..":[70,56,108,80,60,86,31,87,18,110],"[tokenizer":42,"\u5316\u6f0f\u308c":42," Synonym":57,".\"":[8,25,1,108,73],"\u7a2e\u5225":59,submit:[27,93,75,51],"\u3072\u3068\u3064":[110,72],"/hosts":91,"\u30fb\u30cf\u30c3\u30b7\u30e5\u30bf\u30b0":111,"\u51fa\u3059":111,"\u30ea\u30d0\u30fc\u30b9\u30d7\u30ed\u30ad\u30b7":28,"\"rect":[42,71],"\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb":90," curl":[53,2,5],"\u5074\u9762":81,"\n..":97,usr:[67,60,5,107,53],files:91,"\u30da\u30fc\u30b9\u30c8":42,RESULT:2," NONE":70,GNU:67,".O":25," Demo":25,"-query":[1,84,60,14,88,42,110],"/suggest":66,"\u8a2d\u5b9a\u5024":[0,104],"-type":[27,75,51],BSD:67,Wikipedia:44,Google:[70,6],"\u7b97\u8853":108,".]":[108,93,59,77,66,87],"._":[8,70,108,110]," language":74,TSV:2,"/epel":78,posted:111,saerc:[93,75]," status":2," CI":[100,29,45,42],utf:[67,23,60,2],"_op":36,".n":[70,108,110],"_or":71,munin:78,"\u306b\u5bfe\u3057":[109,25,0,36,1,91,79,110,81,85,70,39,40,93,18,43,108,46,33],Twitter:[29,13,111],"\u306b\u3064":42,".d":[92,9],"\u8868\u3057":[36,1,90,26,44,68],"/DATABASE":28,"\u52d5\u304d":28,windows:[23,91],"\u52d5\u304f":[14,67,115,42],"\u5206\u89e3":36,".}":[77,108],"\u4e0a\u66f8\u304d":[40,91],Pentium:89,"/header":12," than":88," types":93,"\u63a5\u982d":[14,108,33],USERNAME:64,"\u3002Sphinx":10," functions":23,UNIX:67,"\u30ed\u30fc\u30de":27," candidate1":93,"\u3002command":90,"\u3002gnr":98,"\u3054\u3068":[42,43,76,91,62],"\u3075\u308a":93,"\u30ea\u30dd\u30b8\u30c8\u30ea":[101,78,91,9,92,42,14,52,74],"\u4f4e\u304f":37,"\u304b\u307e\u3044":1,sourceforge:91,"\u5b9f\u51e6":36,"\u7279\u5fb4":[81,25,29],"\u306a\u306b":27,"\u5165\u308c":[37,25,111],"\u306b\u5bfe\u3059\u308b":[29,36,1,91,79,25,8,81,94,62,21,93,14,43,111,96],"_columns":[1,57,88,87,96,29,70,7,108,8,93,73,95,56,25,37,40,43,110,79,80,111,94],">uptime":2,".comment":111,"\u958b\u3044":[14,19,94,69],"/data":45,binlib:91,"=null":70,"\u958b\u304f":14,invalid:70,":Groonga":[70,110],"_rate":[21,46,1,2,5],Error:88,"\u3042\u3052\u308b":[37,29,65],"'\u3002":60,"\u56db\u3064":85,"[groonga":[14,91,42]," go":73,"\u30ed\u30b0":[0,91,75,3,60,112,4,42,32,14,89],"\u6642\u4ee5\u5916":94,"\u5207\u308a\u6368\u3066":8," to":[70,23,108,8,5,88,110]," confirmed":8," fix":23,".load":89,"\u3002dump":97,".dump":14," script":89,"\u53f3\u8fba":[14,94],"_len":42,lucid:[9,91]," eight":1,"\u6307\u5b9a":[0,63,1,2,24,35,3,59,26,60,4,64,5,42,115,56,67,85,28,57,29,70,7,90,89,72,8,93,31,37,95,68,97,98,84,69,96,33,87,25,110,36,12,38,39,77,40,102,104,14,43,71,44,108,109,46,91,79,80,81,94,30,50,111,18,19,21],"\u5c5e\u3057":44,"\u4e00\u7dd2":[0,7,1,37,70,42],Cast:[17,110]," old":42,"\u9806\u5e8f":[70,1,37,59,66,33],"\u3088\u304f":70,"\u30c0\u30a6\u30f3\u30bf\u30a4\u30e0":[28,115],drilldown:[25,0,79,111,70,95],"-in":91,"\u306a\u304c\u3089":[42,70,1,91,81],"\u7d99\u7d9a":[42,45],"\u306a\u304c\u308b":42,"\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb":89,"\u4f7f\u3044":[113,101,85,5,27,67,28,29,70,108,8,93,9,73,98,74,36,75,14,106,44,45,78,111,81,92,51,21],"\u6b63\u898f":[42,1,108,33],LANGUAGE:74,"\u9593\u9055\u3063":[14,75,6,42],"\u4e00\u5de5":84,"_processes":[5,28],age:70,confirm:74,"\"suggest":6,"\nerror":[3,4],"\u5f37\u5316":[14,94]," base":5,"\u8aad\u307f\u53d6\u308a":[31,60],"-package":[67,91,82],Conifugration:45,"\u7f6e\u304f":67," post":[70,108,110],"-count":46,rinse:91,"\u6a29\u9650":67," b":110," c":[64,110]," `":2," a":[70,110,91,8,86,73,88,42]," changed":23,gr:70," d":[37,85],"\u3002name":33,"\u3067\u307f":81,",\"title":1," n":[70,108,110],"\u30a4\u30f3\u30c7\u30c3\u30af":43,"\u30ed\u30b0\u30a4\u30f3":91,"\u64a4\u5ec3":94," i":91,"\u958b\u304f\u969b":42,"\u30d5\u30a3\u30eb\u30bf\u30fc\u30c6\u30ad\u30b9\u30c8":70," v":36,gb:2,ga:89,"\u5272\u308a\u5f53\u3066\u308b":[8,1]," z":44," push":74,"-lzo":[67,82],"\u3067\u306b":[37,73],CPU:[81,89,67,5,28],"\u3067\u3069":93," }":[46,111,1,21,28],"\u3067\u3057":[12,8,108],"\nhttp":5," @":[70,84,37,111,85,108]," A":86,pthread:14,"|http":89,similar:[42,36,93],"\u8a9e\u6271":85,"/\u65e5":111,Object:44,"-release":[42,52,78,91,101],"\u30cb\u30e5\u30fc\u30b9":73,"\u3067\u3059":[54,101,1,2,115,59,26,60,62,64,5,66,27,67,6,28,57,73,70,7,90,89,8,93,31,37,68,56,98,108,33,34,36,97,75,12,85,77,40,87,14,43,71,44,107,45,109,111,91,79,81,110,49,51,18,52,74,21],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u30c6\u30fc\u30d6\u30eb":[108,110]," Token":89,"\u3067\u3044":[8,70,108],"\u300cgroonga":98,Words:108,stable:90,"\u5dee\u6f14":108," [":[1,57,60,5,27,66,89,84,31,70,7,108,8,93,73,95,56,33,87,25,97,75,37,39,77,40,50,43,109,46,110,79,80,111,86,51,21],"\u3067\u304d":[101,0,94,1,2,35,26,60,62,5,42,27,67,115,6,28,84,73,70,7,90,89,92,8,93,9,31,68,56,98,10,108,33,87,25,110,36,97,75,37,39,40,14,43,71,44,107,45,109,78,111,91,79,74,81,72,114,30,51,18,53,21],include:49," ^":108," _":[25,70,7,1,84,79,8,111,110,40,108]," \\":[85,108],"\u5411\u3044":70," \"":[1,57,59,64,5,27,66,28,84,31,70,7,108,8,93,73,89,25,75,37,46,77,40,42,43,44,110,79,111,51,21],"_API":36," ":[63,1,2,3,4,5,66,27,67,28,57,70,7,90,91,8,93,108,73,95,89,32,69,33,25,36,75,38,39,77,40,102,104,43,84,45,109,46,110,79,111,50,51,19,21]," !":108,"/..":[5,91],"\"saerch":75,"\u30d7\u30e9\u30b0\u30de":70," Senna":[42,70,23,108,110]," libmsgpack":[92,9],"\u8fbc\u307f":32,"_DELIMITED":23," .":[101,78,67,91,92,12,9,37,64,107,45,89,53]," /":[109,85,1,108,37,93,9,60,64,5,28,21]," -":[101,80,0,23,1,2,35,3,59,85,60,88,4,63,5,42,27,67,28,57,73,70,7,90,91,92,8,93,9,53,31,94,95,89,56,32,10,69,33,87,25,97,75,37,86,38,39,77,40,102,104,99,14,43,71,44,84,107,108,109,46,78,114,110,79,74,111,72,66,112,30,50,51,18,19,83,21]," obj":77,"\u3002run":107,"\u3067\u5024":[60,1],"\u6e0b\u8c37":111,"\u983b\u5ea6":93,"\u3088\u3046":[0,1,57,26,60,5,27,56,42,67,6,28,84,29,70,7,90,91,8,113,73,89,97,10,108,87,25,36,75,37,85,77,40,14,71,107,45,111,110,79,80,81,94,51,18,21],"\u3072\u308d":84," :":108,"\u30a8\u30b9\u30b1\u30fc\u30d7":[31,42,108,110],"\u304a\u3053":[8,81],"\u6368\u3066":14," ?":108," <":[70,23,108,37,40,97,14,89]," =":[25,70,7,84,60,40,36,108],"\u5206\u985e":8,"\u4f7f\u3048\u308b":[110,60,42,14,67,45],"\"complete":6,"\u304a\u304d":[81,91],"\u70b9\u4ee5\u4e0b":8,"-build":107,".clean":91," update":[101,91,9,92,42,52,74],"-id":[42,60],"\u542b\u307e":[70,36,1,108,91,59,85,78,31,51,66,28,110],"_dir":14,"\u6b8b\u308b":14,"\u304a\u304f":[8,108,91],ctx:76," such":74," York":7,".output":18,pkg:[94,67]," owner":5,".po":[52,74],"\u3002Blogs":37,"-suggest":[22,29,24,75,93,94,112,86,42,14,6],"/bin":67,"\u5341\u5206":37,"\u4e00\u81f4\u3057":85,"_PREFIX":[94,67,64,82]," word":[70,110],MySQL:[81,91],"\u30c7\u30b6\u30a4\u30f3":42,".pc":[14,112],"\ntable":[37,111,97],"\u9023\u643a":81,"\u7d42\u308f\u308b":[73,108,110]," [":70,".xml":2,"_cursor":94,"_SCALAR":[25,70,7,57,79,37,111,59,110,73,39,97,43,108],index:[25,43,23,91],"-line":45," specifies":8,"_thread":89,"/introduction":[1,21],".tsv":2,squeeze:[29,91,82,92],etime:109," WGS":[8,25,40,7,111],"\u983b\u7e41":67,"\u306e\u3067\u3057\u3087":70," specified":8,"\u6e21\u3055":[42,7,36],"\u5358\u7d14":[36,84,71],"\u30a8\u30f3\u30b8\u30f3":[8,25,70,60,81],"\u7b49\u5024":94,"\u3060\u3057":[14,89],body:[39,57,37,31,80,19,69],FTP:89,"\u5224\u65ad":108,"-exact":46,"\u5024\u8a18":108,"\u5fc3\u304c":107," Really":108,"\u521d\u56de":74,"\u516c\u958b":[14,94,91]," PatSuffix":84," Precise":[29,9,82,42],"\u62e1\u5f35\u5b50":[94,2,89],"?parameter":5,"\u57cb\u3081\u8fbc\u3080":89,"\u30de\u30af\u30c9\u30ca\u30eb\u30c9":26,"\u4efb\u610f":[1,91,81,60,44,89],"\u5341\u5206\u6c17":70," libmemcached":107," \"":[70,7,57,111,59,110,77,21,66,43,89,108],"\u306b\u5bfe\u5fdc":[87,70,56,80,18,60,31,42,32,14],translate:74,"= \"":[70,108],"/tmp":28,"\u4e0e\u3048\u308b":[31,109,40,60,90],"\u7de8\u96c6":[0,108,91,72,5,52,67,107,74],"\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9":[1,5],"\u4e0a\u3052\u308b":37,"\u300d\uff08":[85,97]," Comments":[111,97],"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9":60,"\u5177\u4f53":37,"\u3067\u3082":[54,1,85,64,5,42,27,67,89,101,70,91,9,74,37,40,21,14,43,107,78,81,92,82,53]," Shibuya":94,">version":2,"\u3002API":98,".fedoraproject":78,"\u5206\u6790":81,"\u6b8b\u3063":94,"\u898b\u3064\u304b\u308a":70,CODES:91,"\u8d85\u3048":[37,70],"/to":5,"\u30ed\u30f3\u30c9\u30f3":7,realloc:94,"\u5171\u901a":[14,43,44,108,33],"\u767a\u4fe1":91,"\u7518\u3044":57,"\u8981\u6c42":1,"_likes":[70,108,110],"\u9014\u4e2d":[27,60,91,75],"\u3046\u3048":[14,42],HOME:[67,91],"\u3002Travis":45,"_NAME":21,"'ABC":33,Monkey:8,"\u9001\u4fe1":[63,56,3,59,4,21,66,87,89,69,31,95,97,32,99,33,38,39,77,102,104,46,80,50,19,83],Draw:25," Search":108,"\u3002\u3064\u307e\u308a":[101,70,1,110],usa:79,OLD:91,"<- ":28," garbage":77," because":[8,2],"\u6642\u9593":[70,111,1,108,8,81,94,73,80,56,87,14,44,89,110],"\u59cb\u307e\u308b":[70,108,89,39,28,27,6,68,110],popular:70,"\u3044\u304f\u3064":52," defines":86,"\u3002\u30d0\u30b0":54,"\u7d5e\u308a\u8fbc\u3093":81,"\u3057\u307e\u3046":[81,14,94,91,42],".pid":60,"\u3057\u307e\u3044":[8,37,84,89,75],Itagaki:94,"/master":[74,45],"'Alice":110,"\u81ea\u5206":[89,82,74]," grn":98,"\u30af\u30a9\u30fc\u30c8":110,soundkitchen:[14,42],"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[114,108,77,98,14,42,19,69]," JQuery":94,"\u3059\u308b":[0,1,2,3,4,5,6,7,8,9,10,12,14,94,30,18,19,21,63,25,26,27,28,29,31,32,33,22,35,36,37,38,39,40,41,42,43,44,45,46,92,50,51,52,53,54,56,57,59,60,13,62,64,65,66,67,68,69,70,72,73,74,75,76,77,78,79,80,81,82,83,84,85,87,89,90,91,93,95,97,98,99,100,101,102,104,71,107,108,109,110,111,113,114,115],"\u7d4c\u7def\u5ea6":[8,29,40,96],"\u3059\u308c":[81,1,108,89,110],on:[5,28],started:110,Markus:42,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0":[52,91]," enhanced":23,"\u5f15\u304d\u8d77\u3053\u3059":42,"\u672c\u4f53":52,"\u8868\u3059\u578b":44,HOST:[21,89],"\u5225\u9014":[44,79,33],"\u3059\u3093":111,Ultra:25,"/rab":[40,1,79],"\u305d\u308c\u305e\u308c":[70,36,1,2,79,8,111,85,60,37,40,91,18,43,67,107,57],"_install":[10,45],"\u4e00\u81f4RK":27,GtiHub:14,"_NEW":14,"this":[8,1,21],"\u6b8b\u308a":[70,90],"?msg":91,"\u30d8\u30c3\u30c0\u30d5\u30a1\u30a4\u30eb":42,"\u5229\u7528\u4f8b":81,"\u3002Ctrl\u30ad\u30fc":1,"<limit":60,"\u4ee5\u5185":[27,40,111,108,75],"\u8d77\u52d5":[1,2,89,94,60,46,21,91,18,28,90],Video:25,"_WITH":[110,108,85,84,33],"\u6e21\u3057":[36,56,31,21,87,1],"\u5ec3\u6b62":90,"\u6e21\u3059":[42,1],"\u53d7\u3051\u4ed8\u3051":94,"-html":[42,94],"\u6d6e\u52d5":[8,44,108],"\u4f5c\u696d":[52,91,74],"\u4e16\u4ee3":90," morning":73,"\u3001&":40,"\u51fa\u3057":111," actual":5,links:[8,21,79],"\u306f\u6708":108,"-strings":42,sudo:[101,78,9,92,42,67],"_estimate":14,"\"correction":6,"\u30af\u30e9\u30c3\u30b7\u30e5":[14,94,42],">max":2,"\u4f7f\u3044\u65b9":[29,70,7,1,2,24,75,81,110,60,73,5,51,27,113,89,108]," example":[8,70],"\u7d30\u5206":8,Details:88,"_path":[42,5,89]," mte":23,"\uff08TokenBigram":37,Mroonga:[70,108,110],"\u6301\u305f":33," candidate":93,"\u6301\u3061":[36,60,5,33],"\u306f\u307f":52,"\u6301\u3063":[70,110,75,81,42,108],"\u6301\u3064":[25,70,7,1,108,79,75,8,81,76,26,60,31,14,68,33],"_LEAK":107,"/setup":45,"\u6df1\u523b":37,"\"Say":108,"ERROR\u30bf\u30b0":42,"\u3059\u3067":[73,85],"\u3059\u3079":[70,36,90,89,111,5,97,27,14,28,69],"_JIS":67,"\u512a\u5148":[81,89]," view":102,sid:[29,82,92],defalt:94,"\u9664\u7b97":108,"\u4fee\u6b63":[0,7,75,94,112,23,21,42,14]," port":53,"\u3064\u3064":37," size":77,"\u30b3\u30de\u30f3\u30c9":[0,63,1,2,24,58,3,59,85,60,88,4,64,5,42,27,67,6,28,57,29,70,90,91,8,93,31,87,89,56,32,10,69,96,33,22,36,97,75,38,39,77,40,102,104,41,99,14,95,44,84,107,108,46,80,94,66,50,51,18,19,83,21],pub:91,"-com":91,"\u81ea\u5df1":111,"\u3044\u304f\u3089":81,"_')":[39,68],"_PORT":89,"\u4e26\u3073\u9806":40," Text":[70,108,89,110],db:[14,19,89,69],"-deafult":14," msgpack":2,"\u304a\u3059\u3059\u3081":28,"\"rectangle":[42,7,71],"}e":108," mroonga":[70,108,110],"\u5f35\u3089":[8,42],HTTPS:[28,115],"\u3055\u3044":[1,84,58,13,64,5,67,28,101,70,7,108,8,93,9,37,89,74,12,21,42,44,107,78,110,81,92,18,53],"\u306e\u307b\u304b":[8,44],",\"":[25,2,111,77,97,43],"\u30a2\u30af\u30bb\u30b9":[109,94,91,8,18,60,21,42,14,74,5]," nice":73,"\u7d5e\u308a\u8fbc\u307f":[81,1],"\u3042\u308b\u3044":[36,90,81,110,30,5,71,108],"\u4eca\u5f8c":[32,14],alloc:[21,46,1,2,5],DCMAKE:64,"\u66f8\u5f0f":[63,1,3,59,60,4,5,66,56,89,69,29,70,72,93,31,95,96,97,32,99,33,87,35,38,39,77,102,104,71,109,46,114,80,30,50,18,19,83,21]," KEY":1,"\u81ea\u52d5":[25,1,84,110,108,89,42,14,74,68,33],"\u4f53\u8fd1":71,SJIS:23,"\u30da\u30fc\u30b8":[29,70,1,91,60,13,42,18,74],"\u578b\u540d":33,"\u7b97\u51fa":[70,7],"_TIME":88,Really:[70,108,110],"\u9078\u629e":[81,70,7,91],"\u7de9\u548c":7,"/repositories":91,":\\\"":31,"\u3002GRN":36,MESSAGE:[88,4],"\u4eac\u90fd":[37,85],"\u30c0\u30d6\u30eb":[14,110,108,33],"\u300cbill":85,"\u7d9a\u304d":31,gcc:[14,67],"\u306e\u3088\u3046":[70,110,108,98],COMMAND:1,"\"weight":8,"\u8abf\u3079":[30,71],"! ":[73,70,36,108,110],"\u7d9a\u3044":[37,80,70,56,87],"\u5bfe\u8a71":[1,21]," Geo":7,"\u5fc5\u305a":[70,90],"\u30ab\u30d0\u30fc":107,"% ":[91,74],jiro:25,"\u30c7\u30d5\u30e9\u30b0":14,"\u30ec\u30b9\u30dd\u30f3\u30b9\u30d8\u30c3\u30c0\u30fc":28," clean":107,"\u305d\u308c":[110,36,1,57,91,8,111,85,46,37,94,64,51,108,44,74],"\u30af\u30a8\u30ea\u30d1\u30bf\u30f3":109,"\u4fc2\u6570":36,"\u629c\u3051":14,"\u91cd\u307f":[29,70,110,37,43,96],"\u6570\u5b57":[37,89,75],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8":91,lib:94,"\u3092\u3064\u3051":[70,110],"\u6539\u884c":[14,59,60,42],"\u78ba\u7387":93,"\u3053\u3053\u3067":91,ll:[37,85],"\u5f0f\u5168":[108,110],"/apt":[92,9,91],"/BC":91,euc:[67,60],li:[37,85],"/api":28,"\u3068\u3068":[49,74],":clear":91,"\u8ab0\u304c":111,zip:[29,64,91,82,42],total:[77,89],"\u6b8b\u3057":70,"\u5de6\u4e0a":[30,0],"\u5de6\u4e0b":0,"[space":110,"-munin":[101,78,9,92,82,42,67],"\u9589\u3058\u308b":[14,0],"\u305f\u3076\u3093":67,"\u306f\u3069\u3061\u3089\u304b":[108,110],greater:36,"\u4f75\u305b":1," cache":42,auto:[93,91]," |":[109,101,70,108,91,37,9,78,92,40,5,45]," gpg":91,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[29,90,24,94,41,18,28,115],auth:[5,28],YYYY:[88,108]," start":73,billiard:[37,85],"\u8d8a\u3048":37,"\uff08Ruby":45,Documentation:45,"(string":72,"\u512a\u308c":81," Term":[39,57,33],"\u4e00\u6642\u7d50\u679c":42,"\u6765\u307e\u3057":111,"_point":[25,71],CXXFLAGS:[12,91],"\u306b\u304f\u308b":37,"\u5f15\u8a9e":1,Masaharu:42,"\u4e00\u3064":[63,56,3,59,85,4,87,66,69,7,90,72,8,31,95,97,32,99,33,35,38,39,77,102,104,71,44,46,114,80,81,30,50,19,83],xml:[18,2,42],edit:[29,0,24,91,72,48,108],"\u4f4e\u901f":79,OffGao:111," updated":[37,23,74],"\u66f4\u65b0":[87,29,70,36,1,90,91,25,8,81,73,31,56,42,14,52,74],"\u7121\u9650":[42,94],Say:108,MinGW:14,nfs:67," physical":77,"\u300chsiomaneki":111,MacPorts:[14,53,82,29],"\u70b9\u9593":[40,7,26],"\u6df7\u305c":[8,93],"/MM":108,"\u3064\u3044":111,"_create":[1,57,24,60,14,89,84,29,70,7,108,8,73,97,33,25,37,39,40,41,42,43,110,79,111,112],"/LC":[91,74],".js\u30d0\u30a4\u30f3\u30c7\u30a3\u30f3\u30b0":45,",\"link":8,"\u5c3a\u5ea6":81,"|suggest":93,"\"abandon":80,"\u751f\u6210":[35,91,85,52,68,74]," Aramaki":[14,94],"\u89e3\u6c7a":[14,77],"\u5217\u5f15":36,frequency:[27,93,75,51]," your":[74,45]," gnupg":91,"& b":108," Akio":94,"\u81ea\u4f53":110,"\u5f85\u3061\u53d7\u3051\u308b":21,out:89,"\u3050\u308b\u3093":[25,108,110],"\"sphere":71,"-match":[70,1,110,37,60,82,67],"\"mroonga":70,res:89,"';":60,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0":60,"/source":[74,78,91,92,49,9,12,101,67,53],"\u306b\u304f\u3044":81,"\u51fa\u6765\u308b":111," finished":88,"\u30ab\u30ec\u30fc":85,"\u30d5\u30a9\u30ed\u30fc\u30ea\u30b9\u30c8":111,"_default":28,"\u30dd\u30fc\u30bf\u30d3\u30ea\u30c6\u30a3":14,"\u65e2\u5b9a":42,"\u52a0\u7b97":[108,68],"\u306b\u3088\u308b":[29,7,1,84,91,8,81,42,14,44,96],">starttime":2,"-fd":14,"\u6570\u5024":[29,0,36,1,110,8,85,60,70,39,80,94,87,56,71,96,33],"/\u6708":111,This:[70,1,108,8,110,86,5,88,21],"\u904e\u7a0b":68," Site":[25,1,79,8,40,21],"\u73fe\u72b6":90,"\u542b\u3081":[70,110,91]," correct":[93,75]," concurrently":88,"\u4ed8\u5c5e":[18,5]," download":91,"/aba":[40,1,79],"8r":[67,60],"& (":108,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0":[14,67,107,82,74],PHP:42,"\u4ed5\u69d8":[29,90,8,93,94,5,42,18,11],Point:71,deprecated:90,"\u4e00\u90e8":[38,1,6,42],"_nsubrecs":68,"\"\uff08":27,"\"\uff09":[8,27,0,40],"_friends":25,"-localstatedir":[67,82],"\u30bb\u30b0\u30e1\u30f3\u30c8":[77,19],"/universe":9,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30c4\u30fc\u30eb":106," output":8,"\u7403\u9762":[7,71],"\u3064\u3051":[70,7],"3ki":94,"\u304a\u3059\u3059\u3081\u3057":[108,91,110],"\u8aa4\u5dee":[14,7,71],"\u30ec\u30f3\u30bf\u30eb\u30b5\u30fc\u30d0":81,"<max":60,"\u76ee\u4ee5\u964d":70,"\u5f35\u308b":[108,110],"_DEBUG":107,",\"location":[25,40],"\u8aac\u660e":[54,80,63,1,24,3,59,85,60,4,64,5,66,27,100,67,68,69,29,70,108,91,92,8,93,9,31,37,87,89,56,32,95,33,22,35,36,97,75,12,38,101,39,77,40,102,104,41,99,42,113,71,44,45,109,46,78,114,110,74,72,30,50,82,51,18,52,19,83,53]," Pangolin":[29,9,91,82,42],"\nload":[7,97]," Blogs":37,Daiki:[42,94,112],"\u30d9\u30af\u30bf":[42,0,94,59],"\"sea":27,"\u591a\u304f":[70,1,8,60,37,14,115]," mode":36,"\uff09\u3002":[37,111],"\uff08\u300c":37,"\u53d6\u308a\u8fbc\u307f":14,"(argument":108,grroonga:6,"\u8d77\u70b9":[80,87,70,56],TokenBigramIgnoreBlankSplitSymbolAlphaDigit:37,"\u5897\u5927":7,"\u78ba\u8a8d":[0,1,91,8,111,5,52,89,74],WORD:[42,70]," links":8,"\u5bb9\u91cf":[77,70],"\u7121\u52b9":[42,70,67,5,110],"\u8aad\u307f\u8fbc\u3093":21,mkdir:97,system:12,",[":[37,80,87],"\u6c38\u7d9a":33," documentation":52,"\u52d5\u5c0f":44,".groonga":[101,78,91,12,9,53,92,67,89,74],"\u7d44\u8fbc\u578b":[29,44,24],"-doc":42,"\u7d44\u307f\u8fbc\u307f":[29,7,97,24,48,60,41,89,108]," this":[8,1,5,28],"\nCtrl":21,man:0,"\u306f\u3058\u3081":[29,90,93,113,6,74],"\u7279\u5316":[108,74]," for":[7,86,23,42,88,44,74],"\u304b\u3061":[70,85],configure:[101,74,70,94,91,92,12,9,78,46,37,82,42,14,52,67,107,53]," patch":23,".textile":91,"\u30d5\u30a9\u30eb\u30c0\u30fc":64," service":75,"\u304b\u3069":[101,70,110,37,93,30,40,71]," mecab":[101,78,23],"var":[67,59,36,60,5],"\u756a\u76ee":[8,70,1,108,110],",..":[31,66,59,70],"\u8ffd\u8de1":[54,29,52],"\u64a4\u53bb":14,"\u8a9e\u610f":62,rst:10,number:[77,108],"\u500d\u7cbe":44,"\u59cb\u307e\u3063":6,"\u3092\u3054":107,"\u9ad8\u3044\u9806":1,"\u53d6\u308a\u5f97\u308b":44,"\u89e3\u6d88":[0,19],"_UPDATE":[70,110],Bool:[84,8,30,71,44,110]," started":[88,70,108,110],"-log":[60,82,88,14,67,89],"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8":[94,60],rakutan:43,"\u51fa\u73fe":[81,93,62]," SiteDomain":79,"\u8aad\u307f\u8fbc\u3080":0,"\u304b\u3051":69,sed:14,"|NONE":70,".grn":97,bind:14,"_OFFLINE":42,"\u304b\u305a":42,Gemfile:42,"\u82e6\u624b":81,"\u30ab\u30bf\u30ab\u30ca":[27,93],"\n\n":[63,1,3,59,60,4,5,87,28,69,31,95,56,32,33,38,39,77,102,104,46,80,111,50,19],"\u5229\u70b9":81,",' ":[8,44],"\u898b\u3064\u304b\u3063":[70,6],"false":[110,63,84,91,3,94,38,102,39,8,4,95,32,108,69,44,50,33],"\uff01\uff09":[27,75],"\u7d5e\u308a\u8fbc\u3080":6,"\u81f3\u308b":8,"\u56fd\u969b\u5316":[29,52,106,74],"\u30c8\u30c3\u30d7\u30da\u30fc\u30b8":91,"\nCRIT":[3,4],"\u4fee\u6b63\u4e2d":75,"\u30de\u30a4\u30af\u30ed":[8,111,44,108],PATH:[89,28],tsv:[18,2],Soccer:25,"\u3068\u307f":18,"\u547c\u3076":[42,107,98],tvsec:46,"\u975e\u308f":85,Baseball:25,"\n ":[36,5,28],"\u6f14\u7b97":[42,67,94,98],"\u30a2\u30f3\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":42,After:8," lexicon":89,"\u914d\u4e0b":[18,91],"/groonga":[101,74,78,67,1,91,92,49,9,60,53,12,94,66,5,42,14,45,21],".msgpack":2,"_const":36,sh:45,"\u4e88\u7d04":[39,33],"^ ":108," Install":64,BIT:89,"\u4eee\u60f3":[40,79,33],"5f":89,libmemcached:107," Gone":25,brazil:79,"\u9001\u308a\u65b9":[54,29,21,52,67,74],"\u901f\u3084\u304b":90,"\u3069\u3061\u3089":[54,1,57,43,6,28],"=NUMBER":[67,82]," suggest":[93,51],"\u8aad\u307f\u8fbc\u307f":[14,1]," six":[88,1],"\u672a\u958b\u653e":94," sid":[14,77]," I":74,Without:5," API":[49,29,52,23,106],"\u3089\u308c":[70,36,1,81,59,94,66,40,42,14,69,33],"**":4,"\u3064\u3076\u3084\u304d":73,"\uff09\u3001":85,"\u306a\u3082\u306e":91,"*'":70,"\u4e0d\u8db3":[101,78,9,92,64,82,53]," bug":[42,23],"*\"":[70,112],"_build":107,UNSPLIT:36," N":81,"\u6e2c\u5730\u7cfb":44,latin1:42," RDBMS":81,url:97,"\u5168\u6587":[25,70,85,1,108,29,8,81,26,60,62,37,40,65,98,42,43,67,111,96,110],"\u30c7\u30d5\u30a9\u30eb\u30c8\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc":[42,75],"_is":14,hh:[88,108],"\u5408\u81f4":1,"\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3":[29,70,79,25,111,14,44,96],"(arugment":108,"\u6982\u5ff5":90,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8":[14,0,94,90,42],"\u540c\u3058\u5024":[1,5],"\u901f\u304f":[25,67],"\nwarning":[3,4],Masahiro:94,"/ ":[92,9,5,28,94],":tasukuchan":111,"\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf":91,".\n":[97,89,5,28,91],"_id":[70,1,108,91,40,42,14,68],"-P":109,dist:91,"_database":[42,5,28],currently:5,"\u3084\u308a":54,"\u5fc5\u9808":[70,7,1,64,5,67,28],"\u306f\u3069\u3061\u3089":28,"\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":107,"\u30d7\u30ed\u30bb\u30b9ID":21,"\u8d8a\u3048\u308b":37," Video":25," favorite":74,"\u30e2\u30b8\u30e5\u30fc\u30eb":[29,90,81,94,5,28],"[httpd":42,"'localhost":[109,60]," \u304b":53," SuffixSearchTerms":[108,110],"\u3002\u2193":60,"\u5ea6\u3068":14,"\u53cb\u4eba":25,ZeroMQ:67,"=i":91," project":108,"\u5b66\u3093":111,"=R":42,"\u4e0d\u7b49\u4fa1":[108,110],"with":[37,14,67,91],"(WGS":40," is":[70,1,2,8,110,21,88,42,108,28,5],"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":89," doesn":5,"\u30b7\u30a7\u30eb":[67,89],NAME:[1,21]," GeoIndex":25,IPA:10,"\u4e0d\u6b63\u78ba":46,"=C":64,"\u4e00\u500b":36,wget:67,"&& ":[37,84,108]," id":77,"\u30ea\u30ea\u30fc\u30b9":[29,0,90,91,101,94,112,73,103,42,14,52],"\u30d3\u30eb\u30c9\u30b7\u30b9\u30c6\u30e0":67,"\u65e5\u4ed8":[81,7,91],"_types":28,"\u6295\u7a3f":111,"\u4ed8\u3051\u308b":[76,1]," Time":[8,37,89,111],"!condition":108,means:88,"1\u3064":[34,25,70,108,93,54,89,111,14,43,6,28,110],"\u7279\u5225":[27,67,110],"\u5c11\u306a\u3044":[73,70,110,108,98],ko:23,"\u30c0\u30f3\u30d7":[42,94],TokenDelimitNull:112,"=$":[67,91,74],",\n{":[57,79,75,93,110,51,27,43,108,84],"\u7e70\u308a\u8fd4\u3059":94,"\u30af\u30a8\u30ea\u30ad\u30e3\u30c3\u30b7\u30e5":[70,104],"= ":[40,84,108],"\"ellip":71,"\u306e\u307f\u3057\u304b":6,db1:28,"_GITHUB":[91,74],"_CURSOR":94,db2:28,"\u7e70\u308a\u8fd4\u3057":[108,89,74],">cache":2,GPS:81,WGS:[25,79,8,30,40,21,14,71,44],"\u5f97\u308b":5,Because:5,"\u4e0d\u8981":81,"\u307b\u3068\u3093\u3069":101," CI\u4e00\u822c":45," releases":42,New:7,"_search":[14,93,42],"\u3070\u3044\u3051":[70,110,45,42,67,108]," released":[23,91],",\n[":97,"\u79d2\u3088\u308a":112,",\n]":[37,40,57],"_CTX":14,queries:89,"\u3050\u308b":[110,108,98],"\u30fb\u81ea\u5df1\u7d39":111," MessagePack":2,"\u300d\u3001":[25,111],view:[29,24,60,102,41,33],"\u5236\u5fa1":[5,108]," eggs":43,RETURN:88,"=fedora":91," markup":49,"\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea":94,"\u4ee3\u5165":[94,40,36,108,110],travis:45,"\u8fd4\u4fe1\u5143":111,latin:[67,60],"\u63a5\u7d9a\u5148":109,"\u884c\u6570":14,"\u306a\u306a\u3069":[108,110],"2\u3064\u3081":[110,28],"|ga":70," Properties":88," the":[108,8,110,5,88,42,74],"\u57f7\u7b46":[43,26,62],"\u975e\u5e38":[42,28,33],oneiric:[9,91]," used":88," Request":74,"\u985e\u4f3c":[36,108,75,93,98,42],"\u51fa\u529b":[0,1,2,24,3,59,60,4,42,66,67,89,29,70,90,93,95,96,56,10,74,87,97,46,77,14,44,107,80,81,94,111,18,52],".gz":[101,78,91,12,9,53,92,67,74],"\u611f\u3058":111,"\u30b2\u30c3\u30c8":13,"\u8ffd\u8a18":[42,91],"\u7d9a\u3051":89,min:[109,42,89],"\u30af\u30a8\u30ea\u30c6\u30ad\u30b9\u30c8":70,"_LEADING":70,EXIT:86,"\"\u30df\u30ea":108,logaling:45," gqtp":81,Minute:88," quit":60,ken:25,"\u3084\u304c":90,"=/":[67,60,107,91],"\u7dad\u6301":[81,28],"\u304c\u304a\u304c":111,"/var":[67,60,5],"\u6d88\u8cbb":73,"\u4e0a\u4f4d":37,"\u8fd4\u308a":[40,70],"\u4f4d\u7f6e":[25,7,1,90,24,29,81,26,39,40,111,14,96],"\u5168\u4ef6":[108,110],bash:67,"\u4e43\u6bc5":94,"\u73fe\u308c\u308b":37,"\u6b8a\u547d":89,job:89," only":[8,5],"\u3053\u308c\u3089":[1,2,67,6,68,101,70,7,108,9,37,28,98,12,78,110,79,111,92,51,18,52],key:[1,57,59,21,27,87,89,84,70,7,108,8,93,31,56,33,25,97,75,40,50,43,110,79,80,111,51],"\u300d\u3002":98,users:111," Languages":74,"\uff12\u3064":[40,79],"2\u4ef6":111,TokenBigram:[70,1,108,75,37,85,110,33]," map":88,plugin:14,admin:94,"_WEIGHT":39,"/status":[109,21,2,28,5],":ss":[88,108],equal:36," max":[35,104],"\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4":[14,94,108,110],"\"ab":6,"\u6728\u578b":33,"/afr":[40,1,79],"\u88dc\u6b63":[29,93,6,113,75],"/local":[67,5,91]," groo":70,"\u653e\u68c4":[31,80,56,87],":\u5206":111,"\u304a\u3089":91,comment:111," distance":7,"\u4eca\u56de":[42,1,108],"\"YYYY":108,"\u304a\u304d\u307e\u3057\u3087":8," \"@":111,"\u4f5c\u6210":[0,1,57,60,42,27,68,84,29,70,7,108,91,8,93,73,89,32,10,96,33,25,37,39,103,14,43,44,110,79,111,94,51,52],"\u6295\u7a3f\u5834\u6240":111,"\u533a\u5225":[70,44,84],"/senna":97,DDL:37,Hex:25,"\u6b63\u3057\u304f":[27,7,42]," \"K":25,"\u6df7\u5728":18,"_add":[29,102,60,41,24],",\n#":[25,70,1,108,8,111,40,21,110]," IWAI":42,"\u30af\u30ea\u30a2":[14,42]," an":5,"\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3":[67,64],table:[63,56,57,24,59,60,21,27,1,42,89,84,29,70,7,90,8,93,31,95,97,33,87,25,36,75,37,38,73,39,40,102,41,14,43,108,110,79,80,111,94,66,50,51],"&! ":108,"\u6587\u66f8":[1,57,8,81,85,73,98,6,108],rpm:[42,78,91]," backup":97,"/Modules":5,"/hostname":[60,89]," \"e":[27,93],"\u30ab\u30b9\u30bf\u30e0":5," sign":91,"\u30b5\u30d6\u30bb\u30c3\u30c8":44,"\u91cd\u307f\u4ed8\u3051":[37,70],args:60,"\u3002Eclipse":74,"_itoh":14,"\u30b9\u30ab\u30e9":59,"\u533a\u5207":33," argument":108,"\u5c0f\u6570\u70b9":8,"\u6e2c\u5b9a":89,"\u57fa\u6e96":[8,81,1,91],json:[63,1,2,3,59,4,66,87,89,69,70,31,95,56,32,33,38,39,77,102,104,46,80,50,18,19],"\u30d9\u30fc\u30b9\u30d1\u30b9":5,TokenBigramIgnoreBlankSplitSymbolAlpha:37," \"s":[93,75],"\u547d\u540d":42," Entry":[69,39,63,56,80,59,38,31,102,95,87,19,50,33],"]\n":[63,1,57,3,60,4,21,66,27,69,70,7,108,8,93,73,95,32,33,25,75,38,39,77,40,102,104,43,84,110,79,111,50,51,19],Geo:7,"\u30a8\u30e9\u30fc\u30ec\u30dd\u30fc\u30c8":42,"\u3002SET":89,"\u521d\u671f\u5024":109,username:25,"\u65e5\u672c":[108,30,40,27,71,44,110],"\u5927\u6587\u5b57":1,HashTags:111,"_gqpt":89,"_level":[29,24,3,60,4,41,32,88],"_PRAGMA":70,"\u5185\u90e8":[8,42,46,91],"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":85,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":14," fast":[70,108,110],"\u306a\u306b\u5bfe\u3057":[108,110],"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9":0,"\u3068\u3064\u3044":40,"\u4fdd\u6301":62,"\u524d\u8ff0":37,"\u7a2e\u985e":[29,70,36,1,108,91,75,8,93,51,60,96,37,21,27,14,68,110],"\u540c\u671f":[91,89],"\u30b5\u30a4\u30c8":[8,25,91,98],"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3":[94,67,91],"\u30c7\u30a3\u30b9\u30af":0,"\u5024\u578b":8,"\u4ee3\u308a":[7,110]," favorited":111,"-d":[60,21],"\u672a\u5b9a":[8,33],"{\"":[77,89],"\u7f6e\u63db":[70,57],"\u52a0\u3048\u308b":[39,14,33]," \"/":66,"\u77e5\u308a":91," System":[54,44]," tar":[92,78,9,91,101],value:[70,110,5,66,33,108]," yes":109,"\u3068\u3057\u307e\u3057\u3087":43,suffix:36," favorites":111,"\u793a\u3055":[66,59],cutter:[52,91],ill:85,"\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc":[14,70,64,42],"\n# ":[46,1,21],"\u30c7\u30d5\u30a9\u30eb\u30c8":[0,1,2,85,60,5,14,67,28,31,70,7,90,8,93,73,95,89,32,33,36,37,42,71,44,108,109,110,79,94,21]," Good":73,"\u6570\u70b9":44,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":[60,1],"\u58ca\u3059":42,tar:[101,78,91,12,9,92,67,53],"\u691c\u51fa":[0,94,42,14,67,107],"/F":91,Sending:74,"\u578b\u3068":79,"\u3072\u308d\u3086\u304d":84,vm:42,"\u3002\n":[0,59,85,60,66,89,90,91,32,25,36,76,38,46,77,104,14,43,71,44,111,94,112]," record":[8,7,1,21],"\u9ad8\u5ea6":[70,110,98]," X":[29,53,94,82,42],"-debug":94,"\u5f71\u97ff":91,"\u30bf\u30a4\u30df\u30f3\u30b0":[42,1],You:8,avg:109," original":[84,97],"\u306e\u304b":[111,85],"\u8fd4\u4fe1":111," migrated":[70,108,110],"\u8a9e\u5f59\u8868":[1,33],"\u5ea7\u6a19\u5024":[14,108],"{LANGUAGE":74,"\u8a71\u3057":52,"\u3002\"":[37,111,21,75],"\u3002#":[14,94],"\u578b\u304b":44,"| c":108," HashTags":111,"/d":[5,28],"/c":49,"\u3002)":89," replied":111,"\uff08longest":14,"\u66ff\u3048":[37,29,1,96,91],"\u6ce8\u610f":[70,1,84,8,37,89,14,28,108],"\u300cbilliard":85,"/x":28,"-learner":[94,6,86],"\u8aa4\u5b57":[14,94,42],tmp:[1,91,93,60,21,66,28],". ":[1,2,3,4,5,49,6,7,8,9,10,11,12,13,15,16,30,18,19,20,21,22,23,24,25,26,27,28,101,31,32,33,34,35,36,37,38,39,40,41,43,44,45,46,48,92,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,81,82,83,84,85,88,89,90,91,93,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,86,113,114,115],"\u9805\u76ee":[46,0,56,3,70,62,31,77,40,4,95,50,80,32,87,28,69],"\u30ad\u30fc\u30ef\u30fc\u30c9":[29,0,1,110,37,81,85,70,112,65,111,6],"| _":40,"${":[70,108],rake:91,http:[109,25,89,1,91,79,8,60,40,5,97,18,74,28,21],"/\n":[94,91,74],api:28,"\u671f\u5f85":81,"\u3002N":37,"]\"":[111,40],"\u3002TokenDelimit":51,"@github":91,"\"roonga":6,"[apt":42,v1:36,"\u306b\u3088\u308a":[34,70,7,1,84,91,77,8,81,37,40,5,42,44,28,21],"_ito":14,"\u629c\u304d\u51fa\u3059":81,pdf:[10,52],"\u304a\u304b\u3057\u304f":94,"\u3002_":[1,68],EOF:60,"\u300d\u300c":111," local":97," DB":[18,1,2,21]," body":[56,57,37,38,39,80,87],"\u6e80\u305f":[111,40,36],"\uff01\"":111,off:5,center:71,"/(":91,"/'":9,com:[76,79],":\"":1,"/$":74,"\u7a7a\u6587":[44,110],"([":35,"\u66f8\u304d\u8fbc\u3080":89,"\u304a\u3063\u3055\u3093":111,failures:91,"/;":5,"\u4e00\u81f4\u7528":84,uzulla:14,"_POSITION":[73,70,1,57,37,111,110,39,43,108],"\uff01:":67,lcov:107," # ":5,"\"ellipsoid":71,"\u8868\u793a":[0,1,2,59,60,21,14,66,67,89,29,70,90,91,8,96,25,37,46,77,40,42,79,81,94],"-platform":[67,82],"\ndo":89,Flower:8,lzo:14,"\nrequest":88,"\u8a9e\u5f59":[34,29,1,85,62,96,33],"\u3042\u304d":84,"\u3001(":[44,89],"x\u30df\u30ea":[44,108],"\u521d\u671f\u5316":42," sleepy":73,"_HOST":89,select:[0,1,57,24,85,60,21,14,88,84,29,70,7,90,8,73,98,25,37,40,41,42,43,108,110,79,111,94,112],"):":91,Nonexistent:70,where:8,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb":91,"\u3002Point":[30,71],abbreviate:31," \u6642":111,"\u30d5\u30e9\u30b0":[0,63,1,84,3,62,4,14,69,70,108,8,95,32,33,38,39,77,102,42,110,50],"\u5236\u7d04":34," Fumiyasu":14,"-t":60,"\u3042\u3063":[25,70,90,89,93,31,28,91,68,74],"-ruby":[42,91]," ]":5,"\u3002 ":[1,84,26,5,42,27,67,89,101,70,7,108,28,98,74,75,12,21,14,71,44,110,81,94,112,30,51,115,53],"\u3042\u3068":[91,74],"\u3055\u3093":[94,112,42,14,6,28,74],"\u3086\u304d":84,"\u306b\u3059":37,script:[35,70,114,72,31,30,50,71,89],add:[42,87],"\u30a8\u30f3\u30b8\u30f3\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":60,"\u9ad8\u7cbe":81,"\u30c6\u30b9\u30c8\u30c4\u30fc\u30eb":89," me":20,"\u660e\u793a\u7684":[7,2],qwik:97," its":88,"\u30e6\u30fc\u30b6":[70,36,1,57,91,75,51,39,42,27,44,6,89,33],match:[29,70,94,1,57,37,111,85,73,95,88,43,67,96,110],"\u5909\u308f\u308a":[77,40,85],tests:91,ctrl:21,pkgs:78,RedHat:14," function":23,dest:[109,60],"\u6790\u7cfb":108,"\u756a\u53f7":[109,70,60,28,68,89,21],"\u691c\u7d22":[0,1,57,26,60,62,65,42,27,67,28,84,29,70,108,91,8,93,73,95,68,98,11,96,33,25,36,75,37,85,40,14,43,44,111,110,79,81,94,112,51]," Elfring":42,"\u306f\u3058\u307e\u308a":90," Titles":[108,110],".jp":[70,23,91,13,97],"\u30cf\u30c3\u30b7\u30e5\u30c6\u30fc\u30d6\u30eb":[14,108],"{\n":[36,5,28],Debug:88,"/news":91," tracker":54,you:74,"_DATE":91,"\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5":37,"))":[70,108],Poedit:74,"\u4e00\u65b9":[1,110,8,81,37,108],"\"MySQL":6," configure":[37,42,108],CentOS:[29,78,91,94,82,42,14,67],"\u5947\u6570":108,"\u4f4f\u3093":111,"\u3002Time":111,"\u672c\u8cea":89," specify":8,Warning:88,"\u6587\u5b57\u6570":108,"\u5ea6\u5206":44,"\u3068\u3044\u3063":[70,7,108,40,98,42,28,110],"_threshold":[70,75,93,94,51,27,14,67],"\u4e0b\u8a18":[46,77,36,90],"\u307e\u305f\u3050":7,"\u7570\u5e38":[77,89],"\u306a\u304b\u3063":[70,63,1,90,3,60,38,108,102,39,37,4,95,104,50,32,42,69,89,33],"(Windows":89,".net":[25,1,91,79,8,13,40,21],"\uff08TODO":108,"\u4e0d\u6b63":[14,0,94,107],sequence:[27,93,75,66,51]," hw":53,"((x":44,"\u9ad8\u3044":[77,93,1,5,81],"-host":89,Quiz:25,"\u88dc\u8db3":5," candidate2":93,"\u8ca0\u8377":[94,5],") ":[70,36,108,91,44,89,33],Tweets:73,"\u5727\u7e2e":[14,67,115,28,42],"'config":60,"\u610f\u56f3":42,"\u30b3\u30e1\u30f3\u30c8":[111,94,60,89],"_CALL":36,"_sortby":[70,95,79],"\u767a\u884c":21," origin":74,"_PAT":[25,70,1,57,37,111,110,97,84,66,43,108,33]," following":88,"\u304f\u3093":111,IN:23,"%\\":64,"\u96e2\u308c":40,"\u30bd\u30fc\u30b9\u30d5\u30a1\u30a4\u30eb":74,"\u304f\u308c\u308b":[49,81,74],"\"gronga":6,"\u30dc\u30bf\u30f3":74," hh":[88,108]," mail":89,"\u3088\u30fc":111,"\u3093\u304c":[108,110],"\u8907\u6570":[0,1,59,85,62,5,42,66,28,29,70,8,93,89,96,33,25,36,37,39,14,43,110,79,81,94,111,18,115],"#{L":88,",\"domain":79,"\u53d6\u308a\u9664\u304d":36," Bool":[8,84],"\u30d3\u30c3\u30c8\u30b7\u30d5\u30c8":108,"\u3002-":[18,67,111],"\u30d0\u30b0":14,"\u3057\u3064\u3064":107,"\u3042\u308c":[37,73,91,89,108],"\u4e0a\u9650":[8,29,76,34],"_DB":[14,42],"-h":60,"\u3042\u308a":[54,113,101,1,2,85,13,64,5,66,27,67,6,28,57,73,70,7,90,89,92,49,93,9,31,68,98,32,99,33,34,74,36,75,37,39,40,14,43,44,107,108,46,78,91,81,110,8,82,111,18,52,53,83,21],"\u3042\u308b":[80,63,1,84,35,3,59,26,4,64,21,42,27,100,67,28,69,70,7,90,91,72,8,93,31,95,89,56,98,32,99,33,87,25,36,97,75,37,38,39,77,40,102,104,14,43,71,44,108,109,46,114,110,74,81,94,66,30,50,111,18,19,83],"\u7acb\u3061\u4e0a\u304c\u3063":89,host:89," \u6c11":85,"\u5927\u306a\u308a":[108,110],offset:[93,70,95,1,79],"\u304b\u3051\u308b":5,"\u306e\u3044\u305a\u308c\u304b":[30,71],"_query":[75,93,66,51,27,42],"\u6319\u52d5":[37,29,85,60,94],Microsoft:64,"\u9055\u3063":27,".hash":111,hana:25,"\u30c0\u30e1\u30fc\u30b8":37,"/sysctl":53,"\u6f0f\u308c":[42,98,91,81],"\u306e\u3069\u308c":27,"\u5358\u72ec":89,"\u3002\u3044\u307e":42,"\u65e2\u5b58":[1,91,8,81,21,32,89],"\u5206z":44,"\u30b7\u30fc\u30b1\u30f3\u30b9":[27,75,51],UP:2,"\u3055\u304d":8,"_queries":[21,46,1,2,5],"\u6700\u5927\u5024":42,"|KEY":[70,1,57,37,111,110,73,84,66,43,108,33],tomo:25,".html":[60,91,74],"\u9055\u3044":[101,70,7,1,110,8,28],"\u9055\u3046":94,SATOH:14,ShortText:[1,57,59,60,21,27,66,84,70,108,8,93,73,97,33,25,75,37,39,40,14,43,44,110,79,111,94,51],"\u610f\u5473":[70,36,1,108,93,60,40,27,67,89,110],"_NUMBER":21,"!!":[25,111],contain:36,"\u3057\u304b\u3082":115,"!\"":[25,70,1,108,8,111,110,73,5,42,28,21],coverage:107,SIGINT:14,"[fedora":42,"\u5b9f\u9a13":[14,115,42]," value":[8,70],">\n<":2," Shops":85," Common":108,"\u4e26\u3073":[85,108,79],"\u30ec\u30fc\u30bf":42,"<log":60,"\u53d7\u3051\u53d6\u3063":81," haystack":36,"\u6271\u308f":[70,110,8,26,37,42,89],"\u3072\u308d\u3042\u304d":84,Grease:8,"\u3002HOST":21,"\u3068\u3044\u3046":[1,2,85,5,42,27,67,28,57,101,70,7,90,91,8,93,89,98,10,74,25,75,37,76,77,40,14,44,107,108,110,79,81,111,18,21],"-node":78,friends:25,debian:42,"_remove":[29,63,24,60,38,41,42,14],"\u30ed\u30b4":42,"\u95b2\u89a7":21,">default":2,"\u5c55\u958b":[14,70,67,64,91]," event":[27,93,75,51],"\u6b63\u78ba":[8,46,1],"\u901f\u5ea6":[14,89,25]," query":[88,93],"\u30a4\u30f3\u30c6\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3":45,"\u89a7\u4e0b":107,"\u7279\u6b8a":[18,1,89],Specify:5,"\u30ec\u30b9\u30dd\u30f3\u30b9":[14,28,42],"\n\uff08":94,"\u300cpopular":70,"-pid":[14,60]," Bigram":[37,111],"\u304c\u3068\u3046":111,"-db":42," time":[8,88,89],"\u30df\u30ea\u79d2":[40,44],"/vdw":[40,1,79],"\u30ea\u30bd\u30fc\u30b9":73,".travis":45,"_term":23,"/shutdown":[5,28],gronga:6,"\u3068\u3069":113,"\u3068\u306e":108,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":[14,94]," +":[70,110,5,18,44,108],gronnga:6,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb":[29,55,1,79,25,8,113,40,42,14,96],"'\"":42,".\" ":21,"\u3068\u3066":[81,70,28],"\u6700\u5c0f\u9650":5,truncation:14,gtar:12,enginen:27," Takashi":14,"\u74b0\u5883":[78,91,81,64,107,82,42,14,52,67,89],"\u4e00\u756a":[70,67,28],"\u30b9\u30c8\u30c3\u30d7\u30ef\u30fc\u30c9":[70,62]," wheezy":14,"\u3068\u3053\u306e":27,"\u3068\u3057":[109,25,7,108,75,8,60,73,36,51,27,43,44,6,89]," five":1,"\u4ecb\u6587":111,"\"popular":70,"\u3068\u3048":[57,81,85,40,90,67,33],"\u3002iptables":21,limit:[25,70,1,79,93,95,14,88],"\u4e00\u9577":81,"\u6c7a\u5b9a":70,"\u3068\u304d":[0,1,59,85,60,21,42,27,67,6,28,101,70,7,108,8,93,9,98,25,36,75,76,14,44,78,111,110,81,94,92,51],blogroonga:[52,91],"-disable":[14,94],"!\\":108," Words":108,epel:[42,78],"\u611f\u8b1d":[14,0,94,112,42],bigram:[66,85,33],ivh:[101,78],"\u518d\u691c":98,"\u4e2d\u91ce":111,"\u30b7\u30d5\u30c8":108,"\u7a4d\u7528":70,"\u69d8\u3005":[40,36,52,107],"-config":[0,94,60,42,14,67],saer:[93,75],"\u4f7f\u3044\u5206\u3051":[37,85],"{ ":28,"8bit":44,"\u79d2\u5f62":44," suggestion":86," flags":39,"\"se":27,"_system":14,JSONP:14," rinse":91,"%post":42," primary":8,DESCTIPION:86,"\u305f\u3060\u3057":[0,108,85,60,18,14,68,110],"\u7570\u306a\u308b":[29,8,60,37,40,65,89],"\u7570\u306a\u308a":[70,110],"\"s":27,"/message":91,"/default":42,"\u6291\u5236":42," VALUE":1," turn":5,"\u3068\u308a":[18,70,107]," Narwhal":[14,9,82,29],"_COLUMN":[70,94,110],book:108,"\u6574\u5408":0,Pikonyan:25,"\u6574\u5217":[81,1],"\u3068\u3082":[70,7,110,111,40,89,108],HttpRewriteModule:5,"-analyzer":14," developer":111,"'abc":33,"\u591a\u69d8":81,Zenigata:25," Kawaji":42," tsv":2,"\u8ab2\u984c":[54,29,52],Oneiric:[14,9,82,29],bottom:[14,30],".location":111,"/sources":[92,9]," system":[70,108,110],"\u307b\u307c":43,April:91,"\u65b0\u3057\u3044":[1,81,60,42,14,52,6,74]," Prefix":108," MODE":23,"\u4e2d\u9593":[36,85],Context:5,"\u65b0\u3057\u304f":[73,70,1,90,98],"\u307b\u3069":[8,60,1,93]," $":91,"\u3002drilldown":[70,79],"\u90fd\u6c11":[37,85],"\u672a\u5b9f\u88c5":87,RPMforge:78," available":23,"\u30e1\u30e2\u30ea":[101,78,94,9,92,64,82,42,53],"\u30c7\u30fc\u30e2\u30f3":[42,0,60,5,21],"\u3002mroonga":81,space:110,Site:[8,1,21,79],"\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":[60,1],"\u548c\u6f14":108,Repoforge:[42,78],"\u5909\u3048\u308b":37,write:[42,70],status:[29,0,1,24,94,60,46,5,41,42,89,21],"|ro":70,"\u5909\u66f4\u70b9":[52,91],"\u307b\u304b":[8,81],"\u2026\uff09":75,"\u306f\u307e\u3060":[28,115]," advanced":23,rep:89,"\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4":111},objtypes:{"0":"std:option"},titles:["\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","4.1. \u57fa\u672c\u7684\u306a\u64cd\u4f5c","8.2. \u51fa\u529b","8.4.13. log_level","8.4.14. log_put","8.1.4. groonga-httpd","5.1. \u306f\u3058\u3081\u306b","8.9.2. geo_distance","4.3. \u3044\u308d\u3044\u308d\u306a\u30c7\u30fc\u30bf\u306e\u4fdd\u5b58","2.4. Ubuntu","13.2.2. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u4f5c\u6210","9. \u4ed5\u69d8","2.7. Oracle Solaris","3. \u30b3\u30df\u30e5\u30cb\u30c6\u30a3","1.2.9\u30ea\u30ea\u30fc\u30b9 - 2011/12/29","8.12. API","7. \u30b5\u30fc\u30d0\u30fc","Cast","8.1.5. groonga HTTP\u30b5\u30fc\u30d0\u30fc","8.4.9. defrag","8.6. Tokenizers","4.2. \u30ea\u30e2\u30fc\u30c8\u30a2\u30af\u30bb\u30b9","8.1. \u5b9f\u884c\u30d5\u30a1\u30a4\u30eb","News in Senna period","8. \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","6. \u4f4d\u7f6e\u60c5\u5831\u691c\u7d22","5.3. \u88dc\u5b8c","7.2.1. \u6bd4\u8f03","groonga \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8","8.9.4. geo_in_rectangle","8.4.12. load","8.4.15. log_reopen","8.4.21. table_create","10. \u5236\u9650\u4e8b\u9805","8.9.6. rand","13.2.3. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","11.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","8.4.7. column_remove","8.4.5. column_create","4.4. \u3055\u307e\u3056\u307e\u306a\u691c\u7d22\u6761\u4ef6\u306e\u6307\u5b9a","8.4. \u30b3\u30de\u30f3\u30c9","\u304a\u77e5\u3089\u305b","4.7. match_columns\u30d1\u30e9\u30e1\u30fc\u30bf","8.5. \u30c7\u30fc\u30bf\u578b","12.1. Travis CI","8.4.19. status","grn_expr","8.9. \u7d44\u307f\u8fbc\u307f\u95a2\u6570\u4e00\u89a7","13.3.1. C API","8.4.10. delete","5.5. \u63d0\u6848","13. groonga\u3078\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","2.2. Mac OS X","13.1. \u30d0\u30b0\u30ec\u30dd\u30fc\u30c8\u306e\u9001\u308a\u65b9","5.2. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","set","4.11. \u30af\u30a8\u30ea\u62e1\u5f35","7.1. GQTP","8.4.6. column_list","8.1.3. groonga\u30b3\u30de\u30f3\u30c9","7.2.3. groonga-httpd","4.9. \u5168\u6587\u691c\u7d22\u306e\u8a9e\u5f59\u8868\u306b\u5bfe\u3059\u308b\u8ffd\u52a0\u60c5\u5831","8.4.23. table_remove","2.1. Windows","11. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","8.4.22. table_list","2.8. \u305d\u306e\u4ed6","8.7. \u7591\u4f3c\u30ab\u30e9\u30e0 (pseudo_column)","8.4.4. clearlock","8.4.17. select","8.9.3. geo_in_circle","8.9.1. edit_distance","8.10. \u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u69cb\u7bc9","13.3.2. \u56fd\u969b\u5316","5.4. \u88dc\u6b63","13.2.1. groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","8.4.3. check","2.5. CentOS","4.5. \u30c9\u30ea\u30eb\u30c0\u30a6\u30f3","get","1. groonga\u306e\u7279\u5fb4","2. \u30a4\u30f3\u30b9\u30c8\u30fc\u30eb","8.4.18. shutdown","4.8. \u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u306b\u3088\u308b\u524d\u65b9\u4e00\u81f4\u691c\u7d22","9.1. \u691c\u7d22","8.1.6. groonga-suggest-create-dataset","add","8.11. Log","8.1.2. grntest","8.4.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","13.2.5. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","2.3. Debian GNU/Linux","8.4.20. suggest","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","8.4.8. define_selector","4. \u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb","8.4.11. dump","8.8. grn_expr","8.4.16. quit","12. \u958b\u767a","2.6. Fedora","8.4.24. view_add","13.2. groonga\u958b\u767a\u8005\u5411\u3051\u60c5\u5831","8.4.2. cache_limit","7.2.2. groonga","13.3. \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u95a2\u9023\u306e\u30b3\u30f3\u30c8\u30ea\u30d3\u30e5\u30fc\u30c8\u65b9\u6cd5","13.2.6. \u30c6\u30b9\u30c8\u65b9\u6cd5","8.8.2. \u30b9\u30af\u30ea\u30d7\u30c8\u69cb\u6587","8.1.1. grnslap","8.8.1. \u30af\u30a8\u30ea\u69cb\u6587","4.10. \u30de\u30a4\u30af\u30ed\u30d6\u30ed\u30b0\u691c\u7d22\u30b7\u30b9\u30c6\u30e0\u306e\u4f5c\u6210","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","5. \u30b5\u30b8\u30a7\u30b9\u30c8","8.9.5. now","7.2. HTTP"],objnames:{"0":["std","option","option"]},filenames:["news/0.x","tutorial/introduction","reference/output","reference/commands/log_level","reference/commands/log_put","reference/executables/groonga-httpd","suggest/introduction","reference/functions/geo_distance","tutorial/data","install/ubuntu","contribution/development/document","spec","install/solaris","community","news/1.2.x","reference/api","server","reference/cast","reference/executables/groonga-server-http","reference/commands/defrag","reference/tokenizers","tutorial/network","reference/executables","news/senna","reference","tutorial/index","geolocation_search","suggest/completion","server/http/comparison","index","reference/functions/geo_in_rectangle","reference/commands/load","reference/commands/log_reopen","reference/commands/table_create","limitations","reference/functions/rand","contribution/development/query","troubleshooting/different_results_with_the_same_keyword","reference/commands/column_remove","reference/commands/column_create","tutorial/search","reference/commands","news","tutorial/match_columns","reference/type","development/travis-ci","reference/commands/status","reference/api/grn_expr","reference/functions","contribution/documentation/c-api","reference/commands/delete","suggest/suggestion","contribution","install/mac_os_x","contribution/report","suggest/tutorial","reference/commands_not_implemented/set","tutorial/query_expansion","server/gqtp","reference/commands/column_list","reference/executables/groonga","server/http/groonga-httpd","tutorial/lexicon","reference/commands/table_remove","install/windows","troubleshooting","reference/commands/table_list","install/others","reference/pseudo_column","reference/commands/clearlock","reference/commands/select","reference/functions/geo_in_circle","reference/functions/edit_distance","reference/indexing","contribution/documentation/i18n","suggest/correction","contribution/development/com","reference/commands/check","install/centos","tutorial/drilldown","reference/commands_not_implemented/get","characteristic","install","reference/commands/shutdown","tutorial/patricia_trie","spec/search","reference/executables/groonga-suggest-create-dataset","reference/commands_not_implemented/add","reference/log","reference/executables/grntest","reference/command_version","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","development","install/fedora","reference/commands/view_add","contribution/development","reference/commands/cache_limit","server/http/groonga","contribution/documentation","contribution/development/test","reference/grn_expr/script_syntax","reference/executables/grnslap","reference/grn_expr/query_syntax","tutorial/micro_blog","news/1.1.x","suggest","reference/functions/now","server/http"]})