rroonga 5.1.1-x64-mingw32 → 6.0.0-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1228) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/bin/grndump +9 -0
  4. data/doc/text/cross-compile.md +72 -0
  5. data/doc/text/install.md +121 -0
  6. data/doc/text/news.md +1451 -0
  7. data/doc/text/release.md +135 -0
  8. data/doc/text/tutorial.md +402 -0
  9. data/ext/groonga/rb-grn-column.c +54 -24
  10. data/ext/groonga/rb-grn-config.c +131 -10
  11. data/ext/groonga/rb-grn-context.c +0 -10
  12. data/ext/groonga/rb-grn-encoding.c +0 -2
  13. data/ext/groonga/rb-grn-expression.c +63 -3
  14. data/ext/groonga/rb-grn-index.c +34 -0
  15. data/ext/groonga/rb-grn-object.c +10 -10
  16. data/ext/groonga/rb-grn-operator.c +7 -0
  17. data/ext/groonga/rb-grn-plugin.c +39 -0
  18. data/ext/groonga/rb-grn-utils.c +5 -65
  19. data/ext/groonga/rb-grn.h +9 -9
  20. data/ext/groonga/rb-groonga.c +31 -1
  21. data/lib/2.1/groonga.so +0 -0
  22. data/lib/2.2/groonga.so +0 -0
  23. data/lib/2.3/groonga.so +0 -0
  24. data/lib/groonga.rb +1 -0
  25. data/lib/groonga/column.rb +13 -0
  26. data/lib/groonga/dumper.rb +3 -1
  27. data/lib/groonga/expression-builder.rb +66 -18
  28. data/lib/groonga/{expression-builder-19.rb → index.rb} +11 -19
  29. data/lib/groonga/record.rb +1 -1
  30. data/lib/rroonga.rb +16 -0
  31. data/rroonga-build.rb +6 -6
  32. data/rroonga.gemspec +1 -1
  33. data/test/groonga-test-utils.rb +0 -8
  34. data/test/test-column.rb +107 -1
  35. data/test/test-config.rb +18 -0
  36. data/test/test-database.rb +0 -2
  37. data/test/test-error-message.rb +20 -0
  38. data/test/test-expression-builder.rb +172 -29
  39. data/test/test-plugin.rb +25 -1
  40. data/test/test-table-dumper.rb +35 -6
  41. data/test/test-table-select.rb +0 -1
  42. data/vendor/local/bin/grndb.exe +0 -0
  43. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  44. data/vendor/local/bin/groonga.exe +0 -0
  45. data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
  46. data/vendor/local/bin/libgroonga-0.dll +0 -0
  47. data/vendor/local/bin/libmecab-2.dll +0 -0
  48. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  49. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  50. data/vendor/local/bin/libonig-5.dll +0 -0
  51. data/vendor/local/bin/libstdc++-6.dll +0 -0
  52. data/vendor/local/bin/lz4.exe +0 -0
  53. data/vendor/local/bin/lz4c.exe +0 -0
  54. data/vendor/local/bin/lz4cat +0 -0
  55. data/vendor/local/bin/mecab-config +5 -5
  56. data/vendor/local/bin/mecab.exe +0 -0
  57. data/vendor/local/bin/onig-config +1 -1
  58. data/vendor/local/bin/zlib1.dll +0 -0
  59. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  60. data/vendor/local/include/groonga/groonga.h +16 -11
  61. data/vendor/local/include/groonga/groonga/array.h +76 -0
  62. data/vendor/local/include/groonga/groonga/command.h +3 -5
  63. data/vendor/local/include/groonga/groonga/config.h +65 -0
  64. data/vendor/local/include/groonga/groonga/dat.h +100 -0
  65. data/vendor/local/include/groonga/groonga/dump.h +34 -0
  66. data/vendor/local/include/groonga/groonga/expr.h +21 -16
  67. data/vendor/local/include/groonga/groonga/file_reader.h +2 -5
  68. data/vendor/local/include/groonga/groonga/geo.h +2 -5
  69. data/vendor/local/include/groonga/groonga/groonga.h +28 -270
  70. data/vendor/local/include/groonga/groonga/hash.h +89 -0
  71. data/vendor/local/include/groonga/groonga/ii.h +3 -5
  72. data/vendor/local/include/groonga/groonga/nfkc.h +4 -5
  73. data/vendor/local/include/groonga/groonga/normalizer.h +3 -5
  74. data/vendor/local/include/groonga/groonga/obj.h +7 -5
  75. data/vendor/local/include/groonga/groonga/output.h +3 -5
  76. data/vendor/local/include/groonga/groonga/pat.h +102 -0
  77. data/vendor/local/include/groonga/groonga/plugin.h +29 -12
  78. data/vendor/local/include/groonga/groonga/portability.h +3 -5
  79. data/vendor/local/include/groonga/groonga/request_canceler.h +2 -5
  80. data/vendor/local/include/groonga/groonga/scorer.h +3 -5
  81. data/vendor/local/include/groonga/groonga/thread.h +2 -5
  82. data/vendor/local/include/groonga/groonga/token.h +5 -6
  83. data/vendor/local/include/groonga/groonga/token_filter.h +3 -5
  84. data/vendor/local/include/groonga/groonga/tokenizer.h +3 -5
  85. data/vendor/local/include/groonga/groonga/type.h +31 -0
  86. data/vendor/local/include/groonga/groonga/util.h +3 -5
  87. data/vendor/local/include/groonga/groonga/windows.h +2 -5
  88. data/vendor/local/include/groonga/groonga/windows_event_logger.h +2 -5
  89. data/vendor/local/include/mecab.h +1336 -96
  90. data/vendor/local/include/msgpack.h +3 -11
  91. data/vendor/local/include/msgpack.hpp +4 -11
  92. data/vendor/local/include/msgpack/adaptor/adaptor_base.hpp +84 -0
  93. data/vendor/local/include/msgpack/adaptor/array_ref.hpp +174 -0
  94. data/vendor/local/include/msgpack/adaptor/bool.hpp +41 -33
  95. data/vendor/local/include/msgpack/adaptor/boost/fusion.hpp +160 -0
  96. data/vendor/local/include/msgpack/adaptor/boost/msgpack_variant.hpp +430 -0
  97. data/vendor/local/include/msgpack/adaptor/boost/optional.hpp +96 -0
  98. data/vendor/local/include/msgpack/adaptor/boost/string_ref.hpp +87 -0
  99. data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +132 -53
  100. data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +18 -12
  101. data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +106 -44
  102. data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +59 -54
  103. data/vendor/local/include/msgpack/adaptor/cpp11/array_unsigned_char.hpp +89 -0
  104. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +65 -46
  105. data/vendor/local/include/msgpack/adaptor/cpp11/reference_wrapper.hpp +68 -0
  106. data/vendor/local/include/msgpack/adaptor/cpp11/shared_ptr.hpp +82 -0
  107. data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +88 -64
  108. data/vendor/local/include/msgpack/adaptor/cpp11/unique_ptr.hpp +82 -0
  109. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +151 -111
  110. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +142 -104
  111. data/vendor/local/include/msgpack/adaptor/define.hpp +15 -13
  112. data/vendor/local/include/msgpack/adaptor/deque.hpp +78 -53
  113. data/vendor/local/include/msgpack/adaptor/detail/{cpp03_define.hpp → cpp03_define_array.hpp} +225 -210
  114. data/vendor/local/include/msgpack/adaptor/detail/cpp03_define_map.hpp +2791 -0
  115. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +3070 -3079
  116. data/vendor/local/include/msgpack/adaptor/detail/{cpp11_define.hpp → cpp11_define_array.hpp} +71 -62
  117. data/vendor/local/include/msgpack/adaptor/detail/cpp11_define_map.hpp +163 -0
  118. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +105 -42
  119. data/vendor/local/include/msgpack/adaptor/ext.hpp +237 -0
  120. data/vendor/local/include/msgpack/adaptor/fixint.hpp +178 -92
  121. data/vendor/local/include/msgpack/adaptor/float.hpp +87 -69
  122. data/vendor/local/include/msgpack/adaptor/int.hpp +243 -123
  123. data/vendor/local/include/msgpack/adaptor/list.hpp +76 -53
  124. data/vendor/local/include/msgpack/adaptor/map.hpp +244 -157
  125. data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +3 -11
  126. data/vendor/local/include/msgpack/adaptor/nil.hpp +45 -29
  127. data/vendor/local/include/msgpack/adaptor/pair.hpp +58 -38
  128. data/vendor/local/include/msgpack/adaptor/raw.hpp +47 -39
  129. data/vendor/local/include/msgpack/adaptor/set.hpp +156 -102
  130. data/vendor/local/include/msgpack/adaptor/string.hpp +58 -50
  131. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +120 -113
  132. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +114 -106
  133. data/vendor/local/include/msgpack/adaptor/v4raw.hpp +106 -0
  134. data/vendor/local/include/msgpack/adaptor/vector.hpp +94 -60
  135. data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +59 -51
  136. data/vendor/local/include/msgpack/adaptor/vector_char.hpp +62 -54
  137. data/vendor/local/include/msgpack/adaptor/vector_unsigned_char.hpp +89 -0
  138. data/vendor/local/include/msgpack/cpp_config.hpp +37 -22
  139. data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +17 -11
  140. data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +19 -19
  141. data/vendor/local/include/msgpack/fbuffer.h +3 -11
  142. data/vendor/local/include/msgpack/fbuffer.hpp +7 -11
  143. data/vendor/local/include/msgpack/gcc_atomic.h +3 -11
  144. data/vendor/local/include/msgpack/iterator.hpp +9 -13
  145. data/vendor/local/include/msgpack/meta.hpp +51 -0
  146. data/vendor/local/include/msgpack/object.h +3 -11
  147. data/vendor/local/include/msgpack/object.hpp +390 -290
  148. data/vendor/local/include/msgpack/object_fwd.hpp +57 -44
  149. data/vendor/local/include/msgpack/pack.h +6 -12
  150. data/vendor/local/include/msgpack/pack.hpp +58 -30
  151. data/vendor/local/include/msgpack/pack_define.h +3 -11
  152. data/vendor/local/include/msgpack/pack_template.h +35 -15
  153. data/vendor/local/include/msgpack/predef.h +19 -0
  154. data/vendor/local/include/msgpack/predef/architecture.h +30 -0
  155. data/vendor/local/include/msgpack/predef/architecture/alpha.h +60 -0
  156. data/vendor/local/include/msgpack/predef/architecture/arm.h +71 -0
  157. data/vendor/local/include/msgpack/predef/architecture/blackfin.h +47 -0
  158. data/vendor/local/include/msgpack/predef/architecture/convex.h +67 -0
  159. data/vendor/local/include/msgpack/predef/architecture/ia64.h +49 -0
  160. data/vendor/local/include/msgpack/predef/architecture/m68k.h +83 -0
  161. data/vendor/local/include/msgpack/predef/architecture/mips.h +74 -0
  162. data/vendor/local/include/msgpack/predef/architecture/parisc.h +65 -0
  163. data/vendor/local/include/msgpack/predef/architecture/ppc.h +73 -0
  164. data/vendor/local/include/msgpack/predef/architecture/pyramid.h +43 -0
  165. data/vendor/local/include/msgpack/predef/architecture/rs6k.h +56 -0
  166. data/vendor/local/include/msgpack/predef/architecture/sparc.h +55 -0
  167. data/vendor/local/include/msgpack/predef/architecture/superh.h +68 -0
  168. data/vendor/local/include/msgpack/predef/architecture/sys370.h +44 -0
  169. data/vendor/local/include/msgpack/predef/architecture/sys390.h +44 -0
  170. data/vendor/local/include/msgpack/predef/architecture/x86.h +38 -0
  171. data/vendor/local/include/msgpack/predef/architecture/x86/32.h +87 -0
  172. data/vendor/local/include/msgpack/predef/architecture/x86/64.h +50 -0
  173. data/vendor/local/include/msgpack/predef/architecture/z.h +43 -0
  174. data/vendor/local/include/msgpack/predef/compiler.h +41 -0
  175. data/vendor/local/include/msgpack/predef/compiler/borland.h +64 -0
  176. data/vendor/local/include/msgpack/predef/compiler/clang.h +57 -0
  177. data/vendor/local/include/msgpack/predef/compiler/comeau.h +62 -0
  178. data/vendor/local/include/msgpack/predef/compiler/compaq.h +67 -0
  179. data/vendor/local/include/msgpack/predef/compiler/diab.h +57 -0
  180. data/vendor/local/include/msgpack/predef/compiler/digitalmars.h +57 -0
  181. data/vendor/local/include/msgpack/predef/compiler/dignus.h +57 -0
  182. data/vendor/local/include/msgpack/predef/compiler/edg.h +57 -0
  183. data/vendor/local/include/msgpack/predef/compiler/ekopath.h +58 -0
  184. data/vendor/local/include/msgpack/predef/compiler/gcc.h +69 -0
  185. data/vendor/local/include/msgpack/predef/compiler/gcc_xml.h +53 -0
  186. data/vendor/local/include/msgpack/predef/compiler/greenhills.h +67 -0
  187. data/vendor/local/include/msgpack/predef/compiler/hp_acc.h +62 -0
  188. data/vendor/local/include/msgpack/predef/compiler/iar.h +57 -0
  189. data/vendor/local/include/msgpack/predef/compiler/ibm.h +73 -0
  190. data/vendor/local/include/msgpack/predef/compiler/intel.h +66 -0
  191. data/vendor/local/include/msgpack/predef/compiler/kai.h +57 -0
  192. data/vendor/local/include/msgpack/predef/compiler/llvm.h +58 -0
  193. data/vendor/local/include/msgpack/predef/compiler/metaware.h +54 -0
  194. data/vendor/local/include/msgpack/predef/compiler/metrowerks.h +78 -0
  195. data/vendor/local/include/msgpack/predef/compiler/microtec.h +54 -0
  196. data/vendor/local/include/msgpack/predef/compiler/mpw.h +64 -0
  197. data/vendor/local/include/msgpack/predef/compiler/palm.h +57 -0
  198. data/vendor/local/include/msgpack/predef/compiler/pgi.h +61 -0
  199. data/vendor/local/include/msgpack/predef/compiler/sgi_mipspro.h +67 -0
  200. data/vendor/local/include/msgpack/predef/compiler/sunpro.h +67 -0
  201. data/vendor/local/include/msgpack/predef/compiler/tendra.h +54 -0
  202. data/vendor/local/include/msgpack/predef/compiler/visualc.h +92 -0
  203. data/vendor/local/include/msgpack/predef/compiler/watcom.h +57 -0
  204. data/vendor/local/include/msgpack/predef/detail/_cassert.h +17 -0
  205. data/vendor/local/include/msgpack/predef/detail/_exception.h +15 -0
  206. data/vendor/local/include/msgpack/predef/detail/comp_detected.h +10 -0
  207. data/vendor/local/include/msgpack/predef/detail/endian_compat.h +26 -0
  208. data/vendor/local/include/msgpack/predef/detail/os_detected.h +10 -0
  209. data/vendor/local/include/msgpack/predef/detail/platform_detected.h +10 -0
  210. data/vendor/local/include/msgpack/predef/detail/test.h +17 -0
  211. data/vendor/local/include/msgpack/predef/language.h +15 -0
  212. data/vendor/local/include/msgpack/predef/language/objc.h +43 -0
  213. data/vendor/local/include/msgpack/predef/language/stdc.h +54 -0
  214. data/vendor/local/include/msgpack/predef/language/stdcpp.h +124 -0
  215. data/vendor/local/include/msgpack/predef/library.h +14 -0
  216. data/vendor/local/include/msgpack/predef/library/c.h +18 -0
  217. data/vendor/local/include/msgpack/predef/library/c/_prefix.h +13 -0
  218. data/vendor/local/include/msgpack/predef/library/c/gnu.h +62 -0
  219. data/vendor/local/include/msgpack/predef/library/c/uc.h +48 -0
  220. data/vendor/local/include/msgpack/predef/library/c/vms.h +48 -0
  221. data/vendor/local/include/msgpack/predef/library/c/zos.h +57 -0
  222. data/vendor/local/include/msgpack/predef/library/std.h +23 -0
  223. data/vendor/local/include/msgpack/predef/library/std/_prefix.h +23 -0
  224. data/vendor/local/include/msgpack/predef/library/std/cxx.h +47 -0
  225. data/vendor/local/include/msgpack/predef/library/std/dinkumware.h +53 -0
  226. data/vendor/local/include/msgpack/predef/library/std/libcomo.h +48 -0
  227. data/vendor/local/include/msgpack/predef/library/std/modena.h +46 -0
  228. data/vendor/local/include/msgpack/predef/library/std/msl.h +54 -0
  229. data/vendor/local/include/msgpack/predef/library/std/roguewave.h +57 -0
  230. data/vendor/local/include/msgpack/predef/library/std/sgi.h +52 -0
  231. data/vendor/local/include/msgpack/predef/library/std/stdcpp3.h +54 -0
  232. data/vendor/local/include/msgpack/predef/library/std/stlport.h +60 -0
  233. data/vendor/local/include/msgpack/predef/library/std/vacpp.h +45 -0
  234. data/vendor/local/include/msgpack/predef/make.h +89 -0
  235. data/vendor/local/include/msgpack/predef/os.h +31 -0
  236. data/vendor/local/include/msgpack/predef/os/aix.h +67 -0
  237. data/vendor/local/include/msgpack/predef/os/amigaos.h +47 -0
  238. data/vendor/local/include/msgpack/predef/os/android.h +46 -0
  239. data/vendor/local/include/msgpack/predef/os/beos.h +46 -0
  240. data/vendor/local/include/msgpack/predef/os/bsd.h +95 -0
  241. data/vendor/local/include/msgpack/predef/os/bsd/bsdi.h +48 -0
  242. data/vendor/local/include/msgpack/predef/os/bsd/dragonfly.h +50 -0
  243. data/vendor/local/include/msgpack/predef/os/bsd/free.h +60 -0
  244. data/vendor/local/include/msgpack/predef/os/bsd/net.h +84 -0
  245. data/vendor/local/include/msgpack/predef/os/bsd/open.h +171 -0
  246. data/vendor/local/include/msgpack/predef/os/cygwin.h +46 -0
  247. data/vendor/local/include/msgpack/predef/os/haiku.h +47 -0
  248. data/vendor/local/include/msgpack/predef/os/hpux.h +48 -0
  249. data/vendor/local/include/msgpack/predef/os/ios.h +51 -0
  250. data/vendor/local/include/msgpack/predef/os/irix.h +47 -0
  251. data/vendor/local/include/msgpack/predef/os/linux.h +47 -0
  252. data/vendor/local/include/msgpack/predef/os/macos.h +66 -0
  253. data/vendor/local/include/msgpack/predef/os/os400.h +46 -0
  254. data/vendor/local/include/msgpack/predef/os/qnxnto.h +60 -0
  255. data/vendor/local/include/msgpack/predef/os/solaris.h +47 -0
  256. data/vendor/local/include/msgpack/predef/os/unix.h +76 -0
  257. data/vendor/local/include/msgpack/predef/os/vms.h +53 -0
  258. data/vendor/local/include/msgpack/predef/os/windows.h +51 -0
  259. data/vendor/local/include/msgpack/predef/other.h +14 -0
  260. data/vendor/local/include/msgpack/predef/other/endian.h +205 -0
  261. data/vendor/local/include/msgpack/predef/platform.h +19 -0
  262. data/vendor/local/include/msgpack/predef/platform/mingw.h +70 -0
  263. data/vendor/local/include/msgpack/predef/platform/windows_desktop.h +44 -0
  264. data/vendor/local/include/msgpack/predef/platform/windows_phone.h +42 -0
  265. data/vendor/local/include/msgpack/predef/platform/windows_runtime.h +44 -0
  266. data/vendor/local/include/msgpack/predef/platform/windows_store.h +42 -0
  267. data/vendor/local/include/msgpack/predef/version.h +15 -0
  268. data/vendor/local/include/msgpack/predef/version_number.h +54 -0
  269. data/vendor/local/include/msgpack/preprocessor.hpp +19 -0
  270. data/vendor/local/include/msgpack/preprocessor/arithmetic.hpp +25 -0
  271. data/vendor/local/include/msgpack/preprocessor/arithmetic/add.hpp +51 -0
  272. data/vendor/local/include/msgpack/preprocessor/arithmetic/dec.hpp +288 -0
  273. data/vendor/local/include/msgpack/preprocessor/arithmetic/detail/div_base.hpp +61 -0
  274. data/vendor/local/include/msgpack/preprocessor/arithmetic/div.hpp +39 -0
  275. data/vendor/local/include/msgpack/preprocessor/arithmetic/inc.hpp +288 -0
  276. data/vendor/local/include/msgpack/preprocessor/arithmetic/mod.hpp +39 -0
  277. data/vendor/local/include/msgpack/preprocessor/arithmetic/mul.hpp +53 -0
  278. data/vendor/local/include/msgpack/preprocessor/arithmetic/sub.hpp +50 -0
  279. data/vendor/local/include/msgpack/preprocessor/array.hpp +32 -0
  280. data/vendor/local/include/msgpack/preprocessor/array/data.hpp +28 -0
  281. data/vendor/local/include/msgpack/preprocessor/array/detail/get_data.hpp +55 -0
  282. data/vendor/local/include/msgpack/preprocessor/array/elem.hpp +29 -0
  283. data/vendor/local/include/msgpack/preprocessor/array/enum.hpp +33 -0
  284. data/vendor/local/include/msgpack/preprocessor/array/insert.hpp +55 -0
  285. data/vendor/local/include/msgpack/preprocessor/array/pop_back.hpp +37 -0
  286. data/vendor/local/include/msgpack/preprocessor/array/pop_front.hpp +38 -0
  287. data/vendor/local/include/msgpack/preprocessor/array/push_back.hpp +35 -0
  288. data/vendor/local/include/msgpack/preprocessor/array/push_front.hpp +35 -0
  289. data/vendor/local/include/msgpack/preprocessor/array/remove.hpp +54 -0
  290. data/vendor/local/include/msgpack/preprocessor/array/replace.hpp +49 -0
  291. data/vendor/local/include/msgpack/preprocessor/array/reverse.hpp +29 -0
  292. data/vendor/local/include/msgpack/preprocessor/array/size.hpp +28 -0
  293. data/vendor/local/include/msgpack/preprocessor/array/to_list.hpp +47 -0
  294. data/vendor/local/include/msgpack/preprocessor/array/to_seq.hpp +46 -0
  295. data/vendor/local/include/msgpack/preprocessor/array/to_tuple.hpp +33 -0
  296. data/vendor/local/include/msgpack/preprocessor/assert_msg.hpp +17 -0
  297. data/vendor/local/include/msgpack/preprocessor/cat.hpp +35 -0
  298. data/vendor/local/include/msgpack/preprocessor/comma.hpp +17 -0
  299. data/vendor/local/include/msgpack/preprocessor/comma_if.hpp +17 -0
  300. data/vendor/local/include/msgpack/preprocessor/comparison.hpp +24 -0
  301. data/vendor/local/include/msgpack/preprocessor/comparison/equal.hpp +34 -0
  302. data/vendor/local/include/msgpack/preprocessor/comparison/greater.hpp +38 -0
  303. data/vendor/local/include/msgpack/preprocessor/comparison/greater_equal.hpp +38 -0
  304. data/vendor/local/include/msgpack/preprocessor/comparison/less.hpp +46 -0
  305. data/vendor/local/include/msgpack/preprocessor/comparison/less_equal.hpp +39 -0
  306. data/vendor/local/include/msgpack/preprocessor/comparison/not_equal.hpp +814 -0
  307. data/vendor/local/include/msgpack/preprocessor/config/config.hpp +101 -0
  308. data/vendor/local/include/msgpack/preprocessor/config/limits.hpp +30 -0
  309. data/vendor/local/include/msgpack/preprocessor/control.hpp +22 -0
  310. data/vendor/local/include/msgpack/preprocessor/control/deduce_d.hpp +22 -0
  311. data/vendor/local/include/msgpack/preprocessor/control/detail/dmc/while.hpp +536 -0
  312. data/vendor/local/include/msgpack/preprocessor/control/detail/edg/while.hpp +534 -0
  313. data/vendor/local/include/msgpack/preprocessor/control/detail/msvc/while.hpp +277 -0
  314. data/vendor/local/include/msgpack/preprocessor/control/detail/while.hpp +536 -0
  315. data/vendor/local/include/msgpack/preprocessor/control/expr_if.hpp +30 -0
  316. data/vendor/local/include/msgpack/preprocessor/control/expr_iif.hpp +31 -0
  317. data/vendor/local/include/msgpack/preprocessor/control/if.hpp +30 -0
  318. data/vendor/local/include/msgpack/preprocessor/control/iif.hpp +34 -0
  319. data/vendor/local/include/msgpack/preprocessor/control/while.hpp +312 -0
  320. data/vendor/local/include/msgpack/preprocessor/debug.hpp +18 -0
  321. data/vendor/local/include/msgpack/preprocessor/debug/assert.hpp +44 -0
  322. data/vendor/local/include/msgpack/preprocessor/debug/error.hpp +33 -0
  323. data/vendor/local/include/msgpack/preprocessor/debug/line.hpp +35 -0
  324. data/vendor/local/include/msgpack/preprocessor/dec.hpp +17 -0
  325. data/vendor/local/include/msgpack/preprocessor/detail/auto_rec.hpp +293 -0
  326. data/vendor/local/include/msgpack/preprocessor/detail/check.hpp +48 -0
  327. data/vendor/local/include/msgpack/preprocessor/detail/dmc/auto_rec.hpp +286 -0
  328. data/vendor/local/include/msgpack/preprocessor/detail/is_binary.hpp +30 -0
  329. data/vendor/local/include/msgpack/preprocessor/detail/is_nullary.hpp +30 -0
  330. data/vendor/local/include/msgpack/preprocessor/detail/is_unary.hpp +30 -0
  331. data/vendor/local/include/msgpack/preprocessor/detail/null.hpp +17 -0
  332. data/vendor/local/include/msgpack/preprocessor/detail/split.hpp +35 -0
  333. data/vendor/local/include/msgpack/preprocessor/empty.hpp +17 -0
  334. data/vendor/local/include/msgpack/preprocessor/enum.hpp +17 -0
  335. data/vendor/local/include/msgpack/preprocessor/enum_params.hpp +17 -0
  336. data/vendor/local/include/msgpack/preprocessor/enum_params_with_a_default.hpp +17 -0
  337. data/vendor/local/include/msgpack/preprocessor/enum_params_with_defaults.hpp +17 -0
  338. data/vendor/local/include/msgpack/preprocessor/enum_shifted.hpp +17 -0
  339. data/vendor/local/include/msgpack/preprocessor/enum_shifted_params.hpp +17 -0
  340. data/vendor/local/include/msgpack/preprocessor/expand.hpp +17 -0
  341. data/vendor/local/include/msgpack/preprocessor/expr_if.hpp +17 -0
  342. data/vendor/local/include/msgpack/preprocessor/facilities.hpp +23 -0
  343. data/vendor/local/include/msgpack/preprocessor/facilities/apply.hpp +34 -0
  344. data/vendor/local/include/msgpack/preprocessor/facilities/detail/is_empty.hpp +55 -0
  345. data/vendor/local/include/msgpack/preprocessor/facilities/empty.hpp +23 -0
  346. data/vendor/local/include/msgpack/preprocessor/facilities/expand.hpp +28 -0
  347. data/vendor/local/include/msgpack/preprocessor/facilities/identity.hpp +23 -0
  348. data/vendor/local/include/msgpack/preprocessor/facilities/intercept.hpp +277 -0
  349. data/vendor/local/include/msgpack/preprocessor/facilities/is_1.hpp +23 -0
  350. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty.hpp +56 -0
  351. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_or_1.hpp +31 -0
  352. data/vendor/local/include/msgpack/preprocessor/facilities/is_empty_variadic.hpp +57 -0
  353. data/vendor/local/include/msgpack/preprocessor/facilities/overload.hpp +25 -0
  354. data/vendor/local/include/msgpack/preprocessor/for.hpp +17 -0
  355. data/vendor/local/include/msgpack/preprocessor/identity.hpp +17 -0
  356. data/vendor/local/include/msgpack/preprocessor/if.hpp +17 -0
  357. data/vendor/local/include/msgpack/preprocessor/inc.hpp +17 -0
  358. data/vendor/local/include/msgpack/preprocessor/iterate.hpp +17 -0
  359. data/vendor/local/include/msgpack/preprocessor/iteration.hpp +19 -0
  360. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
  361. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower2.hpp +99 -0
  362. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower3.hpp +99 -0
  363. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower4.hpp +99 -0
  364. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/lower5.hpp +99 -0
  365. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
  366. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper2.hpp +99 -0
  367. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper3.hpp +99 -0
  368. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper4.hpp +99 -0
  369. data/vendor/local/include/msgpack/preprocessor/iteration/detail/bounds/upper5.hpp +99 -0
  370. data/vendor/local/include/msgpack/preprocessor/iteration/detail/finish.hpp +99 -0
  371. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
  372. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward2.hpp +1338 -0
  373. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward3.hpp +1338 -0
  374. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward4.hpp +1338 -0
  375. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/forward5.hpp +1338 -0
  376. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse1.hpp +1296 -0
  377. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse2.hpp +1296 -0
  378. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse3.hpp +1296 -0
  379. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse4.hpp +1296 -0
  380. data/vendor/local/include/msgpack/preprocessor/iteration/detail/iter/reverse5.hpp +1296 -0
  381. data/vendor/local/include/msgpack/preprocessor/iteration/detail/local.hpp +812 -0
  382. data/vendor/local/include/msgpack/preprocessor/iteration/detail/rlocal.hpp +782 -0
  383. data/vendor/local/include/msgpack/preprocessor/iteration/detail/self.hpp +21 -0
  384. data/vendor/local/include/msgpack/preprocessor/iteration/detail/start.hpp +99 -0
  385. data/vendor/local/include/msgpack/preprocessor/iteration/iterate.hpp +82 -0
  386. data/vendor/local/include/msgpack/preprocessor/iteration/local.hpp +26 -0
  387. data/vendor/local/include/msgpack/preprocessor/iteration/self.hpp +19 -0
  388. data/vendor/local/include/msgpack/preprocessor/library.hpp +36 -0
  389. data/vendor/local/include/msgpack/preprocessor/limits.hpp +17 -0
  390. data/vendor/local/include/msgpack/preprocessor/list.hpp +37 -0
  391. data/vendor/local/include/msgpack/preprocessor/list/adt.hpp +73 -0
  392. data/vendor/local/include/msgpack/preprocessor/list/append.hpp +40 -0
  393. data/vendor/local/include/msgpack/preprocessor/list/at.hpp +39 -0
  394. data/vendor/local/include/msgpack/preprocessor/list/cat.hpp +42 -0
  395. data/vendor/local/include/msgpack/preprocessor/list/detail/dmc/fold_left.hpp +279 -0
  396. data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_left.hpp +536 -0
  397. data/vendor/local/include/msgpack/preprocessor/list/detail/edg/fold_right.hpp +794 -0
  398. data/vendor/local/include/msgpack/preprocessor/list/detail/fold_left.hpp +279 -0
  399. data/vendor/local/include/msgpack/preprocessor/list/detail/fold_right.hpp +277 -0
  400. data/vendor/local/include/msgpack/preprocessor/list/enum.hpp +41 -0
  401. data/vendor/local/include/msgpack/preprocessor/list/filter.hpp +54 -0
  402. data/vendor/local/include/msgpack/preprocessor/list/first_n.hpp +58 -0
  403. data/vendor/local/include/msgpack/preprocessor/list/fold_left.hpp +303 -0
  404. data/vendor/local/include/msgpack/preprocessor/list/fold_right.hpp +40 -0
  405. data/vendor/local/include/msgpack/preprocessor/list/for_each.hpp +49 -0
  406. data/vendor/local/include/msgpack/preprocessor/list/for_each_i.hpp +65 -0
  407. data/vendor/local/include/msgpack/preprocessor/list/for_each_product.hpp +141 -0
  408. data/vendor/local/include/msgpack/preprocessor/list/rest_n.hpp +55 -0
  409. data/vendor/local/include/msgpack/preprocessor/list/reverse.hpp +40 -0
  410. data/vendor/local/include/msgpack/preprocessor/list/size.hpp +58 -0
  411. data/vendor/local/include/msgpack/preprocessor/list/to_array.hpp +155 -0
  412. data/vendor/local/include/msgpack/preprocessor/list/to_seq.hpp +32 -0
  413. data/vendor/local/include/msgpack/preprocessor/list/to_tuple.hpp +61 -0
  414. data/vendor/local/include/msgpack/preprocessor/list/transform.hpp +49 -0
  415. data/vendor/local/include/msgpack/preprocessor/logical.hpp +29 -0
  416. data/vendor/local/include/msgpack/preprocessor/logical/and.hpp +30 -0
  417. data/vendor/local/include/msgpack/preprocessor/logical/bitand.hpp +38 -0
  418. data/vendor/local/include/msgpack/preprocessor/logical/bitnor.hpp +38 -0
  419. data/vendor/local/include/msgpack/preprocessor/logical/bitor.hpp +38 -0
  420. data/vendor/local/include/msgpack/preprocessor/logical/bitxor.hpp +38 -0
  421. data/vendor/local/include/msgpack/preprocessor/logical/bool.hpp +288 -0
  422. data/vendor/local/include/msgpack/preprocessor/logical/compl.hpp +36 -0
  423. data/vendor/local/include/msgpack/preprocessor/logical/nor.hpp +30 -0
  424. data/vendor/local/include/msgpack/preprocessor/logical/not.hpp +30 -0
  425. data/vendor/local/include/msgpack/preprocessor/logical/or.hpp +30 -0
  426. data/vendor/local/include/msgpack/preprocessor/logical/xor.hpp +30 -0
  427. data/vendor/local/include/msgpack/preprocessor/max.hpp +17 -0
  428. data/vendor/local/include/msgpack/preprocessor/min.hpp +17 -0
  429. data/vendor/local/include/msgpack/preprocessor/punctuation.hpp +22 -0
  430. data/vendor/local/include/msgpack/preprocessor/punctuation/comma.hpp +21 -0
  431. data/vendor/local/include/msgpack/preprocessor/punctuation/comma_if.hpp +31 -0
  432. data/vendor/local/include/msgpack/preprocessor/punctuation/detail/is_begin_parens.hpp +48 -0
  433. data/vendor/local/include/msgpack/preprocessor/punctuation/is_begin_parens.hpp +51 -0
  434. data/vendor/local/include/msgpack/preprocessor/punctuation/paren.hpp +23 -0
  435. data/vendor/local/include/msgpack/preprocessor/punctuation/paren_if.hpp +38 -0
  436. data/vendor/local/include/msgpack/preprocessor/punctuation/remove_parens.hpp +39 -0
  437. data/vendor/local/include/msgpack/preprocessor/repeat.hpp +17 -0
  438. data/vendor/local/include/msgpack/preprocessor/repeat_2nd.hpp +17 -0
  439. data/vendor/local/include/msgpack/preprocessor/repeat_3rd.hpp +17 -0
  440. data/vendor/local/include/msgpack/preprocessor/repeat_from_to.hpp +17 -0
  441. data/vendor/local/include/msgpack/preprocessor/repeat_from_to_2nd.hpp +17 -0
  442. data/vendor/local/include/msgpack/preprocessor/repeat_from_to_3rd.hpp +17 -0
  443. data/vendor/local/include/msgpack/preprocessor/repetition.hpp +32 -0
  444. data/vendor/local/include/msgpack/preprocessor/repetition/deduce_r.hpp +22 -0
  445. data/vendor/local/include/msgpack/preprocessor/repetition/deduce_z.hpp +22 -0
  446. data/vendor/local/include/msgpack/preprocessor/repetition/detail/dmc/for.hpp +536 -0
  447. data/vendor/local/include/msgpack/preprocessor/repetition/detail/edg/for.hpp +534 -0
  448. data/vendor/local/include/msgpack/preprocessor/repetition/detail/for.hpp +536 -0
  449. data/vendor/local/include/msgpack/preprocessor/repetition/detail/msvc/for.hpp +277 -0
  450. data/vendor/local/include/msgpack/preprocessor/repetition/enum.hpp +66 -0
  451. data/vendor/local/include/msgpack/preprocessor/repetition/enum_binary_params.hpp +54 -0
  452. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params.hpp +41 -0
  453. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_a_default.hpp +25 -0
  454. data/vendor/local/include/msgpack/preprocessor/repetition/enum_params_with_defaults.hpp +24 -0
  455. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted.hpp +68 -0
  456. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_binary_params.hpp +51 -0
  457. data/vendor/local/include/msgpack/preprocessor/repetition/enum_shifted_params.hpp +44 -0
  458. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing.hpp +63 -0
  459. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_binary_params.hpp +53 -0
  460. data/vendor/local/include/msgpack/preprocessor/repetition/enum_trailing_params.hpp +38 -0
  461. data/vendor/local/include/msgpack/preprocessor/repetition/for.hpp +306 -0
  462. data/vendor/local/include/msgpack/preprocessor/repetition/repeat.hpp +825 -0
  463. data/vendor/local/include/msgpack/preprocessor/repetition/repeat_from_to.hpp +87 -0
  464. data/vendor/local/include/msgpack/preprocessor/selection.hpp +18 -0
  465. data/vendor/local/include/msgpack/preprocessor/selection/max.hpp +39 -0
  466. data/vendor/local/include/msgpack/preprocessor/selection/min.hpp +39 -0
  467. data/vendor/local/include/msgpack/preprocessor/seq.hpp +44 -0
  468. data/vendor/local/include/msgpack/preprocessor/seq/cat.hpp +49 -0
  469. data/vendor/local/include/msgpack/preprocessor/seq/detail/binary_transform.hpp +48 -0
  470. data/vendor/local/include/msgpack/preprocessor/seq/detail/split.hpp +284 -0
  471. data/vendor/local/include/msgpack/preprocessor/seq/elem.hpp +304 -0
  472. data/vendor/local/include/msgpack/preprocessor/seq/enum.hpp +288 -0
  473. data/vendor/local/include/msgpack/preprocessor/seq/filter.hpp +54 -0
  474. data/vendor/local/include/msgpack/preprocessor/seq/first_n.hpp +30 -0
  475. data/vendor/local/include/msgpack/preprocessor/seq/fold_left.hpp +1070 -0
  476. data/vendor/local/include/msgpack/preprocessor/seq/fold_right.hpp +288 -0
  477. data/vendor/local/include/msgpack/preprocessor/seq/for_each.hpp +60 -0
  478. data/vendor/local/include/msgpack/preprocessor/seq/for_each_i.hpp +61 -0
  479. data/vendor/local/include/msgpack/preprocessor/seq/for_each_product.hpp +126 -0
  480. data/vendor/local/include/msgpack/preprocessor/seq/insert.hpp +28 -0
  481. data/vendor/local/include/msgpack/preprocessor/seq/pop_back.hpp +29 -0
  482. data/vendor/local/include/msgpack/preprocessor/seq/pop_front.hpp +27 -0
  483. data/vendor/local/include/msgpack/preprocessor/seq/push_back.hpp +19 -0
  484. data/vendor/local/include/msgpack/preprocessor/seq/push_front.hpp +19 -0
  485. data/vendor/local/include/msgpack/preprocessor/seq/remove.hpp +29 -0
  486. data/vendor/local/include/msgpack/preprocessor/seq/replace.hpp +29 -0
  487. data/vendor/local/include/msgpack/preprocessor/seq/rest_n.hpp +30 -0
  488. data/vendor/local/include/msgpack/preprocessor/seq/reverse.hpp +39 -0
  489. data/vendor/local/include/msgpack/preprocessor/seq/seq.hpp +44 -0
  490. data/vendor/local/include/msgpack/preprocessor/seq/size.hpp +547 -0
  491. data/vendor/local/include/msgpack/preprocessor/seq/subseq.hpp +28 -0
  492. data/vendor/local/include/msgpack/preprocessor/seq/to_array.hpp +28 -0
  493. data/vendor/local/include/msgpack/preprocessor/seq/to_list.hpp +29 -0
  494. data/vendor/local/include/msgpack/preprocessor/seq/to_tuple.hpp +27 -0
  495. data/vendor/local/include/msgpack/preprocessor/seq/transform.hpp +48 -0
  496. data/vendor/local/include/msgpack/preprocessor/seq/variadic_seq_to_seq.hpp +28 -0
  497. data/vendor/local/include/msgpack/preprocessor/slot.hpp +17 -0
  498. data/vendor/local/include/msgpack/preprocessor/slot/counter.hpp +25 -0
  499. data/vendor/local/include/msgpack/preprocessor/slot/detail/counter.hpp +269 -0
  500. data/vendor/local/include/msgpack/preprocessor/slot/detail/def.hpp +49 -0
  501. data/vendor/local/include/msgpack/preprocessor/slot/detail/shared.hpp +247 -0
  502. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot1.hpp +267 -0
  503. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot2.hpp +267 -0
  504. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot3.hpp +267 -0
  505. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot4.hpp +267 -0
  506. data/vendor/local/include/msgpack/preprocessor/slot/detail/slot5.hpp +267 -0
  507. data/vendor/local/include/msgpack/preprocessor/slot/slot.hpp +32 -0
  508. data/vendor/local/include/msgpack/preprocessor/stringize.hpp +33 -0
  509. data/vendor/local/include/msgpack/preprocessor/tuple.hpp +35 -0
  510. data/vendor/local/include/msgpack/preprocessor/tuple/detail/is_single_return.hpp +28 -0
  511. data/vendor/local/include/msgpack/preprocessor/tuple/eat.hpp +106 -0
  512. data/vendor/local/include/msgpack/preprocessor/tuple/elem.hpp +201 -0
  513. data/vendor/local/include/msgpack/preprocessor/tuple/enum.hpp +22 -0
  514. data/vendor/local/include/msgpack/preprocessor/tuple/insert.hpp +37 -0
  515. data/vendor/local/include/msgpack/preprocessor/tuple/pop_back.hpp +64 -0
  516. data/vendor/local/include/msgpack/preprocessor/tuple/pop_front.hpp +65 -0
  517. data/vendor/local/include/msgpack/preprocessor/tuple/push_back.hpp +31 -0
  518. data/vendor/local/include/msgpack/preprocessor/tuple/push_front.hpp +32 -0
  519. data/vendor/local/include/msgpack/preprocessor/tuple/rem.hpp +149 -0
  520. data/vendor/local/include/msgpack/preprocessor/tuple/remove.hpp +64 -0
  521. data/vendor/local/include/msgpack/preprocessor/tuple/replace.hpp +37 -0
  522. data/vendor/local/include/msgpack/preprocessor/tuple/reverse.hpp +117 -0
  523. data/vendor/local/include/msgpack/preprocessor/tuple/size.hpp +28 -0
  524. data/vendor/local/include/msgpack/preprocessor/tuple/to_array.hpp +39 -0
  525. data/vendor/local/include/msgpack/preprocessor/tuple/to_list.hpp +118 -0
  526. data/vendor/local/include/msgpack/preprocessor/tuple/to_seq.hpp +119 -0
  527. data/vendor/local/include/msgpack/preprocessor/variadic.hpp +23 -0
  528. data/vendor/local/include/msgpack/preprocessor/variadic/detail/is_single_return.hpp +28 -0
  529. data/vendor/local/include/msgpack/preprocessor/variadic/elem.hpp +94 -0
  530. data/vendor/local/include/msgpack/preprocessor/variadic/size.hpp +30 -0
  531. data/vendor/local/include/msgpack/preprocessor/variadic/to_array.hpp +32 -0
  532. data/vendor/local/include/msgpack/preprocessor/variadic/to_list.hpp +25 -0
  533. data/vendor/local/include/msgpack/preprocessor/variadic/to_seq.hpp +25 -0
  534. data/vendor/local/include/msgpack/preprocessor/variadic/to_tuple.hpp +24 -0
  535. data/vendor/local/include/msgpack/preprocessor/while.hpp +17 -0
  536. data/vendor/local/include/msgpack/preprocessor/wstringize.hpp +29 -0
  537. data/vendor/local/include/msgpack/sbuffer.h +3 -11
  538. data/vendor/local/include/msgpack/sbuffer.hpp +34 -16
  539. data/vendor/local/include/msgpack/sysdep.h +102 -116
  540. data/vendor/local/include/msgpack/type.hpp +17 -0
  541. data/vendor/local/include/msgpack/unpack.h +3 -11
  542. data/vendor/local/include/msgpack/unpack.hpp +23 -47
  543. data/vendor/local/include/msgpack/unpack_define.h +3 -11
  544. data/vendor/local/include/msgpack/unpack_template.h +322 -328
  545. data/vendor/local/include/msgpack/util.h +3 -11
  546. data/vendor/local/include/msgpack/version.h +3 -11
  547. data/vendor/local/include/msgpack/version.hpp +3 -11
  548. data/vendor/local/include/msgpack/version_master.h +2 -2
  549. data/vendor/local/include/msgpack/versioning.hpp +27 -35
  550. data/vendor/local/include/msgpack/vrefbuffer.h +3 -11
  551. data/vendor/local/include/msgpack/vrefbuffer.hpp +7 -11
  552. data/vendor/local/include/msgpack/zbuffer.h +17 -25
  553. data/vendor/local/include/msgpack/zbuffer.hpp +9 -13
  554. data/vendor/local/include/msgpack/zone.h +3 -11
  555. data/vendor/local/include/msgpack/zone.hpp +3 -11
  556. data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
  557. data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
  558. data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
  559. data/vendor/local/lib/groonga/plugins/functions/string.la +41 -0
  560. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  561. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  562. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  563. data/vendor/local/lib/groonga/plugins/functions/vector.la +4 -4
  564. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  565. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  566. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  567. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +4 -4
  568. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  569. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  570. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  571. data/vendor/local/lib/groonga/plugins/ruby/eval.la +4 -4
  572. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  573. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  574. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  575. data/vendor/local/lib/groonga/plugins/ruby/load.la +4 -4
  576. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  577. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  578. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  579. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +4 -4
  580. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  581. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  582. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  583. data/vendor/local/lib/groonga/plugins/table/table.la +4 -4
  584. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  585. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  586. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  587. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +4 -4
  588. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  589. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  590. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  591. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +4 -4
  592. data/vendor/local/lib/groonga/scripts/ruby/accessor.rb +5 -0
  593. data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +202 -90
  594. data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +156 -0
  595. data/vendor/local/lib/groonga/scripts/ruby/context.rb +2 -4
  596. data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters.rb +5 -5
  597. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +2 -1
  598. data/vendor/local/lib/groonga/scripts/ruby/fixed_size_column.rb +5 -0
  599. data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +5 -0
  600. data/vendor/local/lib/groonga/scripts/ruby/logger.rb +1 -3
  601. data/vendor/local/lib/groonga/scripts/ruby/require.rb +4 -1
  602. data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +3 -0
  603. data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +29 -1
  604. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +18 -14
  605. data/vendor/local/lib/groonga/scripts/ruby/table.rb +8 -0
  606. data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +2 -0
  607. data/vendor/local/lib/groonga/scripts/ruby/variable_size_column.rb +5 -0
  608. data/vendor/local/lib/libgroonga.a +0 -0
  609. data/vendor/local/lib/libgroonga.dll.a +0 -0
  610. data/vendor/local/lib/libgroonga.la +4 -4
  611. data/vendor/local/lib/liblz4.a +0 -0
  612. data/vendor/local/lib/liblz4.dll +0 -0
  613. data/vendor/local/lib/liblz4.dll.1 +0 -0
  614. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  615. data/vendor/local/lib/libmecab.a +0 -0
  616. data/vendor/local/lib/libmecab.dll.a +0 -0
  617. data/vendor/local/lib/libmecab.la +4 -4
  618. data/vendor/local/lib/libmsgpack.a +0 -0
  619. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  620. data/vendor/local/lib/libmsgpack.la +2 -2
  621. data/vendor/local/lib/libmsgpackc.a +0 -0
  622. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  623. data/vendor/local/lib/libmsgpackc.la +2 -2
  624. data/vendor/local/lib/libonig.a +0 -0
  625. data/vendor/local/lib/libonig.dll.a +0 -0
  626. data/vendor/local/lib/libonig.la +4 -4
  627. data/vendor/local/lib/libz.a +0 -0
  628. data/vendor/local/lib/libz.dll.a +0 -0
  629. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  630. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  631. data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
  632. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  633. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  634. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  635. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  636. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  637. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  638. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  639. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  640. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  641. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  642. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
  643. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
  644. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
  645. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
  646. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  647. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +5 -3
  648. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  649. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
  650. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
  651. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +288 -3
  652. data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
  653. data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +164 -0
  654. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
  655. data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_geo.txt +1 -1
  656. data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/command_version.txt +2 -2
  657. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
  658. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +95 -0
  659. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +96 -0
  660. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +96 -0
  661. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_acquire.txt +102 -0
  662. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +10 -9
  663. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_release.txt +98 -0
  664. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +7 -2
  665. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +385 -0
  666. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +140 -0
  667. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/reindex.txt +2 -2
  668. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +627 -0
  669. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +3 -0
  670. data/vendor/local/share/doc/groonga/en/html/_sources/reference/configuration.txt +50 -0
  671. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/grndb.txt +41 -4
  672. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +3 -3
  673. data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr.txt +1 -1
  674. data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations/geolocation_search.txt +1 -1
  675. data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +4 -0
  676. data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +1 -1
  677. data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
  678. data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +1 -0
  679. data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +1 -1
  680. data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
  681. data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -1
  682. data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -0
  683. data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +1 -1
  684. data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
  685. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  686. data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
  687. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  688. data/vendor/local/share/doc/groonga/en/html/contribution.html +6 -6
  689. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
  690. data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -6
  691. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +10 -10
  692. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -9
  693. data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +9 -9
  694. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
  695. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +9 -9
  696. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +14 -14
  697. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +57 -57
  698. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +7 -7
  699. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +16 -16
  700. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
  701. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
  702. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +16 -16
  703. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +12 -12
  704. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
  705. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  706. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +7 -7
  707. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  708. data/vendor/local/share/doc/groonga/en/html/index.html +117 -97
  709. data/vendor/local/share/doc/groonga/en/html/install.html +6 -6
  710. data/vendor/local/share/doc/groonga/en/html/install/centos.html +30 -30
  711. data/vendor/local/share/doc/groonga/en/html/install/debian.html +25 -25
  712. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +20 -20
  713. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +15 -15
  714. data/vendor/local/share/doc/groonga/en/html/install/others.html +24 -24
  715. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +13 -13
  716. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +20 -20
  717. data/vendor/local/share/doc/groonga/en/html/install/windows.html +15 -15
  718. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  719. data/vendor/local/share/doc/groonga/en/html/news.html +350 -102
  720. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -6
  721. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
  722. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -6
  723. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +7 -7
  724. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -6
  725. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +8 -8
  726. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +6 -6
  727. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +8 -8
  728. data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -6
  729. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  730. data/vendor/local/share/doc/groonga/en/html/reference.html +117 -97
  731. data/vendor/local/share/doc/groonga/en/html/reference/alias.html +447 -0
  732. data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -40
  733. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +23 -23
  734. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +26 -26
  735. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +30 -30
  736. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +25 -25
  737. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +23 -23
  738. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -28
  739. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +25 -25
  740. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +25 -25
  741. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +24 -24
  742. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +26 -26
  743. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +25 -25
  744. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +25 -25
  745. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +25 -25
  746. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +25 -25
  747. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +25 -25
  748. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +25 -25
  749. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +25 -25
  750. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +25 -25
  751. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +25 -25
  752. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -25
  753. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +26 -26
  754. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +25 -25
  755. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +21 -21
  756. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +26 -26
  757. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +23 -23
  758. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
  759. data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
  760. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
  761. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
  762. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
  763. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +23 -23
  764. data/vendor/local/share/doc/groonga/en/html/reference/command.html +61 -53
  765. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +24 -24
  766. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +19 -19
  767. data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +8 -8
  768. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +7 -7
  769. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
  770. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +10 -10
  771. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +9 -9
  772. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +10 -10
  773. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +22 -22
  774. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +10 -10
  775. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +11 -11
  776. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +9 -9
  777. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +14 -14
  778. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +255 -0
  779. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +239 -0
  780. data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +237 -0
  781. data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +35 -35
  782. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +31 -31
  783. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +30 -30
  784. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +34 -34
  785. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +46 -46
  786. data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +60 -60
  787. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +35 -35
  788. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +247 -0
  789. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +43 -42
  790. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +246 -0
  791. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +32 -32
  792. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +31 -31
  793. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +33 -33
  794. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +53 -53
  795. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +43 -43
  796. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +63 -63
  797. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +135 -135
  798. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +43 -43
  799. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +48 -48
  800. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +41 -41
  801. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -29
  802. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +43 -38
  803. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +592 -0
  804. data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +324 -0
  805. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +30 -30
  806. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +29 -29
  807. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +28 -28
  808. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +26 -26
  809. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +29 -29
  810. data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +36 -36
  811. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +37 -37
  812. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +33 -33
  813. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +34 -34
  814. data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +1188 -0
  815. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +187 -187
  816. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +28 -28
  817. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +36 -36
  818. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +41 -41
  819. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +56 -56
  820. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +29 -29
  821. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +52 -52
  822. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +35 -35
  823. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +42 -42
  824. data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +37 -37
  825. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +55 -55
  826. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -29
  827. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +30 -30
  828. data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +178 -0
  829. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -6
  830. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +43 -10
  831. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +8 -8
  832. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +14 -14
  833. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +34 -34
  834. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +9 -9
  835. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
  836. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +13 -13
  837. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +9 -9
  838. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +30 -30
  839. data/vendor/local/share/doc/groonga/en/html/reference/function.html +6 -6
  840. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +10 -10
  841. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +8 -8
  842. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +20 -20
  843. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +8 -8
  844. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +8 -8
  845. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +11 -11
  846. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -11
  847. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +11 -11
  848. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +10 -10
  849. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +8 -8
  850. data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +15 -15
  851. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +12 -12
  852. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +8 -8
  853. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +11 -11
  854. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
  855. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +11 -11
  856. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +7 -7
  857. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +24 -24
  858. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +47 -47
  859. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +29 -29
  860. data/vendor/local/share/doc/groonga/en/html/reference/log.html +41 -41
  861. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -10
  862. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -6
  863. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +7 -7
  864. data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -12
  865. data/vendor/local/share/doc/groonga/en/html/reference/output.html +16 -16
  866. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
  867. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -17
  868. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +23 -23
  869. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +18 -18
  870. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +10 -10
  871. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +10 -10
  872. data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +32 -32
  873. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +35 -35
  874. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +40 -40
  875. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +31 -31
  876. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +27 -27
  877. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +32 -32
  878. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
  879. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -9
  880. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +29 -29
  881. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +46 -46
  882. data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -11
  883. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  884. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  885. data/vendor/local/share/doc/groonga/en/html/server.html +6 -6
  886. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +8 -8
  887. data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
  888. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +17 -17
  889. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
  890. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
  891. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +8 -7
  892. data/vendor/local/share/doc/groonga/en/html/server/package.html +29 -29
  893. data/vendor/local/share/doc/groonga/en/html/spec.html +10 -10
  894. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +13 -13
  895. data/vendor/local/share/doc/groonga/en/html/spec/search.html +8 -8
  896. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  897. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
  898. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  899. data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
  900. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +14 -14
  901. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +13 -13
  902. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +13 -13
  903. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +27 -27
  904. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
  905. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +18 -18
  906. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +18 -18
  907. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +9 -9
  908. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +8 -8
  909. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +9 -9
  910. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +16 -16
  911. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  912. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
  913. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
  914. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
  915. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
  916. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  917. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +5 -3
  918. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  919. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
  920. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
  921. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +288 -3
  922. data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
  923. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +164 -0
  924. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
  925. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_geo.txt +1 -1
  926. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/command_version.txt +2 -2
  927. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
  928. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +95 -0
  929. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +96 -0
  930. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +96 -0
  931. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_acquire.txt +102 -0
  932. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +10 -9
  933. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_release.txt +98 -0
  934. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +7 -2
  935. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +385 -0
  936. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +140 -0
  937. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/reindex.txt +2 -2
  938. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +627 -0
  939. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +3 -0
  940. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/configuration.txt +50 -0
  941. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/grndb.txt +41 -4
  942. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +3 -3
  943. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr.txt +1 -1
  944. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations/geolocation_search.txt +1 -1
  945. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +4 -0
  946. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +1 -1
  947. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
  948. data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +1 -0
  949. data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +1 -1
  950. data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
  951. data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -1
  952. data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -0
  953. data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +1 -1
  954. data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
  955. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  956. data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
  957. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  958. data/vendor/local/share/doc/groonga/ja/html/contribution.html +6 -6
  959. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
  960. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -6
  961. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +10 -10
  962. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -9
  963. data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +9 -9
  964. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
  965. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +9 -9
  966. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +14 -14
  967. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +57 -57
  968. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +7 -7
  969. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +16 -16
  970. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  971. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  972. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +16 -16
  973. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +12 -12
  974. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  975. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  976. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +7 -7
  977. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  978. data/vendor/local/share/doc/groonga/ja/html/index.html +116 -96
  979. data/vendor/local/share/doc/groonga/ja/html/install.html +6 -6
  980. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +30 -30
  981. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -25
  982. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +20 -20
  983. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +15 -15
  984. data/vendor/local/share/doc/groonga/ja/html/install/others.html +24 -24
  985. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +13 -13
  986. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -20
  987. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +15 -15
  988. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  989. data/vendor/local/share/doc/groonga/ja/html/news.html +329 -100
  990. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -6
  991. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
  992. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -6
  993. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +7 -7
  994. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -6
  995. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +8 -8
  996. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +6 -6
  997. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +7 -7
  998. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -6
  999. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  1000. data/vendor/local/share/doc/groonga/ja/html/reference.html +116 -96
  1001. data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +419 -0
  1002. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -40
  1003. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +23 -23
  1004. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +26 -26
  1005. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +30 -30
  1006. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +25 -25
  1007. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +23 -23
  1008. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +26 -26
  1009. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +25 -25
  1010. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +25 -25
  1011. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +24 -24
  1012. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +26 -26
  1013. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +25 -25
  1014. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +25 -25
  1015. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +25 -25
  1016. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +25 -25
  1017. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +25 -25
  1018. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +25 -25
  1019. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +25 -25
  1020. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +25 -25
  1021. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +25 -25
  1022. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -25
  1023. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +26 -26
  1024. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +25 -25
  1025. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +21 -21
  1026. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +26 -26
  1027. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +23 -23
  1028. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
  1029. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
  1030. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
  1031. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
  1032. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
  1033. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +23 -23
  1034. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -48
  1035. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -23
  1036. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +15 -15
  1037. data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +8 -8
  1038. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +7 -7
  1039. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
  1040. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +10 -10
  1041. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +9 -9
  1042. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +10 -10
  1043. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +22 -22
  1044. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +10 -10
  1045. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +11 -11
  1046. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +9 -9
  1047. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +14 -14
  1048. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +254 -0
  1049. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +235 -0
  1050. data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +234 -0
  1051. data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +35 -35
  1052. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +31 -31
  1053. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +30 -30
  1054. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +34 -34
  1055. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +46 -46
  1056. data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +60 -60
  1057. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +37 -37
  1058. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +242 -0
  1059. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +43 -43
  1060. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +242 -0
  1061. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +32 -32
  1062. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +31 -31
  1063. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +33 -33
  1064. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +53 -53
  1065. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +43 -43
  1066. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +63 -63
  1067. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +135 -135
  1068. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +43 -43
  1069. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +48 -48
  1070. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +41 -41
  1071. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -29
  1072. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +41 -36
  1073. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +595 -0
  1074. data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +306 -0
  1075. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +30 -30
  1076. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +29 -29
  1077. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +28 -28
  1078. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +26 -26
  1079. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +29 -29
  1080. data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +34 -34
  1081. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +37 -37
  1082. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +33 -33
  1083. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +34 -34
  1084. data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +1196 -0
  1085. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +187 -187
  1086. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +28 -28
  1087. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +33 -33
  1088. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +45 -45
  1089. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +56 -56
  1090. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +29 -29
  1091. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +52 -52
  1092. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +35 -35
  1093. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +42 -42
  1094. data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +37 -37
  1095. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +55 -55
  1096. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -29
  1097. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +31 -31
  1098. data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +167 -0
  1099. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -6
  1100. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -10
  1101. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +8 -8
  1102. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +14 -14
  1103. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +35 -35
  1104. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +8 -8
  1105. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +7 -7
  1106. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +13 -13
  1107. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -9
  1108. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +30 -30
  1109. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +6 -6
  1110. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +10 -10
  1111. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +8 -8
  1112. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +20 -20
  1113. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +8 -8
  1114. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +8 -8
  1115. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -10
  1116. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -10
  1117. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +10 -10
  1118. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +10 -10
  1119. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +8 -8
  1120. data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +15 -15
  1121. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +12 -12
  1122. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +8 -8
  1123. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +11 -11
  1124. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
  1125. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +11 -11
  1126. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
  1127. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +25 -25
  1128. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +48 -48
  1129. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +29 -29
  1130. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +41 -41
  1131. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +10 -10
  1132. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -6
  1133. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
  1134. data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +12 -12
  1135. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +16 -16
  1136. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
  1137. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -17
  1138. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +23 -23
  1139. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +18 -18
  1140. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -10
  1141. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +10 -10
  1142. data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +32 -32
  1143. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +35 -35
  1144. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +40 -40
  1145. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +31 -31
  1146. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +27 -27
  1147. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +32 -32
  1148. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
  1149. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +9 -9
  1150. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +28 -28
  1151. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +46 -46
  1152. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +11 -11
  1153. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  1154. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  1155. data/vendor/local/share/doc/groonga/ja/html/server.html +6 -6
  1156. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +8 -8
  1157. data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
  1158. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +16 -16
  1159. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
  1160. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
  1161. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +8 -7
  1162. data/vendor/local/share/doc/groonga/ja/html/server/package.html +28 -28
  1163. data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
  1164. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +13 -13
  1165. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +8 -8
  1166. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  1167. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +16 -16
  1168. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  1169. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
  1170. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +14 -14
  1171. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +13 -13
  1172. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +13 -13
  1173. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +27 -27
  1174. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
  1175. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +18 -18
  1176. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +18 -18
  1177. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +9 -9
  1178. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +8 -8
  1179. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +9 -9
  1180. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +16 -16
  1181. data/vendor/local/share/groonga/html/admin.old/index.html +1 -1
  1182. data/vendor/local/share/groonga/html/admin.old/index.ja.html +1 -1
  1183. data/vendor/local/share/groonga/html/admin.old/js/{jquery.flot-0.7.js → jquery.flot-0.8.3.js} +1540 -817
  1184. data/vendor/local/share/groonga/html/admin.old/js/jquery.flot.license.txt +1 -1
  1185. data/vendor/local/share/groonga/mruby/LEGAL +29 -29
  1186. data/vendor/local/share/license/mruby/AUTHORS +3 -1
  1187. data/vendor/local/share/license/mruby/MITL +1 -1
  1188. data/vendor/local/share/license/mruby/README.md +13 -45
  1189. data/vendor/local/share/license/msgpack/COPYING +4 -13
  1190. data/vendor/local/share/license/msgpack/LICENSE_1_0.txt +23 -0
  1191. data/vendor/local/share/license/msgpack/NOTICE +14 -0
  1192. data/vendor/local/share/license/msgpack/{README → README.md} +4 -4
  1193. data/vendor/local/share/man/ja/man1/groonga.1 +3429 -398
  1194. data/vendor/local/share/man/man1/groonga.1 +3670 -500
  1195. metadata +523 -89
  1196. data/lib/2.0/groonga.so +0 -0
  1197. data/vendor/local/bin/libmecab-1.dll +0 -0
  1198. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  1199. data/vendor/local/include/groonga/groonga/conf.h +0 -42
  1200. data/vendor/local/include/msgpack/adaptor/bool_fwd.hpp +0 -39
  1201. data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +0 -43
  1202. data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +0 -45
  1203. data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +0 -44
  1204. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +0 -44
  1205. data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +0 -62
  1206. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +0 -53
  1207. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +0 -52
  1208. data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +0 -40
  1209. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +0 -4341
  1210. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +0 -84
  1211. data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +0 -100
  1212. data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +0 -44
  1213. data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +0 -100
  1214. data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +0 -40
  1215. data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +0 -69
  1216. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +0 -29
  1217. data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +0 -51
  1218. data/vendor/local/include/msgpack/adaptor/pair_fwd.hpp +0 -42
  1219. data/vendor/local/include/msgpack/adaptor/raw_fwd.hpp +0 -50
  1220. data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +0 -52
  1221. data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +0 -42
  1222. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +0 -75
  1223. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +0 -75
  1224. data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +0 -40
  1225. data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +0 -42
  1226. data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +0 -42
  1227. data/vendor/local/include/msgpack_fwd.hpp +0 -28
  1228. data/vendor/local/share/license/msgpack/LICENSE +0 -202
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>7.4. Data types &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>7.4. Data types &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,10 +25,10 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="../index.html" />
29
29
  <link rel="up" title="7. Reference manual" href="../reference.html" />
30
30
  <link rel="next" title="7.5. Tables" href="tables.html" />
31
- <link rel="prev" title="7.3.55. truncate" href="commands/truncate.html" />
31
+ <link rel="prev" title="7.3.63. truncate" href="commands/truncate.html" />
32
32
  </head>
33
33
  <body role="document">
34
34
  <div class="header">
@@ -58,9 +58,9 @@
58
58
  <a href="tables.html" title="7.5. Tables"
59
59
  accesskey="N">next</a> |</li>
60
60
  <li class="right" >
61
- <a href="commands/truncate.html" title="7.3.55. truncate"
61
+ <a href="commands/truncate.html" title="7.3.63. truncate"
62
62
  accesskey="P">previous</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
64
64
  <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -154,7 +154,7 @@
154
154
  <p>測地系の詳細については、 <a class="reference external" href="http://ja.wikipedia.org/wiki/%E6%B8%AC%E5%9C%B0%E7%B3%BB">測地系 - Wikipedia</a> を参照してください。</p>
155
155
  </div>
156
156
  <div class="section" id="wgs84geopoint">
157
- <span id="builtin-type-wgs84-geo-pointer"></span><h3>7.4.3.16. <code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code><a class="headerlink" href="#wgs84geopoint" title="Permalink to this headline">¶</a></h3>
157
+ <span id="builtin-type-wgs84-geo-point"></span><h3>7.4.3.16. <code class="docutils literal"><span class="pre">WGS84GeoPoint</span></code><a class="headerlink" href="#wgs84geopoint" title="Permalink to this headline">¶</a></h3>
158
158
  <p>世界測地系(World Geodetic System, WGS 84)による経緯度であり、経度と緯度をミリ秒単位で表現した整数の組により表現します。(デフォルト値: 0x0)</p>
159
159
  <p>度分秒形式からミリ秒形式への変換方法や <a class="reference internal" href="commands/load.html"><em>load</em></a> コマンドにおける指定方法はTokyoGeoPointと同じです。</p>
160
160
  </div>
@@ -214,7 +214,7 @@
214
214
 
215
215
  <h4>Previous topic</h4>
216
216
  <p class="topless"><a href="commands/truncate.html"
217
- title="previous chapter">7.3.55. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
217
+ title="previous chapter">7.3.63. <code class="docutils literal"><span class="pre">truncate</span></code></a></p>
218
218
  <h4>Next topic</h4>
219
219
  <p class="topless"><a href="tables.html"
220
220
  title="next chapter">7.5. Tables</a></p>
@@ -252,14 +252,14 @@
252
252
  <a href="tables.html" title="7.5. Tables"
253
253
  >next</a> |</li>
254
254
  <li class="right" >
255
- <a href="commands/truncate.html" title="7.3.55. truncate"
255
+ <a href="commands/truncate.html" title="7.3.63. truncate"
256
256
  >previous</a> |</li>
257
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
257
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
258
258
  <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> &raquo;</li>
259
259
  </ul>
260
260
  </div>
261
261
  <div class="footer" role="contentinfo">
262
- &copy; Copyright 2009-2015, Brazil, Inc.
262
+ &copy; Copyright 2009-2016, Brazil, Inc.
263
263
  </div>
264
264
  </body>
265
265
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>Search &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>Search &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -26,7 +26,7 @@
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <script type="text/javascript" src="_static/searchtools.js"></script>
28
28
  <link rel="shortcut icon" href="_static/favicon.ico"/>
29
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="index.html" />
29
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="index.html" />
30
30
  <script type="text/javascript">
31
31
  jQuery(function() { Search.loadIndex("searchindex.js"); });
32
32
  </script>
@@ -59,7 +59,7 @@
59
59
  <li class="right" style="margin-right: 10px">
60
60
  <a href="genindex.html" title="General Index"
61
61
  accesskey="I">index</a></li>
62
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
62
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
@@ -107,11 +107,11 @@
107
107
  <li class="right" style="margin-right: 10px">
108
108
  <a href="genindex.html" title="General Index"
109
109
  >index</a></li>
110
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
110
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
111
111
  </ul>
112
112
  </div>
113
113
  <div class="footer" role="contentinfo">
114
- &copy; Copyright 2009-2015, Brazil, Inc.
114
+ &copy; Copyright 2009-2016, Brazil, Inc.
115
115
  </div>
116
116
  </body>
117
117
  </html>
@@ -1 +1 @@
1
- Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_clear","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_rename","reference/commands/table_tokenize","reference/commands/thread_limit","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/functions/vector_size","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/operations/prefix_rk_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/sharding","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/memcached","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[135,0,1,"cmdoption--address"],"--bind-address":[135,0,1,"cmdoption--bind-address"],"--cache-limit":[135,0,1,"cmdoption--cache-limit"],"--config-path":[135,0,1,"cmdoption--config-path"],"--daemon":[141,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[135,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[136,0,1,"cmdoption--dir"],"--disable-max-fd-check":[140,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[135,0,1,"cmdoption--document-root"],"--encoding":[135,0,1,"cmdoption--encoding"],"--ftp":[136,0,1,"cmdoption--ftp"],"--groonga":[136,0,1,"cmdoption--groonga"],"--help":[135,0,1,"cmdoption--help"],"--host":[136,0,1,"cmdoption--host"],"--log-base-path":[141,0,1,"cmdoption--log-base-path"],"--log-level":[141,0,1,"cmdoption--log-level"],"--log-output-dir":[136,0,1,"cmdoption--log-output-dir"],"--log-path":[141,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[135,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[135,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[140,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[140,0,1,"cmdoption--n-threads"],"--pid-path":[135,0,1,"cmdoption--pid-path"],"--port":[140,0,1,"cmdoption--port"],"--protocol":[136,0,1,"cmdoption--protocol"],"--query-log-path":[135,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[135,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[141,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[141,0,1,"cmdoption--send-endpoint"],"--server-id":[135,0,1,"cmdoption--server-id"],"-P":[134,0,1,"cmdoption-P"],"-a":[135,0,1,"cmdoption-a"],"-c":[135,0,1,"cmdoption-c"],"-d":[141,0,1,"cmdoption-d"],"-e":[135,0,1,"cmdoption-e"],"-h":[135,0,1,"cmdoption-h"],"-i":[136,0,1,"cmdoption-i"],"-l":[141,0,1,"cmdoption-l"],"-m":[134,0,1,"cmdoption-m"],"-n":[135,0,1,"cmdoption-n"],"-p":[140,0,1,"cmdoption-p"],"-r":[141,0,1,"cmdoption-r"],"-s":[141,0,1,"cmdoption-s"],"-t":[140,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[47,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[47,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[47,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[47,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[47,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[47,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[47,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[47,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[48,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[48,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[48,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[60,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[60,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[60,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[60,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[60,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[60,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[60,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[60,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[60,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[60,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[69,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[69,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[69,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[69,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[69,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[69,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[69,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[69,1,1,"c.GRN_PLUGIN_REGISTER"],command:[135,0,1,"cmdoption-arg-command"],db:[136,0,1,"cmdoption-arg-db"],dest:[135,0,1,"cmdoption-arg-dest"],grn_builtin_type:[66,2,1,"c.grn_builtin_type"],grn_cache:[46,2,1,"c.grn_cache"],grn_cache_close:[46,1,1,"c.grn_cache_close"],grn_cache_current_get:[46,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[46,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[46,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[46,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[46,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[47,1,1,"c.grn_column_create"],grn_column_index:[47,1,1,"c.grn_column_index"],grn_column_index_update:[47,1,1,"c.grn_column_index_update"],grn_column_name:[47,1,1,"c.grn_column_name"],grn_column_rename:[47,1,1,"c.grn_column_rename"],grn_column_table:[47,1,1,"c.grn_column_table"],grn_column_truncate:[47,1,1,"c.grn_column_truncate"],grn_command_version:[48,2,1,"c.grn_command_version"],grn_content_type:[49,2,1,"c.grn_content_type"],grn_ctx:[50,2,1,"c.grn_ctx"],grn_ctx_at:[50,1,1,"c.grn_ctx_at"],grn_ctx_close:[50,1,1,"c.grn_ctx_close"],grn_ctx_db:[50,1,1,"c.grn_ctx_db"],grn_ctx_fin:[50,1,1,"c.grn_ctx_fin"],grn_ctx_get:[50,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[50,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[50,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[59,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[50,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[50,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[50,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[50,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[50,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[50,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[59,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[50,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[50,1,1,"c.grn_ctx_use"],grn_db:[51,2,1,"c.grn_db"],grn_db_create:[51,1,1,"c.grn_db_create"],grn_db_create_optarg:[51,2,1,"c.grn_db_create_optarg"],grn_db_open:[51,1,1,"c.grn_db_open"],grn_db_recover:[51,1,1,"c.grn_db_recover"],grn_db_touch:[51,1,1,"c.grn_db_touch"],grn_db_unmap:[51,1,1,"c.grn_db_unmap"],grn_encoding:[52,2,1,"c.grn_encoding"],grn_encoding_parse:[52,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[52,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[53,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[53,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[53,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[53,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[53,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[53,1,1,"c.grn_expr_append_op"],grn_expr_close:[53,1,1,"c.grn_expr_close"],grn_expr_compile:[53,1,1,"c.grn_expr_compile"],grn_expr_create:[53,1,1,"c.grn_expr_create"],grn_expr_exec:[53,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[53,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[53,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[53,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[53,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[68,1,1,"c.grn_fin"],grn_geo_cursor_next:[54,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[54,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[54,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[54,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[54,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[48,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[52,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[59,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[45,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[55,2,1,"c.grn_hook_entry"],grn_ii:[56,2,1,"c.grn_ii"],grn_ii_buffer:[56,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[56,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[56,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[56,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[56,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[57,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[57,1,1,"c.grn_index_cursor_open"],grn_info_type:[58,2,1,"c.grn_info_type"],grn_init:[68,1,1,"c.grn_init"],grn_obj:[60,2,1,"c.grn_obj"],grn_obj_add_hook:[55,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[60,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[60,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[60,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[60,1,1,"c.grn_obj_close"],grn_obj_column:[60,1,1,"c.grn_obj_column"],grn_obj_db:[51,1,1,"c.grn_obj_db"],grn_obj_defrag:[60,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[60,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[55,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[60,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[58,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[55,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[58,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[55,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[60,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[60,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[60,1,1,"c.grn_obj_get_values"],grn_obj_id:[60,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[60,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[60,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[60,1,1,"c.grn_obj_lock"],grn_obj_name:[60,1,1,"c.grn_obj_name"],grn_obj_path:[60,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[60,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[60,1,1,"c.grn_obj_reinit"],grn_obj_remove:[60,1,1,"c.grn_obj_remove"],grn_obj_rename:[60,1,1,"c.grn_obj_rename"],grn_obj_search:[62,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[58,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[61,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[58,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[60,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[60,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[60,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[67,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[69,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[69,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[69,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[69,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[69,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[69,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[69,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[69,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[69,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[69,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[69,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[69,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[69,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[69,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[61,1,1,"c.grn_proc_create"],grn_proc_func:[61,2,1,"c.grn_proc_func"],grn_proc_get_info:[61,1,1,"c.grn_proc_get_info"],grn_proc_type:[61,2,1,"c.grn_proc_type"],grn_search_optarg:[62,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[48,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[52,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[59,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[45,1,1,"c.grn_set_lock_timeout"],grn_table_add:[63,1,1,"c.grn_table_add"],grn_table_at:[63,1,1,"c.grn_table_at"],grn_table_columns:[63,1,1,"c.grn_table_columns"],grn_table_create:[63,1,1,"c.grn_table_create"],grn_table_cursor:[64,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[64,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[64,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[64,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[64,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[64,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[64,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[64,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[64,1,1,"c.grn_table_cursor_table"],grn_table_delete:[63,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[63,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[63,1,1,"c.grn_table_difference"],grn_table_get:[63,1,1,"c.grn_table_get"],grn_table_get_key:[63,1,1,"c.grn_table_get_key"],grn_table_group:[63,1,1,"c.grn_table_group"],grn_table_group_flags:[63,2,1,"c.grn_table_group_flags"],grn_table_group_result:[63,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[63,1,1,"c.grn_table_lcp_search"],grn_table_rename:[63,1,1,"c.grn_table_rename"],grn_table_setoperation:[63,1,1,"c.grn_table_setoperation"],grn_table_size:[63,1,1,"c.grn_table_size"],grn_table_sort:[63,1,1,"c.grn_table_sort"],grn_table_sort_flags:[63,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[63,2,1,"c.grn_table_sort_key"],grn_table_truncate:[63,1,1,"c.grn_table_truncate"],grn_table_update:[63,1,1,"c.grn_table_update"],grn_table_update_by_id:[63,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[65,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[65,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[65,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[65,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[65,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[65,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[66,1,1,"c.grn_type_create"],grn_user_data:[67,2,1,"c.grn_user_data"],script:[136,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[51,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[51,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"000x":17,"0\u306e\u79d2\u8868\u8a18":198,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":55,"0\u30d9\u30fc\u30b9\u3067":[63,64],"0\u30ea\u30ea\u30fc\u30b9":[],"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":135,"0mq":40,"0x0":[38,185,201],"0x01":195,"0x02":195,"0x04":195,"0x08":195,"0x10":195,"0x20":160,"0xc7":195,"10000cent":183,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":185,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":134,"10041\u756a":135,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":135,"10043\u756a":135,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":198,"100cent":183,"100x100":146,"100x150":147,"1024r":12,"1073741824\u306e\u6574\u6570\u3067":73,"10m":137,"10t13":[177,178,180],"10t22":178,"10z":161,"128452975x503157902":[201,203,208,211],"128487316x502920929":[203,211],"128515259x503187188":[203,211],"1285858800\u306f2010":198,"128mb":39,"12gb":199,"135960000x":145,"13\u7528rpm\u306e\u63d0\u4f9b":35,"143660000x419009000":145,"145508000x":145,"146249000x":207,"146566000x":[145,207],"146607190x":207,"146710080x":207,"146741340x":207,"146867000x":207,"150x100":147,"152489000x":207,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":83,"16bit":185,"16gb":199,"16gib":184,"175904000x8464000":145,"185428000x":145,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":77,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":64,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":37,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":77,"1\u3068command":77,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":55,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":136,"1\u30ea\u30ea\u30fc\u30b9":[],"1\u5358\u8a9e\u6271\u3044":196,"1\u884c\u76ee":136,"1byte":195,"1gb":33,"1st":143,"1x139":201,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"200byte":156,"20km":207,"21th":40,"23t02":161,"24byte":195,"256gbyte":32,"256gib":32,"256kb":199,"256kib":184,"257662232kbyte":136,"29289245605469e":79,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":12,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":77,"2\u30ea\u30ea\u30fc\u30b9":[],"2\u884c\u76ee":136,"2byte":[81,195],"2nd":119,"2rd":119,"2st":119,"30ac":164,"314e":161,"32bit":[8,33,40,185],"32byte":33,"32gib":184,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":196,"3\u30ea\u30ea\u30fc\u30b9":[],"3\u884c\u76ee":136,"3rd":[40,119],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"4096byte":[32,33,181],"4097byte":181,"436218z":161,"44001770019531e":168,"45ea3034":163,"4\u30ea\u30ea\u30fc\u30b9":[],"4\u884c\u76ee":136,"4byte":195,"4e86e700":199,"4gbyte":32,"4gib":[181,195],"4kib":33,"4th":119,"5367431640625e":168,"56058502197266e":168,"56880000x":145,"59\u74b0\u5883\u306b\u304a\u3044\u3066":37,"5\u30ea\u30ea\u30fc\u30b9":[],"5th":119,"64bit":[8,33,185],"64kib":33,"65535byte":33,"6813819x139":[201,211],"6909211x139":211,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":12,"6\u30ea\u30ea\u30fc\u30b9":[],"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":14,"6elz":41,"6gib":184,"7\u30ea\u30ea\u30fc\u30b9":[],"80ghz":136,"82pre":42,"8\u306b\u5bfe\u5fdc":35,"8\u30ea\u30ea\u30fc\u30b9":[],"8bit":185,"8byte":195,"93933868408203e":168,"975mbyte":136,"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":12,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":12,"\u3042\u308a\u307e\u305b\u3093":[100,112,120,124],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":146,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[146,147],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":11,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":77,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":77,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":77,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":77,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":185,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":10,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":10,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":77,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":11,"\u3044\u307e\u3059":10,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":35,"\u304a\u3070\u305f\u3055\u3093":34,"\u304a\u3088\u3073":12,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":57,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":135,"\u304bwgs84geopoint":[146,147],"\u304c\u3042\u308a\u307e\u3059":12,"\u304c\u306a\u3044\u5834\u5408":12,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":35,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":196,"\u304c\u5fc5\u8981\u3067\u3059":12,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":155,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":146,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":63,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":63,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":63,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[47,63],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u304c\u8fd4\u3055\u308c\u307e\u3059":60,"\u3050\u308b\u3093\u304c":[160,161],"\u3050\u308b\u3093\u304c\u592a\u90ce":203,"\u3050\u308b\u3093\u304c\u6b21\u90ce":203,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u3053\u3053\u3067\u306f":198,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":198,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u3082":198,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":10,"\u3053\u306e\u3068\u304d":196,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":198,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":198,"\u3053\u306e\u3088\u3046\u306bn":198,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":198,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":136,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":136,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":136,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":196,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":198,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":12,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":135,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":136,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":12,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":11,"\u3053\u306e\u4f5c\u696d\u306f":12,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":12,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":12,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":136,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":198,"\u3053\u306e\u5834\u5408":64,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":198,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":198,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":198,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":198,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":198,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":198,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":198,"\u3053\u306e\u64cd\u4f5c\u306f":63,"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":198,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":196,"\u3053\u306e\u7d50\u679c\u306f":136,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":196,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":146,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":12,"\u3053\u308c\u3067":12,"\u3053\u308c\u306b\u3088\u308a":12,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":12,"\u3053\u308c\u306b\u5bfe\u3057\u3066":196,"\u3053\u308c\u306f":198,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":73,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":198,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":11,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":12,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":136,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":77,"\u3057\u304b\u3057":[185,196,198],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":12,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093":10,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":196,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":12,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":136,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":77,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":136,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":14,"\u3059\u308b\u3068":14,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":35,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":10,"\u3059\u308b\u3068groonga":12,"\u305d\u3053\u3067":198,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":12,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":124,"\u305d\u306e\u305f\u3081":[12,94,136,196,198],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":12,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":185,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":77,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":12,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":12,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":136,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":55,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":198,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":12,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":77,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":135,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":77,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":77,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":64,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":11,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":10,"\u305d\u306e\u969b":12,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":63,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":60,"\u305d\u308c\u305e\u308c":14,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":135,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":196,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":196,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":11,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":196,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":198,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":60,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":198,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":196,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":60,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":60,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":11,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":134,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":134,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u65e7ji":64,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":66,"\u305f\u3060\u3057":[64,73,135,196],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":34,"\u305f\u3068\u3048\u3070":196,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":77,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":198,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":198,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":12,"\u3060\u3068\u539f\u56e0\u306f":10,"\u3064\u307e\u308atest":12,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":198,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":11,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":11,"\u3067\u3042\u308c\u3070":136,"\u3067\u3059\u306d":10,"\u3067\u306f\u306a\u304ffree":35,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":12,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":198,"\u3067\u306f\u6607\u9806":63,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":63,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":50,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":198,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":135,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":198,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":198,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":35,"\u3067\u4f5c\u6210\u3057\u305f":50,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":135,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":50,"\u3067\u533a\u5207\u308a\u307e\u3059":135,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":73,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":86,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":136,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":35,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":64,"\u3067\u78ba\u4fdd\u3057\u305f":50,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":124,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":50,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":50,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":60,"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":35,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":196,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":196,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":198,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":136,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":136,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":136,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":136,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":10,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":196,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":196,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":185,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":196,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":196,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":196,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":196,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":136,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":12,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"\u3068\u306a\u308a":198,"\u3068\u308a\u3068\u3093":[160,161],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":136,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":198,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":198,"\u3068\u5171\u306b":47,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":60,"\u3068\u540c\u3058\u610f\u5473":135,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":34,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":146,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":12,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":198,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":10,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":10,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":50,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":196,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":136,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":60,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":60,"\u306b\u3042\u308b":60,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":64,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":64,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":12,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":12,"\u306b\u306a\u308a\u307e\u3059":50,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":196,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":83,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":124,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":196,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":50,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":185,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":196,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":196,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":198,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":198,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":135,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":136,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":136,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":135,"\u306b\u8a2d\u5b9a\u3059\u308b":12,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":136,"\u306e2\u5358\u8a9e\u6271\u3044":196,"\u306e3\u30d5\u30e9\u30b0\u306f":64,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[62,63,66],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[63,146,147],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":135,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u306e\u307b\u304b\u306b":185,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":64,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":135,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":135,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u306e\u30ab\u30e9\u30e0":[84,92],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[35,37],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":92,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":84,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":35,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":35,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":135,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":10,"\u306e\u5834\u5408\u306f":10,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":66,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":35,"\u306e\u66f4\u65b0":[],"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":135,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":61,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":155,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":155,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":124,"\u306ebase_version\u306e\u66f4\u65b0":12,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":198,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":35,"\u306exml\u51fa\u529b\u5bfe\u5fdc":35,"\u306f\u306a\u304f":34,"\u306f\u7121\u52b9\u3067\u3042\u308a":64,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[63,64],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":60,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":198,"\u3072\u308d\u3042\u304d":209,"\u3072\u308d\u3086\u304d":209,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":12,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":47,"\u307e\u305f\u306f":136,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[83,84,86,88,91,92,94,98,99,100,112,120,124],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":135,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":135,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":136,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":50,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":136,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":136,"\u307e\u305f\u540c\u6642\u306b":136,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":63,"\u307e\u305fgroonga":136,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":77,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":10,"\u307e\u308d\u3086\u304d":209,"\u3080\u308b\u3093\u304c":[160,161],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u3082\u3057\u304f\u306f":[63,64,185],"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":136,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":136,"\u3082\u3057groonga":136,"\u3082\u3057test":136,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":196,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":77,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":10,"\u3084red":12,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"\u3086\u304d\u3072\u308d":209,"\u3088\u3063\u3066":185,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":146,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":136,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u308d\u3086\u304d":209,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":14,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":94,"\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":185,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":35,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":57,"\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u3092\u516c\u958b":35,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":12,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[136,185,198],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":86,"\u3092\u6307\u5b9a\u3057":[64,84,92],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":64,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":11,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":64,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":64,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":64,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":64,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":64,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":63,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,51,58,60,63,66,135,136],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[47,64],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":47,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":60,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":63,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":64,"\u3092\u683c\u7d0d\u3057\u307e\u3059":47,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":14,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":60,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":146,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u3092\u8a08\u7b97\u3059\u308b":34,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":136,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u3092\u8fd4\u3057\u307e\u3059":[55,60,63,64],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":34,"\u3092\u8ffd\u52a0":[35,37],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":61,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":66,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":12,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":35,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":134,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":60,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[196,198],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":198,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":86,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":12,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":136,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":136,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":88,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":83,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":83,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":86,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":86,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":86,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":84,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":12,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":135,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":135,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":59,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":59,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[84,88,91,98,99,100],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[84,88,91,98,99,100],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":60,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":35,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":84,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":84,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":92,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":83,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":50,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":50,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":136,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":136,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":136,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":[],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":14,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":86,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":86,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u30ab\u30e9\u30e0\u540d\u306f":86,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":60,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":47,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"\u30ab\u30ec\u30fc":196,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":196,"\u30ab\u30f3\u30b8":153,"\u30ab\u30f3\u30de":94,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":34,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30ad\u30fc":135,"\u30ad\u30fc\u304c":135,"\u30ad\u30fc\u30ef\u30fc\u30c9":36,"\u30af\u30a8\u30ea\u306e":198,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":198,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":11,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":34,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":[],"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":135,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059":112,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":35,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":135,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30b0\u30eb\u30fc\u30d7\u5316":73,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":73,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":73,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":73,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":35,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":196,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":34,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":185,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":185,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":35,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":135,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":[],"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":136,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":136,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":12,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":136,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":136,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":135,"\u30b3\u30de\u30f3\u30c9\u540d":135,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":135,"\u30b3\u30df\u30c3\u30c8":12,"\u30b3\u30e1\u30f3\u30c8\u884c":136,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":35,"\u30b3\u30ed\u30f3":86,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":83,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":35,"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":77,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"\u30b5\u30fc\u30d0":135,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":136,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":136,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":136,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":135,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":136,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":136,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":135,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":136,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":120,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":135,"\u30b7\u30a7\u30eb\u4e0a":136,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":135,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":37,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":136,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":136,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":136,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":136,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":136,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":135,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":135,"\u30b9\u30ec\u30c3\u30c9\u6570":136,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":136,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":136,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":136,"\u30b9\u30fc\u30d7":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":196,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":196,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":83,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":112,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":136,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":136,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":14,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":119,"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":12,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":12,"\u30c0\u30e1\u30fc\u30b8":198,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":83,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":83,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":83,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":83,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":83,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":37,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":35,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":14,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":14,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":14,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":[],"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306f":14,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[],"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":[],"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":198,"\u30c6\u30fc\u30d6\u30eb":84,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":88,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":124,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":86,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":73,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":124,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":64,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":64,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":124,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":135,"\u30c6\u30fc\u30d6\u30eb\u540d":[84,92,124],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":124,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":185,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":124,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":124,"\u30c6\u30fc\u30d6\u30ebentry\u306b":86,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":91,"\u30c6\u30fc\u30d6\u30ebterm\u306b":86,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":83,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":34,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":12,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":83,"\u30c7\u30d5\u30a9\u30eb\u30c8":11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[135,136],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":77,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":100,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":59,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":59,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":34,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":48,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":52,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":135,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":185,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[134,135],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":34,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":84,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":92,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":136,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":135,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":94,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":94,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":94,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":135,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":11,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":34,"\u30c7\u30fc\u30e2\u30f3":135,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u30c8\u30e2\u3061\u3083\u3093":203,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":12,"\u30cb\u30c3\u30dd\u30f3":[153,167,177],"\u30cb\u30db\u30f3":[153,167,177],"\u30cb\u30db\u30f3\u30b4":177,"\u30cb\u30db\u30f3\u30b8\u30f3":177,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":198,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":135,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":83,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":83,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":83,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":83,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":83,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":83,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":83,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":83,"\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":[],"\u30d0\u30fc\u30b8\u30e7\u30f31":[],"\u30d1\u30a4\u30d7":86,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":[],"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":37,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":[],"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":134,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":11,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u6642\u306etip":[],"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":[],"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":12,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":12,"\u30d4\u30ea\u30aa\u30c9":86,"\u30d5\u30a1\u30a4\u30eb":12,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":37,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":83,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":92,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":92,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":60,"\u30d6\u30ed\u30b0":[],"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":35,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":36,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":14,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":12,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":77,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":77,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":135,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":135,"\u30d9\u30af\u30bf\u306e\u5024\u3092":35,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":185,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":12,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":136,"\u30db\u30b9\u30c8\u540d\u3068":136,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[134,135],"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":60,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":88,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":185,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":34,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[35,37],"\u30e1\u30fc\u30c8\u30eb":146,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":10,"\u30e6\u30fc\u30b6\u540d":136,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":[],"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":[],"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":[],"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":[],"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u65e5":12,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":[],"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":12,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":73,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":60,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":35,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":64,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":34,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":37,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":99,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":100,"\u30ed\u30b0\u3092":12,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":12,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":100,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":136,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":136,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":100,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":100,"\u30ed\u30b0\u51fa\u529b":99,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":135,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":98,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[98,135],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":84,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":135,"\u30ed\u30fc\u30de\u30b8":[153,167],"\u30ed\u30fc\u30de\u5b57":153,"\u30ed\u30fc\u30de\u5b57\u5165\u529b":167,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":92,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":196,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":47,"\u4e00\u65b9":198,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":60,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":60,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":60,"\u4e00\u822c\u7684\u306b\u306f":60,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":136,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":12,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":198,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":136,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":12,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":35,"\u4e0b\u8a18":64,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":83,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u4e0e\u3048":198,"\u4e16\u754c\u6e2c\u5730\u7cfb":185,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[146,147],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":11,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":94,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":83,"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":35,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":185,"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":73,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":124,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":73,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":155,"\u4e8c":167,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":77,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u4eac\u90fd":[183,196,198],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":100,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":77,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":88,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":12,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":136,"\u4ee5\u4e0b":136,"\u4ee5\u4e0b\u3067":198,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":11,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":11,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":196,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":94,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":196,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":198,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":198,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":135,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[12,14],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":12,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":12,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":135,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":135,"\u4ee5\u964d\u3092\u7121\u8996":35,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":136,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":135,"\u4efb\u610f\u306edb\u540d":136,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":37,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":86,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":136,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":12,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":51,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":66,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":135,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":86,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":77,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":86,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":50,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":83,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":83,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":77,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":77,"\u4f8b":[],"\u4f8b\u3048\u3070":[60,135,136,196,198],"\u4fee\u6b63":[],"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":77,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":198,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u5024":135,"\u50241":135,"\u50242":135,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":60,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":135,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":86,"\u5024\u306e\u7bc4\u56f2\u306f1":73,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":60,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[58,60],"\u5065\u4f5c":203,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":11,"\u5165\u529b":84,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":136,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":136,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":91,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":64,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":198,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":12,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5185\u8a33\u306f":198,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":63,"\u5185\u90e8\u7684\u306a\u5909\u66f4":12,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":146,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":198,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":55,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":73,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":136,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":99,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":136,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":136,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":94,"\u5206\u5272":196,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":14,"\u521d\u671f\u5024\u306f10\u3067\u3059":134,"\u521d\u671f\u5316\u3055\u308c\u305f":50,"\u521d\u671f\u5316\u3059\u308b":50,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u521d\u671f\u5316\u6e08\u307f\u306e":51,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":198,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":10,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":73,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":35,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":35,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":88,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":88,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":12,"\u524d\u63d0\u6761\u4ef6":[],"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":34,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":198,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u529b":120,"\u52c9\u5f37":183,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":77,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":12,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":94,"\u534a\u5f84":146,"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":64,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u5358\u4f4d":[66,146],"\u5358\u72ec\u306e\u5024":47,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":146,"\u539f\u56e0":[],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":12,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":136,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059":10,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":60,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":60,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":60,"\u53f3\u4e0a":34,"\u53f3\u4e0b":34,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":35,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":136,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":136,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":11,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":136,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":83,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":119,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":73,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":136,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":83,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":12,"\u540c\u3058\u3067\u3059":136,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":77,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":198,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":77,"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":86,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":136,"\u540c\u6642\u306b":9,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":64,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":37,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[47,60],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":60,"\u5426\u5b9a":11,"\u542b\u3081\u306a\u3044\u3082\u306e":12,"\u542b\u3081\u308b\u3082\u306e":12,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":58,"\u547c\u51fa\u5074\u3067\u6e96\u5099":58,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[47,60,63],"\u554f\u984c\u3042\u308a":37,"\u554f\u984c\u306fgroonga":136,"\u554f\u984c\u3092\u4fee\u6b63":35,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":12,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":10,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u578b":66,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":47,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":57,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":63,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":12,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":61,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":73,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":63,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":[],"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":134,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":63,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":94,"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":34,"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":63,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":63,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":63,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":198,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":196,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":196,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":196,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":196,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":196,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":86,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":135,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":73,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":86,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":47,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":50,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":134,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":135,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5b9f\u884c\u3067\u304d\u307e\u3059":12,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":63,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":55,"\u5b9f\u884c\u4f8b":[14,77],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":11,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":136,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":198,"\u5b9f\u9a13\u7684":[],"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":60,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":63,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[60,63],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":63,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":63,"\u5bfe\u7b56\u65b9\u6cd51":[],"\u5bfe\u7b56\u65b9\u6cd52":[],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[84,92],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[84,92],"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":134,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":57,"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":64,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60,63],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":63,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[57,64],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,51,55,58,60,61,67],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60,63,64],"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u5de6\u4e0a":34,"\u5de6\u4e0b":34,"\u5dee\u5206\u3092":136,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":185,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":185,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":146,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":147,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":77,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":136,"\u5f15\u6570\u3068\u3057\u3066":11,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":135,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":11,"\u5f15\u6570\u540d":135,"\u5f15\u6570\u540d1":135,"\u5f15\u6570\u540d2":135,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":135,"\u5f37":183,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":60,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":77,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":60,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":60,"\u5f62\u5f0f1":135,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":135,"\u5f62\u5f0f2":135,"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":135,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"\u5f93\u3063\u3066":119,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":11,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":11,"\u5fa9\u53f7\u3057\u305f\u9375":12,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":12,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":11,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":86,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":124,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":124,"\u611f\u8b1d":[],"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[84,88,91,98,99,100],"\u623b\u308a\u5024\u3067\u3042\u308b":57,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":57,"\u624b\u7d9a\u304d":61,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"\u62c5\u5f53\u8005":12,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":136,"\u62e1\u5f35\u5b50\u306f":136,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":136,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":77,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":77,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":77,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":77,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":77,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":136,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":83,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":144,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":144,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":35,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":34,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":11,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":136,"\u6307\u5b9a\u3059\u308b":51,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":146,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":136,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":120,"\u63a5\u7d9a\u3059\u308bgroonga":136,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":136,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":134,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":136,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":136,"\u63d0\u6848\u3092\u884c\u3046":35,"\u6539\u826f":[],"\u6539\u884c\u6587\u5b57\u306f":135,"\u6570\u5024":196,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":34,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":146,"\u6570\u5b57":136,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":198,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":198,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":135,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":60,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[47,60],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":63,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":100,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":51,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":63,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":12,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":146,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":136,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":100,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":51,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":63,"\u65e5":183,"\u65e5\u3005":10,"\u65e5\u672c":[153,167,177,183],"\u65e5\u672c\u4eba":177,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[146,147],"\u65e5\u672c\u8a9e":177,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":183,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":12,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":185,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":35,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":77,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":34,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u6700\u5f8c\u306b":198,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":12,"\u6700\u5f8c\u306e":136,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":51,"\u672c":183,"\u672c\u8a9e":183,"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":198,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":11,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":11,"\u6771\u4eac":[183,196,198],"\u6771\u4eac\u90fd":[183,196,198],"\u6771\u4eac\u90fd\u6c11":[196,198],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":198,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":63,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u68ee\u7530":203,"\u691c\u7d22":[],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":11,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":50,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":[],"\u691c\u7d22\u306e\u6319\u52d5":[],"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":196,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":198,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":59,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":59,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":196,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":196,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":91,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":198,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":198,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":198,"\u691c\u7d22\u4f8b1":[],"\u691c\u7d22\u4f8b2":[],"\u691c\u7d22\u4f8b3":[],"\u691c\u7d22\u4f8b4":[],"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":119,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":55,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":73,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u5bfe\u8c61\u306e":198,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":11,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":196,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":119,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":185,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[91,135],"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":196,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":119,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":11,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":146,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":146,"\u697d\u3057":[196,198],"\u697d\u3057\u3044billiard":[196,198],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":50,"\u69cb\u9020\u4f53\u306e\u914d\u5217":61,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":57,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":[],"\u6a19\u6e96":84,"\u6a19\u6e96\u5165":120,"\u6a19\u6e96\u5165\u529b":[83,86,88,91,92,94,98,99,100,112,124],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":135,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":135,"\u6b21\u306b":11,"\u6b21\u306bgroonga\u306etest":12,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":77,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":12,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":12,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":12,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":77,"\u6bb5\u843d\u60c5\u5831":47,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u6c11":196,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,"\u6c38\u7d9a\u7684\u306a":60,"\u6ce8\u610f":63,"\u6df1\u523b":198,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":11,"\u6e2c\u5730\u7cfb":185,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":185,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":11,"\u6f22\u5b57":153,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":60,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":12,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":56,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":14,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":12,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":136,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":136,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":83,"\u73fe\u5728":100,"\u73fe\u5728\u306f":[134,136],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":136,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":136,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":61,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":152,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":152,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":77,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":146,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":12,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":83,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":12,"\u7591\u4f3c\u30ab\u30e9\u30e0":73,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":155,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":147,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":147,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":147,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":12,"\u79d2":60,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u7a7a\u306e\u5834\u5408":[84,92],"\u7a7a\u767d":135,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":198,"\u7a7a\u767d\u3084":135,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":83,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":60,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":198,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":198,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":51,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[83,84,86,88,91,92,94,98,99,100,112,120,124],"\u7d44\u8fbc\u95a2\u6570\u306f":[144,146,147,152,155],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":185,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":185,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":185,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":60,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":136,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":63,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u7d9a\u3044\u3066":198,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":12,"\u7de8\u96c6\u8ddd\u96e2":34,"\u7def\u5ea6\u306f":185,"\u7e70\u308a\u8fd4\u3057\u6570":136,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":136,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":136,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":12,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":12,"\u811a\u6ce8":[88,146,147],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":10,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":136,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":136,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":136,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":73,"\u826f\u3044\u306e\u304b":10,"\u826f\u3044\u4f8b":10,"\u82b1\u5b50":203,"\u884c":14,"\u884c\u3059\u308b":12,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":136,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":10,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":63,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":12,"\u8a18\u53f7":[135,198],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":35,"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":198,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":198,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":196,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[98,99],"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":135,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":34,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":60,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":136,"\u8a73\u7d30\u306f":[14,198],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u8a9e":[83,183],"\u8a9e\u306e":183,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":12,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":146,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":146,"\u8ad6\u7406\u548c":11,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":11,"\u8ad6\u7406\u7a4d":11,"\u8b66\u544a\u3092\u9664\u53bb":35,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":77,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":35,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":146,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":47,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":47,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":83,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":155,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":91,"\u8ffd\u52a0\u306e\u5c5e":86,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":135,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":135,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":12,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":73,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":198,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":198,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":198,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":10,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":198,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":196,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":196,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":198,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":198,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":196,"\u90fd":[183,196,198],"\u90fd\u6c11":[196,198],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":51,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":51,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":83,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":83,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":12,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":92,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":84,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":35,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[84,92],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":10,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"\u95a2\u4fc2\u5f0f":[],"\u95a2\u4fc2\u5f0f\u306f":11,"\u95a2\u6570":14,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":61,"\u95a2\u6570\u304c\u5f15\u6570\u3092":34,"\u95a2\u6570\u306e\u8ffd\u52a0":34,"\u95a2\u6570\u306f":[11,144,146,147,155],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":152,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":11,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":196,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":198,"\u95be\u5024\u3092\u3042\u3052\u308b":[],"\u95be\u5024\u3092\u8d8a\u3048\u308b":198,"\u9759\u7684\u89e3\u6790":[],"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":196,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":196,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[196,198],"\u975e\u4e92\u63db":37,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":12,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":135,"\u99c4\u76ee\u306a\u4f8b":10,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":11,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":9,"\uff4d\uff59\uff53\uff51\uff4c":[148,149],"__uint32_t":33,"_avg":[104,119],"_dataset":[139,141],"_id":[33,41,47,60,73,75,78,85,89,93,94,104,119,122,126,131,143,151,153,160,161,162,164,171,177,178,180,182,198,202,203,204,206,208,209,210,211],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":73,"_kei":[33,39,40,41,47,60,73,75,78,85,87,89,93,94,96,103,104,115,119,122,125,126,127,131,137,143,145,150,151,153,157,158,160,161,164,167,172,177,178,180,182,184,189,201,202,203,204,206,207,208,209,210,211],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"_max":[104,119],"_min":[104,119],"_name":123,"_nsubrec":[41,47,73,104,119,202,203,207],"_post":12,"_score":[33,37,39,40,47,73,75,119,122,145,154,161,172,173,174,177,178,180,198,203,204,206,207,211],"_set_valu":38,"_sum":[104,119],"_valu":[40,41,47,73,104,119],"_yyyymmdd":[101,103,104,106],"a\u3092\u6307\u5b9a\u3057\u3066tabl":63,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":135,"akio\u3055\u3093":35,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"akio\u3055\u3093\u304c\u5831\u544a":35,"akio\u3055\u3093\u304c\u63d0\u6848":35,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":12,"apt\u306e\u5834\u5408":12,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"aramaki\u3055\u3093":35,"aramaki\u3055\u3093\u304c\u5831\u544a":35,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":11,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":63,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":63,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":12,"base_version\u306ftar":12,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":136,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":136,"benchmark\u304c\u52d5\u4f5c\u3057":136,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":136,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":136,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":136,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":136,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":136,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":136,"benchmark\u306f":136,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":136,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":136,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":136,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":136,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":136,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":136,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":136,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":136,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":136,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":136,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":136,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":136,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":136,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":136,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":136,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":136,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":136,"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":196,"blog_body\u7d22\u5f15":198,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":12,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":198,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"bom\u4ed8\u304dutf":35,"boolean":[],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":14,"break":[33,37,39,41,133],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":47,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":47,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":60,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":12,"build\u3092\u7528\u3044\u3066":14,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":12,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":51,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"builtin_type_names\u306b\u306f":51,"byte":[33,37,39,40,41,47,50,53,60,61,63,66,69,80,119,156,185,195],"byte\u9577":[47,60,63],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":11,"case":[],"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":146,"centos\u306e\u5834\u5408":12,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"char":[41,47,50,51,52,53,60,61,63,65,66,69],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":14,"check\u30b3\u30de\u30f3\u30c9\u306f":83,"chroot\u74b0\u5883\u306e":12,"class":[],"clearlock\u306f":84,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":12,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":12,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":47,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":47,"column\u306e\u5024\u304c":11,"column\u306f":47,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":47,"column_create\u306f":86,"column_list\u30b3\u30de\u30f3\u30c9":34,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":88,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":9,"com\u304cedge\u3092\u4f5c\u308b":9,"com\u306f1\u30b9\u30ec\u30c3\u30c9":9,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":50,"command_version\u3092\u8fd4\u3057\u307e\u3059":50,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":77,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":12,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":35,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":77,"configure\u306e":37,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":12,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":198,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":[],"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":[],"const":[38,47,50,51,52,53,60,61,63,64,66,69],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":14,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":50,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":47,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":60,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":63,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":50,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":50,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":50,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":50,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":50,"ctx_new\u3068\u3044\u3046queue\u306b":9,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":64,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":57,"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":64,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":14,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":14,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":[],"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":12,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":36,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":60,"db\u3068\u306a\u308a\u307e\u3059":51,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":135,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[124,135],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":124,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":135,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":63,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":51,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":60,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":50,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":50,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"db_api\u306f":11,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":198,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":37,"debian\u7cfb":12,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"debian\u7cfb\u3082\u3057\u304f\u306fr":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"debug\u3092\u8ffd\u52a0":35,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":35,"default":[],"define_selector\u306f":91,"defrag\u306f":92,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"delete\u30b3\u30de\u30f3\u30c9":34,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":60,"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":77,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":77,"description\u306b":196,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":77,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":136,"dist\u3067\u751f\u6210\u3057\u305ftar":12,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":94,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":94,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":94,"dump\u30b3\u30de\u30f3\u30c9":34,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":9,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":9,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":9,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"edge\u306fctx\u3092\u542b\u3080":9,"encoding\u306e\u5024\u304c":37,"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":86,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":86,"export":[18,33,37,40,41],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":60,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":67,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":61,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":35,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":35,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":35,"files\u306e\u5b9f\u884c":[],"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":12,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":35,"final":[68,69,75,119,137],"flags\u306b":[47,63],"flags\u306b\u306f":63,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":86,"float":[],"function":[],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":12,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":14,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":14,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":35,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":34,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":35,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":12,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":12,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":134,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":12,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[],"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":134,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":134,"gqtp\u306e\u5834\u5408":135,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":198,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":198,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":198,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":196,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":196,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":198,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":198,"grn_bool\u578b\u3092\u8ffd\u52a0":35,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":11,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":[],"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":11,"grn_expr\u306f":11,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":11,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"grn_op_adjust\u306f":11,"grn_op_and\u306f":11,"grn_op_but\u306f":11,"grn_op_or\u306f":11,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":11,"grnslap\u306f":134,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":35,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":35,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":12,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":12,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":12,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":34,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":[],"groonga\u306e\u30ab\u30e9\u30e0\u306f":185,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":12,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":73,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":11,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":14,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":12,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":35,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":12,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":12,"groonga\u306e\u7d44\u8fbc\u578b\u304b":86,"groonga\u306epackag":12,"groonga\u306f":14,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":11,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[196,198],"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":198,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":11,"groonga\u3084mysql\u306erpm":12,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":10,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":10,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":136,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":12,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":12,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":77,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":136,"groonga\u30b3\u30de\u30f3\u30c9\u306b":35,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":136,"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":135,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":35,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":136,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":77,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":12,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":112,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":135,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":134,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":135,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":134,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":83,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":77,"groonga\u5358\u4f53\u3067test":136,"groonga\u53ca\u3073groonga":136,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[83,84,86,88,91,92,94,98,99,100,112,120,124],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":77,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":136,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":134,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":136,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":136,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":83,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":84,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":86,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":88,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":91,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":92,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":94,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":99,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":100,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":112,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":120,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":124,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":144,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":146,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":147,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":152,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":155,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":10,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066autogen":12,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":12,"groonga_org_path\u306bgroonga":12,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":36,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":12,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":12,"gz\u306eversion\u304a\u3088\u3073vers":12,"hat\u7cfb":12,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"help\u3067\u51fa\u529b\u3055\u308c\u308b":37,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":14,"hiroshi\u3055\u3093":35,"hiroshi\u3055\u3093\u304c\u5831\u544a":35,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"homebrew\u306e\u66f4\u65b0":[],"homebrew\u3078pul":12,"hook\u306e\u5b9f\u884c\u9806\u4f4d":55,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":55,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":55,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":136,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":12,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":135,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":134,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":35,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":134,"http\u306e\u5834\u5408":135,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":135,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":35,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":60,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":50,"import":[0,12,28,33,37,39,40,46,50,75,76,119,123,129,137,160,170,172,173,174,183,189,205],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":47,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":47,"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":57,"indexbuf\u306e\u30b5\u30a4\u30ba":47,"init\u76f4\u5f8c\u306e\u72b6\u614b":50,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":134,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":136,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"int":[33,39,45,46,47,50,51,53,54,55,56,57,59,60,61,63,64,65,66,69,168],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":136,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":12,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"js\u306a\u3069":12,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":64,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"key\u306b\u306f":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":63,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":63,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":63,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":64,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":63,"key\u3092\u8fd4\u3057\u307e\u3059":60,"key_type\u306bt":63,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":196,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":196,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":63,"keybuf\u306e\u30b5\u30a4\u30ba":63,"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":12,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":12,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":37,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":35,"libedit\u5bfe\u5fdc":34,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":14,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":12,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"load\u30b3\u30de\u30f3\u30c9":34,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":12,"localstatedir\u3092\u4f7f\u7528":35,"log\u3067\u3059":135,"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":136,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":77,"log_level\u306f":98,"log_put\u306f":99,"log_reopen\u306f":100,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":100,"long":[33,40,41,56,59,116,123,133],"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":185,"lucid\u304b\u3089":35,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":12,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":35,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"man\u3092\u8ffd\u52a0":34,"markdown\u30d1\u30fc\u30b5\u30fc":12,"marverick\u306b\u5909\u66f4":35,"masahiro\u3055\u3093":35,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":198,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":64,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":64,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":64,"max\u3068common":64,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":64,"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":12,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":34,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":35,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":37,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":14,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":64,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":64,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":64,"mooz\u3055\u3093":37,"mooz\u3055\u3093\u304c\u4fee\u6b63":37,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":60,"msg\u306fcom\u306b\u3088\u3063\u3066":9,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":9,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":63,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":34,"n_builtin_type_names\u306b\u306f":51,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":60,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":50,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":61,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":66,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":60,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":47,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":63,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[47,60,63],"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":63,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[47,60],"namebuf\u306e\u30b5\u30a4\u30ba":[47,60],"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":12,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"new":[],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":47,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":34,"null":[],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":63,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[47,63],"null\u306a\u3089temporari":51,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":64,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":50,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":34,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":51,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":63,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":55,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":55,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":55,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":55,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":60,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":60,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":60,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":60,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":60,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":60,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":51,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":58,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":60,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":58,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":60,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":60,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":58,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":58,"obj\u306f":60,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":60,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":60,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":60,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":62,"obj\u3092lock\u3057\u307e\u3059":60,"obj\u3092unlock\u3057\u307e\u3059":60,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":60,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":67,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":55,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":55,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":55,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":61,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":55,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":60,"offset\u306f":63,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":63,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":12,"ongaeshi\u3055\u3093":35,"ongaeshi\u3055\u3093\u304c\u5831\u544a":35,"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":62,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":47,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":136,"org\u304c\u30db\u30b9\u30c8\u3092":12,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":136,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":136,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":136,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"org\u306edoc":12,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":12,"output_columns\u304b\u3089_value\u3092\u524a\u9664":35,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":94,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":11,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":64,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":136,"path\u3092":35,"pc\u306bgroonga":36,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":135,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"po\u306e\u5b9f\u884c":[],"po\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":12,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":[],"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":12,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[146,147],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":146,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":147,"point\u578b\u306e\u5024":[146,147],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[146,147],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":64,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":63,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"public":41,"push\u3057\u3066groonga":12,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":36,"quit\u306f":112,"rb\u3092\u8ffd\u52a0":35,"release\u306e\u5b9f\u884c":[],"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":12,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":12,"repositories\u914d\u4e0b\u306b":12,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"request\u3092\u9001\u308a\u307e\u3057\u305f":12,"request\u3092\u9001\u308a\u307e\u3059":12,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":63,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":11,"return":[],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":57,"root\u306b\u5909\u66f4":35,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":135,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":12,"s3ki\u3055\u3093":35,"s3ki\u3055\u3093\u304c\u5831\u544a":35,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"scorer\u306f":119,"scr\u3067\u3059":136,"scr\u306e\u4e2d\u8eab\u304c":136,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":136,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[144,146,147,152,155],"search\u3092\u884c\u3044":[63,64],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":64,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":47,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":47,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":136,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":34,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":77,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"select\u30b3\u30de\u30f3\u30c9":34,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":136,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":136,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":12,"sh\u306e\u307f\u306a\u3089\u305a":14,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":14,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":12,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":14,"shibuya\u3055\u3093":35,"shibuya\u3055\u3093\u304c\u5831\u544a":35,"shimada\u3055\u3093":35,"shimada\u3055\u3093\u304c\u5831\u544a":35,"short":[75,137],"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":185,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":86,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":35,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"shutdown\u306f":120,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":37,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":63,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":63,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":12,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"static":[33,37,41,65,138,204],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":136,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":35,"status\u30b3\u30de\u30f3\u30c9":34,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":144,"string\u306b":11,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":63,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":63,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":63,"table\u304c":63,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":47,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":63,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":64,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":63,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":63,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":63,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":63,"table\u306ecolumn":63,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":63,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":63,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":63,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":63,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":63,"table\u306fcolumn\u3068\u306f\u5225\u306b":63,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":63,"table_list\u306f":124,"takahiro\u3055\u3093":35,"takahiro\u3055\u3093\u304c\u5831\u544a":35,"takahiro\u3055\u3093\u304c\u63d0\u6848":35,"takashi\u3055\u3093":37,"takashi\u3055\u3093\u304c\u5831\u544a":37,"takuto\u3055\u3093":35,"takuto\u3055\u3093\u304c\u5831\u544a":35,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":136,"textile\u30d1\u30fc\u30b5\u30fc":12,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":57,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":198,"tokenbigram\u306a\u3069":198,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":198,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":196,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":196,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":198,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":196,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":198,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":198,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":36,"tokenmecab\u3067\u306f":198,"tokenmecab\u306e\u5834\u5408":198,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":196,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":196,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":196,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":198,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":198,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":198,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":198,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"tomita\u3055\u3093\u304c\u5831\u544a":35,"tomotaka_ito\u3055\u3093":37,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":37,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":147,"true":[33,34,40,41,75,84,85,86,87,88,89,90,91,93,95,96,97,98,99,100,101,102,104,105,106,109,110,111,114,115,116,117,118,119,123,125,126,127,131,143,145,146,147,148,149,150,151,153,154,156,157,158,160,161,162,164,167,171,172,173,174,182,185,201,202,203,204,206,207,209,210,211],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":37,"try":[3,33,45,135,183,188,206,207],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":10,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":[],"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":10,"twitter\u7de8":[],"txt\u306b\u307e\u3068\u3081\u307e\u3059":12,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":12,"txt\u306e\u5185\u5bb9":12,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":58,"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":[],"ueno\u3055\u3093":[35,36],"ueno\u3055\u3093\u304c\u5831\u544a":36,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":35,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":35,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":14,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":34,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":61,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u306e\u4e2d\u306b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":11,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":11,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":11,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":11,"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":12,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":14,"value\u304c\u5c5e\u3059\u308b\u578b":124,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":60,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":73,"var":[11,28,33,61,69,87,133,135,137,193],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":77,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":12,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":77,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":35,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":77,"virtualbox\u306fsourc":12,"vmware\u306a\u3069":12,"void":[38,45,48,51,52,59,60,63,64,65,68,69],"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"web\u7ba1\u7406\u753b\u9762":34,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":37,"while":[0,33,39,40,51,89,97,102,115,126,129,162],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":37,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":136,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u5411\u3051":12,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":[],"windows\u7cfb":12,"worker\u306f":9,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":9,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":12,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":12,"x\u3067\u306frealloc":35,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"x\u306e\u304a\u77e5\u3089\u305b":[],"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":12,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":12,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"yum\u306e\u5834\u5408":12,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,aba:[202,204,211],abbrev:145,abc:33,abcd:107,abi:33,abl:[156,171,172,173,174,175],abort:41,about:[],abov:[17,21,28,31,33,39,95,101,116,119,123,137,140,143,150,151,154,157,164,170,177,178,180,183,202,204,206,207,210,211],absolut:[110,111,114],acccess:193,accept:[0,33,37,39,41,80,116,131,135,140,143,145,161,189,195,204,206,207,210,211],access:[],accessor:[33,63],accident:40,accord:[145,201],accordingli:137,account:[2,41],accross:39,accuml:40,accumul:119,accur:[0,156],achiev:101,acquir:[33,45,97],acronym:[187,195],across:145,action:40,actual:[40,41,101,103,104,106,137,172,201,204],add:[],add_record_if_not_exist:60,addit:[],addition:[33,211],additional_configure_opt:40,address:[33,37,39,135,140,195,208],address_is_in_us:195,address_is_not_avail:195,adisk:171,adjac:[160,183],adjust:[],admin:[33,35,37,39,40,41],admin_html:[37,135],administr:[],advanc:[],advantag:[0,156,193],affect:[33,39,40,41],afr:[202,204,211],after:[17,18,28,31,33,37,39,40,41,45,54,68,90,95,109,125,137,140,148,149,161,164,181,182,184,201,203,204,208],again:[33,41,45,137,162],against:[],againt:119,agaist:39,ago:177,ahello:33,ahost1:171,aim:40,aio:40,aki:41,akihabara:211,akinori:33,akio:[33,37,39,40],akira:41,alert:[41,98,99,135,137,163],algolithm:159,algorithm:[37,82,145,174],ali:85,alia:33,alic:[85,89,119,126,131,137,143,154,160,183,189,207],alisa:154,all:[0,17,28,33,37,39,41,47,50,51,54,75,80,82,85,87,89,90,94,95,96,97,102,104,105,109,110,114,115,117,118,119,121,123,125,126,127,128,129,131,137,143,149,159,160,161,162,163,164,171,173,174,177,180,181,182,183,184,185,189,195,204,207,210],all_record:39,alloc:[],alloc_count:[79,121,135,137,168,195,204,208],allow:[0,25,33,39,141,156,204,208],allow_column:[119,160],allow_leading_not:119,allow_pragma:119,allow_upd:[119,160],almost:[37,119,184,187,199],alon:33,alphabet:[41,104,119,123,129,171,178,183],alreadi:[41,45,69,90,96,109,129,141,162,184,204,206],also:[],although:137,alwai:[0,33,41,65,78,87,102,119,122,128,137,153,160,161,177,184,195],amazon:119,amd64:12,among:[],amount:39,analysi:[0,28,161],analyz:[0,37,39,137,183],anchor:[],ani:[0,24,28,33,85,96,104,107,117,118,119,122,127,128,129,135,137,148,149,154,156,157,160,170,172,183,189],anim:203,ann:12,annot:40,anonym:181,anoth:[0,33,39,53,85,119,170],api:[],appear:[0,41,81,119,129,156,160,161,170,172,204],append:[39,53,60],apper:119,appl:164,appli:[],applic:[0,20,37,41,135,137,156,161,170,189],approach:145,approv:41,approxim:[37,39,145],appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitud:14,arai:33,aramaki:37,arc:129,architectur:[0,12,33,41,135],archiv:[],area:0,aren:[33,39,41,104,119,121,123,125,137,156,160,166,181,184,189],arg1_nam:171,arg1_valu:171,arg2_nam:171,arg2_valu:171,arg3_valu:171,arg_list_too_long:195,argc:65,argument1:[161,172],argument2:[161,172],argument:[33,37,39,40,41,50,69,95,135,138,145,148,149,150,151,153,154,156,157,158,161,171,172,175,192,195,204,206,208],argument_name1:138,argument_name2:138,argv:65,arithmet:[],armhf:41,arnaud:37,around:[156,166],arrai:[],arrang:204,art:[161,207],articl:206,articles2:206,articles_cont:206,arugment1:161,asami:40,asc:12,ascend:[103,105,119,166,202,204,211],ascii:[160,161,183],askmonti:41,assgin:161,assigend:160,assign:[],associ:[37,69,93,96,119,201,203,204],assum:[50,61,116],atsushi:[33,41],attach:[17,164,182],attent:[119,209],attr_setpshar:40,attribut:[107,108,129,130,150],atv:[202,204,211],auth_bas:[137,189],auth_basic_user_fil:[137,189],authent:[],author:137,auto:[39,41,102,122],autoconf:[6,37],autogen:[6,12,17,39],automak:[6,35],automat:[17,33,51,95,110,111,114,133,137,160,161,181,203,204,209],autoreconf:12,autotool:[],avail:[],averag:[41,119],avg:[41,104,119,134],avoid:[],awar:69,ayumu:[33,41],back:[137,161,171],background:135,backslash:[40,53,160],backup:[51,94],backward:[33,39,41,131,173,174,189],bad:[0,40,41],bad_address:195,bad_file_descriptor:195,bar:123,base:[0,17,24,25,26,28,30,39,40,41,54,116,119,129,137,138,140,141,148,149,156,160,161,167,171,172,173,174,175,177,178,180,183,188,193,207,208],basebal:[203,206],bash:[28,33],basi:204,basic:[],batch:39,bc009774:12,becam:[41,193],becaus:[0,6,7,8,21,26,33,39,41,51,78,85,86,89,90,95,101,104,110,114,119,123,126,128,137,140,143,151,153,154,156,157,160,161,162,164,167,168,170,171,172,173,174,177,178,179,180,181,182,183,184,187,188,189,193,195,201,203,204,206,209,210],becom:[0,33,42,145,185,201],been:[12,33,89,126],befor:[28,33,38,39,68,75,82,102,109,110,114,119,125,128,137,170,171,177,178,179,201,204],before_instal:21,beforehand:26,beg:[171,183],begin:[134,171,183],behav:[140,145],behavior:[33,39,41,143,154,171,183],behaviour:[40,94],beijin:145,bellow:183,belong:[71,185,202],below:[13,89,96,126,160],benchmark:[],benefit:193,bernard:33,best:0,beta:42,better:[0,41,95,119,161,206],between:[],big:[41,137],bigram:[],bigramlexicon:115,bill:[33,196,198],billiard:[196,198],bin:[18,28,31],binari:[],bind:[20,21,33,37,39,42,135,148,149,159],binlib:12,bison:12,bit:[21,23,24,25,26,29,30,31,119,136,160,161,185,201],bitwis:[],black:[164,166],blank:[33,164,183],block:[40,121,123,125,137,161,201],blog1:206,blog2:206,blog:[],blog_bodi:198,blog_comment_index:157,blog_cont:157,blog_titl:204,blogroonga:[],bm25:[172,174],bob:[89,119,126,131,137,143,154,160,189,207],bodi:[],book:161,bookmark:[75,94],bookmark_index:75,bookmark_titl:94,bool:[],boost:177,border:[39,129,143],borderlin:[101,103,106],boston:207,both:[0,23,24,25,26,30,31,33,60,71,75,78,86,104,119,125,156,160,161,162,171,174,177,181,189,195,207,211],bottom:54,bottom_right:[37,147],bottom_right_point:54,bound:41,box:119,brand:33,brasil:145,brasillia:145,brazil:202,brew:[18,27],bring:204,british:210,broadcast:207,broken:[33,37,39,40,41,47,51,97,115,125,133],broken_pip:195,brooklyn:207,brother:160,browser:[17,28,138,208],bsd:[5,7,8,28,33,37,41],buf_siz:[47,60,63],buffer:[33,40,50,53,56,60,83,206],bug:[],build:[],buildabl:37,builder:56,built:[],builtin:[],builtin_type_nam:51,bulk:[33,53,60],bump:[33,40,41],bundl:[17,33,39,40,41,154],button:[17,39,40],bye:[104,119,127,160,161,182],cach:[],cache_hit_r:[79,121,137,168,195,204,208],cache_limit:[],cache_previ:46,calc_target:[],calc_typ:[],calcul:[39,40,41,117,119,140,145,166,207,211],call:[],caller:61,calro:143,camp:207,can:[],cancel:[41,80,116],cancel_request_is_accepted_or_not:116,candid:[122,140,153,177],candidate1:122,candidate2:122,candidate_1:140,candidate_2:140,candidate_n:140,cannot:[],capit:204,caplit:[40,41],care:[17,87,101,119,160,174,177],carefulli:75,carlo:[89,126,131],cas_error:195,cascad:[],cast:[],cat:12,categor:[119,127,129],caus:[33,37,39,40,41,123,160,161,201],ceekz:40,cenos6:39,cent:183,center:[0,146],cento:[],central:207,certain:211,cflag:29,chain:157,chang:[],chapter:204,charact:[],charli:207,chart:37,check:[],child:95,china:[145,202],choic:[],choos:[5,6,7,41,79,96,119,123,135,137,171,183,201],chracter:[123,156,164],chracterist:181,christian:33,chroot:12,chunk:[33,83,184,199],circl:[0,166],cirit:137,citi:[145,166,207],clang:[14,33,39,40,41],clarifi:41,classif:202,clean:[6,7,12,14,33],clear:[12,37,39,41,47,60,97],clearli:33,clearlock:[],cleverli:90,click:119,clone:[],close:[33,96,125,148,181],close_tag1:148,clumn:184,cmake:[],cmp0014:41,code:[],col1:60,col2:60,col3:60,collaps:39,colleagu:3,collect:[0,78,207],color:164,colum:206,column1:[11,39,40,41,104,119,161,172],column2:[11,39,40,41,104,119,161,172],column3:172,column_1:157,column_2:157,column_3:157,column_copi:[],column_cr:[],column_index:[33,41,75,86,87,94,104,115,119,125,143,148,149,151,153,154,156,157,160,161,162,171,172,173,174,182,184,198,203,204,206,207,210],column_inform:87,column_information1:87,column_information2:87,column_list:[],column_list_head:87,column_n:157,column_nam:[95,96,109],column_name1:96,column_name2:96,column_name_1:119,column_name_2:119,column_name_n:119,column_remov:[],column_renam:[],column_scalar:[85,86,87,89,93,94,95,97,101,104,105,109,115,119,125,126,127,131,143,145,148,149,150,151,153,154,156,157,160,161,162,171,172,173,174,182,184,198,202,203,206,207,210],column_type_1:119,column_type_2:119,column_type_n:119,column_vector:[33,40,41,75,85,86,87,93,119,153,157,158,201,203,207],columnn:39,com:[6,7,8,12,13,17,21,119,201,202,204,208,211],comamnd:189,combin:[],combind:160,come:[166,207],comma:[33,96,161,201,202,204],command:[],command_nam:[138,208],command_vers:[33,77,79,121,137,138,148,149,150,156,158,168,195,204,208],commandinput:33,commands_column_list:87,commands_column_renam:89,commands_table_cr:124,commands_table_renam:126,comment:[],comment_cont:157,comment_index:207,comment_nam:157,comments2:206,comments_cont:206,comments_loc:207,commit:[6,7,17,41],commnad:[31,77],common:[30,37,39,63,64,119,123,135,159,160,161,181,185,206],commonli:[0,171],compar:[0,33,39,41,119,156,160],comparison:[],compat:[24,25,26,30,33,41,104,107,131,137,138,164,173,174,189],compil:[6,7,28,33,37,40,41],complet:[],complex:[33,39,40,119,161,171],complianc:137,composit:164,compress:[],compress_lzo:86,compress_zlib:86,comput:[39,69,121,161,167,172,173,174,177,178,180,184],conbin:[119,159],conbind:160,concaten:206,concatin:[39,40,140],concept:41,concret:[85,119,202,203,206],concurr:163,cond:40,cond_sign:65,condit:[],conditin:160,condition1:161,condition2:161,conditional_probability_threshold:[37,122],condtion:160,conf:[33,137,184,193,199],config:[8,28,31,33,34,37,39,135],configur:[],confirm:[],confus:[171,183],conifugr:21,connect:[1,33,39,135,195,204],connection_refus:195,consid:[41,101,123,189,193,203,206,210],consist:[33,41,119,160,175,180,183,195,204],consol:137,constant:33,constant_pattern:33,construct:[],construnct:33,consum:41,contact:17,contain:[],content:[33,37,40,41,69,78,87,104,119,125,137,150,154,156,157,160,161,162,172,182,184,189,195,203,206,207],content_index:[125,172],content_type_len:39,context:[33,37,46,50,53,60,104,121,125,137,156,157],continu:[21,33,39,40,41,121,129,135,178,183],contrast:[0,41,68,135,154,204],contrib:12,control:[],conveni:[0,1,28,37,101,177,188],convens:39,convent:39,convers:[37,137],convert:[],coordin:[145,201],copa:33,copi:[33,39,69,85,89,126],copyright:41,core:[],coremodul:137,correct:[],correctli:[33,39,204],correspond:[60,95,101,104,119,122,138,177,178,179,180],cosmo0920:[40,41],cost:[162,183],could:[39,201],couldn:[33,39],count:[0,33,101,119,121,203,207],countri:[93,202,208],cours:202,cover:[0,156],coverag:14,cpu:[],cpuinfo:[24,25,26,30],crash:[33,37,39,40,41,89,95,97,126],crch:129,created_at:104,createfilemap:33,createrepo:12,creation:[33,37,40,204],creteria:204,crit:[98,99],criteria:204,critic:[28,39,69,135,163],ctrl:[135,195,204],ctx:[11,46,47,50,51,53,54,55,56,57,58,59,60,61,62,63,64,66,67,69],curl:[21,27,28,39,116,135,137,140,168,189],current:[17,33,37,46,49,50,51,82,85,89,96,102,121,123,125,126,137,166,204,207],current_nfthread:65,cursor:[37,54],custom:[],customiz:156,cutter:[6,7,12,14],cutter_check_leak:14,cutter_debug:14,cutter_dir:12,cutter_source_path:12,cve:41,cxxflag:29,daemoinz:39,daemon:[],dai:[33,101,121,161,162,163,175,207],daiki:[35,36,37,39],danger:[47,51,89,97,126,189],dangl:125,dash:28,dat:[38,39,40],dat_kei:181,data:[],data_set_nam:122,databas:[],database_path:[],database_unmap:[],datail:119,dataset:[],date:[],dave:143,daylight:41,db1:189,db2:189,db_path:[33,135,137,138,168,187,192,195,204,208],dbm:[0,156],dbmss:0,dcb314:41,dcmake_install_prefix:[7,8,31],ddl:[41,136],deafult:37,deatil:119,deb:[12,25,30,33,37,39,40,41],debian:[],debootstrap:12,debug:[6,7,8,33,41,98,99,129,135,137,163],debugg:[6,7],decid:170,decim:[161,185,201],decreas:[],decrib:137,decrypt:12,defalt:35,default_command_vers:[79,121,137,168,195,204,208],default_token:[],defin:[33,139,153,161,162,170,175,177,185,195,204],define_selector:[],definion:161,definit:[39,93,104,119,143,145,148,149,150,151,153,154,156,157,158,160,161,171,172,173,174],defrag:[],degrad:33,degre:[37,75,161,201,211],delet:[],delimit:[0,33,40,129,180,183,201],demerit:181,demo:203,depend:[],deprec:[33,37,39,40,41,69,77,84,114,119,121,123,135,145],deriv:[141,193],descend:[33,119,122],describ:[3,5,6,7,8,17,18,19,20,21,23,24,25,26,27,28,29,30,31,33,41,44,69,75,76,78,82,85,87,89,90,95,96,97,101,102,103,104,105,106,107,109,115,116,117,118,119,121,123,125,126,127,128,129,131,132,133,135,142,149,150,157,160,161,164,165,166,170,171,172,173,174,175,176,177,178,180,183,184,195,204,206,207],descript:[],design:[39,119,187,201],desin:193,desktop:[8,31],dest:[134,135,201],dest_kei:63,dest_key_s:63,destin:[33,60,85],detail:[0,1,3,17,24,25,26,28,30,33,39,40,41,69,75,80,85,87,90,95,104,110,111,114,119,121,123,125,126,127,129,136,137,138,154,160,161,163,171,184,185,193,201,202,204,211],detect:[6,28,33,37,39,129,137],determin:[119,159,204],dev:[2,6,7,12,14,25,30,33,37,39,40,41],devel:[24,26],develop:[],devic:0,dewangga:33,dgrn_with_debug:7,dgrn_with_mrubi:[7,8],dialog:40,dic:26,dictionari:[26,33,35,39,40,41,164,183],didn:[33,41],differ:[],difficult:0,digest:189,digit:[41,104,119,123,163,171,178,183],dinam:159,dinner:0,dir:136,direct:[],directli:[161,207],directori:[6,7,17,28,33,37,39,40,41,69,137,140,141,170],directory_not_empti:195,disabl:[18,28,33,35,37,38,39,40,41,119,135,137,140,160,163,177],discard:40,discuss:[2,19],disk:[33,90,95,109,123,171,206],displai:[39,153],dist:12,distanc:[0,39,145,161,166,211],distinct:[32,140,209],distribut:[12,23,24,25,26,28,30,31,39,41,104,175],divid:[0,161,174,201],divis:[],dll:[37,39,41,69],do_gqpt:136,do_gqtp:136,do_http:136,do_loc:136,doc:[12,16,17,18,33,37,38,39,40,41,137,210],doc_bodi:210,documenataion:78,document:[],document_index:[148,149],document_vers:12,document_version_ful:12,documents_content_index:[154,156],docutil:12,doe:[0,33,39,40,65,75,119,122,133,137,157,160,161,193,201,204],doesn:[28,33,39,40,41,45,60,69,78,85,87,89,90,103,104,109,116,119,123,126,128,129,137,143,156,160,161,162,164,166,167,170,171,172,174,175,177,178,181,182,183,184,188,189,210],domain:[],domain_error:195,don:[17,23,28,33,37,41,46,49,50,53,65,75,87,90,95,96,97,102,103,115,119,123,135,137,138,153,160,161,162,164,168,170,172,173,174,180,183,189,195,204,208],done:[41,45,46,95,119,137],dot:39,doubl:[33,37,39,40,41,96,107,119,123,129,160,161,181,185,204],doubt:202,down:[],downcas:164,download:[12,24,25,26,27,28,29,30,31],downtim:[],draw:203,drildown:[],drill:207,drilldown:[],drilldown_calc_target:[],drilldown_calc_typ:[],drilldown_limit:[],drilldown_offset:[],drilldown_output_column:[],drilldown_result1:119,drilldown_result2:119,drilldown_result:119,drilldown_result_1:119,drilldown_result_2:119,drilldown_result_for_column1:119,drilldown_result_for_column2:119,drilldown_result_for_kei:119,drilldown_result_for_labeled_drilldown:119,drilldown_result_n:119,drilldown_sortbi:[],drilldown_xxx:119,droonga:[151,175],drop:[33,37,39,40,41],due:[0,156],dump:[],dump_index:[],dump_plugin:[],dump_record:[],dump_schema:[],duplic:41,dure:[39,204],dynam:[0,38,137,204],each:[],each_nam:33,ealier:39,eanbl:6,ear:129,earch:129,earlier:[33,37,131,164],easi:[0,41,135,159,170,172,189,208],easier:172,easili:41,eclips:17,ecmascript:[39,40,119,159,161],edict2grn:41,edit:[],edit_dist:[],editor:17,editrc:37,effect:[33,39,95,96,135,173,207],effici:[0,75,102,206],egg:206,eight:204,either:[19,40,119,143,160,161,171,206],eito:40,el5:24,elaps:[37,78,121,140,161,163,168,185],elapsed_tim:[78,163],element1:[75,161],element2:[75,161],element3:75,element:[33,39,40,41,75,78,81,156,201,204],elfr:39,elimin:40,ellip:[145,146],ello:33,els:[33,41],emac:17,embed:[0,33,135,137,149,156,170],embedd:33,emerg:[98,99,135,137,163],emit:39,emphas:150,empti:[33,37,40,41,87,119,160,185],enabl:[],enable_tokenized_delimit:129,enci:136,enclos:[96,204],encod:[],encodiong:161,encount:[23,24,25,26,30,31],encyclopedia:185,end:[33,134,145,160,161,168,171,183],end_of_data:195,end_tagn:148,endian:41,endpoint:[140,141],eng:[122,177],engi:[122,177],enginen:177,english:[2,14,17,18,19,37,40,41,119,177,183],enhanc:42,enorm:203,enough:[0,33,41,199,206],enourm:180,ensur:[33,178],enter:[33,40,195,204],entiti:0,entranc:204,entri:[33,40,46,55,82,84,85,86,88,91,92,93,96,97,104,115,119,125,148,149,157,160,161,184,206,207],entries_20150708:104,entries_20150709:104,entries_content_index:[119,160,161,184],entries_content_index_20150708:104,entries_content_index_20150709:104,entries_key_index:[119,160,161,184],entries_key_index_20150708:104,entries_key_index_20150709:104,entries_numb:33,entries_yyyymmdd:104,entry1:85,entry_20150708:104,entry_20150709:104,entry_bodi:[86,115],entry_kei:115,entry_selector:91,entrykei:125,enumer:204,env:170,enviromn:33,environ:[6,7,8,21,23,24,28,31,33,37,38,40,41,137,170],epel:[24,39],epoch:[201,207],equat:145,era:0,eric:143,errno:[33,41],error:[],error_cod:69,error_loc:78,error_messag:78,errror:171,escal:[],escap:[],escape_charact:53,escaped_charact:53,escaped_queri:53,escaped_str:53,escaps:[148,149,156],especi:33,essenti:[25,30,137],establish:[195,204],estim:[33,54,199],estimate_s:33,etc:[3,12,25,39,137,170,184,189,193,199,201,204],etim:134,euc:[40,135,183],euc_jp:28,eval:117,evalu:[33,40,117,157,160,161,171,183],evaluated_valu:117,evalud:117,even:[0,23,24,25,26,30,31,39,40,41,101,161,174,177,206],event:[33,189],event_dataset:[139,141],event_queri:[122,139,141,177,178,180],event_typ:139,ever:40,everi:202,everyon:208,evil:161,exact:[11,102,119,123,181],exactli:199,exampl:[],exce:[33,39,40],exceed:199,excel:170,except:[26,33,37,39,41,75,85,115,117,118,119,123,129,137,151,156,160,166,171,181,183,184],exclam:33,exclud:[39,40,41,94,96,101,103,104,106,143],exclude_t:40,excut:40,exec_format_error:195,execut:[],exist:[1,18,33,39,40,41,51,60,95,96,103,104,105,109,116,119,125,133,135,137,141,143,151,161,172,175,183,193,195,201,204,206,211],exit:[],exit_failur:68,exit_success:68,expand:[],expans:[],expect:[41,167,171,173,183,201],experiment:[33,37,38,39,40,41,46,51,95,101,102,103,104,105,106,107,111,116,117,118,133,148,149,156,171,173,174,175,183],expir:[33,82,137],explain:[33,201,204],explicitli:[],exploit:0,expnas:170,expornenti:161,expr:53,express:[],expresss:159,ext:129,extend:[41,171,206,210],extens:168,extract:[],extrct:161,f10399c0:12,facet:119,fact:[119,203],faction:207,factor:[41,119],fail:[33,37,39,40,41,45,46,69,85,90,95,110,111,114,119,123,125,126,160,204],failur:[12,33,39,41,45],fallback:33,fals:[12,34,40,41,85,86,89,90,93,97,109,115,116,125,129,131,143,148,151,154,157,160,161,183,185,201,209],famili:[129,161],familiar:202,fast:[0,33,71,78,96,104,119,123,129,145,148,149,150,151,156,160,161,166,171,172,174,181,188,189,203,204,206],faster:[28,37,40,41,183,187],fatal:41,fault:39,favorit:[],favorited_bi:207,fbnteqr:33,featur:[],feb:101,fedora:[],fedoraproject:24,feel:[41,171],fetch:[41,180,206],few:[119,188,189],ff01:33,ff1f:33,ff76:164,ff9e:164,ffef:183,fff0:183,fffe:129,fget:33,field:[33,87],figur:166,file:[],file_corrupt:195,file_exist:195,file_too_larg:195,filename_too_long:195,fill:[140,161],filter:[],fin:61,find:[0,3,17,18,28,31,33,63,85,89,119,122,126,148,149,153,156,164,167,175,177,178,180,182,183,204],finish:[33,68,116,163],firefox:17,firewood:[39,40],first:[17,28,31,33,37,40,41,50,69,78,87,104,116,119,123,137,140,148,149,156,160,161,170,171,172,189,193,201,203,204,206,207,210],five:[78,143,204],fixed_size_type_vector_column:33,flag:[],flanc:145,flexibl:[0,154,159],flow:[],flower:201,fluent:13,flush:[33,95],flushviewoffil:33,focus:204,folder:[8,31],follow:[],followe:207,fontain:37,footnot:[145,204],forc:39,force_prefix:[33,129,183],foreground:135,forget:[75,153],fork:[17,135],form:[37,40,119,137,140,159,160,164,192,195,204,207,208],form_1:204,form_2:204,format:[],former:[164,170],formula:[145,199],found:[28,31,39,40,54,63,119,167,179,183],four:[78,85,135,163,181,204],fraction:[0,201,207],fragment:92,francisco:145,frank:143,freebsd:[],freed:[41,46,51,121],freq0:180,freq1:180,freq2:180,frequenc:[33,41,122,172,173,174,205],frequency_threshold:[37,122,177,178,180],frequent:172,fresh:162,friend:[3,203],friendli:39,friendship:203,from:[],from_column:85,fromtabl:85,fsf:39,ftb:42,ftp:[12,136],ful:129,fullfil:193,fulli:[39,137],fulltext:[24,25,26,30,44,104,119,123,129,135,148,149,154,156,160,161,164,166,181,193,206],fullwidth:33,fumiyasu:37,funa:41,func:[50,61,65,69],functin:161,function_nam:78,function_not_impl:195,furigana:122,further:201,futur:[37,40,75,101,107,117,118,145,171,189,195],fuzzi:123,g0763d91:79,g8029ddb:[204,208],ga54c5f8:136,garbag:[37,40,41,83],gat:[202,204,211],gb6fd7f7:121,gb87d9f8:168,gcc:[24,26,28,29,37,39,40],gdb:[6,7],gem:12,gemfil:39,gener:[],genki:40,geo_dist:[],geo_distance2:[37,145],geo_distance3:[37,145],geo_in_circl:[],geo_in_rectangl:[],geodet:[185,211],geograph:[145,201],geoindex:[],geoloc:[],geometri:[33,37],geopoint:[],geosit:203,get:[],getaddrinfo:39,getenv:33,gettext:[17,18],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,86],gitter:[2,33],give:[0,154],given:[39,40,154,203],glib:40,global:[],glossari:[],gmo:41,gnu:[],gnupg2:12,gobject:33,golubchik:33,gone:203,goo:[160,161],good:[0,17,28,104,119,127,129,160,161,162,182,183,206],googl:[119,160,172,173,174,179],goronga:31,goroo:187,got:[40,41],gpg:12,gpl:42,gqtp:[],grace:33,gram:[0,129,161,204],grand:207,graph:0,greas:201,gregex:40,grep:[24,25,26,30],grn1:206,grn2:206,grn3:206,grn:[94,137],grn_address_is_in_us:81,grn_address_is_not_avail:81,grn_api:53,grn_arg_list_too_long:81,grn_bad_address:81,grn_bad_file_descriptor:81,grn_between_too_many_index_match_ratio:41,grn_bool:60,grn_bool_rc:50,grn_broken_pip:81,grn_builtin_typ:[60,66],grn_bulk:53,grn_bulk_vsiz:[50,53],grn_cach:[],grn_cache_clos:46,grn_cache_current_get:46,grn_cache_current_set:46,grn_cache_get_max_n_entri:46,grn_cache_open:46,grn_cache_set_max_n_entri:46,grn_cas_error:81,grn_column:[],grn_column_cr:47,grn_column_index:47,grn_column_index_upd:47,grn_column_nam:47,grn_column_name_id:47,grn_column_name_id_len:47,grn_column_name_kei:47,grn_column_name_key_len:47,grn_column_name_nsubrec:47,grn_column_name_nsubrecs_len:47,grn_column_name_scor:47,grn_column_name_score_len:47,grn_column_name_valu:47,grn_column_name_value_len:47,grn_column_renam:47,grn_column_t:47,grn_column_trunc:[41,47],grn_command_input_get_argu:33,grn_command_vers:[],grn_command_version_default:33,grn_command_version_max:48,grn_command_version_min:48,grn_command_version_st:48,grn_cond:65,grn_conf_get:33,grn_conf_set:33,grn_connection_refus:81,grn_content_json:49,grn_content_msgpack:49,grn_content_non:49,grn_content_tsv:49,grn_content_typ:[],grn_content_xml:49,grn_ctx:[],grn_ctx_at:[39,50],grn_ctx_batch_mod:41,grn_ctx_close:[37,41,50],grn_ctx_db:50,grn_ctx_fin:[39,50],grn_ctx_get:[47,50],grn_ctx_get_all_norm:33,grn_ctx_get_all_t:[33,50],grn_ctx_get_all_token:33,grn_ctx_get_all_token_filt:33,grn_ctx_get_all_typ:33,grn_ctx_get_command_vers:50,grn_ctx_get_match_escalation_threshold:59,grn_ctx_get_output_typ:50,grn_ctx_init:[37,50],grn_ctx_is_open:[33,50],grn_ctx_open:[37,50],grn_ctx_output_nul:33,grn_ctx_output_uint64:33,grn_ctx_per_db:[37,50],grn_ctx_recv:41,grn_ctx_send:[46,49,50],grn_ctx_set_command_vers:50,grn_ctx_set_fin:50,grn_ctx_set_match_escalation_threshold:59,grn_ctx_set_output_typ:50,grn_ctx_t:81,grn_ctx_use:50,grn_ctx_use_ql:41,grn_cursor_ascend:64,grn_cursor_by_id:64,grn_cursor_by_kei:64,grn_cursor_descend:64,grn_cursor_gt:64,grn_cursor_lt:64,grn_cursor_prefix:64,grn_cursor_rk:64,grn_dat:37,grn_dat_repair:38,grn_db:[],grn_db_creat:51,grn_db_create_optarg:51,grn_db_float:33,grn_db_int:60,grn_db_kei:38,grn_db_open:51,grn_db_recov:[33,41,51],grn_db_register_by_nam:36,grn_db_text:53,grn_db_touch:[35,51],grn_db_unmap:[33,51],grn_default_logger_get_path:39,grn_default_logger_get_rotate_threshold_s:33,grn_default_logger_set_path:39,grn_default_logger_set_rotate_threshold_s:33,grn_default_query_logger_get_path:39,grn_default_query_logger_get_rotate_threshold_s:33,grn_default_query_logger_set_path:39,grn_default_query_logger_set_rotate_threshold_s:33,grn_directory_not_empti:81,grn_domain_error:81,grn_enc_utf8:[52,64],grn_encod:[],grn_encoding_pars:52,grn_encoding_to_str:52,grn_end_of_data:81,grn_exec_format_error:81,grn_expr_add_var:53,grn_expr_alloc:53,grn_expr_append_const:[11,53],grn_expr_append_const_int:53,grn_expr_append_const_str:53,grn_expr_append_obj:[11,53],grn_expr_append_op:[11,53],grn_expr_clos:53,grn_expr_compil:53,grn_expr_creat:53,grn_expr_create_for_queri:11,grn_expr_estimate_s:33,grn_expr_exec:[33,50,53],grn_expr_get_keyword:53,grn_expr_get_var_by_offset:53,grn_expr_pars:53,grn_expr_syntax_escap:53,grn_expr_syntax_escape_queri:53,grn_expr_var:[61,69],grn_fals:[50,60],grn_file_corrupt:81,grn_file_exist:81,grn_file_read:33,grn_file_too_larg:81,grn_filename_too_long:81,grn_fin:[33,68],grn_float_valu:33,grn_function_not_impl:81,grn_geo:[],grn_geo_cursor_next:54,grn_geo_cursor_open_in_rectangl:54,grn_geo_estimate_in_rectangl:[37,54],grn_geo_point:54,grn_geo_select_in_circl:37,grn_geo_select_in_rectangl:[37,54],grn_geo_table_sort:33,grn_get_default_command_vers:48,grn_get_default_encod:52,grn_get_default_match_escalation_threshold:59,grn_get_lock_timeout:45,grn_get_package_label:33,grn_hook:[],grn_hook_entri:55,grn_hook_get:55,grn_hook_select:55,grn_hook_set:55,grn_id:[47,50,53,56,57,58,60,63,64,69],grn_id_nil:[50,53,63,64],grn_ii:[],grn_ii_buff:56,grn_ii_buffer_append:56,grn_ii_buffer_clos:56,grn_ii_buffer_commit:56,grn_ii_buffer_open:56,grn_ii_cursor:33,grn_ii_cursor_clos:33,grn_ii_cursor_next:33,grn_ii_cursor_open:33,grn_ii_cursor_set_min:33,grn_ii_cursor_set_min_en:33,grn_ii_estimate_size_for_lexicon_cursor:33,grn_ii_estimate_size_for_queri:33,grn_illegal_byte_sequ:81,grn_improper_link:81,grn_in_values_too_many_index_match_ratio:41,grn_inappropriate_i_o_control_oper:81,grn_incompatible_file_format:81,grn_index_cursor:[],grn_index_cursor_next:[40,57],grn_index_cursor_open:57,grn_info:[],grn_info_typ:58,grn_init:[33,39,65,68,163],grn_input_output_error:81,grn_int32_value_float_valu:33,grn_interrupted_function_cal:[81,116],grn_invalid_argu:[60,63,64,81],grn_invalid_format:81,grn_invalid_seek:81,grn_io_use_spars:33,grn_io_vers:41,grn_is_a_directori:81,grn_itoh:37,grn_ja_skip_same_value_put:40,grn_log_level:69,grn_log_level_pars:33,grn_log_level_to_str:33,grn_log_path:39,grn_logger:39,grn_logger_info:39,grn_logger_reopen:39,grn_logical_range_filter_en:33,grn_logical_range_filter_threshold:33,grn_lzo_error:81,grn_match_escal:[],grn_mecab_chunk_size_threshold:33,grn_mecab_chunked_tokenize_en:33,grn_mutex:65,grn_network_is_down:81,grn_no_buff:81,grn_no_child_process:81,grn_no_locks_avail:81,grn_no_memory_avail:81,grn_no_space_left_on_devic:81,grn_no_such_devic:81,grn_no_such_device_or_address:81,grn_no_such_file_or_directori:81,grn_no_such_process:81,grn_not_a_directori:81,grn_not_enough_spac:81,grn_not_socket:81,grn_obj:[],grn_obj_add_hook:55,grn_obj_append:60,grn_obj_cast:33,grn_obj_cast_by_id:60,grn_obj_check:60,grn_obj_clear_lock:[37,60],grn_obj_clos:[11,33,41,50,57,60],grn_obj_column:60,grn_obj_column_index:[47,57],grn_obj_column_scalar:47,grn_obj_column_vector:47,grn_obj_compar:60,grn_obj_compress_lzo:47,grn_obj_compress_zlib:47,grn_obj_db:51,grn_obj_decr:60,grn_obj_defrag:60,grn_obj_delete_by_id:[37,60],grn_obj_delete_hook:55,grn_obj_expir:60,grn_obj_fin:[50,53],grn_obj_flag:[47,53,63,66,69],grn_obj_flush:33,grn_obj_flush_recurs:33,grn_obj_get:60,grn_obj_get_element_info:58,grn_obj_get_hook:55,grn_obj_get_info:58,grn_obj_get_nhook:55,grn_obj_get_rang:60,grn_obj_get_valu:[37,60],grn_obj_id:60,grn_obj_incr:60,grn_obj_init:60,grn_obj_is_accessor:33,grn_obj_is_builtin:[37,60],grn_obj_is_function_proc:33,grn_obj_is_key_accessor:33,grn_obj_is_lock:60,grn_obj_is_normalizer_proc:33,grn_obj_is_proc_proc:33,grn_obj_is_scorer_proc:33,grn_obj_is_selector_proc:33,grn_obj_is_t:33,grn_obj_is_token_filter_proc:33,grn_obj_is_tokenizer_proc:33,grn_obj_is_tru:33,grn_obj_is_typ:33,grn_obj_key_float:66,grn_obj_key_int:66,grn_obj_key_norm:63,grn_obj_key_uint:66,grn_obj_key_var_s:66,grn_obj_key_with_si:63,grn_obj_lock:60,grn_obj_nam:60,grn_obj_own:33,grn_obj_path:[40,60],grn_obj_path_by_id:[38,60],grn_obj_persist:[47,63],grn_obj_prepend:60,grn_obj_reindex:33,grn_obj_reinit:60,grn_obj_remov:[33,37,60],grn_obj_renam:60,grn_obj_search:62,grn_obj_set:60,grn_obj_set_element_info:58,grn_obj_set_fin:61,grn_obj_set_info:58,grn_obj_set_mask:60,grn_obj_set_valu:[60,64],grn_obj_table_dat_kei:37,grn_obj_table_hash_kei:[63,64],grn_obj_table_no_kei:[63,64],grn_obj_table_pat_kei:[63,64],grn_obj_unlink:[50,60],grn_obj_unlock:60,grn_obj_user_data:67,grn_obj_vector:[50,53,60],grn_obj_with_posit:47,grn_obj_with_sect:47,grn_obj_with_weight:47,grn_object_corrupt:81,grn_op_adjust:[11,62],grn_op_and:[11,62],grn_op_and_not:62,grn_op_but:11,grn_op_cal:11,grn_op_or:[11,62],grn_op_push:11,grn_op_term_extract:33,grn_oper:[47,53,54,62,63],grn_operation_not_permit:81,grn_operation_not_support:81,grn_operation_timeout:81,grn_operation_would_block:81,grn_parse_query_flag:33,grn_pat_at:35,grn_pat_cursor_next:33,grn_pat_del:33,grn_permission_deni:81,grn_plugin_charlen:69,grn_plugin_command_cr:[41,69],grn_plugin_error:69,grn_plugin_expr_var_init:[41,69],grn_plugin_fin:69,grn_plugin_fre:69,grn_plugin_get_ruby_suffix:33,grn_plugin_get_suffix:37,grn_plugin_get_system_plugins_dir:37,grn_plugin_init:69,grn_plugin_isspac:69,grn_plugin_log:69,grn_plugin_malloc:69,grn_plugin_mutex:69,grn_plugin_mutex_clos:69,grn_plugin_mutex_lock:69,grn_plugin_mutex_open:69,grn_plugin_mutex_unlock:69,grn_plugin_proc_alloc:69,grn_plugin_proc_get_var:[41,69],grn_plugin_proc_get_var_by_offset:[41,69],grn_plugin_realloc:69,grn_plugin_regist:[36,69],grn_plugin_win32_base_dir:[33,69],grn_plugin_windows_base_dir:[33,69],grn_plugins_dir:33,grn_post:[54,57],grn_proc:[],grn_proc_creat:61,grn_proc_func:[50,61,69],grn_proc_funct:69,grn_proc_get_info:61,grn_proc_get_typ:41,grn_proc_set_selector:41,grn_proc_typ:61,grn_ptr:33,grn_ptr_init:[50,53],grn_ptr_value_at:[50,53],grn_pvector:[33,50,53],grn_qlog_path:39,grn_queri:39,grn_query_expander_tsv_synonyms_fil:170,grn_range_error:81,grn_rc:[45,46,47,48,50,51,52,53,54,55,56,58,59,60,61,62,63,64,68,69],grn_read_only_file_system:81,grn_resource_busi:81,grn_resource_deadlock_avoid:[60,81],grn_resource_temporarily_unavail:81,grn_result_too_larg:81,grn_retry_max:81,grn_search:[],grn_search_optarg:[33,62],grn_select:119,grn_selector_func:41,grn_set_default_command_vers:48,grn_set_default_encod:52,grn_set_default_match_escalation_threshold:59,grn_set_lock_timeout:45,grn_snip:[39,41],grn_snip_clos:41,grn_socket_is_already_connect:81,grn_socket_is_already_shutdown:81,grn_socket_is_not_connect:81,grn_socket_not_initi:81,grn_stack_over_flow:81,grn_success:[45,46,47,50,51,53,60,68,69,81,163],grn_syntax_error:81,grn_t:33,grn_tabl:[],grn_table_add:63,grn_table_at:[35,38,60,63],grn_table_column:63,grn_table_cr:63,grn_table_cursor:[],grn_table_cursor_clos:64,grn_table_cursor_delet:64,grn_table_cursor_get_kei:64,grn_table_cursor_get_valu:64,grn_table_cursor_next:[35,64],grn_table_cursor_open:[35,64],grn_table_cursor_set_valu:64,grn_table_cursor_t:64,grn_table_dat_kei:63,grn_table_delet:[33,63],grn_table_delete_by_id:[33,63],grn_table_differ:63,grn_table_get:[38,63],grn_table_get_kei:63,grn_table_group:[33,63],grn_table_group_flag:[33,63],grn_table_group_result:63,grn_table_hash_kei:[54,63],grn_table_lcp_search:63,grn_table_pat_kei:63,grn_table_renam:63,grn_table_s:[11,63],grn_table_select:[],grn_table_setoper:63,grn_table_sort:63,grn_table_sort_asc:63,grn_table_sort_desc:63,grn_table_sort_flag:63,grn_table_sort_kei:63,grn_table_trunc:[37,63],grn_table_upd:63,grn_table_update_by_id:63,grn_text_len:53,grn_text_printf:41,grn_text_valu:53,grn_text_vprintf:41,grn_thread_:[],grn_thread_get_limit:[33,65],grn_thread_get_limit_func:65,grn_thread_set_get_limit_func:[65,128],grn_thread_set_limit:65,grn_thread_set_limit_func:65,grn_thread_set_set_limit_func:[65,128],grn_tokenizer_error:81,grn_tokenizer_query_open:39,grn_too_large_offset:81,grn_too_many_link:81,grn_too_many_open_fil:81,grn_too_many_open_files_in_system:81,grn_too_many_symbolic_link:81,grn_too_small_limit:81,grn_too_small_offset:81,grn_true:[50,60],grn_type:[],grn_type_cr:66,grn_unknown_error:81,grn_unsupported_command_vers:81,grn_update_not_allow:81,grn_user_data:[],grn_vector_pop_el:33,grn_zlib_error:81,grndb:[],grnline:204,grnslap:[],grntest:[12,13,35,37,39],grnwrap:204,gro:[140,156],gronga:[170,179],gronnga:179,groo:[119,140],groogna:[31,38,39,119,160],groogna_default_command_vers:189,groonga1:77,groonga_cache_limit:[],groonga_cli:161,groonga_clone_dir:12,groonga_database_auto_cr:[],groonga_dir:12,groonga_dist:39,groonga_get_thread_limit:65,groonga_log_level:[],groonga_log_path:[],groonga_n_record:40,groonga_org_path:12,groonga_path:136,groonga_query_log_path:[],groonga_set_thread_limit:65,groonga_vers:37,groongau0000ful:183,grooon:140,group:[],grroonga:179,gtar:29,gted:17,gtihub:37,guard:[33,174],gurun:159,gurunavi:33,gzip:[],gzip_typ:189,had:[17,33,172],hai:11,half:164,halfwidth:164,hana:203,hanako:93,hand:[0,33,119,137,154,157,201,206],handl:[33,40,41,50,81,137,181,183,184,199,201],hang:40,hard:184,hardcod:101,hash:[],hash_index:207,hash_kei:181,hash_tag:207,hat:28,hatak:[33,41],have:[0,6,7,16,17,28,33,41,49,51,71,78,81,85,87,96,104,119,122,123,125,137,153,160,161,162,164,166,170,175,178,180,182,183,184,185,188,189,193,201,204,208],haystack:11,hdd:136,head:[41,119,134,137,195],header:[],heavi:[95,119,187],held:33,hello:[33,104,119,127,161,162,182,183],help:[],hemispher:39,hendro:40,here:[6,7,8,17,18,21,28,30,31,46,49,50,51,53,65,68,69,71,75,79,80,81,82,85,87,89,93,94,95,96,97,101,102,103,104,105,107,108,110,111,114,115,116,117,118,119,121,122,123,125,126,127,129,130,131,133,135,137,139,140,141,143,145,148,149,150,151,153,154,156,157,158,160,161,163,164,166,170,171,172,173,174,177,178,180,181,182,183,184,189,195,202,206,211],hereaft:0,hex:[161,203],hidden:0,hide:40,hideki:[33,40,41],high:[0,75,119,159,173],high_scor:85,higher:[119,122],highight_ful:148,highli:[172,173,174],highlight:[148,149],highlight_ful:[],highlight_html:[],hino:40,hiragana:[153,160,161,167,177,183],hiro:33,hiroaki:33,hiroshi:[33,37,41],hirotaka:33,hiroyuki:33,histori:37,hit:[40,119,159,209],hmm:207,hobbi:163,hoge:[135,144],hold:[201,205],home:[12,28,183],homebrew:[],homepag:136,hook:21,horikoshi:37,host1:171,host2:171,host:[6,7,8,21,37,135,136,171,175,195,208],host_name_or_ip_address:[195,208],hostnam:[39,135,136,137,138,195],hottolink:42,hour:[45,161,163,207],how_to_use_range_index:102,howev:0,html:[],html_untag:[],htpasswd:[137,189],http:[],httpd:[],httprewritemodul:137,hubeni:145,human:[87,123],hypertext:[],hyphen:[123,204],i18n:[],i386:[12,24,37],i686:136,ichii:37,id_column:47,idea:119,identifi:[85,93,185],ideograph:33,idf:[41,172,173,174],ieee:185,ifexist:96,iff:204,ignor:[33,37,39,40,41,51,93,107,116,119,129,160,170,181,183],ii_buff:56,ill:196,illegal_byte_sequ:195,illustr:202,imagin:[119,202],immedi:[0,33,116,137],implement:[17,33,37,39,41,42,85,101,104,117,118,119,137,138,145,153,161,174,175,181,187,188],implemnt:188,improper_link:195,in_valu:[],inaccur:39,inada:40,inappropriate_i_o_control_oper:195,inc:[33,41],includ:[6,16,24,33,40,41,78,85,87,89,101,103,104,106,107,110,111,114,117,118,119,126,129,143,156,161,170,173,174,183,189,204],incompat:[33,39,40,41],incompatible_file_format:195,incorrect:41,increas:[0,6,7,33,65,75,108,117,119,121,129,130,145,171,174,183,184],increment:80,incres:41,independ:[0,102],index_blog:206,index_column:[33,41,95],index_friend:203,index_messag:206,index_point:203,index_tag:203,index_titl:206,indexblog1:206,indexblog2:206,indexbuf:47,indic:[40,129,145,163,204,209],infinit:[33,37,39,41,123],info:[33,98,99,135,137,171,174],infom:50,inform:[],inherit:40,inhibit:38,init:[28,39,40,41,61],initi:[33,37,39,41,50,68,69,140],innodb:0,input:[37,40,49,78,96,119,161,167,177,178,179,180,195,204],input_file_nam:78,input_output_error:195,input_typ:96,insensit:[119,153,171],insert:[39,156,204],inspect:[33,40,41],inst:40,instal:[],instantli:[0,156],instead:[21,23,26,28,31,33,37,39,40,41,50,69,84,104,114,119,121,123,135,137,145,148,149,156,159,160,161,164,166,171,181,193,195,210],instroduc:40,insuffici:201,int16:[],int32:[],int64:[],int8:[],integ:[],integr:[21,39,40,201],intel:136,intend:[39,41,157,160,206],intens:137,interact:[195,204],interest:[3,33,171,204],interfac:[39,140,168,204],intern:[33,38,40,41,46,49,50,156,201],internet:[0,159],interpret:[12,38,160],interrupted_function_cal:195,introduc:[3,33,41,137],introduct:[],introspect:39,intuit:209,inv_res_column:136,inv_thread_column:136,invalid:[33,37,39,40,41,52,69,95,119,123,140],invalid_argu:195,invalid_format:195,invalid_seek:195,invers:[41,172,174],investig:[40,199,202],io_flush:[],ipa:26,ipad:[26,183],iptabl:[189,208],is_a_directori:195,is_anim:201,is_removable_t:125,is_stop_word:[33,41,127,182],isn:[6,7,8,24,28,33,39,40,41,50,51,65,78,82,87,95,96,102,104,117,118,119,122,123,125,135,137,156,160,170,175,177,178,179,183,195],iso:161,isob:40,isssu:40,issu:[],itagaki:35,item:[119,122,123,153,177,178,180,189,193],item_:122,item_dataset:[139,180],item_exampl:177,item_queri:[122,139,177,178,180],items_index:153,iter:161,itself:[40,41,75,129,160,170,171],ivh:[24,26],iwai:[38,39,40],jacob16bit:33,jame:209,jan:207,januari:[140,161],japan:[93,177,202,208,211],japanes:[0,2,17,19,39,41,160,161,167,177,183],jason:209,javascript:[],jeff:209,jekyl:12,jemalloc:41,jennif:209,jersei:207,jessi:[],jinja2:12,jiro:203,job:136,john:[93,209],join:2,joseph:209,jqueri:41,json:[],jsonp:[33,140],juli:33,juman:26,jumand:26,jun:[33,41],just:[],kagami:33,kakesa:33,kana:[122,139,167,177,178,180],kanako:40,kanji:[167,183],kashihara:41,katagiri:40,katakana:[122,153,164,167,177,183],kawada:41,kawaji:39,kazuhiko:[39,41],kazuhiro:40,keep:[32,37,46,50,75,162,173,174,183],kei:[],ken:203,kenichi:[35,37],kentaro:40,kernel:[39,184],key1:85,key_column:47,key_index:125,key_length:195,key_nam:[104,119],key_norm:[33,39,123,164],key_siz:63,key_typ:[],key_with_si:[123,160,161,209],keyboard:119,keybuf:63,keyr:[25,39],keys_zon:137,keyword1:[39,148],keyword2:[39,148],keyword:[],keyword_cont:53,keyword_s:53,kind:[0,185,202,204,210,211],kinjir:203,kisk:39,klose:33,know:[33,95,119,133,183,202,203,207],knowledg:0,known:[0,40,101,156,161,172,204,208],koi8r:[28,39,135],koji:39,konishi:40,korea:202,kosuk:40,kouhei:40,kuriyama:[33,41],kwic:156,kytea:[28,39,40,129],label1:[41,104,119],label2:[104,119],label:[],label_1:119,label_2:119,label_n:119,lager:40,lake:166,languag:[],larg:[0,33,39,123,133,160,161,175,181,183,184,189,201],larger:[33,41,75,90,104,119,135,141,156,180,181,184,195],larget:116,largetext:181,last:[33,39,50,129,183],last_modifi:207,lat:136,latenc:136,later:[33,37,39,40,41,85,101,119,135,148,149,150,157,164,171,175,204],latest:[],latin1:[28,39],latin:135,latitude_in_degre:161,latitude_in_degreexlongitude_in_degre:161,latitude_in_msec:161,latitude_in_msecxlongitude_in_msec:161,latter:[164,170],launchpad:[12,30,41],layer:33,layout:12,lc_messag:17,lcov:14,lead:[119,156,204],leak:[33,35,37,39,40,41,86,121],leakag:210,leaner:141,lear:180,learn:[],learner:[],least:[33,39,82,157,160,184,199],left:[],leftmost:161,length:[39,69,201],let:[],letter:164,level:[33,39,40,41,69,98,99,135,137,141,163,195,202],lexcon:204,lexicon2:206,lexicon:[],lexicon_t:136,lgpl:42,lib:[35,40,104,110,111,114,133,137,193],libedit:[26,28,33,37,39],libev:[25,28,30,38],libgcc_s_sjlj:41,libgroonga:[20,204],liblzo2:[25,30],libmecab:[12,25,30],libmemcach:14,libmsgpack:[25,30],libstemm:41,libtool:[6,33],libwinpthread:41,libzmq:[25,30],licens:[12,39,41,42],life:33,lifecycl:21,light:[89,109,126,187],like:[],limit:[],line:[],line_cont:78,line_numb:78,link:[33,39,41,119,160,161,201,202,208],linux:[],lion:39,listen:[39,137,189,195,208],liter:[],live:[123,207],lldb:[6,7],llt:129,load:[],loaded_valu:118,local:[0,6,7,12,17,18,28,135,137,161],localhost:[12,116,134,135,136,137,140,168,189,195],localstatedir:[],location_in_groonga:78,location_in_input:78,location_str:207,lock_clear:[],log1:85,log:[],log_level:[],log_put:[],log_reopen:[],log_repoen:39,logal:21,logger:[33,39],logic:[],logical_:[102,175],logical_count:[],logical_filt:103,logical_paramet:[],logical_range_filt:[],logical_select:[],logical_shard_list:[],logical_table_nam:[104,175],logical_table_remov:[],login:184,logo:39,logrot:[33,39,41],logs_20150203:[101,103,106],logs_20150204:101,logs_20150205:101,logs_20150801:105,logs_20150802:105,logs_20150814:175,logs_20150815:175,logs_20150930:105,logs_message_index:171,logs_timestamp:115,logyyyymmddhhmmss:140,london:145,longer:[42,50],longest:[37,63,161],longitude_in_degre:161,longitude_in_msec:161,longitudexlatitud:40,longtext:[],look:81,loop:[33,39,41],loose_items_index:153,looseitem:153,lot:40,lower:[119,123,129,171,204],lru:82,lte:129,lucid:[35,40],lunch:0,lz4:[],lzo:[37,39,40,41,86],lzo_error:195,m64:29,mac:[],machin:[41,135],macport:[],macro:[33,37,40,41],made:[33,37,39,204],madrid:145,mai:[0,20,28,32,33,37,39,40,41,46,47,51,65,78,87,89,95,97,101,107,109,116,117,118,121,122,123,125,126,133,137,160,161,170,171,172,173,174,181,183,184,189,203,206],mail_column:136,mailarch:12,main:[12,25,65],mainli:[41,207],mainlin:[33,41],mainstream:0,maintain:183,mainten:183,major:23,make:[],makecach:[24,39],makefil:[7,8],malfunct:33,malloc:41,manag:[0,18,21,28,50,51,80,90,116,133,135,137,156,170,181,189,208],mani:[0,3,17,28,33,37,40,41,65,75,95,101,103,104,106,119,123,125,127,129,137,139,156,160,161,171,172,173,174,179,181,184,187,188,189,193,201,202,204],manipul:159,manner:[119,204],manual:[],map:[33,37,85,90,101,119,163,177,184,199],map_hugetlb:37,mariadb:[40,41],mark:[33,38,41,123,164,182,183,193,207],marku:39,markup:[16,33],masafumi:[40,41],masaharu:[38,39,40],masahiro:[35,40,41],masatoshi:33,massachusett:207,master:[17,21,137],match:[],match_column:[],match_escalation_threshold:[],matsuu:35,matthia:33,matur:[1,101,193],maverick:37,max:[],max_command_vers:[79,121,137,168,195,204,208],max_concurr:134,max_nfthread:65,max_siz:64,max_tp:134,max_valu:184,maximium:119,maximum:[32,33,80,101,104,119,143,161,172,173,195,199,201,204],mcdonald:166,mdev:33,mean:[28,33,39,40,41,45,49,53,54,60,69,75,81,87,90,95,97,101,103,104,106,115,116,119,121,122,129,135,137,157,160,161,163,164,166,167,170,171,173,174,175,177,183,184,199,201,202,204,211],meaning:33,meaningless:171,measur:[0,37],mecab:[0,12,24,25,26,27,28,30,33,37,39,40,41,42,183],mecab_new2:39,mecab_strerror:41,mechan:[33,39,137,189],media:41,median:41,medium:[23,24,25,26,30,31,207],meerkat:37,meet:[41,207,211],meetup:33,memcach:[],memo1:172,memo2:172,memo3:172,memo4:172,memo5:172,memo6:172,memo7:172,memo:[33,151,154,158,172,173,174,182],memo_index:41,memori:[],memos_cont:182,memos_tag:151,memset:33,mention:157,menu:[31,119],mercuri:12,merg:[0,17,39],meridian:145,messag:[],message_index:[173,174],message_pack_install_prefix:[],messagepack:[],met:157,meta:[39,87],metadata:[39,117,118,172,173,174,207],meter:[145,211],method:[33,40,138,167,177,183,204],micro:[],microsecond:[163,201],microsoft:[8,31,33],midnight:161,migrat:[41,104,119,160,161],mike:93,million:32,millisecond:[45,140,161,201,211],mime:[33,189],min:[],min_siz:64,minagawa:[40,41],mind:[32,175],mine:0,mingw:12,minim:[137,143],minimum:[24,25,26,30,69,104,119,161],mininum:193,minut:[161,163,177,178,207,211],mismatch:41,miss:[33,37,39,40,41,170],mitani:41,mitsuhiro:35,mitsuo:40,mix:[33,75,122,138,183],mizuhara:33,mkdir:94,mkostemp:41,mktime:33,mmap:[],mobil:0,model:[41,128,135,195],modern:207,modif:33,modifi:[28,199,208,210],modul:[],moero:203,monei:203,monitor:[24,25,26,30,40],monkei:201,month:[33,161,163,175,203,207],montywi:38,more:[0,6,7,28,32,33,39,40,41,50,69,71,75,87,95,104,115,119,122,123,125,133,135,137,141,151,153,154,156,157,160,161,162,167,170,171,172,173,174,175,178,179,181,182,183,184,185,189,195,201,204,207,209],moreov:211,moritapo:203,moritar:206,morn:162,morpholog:[0,28,161,183],most:[33,41,50,54,75,76,104,119,160,161,171,173,183,189,201,204],motoi:40,move:[16,31,37,39,85,90],movi:203,mpaa:143,mrb:[33,104],mrubi:[6,7,8,12,33,40,41,117,118,175],msec:[37,45],msg_control:33,msg_controllen:33,msg_flag:33,msg_id:12,msghdr:33,msgpack:[168,189,195],msvc:33,msyql:75,mte:42,much:183,multi:[],multibyt:37,multilin:171,multipl:[],multipli:161,multithread:[33,90,116],munin:[],murakami:[33,40,41],museum:207,musha:33,music:[163,203],must:[6,7,8,28,33,41,46,47,51,53,54,60,68,69,71,85,87,89,90,93,95,96,97,101,103,104,106,116,119,122,123,126,128,133,140,141,150,153,157,158,160,161,171,173,174,175,180,184,189,195,199,201,204,208],mutex:[40,69],mutex_lock:65,mutex_unlock:65,mxcl:12,myisam:0,mysql:[0,24,25,26,30,33,41,42,75,107,119,148,149,156,164,170,172,175,179],n_builtin_type_nam:51,n_entri:82,n_hit:119,n_kei:63,n_keyword:53,n_like:[78,104,119,160,161,184],n_max_thread:128,n_queri:[79,121,137,168,195,204,208],n_result:63,n_tabl:50,n_var:69,nagano:41,naist:183,naiv:202,nakai:40,nakamura:33,name1:161,name2:161,name:[],name_1:[204,208],name_2:[204,208],name_s:[47,50,53,60,61,63,66,69],namebuf:[47,60],nanosecond:[78,163],naoina:[39,40],naoya:[33,40,41],narg:53,narrow:[],narwhal:37,natanael:33,natti:37,ncpu:27,nearbi:0,necessari:[37,204],need:[0,5,6,7,8,17,18,21,24,28,29,31,33,37,39,41,46,49,50,53,65,68,75,78,90,95,101,102,104,105,107,110,114,116,119,123,125,129,131,135,137,138,140,149,153,156,160,161,164,167,168,170,171,172,173,174,175,177,178,180,181,183,184,189,195,199,204,206,209,210,211],needl:11,needleess:39,needless:[33,38,39,40],neg:[33,39,45,50,61,69,81,119],neglig:41,neighbor:0,neither:95,neolog:183,neologd:183,nest:[],nested_reference_column:119,net:[2,12,201,202,203,204,208,211],netbsd:40,netinet:33,network:[39,189,195,203],network_is_down:195,never:[28,33,102,122,171],new_limit:65,new_release_d:12,new_seri:85,new_tag:85,new_valu:119,new_vers:12,newark:207,newer:[33,41],newid:85,newli:[0,41,46,131,156,162],newlin:[33,37,38],newnam:85,newvalu:47,next:[0,33,41,54,61,103,119,203,204],nfkc51lexicon:164,nfkc:164,nfthread:65,nginx:[],nginxhttpstubstatusmodul:41,ngx_http_proxy_modul:137,nice:162,night:[162,210],niho:153,nihon:[153,177],niku:41,nine:204,nippon:177,nise_nab:41,no_buff:195,no_child_process:195,no_kei:181,no_locks_avail:195,no_memory_avail:195,no_space_left_on_devic:195,no_such_devic:195,no_such_device_or_address:195,no_such_file_or_directori:195,no_such_process:195,noarch:[24,26],node:[12,21,24,33,39],nogpgcheck:39,nois:[178,183],nokubi:41,nomal:[39,119,137],nomral:160,non:[33,39,40,78,119,133,160,161,183],none:[28,97,104,107,115,119,123,127,129,135,137,139,195,206],nonexist:[33,41,104,119],nonexistent_command:33,nor:119,noraml:129,normal:[],normali:185,normalizeauto:148,normalized_text:107,normalizer_list:[],normalizerauto:[],normalizernfkc51:[],normalizs:123,normallexicon:164,normalzi:148,northern:39,nosuchfileordirectori:33,not_a_directori:195,not_enough_spac:195,not_socket:195,notat:[39,40,161],note:[0,26,33,37,39,40,41,69,93,95,101,103,116,117,118,119,123,135,137,140,150,158,161,184,189,199,201,202,204,208],noth:[33,49,65,95,119,133,135,137,158,177,179],notic:[33,98,99,135,137,173,174],notif:[40,163],notifi:116,now:[],nroonga:[21,154,206],nsi:12,nsubrecs_column:47,nterm:83,nul:[37,69,183],number1:161,number2:161,number:[],number_liter:33,numer:[],nvar:61,o_binari:39,obata:[33,35,37,40],obj:[47,51,53,55,58,60,61,62,67,83],object1:161,object2:161,object:[],object_corrupt:195,object_exist:[],objnam:[84,92],obsolet:[33,167,193],obtain:69,obvious:201,occur:[33,39,40,41,50,54,78,86,89,122,126,170,184,210],occurr:174,ocelot:[37,40],octal:161,octob:41,odd:161,off:[37,41,137,183],offici:[8,12,24,26,37,154],offlin:[],offset:[],often:[95,143],ohzeki:41,okapi:[172,174],old_releas:12,old_release_d:12,older:[33,207],oldvalu:47,omit:[37,78,95,97,110,111,114,115,119,129,145,168,177,181,204],onc:[37,39,41,68,119,164,202,206,207],oneir:[37,40],oneself:41,onga:156,ongaeshi:[33,39,40],onigmo:[33,41,171],oniguruma:33,onli:[0,6,7,17,21,23,24,25,26,30,31,33,39,41,46,49,60,68,69,81,82,87,90,93,94,95,96,97,102,103,104,105,109,110,111,114,115,116,117,118,119,121,122,123,125,128,129,131,133,135,137,138,143,148,149,150,153,154,156,157,160,161,162,164,166,170,171,172,173,174,175,181,183,189,193,201,204,206,209,211],onlin:[],onto:184,ooo:181,opaqu:[46,195],opear:161,open:[],open_tag1:148,openbsd:33,oper:[],operation_not_permit:195,operation_not_support:195,operation_timeout:195,operation_would_block:195,optarg:[51,62],optim:[33,41],optimum:137,option:[],oracl:[],orangain:40,order:[],org:[12,17,24,25,26,27,28,29,30,31,33,41,75,94,136,137,150,201,202,203,204,208,211],orient:[0,156,201],origin:[],orilldown:202,orphan:40,osanai:[33,41],osdn:[2,12,33],otehr:123,other:[],other_t:33,otherwis:[21,46,50,60,69,86,89,93,97,109,115,116,131,143,151,154,157,161,204],ouput:40,our:[2,17,175],out:[13,23,24,25,26,30,31,41,157,206],out_gqtp:136,out_http:136,out_loc:136,outdat:41,output:[],output_column:[],output_pretti:79,output_typ:[138,168],outsid:41,over:[0,33,39,40,41,148,199,208],overcom:101,overcommit:184,overcommit_memori:[],overflow:[33,37,40,41,201],overhead:[41,193],overrid:28,overwritten:211,own:[0,33,39,53,101,161,201],owner:[33,40,137],pack:[],packag:[],page:[],pagerank:[172,173,174],pagin:204,pai:119,pair:[33,119,170,177,178,179,180,201],pair_dataset:[139,180],pair_queri:[122,139,177,178,180],pakcag:26,palallel:12,pangolin:[30,39],paragraph:204,parallel:[0,6,7],paramet:[],parameter1:137,parameter_name1:138,parameter_name2:138,parent:[104,119,137],parenth:96,parenthes:204,pari:145,park:207,parker:33,pars:[41,52,53,159],parser:[160,171],part:[0,28,78,101,103,106,119,156,183,201,204,207],partial:[11,33,175,177,179,195],partit:101,pass:[6,7,8,12,33,37,38,51,65,116,128,137,145,154,160,161,171,204,208],past:39,pat:[38,39],pat_kei:181,path:[],patiricia:33,patprefix:209,patricia:[],patsuffix:209,pattern:[0,33,78,160,161,171],pcre:[39,137],penalti:40,pend:33,pentium:136,peopl:[0,183],per:[],percentag:121,perfect:[0,174],perfectli:102,perform:[],period:[],perl:137,permiss:[28,41],permission_deni:195,persist:[],person:[],pgp:12,pgroonga:[33,172,175],php:[12,33,39,41,187],phrase:[],physic:83,pid:[28,33,34,37,135],pikonyan:203,pip:18,pipermail:41,piro:41,pkg:[24,28,29,33,35,37,39],place:[2,28,207],placehold:40,plai:[0,210],plain:[33,150],plan:209,platform:[],player1:85,player:[85,126],pleas:[2,3,17,19,28,33,41,51,172,173,174,193,204],pluggabl:0,plugin:[],plugin_regist:[],plugin_unregist:[],poedit:17,point:[],pointer:69,pole:145,polici:40,pool:65,poor:170,popular:[33,75,104,119,135],port:[27,40,41,42,135,136,137,138,140,168,189,193,195,208],port_numb:[192,195,208],portabl:[37,40,137],posit:[41,54,69,75,81,87,119,127,128,129,183,204],posix:[33,161],possibl:[33,37,138,185],post:[],posted_bi:207,postfix:[101,103,104,106],postgresql:[0,156,175],potenti:40,power8:41,power:[119,171],poyonga:187,ppa:[],practic:[0,41,201],pragma:119,precis:[0,12,30,33,39,78,177,183,185,204],preconfigur:[24,25,26,30,193],predic:33,predict:[123,181,183],prefer:[33,140],preferenti:90,prefix:[],prefix_rk_search:[],prefix_search:[37,122],prepar:[],prepend:[137,160,161],press:17,pretti:[],prevent:40,previou:[39,40,41,128,171,172,193,201,202,206],price:201,primari:[],print:[],prioriti:[0,119,177],privileg:[40,208],probabl:122,problem:[33,37,39,40,46,137,160,161,173,183,201],proc:[24,25,26,30,33,40,55,61,67,69,90,119],proc_database_unmap:90,procedur:[39,40,153],process:[],processor:[0,24,25,26,30],product:[33,103,137],profil:207,program:[1,39,40,87,135,137,140,141,161],progress:163,project:[0,3,12,13,19,21,41,161,193],promot:40,prompt:[31,39,168,204],pronounc:159,proonga:187,proper:[41,78,101,207],properli:[33,39,160,208],properti:[30,163],propos:[119,179],protocol:[],provid:[0,1,21,24,25,26,30,33,39,41,44,50,65,68,87,102,104,132,135,137,140,145,154,168,170,171,172,174,175,177,178,179,180,181,188,189,193,202,204,208],proxy_cache_path:137,proxy_cache_valid:137,proxy_pass:137,pseudo:[],pthread_:40,ptr:[35,69],pub:[12,24],publish:[12,41],pull:[],pure:183,puropos:129,purpos:[40,75,101,154,204,208],push:[17,50],put:[17,33,41,138,160,167,171,174,184],python:[12,18,187],q_cond:65,q_mutex:65,quantal:39,query_expand:[],query_expans:[],query_flag:[],query_s:53,query_str:[],queryexpandertsv:[],question:[33,206],quetzal:39,quickli:[103,119,162],quiet:195,quit:[],quiz:203,quot:[40,96,107,129,160,161,204],quotat:[107,129],quotient:161,rab:[202,204,211],raccoon:203,radious_or_point:146,radix:161,rake:12,rakutan:206,ram:136,ran:177,rand:[],rand_max:155,random:211,rang:[],range_error:195,range_filt:[],range_index:[],ranguba:[41,75],rank:[41,204],rare:[33,40],rate:[40,143],rather:[33,75,87,119,162,171,172,173,174,183,187],raw:[21,40],rch:129,rdbm:[33,135],rdiscount:12,reach:184,read_only_file_system:195,readabl:[38,41],readi:[18,28,39,104,119,160,161,171],readm:[12,40],real:[0,65,119,121,156,184,185],realli:[104,119,160,161,210],realtim:[122,180],reason:[39,119,123,133,161,171,177,183,189,193,199,202],rebuild:33,recal:[0,159,183],receiv:[0,17,50,135,137,140,141,161,195],recent:82,recogn:0,recommend:[6,7,8,23,24,25,26,30,31,33,41,78,119,151,160,161,171,183,184,187,189,193,204,208],reconstruct:41,record:[],record_1_column_1:119,record_1_column_2:119,record_1_column_n:119,record_2_column_1:119,record_2_column_2:119,record_2_column_n:119,record_id:33,record_n_column_1:119,record_n_column_2:119,record_n_column_n:119,recov:[],recover:[51,133],recreat:[33,115],recrod:119,rect:[39,145,146],rectangl:[],recurs:[],recycl:41,red:[],redcloth:12,redhat:[28,37],redmin:41,reduc:[0,33,39,40,90,102,167,171,178,181,189,193,210],refer:[],referenc:[39,40,93,95,119,123,125,202],reference_column:[33,41,119,125],reference_vector_column:40,referenced_table_nam:95,referencedbycolumn:125,referencedbyt:125,referencet:125,refin:[0,40],refresh:203,regard:[40,138,160],regardless:33,regexp:[33,41],regexplexicon:[115,171],region:[166,211],regist:[],regress:[33,40,41],regular:[],regular_express:171,reindex:[],rel:[37,41,119],relat:[],relationship:[],relax:184,releas:[],relev:[0,204],reload:170,remain:[40,90,163,171],remaind:161,rememb:119,remot:[],remov:[6,7,29,33,37,38,39,40,41,51,60,85,93,114,125,127,137,171,182,201],remove_blank:107,remove_tokenized_delimit:107,removep:60,renam:[33,37,39,40,85,89,126,181,204],reopen:[37,115],rep_gqpt:136,rep_gqtp:136,rep_http:136,rep_loc:136,repair:38,repeat:[0,17],replac:[33,41,139,141,161,171,210],replai:137,repli:[206,207],replic:172,replied_to:207,replied_us:207,replies2:206,replies_cont:206,reply_to:206,repoforg:[24,39],report:[],repositori:[],repres:[53,135,159,161,171,201,203,210],represent:[17,52,53,75],reproduc:40,request_cancel:[],request_id:[33,80,116],requir:[],reqular:140,res1:63,res2:63,res_column:136,res_tabl:136,rescord:159,resiz:69,resolut:[],resolv:[37,39,75,92,172,173,174,175],resourc:[],resource_busi:195,resource_deadlock_avoid:195,resource_temporarily_unavail:195,resours:46,respect:[39,201,207,211],respons:[0,33,37,39,40,41,46,81,85,103,116,119,121,140,189,195],rest:[69,170],restart:[],restaur:0,restrict:[39,40,189,208],result:[],result_too_larg:195,retri:45,retriev:[0,119,161],retry_max:195,return_cod:[78,163],reus:[33,181],reveal:0,revers:[],rewrit:[33,42],rid:56,rid_max:57,rid_min:57,right:[],ringtail:40,risk:41,rlimit_nofil:[40,163],role:[0,154],romaji:[],roonga:[160,161,179],root:[33,40,135,137,138,208],rose:201,rotat:[33,135],roughli:201,round:37,row:[0,156],rpm:[12,24,26,33,37,38,39,40,41],rpmforg:24,rroonga:[21,33,40,41,46,148,149,151,154,157,158,159,172,206],rubi:[0,6,7,8,12,21,33,39,41,42,75,117,118,148,149,158,159,171,172,187],ruby19:39,ruby_ev:[],ruby_load:[],ruby_script:117,rubygem:39,rubyinstal:8,rule:[],run:[],runtim:33,rurema:41,ryo:33,ryoji:41,s10:41,sae:[122,178],saer:[122,178],saerc:[122,178],saerch:[122,178],sai:[161,204],sako:33,salamand:[40,41],same:[33,40,45,50,53,75,78,80,85,96,103,104,110,114,115,116,119,137,138,154,160,161,164,171,172,173,174,175,178,187,189,201,204,206,211],sampl:[],san:145,satisfi:[33,40,96,125],sato:33,satoh:37,satoshi:41,sauci:[40,41],save:[12,41,140,199,206],sbin:27,scalar:[],scale:[0,189],scan:[14,33,148,149,153,160,161],scan_build:14,schema:[33,85,93,94,101,104,119,125,139,143,145,148,149,150,151,153,154,156,157,158,160,161,162,171,172,173,174,175,178,184,206],scope:[],score1:11,score2:11,score:[],score_1:140,score_2:140,score_adjust_express:119,score_adjust_expression1:119,score_adjust_expression2:119,score_column:47,score_funct:172,score_function1:172,score_function2:172,score_function3:172,score_n:140,score_valu:33,scorer:[],scorer_tf_at_most:[],scorer_tf_idf:[],scr:136,script:[],sea:[129,177],sear:177,searc:177,search_result:119,searchabl:[33,162],searchu0000http:183,sebastian:41,sec:45,second:[78,87,116,119,121,145,160,161,163,172,185,189,201,204,206,207,211],secret:12,secsion:78,section:[3,17,20,21,23,24,25,26,27,28,29,30,31,33,40,41,44,47,56,69,75,76,82,85,87,89,90,95,96,97,101,102,103,104,105,106,107,109,115,116,117,118,119,121,123,125,126,127,128,129,131,132,133,135,137,142,145,149,160,165,170,171,172,173,174,176,177,178,180,184,195,202,206,207],secur:[],sed:[33,37,39],see:[],segment:[39,41,83],segv:40,select:[],select_opt:161,selector:[33,39,153],self:136,semi:[37,123],sen_index_delimit:42,sen_index_norm:42,sen_sel_term_extract:42,senboku:40,send:[],sender:[140,141],senna:[],sensit:183,sent:189,sentens:33,separ:[33,39,49,87,96,107,119,122,127,129,160,161,168,170,183,195,202,204],sequenc:[37,40,80,119,122,160,161,163,177,178,180,195],sequence_dataset:139,sequence_queri:139,sequenti:[33,41,153,160,161,162,171,183],serach:178,serch:[122,178],sergei:[33,41],seri:204,serial:85,serihiro:39,seriou:[39,41],serv:[12,41,201],servic:[0,21,33,39,40,41,178,184,193],session:[140,187,195],set:[],set_groonga_error:104,set_host:136,set_port:136,set_token_filt:41,setup:[17,21,40],seven:204,shape:166,shard:[],shard_name_1:105,shard_name_2:105,shard_name_n:105,share:[0,2,28,37,39,40,45,46,47,51,101,103,104,106,135,137,203,206],shell:[28,33,135,160,171],shidara:37,shift_ji:[28,183],shimada:39,shimamura:33,shimoda:35,shimomura:39,shinjyuku:211,shinoda:[33,41],shinya:39,sho:[40,41],shop:[162,196],shorter:[33,162],shorttext:[],should:[6,7,8,18,21,23,24,25,26,28,30,31,33,39,50,53,69,75,80,96,102,103,115,119,123,131,160,161,164,170,178,195],shouldn:[6,7,41],show:[0,28,33,34,37,39,40,41,49,78,81,85,93,96,101,104,107,119,143,145,148,149,150,153,154,156,157,160,161,166,168,171,172,173,174,183,192,195,201,202,203,204,207,208,211],showen:81,shown:[161,204],shuhei:41,shutdown:[],sid:[12,37,41,83],side:[0,33,39,119],sigcont:40,sign:[],signal:41,significantli:0,sigstop:40,sigusr1:37,silent:21,simil:161,similar_search:[39,122],simpl:[],simplest:[0,28,80,172],simpli:[174,209],simplifi:[40,151],sinc:[26,33,39,47,69,78,84,114,121,123,131,135,145,161,162,163,171,185,193,201,207],singl:[40,41,75,96,107,119,128,129,204],site:[41,94,97,115,119,159,201,202,203,204,206,208,211],site_titl:115,sitecountri:[202,208],sitedomain:[202,208],situat:119,six:[163,204],size:[],sizeof:[33,50,53],sji:[28,42,135],skip:[33,40,41,204],slash:161,sleepi:162,slow:[33,137,160,161,171,181],slower:[145,172,174,202],small:[33,40,41,123,160,161,181,183,207],smaller:[0,75,123,145,162,163],snake_cas:33,snippet1:156,snippet2:156,snippet3:156,snippet:[39,40,42,156],snippet_html:[],soccer:203,social:203,socket:39,socket_is_already_connect:195,socket_is_already_shutdown:195,socket_is_not_connect:195,socket_not_initi:195,soft:184,softwar:[],solari:[],solr:161,solut:[],solv:[172,173,174,201],some:[0,1,2,8,17,26,28,32,33,39,40,41,45,53,68,75,78,80,101,103,104,116,123,125,129,139,142,154,160,161,163,171,172,175,182,183,184,185],someon:207,someth:41,sometim:41,soon:[156,166,175,189],sort:[],sortbi:[],sound:[164,178],soundkitchen:[37,39],sourc:[],source_column_nam:33,source_file_nam:78,sourceforg:[2,12,33],southern:39,space:[0,33,37,40,69,75,96,107,119,129,160,171,180,183,204],spain:145,spammer:[172,173,174],span:[148,149,150,156],spars:33,speaker:2,spec:[37,39,40],specfi:54,special:[17,28,40,45,53,78,81,119,129,138,148,149,156,160,171,195,204],specif:[],specifi:[],speech:[0,183],speed:[37,179,181],spell:[170,210],spend:[160,161],spheric:145,sphinx:[12,15,16,17,18,33,41],sphr:[145,146],spil:33,split:[33,37,161,181,183],spokesman:3,sport:203,spreadsheet:170,sql:[101,119,172,202],squar:145,squeez:[12,40],src:[12,25,201],src_kei:63,src_key_siz:63,ssh:12,ssssss:163,stabl:[41,77,122],stack:40,stack_over_flow:195,stage:41,stamp:[163,177,178,180],stand:[33,187],standard:[33,96,137,185,195,204],start:[],start_tim:[33,79,121],starttim:[33,79,121,137,168,195,204,208],startup:39,state:[39,93,145,187,195],statement:161,station:[166,207,211],statu:[],status:[81,195],stdin:38,stem:[25,30,41,182],step:[17,28,31,85,171,180,201,204],still:[16,17,40,41,89,116,126],stop:[],stop_word:[94,127,182],storategi:119,str:53,str_length:69,str_ptr:69,str_size:53,strang:171,stream:41,strerror:41,strict:[33,41],string1:144,string2:144,string:[],string_liter:41,string_siz:53,strip:150,strlen:69,strongli:[23,24,25,26,30,31],structur:[0,41,78,181,203],stub:41,studio:[8,31,33,39,40],style:[],sub1:[104,119],sub:[0,12],sub_filt:[],subject:40,submiss:[122,177,178,180],submit:[],subrecord:40,subset:185,substit:119,substitut:[17,21,119,154,160,161],substr:[160,161],succeed:[28,33,81,86,93,97,115,131,204],succeeded_or_not:[89,93,97,115,131],success:[],successfulli:[69,204],successor:161,suddenli:40,sudo:[12,14,18,21,24,25,26,27,28,29,30,39,184,193,199,208],suenaga:33,suffici:69,suffixsearchterm:[160,161],sug:179,suggest:[],suggest_prepar:[122,177,178,180],sugimoto:33,suit:[0,41,156],suitabl:[41,104,119,123,135,162,172,174,181,183],sum:[41,104,119,172],summar:202,summari:[],suno:41,superior:[0,156],support:[],suppress:[38,39,41],sure:204,surfac:166,surround:[39,148,149,156,161],suzuki:39,swap:184,swig:42,symbol:183,synonym:[119,170,210],syntax:[],syntax_error:195,syscal:[41,204],sysconfig:193,sysctl:[27,33,184,199],system:[0,5,6,7,28,29,30,33,37,40,41,90,95,104,119,135,137,156,160,161,162,184,185,201,211],systemctl:193,systemd:[33,39],tab:[33,49,168,170,195],tabl:[],table1:63,table2:63,table_:[123,181],table_buff:50,table_cr:[],table_dat_kei:[],table_hash_kei:[],table_list:[],table_nam:[95,109],table_name_of_index_column:95,table_no_kei:[],table_pat_kei:[],table_remov:[],table_renam:[],table_token:[],tablecursor:33,tablegroupflag:33,tablenam:77,tables_buff:50,tag:[],tagger:0,tahr:[30,41],tail:[12,195],tajima:39,takashi:93,takatsugu:41,takayama:33,takayuki:37,take:[82,85,87,89,90,95,97,101,102,103,104,105,106,107,108,109,110,111,114,115,116,117,118,119,121,123,125,126,127,128,129,130,131,133,138,193,204],takiuchi:40,talk:[2,12,33,40],tamano:41,tanab:40,tanuma:41,tar:[12,24,25,26,27,28,29,30],target:[],target_charact:53,target_nam:[],taro:203,task:[0,39],tasuku:[33,42],tatsuya:39,techniqu:[172,173,174],temporari:[],tend:206,term:[],termin:[],teruya:33,test:[6,12,14,23,24,25,26,30,31,33,39,41,102,103,136,137,183,201,204,206,207,208],test_loc:136,test_str:14,test_text_otoj:14,testdb:[136,141],tetsuharu:41,tex:129,than:[],thatn:119,theater:210,theatr:210,thei:[28,29,33,75,96,104,110,111,114,119,125,129,137,138,148,149,153,156,157,159,160,161,162,163,168,170,172,173,174,175,177,178,179,180,181,183,184,189],them:[16,17,24,25,26,28,30,33,45,53,75,78,86,95,96,104,119,125,145,160,171,172,183,184,195,201,204,211],themselv:[17,167,170],therubyrac:12,thesauru:119,thi:[0,3,5,6,7,8,18,20,21,23,24,25,26,27,28,29,30,31,33,37,39,40,41,44,46,47,49,50,51,60,69,75,76,78,82,85,86,87,89,90,95,96,97,101,102,103,104,105,106,107,108,109,110,111,114,115,116,117,118,119,121,123,125,126,127,128,129,130,131,132,133,135,137,139,140,142,143,145,148,149,151,154,156,157,158,160,161,163,165,167,168,170,171,172,173,174,175,176,177,178,180,183,184,185,189,195,199,201,202,204,206,207,208,209,210,211],thing:33,think:[119,125,161,172,173,174],third:[87,119,161,201],those:[0,17,28,29,38,119,145,156,159,160,161,164,168,179,180,181,189,201,204],though:[0,39,40,41,101,177,206],thread:[0,33,40,41,47,50,51,65,69,90,97,102,121,125,128,135,140,163,189],thread_count:33,thread_limit:[],thread_tabl:136,thread_title_column:136,threasd:135,three:[40,75,78,89,101,107,119,145,148,159,173,174,177,178,201,202,204,206],threshold:[],through:[0,137],throughput:[37,189],thu:[0,41,101,139,141,160,205,206,210,211],tid:57,time:[],time_column:136,time_stamp:163,timeout:[40,45,60],timestamp:[101,105,109,115,207],timeuot:45,titl:[12,40,41,94,97,104,115,119,125,144,157,160,161,172,173,174,201,202,203,204,206,208],title_index:172,tiwawan:33,tld:202,tmp:[6,7,12,40,87,89,122,124,126,135,140,170,171,189,195,204,208],to_column:85,tobbi:154,todai:0,todo:[],token_filt:[],tokenbigram:[],tokenbigramignoreblank:[],tokenbigramignoreblanksplitalpha:183,tokenbigramignoreblanksplitalphadigit:183,tokenbigramignoreblanksplitsymbol:[],tokenbigramignoreblanksplitsymbolalpha:[],tokenbigramignoreblanksplitsymbolalphadigit:[],tokenbigramsplitsymbol:[],tokenbigramsplitsymbolalpha:[],tokenbigramsplitsymbolalphadigit:[],tokenbigramsplitxxx:183,tokenbigrm:85,tokendelimit:[],tokendelimitnul:[],tokenfilterstem:[],tokenfilterstopword:[],tokenizer_error:195,tokenizer_list:[],tokenizs:[],tokenkytea:39,tokenmecab:[],tokenregexp:[],tokentrigram:[],tokenunigram:[],tokyo:[145,211],tokyogeopoint:[],tom:154,tomita:35,tomo:203,tomoatsu:[35,39],tomygx:33,too:[33,40,65,75,119,161,201,206],too_large_offset:195,too_many_link:195,too_many_open_fil:195,too_many_open_files_in_system:195,too_many_symbolic_link:195,too_small_limit:195,too_small_offset:195,tood:69,tool:[],top:[54,202],top_left:[37,147],top_left_point:54,topic:[],tortoisegit:8,totabl:85,total:[],touch:[33,51],toybox:201,tracker:[],trade:183,tradit:[0,41],transfer:[],transit:193,translat:[],travel:207,travi:[],treat:[33,39,40,41,101,103,104,106,119,129,161,166,177,178],tree:41,tri:[45,207],trial:0,trie:[],tritonn:[104,119,160,161],troubl:17,truncat:[],trust:12,trusti:[12,30,41],tsv:[],tune:[],turn:137,tutori:[],tweet:[2,162],twice:[33,119,160],two:[19,24,25,26,30,33,40,41,50,53,78,86,87,95,102,104,119,123,126,128,129,137,141,145,151,153,154,156,157,160,163,164,166,171,173,178,180,183,188,189,193,202,203,204,206,207,211],txt:[16,17,183],type1:122,type2:122,type:[],type_of_the_column:157,typic:[33,119],typo:[33,37,39,40,41,170,177,178],u0000ful:183,u0000http:183,ubuntu:[],ueno:[37,39],uid:12,uint16:[],uint32:[],uint32_column:33,uint32_t:65,uint64:[],uint8:[],uint:39,ull:129,ultra:203,umask:41,umemoto:37,unari:40,unauthent:[25,39],unchang:69,uncontinu:39,undefin:201,under:[28,41,137,138,140,141,189],underflow:201,underli:0,underscor:123,understand:[41,119,204],unexpect:[39,41],unexpectedli:[33,40,95],unicod:[33,164],unicorn:33,uniniti:33,uninstal:39,uniqu:[116,140],unit:[76,93,121,145,156,161,183,195],univers:30,unix:[],unix_time_when_command_is_start:78,unknow:41,unknown:[38,52],unknown_error:195,unlink:53,unload:39,unlock:69,unmanag:83,unmap:[33,51,90],unnecessari:184,unpatch:42,unrecover:51,unregist:[110,111],unrel:37,unresolv:37,unsaf:[33,51],unsign:[],unsplit:[11,119],unstabl:38,unsupport:33,unsupported_command_vers:195,untag:150,until:[17,41,45,69,90,96,119,162],unus:[41,90],updag:39,update_buffer_s:56,update_not_allow:195,updated_at:198,upgrad:[],upload:12,upper:[37,41,123,171,204],uptim:[79,121,137,168,195,204,208],uri:[137,138],url:[37,41,94,138,189],usa:202,usag:[],use_offline_index:38,use_range_index:[],useless:51,user:[],user_ag:143,user_column:136,user_data:[61,69],user_input:161,usernam:[31,203],users_index:207,users_loc:207,users_memo:154,users_nam:154,usr:[14,27,28,110,111,114,135,137],usual:[33,50,141,201,206],utc:[78,161],utf8:[28,52,135],utf:[28,39,40,42,140,161,164,168,183],util:137,utop:33,uuuuuu:161,uzulla:37,vagrant:12,valid:[33,37,39,40,41,104,119,160,161,180,181,201],valu:[],value1:[85,96,137,138,151,161],value2:[96,138,161],value_1:[204,208],value_2:[204,208],value_column:47,value_typ:[],valuebuf:58,valuen:151,vari:[32,69],variabl:[29,33,37,38,39,40,41,69,87,119,161,170,195,201],varieti:203,variou:[],vdw:[202,204,211],vector:[],vector_column:40,vector_s:[],vector_text_column:33,veres:189,veri:[0,39,78,96,104,119,148,149,156,160,161,171,172,177,181,189,203],version1:77,version2:77,version3:77,version4:77,version:[],vertic:123,vervet:[30,33],via:[17,39,81,180],video:203,view:[],virtual:[33,40],virtualbox:12,visual:[0,8,31,33,37,39,40,41,78],vivid:[12,30,33],vmstat:199,vocabulari:204,voic:164,void_t:65,vojtovich:41,vulner:41,w64:12,wai:[0,3,6,7,19,39,40,41,75,95,137,141,154,159,168,202,204,206,207,210],wait:[45,69],wanab:40,want:[6,7,8,13,16,24,25,26,27,28,30,33,41,65,85,96,102,107,109,117,118,119,123,125,127,129,135,137,140,145,151,153,157,160,170,171,175,177,178,180,183,187,193,195,199,202,204,206,210],wareohji:39,warn:[6,7,38,39,40,41,98,99,119,135,137,163,171,174],warp:41,warri:23,washida:40,watch:12,weak:[0,156],web:[28,119,122,137,138,160,178,180,203],webclip:150,weight1:[39,75,119],weight2:[39,75,119],weight3:75,weight:[],weight_in_match_column:75,weight_in_weight_vector:75,welcom:[2,3,16,17,104,119,160,161,207],well:[0,28,40,101,137,156,208],were:[145,204],werewolf:[30,33],wget:[24,25,26,28,29,30],wgs84geopoint:[],wgs84geoppoint:54,what:[],wheezi:[],when:[0,3,18,33,37,39,40,41,47,51,60,65,75,78,79,85,86,90,95,96,102,104,110,114,115,119,122,123,125,128,135,137,140,145,150,151,154,157,160,162,164,171,175,177,183,184,187,195,203,204,207,209],where:[28,81,201],whether:[33,39,41,50,51,60,81,94,95,97,101,103,104,106,109,115,119,122,131,133,137,143,145,151,154,157,159,160,175,199,201],which:[0,1,26,33,39,40,41,68,69,93,101,103,104,106,107,117,118,119,127,129,135,140,141,145,150,151,153,154,157,158,160,161,177,193,195,201,202,203,204,206,207,208,209,210,211],white:[160,183,204],who:[],whole:40,whombx:40,whose:[161,204],why:[40,119,171,193],wibowo:40,wide:[0,28,37,167,171,204],width:[33,37,164],wiedenroth:41,wiki:137,wikipedia:[167,185],wili:[30,33],win64:[8,31],window:[],wing:[39,40],with_check:[41,107],with_command_vers:33,with_posit:[86,87,104,115,119,148,149,154,156,157,160,161,162,171,172,173,174,182,184,198,204,206,207,210],with_sect:[33,41,86,87,206,207],with_typ:107,with_weight:[41,75,86,87],within:[177,178,207,211],without:[],wno:37,word1:[39,119,160,161],word2:[39,119,160,161],word:[0,33,39,41,65,71,119,157,159,160,161,170,172,177,178,179,180,182,183,205,207],work:[],workaround:[33,41,125],worker:[40,137],world:[40,41,183,185,211],writabl:[33,41],write:[14,18,28,33,38,41,65,97,103,113,119,135,160,161,171,205,206,207],written:[18,41,110,114,131,175,207],wrong:[33,37,39,40,41,133,178,179],wrongli:37,x64:[12,31],x86:[31,33,37],x86_64:[12,24],xcode:27,xml:[],xvzf:[24,25,26,27,28,29,30],xxx:[40,41,135,161],xxx_20150603:33,xxx_20150604:33,xxx_201506:33,yahppo:40,yamada:41,yamaguchi:37,yamamoto:41,yaman:[40,41],yappo:[40,41,42],year:[33,143,161,163,207],yet:[0,37,40,101,104,117,118,119,161,166,172,174,175,189],yito:[39,40],yml:21,yoji:37,yokoyama:[40,41],yoku:[40,41],york:[145,207],yoshida:40,yoshioka:[33,39],you:[0,1,2,3,5,6,7,8,13,16,17,18,19,20,21,23,24,25,26,27,28,30,31,33,37,38,39,40,41,45,46,47,49,50,51,53,65,68,69,75,76,78,79,80,81,82,85,86,87,89,90,93,94,95,96,97,101,102,103,104,105,106,107,109,110,111,114,115,116,117,118,119,122,123,125,126,127,128,129,131,133,135,137,138,139,140,141,142,143,145,148,149,150,151,153,154,156,157,158,159,160,161,164,166,167,168,170,171,172,173,174,175,177,180,181,182,183,184,185,187,189,193,195,199,201,202,203,204,206,207,208,209,210,211],your:[],your_db:37,your_github_account:17,your_new_db:37,yourself:23,yuki:[37,41],yum:[12,18,24,26,39],yutaro:33,yuya:[33,41],yyi:17,yyyi:[161,163],yyyymm:175,yyyymmdd:[104,175],zenigata:203,zero:[71,75,119,153,164,170,182,183,195,201],zeromq:28,zip:[],zlib1g:[25,30],zlib:[],zlib_error:195,zsh:28,zunda:37,zxvf:12},titles:["1. Characteristics of Groonga","6. Client","3. Community","12. How to contribute to groonga","12.3. For Groonga developers","12.3.2. How to build Groonga at the repository","12.3.2.1. How to build Groonga at the repository by GNU Autotools","12.3.2.2. How to build Groonga at the repository by CMake on GNU/Linux or Unix","12.3.2.3. How to build Groonga at the repository by CMake on Windows","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. Repository","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. How to contribute in documentation topics","12.2.3. C API","12.2.2. I18N","12.2.1. Introduction","12.1. How to report a bug","11. Development","11.1. Travis CI","Groonga documentation","2. Install","2.5. CentOS","2.3. Debian GNU/Linux","2.6. Fedora","2.2. Mac OS X","2.8. Others","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. Limitations","News","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","Release 1.2.9 - 2011-12-29","Release 1.3.0 - 2012-01-29","Release 2.1.2 - 2013-01-29","Release 3.1.2 - 2014-01-29","Release 4.1.1 - 2015-01-29","News in Senna period","7. Reference manual","7.21. API","7.21.2. Global configurations","7.21.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.21.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.21.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.21.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.21.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.21.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.21.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.21.11. grn_expr","7.21.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.21.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.21.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.21.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.21.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.21.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.21.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.21.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.21.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.21.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.21.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.21.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.21.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.21.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.21.1. Overview","7.21.3. Plugin","Cast","7.6. Column","7.6.4. Index column","7.6.3. Pseudo column","7.6.1. Scalar column","7.6.2. Vector column","7.3. Command","7.3.1. \u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3","7.3.2. Output format","7.3.3. Pretty print","7.3.4. Request ID","7.3.5. Return code","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">reindex</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.54. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.55. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP server","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.14. Function","7.14.1. <code class=\"docutils literal\"><span class=\"pre\">between</span></code>","7.14.2. edit_distance","7.14.3. <code class=\"docutils literal\"><span class=\"pre\">geo_distance</span></code>","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. <code class=\"docutils literal\"><span class=\"pre\">highlight_full</span></code>","7.14.7. <code class=\"docutils literal\"><span class=\"pre\">highlight_html</span></code>","7.14.8. <code class=\"docutils literal\"><span class=\"pre\">html_untag</span></code>","7.14.9. <code class=\"docutils literal\"><span class=\"pre\">in_values</span></code>","7.14.10. now","7.14.11. <code class=\"docutils literal\"><span class=\"pre\">prefix_rk_search()</span></code>","7.14.12. <code class=\"docutils literal\"><span class=\"pre\">query</span></code>","7.14.13. rand","7.14.14. <code class=\"docutils literal\"><span class=\"pre\">snippet_html</span></code>","7.14.15. <code class=\"docutils literal\"><span class=\"pre\">sub_filter</span></code>","7.14.16. <code class=\"docutils literal\"><span class=\"pre\">vector_size</span></code>","7.12. grn_expr","7.12.1. Query syntax","7.12.2. Script syntax","7.17. Indexing","7.19. Log","7.7. Normalizers","7.15. Operations","7.15.1. Geolocation search","7.15.2. Prefix RK search","7.2. Output","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.13. Regular expression","7.11. Scorer","7.11.3.1. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></code>","7.18. Sharding","7.16. Suggest","7.16.2. Completion","7.16.3. Correction","7.16.1. Introduction","7.16.4. Suggestion","7.5. Tables","7.9. Token filters","7.8. Tokenizers","7.20. Tuning","7.4. Data types","5. Server","5.3. GQTP","5.2. HTTP","5.2.1. Comparison","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached binary protocol","5.1. Server packages","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to avoid mmap Cannot allocate memory error","4. Tutorial","4.3. Various data types","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.1. Basic operations","4.9. Additional information about lexicon for full text search","4.7. match_columns parameter","4.10. Let's create micro-blog","4.2. Remote access","4.8. Prefix search with patricia trie","4.11. Query expansion","4.4. Various search conditions"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[35,36,37],"1\u30ea\u30ea\u30fc\u30b9":[35,37],"2\u30ea\u30ea\u30fc\u30b9":35,"3\u30ea\u30ea\u30fc\u30b9":35,"4\u30ea\u30ea\u30fc\u30b9":35,"5\u30ea\u30ea\u30fc\u30b9":35,"6\u30ea\u30ea\u30fc\u30b9":[34,35],"7\u30ea\u30ea\u30fc\u30b9":[34,35],"8\u30ea\u30ea\u30fc\u30b9":35,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":10,"\u306e\u66f4\u65b0":12,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":10,"\u30aa\u30d7\u30b7\u30e7\u30f3":[134,136],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":14,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":11,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":11,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3":77,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":77,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":136,"\u30b5\u30f3\u30d7\u30eb":[134,136],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":136,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":14,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":14,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":14,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[136,197],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":198,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":34,"\u30d0\u30fc\u30b8\u30e7\u30f31":[35,36],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":77,"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":12,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":12,"\u30d3\u30eb\u30c9\u6642\u306etip":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":12,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":12,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":185,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":14,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":10,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":12,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4f7f\u3044\u65b9":136,"\u4f8b":[144,146,147,152,155,198],"\u4f8b\u3048\u3070redmin":10,"\u4fee\u6b63":[34,35,36,37],"\u5236\u9650\u4e8b\u9805":136,"\u524d\u63d0\u6761\u4ef6":12,"\u539f\u56e0":198,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":198,"\u540d\u524d":[73,134,136,144,146,147,152,155],"\u5909\u66f4":35,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":12,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":196,"\u5b9f\u9a13\u7684":37,"\u5bfe\u5fdc":10,"\u5bfe\u7b56\u65b9\u6cd51":198,"\u5bfe\u7b56\u65b9\u6cd52":198,"\u5f15\u6570":[134,136,144,146,147,155],"\u611f\u8b1d":[34,35,36,37],"\u6539\u826f":[34,35,36,37],"\u66f8\u5f0f":[134,136,144,146,147,152,155],"\u691c\u7d22":196,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":196,"\u691c\u7d22\u306e\u6319\u52d5":196,"\u691c\u7d22\u4f8b1":11,"\u691c\u7d22\u4f8b2":11,"\u691c\u7d22\u4f8b3":11,"\u691c\u7d22\u4f8b4":11,"\u6982\u8981":77,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":12,"\u7279\u6b8a\u547d\u4ee4":136,"\u7406\u7531":10,"\u8aac\u660e":[73,134,136,144,146,147,152,155],"\u8fd4\u5024":[144,146,147,152,155],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":10,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":196,"\u95a2\u4fc2\u5f0f":11,"\u95be\u5024\u3092\u3042\u3052\u308b":198,"\u9759\u7684\u89e3\u6790":14,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":196,"benchmark\u547d\u4ee4":136,"benchmark\u5b9f\u884c\u7d50\u679c":136,"boolean":[161,201],"case":[78,125],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"class":171,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":77,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"debian\u7cfb\u306e\u5834\u5408":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"default":[28,77],"files\u306e\u5b9f\u884c":12,"float":[161,185],"function":[142,161],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":12,"grntest\u306e\u6e96\u5099":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":12,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":11,"hat\u7cfb\u306e\u5834\u5408":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"homebrew\u306e\u66f4\u65b0":12,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":100,"new":[17,33,42],"null":161,"po\u306e\u5b9f\u884c":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":12,"release\u306e\u5b9f\u884c":12,"return":[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,138,140,143,145,148,149,150,151,153,154,156,157,158,173,174],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"twitter\u7de8":10,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"version\u30d1\u30e9\u30e1\u30fc\u30bf":77,"windows\u5411\u3051\u306e\u5834\u5408":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"x\u306e\u304a\u77e5\u3089\u305b":[34,35,36],about:[185,205],access:[189,208],add:17,addit:[161,164,205],adjust:119,administr:[137,208],advanc:[104,119],against:206,aggreg:0,alloc:199,also:[6,7,8,78,80,81,82,84,87,91,93,96,98,99,100,105,107,108,110,111,113,114,116,117,118,119,122,123,127,129,130,139,148,149,153,154,156,157,159,164,167,170,173,174,181,182,195],among:206,anchor:171,api:[16,44],appli:75,approximate_typ:145,archiv:30,arg:11,arithmet:161,arrai:161,assign:[80,160,161],authent:189,autotool:6,avail:[137,182],avoid:199,basic:[125,161,204],benchmark:136,between:143,bigram:207,binari:192,bitwis:161,blog:207,blogroonga:12,bodi:78,bool:185,brows:137,bug:19,build:[5,6,7,8,24,25,26,27,28,30,31],built:[164,172,183],builtin:[135,185],cach:[103,119,137],cache_limit:82,calc_target:104,calc_typ:104,call:161,callback:11,can:185,cannot:199,cascad:93,cast:70,cento:24,chang:[42,85],charact:171,characterist:[0,181],chat:2,check:[83,133],checkout:[6,7,8],choic:171,clearlock:84,client:[1,135,195],clone:17,close_tagn:148,cmake:[7,8],code:81,column:[0,32,71,72,73,74,75,85,145,148,153,160,173,174,202,204,206],column_copi:85,column_cr:86,column_list:87,column_or_valu:143,column_remov:88,column_renam:89,combin:160,command:[76,77,133,135,138,140,168,175,189,204,208],comment:207,commun:2,comparison:[161,189],complet:[177,179],compress:189,condit:[119,160,211],configur:[6,18,21,28,45,85,137,189],confirm:17,construct:162,contain:11,contribut:[3,15],control:161,convert:167,cooccurr:[177,178,180],core:189,correct:[178,179],cpu:189,creat:[6,75,123,139,204,206,207],custom:189,daemon:[135,195],data:[123,137,141,160,161,177,180,185,201,207],databas:[189,204],database_path:[140,141],database_unmap:90,dataset:139,date:201,db_api:11,debian:25,decreas:125,default_token:123,define_selector:91,defrag:92,delet:93,depend:[6,7,8,18,28],descript:185,desctipion:139,develop:[4,20],differ:104,direct:137,divis:161,document:[15,18,22],domain:202,down:[137,211],downtim:189,drildown:202,drilldown:[104,119,202],drilldown_calc_target:[104,119],drilldown_calc_typ:[104,119],drilldown_limit:[104,119],drilldown_offset:[104,119],drilldown_output_column:[104,119],drilldown_sortbi:[104,119],dump:94,dump_index:94,dump_plugin:94,dump_record:94,dump_schema:94,each:206,edit:17,edit_dist:144,ellipsoid:145,enabl:18,encod:28,engin:0,equal:[11,160,161],error:[78,199],escal:28,escap:[160,171],exampl:[21,46,47,48,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,139,195,199],execut:[132,135],exit:139,expand:169,expans:210,explicit:160,explicitli:145,express:[160,161,171],extract:[161,180],facebook:2,favorit:207,featur:166,fedora:26,file:[17,135,139,141,170,184,189],filter:[101,103,104,119,182],filter_str:157,fix:[33,37,39,40,41,42],flag:[107,123,127,129,195],flow:17,follow:207,format:[78,96,119,163,170,204],free:0,freebsd:184,from:[6,7,8,24,25,26,27,28,30,31,104,141],from_nam:85,from_tabl:85,full:[0,160,204,205,206,211],gener:[17,18],geo:[0,161,203],geo_dist:145,geo_in_circl:146,geo_in_rectangl:147,geoindex:207,geoloc:[166,207],geopoint:207,get:[140,204],global:45,glossari:175,gnu:[6,7,25],gqtp:[187,193,195],greater:[11,160,161],greater_equ:11,grn_cach:46,grn_column:47,grn_command_vers:48,grn_content_typ:49,grn_ctx:50,grn_db:51,grn_encod:52,grn_expr:[11,53,159],grn_geo:54,grn_hook:55,grn_ii:56,grn_index_cursor:57,grn_info:58,grn_match_escal:59,grn_obj:60,grn_proc:61,grn_search:62,grn_tabl:63,grn_table_cursor:64,grn_table_select:11,grn_thread_:65,grn_type:66,grn_user_data:67,grndb:133,grnslap:134,groonga:[0,3,4,5,6,7,8,9,12,17,22,42,135,136,137,138,139,140,141,190,191,193],groonga_base_path:137,groonga_cache_limit:137,groonga_databas:137,groonga_database_auto_cr:137,groonga_log_level:137,groonga_log_path:137,groonga_query_log_path:137,group:[160,161,171],gzip:189,hash:207,hashtag:207,header:[78,195],help:28,highlight_ful:148,highlight_html:149,homebrew:27,how:[3,5,6,7,8,15,17,19,75,80,85,162,167,177,178,180,187,195,199,208],html:[17,18,150],html_untag:150,http:[138,168,188,189,193,208],httpd:[137,140,141,191,193],hypertext:208,i18n:17,improv:[33,37,38,39,40,41,42],in_valu:151,index:[0,32,72,123,162,171,173,174,203,204,206],inform:[205,211],instal:[6,7,8,18,23,28,31,170],instant:0,int16:185,int32:185,int64:185,int8:185,integ:161,introduct:[18,179],invert:0,io_flush:95,issu:[19,208],javascript:211,jessi:25,json:[78,96],just:75,kei:[104,119,185,209],kern:184,key_typ:123,keyword:207,keywordn:148,label:[104,119],languag:17,latest:12,latitud:[0,201],launch:140,learn:[140,141,177,178,179,180],learner:141,left:161,less:[11,160,161],less_equ:11,let:207,lexicon:[123,204,205],librari:[0,28],like:211,limit:[32,75,103,104,119,170,181,185,202],line:[135,140,168],linux:[7,25,184],list:[2,19,81],liter:161,load:[75,96,137,204,207],localstatedir:28,locat:[0,145,170,203,211],lock:0,lock_clear:97,log:[28,141,163,189],log_level:98,log_put:99,log_reopen:100,logic:[160,161],logical_count:101,logical_paramet:102,logical_range_filt:103,logical_select:104,logical_shard_list:105,logical_t:[101,103,104,105,106],logical_table_remov:106,longitud:[0,201],longtext:185,lz4:28,mac:27,macport:27,mail:[2,19],make:[6,7,12,28],manual:43,match:[28,160,161],match_column:[104,119,154,206],match_escalation_threshold:[104,119],max:[82,101,103,104,106,128,143,184],max_bord:[101,103,104,106,143],max_map_count:184,maxfileperproc:184,memcach:192,memori:[184,199],messag:28,message_pack_install_prefix:28,messagepack:78,micro:207,min:[101,103,104,106,143],min_bord:[101,103,104,106,143],mmap:199,mode:[11,127,129,135],modul:137,modulo:161,mroonga:0,multi:189,multipl:[161,202,206],munin:28,name:[89,109,123,125,126,138,139,185,206],narrow:211,nest:206,new_nam:[89,126],nginx:137,nofil:184,normal:[75,107,123,129,164],normalizer_list:108,normalizer_nam:148,normalizerauto:164,normalizernfkc51:164,not_equ:11,now:152,number:[28,119,184],numer:201,object:161,object_exist:109,offlin:162,offset:[103,104,119],old:33,onlin:162,open:184,open_tagn:148,oper:[161,165,204],option:[85,90,94,95,101,102,103,104,105,106,107,121,127,128,129,135,139,140,141,145,149,154,173,174],oracl:29,order:103,origin:161,other:[28,171],output:[17,78,104,119,168,204],output_column:[103,104,119],overcommit_memori:184,overview:[0,68,201],pack:28,packag:[28,30,193],page:119,paramet:[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,109,112,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,131,135,140,141,143,145,148,149,150,151,153,154,157,158,173,174,184,206],patch:17,path:[28,118,189],patricia:209,per:184,perform:[137,189],period:42,persist:181,person:30,phrase:160,platform:28,plugin:[28,69],plugin_regist:110,plugin_unregist:111,point1:145,point2:145,point:161,post:[137,189,207],ppa:30,prefix:[11,28,160,161,167,177,189,209],prefix_rk_search:153,prepar:210,pretti:79,primari:[185,209],print:79,process:[163,184],protocol:[192,195,208],proxi:137,proxy_cach:137,pseudo:73,pull:17,quantifi:171,queri:[0,104,119,137,153,154,160,163,169,210],query_expand:[104,119,154],query_expans:119,query_flag:[104,119],query_str:154,query_typ:195,queryexpandertsv:170,quit:112,rand:155,rang:[123,204],range_filt:113,range_index:102,read:[0,167,177],record:[119,181,204],recov:133,rectangl:145,recurs:95,red:12,refer:[43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,75,201,203],regist:114,regular:[160,161,171],reindex:115,relat:[103,104,119,137,141,206],relationship:203,releas:[33,37,38,39,40,41],remot:208,report:19,repositori:[5,6,7,8,13,17],request:[17,80,137,140],request_cancel:116,requir:[85,87,89,90,95,101,102,103,104,105,106,107,109,116,119,121,125,126,127,128,129,131,140,145,149,150,154,173,174],resolut:203,resourc:125,restart:193,result:[202,204],revers:[137,203],right:161,romaji:167,room:2,ruby_ev:117,ruby_load:118,rule:175,run:[6,7,8,18,187,195,208],sampl:[160,161],scalar:74,scope:157,score:119,scorer:[104,119,172,211],scorer_tf_at_most:173,scorer_tf_idf:174,script:[117,161],search:[0,75,104,119,160,161,166,167,177,178,180,203,204,205,206,207,209,210,211],secur:[161,208],see:[6,7,8,78,80,81,82,84,87,91,93,96,98,99,100,105,107,108,110,111,113,114,116,117,118,119,122,123,127,129,130,139,148,149,153,154,156,157,159,164,167,170,173,174,181,182,195],select:[104,119],send:[17,208],senna:42,server:[0,135,138,186,193,195,208],set:[137,140],sharabl:0,shard:175,shard_kei:[101,103,104,106],shift:161,shorttext:185,shut:137,shutdown:120,sign:161,similar:[11,161,178],simpl:[104,119],size:195,snippet_html:156,softwar:[6,7,8,18],solari:29,solut:199,sort:[202,204,211],sortbi:[104,119],sourc:[24,25,26,27,28,30,31],specif:[137,194,206,207],specifi:[145,185,204],sphere:145,standalon:135,start:193,statu:[121,139,195],stop:193,storag:0,store:[0,123],string:[107,127,129,161,201],style:119,sub_filt:157,submit:19,substitution_t:154,subtract:161,success:78,suffix:[11,160,161,209],suggest:[122,139,140,141,176,179,180],summari:[45,46,47,48,49,50,51,52,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,72,74,75,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,137,138,140,141,143,145,148,149,150,151,153,154,156,157,158,164,167,170,171,172,173,174,175,181,182,183,184,187],support:166,synopsi:[137,138,140,141],synopsti:139,syntax:[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,143,145,148,149,150,151,153,154,156,157,158,160,161,171,173,174,211],tabl:[32,85,87,89,94,119,123,127,141,181,185,204,206,207],table_cr:123,table_dat_kei:181,table_hash_kei:181,table_list:124,table_no_kei:181,table_pat_kei:181,table_remov:125,table_renam:126,table_token:127,tag:[123,203,207],target:158,target_nam:[95,97,115,131],target_valu:151,temporari:181,term:161,termin:195,text:[0,149,160,185,204,205,206,211],than:[160,161],thank:[33,37,38,39,40,41],thread_limit:128,threshold:28,time:[161,185,201,207],to_nam:85,to_tabl:85,todo:[154,156],token:[0,129,182,183],token_filt:[123,129],tokenbigram:183,tokenbigramignoreblank:183,tokenbigramignoreblanksplitsymbol:183,tokenbigramignoreblanksplitsymbolalpha:183,tokenbigramignoreblanksplitsymbolalphadigit:183,tokenbigramsplitsymbol:183,tokenbigramsplitsymbolalpha:183,tokenbigramsplitsymbolalphadigit:183,tokendelimit:183,tokendelimitnul:183,tokenfilterstem:182,tokenfilterstopword:182,tokenizer_list:130,tokenizs:183,tokenmecab:183,tokenregexp:183,tokentrigram:183,tokenunigram:183,tokyogeopoint:185,tool:[28,137,208],topic:15,total:119,tracker:19,transfer:208,translat:17,travi:21,trie:209,truncat:131,tsv:[78,170],tune:184,tutori:200,twitter:2,type:[185,201,207],ubuntu:30,uint16:185,uint32:185,uint64:185,uint8:185,unix:7,unremov:125,unsign:161,updat:[0,12,17,18,177],upgrad:189,usag:[72,74,75,79,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,135,137,140,141,143,145,148,149,150,151,153,154,156,157,158,167,168,170,171,172,173,174,184],use_html_escap:148,use_range_index:103,user:207,valu:[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,138,140,143,145,148,149,150,151,153,154,156,157,158,173,174,207],value_typ:123,variou:[201,211],vector:[75,201],vector_s:158,version:189,view:204,weight:[75,206],wgs84geopoint:185,what:183,wheezi:25,who:207,window:[8,31],without:189,work:[17,177,178,180],worker_process:137,xml:78,xor:161,your:17,zip:31,zlib:28}})
1
+ Search.setIndex({envversion:46,filenames:["characteristic","client","community","contribution","contribution/development","contribution/development/build","contribution/development/build/unix_autotools","contribution/development/build/unix_cmake","contribution/development/build/windows_cmake","contribution/development/com","contribution/development/cooperation","contribution/development/query","contribution/development/release","contribution/development/repository","contribution/development/test","contribution/documentation","contribution/documentation/c-api","contribution/documentation/i18n","contribution/documentation/introduction","contribution/report","development","development/travis-ci","index","install","install/centos","install/debian","install/fedora","install/mac_os_x","install/others","install/solaris","install/ubuntu","install/windows","limitations","news","news/0.x","news/1.0.x","news/1.1.x","news/1.2.x","news/1.3.x","news/2.x","news/3.x","news/4.x","news/senna","reference","reference/alias","reference/api","reference/api/global_configurations","reference/api/grn_cache","reference/api/grn_column","reference/api/grn_command_version","reference/api/grn_content_type","reference/api/grn_ctx","reference/api/grn_db","reference/api/grn_encoding","reference/api/grn_expr","reference/api/grn_geo","reference/api/grn_hook","reference/api/grn_ii","reference/api/grn_index_cursor","reference/api/grn_info","reference/api/grn_match_escalation","reference/api/grn_obj","reference/api/grn_proc","reference/api/grn_search","reference/api/grn_table","reference/api/grn_table_cursor","reference/api/grn_thread","reference/api/grn_type","reference/api/grn_user_data","reference/api/overview","reference/api/plugin","reference/cast","reference/column","reference/columns/index","reference/columns/pseudo","reference/columns/scalar","reference/columns/vector","reference/command","reference/command/command_version","reference/command/output_format","reference/command/pretty_print","reference/command/request_id","reference/command/return_code","reference/commands/cache_limit","reference/commands/check","reference/commands/clearlock","reference/commands/column_copy","reference/commands/column_create","reference/commands/column_list","reference/commands/column_remove","reference/commands/column_rename","reference/commands/config_delete","reference/commands/config_get","reference/commands/config_set","reference/commands/database_unmap","reference/commands/define_selector","reference/commands/defrag","reference/commands/delete","reference/commands/dump","reference/commands/io_flush","reference/commands/load","reference/commands/lock_acquire","reference/commands/lock_clear","reference/commands/lock_release","reference/commands/log_level","reference/commands/log_put","reference/commands/log_reopen","reference/commands/logical_count","reference/commands/logical_parameters","reference/commands/logical_range_filter","reference/commands/logical_select","reference/commands/logical_shard_list","reference/commands/logical_table_remove","reference/commands/normalize","reference/commands/normalizer_list","reference/commands/object_exist","reference/commands/object_inspect","reference/commands/object_remove","reference/commands/plugin_register","reference/commands/plugin_unregister","reference/commands/quit","reference/commands/range_filter","reference/commands/register","reference/commands/reindex","reference/commands/request_cancel","reference/commands/ruby_eval","reference/commands/ruby_load","reference/commands/schema","reference/commands/select","reference/commands/shutdown","reference/commands/status","reference/commands/suggest","reference/commands/table_create","reference/commands/table_list","reference/commands/table_remove","reference/commands/table_rename","reference/commands/table_tokenize","reference/commands/thread_limit","reference/commands/tokenize","reference/commands/tokenizer_list","reference/commands/truncate","reference/configuration","reference/executables","reference/executables/grndb","reference/executables/grnslap","reference/executables/groonga","reference/executables/groonga-benchmark","reference/executables/groonga-httpd","reference/executables/groonga-server-http","reference/executables/groonga-suggest-create-dataset","reference/executables/groonga-suggest-httpd","reference/executables/groonga-suggest-learner","reference/function","reference/functions/between","reference/functions/edit_distance","reference/functions/geo_distance","reference/functions/geo_in_circle","reference/functions/geo_in_rectangle","reference/functions/highlight_full","reference/functions/highlight_html","reference/functions/html_untag","reference/functions/in_values","reference/functions/now","reference/functions/prefix_rk_search","reference/functions/query","reference/functions/rand","reference/functions/snippet_html","reference/functions/sub_filter","reference/functions/vector_size","reference/grn_expr","reference/grn_expr/query_syntax","reference/grn_expr/script_syntax","reference/indexing","reference/log","reference/normalizers","reference/operations","reference/operations/geolocation_search","reference/operations/prefix_rk_search","reference/output","reference/query_expanders","reference/query_expanders/tsv","reference/regular_expression","reference/scorer","reference/scorers/scorer_tf_at_most","reference/scorers/scorer_tf_idf","reference/sharding","reference/suggest","reference/suggest/completion","reference/suggest/correction","reference/suggest/introduction","reference/suggest/suggestion","reference/tables","reference/token_filters","reference/tokenizers","reference/tuning","reference/types","server","server/gqtp","server/http","server/http/comparison","server/http/groonga","server/http/groonga-httpd","server/memcached","server/package","spec","spec/gqtp","spec/search","troubleshooting","troubleshooting/different_results_with_the_same_keyword","troubleshooting/mmap_cannot_allocate_memory","tutorial","tutorial/data","tutorial/drilldown","tutorial/index","tutorial/introduction","tutorial/lexicon","tutorial/match_columns","tutorial/micro_blog","tutorial/network","tutorial/patricia_trie","tutorial/query_expansion","tutorial/search"],objects:{"":{"--address":[145,0,1,"cmdoption--address"],"--bind-address":[145,0,1,"cmdoption--bind-address"],"--cache-limit":[145,0,1,"cmdoption--cache-limit"],"--config-path":[145,0,1,"cmdoption--config-path"],"--daemon":[151,0,1,"cmdoption--daemon"],"--default-match-escalation-threshold":[145,0,1,"cmdoption--default-match-escalation-threshold"],"--dir":[146,0,1,"cmdoption--dir"],"--disable-max-fd-check":[150,0,1,"cmdoption--disable-max-fd-check"],"--document-root":[145,0,1,"cmdoption--document-root"],"--encoding":[145,0,1,"cmdoption--encoding"],"--ftp":[146,0,1,"cmdoption--ftp"],"--groonga":[146,0,1,"cmdoption--groonga"],"--help":[145,0,1,"cmdoption--help"],"--host":[146,0,1,"cmdoption--host"],"--log-base-path":[151,0,1,"cmdoption--log-base-path"],"--log-level":[151,0,1,"cmdoption--log-level"],"--log-output-dir":[146,0,1,"cmdoption--log-output-dir"],"--log-path":[151,0,1,"cmdoption--log-path"],"--log-rotate-threshold-size":[145,0,1,"cmdoption--log-rotate-threshold-size"],"--max-threads":[145,0,1,"cmdoption--max-threads"],"--n-lines-per-log-file":[150,0,1,"cmdoption--n-lines-per-log-file"],"--n-threads":[150,0,1,"cmdoption--n-threads"],"--pid-path":[145,0,1,"cmdoption--pid-path"],"--port":[150,0,1,"cmdoption--port"],"--protocol":[146,0,1,"cmdoption--protocol"],"--query-log-path":[145,0,1,"cmdoption--query-log-path"],"--query-log-rotate-threshold-size":[145,0,1,"cmdoption--query-log-rotate-threshold-size"],"--receive-endpoint":[151,0,1,"cmdoption--receive-endpoint"],"--send-endpoint":[151,0,1,"cmdoption--send-endpoint"],"--server-id":[145,0,1,"cmdoption--server-id"],"-P":[144,0,1,"cmdoption-P"],"-a":[145,0,1,"cmdoption-a"],"-c":[145,0,1,"cmdoption-c"],"-d":[151,0,1,"cmdoption-d"],"-e":[145,0,1,"cmdoption-e"],"-h":[145,0,1,"cmdoption-h"],"-i":[146,0,1,"cmdoption-i"],"-l":[151,0,1,"cmdoption-l"],"-m":[144,0,1,"cmdoption-m"],"-n":[145,0,1,"cmdoption-n"],"-p":[150,0,1,"cmdoption-p"],"-r":[151,0,1,"cmdoption-r"],"-s":[151,0,1,"cmdoption-s"],"-t":[150,0,1,"cmdoption-t"],GRN_COLUMN_NAME_ID:[48,3,1,"c.GRN_COLUMN_NAME_ID"],GRN_COLUMN_NAME_ID_LEN:[48,3,1,"c.GRN_COLUMN_NAME_ID_LEN"],GRN_COLUMN_NAME_KEY:[48,3,1,"c.GRN_COLUMN_NAME_KEY"],GRN_COLUMN_NAME_KEY_LEN:[48,3,1,"c.GRN_COLUMN_NAME_KEY_LEN"],GRN_COLUMN_NAME_NSUBRECS:[48,3,1,"c.GRN_COLUMN_NAME_NSUBRECS"],GRN_COLUMN_NAME_NSUBRECS_LEN:[48,3,1,"c.GRN_COLUMN_NAME_NSUBRECS_LEN"],GRN_COLUMN_NAME_SCORE:[48,3,1,"c.GRN_COLUMN_NAME_SCORE"],GRN_COLUMN_NAME_SCORE_LEN:[48,3,1,"c.GRN_COLUMN_NAME_SCORE_LEN"],GRN_COLUMN_NAME_VALUE:[48,3,1,"c.GRN_COLUMN_NAME_VALUE"],GRN_COLUMN_NAME_VALUE_LEN:[48,3,1,"c.GRN_COLUMN_NAME_VALUE_LEN"],GRN_COMMAND_VERSION_MAX:[49,3,1,"c.GRN_COMMAND_VERSION_MAX"],GRN_COMMAND_VERSION_MIN:[49,3,1,"c.GRN_COMMAND_VERSION_MIN"],GRN_COMMAND_VERSION_STABLE:[49,3,1,"c.GRN_COMMAND_VERSION_STABLE"],GRN_OBJ_APPEND:[61,3,1,"c.GRN_OBJ_APPEND"],GRN_OBJ_COMPARE:[61,3,1,"c.GRN_OBJ_COMPARE"],GRN_OBJ_DECR:[61,3,1,"c.GRN_OBJ_DECR"],GRN_OBJ_GET:[61,3,1,"c.GRN_OBJ_GET"],GRN_OBJ_INCR:[61,3,1,"c.GRN_OBJ_INCR"],GRN_OBJ_LOCK:[61,3,1,"c.GRN_OBJ_LOCK"],GRN_OBJ_PREPEND:[61,3,1,"c.GRN_OBJ_PREPEND"],GRN_OBJ_SET:[61,3,1,"c.GRN_OBJ_SET"],GRN_OBJ_SET_MASK:[61,3,1,"c.GRN_OBJ_SET_MASK"],GRN_OBJ_UNLOCK:[61,3,1,"c.GRN_OBJ_UNLOCK"],GRN_PLUGIN_ERROR:[70,3,1,"c.GRN_PLUGIN_ERROR"],GRN_PLUGIN_FIN:[70,1,1,"c.GRN_PLUGIN_FIN"],GRN_PLUGIN_FREE:[70,3,1,"c.GRN_PLUGIN_FREE"],GRN_PLUGIN_INIT:[70,1,1,"c.GRN_PLUGIN_INIT"],GRN_PLUGIN_LOG:[70,3,1,"c.GRN_PLUGIN_LOG"],GRN_PLUGIN_MALLOC:[70,3,1,"c.GRN_PLUGIN_MALLOC"],GRN_PLUGIN_REALLOC:[70,3,1,"c.GRN_PLUGIN_REALLOC"],GRN_PLUGIN_REGISTER:[70,1,1,"c.GRN_PLUGIN_REGISTER"],command:[145,0,1,"cmdoption-arg-command"],db:[146,0,1,"cmdoption-arg-db"],dest:[145,0,1,"cmdoption-arg-dest"],grn_builtin_type:[67,2,1,"c.grn_builtin_type"],grn_cache:[47,2,1,"c.grn_cache"],grn_cache_close:[47,1,1,"c.grn_cache_close"],grn_cache_current_get:[47,1,1,"c.grn_cache_current_get"],grn_cache_current_set:[47,1,1,"c.grn_cache_current_set"],grn_cache_get_max_n_entries:[47,1,1,"c.grn_cache_get_max_n_entries"],grn_cache_open:[47,1,1,"c.grn_cache_open"],grn_cache_set_max_n_entries:[47,1,1,"c.grn_cache_set_max_n_entries"],grn_column_create:[48,1,1,"c.grn_column_create"],grn_column_index:[48,1,1,"c.grn_column_index"],grn_column_index_update:[48,1,1,"c.grn_column_index_update"],grn_column_name:[48,1,1,"c.grn_column_name"],grn_column_rename:[48,1,1,"c.grn_column_rename"],grn_column_table:[48,1,1,"c.grn_column_table"],grn_column_truncate:[48,1,1,"c.grn_column_truncate"],grn_command_version:[49,2,1,"c.grn_command_version"],grn_content_type:[50,2,1,"c.grn_content_type"],grn_ctx:[51,2,1,"c.grn_ctx"],grn_ctx_at:[51,1,1,"c.grn_ctx_at"],grn_ctx_close:[51,1,1,"c.grn_ctx_close"],grn_ctx_db:[51,1,1,"c.grn_ctx_db"],grn_ctx_fin:[51,1,1,"c.grn_ctx_fin"],grn_ctx_get:[51,1,1,"c.grn_ctx_get"],grn_ctx_get_all_tables:[51,1,1,"c.grn_ctx_get_all_tables"],grn_ctx_get_command_version:[51,1,1,"c.grn_ctx_get_command_version"],grn_ctx_get_match_escalation_threshold:[60,1,1,"c.grn_ctx_get_match_escalation_threshold"],grn_ctx_get_output_type:[51,1,1,"c.grn_ctx_get_output_type"],grn_ctx_init:[51,1,1,"c.grn_ctx_init"],grn_ctx_is_opened:[51,1,1,"c.grn_ctx_is_opened"],grn_ctx_open:[51,1,1,"c.grn_ctx_open"],grn_ctx_set_command_version:[51,1,1,"c.grn_ctx_set_command_version"],grn_ctx_set_finalizer:[51,1,1,"c.grn_ctx_set_finalizer"],grn_ctx_set_match_escalation_threshold:[60,1,1,"c.grn_ctx_set_match_escalation_threshold"],grn_ctx_set_output_type:[51,1,1,"c.grn_ctx_set_output_type"],grn_ctx_use:[51,1,1,"c.grn_ctx_use"],grn_db:[52,2,1,"c.grn_db"],grn_db_create:[52,1,1,"c.grn_db_create"],grn_db_create_optarg:[52,2,1,"c.grn_db_create_optarg"],grn_db_open:[52,1,1,"c.grn_db_open"],grn_db_recover:[52,1,1,"c.grn_db_recover"],grn_db_touch:[52,1,1,"c.grn_db_touch"],grn_db_unmap:[52,1,1,"c.grn_db_unmap"],grn_encoding:[53,2,1,"c.grn_encoding"],grn_encoding_parse:[53,1,1,"c.grn_encoding_parse"],grn_encoding_to_string:[53,1,1,"c.grn_encoding_to_string"],grn_expr_add_var:[54,1,1,"c.grn_expr_add_var"],grn_expr_alloc:[54,1,1,"c.grn_expr_alloc"],grn_expr_append_const:[54,1,1,"c.grn_expr_append_const"],grn_expr_append_const_int:[54,1,1,"c.grn_expr_append_const_int"],grn_expr_append_const_str:[54,1,1,"c.grn_expr_append_const_str"],grn_expr_append_op:[54,1,1,"c.grn_expr_append_op"],grn_expr_close:[54,1,1,"c.grn_expr_close"],grn_expr_compile:[54,1,1,"c.grn_expr_compile"],grn_expr_create:[54,1,1,"c.grn_expr_create"],grn_expr_exec:[54,1,1,"c.grn_expr_exec"],grn_expr_get_keywords:[54,1,1,"c.grn_expr_get_keywords"],grn_expr_get_var_by_offset:[54,1,1,"c.grn_expr_get_var_by_offset"],grn_expr_syntax_escape:[54,1,1,"c.grn_expr_syntax_escape"],grn_expr_syntax_escape_query:[54,1,1,"c.grn_expr_syntax_escape_query"],grn_fin:[69,1,1,"c.grn_fin"],grn_geo_cursor_next:[55,1,1,"c.grn_geo_cursor_next"],grn_geo_cursor_open_in_rectangle:[55,1,1,"c.grn_geo_cursor_open_in_rectangle"],grn_geo_estimate_in_rectangle:[55,1,1,"c.grn_geo_estimate_in_rectangle"],grn_geo_point:[55,2,1,"c.grn_geo_point"],grn_geo_select_in_rectangle:[55,1,1,"c.grn_geo_select_in_rectangle"],grn_get_default_command_version:[49,1,1,"c.grn_get_default_command_version"],grn_get_default_encoding:[53,1,1,"c.grn_get_default_encoding"],grn_get_default_match_escalation_threshold:[60,1,1,"c.grn_get_default_match_escalation_threshold"],grn_get_lock_timeout:[46,1,1,"c.grn_get_lock_timeout"],grn_hook_entry:[56,2,1,"c.grn_hook_entry"],grn_ii:[57,2,1,"c.grn_ii"],grn_ii_buffer:[57,2,1,"c.grn_ii_buffer"],grn_ii_buffer_append:[57,1,1,"c.grn_ii_buffer_append"],grn_ii_buffer_close:[57,1,1,"c.grn_ii_buffer_close"],grn_ii_buffer_commit:[57,1,1,"c.grn_ii_buffer_commit"],grn_ii_buffer_open:[57,1,1,"c.grn_ii_buffer_open"],grn_index_cursor_next:[58,1,1,"c.grn_index_cursor_next"],grn_index_cursor_open:[58,1,1,"c.grn_index_cursor_open"],grn_info_type:[59,2,1,"c.grn_info_type"],grn_init:[69,1,1,"c.grn_init"],grn_obj:[61,2,1,"c.grn_obj"],grn_obj_add_hook:[56,1,1,"c.grn_obj_add_hook"],grn_obj_cast_by_id:[61,1,1,"c.grn_obj_cast_by_id"],grn_obj_check:[61,1,1,"c.grn_obj_check"],grn_obj_clear_lock:[61,1,1,"c.grn_obj_clear_lock"],grn_obj_close:[61,1,1,"c.grn_obj_close"],grn_obj_column:[61,1,1,"c.grn_obj_column"],grn_obj_db:[52,1,1,"c.grn_obj_db"],grn_obj_defrag:[61,1,1,"c.grn_obj_defrag"],grn_obj_delete_by_id:[61,1,1,"c.grn_obj_delete_by_id"],grn_obj_delete_hook:[56,1,1,"c.grn_obj_delete_hook"],grn_obj_expire:[61,1,1,"c.grn_obj_expire"],grn_obj_get_element_info:[59,1,1,"c.grn_obj_get_element_info"],grn_obj_get_hook:[56,1,1,"c.grn_obj_get_hook"],grn_obj_get_info:[59,1,1,"c.grn_obj_get_info"],grn_obj_get_nhooks:[56,1,1,"c.grn_obj_get_nhooks"],grn_obj_get_range:[61,1,1,"c.grn_obj_get_range"],grn_obj_get_value:[61,1,1,"c.grn_obj_get_value"],grn_obj_get_values:[61,1,1,"c.grn_obj_get_values"],grn_obj_id:[61,1,1,"c.grn_obj_id"],grn_obj_is_builtin:[61,1,1,"c.grn_obj_is_builtin"],grn_obj_is_locked:[61,1,1,"c.grn_obj_is_locked"],grn_obj_lock:[61,1,1,"c.grn_obj_lock"],grn_obj_name:[61,1,1,"c.grn_obj_name"],grn_obj_path:[61,1,1,"c.grn_obj_path"],grn_obj_path_by_id:[61,1,1,"c.grn_obj_path_by_id"],grn_obj_reinit:[61,1,1,"c.grn_obj_reinit"],grn_obj_remove:[61,1,1,"c.grn_obj_remove"],grn_obj_rename:[61,1,1,"c.grn_obj_rename"],grn_obj_search:[63,1,1,"c.grn_obj_search"],grn_obj_set_element_info:[59,1,1,"c.grn_obj_set_element_info"],grn_obj_set_finalizer:[62,1,1,"c.grn_obj_set_finalizer"],grn_obj_set_info:[59,1,1,"c.grn_obj_set_info"],grn_obj_set_value:[61,1,1,"c.grn_obj_set_value"],grn_obj_unlink:[61,1,1,"c.grn_obj_unlink"],grn_obj_unlock:[61,1,1,"c.grn_obj_unlock"],grn_obj_user_data:[68,1,1,"c.grn_obj_user_data"],grn_plugin_charlen:[70,1,1,"c.grn_plugin_charlen"],grn_plugin_command_create:[70,1,1,"c.grn_plugin_command_create"],grn_plugin_expr_var_init:[70,1,1,"c.grn_plugin_expr_var_init"],grn_plugin_isspace:[70,1,1,"c.grn_plugin_isspace"],grn_plugin_mutex:[70,2,1,"c.grn_plugin_mutex"],grn_plugin_mutex_close:[70,1,1,"c.grn_plugin_mutex_close"],grn_plugin_mutex_lock:[70,1,1,"c.grn_plugin_mutex_lock"],grn_plugin_mutex_open:[70,1,1,"c.grn_plugin_mutex_open"],grn_plugin_mutex_unlock:[70,1,1,"c.grn_plugin_mutex_unlock"],grn_plugin_proc_alloc:[70,1,1,"c.grn_plugin_proc_alloc"],grn_plugin_proc_get_var:[70,1,1,"c.grn_plugin_proc_get_var"],grn_plugin_proc_get_var_by_offset:[70,1,1,"c.grn_plugin_proc_get_var_by_offset"],grn_plugin_win32_base_dir:[70,1,1,"c.grn_plugin_win32_base_dir"],grn_plugin_windows_base_dir:[70,1,1,"c.grn_plugin_windows_base_dir"],grn_proc_create:[62,1,1,"c.grn_proc_create"],grn_proc_func:[62,2,1,"c.grn_proc_func"],grn_proc_get_info:[62,1,1,"c.grn_proc_get_info"],grn_proc_type:[62,2,1,"c.grn_proc_type"],grn_search_optarg:[63,2,1,"c.grn_search_optarg"],grn_set_default_command_version:[49,1,1,"c.grn_set_default_command_version"],grn_set_default_encoding:[53,1,1,"c.grn_set_default_encoding"],grn_set_default_match_escalation_threshold:[60,1,1,"c.grn_set_default_match_escalation_threshold"],grn_set_lock_timeout:[46,1,1,"c.grn_set_lock_timeout"],grn_table_add:[64,1,1,"c.grn_table_add"],grn_table_at:[64,1,1,"c.grn_table_at"],grn_table_columns:[64,1,1,"c.grn_table_columns"],grn_table_create:[64,1,1,"c.grn_table_create"],grn_table_cursor:[65,2,1,"c.grn_table_cursor"],grn_table_cursor_close:[65,1,1,"c.grn_table_cursor_close"],grn_table_cursor_delete:[65,1,1,"c.grn_table_cursor_delete"],grn_table_cursor_get_key:[65,1,1,"c.grn_table_cursor_get_key"],grn_table_cursor_get_value:[65,1,1,"c.grn_table_cursor_get_value"],grn_table_cursor_next:[65,1,1,"c.grn_table_cursor_next"],grn_table_cursor_open:[65,1,1,"c.grn_table_cursor_open"],grn_table_cursor_set_value:[65,1,1,"c.grn_table_cursor_set_value"],grn_table_cursor_table:[65,1,1,"c.grn_table_cursor_table"],grn_table_delete:[64,1,1,"c.grn_table_delete"],grn_table_delete_by_id:[64,1,1,"c.grn_table_delete_by_id"],grn_table_difference:[64,1,1,"c.grn_table_difference"],grn_table_get:[64,1,1,"c.grn_table_get"],grn_table_get_key:[64,1,1,"c.grn_table_get_key"],grn_table_group:[64,1,1,"c.grn_table_group"],grn_table_group_flags:[64,2,1,"c.grn_table_group_flags"],grn_table_group_result:[64,2,1,"c.grn_table_group_result"],grn_table_lcp_search:[64,1,1,"c.grn_table_lcp_search"],grn_table_rename:[64,1,1,"c.grn_table_rename"],grn_table_setoperation:[64,1,1,"c.grn_table_setoperation"],grn_table_size:[64,1,1,"c.grn_table_size"],grn_table_sort:[64,1,1,"c.grn_table_sort"],grn_table_sort_flags:[64,2,1,"c.grn_table_sort_flags"],grn_table_sort_key:[64,2,1,"c.grn_table_sort_key"],grn_table_truncate:[64,1,1,"c.grn_table_truncate"],grn_table_update:[64,1,1,"c.grn_table_update"],grn_table_update_by_id:[64,1,1,"c.grn_table_update_by_id"],grn_thread_get_limit:[66,1,1,"c.grn_thread_get_limit"],grn_thread_get_limit_func:[66,2,1,"c.grn_thread_get_limit_func"],grn_thread_set_get_limit_func:[66,1,1,"c.grn_thread_set_get_limit_func"],grn_thread_set_limit:[66,1,1,"c.grn_thread_set_limit"],grn_thread_set_limit_func:[66,2,1,"c.grn_thread_set_limit_func"],grn_thread_set_set_limit_func:[66,1,1,"c.grn_thread_set_set_limit_func"],grn_type_create:[67,1,1,"c.grn_type_create"],grn_user_data:[68,2,1,"c.grn_user_data"],script:[146,0,1,"cmdoption-arg-script"]},grn_db_create_optarg:{builtin_type_names:[52,4,1,"c.grn_db_create_optarg.builtin_type_names"],n_builtin_type_names:[52,4,1,"c.grn_db_create_optarg.n_builtin_type_names"]}},objnames:{"0":["std","option","option"],"1":["c","function","C function"],"2":["c","type","C type"],"3":["c","macro","C macro"],"4":["c","member","C member"]},objtypes:{"0":"std:option","1":"c:function","2":"c:type","3":"c:macro","4":"c:member"},terms:{"000x":17,"0\u306e\u79d2\u8868\u8a18":208,"0\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u5148\u982d\u306b\u633f\u5165\u3055\u308c\u307e\u3059":56,"0\u30d9\u30fc\u30b9\u3067":[64,65],"0\u30ea\u30ea\u30fc\u30b9":33,"0\u500b\u4ee5\u4e0a\u306e\u5f15\u6570\u3092\u6301\u3061\u307e\u3059":145,"0mq":40,"0x0":[38,195,211],"0x01":205,"0x02":205,"0x04":205,"0x08":205,"0x10":205,"0x20":170,"0xc7":205,"10000cent":193,"1000\u3068\u3044\u3046\u8a08\u7b97\u5f0f\u3067\u30df\u30ea\u79d2\u5358\u4f4d\u3078\u3068\u5909\u63db\u3055\u308c\u307e\u3059":195,"10041\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":144,"10041\u756a":145,"10043\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u3057\u307e\u3059":145,"10043\u756a":145,"100\u4ef6\u4ee5\u4e0b\u306e\u30d2\u30c3\u30c8\u6570\u3067\u3042\u308c\u3070":208,"100cent":193,"100x100":156,"100x150":157,"1024r":12,"1073741824\u306e\u6574\u6570\u3067":74,"10m":147,"10t13":[187,188,190],"10t22":188,"10z":171,"128452975x503157902":[211,213,218,221],"128487316x502920929":[213,221],"128515259x503187188":[213,221],"1285858800\u306f2010":208,"128mb":39,"12gb":209,"135960000x":155,"13\u7528rpm\u306e\u63d0\u4f9b":35,"143660000x419009000":155,"145508000x":155,"146249000x":217,"146566000x":[155,217],"146607190x":217,"146710080x":217,"146741340x":217,"146867000x":217,"150x100":157,"152489000x":217,"16\u9032\u6570\u3067\u8868\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":84,"16bit":195,"16gb":209,"16gib":194,"175904000x8464000":155,"185428000x":155,"1\u304b\u3089\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3044\u3046\u6982\u5ff5\u304c\u5c0e\u5165\u3055\u308c\u307e\u3059":78,"1\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":65,"1\u3064\u3067\u3082\u30c7\u30fc\u30bf\u30d9\u30fc":37,"1\u3068\u3044\u3046\u6271\u3044\u306b\u306a\u308a\u307e\u3059":78,"1\u3068command":78,"1\u3088\u308a\u5c0f\u3055\u3044\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":65,"1\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u672b\u5c3e\u306b\u633f\u5165\u3055\u308c\u307e\u3059":56,"1\u30b9\u30ec\u30c3\u30c9\u3067\u8907\u6570\u56de\u52d5\u4f5c\u3055\u305b\u305f\u3044\u5834\u5408\u306f":146,"1\u30ea\u30ea\u30fc\u30b9":33,"1\u5358\u8a9e\u6271\u3044":206,"1\u884c\u76ee":146,"1byte":205,"1gb":33,"1st":153,"1x139":211,"2000\u898f\u683c\u306b\u5f93\u3063\u3066\u5168\u89d2\u30ab\u30bf\u30ab\u30ca\u306b\u5909\u63db\u3057\u305f\u6587\u5b57\u5217\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b\u5024\u3092key\u3068\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"200byte":166,"20km":217,"21th":40,"23t02":171,"24byte":205,"256gbyte":32,"256gib":32,"256kb":209,"256kib":194,"257662232kbyte":146,"29289245605469e":80,"2\u306e\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3063\u305f\u969b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3057\u305f":12,"2\u306e\u4e8c\u3064\u3092\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3053\u3068\u306b\u306a\u308a\u307e\u3059":78,"2\u30ea\u30ea\u30fc\u30b9":33,"2\u884c\u76ee":146,"2byte":[82,205],"2nd":128,"2rd":128,"2st":128,"30ac":174,"314e":171,"32bit":[8,33,40,195],"32byte":33,"32gib":194,"3\u3067\u95be\u5024\u306e\u4ef6\u6570\u3088\u308a\u30d2\u30c3\u30c8\u3057\u3066\u3044\u308b\u5834\u5408":206,"3\u30ea\u30ea\u30fc\u30b9":33,"3\u884c\u76ee":146,"3rd":[40,128],"4000\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u5185\u5bb9\u306b\u554f\u984c\u304c\u306a\u3044\u304b\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"4091b":[93,141],"4096byte":[32,33,191],"4097byte":191,"436218z":171,"44001770019531e":178,"45ea3034":173,"4\u30ea\u30ea\u30fc\u30b9":33,"4\u884c\u76ee":146,"4byte":205,"4e86e700":209,"4gbyte":32,"4gib":[191,205],"4kib":[33,44,91,92,93,141],"4th":128,"5367431640625e":178,"56058502197266e":178,"56880000x":155,"59\u74b0\u5883\u306b\u304a\u3044\u3066":37,"5\u30ea\u30ea\u30fc\u30b9":33,"5th":128,"64bit":[8,33,116,195],"64kib":33,"65535byte":33,"6813819x139":[211,221],"6909211x139":221,"6\u3067\u3082\u52d5\u4f5c\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"6\u306e\u3068\u304d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u66f4\u65b0\u3057\u3066pull":12,"6\u30ea\u30ea\u30fc\u30b9":33,"6\u4ee5\u4e0a\u304c\u5fc5\u8981\u3067\u3059":14,"6elz":41,"6gib":194,"7\u30ea\u30ea\u30fc\u30b9":33,"80ghz":146,"82pre":42,"8\u306b\u5bfe\u5fdc":35,"8\u30ea\u30ea\u30fc\u30b9":[12,33],"8bit":195,"8byte":205,"93933868408203e":178,"975mbyte":146,"\u3042\u3068\u306f\u30d6\u30e9\u30a6\u30b6\u306b\u3066http":12,"\u3042\u3089\u304b\u3058\u3081groonga\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u30ed\u30b0\u30a4\u30f3\u3057\u3066\u304a\u304f\u3068\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u5186\u6ed1\u306b\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3042\u3089\u304b\u3058\u3081packages\u30e6\u30fc\u30b6\u3067packag":12,"\u3042\u308a\u307e\u305b\u3093":[106,120,129,133],"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":156,"\u3042\u308b\u3044\u306f\u5ea7\u6a19\u3092\u793a\u3059\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[156,157],"\u3042\u308b\u3044\u306f\u6761\u4ef6\u5f0f\u3092\u8ad6\u7406\u6f14\u7b97\u5b50\u3067\u7d50\u5408\u3057\u305f\u3082\u306e\u3067\u3059":11,"\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u306f\u3058\u3081\u306bdevelop\u6271\u3044\u3068\u3057\u3066\u30ea\u30ea\u30fc\u30b9\u3055\u308c":78,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u304c\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u3046\u3061":78,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306b\u304a\u3044\u3066\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":78,"\u3042\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u306egroonga\u306f":78,"\u3042\u308b\u578b\u306e\u30d9\u30af\u30bf\u30fc\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":195,"\u3042\u308c\u3053\u308c\u60c5\u5831\u63d0\u4f9b\u3092\u8981\u6c42\u3059\u308b\u3068":10,"\u3044\u304d\u306a\u308aredmine\u3067\u30d0\u30b0\u5831\u544a\u3092\u304a\u9858\u3044\u3059\u308b\u3068":10,"\u3044\u304f\u3064\u304b\u306e\u30ab\u30e9\u30e0\u304c\u81ea\u52d5\u7684\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":74,"\u3044\u305a\u308c\u304b\u4e00\u3064\u304c\u5fc5\u305astable\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":78,"\u3044\u305a\u308c\u306e\u95a2\u4fc2\u5f0f\u3082":11,"\u3044\u307e\u3059":10,"\u304a\u304b\u3057\u306a\u7d50\u679c\u3092\u8fd4\u3059\u554f\u984c\u3092\u4fee\u6b63":35,"\u304a\u3070\u305f\u3055\u3093":34,"\u304a\u3088\u3073":12,"\u304b\u3089\u53d6\u5f97\u3067\u304d\u308b\u305d\u308c\u305e\u308c\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066":58,"\u304b\u30c0\u30d6\u30eb\u30af\u30a9\u30fc\u30c8":145,"\u304bwgs84geopoint":[156,157],"\u304c\u3042\u308a\u307e\u3059":12,"\u304c\u306a\u3044\u5834\u5408":12,"\u304c\u30c6\u30fc\u30d6\u30eb\u5358\u4f4d\u306e\u30c0\u30f3\u30d7\u306b\u5bfe\u5fdc":35,"\u304c\u542b\u307e\u308c\u3066\u3044\u3066\u3082":206,"\u304c\u5fc5\u8981\u3067\u3059":12,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3055\u308c\u307e\u3059":165,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":156,"\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f\u7121\u52b9\u3067\u3059":64,"\u304c\u6307\u5b9a\u3055\u308c\u305ftable\u3067\u306f":64,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3051\u308c\u306a\u308a\u307e\u305b\u3093":64,"\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u6709\u52b9\u3067\u3059":[48,64],"\u304c\u7121\u9650\u30eb\u30fc\u30d7\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u304c\u8fd4\u3055\u308c\u307e\u3059":61,"\u3050\u308b\u3093\u304c":[170,171],"\u3050\u308b\u3093\u304c\u592a\u90ce":213,"\u3050\u308b\u3093\u304c\u6b21\u90ce":213,"\u3053\u3046\u3059\u308c\u3070\u826f\u3044\u3068\u3044\u3046\u63d0\u6848\u3092\u3067\u304d\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u3053\u3053\u3067\u306f":208,"\u3053\u3053\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306bruby\u3092\u5229\u7528\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u3092web\u30b5\u30fc\u30d0\u7d4c\u7531\u3067\u53c2\u7167\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u306f\u7c21\u5358\u306b\u8aac\u660e\u3059\u308b\u306e\u3067":208,"\u3053\u3053\u3067\u307e\u3068\u3081\u305f\u5185\u5bb9\u306b\u3064\u3044\u3066\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u3082\u4f7f\u7528\u3057\u307e\u3059":12,"\u3053\u3053\u3067\u3082":208,"\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u30b5\u30dd\u30fc\u30c8\u306e\u969b\u306b\u6c17\u3092\u3064\u3051\u308b\u3053\u3068\u3092\u307e\u3068\u3081\u307e\u3059":10,"\u3053\u306e\u3068\u304d":206,"\u3053\u306e\u307e\u307e\u3067\u306f\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u8868\u793a\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":208,"\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u306e\u306f\u5168\u6587\u691c\u7d22\u6642\u306b\u8907\u6570\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3089\u3067\u3059":208,"\u3053\u306e\u3088\u3046\u306bn":208,"\u3053\u306e\u3088\u3046\u306btokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u91cd\u307f\u3092\u9ad8\u304f\u3059\u308b\u3053\u3068\u306b\u3088\u308a":208,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":146,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u5229\u7528\u3059\u308b\u3068":146,"\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408":146,"\u3053\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u306f":206,"\u3053\u306e\u30b1\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3059\u308b\u306e\u3067":208,"\u3053\u306e\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a":12,"\u3053\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092document":145,"\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e":146,"\u3053\u306e\u30dc\u30bf\u30f3\u3092\u7d4c\u7531\u3059\u308b\u5834\u5408":12,"\u3053\u306e\u4e2d\u3067\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308bgrn_expr\u306e\u3053\u3068\u3092\u7279\u306b\u6761\u4ef6\u5f0f\u3068\u3088\u3073\u307e\u3059":11,"\u3053\u306e\u4f5c\u696d\u306f":12,"\u3053\u306e\u4f5c\u696d\u306f\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3054\u3068\u306b\u884c\u3044\u307e\u3059":12,"\u3053\u306e\u4f5c\u696d\u306fblogroonga\u306e\u82f1\u8a9e\u7248":12,"\u3053\u306e\u4f8b\u306e\u3088\u3046\u306b1\u3064\u306egroonga":146,"\u3053\u306e\u4f8b\u306f\u65e5\u672c\u8a9e\u3060\u3063\u305f\u306e\u3067tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u3088\u304b\u3063\u305f\u306e\u3067\u3059\u304c":208,"\u3053\u306e\u5834\u5408":65,"\u3053\u306e\u5834\u5408\u306f\u30b9\u30b3\u30a2\u304c11\u306b\u306a\u3063\u3066\u3044\u307e\u3059":208,"\u3053\u306e\u5834\u5408\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":208,"\u3053\u306e\u5834\u5408\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":208,"\u3053\u306e\u5834\u5408\u3082\u5bfe\u7b56\u65b9\u6cd51\u540c\u69d8":208,"\u3053\u306e\u5834\u5408\u30d2\u30c3\u30c8\u3057\u307e\u3059":208,"\u3053\u306e\u5ea6\u5408\u3044\u3092\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f":208,"\u3053\u306e\u60c5\u5831\u3092\u56de\u907f\u3059\u308b\u65b9\u6cd5\u30922\u7a2e\u985e\u7d39\u4ecb\u3057\u307e\u3059\u304c":208,"\u3053\u306e\u64cd\u4f5c\u306f":64,"\u3053\u306e\u72b6\u614b\u3067\u3082\u4ee5\u524d\u306f\u30de\u30c3\u30c1\u3057\u306a\u304b\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u30d2\u30c3\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":208,"\u3053\u306e\u7d22\u5f15\u306b\u5bfe\u3057\u3066":206,"\u3053\u306e\u7d50\u679c\u306f":146,"\u3053\u306e\u8a9e\u5f59\u306e\u4e26\u3073\u306f":206,"\u3053\u306e\u8fd1\u4f3c\u65b9\u6cd5\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3067\u3059":156,"\u3053\u308c\u304b\u3089groonga\u3092\u4f7f\u3046\u4eba\u3078\u30a2\u30d4\u30fc\u30eb\u3059\u308b\u70b9\u3084\u65e2\u5b58\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u4eba\u304c\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u3059\u308b\u969b\u306b\u5fc5\u8981\u306a\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u307e\u3059":12,"\u3053\u308c\u3067":12,"\u3053\u308c\u306b\u3088\u308a":12,"\u3053\u308c\u306b\u3088\u308a\u904e\u53bb\u306b\u30ea\u30ea\u30fc\u30b9\u3057\u305f\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6":12,"\u3053\u308c\u306b\u3088\u308aclone\u3057\u3066\u304a\u3044\u305fgroonga":12,"\u3053\u308c\u306b\u5bfe\u3057\u3066":206,"\u3053\u308c\u306f":208,"\u3053\u308c\u3089\u306e\u30ab\u30e9\u30e0\u306f\u3044\u305a\u308c\u3082\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":74,"\u3053\u308c\u3089\u3092\u5408\u8a08\u3057\u306613\u306b\u306a\u3063\u3066\u3044\u307e\u3059":208,"\u3053\u308c\u3092\u30af\u30a8\u30ea\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":11,"\u3053\u308c\u3092\u56de\u907f\u3059\u308b\u306b\u306f":12,"\u3054\u5831\u544a\u3092\u304a\u9858\u3044\u3057\u307e\u3059":146,"\u3055\u3089\u306b\u6b21\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30ea\u30ea\u30fc\u30b9\u3055\u308c\u308b\u3068":78,"\u3057\u304b\u3057":[195,206,208],"\u3057\u3066\u304a\u304f\u3079\u304d\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u793a\u3057\u307e\u3059":12,"\u3057\u308a\u3054\u307f\u3057\u3066\u3057\u307e\u3046\u304b\u3082\u3057\u308c\u307e\u305b\u3093":10,"\u3059\u3067\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u305f\u3068\u3048\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":206,"\u3059\u3067\u306bgroonga\u306eformula\u306f\u53d6\u308a\u8fbc\u307e\u308c\u3066\u3044\u308b\u306e\u3067":12,"\u3059\u3067\u306bgroonga\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u308b\u5834\u5408":146,"\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066\u4e92\u63db\u6027\u304c\u4fdd\u8a3c\u3055\u308c\u307e\u3059":78,"\u3059\u3079\u3066\u306e\u30b9\u30ec\u30c3\u30c9\u6570\u306e\u5408\u8a08\u306f\u6700\u592764\u307e\u3067\u306b\u5236\u9650\u3055\u308c\u307e\u3059":146,"\u3059\u3079\u3066\u306e\u30e2\u30b8\u30e5\u30fc\u30eb\u3067\u540c\u3058\u540d\u524d\u306e\u95a2\u6570\u3092\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u3059\u3079\u3066\u306e\u95a2\u6570\u304c\u30c6\u30b9\u30c8\u3055\u308c\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u304f\u3060\u3055\u3044":14,"\u3059\u308b\u3068":14,"\u3059\u308b\u3068\u304d\u306b\u30ad\u30e3\u30b9\u30c8\u306b\u5931\u6557\u3057\u305f\u3089":35,"\u3059\u308b\u3068\u5927\u4e08\u592b\u3067\u3059":10,"\u3059\u308b\u3068groonga":12,"\u305d\u3053\u3067":208,"\u305d\u3053\u3067\u3042\u3089\u304b\u3058\u3081\u7528\u610f\u3057\u3066\u304a\u3044\u305f":12,"\u305d\u3053\u306b\u5165\u308b\u60c5\u5831\u304c\u3069\u3093\u306a\u5185\u5bb9\u304b\u3092\u793a\u3059\u540d\u524d\u3092\u51fa\u529b\u3057\u307e\u3059":133,"\u305d\u306e\u305f\u3081":[12,98,146,206,208],"\u305d\u306e\u305f\u3081\u306b\u306f\u307e\u305a\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u305d\u306e\u307e\u307emake\u30b3\u30de\u30f3\u30c9\u306b\u3066\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":12,"\u305d\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u578b\u3068\u3057\u3066\u5229\u7528\u3057\u307e\u3059":195,"\u305d\u306e\u30d7\u30ed\u30bb\u30b9\u3067\u5b9f\u884c\u3059\u308b\u3059\u3079\u3066\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3064\u3044\u3066":78,"\u305d\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3057\u307e\u3059":12,"\u305d\u306e\u4e2d\u304b\u3089\u5fc5\u8981\u306a\u90e8\u5206\u3092\u9ad8\u901f\u306b\u53d6\u308a\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u306e\u4ed6\u306e\u74b0\u5883\u3067\u306f\u9069\u5b9c\u8aad\u307f\u66ff\u3048\u3066\u4e0b\u3055\u3044":12,"\u305d\u306e\u4ed6\u306fout_local\u547d\u4ee4\u3068\u540c\u7b49\u3067\u3059":146,"\u305d\u306e\u5185\u5bb9\u3092data\u306b\u30b3\u30d4\u30fc\u3057\u3066\u8fd4\u3057\u307e\u3059":56,"\u305d\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u305d\u306e\u539f\u56e0\u3068\u5bfe\u7b56\u65b9\u6cd5\u3092\u8aac\u660e\u3057\u307e\u3059":208,"\u305d\u306e\u5834\u5408\u306b\u306f\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u3054\u3068\u3084\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u3054\u3068\u306a\u3069":12,"\u305d\u306e\u5f8c\u4e8c\u4e16\u4ee3\u7d4c\u904e\u3059\u308b\u3068\u305d\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306fdeprecated\u6271\u3044\u3068\u306a\u308a\u307e\u3059":78,"\u305d\u306e\u6587\u5b57\u306e\u524d\u306b\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5":145,"\u305d\u306e\u6642\u70b9\u3067\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u63a8\u5968\u3055\u308c\u307e\u3059":78,"\u305d\u306e\u6642\u70b9\u3067stable\u3067\u3042\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":78,"\u305d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":65,"\u305d\u306e\u95a2\u4fc2\u304c\u6210\u308a\u7acb\u3063\u305f\u3068\u304d\u306b\u8a55\u4fa1\u3055\u308c\u308bcallback":11,"\u305d\u306e\u9650\u3089\u308c\u305f\u30c4\u30a4\u30fc\u30c8\u304b\u3089\u89e3\u6c7a\u65b9\u6cd5\u304c\u898b\u3064\u304b\u308c\u3070\u30e6\u30fc\u30b6\u30fc\u306b\u3068\u3063\u3066\u4f59\u8a08\u306a\u624b\u9593\u304c\u5c11\u306a\u304f\u3066\u6e08\u307f\u307e\u3059":10,"\u305d\u306e\u969b":12,"\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,"\u305d\u306erecord\u306eid\u3092\u8fd4\u3057\u307e\u3059":64,"\u305d\u308c\u304c\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3042\u3063\u305f\u5834\u5408\u306f":61,"\u305d\u308c\u305e\u308c":14,"\u305d\u308c\u305e\u308c\u306e\u30b3\u30de\u30f3\u30c9\u306f\u4e00\u610f\u306a\u540d\u524d\u3068":145,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":206,"\u305d\u308c\u305e\u308c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u8aac\u660e\u3057\u307e\u3059":206,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u304c\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b":11,"\u305d\u308c\u305e\u308c\u306e\u8981\u7d20\u306b\u5bfe\u3057\u3066\u4e8c\u3064\u76ee\u306e\u8981\u7d20\u304c\u4e00\u81f4\u3059\u308b\u305f\u3081\u306emode\u3068\u3057\u3066\u4e0b\u8a18\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u305d\u308c\u305e\u308c\u3092\u5358\u4f4d\u3068\u3057\u305f\u8a9e\u5f59\u8868\u306b\u7d22\u5f15\u3092\u7ba1\u7406\u3057\u307e\u3059":206,"\u305d\u308c\u305e\u308c\u30c8\u30ec\u30fc\u30c9\u30aa\u30d5\u3068\u306a\u308b\u6761\u4ef6\u304c\u3042\u308b\u306e\u3067\u63a1\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u5341\u5206\u691c\u8a0e\u3057\u3066\u304f\u3060\u3055\u3044":208,"\u305d\u308c\u305e\u308c\u30ec\u30b3\u30fc\u30c9id":61,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":208,"\u305d\u308c\u3067\u3082\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306f\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":206,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308baccessor\u3092\u8fd4\u3057\u307e\u3059":61,"\u305d\u308c\u306b\u5bfe\u5fdc\u3059\u308btable\u306e\u30ab\u30e9\u30e0\u3092\u8fd4\u3057\u307e\u3059":61,"\u305d\u308c\u306b\u691c\u7d22\u306b\u30de\u30c3\u30c1\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u306b\u3069\u306e\u3088\u3046\u306b\u53cd\u6620\u3059\u308b\u304b\u3092\u6307\u5b9a\u3059\u308b\u6f14\u7b97\u5b50\u3092\u6e21\u3057\u307e\u3059":11,"\u305d\u308c\u3089\u306e\u30d1\u30b9\u306b\u9806\u6b21\u30a2\u30af\u30bb\u30b9\u3057\u307e\u3059":144,"\u305d\u308c\u3089\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9806\u6b21\u884c\u3044\u307e\u3059":144,"\u305d\u308c\u3092\u5143\u306b\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u305d\u308c\u3092\u65e7ji":65,"\u305d\u308c\u4ee5\u5916\u306e\u5834\u5408\u306f\u9577\u3055":67,"\u305f\u3060\u3057":[65,74,145,206],"\u305f\u3060\u3057\u8907\u6570\u306e\u30bd\u30fc\u30c8\u30ad\u30fc\u3068\u4e00\u7dd2\u306b\u4f7f\u3046\u3053\u3068\u306f\u3067\u304d\u306a\u3044":34,"\u305f\u3068\u3048\u3070":206,"\u305f\u3068\u3048\u3070\u4e0b\u8a18\u306e\u3088\u3046\u306bgroonga\u306e\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u63a8\u79fb\u3057\u307e\u3059":78,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u30671\u4ef6\u3082\u30d2\u30c3\u30c8\u3057\u306a\u3044\u5834\u5408\u3067\u3082\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306a\u3069\u3092\u884c\u3044\u307e\u305b\u3093":208,"\u305f\u3068\u3048\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u3066\u3082":208,"\u305f\u3081\u306e\u30c4\u30a4\u30fc\u30c8\u30dc\u30bf\u30f3\u304c\u3042\u308b\u306e\u3067":12,"\u3060\u3068\u539f\u56e0\u306f":10,"\u3064\u307e\u308atest":12,"\u30671\u4ef6\u30d2\u30c3\u30c8\u3057":208,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r1\u3068":11,"\u3067\u3042\u308b\u30ec\u30b3\u30fc\u30c9r2\u304ctable\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u305f\u3068\u304d":11,"\u3067\u3042\u308c\u3070":146,"\u3067\u3059\u306d":10,"\u3067\u306f\u306a\u304ffree":35,"\u3067\u306f\u307e\u3068\u3081\u3066\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u3053\u3068\u3082\u3042\u308a\u307e\u3059":12,"\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":208,"\u3067\u306f\u6607\u9806":64,"\u3067\u306f\u964d\u9806\u3067\u30bd\u30fc\u30c8\u3055\u308c\u307e\u3059":64,"\u3067\u306fgroonga\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u5185\u90e8\u3067":51,"\u3067\u3082\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":208,"\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3055\u308c\u305f\u30ad\u30fc\u304c\u5e38\u306bgrn_nil\u306b\u306a\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a":145,"\u3067\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067\u30d3\u30eb\u30c9\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u306710":208,"\u3067\u30de\u30c3\u30c1\u3057\u305f\u306e\u30673":208,"\u3067\u4e0d\u6b63\u306ajson\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u305d\u308c\u4ee5\u964d\u30b3\u30de\u30f3\u30c9\u3092\u53d7\u3051\u4ed8\u3051\u306a\u304f\u306a\u308b":35,"\u3067\u4f5c\u6210\u3057\u305f":51,"\u3067\u5024\u3092\u56f2\u307f\u307e\u3059":145,"\u3067\u521d\u671f\u5316\u3055\u308c\u305f":51,"\u3067\u533a\u5207\u308a\u307e\u3059":145,"\u3067\u59cb\u307e\u308b\u540d\u524d\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":74,"\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4e88\u7d04\u6e08\u307f\u3067\u3042\u308a":87,"\u3067\u59cb\u307e\u308b\u884c\u306f\u30b3\u30e1\u30f3\u30c8\u3068\u3057\u3066\u6271\u308f\u308c\u307e\u3059":146,"\u3067\u5b58\u5728\u3057\u306a\u3044\u30ab\u30e9\u30e0\u3092":35,"\u3067\u751f\u6210\u3057\u305fcursor\u3092\u89e3\u653e\u3057\u307e\u3059":65,"\u3067\u78ba\u4fdd\u3057\u305f":51,"\u3067\u793a\u3055\u308c\u305f\u60c5\u5831\u306e\u914d\u5217\u3092\u51fa\u529b\u3057\u307e\u3059":133,"\u3067\u7d44\u307f\u5408\u308f\u305b\u305f\u30b7\u30f3\u30dc\u30eb\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\u3067\u89e3\u653e\u3057\u305f\u5f8c\u306b":51,"\u3067\u89e3\u653e\u3067\u304d\u307e\u3059":51,"\u3067\u9023\u7d50\u3057\u305f\u6587\u5b57\u5217\u3067\u3059":61,"\u3067\u914d\u5217\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30fc\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u3067_value\u3092\u6307\u5b9a\u3059\u308b\u3068\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u3067groonga\u306e\u7f72\u540d\u7528\u306e\u9375\u3092\u78ba\u8a8d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u3067table_no_key\u306a\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3059\u308b\u3068\u30c6\u30fc\u30d6\u30eb\u304c\u58ca\u308c\u308b":35,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u5834\u5408":206,"\u3068\u3044\u3046\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u691c\u7d22\u3057\u305f\u6642":206,"\u3068\u3044\u3046\u30af\u30a8\u30ea\u3067\u691c\u7d22\u3057\u3066\u3044\u307e\u3059\u304c":208,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u306710\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u6642\u306b\u5b9f\u884c\u3059\u308b":146,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3057":146,"\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u5358\u4f53\u3067\u5b9f\u884c\u3059\u308b":146,"\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b\u306f\u305a\u3067\u3059":146,"\u3068\u3044\u3046\u4e00\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u4e09\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u4e8b\u67c4\u3092\u307e\u3068\u3081\u307e\u3057\u305f":10,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u51e6\u7406\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u4e8c\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u5341\u4e00\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u56db\u3064\u306e\u8a9e\u5f59\u306e\u914d\u5217\u3068\u3057\u3066\u683c\u7d0d\u3055\u308c\u307e\u3059":206,"\u3068\u3044\u3046\u6587\u5b57\u5217\u306f":206,"\u3068\u3044\u3046\u6587\u5b57\u5217\u8868\u73fe\u3092\u4f7f\u3063\u3066\u6307\u5b9a\u3057\u307e\u3059":195,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u4e00\u81f4\u3057\u307e\u305b\u3093\u306e\u3067":206,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u306f\u542b\u307e\u308c\u306a\u3044\u306e\u3067":206,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u307e\u3059\u306e\u3067":206,"\u3068\u3044\u3046\u8a9e\u5f59\u306e\u4e26\u3073\u306b\u542b\u307e\u308c\u308b\u306e\u3067":206,"\u3068\u3057\u305f\u5834\u5408\u3068\u540c\u3058\u3067\u3059":146,"\u3068\u3057\u3066\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u3082\u306e\u3068\u3057\u3066\u8aac\u660e\u3057\u307e\u3059":12,"\u3068\u306a\u3063\u3066\u3057\u307e\u3046\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"\u3068\u306a\u308a":208,"\u3068\u308a\u3068\u3093":[170,171],"\u3068\u30b3\u30de\u30f3\u30c9\u4e0a\u3067\u30dd\u30fc\u30c8\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3067\u3082":146,"\u3068\u30bf\u30a4\u30d7\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059\u304c":208,"\u3068\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u308b\u305f\u3081":208,"\u3068\u5171\u306b":48,"\u3068\u5171\u306b\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306f":61,"\u3068\u540c\u3058\u610f\u5473":145,"\u3068\u6271\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":34,"\u3068\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u3068\u7701\u7565\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":156,"\u3068blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306eurl\u304c\u633f\u5165\u3055\u308c\u307e\u3059":12,"\u3069\u3046\u3057\u3066\u3053\u306e\u3088\u3046\u306a\u6319\u52d5\u306b\u306a\u308b\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":208,"\u3069\u3046\u3057\u3066\u305d\u3046\u3059\u308b\u306e\u304b\u3068\u3044\u3046\u5171\u901a\u8a8d\u8b58\u3092\u6301\u3063\u3066\u3044\u306a\u3044\u3068\u4e00\u8cab\u6027\u306e\u306a\u3044\u30b5\u30dd\u30fc\u30c8\u3068\u306a\u3063\u3066\u3057\u307e":10,"\u3069\u3046\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u306e\u304c":10,"\u3069\u3061\u3089\u3067\u521d\u671f\u5316\u3055\u308c\u305f":51,"\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u306e\u6319\u52d5\u3092\u4f7f\u3044\u5206\u3051\u3066\u3044\u308b\u304b\u3092\u8aac\u660e\u3059\u308b\u524d\u306b":206,"\u306a\u304a\u3053\u306e\u547d\u4ee4\u306e":146,"\u306a\u3069\u306b\u3088\u3063\u3066\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u5b58\u5426\u3092\u5225\u9014\u78ba\u8a8d\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":61,"\u306a\u3069\u3092\u8fd4\u3057\u307e\u3059":61,"\u306b\u3042\u308b":61,"\u306b\u3064\u3044\u3066\u306f\u5f8c\u8ff0":65,"\u306b\u3064\u3044\u3066\u306f\u7121\u8996\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059":65,"\u306b\u3066\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u7f6e\u304d\u63db\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059":12,"\u306b\u3066\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30ea\u30ea\u30fc\u30b9\u6848\u5185\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"\u306b\u3066\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0\u3057\u307e\u3059":12,"\u306b\u306a\u308a\u307e\u3059":51,"\u306b\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":206,"\u306b\u306f\u4e0b\u8a18\u306e\u9805\u76ee\u304c\u30cf\u30c3\u30b7\u30e5\u5f62\u5f0f\u3067\u51fa\u529b\u3055\u308c\u307e\u3059":84,"\u306b\u306f\u8907\u6570\u306e\u60c5\u5831\u304c\u542b\u307e\u308c\u307e\u3059\u304c":133,"\u306b\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":206,"\u306b\u3088\u3063\u3066\u89e3\u653e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":51,"\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":195,"\u306b\u30d2\u30c3\u30c8\u3057\u307e\u3059\u304c":206,"\u306b\u540c\u3058\u4f4d\u7f6e\u3092\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u306a\u3044\u306e\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":206,"\u306b\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093\u304c":208,"\u306b\u5b8c\u5168\u4e00\u81f4\u3059\u308b\u3053\u3068\u306f\u3042\u308a\u307e\u305b\u3093\u304c":208,"\u306b\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306f":145,"\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":146,"\u306b\u6e21\u3055\u308c\u305fuser_data\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u306b\u7528\u610f\u3055\u308c\u3066\u3044\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u3092\u8868\u793a\u3057\u307e\u3059":146,"\u306b\u7f6e\u304d\u63db\u3048\u3066\u6307\u5b9a\u3057\u307e\u3059":145,"\u306b\u8a2d\u5b9a\u3059\u308b":12,"\u306b\u9001\u4fe1\u3055\u308c\u307e\u3059":146,"\u306e2\u5358\u8a9e\u6271\u3044":206,"\u306e3\u30d5\u30e9\u30b0\u306f":65,"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":[63,64,67],"\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[64,156,157],"\u306e\u3046\u3061\u3044\u305a\u308c\u304b\u3092\u542b\u3080\u5024\u3092\u6307\u5b9a\u3057\u305f\u3044\u5834\u5408\u306f":145,"\u306e\u3053\u3068\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u306e\u307b\u304b\u306b":195,"\u306e\u307f\u3092\u30b5\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059":65,"\u306e\u307f\u3092\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u306e\u3088\u3046\u306b\u5f15\u6570\u306e\u540d\u524d\u3092\u660e\u793a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u306a\u3044\u4ee3\u308f\u308a\u306b":145,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u7121\u8996\u3055\u308c\u308b":145,"\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u306e\u30ab\u30e9\u30e0":[85,96],"\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fee\u6b63":[35,37],"\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":96,"\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":85,"\u306e\u4e00\u884c\u3042\u305f\u308a\u306e\u6700\u5927\u30d0\u30a4\u30c8\u6570\u306e\u5236\u9650\u3092\u64a4\u5ec3":35,"\u306e\u4ed5\u69d8\u3092\u8ffd\u52a0":35,"\u306e\u524d\u5f8c\u306e\u7a7a\u767d\u306f\u306f\u7121\u8996\u3055\u308c\u308b":145,"\u306e\u53ef\u80fd\u6027\u304c\u3042\u308b\u306e\u3067":10,"\u306e\u5834\u5408\u306f":10,"\u306e\u5834\u5408\u306f\u6700\u5927\u9577":67,"\u306e\u6319\u52d5\u3092\u52d5\u7684\u306b\u5909\u66f4\u3059\u308b":35,"\u306e\u66f4\u65b0":3,"\u306e\u7ae0\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u306e\u8fd4\u3059\u30db\u30b9\u30c8\u540d":145,"\u306e\u914d\u5217\u3068\u305d\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":62,"\u306e\u9593\u306e\u6570\u3092\u8868\u3059int32\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":165,"\u306e\u9593\u306e\u7591\u4f3c\u4e71\u6570\u6574\u6570\u3092\u8fd4\u3057\u307e\u3059":165,"\u306e\u9806\u5e8f\u3068\u540c\u3058\u3067\u3059":133,"\u306ebase_version\u306e\u66f4\u65b0":12,"\u306eflags\u3068\u540c\u69d8\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":65,"\u306ematch_columns\u3067\u4f7f\u7528\u3059\u308b\u7d22\u5f15\u6bce\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":208,"\u306etable\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u306exml\u51fa\u529b\u306e\u30bf\u30b0\u540d\u3092\u3088\u308a\u9069\u5207\u306a\u540d\u524d\u306b\u5909\u66f4":35,"\u306exml\u51fa\u529b\u5bfe\u5fdc":35,"\u306f\u306a\u304f":34,"\u306f\u7121\u52b9\u3067\u3042\u308a":65,"\u306f\u7121\u8996\u3055\u308c\u307e\u3059":[64,65],"\u306f\u7279\u6b8a\u306a\u30a2\u30af\u30bb\u30b5\u3067":61,"\u306ftokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3067\u306f":208,"\u3072\u308d\u3042\u304d":219,"\u3072\u308d\u3086\u304d":219,"\u307e\u305a\u4ee5\u4e0b\u3092\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u307e\u305agroonga\u306e\u30bd\u30fc\u30b9\u3092\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3078\u3068\u5c55\u958b\u3057\u307e\u3059":12,"\u307e\u305f\u305d\u308c\u3089\u306eid\u3092":48,"\u307e\u305f\u306f":146,"\u307e\u305f\u306f\u30bd\u30b1\u30c3\u30c8\u7d4c\u7531\u3067groonga\u30b5\u30fc\u30d0\u306b\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u9001\u4fe1\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u884c\u3057\u307e\u3059":[84,85,87,89,95,96,98,104,105,106,120,129,133],"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u4f7f\u7528\u3059\u308btcp\u30dd\u30fc\u30c8\u756a\u53f7":145,"\u307e\u305f\u306f\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":145,"\u307e\u305f\u306f\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u63a5\u7d9a\u5148\u306egroonga":146,"\u307e\u305f\u306fctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":51,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_host\u304c\u512a\u5148\u3055\u308c\u307e\u3059":146,"\u307e\u305f\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u3082set_port\u304c\u512a\u5148\u3055\u308c\u307e\u3059":146,"\u307e\u305f\u540c\u6642\u306b":146,"\u307e\u305fbuf_size\u306e\u9577\u3055\u304ckey\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":64,"\u307e\u305fgroonga":146,"\u307e\u3060\u958b\u767a\u4e2d\u3067\u3042\u308a":78,"\u307e\u3068\u3081\u3066\u304a\u304f\u3068":10,"\u307e\u308d\u3086\u304d":219,"\u3080\u308b\u3093\u304c":[170,171],"\u3082\u3046\u3072\u3068\u3064\u306e\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":154,"\u3082\u3057\u304f\u306f":[64,65,195],"\u3082\u3057\u30d5\u30a1\u30a4\u30eb\u3068\u3057\u3066\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u4e2d\u8eab\u306b\u95a2\u308f\u3089\u305a\u52d5\u4f5c\u3092\u7d9a\u3051\u3066\u3057\u307e\u3044":146,"\u3082\u3057\u6307\u5b9a\u3055\u308c\u305fdb\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070\u81ea\u52d5\u7684\u306bdb\u3092\u4f5c\u6210\u3057\u307e\u3059\u304c":146,"\u3082\u3057groonga":146,"\u3082\u3057test":146,"\u3082\u30d2\u30c3\u30c8\u3057\u307e\u3059":206,"\u3084\u304c\u3066stable\u306b\u79fb\u884c\u3057\u307e\u3059":78,"\u3084\u308a\u3068\u308a\u3092\u8003\u3048\u306a\u304f\u3066\u826f\u3044\u3067\u3059\u304c":10,"\u3084red":12,"\u3084rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306espec\u30d5\u30a1\u30a4\u30eb\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u306a\u3069\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"\u3086\u304d\u3072\u308d":219,"\u3088\u3063\u3066":195,"\u3088\u308a\u3082\u9045\u304f\u306a\u308a\u307e\u3059\u304c":156,"\u3088\u308a\u8a73\u7d30\u306a\u5831\u544a\u3092\u884c\u3044\u307e\u3059":146,"\u308b\u3053\u3068\u304c\u3042\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u308d\u3086\u304d":219,"\u3092\u3054\u89a7\u4e0b\u3055\u3044":14,"\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"\u3092\u30b3\u30d4\u30fc\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":98,"\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u3092\u4f7f\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":195,"\u3092\u4f7f\u3046\u3088\u3046\u306b\u4fee\u6b63":35,"\u3092\u4f7f\u3063\u3066\u89e3\u653e\u3057\u307e\u3059":58,"\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u3092\u516c\u958b":35,"\u3092\u524d\u63d0\u3068\u3057\u3066\u8aac\u660e\u3057\u3066\u3044\u308b\u305f\u3081":12,"\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":[146,195,208],"\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":48,"\u3092\u542b\u3080\u540d\u524d\u306e\u30ab\u30e9\u30e0\u306f\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093":87,"\u3092\u6307\u5b9a\u3057":[65,85,96],"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f":65,"\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306f\u8ca0\u306e\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":65,"\u3092\u6307\u5b9a\u3057\u305f\u306a\u3089":11,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u3067\u306f":65,"\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u95a2\u3059\u308b\u4e0b\u8a18\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":65,"\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":65,"\u3092\u6307\u5b9a\u3057\u305ftable\u306b\u3064\u3044\u3066\u306f":65,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305f\u30c6\u30fc\u30d6\u30eb\u3067":65,"\u3092\u6307\u5b9a\u3057\u3066\u4f5c\u3063\u305ftable\u306a\u3089":64,"\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,52,59,61,64,67,145,146],"\u3092\u6307\u5b9a\u3059\u308b\u3068":[48,65],"\u3092\u6307\u5b9a\u3059\u308b\u3068\u30b9\u30ab\u30e9\u5024":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3057\u307e\u3059":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092lzo\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u5024\u3092zlib\u5727\u7e2e\u3057\u3066\u683c\u7d0d\u3057\u307e\u3059":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6607\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6b63\u898f\u5316\u3055\u308c\u305f\u6587\u5b57\u5217\u304ckey\u3068\u306a\u308a\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9acolumn\u3068\u306a\u308a\u307e\u3059":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u6c38\u7d9atable\u3068\u306a\u308a\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3068\u306a\u308a\u307e\u3059":48,"\u3092\u6307\u5b9a\u3059\u308b\u3068\u964d\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068domain\u578b\u306e\u5024\u306e\u30d9\u30af\u30bf\u3092\u683c\u7d0d\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u306a\u308a\u307e\u3059":61,"\u3092\u6307\u5b9a\u3059\u308b\u3068id\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u6587\u5b57\u5217\u306e\u5168suffix\u304c\u81ea\u52d5\u7684\u306b\u767b\u9332\u3055\u308c\u307e\u3059":64,"\u3092\u6307\u5b9a\u3059\u308b\u3068key\u9806\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068max\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":65,"\u3092\u6307\u5b9a\u3059\u308b\u3068min\u306b\u4e00\u81f4\u3057\u305fkey\u3092cursor\u306e\u7bc4\u56f2\u306b\u542b\u307f\u307e\u305b\u3093":65,"\u3092\u683c\u7d0d\u3057\u307e\u3059":48,"\u3092\u7528\u3044\u3066\u3044\u307e\u3059":14,"\u3092\u7528\u3044\u308b\u3079\u304d\u3067\u3059":61,"\u3092\u7701\u7565\u3057\u305f\u5834\u5408\u306f\u65b9\u5f62\u8fd1\u4f3c\u306b\u306a\u308a\u307e\u3059":156,"\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u3092\u8a08\u7b97\u3059\u308b":34,"\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":146,"\u3092\u8a66\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u3092\u8fd4\u3057\u307e\u3059":[56,61,64,65],"\u3092\u8fd4\u3059\u3088\u3046\u306b\u3057\u305f":34,"\u3092\u8ffd\u52a0":[35,37],"\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":62,"\u3092db\u306b\u5b9a\u7fa9\u3057\u307e\u3059":67,"\u3092false\u306b\u8a2d\u5b9a\u3057\u307e\u3059":12,"\u3092grn_cursor_column_index\u5bfe\u5fdc\u306b\u3057\u305f":35,"\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":144,"\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u3068\u306f":61,"\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9\u624b\u9806\u3092\u5b9f\u884c\u3059\u308b":12,"\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":[206,208],"\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u306e\u5834\u5408\u306ftokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306a\u3069\u3082\u5229\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":208,"\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2":87,"\u30a2\u30fc\u30ab\u30a4\u30d6\u7b49\u304cpackag":12,"\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u3055\u308c\u306a\u3044":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u3078\u306e\u30ea\u30f3\u30af":12,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3057\u3066\u3044\u308b\u304b":146,"\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306b\u63a5\u7d9a\u3067\u304d\u308b\u74b0\u5883\u3067\u3042\u308c\u3070groonga\u30b3\u30de\u30f3\u30c9\u306e\u77e5\u8b58\u304c\u306a\u304f\u3066\u3082groonga\u306e\u52d5\u4f5c\u3092\u78ba\u8a8d\u3067\u304d\u307e\u3059":146,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u3064\u3044\u305f\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u7d50\u679c\u304c\u304a\u304b\u3057\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u304c\u524a\u9664\u3055\u308c\u307e\u3059":89,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u72b6\u614b":84,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u7528\u3044\u305f\u30b8\u30aa\u30b5\u30fc\u30c1\u306e\u4f8b\u3092\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u306b\u8ffd\u52a0":37,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u306e\u5834\u5408":84,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066\u306f":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408\u306f":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u306e\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u5bfe\u8c61\u3068\u306a\u308b\u30ab\u30e9\u30e0\u3092source\u5f15\u6570\u306b\u6307\u5b9a\u3057\u307e\u3059":87,"\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u7b49":85,"\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u9375\u306b\u5bfe\u3057\u3066trust":12,"\u30a6\u30a7\u30a4\u30c8\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u30a6\u30a7\u30d6\u30d6\u30e9\u30a6\u30b6\u3067http":145,"\u30a6\u30a7\u30d6\u30d9\u30fc\u30b9\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u7ba1\u7406\u30c4\u30fc\u30eb\u3092\u4f7f\u7528\u3067\u304d\u307e\u3059":145,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":60,"\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u306e\u8a73\u7d30\u306f\u8a73\u7d30\u306f\u691c\u7d22\u306e\u4ed5\u69d8\u306b\u95a2\u3059\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044":60,"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u305f\u5834\u5408\u306b\u306ffalse\u3092\u8fd4\u3059":[85,89,95,104,105,106],"\u30a8\u30e9\u30fc\u304c\u751f\u3058\u306a\u304b\u3063\u305f\u5834\u5408\u306b\u306ftrue":[85,89,95,104,105,106],"\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u305f\u5834\u5408\u306f":61,"\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u308f\u304b\u308a\u3084\u3059\u304f\u3057\u305f":35,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u304b\u3051\u3089\u308c\u305f":85,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308b":85,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7":96,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u8868\u793a":84,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306f\u69cb\u9020\u4f53\u306e\u5b9f\u4f53\u3092api\u306e\u547c\u3073\u5143\u3067\u78ba\u4fdd\u3059\u308b\u306e\u306b\u5bfe\u3057\u3066":51,"\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":51,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u660e\u793a\u7684\u306b\u30b5\u30fc\u30d0\u3092\u6307\u5b9a\u3057\u306a\u3044\u304b\u304e\u308a":146,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":146,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068":146,"\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":34,"\u30aa\u30fc\u30d0\u30fc\u30d5\u30ed\u30fc\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u30ab\u30d0\u30ec\u30c3\u30b8\u306b\u306f":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":3,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u304c\u5165\u3063\u305fhtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831\u3092\u8a08\u6e2c\u3059\u308b\u305f\u3081\u306b\u306f":14,"\u30ab\u30e9\u30e0\u306e\u5c5e\u6027\u3092\u8868\u3059\u4ee5\u4e0b\u306e\u6570\u5024\u304b":87,"\u30ab\u30e9\u30e0\u306e\u8ffd\u52a0":87,"\u30ab\u30e9\u30e0\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\u30ab\u30e9\u30e0\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u30ab\u30e9\u30e0\u540d\u306f":87,"\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,61],"\u30ab\u30e9\u30e0\u540d\u7b49\u3092":61,"\u30ab\u30e9\u30e0obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":48,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":65,"\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":65,"\u30ab\u30ec\u30fc":206,"\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":206,"\u30ab\u30f3\u30b8":163,"\u30ab\u30f3\u30de":98,"\u30ad\u30e3\u30c3\u30b7\u30e5\u60c5\u5831\u3092\u8ffd\u52a0":34,"\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u30ad\u30fc":145,"\u30ad\u30fc\u304c":145,"\u30ad\u30fc\u30ef\u30fc\u30c9":36,"\u30af\u30a8\u30ea\u306e":208,"\u30af\u30a8\u30ea\u306e\u307f\u3092\u6307\u5b9a\u3059\u308b\u3068\u30d2\u30c3\u30c8\u3057\u307e\u3059":208,"\u30af\u30a8\u30ea\u306e\u5185\u5bb9\u3092\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e0e\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":144,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":[3,4],"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":[3,4],"\u30af\u30a8\u30ea\u3092\u8868\u3059grn_expr":11,"\u30af\u30a8\u30ea\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u8a08\u6e2c\u7528":34,"\u30af\u30a8\u30ea\u30fc\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":3,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3082\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306e\u305d\u308c\u305e\u308c\u306b\u5bfe\u5fdc\u3059\u308b\u5f62\u3067\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8":145,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30d7\u30ed\u30bb\u30b9\u306a\u3089\u3070groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u63a5\u7d9a\u3092\u5207\u308a\u307e\u3059":120,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u3067\u306e":35,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306f10043\u756a":145,"\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u30b0\u30eb\u30fc\u30d7\u5316":74,"\u30b0\u30eb\u30fc\u30d7\u5316\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u304c":74,"\u30b0\u30eb\u30fc\u30d7\u5316\u51e6\u7406\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u306e_nsubrecs\u306b\u8a18\u9332\u3055\u308c\u307e\u3059":74,"\u30b0\u30eb\u30fc\u30d7\u5316\u524d\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u304a\u3044\u3066":74,"\u30b3\u30de\u30f3\u30c9\u304c\u5931\u6557\u3057\u305f\u3089false\u3092\u8fd4\u3059\u3088\u3046\u306b\u5909\u66f4":35,"\u30b3\u30de\u30f3\u30c9\u304cquery\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066\u3069\u306e\u3088\u3046\u306b\u691c\u7d22\u3059\u308b\u306e\u304b\u3092\u8aac\u660e\u3057\u307e\u3059":206,"\u30b3\u30de\u30f3\u30c9\u3067\u30ad\u30fc\u304cshorttext\u4ee5\u5916\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3067\u304d\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"\u30b3\u30de\u30f3\u30c9\u3067\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u304c\u58ca\u308c\u308b\u5834\u5408\u306f\u30a8\u30e9\u30fc":34,"\u30b3\u30de\u30f3\u30c9\u3067\u5024\u3092\u683c\u7d0d\u3059\u308b\u3068\u304d\u306f":195,"\u30b3\u30de\u30f3\u30c9\u306b\u304a\u3051\u308b\u6307\u5b9a\u65b9\u6cd5\u306ftokyogeopoint\u3068\u540c\u3058\u3067\u3059":195,"\u30b3\u30de\u30f3\u30c9\u306e\u30b5\u30f3\u30d7\u30eb\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e":35,"\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u51e6\u7406\u306fc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c\u307e\u3059":11,"\u30b3\u30de\u30f3\u30c9\u306f\u4e3b\u306bc\u8a00\u8a9e\u3067\u8a18\u8ff0\u3055\u308c":145,"\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":35,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u7570\u306a\u308c\u3070":78,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5\u306fgroonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u3068\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059":78,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":78,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f1\u304b\u3089\u306f\u3058\u307e\u308a":78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306e\u5185\u5bb9\u3092\u7e70\u308a\u8fd4\u3057\u5b9f\u884c\u3057\u307e\u3059":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u306f":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067gqtp\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092groonga\u30b5\u30fc\u30d0\u3067http\u7d4c\u7531\u3067\u5b9f\u884c\u3057\u307e\u3059":146,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u4e2d\u306egroonga\u30b3\u30de\u30f3\u30c9\u306e\u9577\u3055\u306f\u6700\u95775000000byte\u3067\u3059":146,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u306e\u5b9f\u884c\u4f8b\u306fzsh":12,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u3068set_port\u3067\u6307\u5b9a\u3057\u305f\u30dd\u30fc\u30c8\u756a\u53f7\u304c\u7570\u306a\u308b\u5834\u5408":146,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306b\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":146,"\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306bcommand\u3092\u4e0e\u3048\u306a\u304b\u3063\u305f\u5834\u5408\u306f":145,"\u30b3\u30de\u30f3\u30c9\u540d":145,"\u30b3\u30de\u30f3\u30c9\u540d\u3068\u5f15\u6570\u540d\u3068\u5024\u306f":145,"\u30b3\u30df\u30c3\u30c8":12,"\u30b3\u30e1\u30f3\u30c8\u884c":146,"\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u5bfe\u5fdc":35,"\u30b3\u30ed\u30f3":87,"\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0":12,"\u30b3\u30fc\u30eb\u30d0\u30c3\u30af\u95a2\u6570\u306b\u6e21\u3055\u308c\u308barg\u3068\u3092\u5f15\u6570\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30b4\u30df\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":84,"\u30b5\u30b8\u30a7\u30b9\u30c8\u6a5f\u80fd\u7528\u306e\u5b66\u7fd2\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0":35,"\u30b5\u30dd\u30fc\u30c8\u7bc4\u56f2\u5916\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u3068\u306a\u308a":78,"\u30b5\u30f3\u30d7\u30eb\u5185\u306e\u30b9\u30af\u30ea\u30d7\u30c8\u306b\u5b9f\u884c\u5c5e\u6027\u304c\u3064\u304b\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":36,"\u30b5\u30fc\u30d0":145,"\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3059\u308b\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"\u30b5\u30fc\u30d0\u304c\u52d5\u4f5c\u3057\u3066\u3044\u306a\u3044\u304b":146,"\u30b5\u30fc\u30d0\u304c\u81ea\u52d5\u7684\u306b\u306f\u8d77\u52d5\u3055\u308c\u306a\u3044\u306e\u3082\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3057\u305f\u5834\u5408\u3068\u540c\u69d8\u3067\u3059":146,"\u30b5\u30fc\u30d0\u306b\u63a5\u7d9a\u3057":145,"\u30b5\u30fc\u30d0\u306eid\u3068\u306a\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u30b5\u30fc\u30d0\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u5229\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306f":146,"\u30b5\u30fc\u30d0\u3092\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308b\u5834\u5408\u3082\u3053\u306e\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5229\u7528\u3055\u308c\u307e\u3059":146,"\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":145,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u3084\u5b9f\u884c\u901f\u5ea6\u6e2c\u5b9a\u304c\u53ef\u80fd\u3067\u3059":146,"\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u306e\u505c\u6b62":129,"\u30b5\u30fc\u30d0\u30e2\u30fc\u30c9\u304b\u30c7\u30fc\u30e2\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b\u3068\u304d":145,"\u30b7\u30a7\u30eb\u4e0a":146,"\u30b7\u30f3\u30b0\u30eb\u30af\u30a9\u30fc\u30c8":145,"\u30b9\u3092\u9589\u3058\u308b\u3068\u95a2\u9023\u3059\u308b\u30d7\u30e9\u30b0\u30a4\u30f3\u3082\u9589\u3058\u3089\u308c\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":37,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b3\u30e1\u30f3\u30c8\u884c\u306b\u306f\u7279\u6b8a\u30b3\u30de\u30f3\u30c9\u3092\u57cb\u3081\u8fbc\u3080\u3053\u3068\u304c\u53ef\u80fd\u3067\u3059":146,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u3059":146,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u884c\u306b\u306f\u8907\u6570\u306egroonga":146,"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306f":146,"\u30b9\u30af\u30ea\u30d7\u30c8\u540d":146,"\u30b9\u30bf\u30a4\u30eb\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u540d\u3068\u540c\u3058\u3082\u306e\u304c\u4f7f\u3048\u308b":145,"\u30b9\u30bf\u30f3\u30c9\u30a2\u30ed\u30f3\u304a\u3088\u3073\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30e2\u30fc\u30c9\u306e\u5834\u5408\u306f":145,"\u30b9\u30ec\u30c3\u30c9\u6570":146,"\u30b9\u30ec\u30c3\u30c9\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u5834\u5408":146,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u3068":146,"\u30b9\u30ec\u30c3\u30c9\u6570\u3084\u7e70\u308a\u8fd4\u3057\u6570\u306e\u610f\u5473\u306fdo_local\u306e\u5834\u5408\u3068\u540c\u3058\u3067\u3059":146,"\u30b9\u30fc\u30d7":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30d0\u30fc":206,"\u30b9\u30fc\u30d7\u30ab\u30ec\u30fc\u30e9\u30a4\u30b9":206,"\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":84,"\u30bb\u30c3\u30b7\u30e7\u30f3\u7d42\u4e86":120,"\u30bb\u30df\u30b3\u30ed\u30f3\u306f\u8907\u6570\u306egroonga":146,"\u30bb\u30df\u30b3\u30ed\u30f3\u3092\u5229\u7528\u3057\u3066":146,"\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u305d\u308c\u305e\u308c\u306b\u304a\u3044\u3066\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30a2\u30fc\u30ab\u30a4\u30d6\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3092\u884c\u3044\u307e\u3059":12,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u306e\u9759\u7684\u89e3\u6790\u3092\u884c\u3046\u305f\u3081\u306b\u306f":14,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30bd\u30fc\u30c8\u30ad\u30fc\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30bd\u30fc\u30c8\u51e6\u7406\u304c\u5b9f\u884c\u3055\u308c\u308b\u524d\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":128,"\u30bf\u30b0\u3092\u6253\u3063\u305f\u5f8c\u306bconfigure\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067":12,"\u30bf\u30b0\u3092\u6253\u3064\u524d\u306bmake":12,"\u30c0\u30e1\u30fc\u30b8":208,"\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u3088\u308a\u8fd4\u3055\u308c\u308b\u5024\u304c\u5909\u308f\u308a\u307e\u3059":84,"\u30c1\u30e3\u30f3\u30af\u306e\u30b5\u30a4\u30ba\u3067\u3059":84,"\u30c1\u30e3\u30f3\u30af\u3092\u4f7f\u3063\u3066\u3044\u308b\u8a9e\u306e\u6570\u3067\u3059":84,"\u30c1\u30e3\u30f3\u30af\u30b5\u30a4\u30ba\u306e\u5408\u8a08\u3067\u3059":84,"\u30c1\u30e3\u30f3\u30af\u5185\u3067\u306e\u30b5\u30a4\u30ba":84,"\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u4e2d\u306etypo\u3092\u4fee\u6b63":37,"\u30c4\u30a4\u30fc\u30c8\u5185\u5bb9\u306b\u81ea\u52d5\u7684\u306b\u30ea\u30ea\u30fc\u30b9\u30bf\u30a4\u30c8\u30eb":12,"\u30c6\u30ad\u30b9\u30c8\u304b\u3089\u6570\u5024\u3078\u306e\u30ad\u30e3\u30b9\u30c8\u51e6\u7406\u3092\u5f37\u5316":35,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u306a\u3044\u90e8\u5206\u306e\u7de8\u96c6\u306f\u614e\u91cd\u306b\u884c\u3063\u3066\u304f\u3060\u3055\u3044":14,"\u30c6\u30b9\u30c8\u304c\u30ab\u30d0\u30fc\u3057\u3066\u3044\u308b\u90e8\u5206\u3092\u5897\u3084\u3059\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":14,"\u30c6\u30b9\u30c8\u304c\u5931\u6557\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":35,"\u30c6\u30b9\u30c8\u304c\u5b9f\u884c\u3067\u304d\u308b\u74b0\u5883\u304c\u6574\u3063\u305fgdb\u304c\u5b9f\u884c\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306e\u30d5\u30ec\u30fc\u30e0\u30ef\u30fc\u30af\u3068\u3057\u3066":14,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":3,"\u30c6\u30b9\u30c8\u306e\u5b9f\u884c\u304c\u958b\u59cb\u3055\u308c\u307e\u3059":14,"\u30c6\u30b9\u30c8\u306f":14,"\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":[3,4,6,7,8],"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":3,"\u30c6\u30b9\u30c8\u7528\u306e\u30c7\u30fc\u30bf\u306f1\u4ef6\u3060\u3051\u6295\u5165\u3057\u307e\u3059":208,"\u30c6\u30fc\u30d6\u30eb":85,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u633f\u5165\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057\u3066\u8868\u793a\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u306e\u524a\u9664":89,"\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u540d":133,"\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":87,"\u30c6\u30fc\u30d6\u30eb\u306e\u7a2e\u985e\u306b\u3088\u3063\u3066\u7570\u306a\u308a\u307e\u3059":74,"\u30c6\u30fc\u30d6\u30eb\u306eflags\u5c5e\u6027":133,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304c\u56fa\u5b9a\u9577\u578b\u306e\u5834\u5408":65,"\u30c6\u30fc\u30d6\u30eb\u306ekey\u304cshorttext\u578b\u3067\u3042\u308b\u5834\u5408":65,"\u30c6\u30fc\u30d6\u30eb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u5272\u308a\u5f53\u3066\u3089\u308c\u305fid":133,"\u30c6\u30fc\u30d6\u30eb\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u30c6\u30fc\u30d6\u30eb\u4e00\u89a7\u3092\u8868\u793a\u3057\u307e\u3059":145,"\u30c6\u30fc\u30d6\u30eb\u540d":[85,96,133],"\u30c6\u30fc\u30d6\u30eb\u540d\u4e00\u89a7\u304c\u4ee5\u4e0b\u306e\u5f62\u5f0f\u3067\u8fd4\u5374\u3055\u308c\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u578b\u306f":195,"\u30c6\u30fc\u30d6\u30eb\u60c5\u58311":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u306e\u578b\u3092\u51fa\u529b\u3057\u307e\u3059":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540d1":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u540dn":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578b1":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831\u578bn":133,"\u30c6\u30fc\u30d6\u30eb\u60c5\u5831n":133,"\u30c6\u30fc\u30d6\u30ebentry\u306b":87,"\u30c6\u30fc\u30d6\u30ebentry\u306e\u5168\u30ec\u30b3\u30fc\u30c9":95,"\u30c6\u30fc\u30d6\u30ebterm\u306b":87,"\u30c6\u30fc\u30d6\u30ebterms\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0name\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":84,"\u30c7\u30a3\u30b9\u30af\u4f7f\u7528\u91cf\u8a08\u6e2c\u7528":34,"\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30ea\u30ea\u30fc\u30b9\u3068\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3\u306e\u7d44\u307f\u5408\u308f\u305b\u3067\u30d3\u30eb\u30c9\u3092\u5e73\u884c\u3057\u3066\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u767b\u9332\u3057\u3066\u3044\u307e\u3059":12,"\u30c7\u30d0\u30c3\u30b0\u7528\u306e\u305f\u3081":84,"\u30c7\u30d5\u30a9\u30eb\u30c8":11,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f":[145,146],"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u4fdd\u5b58\u3057\u307e\u305b\u3093":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u51fa\u529b\u3055\u308c\u307e\u305b\u3093":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3068\u3057\u3066\u6307\u5b9a\u3055\u308c\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u4f7f\u7528\u3057\u307e\u3059":78,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30ed\u30b0\u95a2\u6570\u3092\u7528\u3044\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u306b\u5bfe\u5fdc\u3057\u3066\u3044\u307e\u3059":106,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":60,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":60,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0":34,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u5909\u66f4\u3057\u307e\u3059":49,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u8fd4\u3057\u307e\u3059":49,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u5909\u66f4\u3057\u307e\u3059":53,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u8fd4\u3057\u307e\u3059":53,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f0\u3067\u3059":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f100\u3067\u3059":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306f\u30de\u30b7\u30f3\u306ecpu\u30b3\u30a2\u6570\u3068\u540c\u3058\u6570\u3067\u3059":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u306fgqtp":145,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024":195,"\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f":[144,145],"\u30c7\u30fc\u30bf\u306b\u4e0d\u6574\u5408\u304c\u767a\u751f\u3059\u308b\u5834\u5408\u306f\u30c7\u30fc\u30bf\u3092\u524a\u9664\u3057\u306a\u3044\u3088\u3046\u306b\u5909\u66f4":34,"\u30c7\u30fc\u30bf\u306e\u6574\u5408\u6027\u3092\u78ba\u8a8d\u3059\u308bcheck\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":85,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304b\u53ef\u5909\u9577\u30b5\u30a4\u30ba\u30ab\u30e9\u30e0":96,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u3059":146,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":145,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u51fa\u529b\u3059\u308b":98,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092groonga\u306e\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u547c\u3073\u51fa\u3057\u5f62\u5f0f\u3067\u51fa\u529b\u3057\u307e\u3059":98,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d0\u30c3\u30af\u30a2\u30c3\u30d7\u304c\u4e3b\u306a\u5229\u7528\u65b9\u6cd5\u3067\u3059":98,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u7ba1\u7406\u3059\u308b\u305f\u3081\u306e\u6c4e\u7528\u7684\u306a\u30da\u30fc\u30b8\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u304c":145,"\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u4e0a\u306b\u5b9a\u7fa9\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u3084\u7d22\u5f15\u306a\u3069\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u53ef\u80fd\u306a\u9650\u308a\u9ad8\u901f\u306b\u6307\u5b9a\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3057\u3088\u3046\u3068\u3057\u307e\u3059":11,"\u30c7\u30fc\u30bf\u30ed\u30fc\u30c9\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u30c7\u30fc\u30bf\u6295\u5165\u5f8c\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u4f5c\u6210\u306b\u5bfe\u5fdc":34,"\u30c7\u30fc\u30e2\u30f3":145,"\u30c7\u30fc\u30e2\u30f3\u306b\u306a\u308b\u3068\u304d\u306f\u6a19\u6e96\u51fa\u529b\u3092\u9589\u3058\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u30c8\u30e2\u3061\u3083\u3093":213,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[22,35],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":[22,207],"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u6700\u65b0\u7248\u3068\u5404\u56fd\u8a9e\u7248\u306e\u5185\u5bb9\u3092\u540c\u671f\u3059\u308b\u305f\u3081\u306b":12,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u8aa4\u5b57\u3092\u4fee\u6b63":35,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u751f\u6210\u6642\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u756a\u53f7\u306b\u53cd\u6620\u3055\u308c\u307e\u3059":12,"\u30cb\u30c3\u30dd\u30f3":[163,177,187],"\u30cb\u30db\u30f3":[163,177,187],"\u30cb\u30db\u30f3\u30b4":187,"\u30cb\u30db\u30f3\u30b8\u30f3":187,"\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":208,"\u30d0\u30c3\u30af\u30b9\u30e9\u30c3\u30b7\u30e5\u6587\u5b57\u81ea\u8eab\u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":145,"\u30d0\u30c3\u30d5\u30a1\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":84,"\u30d0\u30c3\u30d5\u30a1\u306e\u4f7f\u7528\u91cf\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b":84,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b1":84,"\u30d0\u30c3\u30d5\u30a1\u306e\u72b6\u614b2":84,"\u30d0\u30c3\u30d5\u30a1\u306e\u7a7a\u304d\u5bb9\u91cf\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1\u5185\u3067\u306e\u30b5\u30a4\u30ba":84,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u3046\u3061":84,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u4e00\u89a7\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1\u5185\u306b\u3042\u308b\u8a9e\u306e\u6570\u3067\u3059":84,"\u30d0\u30c3\u30d5\u30a1id\u3067\u3059":84,"\u30d0\u30fc\u30b8\u30e7\u30f3":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":33,"\u30d0\u30fc\u30b8\u30e7\u30f31":33,"\u30d1\u30a4\u30d7":87,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u3067\u306f\u3044\u304f\u3064\u304b\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u304b\u3089\u69cb\u6210\u3055\u308c\u3066\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":3,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u306b\u5fc5\u8981\u306a\u79d8\u5bc6\u9375\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u306b\u3064\u3044\u3066\u306f":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u63d0\u4f9b\u3059\u308bubuntu\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092hardi":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u30df\u30b9\u3092\u4fee\u6b63":35,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b\u4f5c\u696d\u3092\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u4f5c\u696d\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3092\u5bfe\u8c61\u306b\u884c\u3044\u307e\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u5909\u66f4\u3042\u308a":37,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u306e\u9375\u304c\u5fc5\u8981\u3067\u3059":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":3,"\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u305f\u3081\u306e\u30c4\u30fc\u30eb\u3067\u3059":144,"\u30d2\u30c3\u30c8\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u8ffd\u52a0\u3057\u307e\u3059":11,"\u30d3\u30eb\u30c9\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3057\u30ea\u30ea\u30fc\u30b9\u524d\u306e\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,"\u30d3\u30eb\u30c9\u306b\u6210\u529f\u3059\u308b\u3068":12,"\u30d3\u30eb\u30c9\u6642\u306etip":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u3068\u3057\u3066\u306f":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":3,"\u30d3\u30eb\u30c9\u74b0\u5883\u306f":12,"\u30d3\u30eb\u30c9\u7d50\u679c\u304c\u30e1\u30fc\u30eb\u3067\u901a\u77e5\u3055\u308c\u307e\u3059":12,"\u30d4\u30ea\u30aa\u30c9":87,"\u30d5\u30a1\u30a4\u30eb":12,"\u30d5\u30a1\u30a4\u30eb\u30b7\u30b9\u30c6\u30e0\u306e\u30eb\u30fc\u30c8\u76f4\u4e0b\u306b":37,"\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044":84,"\u30d5\u30e9\u30b0\u3092\u6570\u5024\u3067\u306f\u306a\u304f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u5909\u66f4":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308bdefrag\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570":96,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u89e3\u6d88\u3092\u5b9f\u884c\u3057\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3059":96,"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u89e3\u6d88\u304c\u5b9f\u884c\u3055\u308c\u305f\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":61,"\u30d6\u30ed\u30b0":3,"\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7f6e\u304d\u5834\u6240\u3092\u5909\u66f4":35,"\u30d7\u30e9\u30b0\u30a4\u30f3\u767b\u9332api\u306e\u540d\u524d\u3092\u6539\u826f":36,"\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u6bce\u306ecutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5":14,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u8a2d\u5b9a\u30da\u30fc\u30b8":12,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u505c\u6b62\u3057\u307e\u3059":78,"\u30d7\u30ed\u30bb\u30b9\u306f\u901f\u3084\u304b\u306b\u7d42\u4e86\u3057\u307e\u3059":78,"\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":145,"\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":145,"\u30d9\u30af\u30bf\u306e\u5024\u3092":35,"\u30d9\u30af\u30bf\u306e\u5024\u3092\u51fa\u529b\u3059\u308b\u3068\u304d\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u30d9\u30af\u30bf\u306egeopoint\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":195,"\u30db\u30b9\u30c8\u3067web\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30eb\u30fc\u30c8\u3092\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u3082\u306e":12,"\u30db\u30b9\u30c8\u540d\u304c\u7570\u306a\u308b\u5834\u5408":146,"\u30db\u30b9\u30c8\u540d\u3068":146,"\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u6307\u5b9a\u3057\u306a\u3044\u5834\u5408\u306b\u306f":[144,145],"\u30de\u30af\u30ed\u306a\u3069\u3067\u521d\u671f\u5316\u6e08\u307f\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":61,"\u30de\u30eb\u30c1\u30bb\u30af\u30b7\u30e7\u30f3\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u4e00\u90e8\u3067\u3042\u308b\u5834\u5408\u3082":89,"\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7d4c\u5ea6x\u30df\u30ea\u79d2\u5358\u4f4d\u306e\u7def\u5ea6":195,"\u30e1\u30e2\u30ea\u30c7\u30d0\u30c3\u30b0\u7528\u30aa\u30d7\u30b7\u30e7\u30f3":35,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u306e\u4fee\u6b63":34,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":[35,37],"\u30e1\u30fc\u30c8\u30eb":156,"\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u521d\u671f\u5316\u95a2\u6570\u304c\u8907\u6570\u56de\u547c\u3070\u308c\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u30e6\u30fc\u30b6\u304c\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u95a2\u4fc2\u5f0f\u3068\u3057\u3066\u4f7f\u3046\u3053\u3068\u3082\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u304cc\u8a00\u8a9e\u3067\u5b9a\u7fa9\u3057\u305f\u95a2\u6570\u3092\u65b0\u305f\u306a\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306b\u7d44\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u30e6\u30fc\u30b6\u3078\u5f71\u97ff\u3059\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":[3,4],"\u30e6\u30fc\u30b6\u30fc\u306b\u3042\u307e\u308a\u8ca0\u62c5\u3092\u611f\u3058\u3055\u305b\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u3068\u826f\u3044\u3067\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u306f\u305d\u306e\u3076\u3093\u78ba\u8a8d\u3059\u308b\u4f5c\u696d\u304c\u5fc5\u8981\u306b\u306a\u308a\u307e\u3059":10,"\u30e6\u30fc\u30b6\u30fc\u30b5\u30dd\u30fc\u30c8\u3092\u3057\u305f\u308a\u3057\u3066\u3044\u307e\u3059":10,"\u30e6\u30fc\u30b6\u540d":146,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u30d7\u30ed\u30c8\u30b3\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u30ea\u30af\u30a8\u30b9\u30c8\u306e\u591a\u91cd\u5ea6\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":144,"\u30ea\u30dd\u30b8\u30c8\u30ea\u306bgnupg\u3067\u7f72\u540d\u3092\u884c\u3046\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306b\u5fc5\u8981\u306a\u30d5\u30a1\u30a4\u30eb\u3067\u3059\u306e\u3067\u6f0f\u308c\u306a\u304f\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u305f\u3073\u306bformula\u306e\u5185\u5bb9\u3092\u66f4\u65b0\u3059\u308b\u4f5c\u696d\u3092\u5b9f\u65bd\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u30c8\u30d4\u30c3\u30af\u7d39\u4ecb\u3067\u306f":12,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u306b\u5229\u7528\u3059\u308b\u5834\u5408\u306b\u306f":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u6848\u5185\u3092\u3057\u305f\u308a":10,"\u30ea\u30ea\u30fc\u30b9\u306e\u969b\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u3066":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306b\u306f\u4ee5\u4e0b\u3092\u542b\u3081\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u6d41\u3057\u7d42\u3048\u305f\u3089":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":3,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u5f8c\u8ff0\u3059\u308b\u30b3\u30de\u30f3\u30c9":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306frpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5bfe\u3059\u308b\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":3,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9":12,"\u30ea\u30ea\u30fc\u30b9\u5909\u66f4\u70b9\u3078\u306e\u30ea\u30f3\u30af":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u304claunchpad":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u53cd\u6620\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u30c7\u30fc\u30bf\u3084\u30d1\u30c3\u30b1\u30fc\u30b8":12,"\u30ea\u30ea\u30fc\u30b9\u5bfe\u8c61\u306erpm\u306b\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":3,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u4e00\u90e8\u3092\u5dee\u3057\u66ff\u3048\u305f\u3044\u5834\u5408":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":[3,4],"\u30ea\u30ea\u30fc\u30b9\u624b\u9806\u306e\u524d\u63d0\u6761\u4ef6\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306f\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332\u3055\u308c\u305f\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u5f8c\u306b\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u884c\u3044\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u5411\u3051\u306e\u79d8\u5bc6\u9375\u3092\u5fa9\u53f7\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u306e1\u884c\u76ee\u306b\u8a18\u8f09\u3057\u3066\u3042\u308a\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u65e5":12,"\u30ea\u30ea\u30fc\u30b9\u6642\u3068\u958b\u767a\u6642\u3067\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u5206\u3051\u305a\u306b\u4f5c\u696d\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059\u304c":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306b\u30d3\u30eb\u30c9\u3059\u308b\u305f\u3081\u306b\u306f\u4ee5\u4e0b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066configure\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u304c\u3067\u304d\u305f\u306e\u3067":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30af\u30ea\u30fc\u30f3\u306a\u72b6\u614b\u3067\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30bf\u30b0\u3092\u6253\u3064\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":3,"\u30ea\u30f3\u30af\u3092\u3042\u306a\u305f\u306e\u30d5\u30a9\u30ed\u30ef\u30fc\u306b\u5171\u6709\u3059\u308b":12,"\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u9650\u308a\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":74,"\u30ec\u30b3\u30fc\u30c9\u306b\u4ed8\u4e0e\u3055\u308c\u308b\u4e00\u610f\u306a\u756a\u53f7\u3067\u3059":74,"\u30ec\u30b3\u30fc\u30c9\u306e\u4e3b\u30ad\u30fc\u5024\u3092\u8868\u3057\u307e\u3059":74,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u304b\u8abf\u3079\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3068value\u304c\u7b49\u3057\u3044\u5834\u5408\u306b\u9650\u3063\u3066\u30ed\u30c3\u30af\u3057\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u52a0\u7b97\u3057\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306bvalue\u3092\u6e1b\u7b97\u3057\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u5148\u982d\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u306e\u672b\u5c3e\u306bvalue\u3092\u8ffd\u52a0\u3057\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u8868\u3057\u307e\u3059":74,"\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u3068\u7f6e\u304d\u63db\u3048\u307e\u3059":61,"\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0":35,"\u30ec\u30b3\u30fc\u30c9\u3092key\u5024\u306e\u6607\u964d\u9806\u3067\u53d6\u308a\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":65,"\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u30ec\u30b3\u30fc\u30c9r1\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30b3\u30fc\u30c9r2\u306e\u307f\u304c\u30d2\u30c3\u30c8\u3057\u307e\u3059":11,"\u30ec\u30fc\u30d9\u30f3\u30b7\u30e5\u30bf\u30a4\u30f3\u8ddd\u96e2":34,"\u30ed\u30b0\u306b\u306f\u6b8b\u308b":37,"\u30ed\u30b0\u306b\u30bf\u30a4\u30e0\u30b9\u30bf\u30f3\u30d7\u306e\u79d2\u3088\u308a\u5c0f\u3055\u3044\u5024\u304c\u5e38\u306b0\u306b\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":36,"\u30ed\u30b0\u306bmessage\u3092\u51fa\u529b\u3057\u307e\u3059":105,"\u30ed\u30b0\u306fmv\u3067\u79fb\u52d5\u3055\u308c\u305f\u5148\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":106,"\u30ed\u30b0\u3092":12,"\u30ed\u30b0\u3092\u51fa\u529b\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u30ed\u30b0\u30a4\u30f3\u53ef\u80fd\u3067\u3042\u308b\u304b\u306e\u78ba\u8a8d\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u884c\u3044\u307e\u3059":12,"\u30ed\u30b0\u30d1\u30b9\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306b":35,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u518d\u8aad\u307f\u8fbc\u307f":106,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306ajson\u5f62\u5f0f\u306e\u30c6\u30ad\u30b9\u30c8\u3067\u3059":146,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u52d5\u7684\u306bftp":146,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092\u518d\u8aad\u307f\u8fbc\u307f\u3057\u307e\u3059":106,"\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u3092mv\u306a\u3069\u3067\u79fb\u52d5\u3059\u308b":106,"\u30ed\u30b0\u51fa\u529b":105,"\u30ed\u30b0\u51fa\u529b\u3092\u884c\u3044\u307e\u3059":145,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u8a2d\u5b9a":104,"\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u3092\u8a2d\u5b9a\u3057\u307e\u3059":[104,145],"\u30ed\u30b1\u30fc\u30eb\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u66f4\u65b0\u3084\u5909\u66f4\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306e\u30ea\u30b9\u30c8\u7b49\u3092\u66f4\u65b0\u3059\u308b\u305f\u3081\u306b\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u30ed\u30c3\u30af\u3092\u518d\u5e30\u7684\u306b\u89e3\u9664\u3057\u307e\u3059":85,"\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":145,"\u30ed\u30fc\u30de\u30b8":[163,177],"\u30ed\u30fc\u30de\u5b57":163,"\u30ed\u30fc\u30de\u5b57\u5165\u529b":177,"\u30f3\u3092\u89e3\u6d88\u3057\u307e\u3059":96,"\u4e00\u3064\u306e\u9023\u7d9a\u3057\u305f\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066\u6271\u3044\u307e\u3059":206,"\u4e00\u3064\u306etable\u306b\u540c\u4e00\u306ename\u306ecolumn\u3092\u8907\u6570\u5b9a\u7fa9\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":48,"\u4e00\u65b9":208,"\u4e00\u6642\u7684\u304b\u6c38\u7d9a\u7684\u304b\u3092\u6c17\u306b\u3057\u306a\u304f\u3066\u3088\u3044":61,"\u4e00\u6642\u7684\u306aobject\u3067\u3042\u308bobj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":61,"\u4e00\u6642object\u306a\u3089null\u3092\u8fd4\u3057\u307e\u3059":61,"\u4e00\u822c\u7684\u306b\u306f":61,"\u4e00\u884c\u306b\u8907\u6570\u306egroonga":146,"\u4e0a\u4f4dlimit\u500b\u306e\u8981\u7d20\u3092result\u306b\u683c\u7d0d\u3057\u307e\u3059":64,"\u4e0a\u66f8\u304d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3046":12,"\u4e0a\u8a18\u306e\u4f8b\u3067\u306f":208,"\u4e0a\u8a18\u306e\u610f\u5473\u306f\u4ee5\u4e0b\u306e\u3068\u304a\u308a\u3067\u3059":146,"\u4e0a\u8a18url\u3092\u53c2\u7167\u3059\u308b\u3068\u308f\u304b\u308b\u3088\u3046\u306b\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306eurl\u3068sha1\u30c1\u30a7\u30c3\u30af\u30b5\u30e0\u3092\u66f4\u65b0\u3057\u307e\u3059":12,"\u4e0a\u91ce\u4e43\u6bc5\u3055\u3093":35,"\u4e0b\u8a18":65,"\u4e0b\u8a18\u306e11\u7a2e\u985e\u304c\u7528\u610f\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u4e0b\u8a18\u306e\u3088\u3046\u306a\u914d\u5217\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":84,"\u4e0d\u6b63\u306a\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u3068\u304d\u306bdump\u3059\u308b\u3068\u843d\u3061\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u4e0d\u6b63\u306a\u5165\u529b\u5024\u306b\u5bfe\u3057\u3066\u30a8\u30e9\u30fc\u3092\u51fa\u529b\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u4e0d\u6b63\u306a\u540d\u524d\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u3082\u5831\u544a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306a\u6587\u5b57\u3092\u898b\u3064\u3051\u305f\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u4e0d\u6b63\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u4e0d\u6b63\u306asort\u30ad\u30fc\u3092\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408\u306fsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u4e0e\u3048":208,"\u4e16\u754c\u6e2c\u5730\u7cfb":195,"\u4e16\u754c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[156,157],"\u4e3b\u306a\u95a2\u4fc2\u5f0f\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":11,"\u4e3b\u306b\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u304b\u3089\u4f7f\u3046\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":98,"\u4e3b\u306b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u58ca\u308c\u305f\u5834\u5408\u306a\u3069\u7570\u5e38\u6642\u306e\u554f\u984c\u89e3\u6c7a\u306e\u305f\u3081\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u60f3\u5b9a\u3057\u3066\u3044\u307e\u3059":84,"\u4e3b\u30ad\u30fc\u304c\u6570\u5024\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3067\u306e\u6bd4\u8f03\u6f14\u7b97\u306b\u5bfe\u5fdc":35,"\u4e3b\u30ad\u30fc\u304cshorttext\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u5225\u9014\u4f5c\u6210\u3057":195,"\u4e3b\u30ad\u30fc\u306e\u5024\u304c\u540c\u4e00\u3067\u3042\u3063\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8868\u3057\u307e\u3059":74,"\u4e3b\u30ad\u30fc\u3092\u6301\u3064\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":74,"\u4e3b\u30ad\u30fc\u5024\u306e\u5c5e\u3059\u308b\u578b":133,"\u4e3b\u30ad\u30fc\u5024\u306f\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u4e00\u610f\u3067\u3042\u308a":74,"\u4e71\u6570\u3092\u751f\u6210\u3059\u308b":165,"\u4e8c":177,"\u4e8c\u3064\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u540c\u6642\u306b\u30b5\u30dd\u30fc\u30c8\u3059\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":78,"\u4e92\u63db\u6027\u304c\u306a\u304f\u306a\u308b\u3088\u3046\u306a\u5909\u66f4":12,"\u4eac\u90fd":[193,206,208],"\u4eca\u5f8c\u306e\u30ed\u30b0\u306f\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u307e\u308c\u308b":106,"\u4ed5\u69d8\u304c\u5909\u66f4\u3055\u308c\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":78,"\u4ed8\u968f\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3082\u524a\u9664\u3055\u308c\u307e\u3059":89,"\u4ee5\u4e0a\u3067\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u306f\u7d42\u4e86\u3067\u3059":12,"\u4ee5\u4e0a\u306e\u539f\u56e0\u3067\u306a\u3051\u308c\u3070":146,"\u4ee5\u4e0b":146,"\u4ee5\u4e0b\u3067":208,"\u4ee5\u4e0b\u306b\u4f4e\u30ec\u30a4\u30e4\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089\u9806\u306b\u8aac\u660e\u3057\u307e\u3059":11,"\u4ee5\u4e0b\u306bgroonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3092\u884c\u3046\u305f\u3081\u306b\u4e8b\u524d\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":11,"\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30af\u30a8\u30ea\u306e\u5834\u5408\u306f":206,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9":98,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u3092\u884c\u3046\u524d\u306b\u691c\u7d22\u7d50\u679c\u30bb\u30c3\u30c8\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":206,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5168\u6587\u691c\u7d22\u524d\u306b\u3059\u3067\u306b\u95be\u5024\u304c\u8d8a\u3048\u3066\u3044\u308b\u5834\u5408":208,"\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u6307\u5b9a\u3059\u308b\u3068":208,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bdocument_version\u3084document_version_full\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u3088\u3046\u306bgroonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u5148\u304b\u3089\u306e\u76f8\u5bfe\u30d1\u30b9\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3067\u30ed\u30fc\u30ab\u30eb\u306bweb\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306f\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u4e88\u3081\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u3059":145,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u7f72\u540d\u3092\u884c\u3044\u307e\u3059":12,"\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":[12,14],"\u4ee5\u4e0b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":61,"\u4ee5\u4e0b\u306e\u57fa\u6e96\u3092\u76ee\u5b89\u3068\u3057\u3066\u5909\u66f4\u70b9\u3092\u8ffd\u8a18\u3057\u3066\u3044\u304d\u307e\u3059":12,"\u4ee5\u964d\u306e\u8aac\u660e\u3067\u306f":12,"\u4ee5\u964d\u306f\u30b3\u30e1\u30f3\u30c8":145,"\u4ee5\u964d\u3082\u30b3\u30e1\u30f3\u30c8":145,"\u4ee5\u964d\u3092\u7121\u8996":35,"\u4efb\u610f\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u51fa\u529b\u5148\u3092\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":146,"\u4efb\u610f\u306e\u9806\u756a\u3067\u5f15\u6570\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u53ef\u80fd\u3067":145,"\u4efb\u610f\u306edb\u540d":146,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5165\u529b\u5024\u30c1\u30a7\u30c3\u30af\u3092\u5f37\u5316":37,"\u4f4d\u7f6e\u60c5\u5831\u306e\u5c0f\u6570\u8868\u8a18\u304b\u3089\u30df\u30ea\u79d2\u3078\u306e\u5909\u63db\u8aa4\u5dee\u304c\u5927\u304d\u3044\u554f\u984c\u3092\u4fee\u6b63":37,"\u4f4d\u7f6e\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":87,"\u4f5c\u6210\u3055\u308c\u306a\u3044\u5834\u5408":146,"\u4f5c\u6210\u3057\u305f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u30e1\u30fc\u30ea\u30f3\u30b0\u30ea\u30b9\u30c8\u3078\u3068\u6d41\u3057\u307e\u3059":12,"\u4f5c\u6210\u3059\u308b\u30ab\u30e9\u30e0\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\u4f5c\u6210\u3059\u308bdb\u306e\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u6642\u306b\u6307\u5b9a\u3057\u307e\u3059":52,"\u4f5c\u6210\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u4f5c\u6210\u3059\u308bproc\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u4f5c\u6210\u3059\u308btable\u306e\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u4f5c\u6210\u3059\u308btable\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u4f5c\u6210\u3059\u308btype\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":67,"\u4f5c\u6210\u6e08\u307f\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u5b9a\u7fa9\u3057\u307e\u3059":145,"\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4f8b\u306f\u4ee5\u4e0b\u3092\u4f7f\u7528\u3057\u307e\u3059":12,"\u4f7f\u7528\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u30ab\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u307e\u3059":87,"\u4f7f\u7528\u3059\u308b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f":78,"\u4f7f\u7528\u3059\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d1\u30b9\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093":87,"\u4f7f\u7528\u3092\u7d42\u4e86\u3057\u307e\u3059":51,"\u4f7f\u7528\u4e2d\u306e\u30c1\u30e3\u30f3\u30af\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":84,"\u4f7f\u7528\u4e2d\u306e\u8ad6\u7406\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":84,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059":78,"\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308a\u4ed5\u69d8\u3082\u5b89\u5b9a\u3057\u3066\u3044\u307e\u3059\u304c":78,"\u4f8b":[12,22,34,61],"\u4f8b\u3048\u3070":[61,145,146,206,208],"\u4fee\u6b63":33,"\u500b\u3005\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u969b\u306b":78,"\u500b\u3005\u306e\u6761\u4ef6\u306f\u540c\u3058\u3067\u3059\u304c":208,"\u500b\u5225\u306b\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u3067\u554f\u984c\u304c\u767a\u751f\u3057\u3066\u3044\u308b\u7b87\u6240\u3092\u5207\u308a\u5206\u3051\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"\u5024":145,"\u50241":145,"\u50242":145,"\u5024\u304c\u56fa\u5b9a\u9577\u3067\u3042\u308b\u30ab\u30e9\u30e0\u306e\u307f\u304cobj\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":61,"\u5024\u304c\u5b58\u5728\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u304c\u3042\u308b\u30ab\u30e9\u30e0\u3067\u30bd\u30fc\u30c8\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u4e2d\u3067\u306f":145,"\u5024\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":87,"\u5024\u306e\u7bc4\u56f2\u306f1":74,"\u5024\u306e\u914d\u5217\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":61,"\u5024\u3092\u53d6\u5f97\u3059\u308b\u7bc4\u56f2\u306e\u958b\u59cb\u4f4d\u7f6e\u3068\u306a\u308b\u30ec\u30b3\u30fc\u30c9id\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5024\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[59,61],"\u5065\u4f5c":213,"\u5143\u306e\u30b9\u30b3\u30a2\u5024\u306b\u52a0\u3048\u307e\u3059":11,"\u5165\u529b":85,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb":146,"\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u540d":146,"\u5168\u3066\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":74,"\u5168\u30ab\u30e9\u30e0\u306e\u5024\u3092\u51fa\u529b\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":95,"\u5168\u4ef6\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":65,"\u5168\u6587\u691c\u7d22\u306e\u307f\u3067\u691c\u7d22\u3057\u307e\u3059":208,"\u5168\u6587\u691c\u7d22\u6642\u306b\u524a\u9664\u3057\u305f\u30ec\u30b3\u30fc\u30c9\u304c\u8fd4\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u516c\u958b\u3055\u308c\u3066\u3044\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u306f\u4ee5\u4e0b\u306eurl\u3067\u78ba\u8a8d\u3067\u304d\u307e\u3059":12,"\u5185\u5bb9\u304c\u5909\u66f4\u3055\u308c\u305fdb\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u5185\u8a33\u306f":208,"\u5185\u90e8\u5229\u7528\u306e\u305f\u3081\u306e\u30e1\u30f3\u30d0\u3067\u3059":64,"\u5185\u90e8\u7684\u306a\u5909\u66f4":12,"\u5186\u306e\u4e2d\u5fc3\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u5186\u306e\u534a\u5f84\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u5186\u5468\u4e0a\u306e\u70b9\u306e\u4e00\u3064\u306e\u5ea7\u6a19\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":156,"\u518d\u73fe\u624b\u9806\u3092ml\u304bredmine\u306b\u5831\u544a\u3057\u3066\u3082\u3089\u3048\u307e\u3059\u304b":10,"\u518d\u73fe\u7387\u3088\u308a\u3082\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":208,"\u51e6\u7406\u306e\u5b9f\u884c\u72b6\u6cc1\u3092\u8abf\u3079\u305f\u308a":56,"\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u3068":74,"\u51e6\u7406\u6642\u9593\u306a\u3069\u672c\u8cea\u7684\u8981\u7d20\u4ee5\u5916\u306b\u5dee\u5206\u304c\u3042\u3063\u305f\u5834\u5408":146,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u51fa\u529b\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u51fa\u529b\u3059\u308b\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":105,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb":146,"\u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u540d":146,"\u51fa\u529b\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092":98,"\u5206\u5272":206,"\u5206\u5c90\u306b\u5bfe\u5fdc\u3057\u307e\u3059":14,"\u521d\u671f\u5024\u306f10\u3067\u3059":144,"\u521d\u671f\u5316\u3055\u308c\u305f":51,"\u521d\u671f\u5316\u3059\u308b":51,"\u521d\u671f\u5316\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u521d\u671f\u5316\u6e08\u307f\u306e":52,"\u521d\u671f\u5316\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u5225\u306e\u5f62\u5f0f\u3068\u3057\u3066\u89e3\u91c8\u3057\u3066db_api\u3092\u4f7f\u3063\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u304b\u306f\u30b3\u30de\u30f3\u30c9\u6bce\u306b\u81ea\u7531\u306b\u6c7a\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u5229\u7528\u3067\u304d\u308b\u30d0\u30a4\u30b0\u30e9\u30e0\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u4e00\u89a7\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":208,"\u5229\u7528\u8005\u306f\u56f0\u3063\u305f\u307e\u307e\u3068\u306a\u308b\u306e\u3067":10,"\u524a\u9664\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e_id\u306e\u5024\u306f\u518d\u5229\u7528\u3055\u308c\u307e\u3059":74,"\u524a\u9664\u3057\u305f\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u304b\u3089id\u9806\u306b\u53d6\u308a\u51fa\u3059\u30ab\u30fc\u30bd\u30eb\u304c":35,"\u524a\u9664\u3092\u7e70\u308a\u8fd4\u3059\u3068\u30c7\u30fc\u30bf\u304c\u58ca\u308c":35,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u524a\u9664\u5bfe\u8c61\u306e\u30ab\u30e9\u30e0\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":89,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u304b\u3089\u306e\u5909\u66f4\u5c65\u6b74\u3092\u53c2\u7167\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u524d\u56de\u30ea\u30ea\u30fc\u30b9\u6642\u304b\u3089\u306e\u5909\u66f4\u70b9\u3092":12,"\u524d\u63d0\u6761\u4ef6":3,"\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u304c\u30de\u30c3\u30c1\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":34,"\u524d\u8ff0\u306e\u4f8b\u3092\u4f7f\u3063\u3066\u5177\u4f53\u4f8b\u3092\u793a\u3057\u307e\u3059":208,"\u5272\u308a\u5f53\u3066\u3089\u308c\u305f\u5834\u6240\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"\u529b":129,"\u52c9\u5f37":193,"\u52d5\u4f5c\u306b\u4e92\u63db\u6027\u304c\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":78,"\u52d5\u4f5c\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057":12,"\u533a\u5207\u308a\u3067\u6307\u5b9a\u3057\u307e\u3059":98,"\u534a\u5f84":156,"\u534a\u5f84\u304b\u3089\u306e\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u305f\u3081\u306b\u5730\u5f62\u3092\u3069\u306e\u3088\u3046\u306b\u8fd1\u4f3c\u3059\u308b\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":156,"\u534a\u89d2\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u304b\u3089":65,"\u5358\u4e00\u306e\u5024\u304c\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u5358\u4f4d":[67,156],"\u5358\u72ec\u306e\u5024":48,"\u5358\u7d14\u306a\u8a08\u7b97\u5f0f\u3067\u8ddd\u96e2\u3092\u6c42\u3081\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u305f\u3081\u9ad8\u901f\u3067\u3059\u304c":156,"\u539f\u56e0":[22,207],"\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"\u53c2\u8003\u307e\u3067\u306b\u904e\u53bb\u306e\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3078\u306e\u30ea\u30f3\u30af\u3092\u4ee5\u4e0b\u306b\u793a\u3057\u307e\u3059":12,"\u53ca\u3073windows\u4e0a\u3067\u52d5\u4f5c\u3057\u307e\u3059":146,"\u53cc\u65b9\u306b\u3068\u3063\u3066\u5b09\u3057\u304f\u306a\u3044\u72b6\u614b\u306b\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3059":10,"\u53d6\u5f97\u3057\u305f\u3044\u30ab\u30e9\u30e0\u540d\u306eprefix\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u53d6\u5f97\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u53d6\u5f97\u3067\u304d\u305f\u4ef6\u6570\u304c\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3055\u308c\u307e\u3059":61,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u89e3\u6d88\u3092\u884c\u3044\u307e\u3059":61,"\u53ef\u80fd\u306a\u9818\u57df\u3092threshold\u3092\u6307\u6a19\u3068\u3057\u3066\u89e3\u653e\u3057\u307e\u3059":61,"\u53f3\u4e0a":34,"\u53f3\u4e0b":34,"\u53f3\u8fba\u304c\u5f0f\u306e\u6f14\u7b97\u4ee3\u5165\u6f14\u7b97\u5b50\u3092\u30b5\u30dd\u30fc\u30c8":35,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u3059\u3079\u3066":146,"\u5404\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u7d50\u679c\u3092\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u6bd4\u8f03\u3057\u307e\u3059":146,"\u5404\u30b3\u30de\u30f3\u30c9\u306f\u3044\u304f\u3064\u304b\u306e\u6587\u5b57\u5217\u5f15\u6570\u3092\u53d7\u3051\u53d6\u308a":11,"\u5404\u30b9\u30ec\u30c3\u30c9\u306ftest":146,"\u5404\u30c1\u30e3\u30f3\u30af\u6bce\u306e\u30b4\u30df\u306e\u6570\u3067\u3059":84,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u3092\u64cd\u4f5c\u3059\u308b\u5f0f\u3092\u6307\u5b9a\u3057\u3066\u304a\u3051\u3070":128,"\u5404\u30ec\u30b3\u30fc\u30c9\u306e\u30b9\u30b3\u30a2\u5024\u3092\u8868\u3057\u307e\u3059":74,"\u5404\u547d\u4ee4\u306f\u4e26\u5217\u306b\u5b9f\u884c\u3055\u308c\u307e\u3059":146,"\u5404\u8a9e\u306e\u72b6\u614b\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u914d\u5217\u3068\u306a\u3063\u3066\u3044\u307e\u3059":84,"\u5408\u308f\u305b\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044":12,"\u540c\u3058\u3067\u3059":146,"\u540c\u3058\u540d\u524d\u306e\u30b3\u30de\u30f3\u30c9\u3067\u3042\u3063\u3066\u3082":78,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u3082\u4e00\u7dd2\u306b\u6307\u5b9a\u3059\u308b\u30af\u30a8\u30ea\u306b\u3088\u3063\u3066\u306f\u5168\u6587\u691c\u7d22\u306e\u7d50\u679c\u304c\u7570\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":208,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":[22,207],"\u540c\u4e00\u306e\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3042\u308b\u306a\u3089":78,"\u540c\u4e00\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5b9a\u7fa9\u6e08\u307f\u306e\u30e6\u30fc\u30b6\u5b9a\u7fa9\u578b":87,"\u540c\u4e00\u30d5\u30a1\u30a4\u30eb\u5185\u306b\u8907\u6570\u56de\u7279\u6b8a\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u5834\u5408":146,"\u540c\u6642\u306b":9,"\u540c\u6642\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":65,"\u540c\u6642\u306b\u8907\u6570\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u958b\u3044\u3066\u3044\u308b\u3068\u304d":37,"\u540d\u524d\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":[48,61],"\u540d\u524d\u4ed8\u304d\u306eobject\u3067\u3042\u308a":61,"\u5426\u5b9a":11,"\u542b\u3081\u306a\u3044\u3082\u306e":12,"\u542b\u3081\u308b\u3082\u306e":12,"\u547c\u51fa\u5074\u3067\u306ftype\u306b\u5fdc\u3058\u3066\u5341\u5206\u306a\u30b5\u30a4\u30ba\u306e\u30d0\u30c3\u30d5\u30a1\u3092\u78ba\u4fdd\u3057\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":59,"\u547c\u51fa\u5074\u3067\u6e96\u5099":59,"\u547c\u51fa\u5074\u3067\u6e96\u5099\u3059\u308b":[48,61,64],"\u554f\u984c\u3042\u308a":37,"\u554f\u984c\u306fgroonga":146,"\u554f\u984c\u3092\u4fee\u6b63":35,"\u56de\u907f\u65b9\u6cd5\u7b49\u306e\u6848\u5185\u3092\u8f09\u305b\u308b\u3053\u3068\u3082\u91cd\u8981\u3067\u3059":12,"\u56f0\u3063\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u304c\u8907\u6570\u56de\u30c4\u30a4\u30fc\u30c8\u3057\u3066\u9650\u3089\u308c\u305f\u306a\u304b\u3067\u60c5\u5831\u3092\u63d0\u4f9b\u3057\u3066\u304f\u308c\u3066\u3044\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":10,"\u56fa\u5b9a\u9577\u30ab\u30e9\u30e0\u306b\u30ab\u30e9\u30e0\u9577\u3088\u308a\u77ed\u3044\u30c7\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u3068\u30b4\u30df\u304c\u6b8b\u3063\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u578b":67,"\u578b\u306e\u30ab\u30e9\u30e0\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093":48,"\u578b\u306e\u30ab\u30e9\u30e0\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":58,"\u578b\u306e\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059":64,"\u57fa\u672c\u7684\u306b\u306f\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u5185\u5bb9\u3092\u305d\u306e\u307e\u307e\u8a18\u8f09\u3057\u307e\u3059":12,"\u5909\u6570\u306e\u6570\u3092\u53d6\u5f97\u3057\u307e\u3059":62,"\u5909\u6570\u540d\u306e\u5909\u66f4\u3084\u3089\u30ea\u30d5\u30a1\u30af\u30bf\u30ea\u30f3\u30b0":12,"\u5909\u66f4\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":74,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":49,"\u5909\u66f4\u5f8c\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u306eencoding\u3092\u6307\u5b9a\u3057\u307e\u3059":53,"\u5909\u66f4\u5f8c\u306e\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":60,"\u5909\u66f4\u5f8c\u306ecommand_version\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5909\u66f4\u5f8c\u306ekey\u306e\u9577\u3055":64,"\u5909\u66f4\u5f8c\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5909\u66f4\u5f8c\u306eobj\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":3,"\u591a\u91cd\u5ea6100\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046":144,"\u5b58\u5728\u3057\u306a\u3044\u30a2\u30c9\u30ec\u30b9\u3078\u30a2\u30af\u30bb\u30b9\u3057":64,"\u5b58\u5728\u3057\u306a\u3044\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f\u7121\u8996\u3055\u308c\u307e\u3059":98,"\u5b58\u5728\u3057\u306a\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u6307\u5b9a\u3057\u305f\u3068\u304d\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6539\u5584":34,"\u5b58\u5728\u3057\u306a\u3044\u30d1\u30c8\u30ea\u30b7\u30a2\u30c8\u30e9\u30a4\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53c2\u7167\u3059\u308b\u3068\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u5b58\u5728\u3057\u306a\u3051\u308c\u3070":64,"\u5b58\u5728\u3059\u308c\u3070\u6307\u5b9a\u3055\u308c\u305fid\u3092":64,"\u5b8c\u5168\u306b\u4e00\u81f4\u3059\u308b\u30ad\u30fc\u3092\u691c\u7d22\u3057":64,"\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u305b\u3093":208,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":206,"\u5b8c\u5168\u4e00\u81f4\u3067\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":206,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u4ee5\u4e0b\u306e\u5834\u5408\u306b\u9650\u308a":206,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u306f\u30d2\u30c3\u30c8\u3057\u307e\u305b\u3093":206,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3067\u30d2\u30c3\u30c8\u3057\u307e\u3059":206,"\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9":87,"\u5b9a\u7fa9\u3055\u308c\u305f\u9806\u756a\u3067\u5024\u3092\u6307\u5b9a\u3057\u306a\u3051\u308c\u3070\u306a\u3089\u305a":145,"\u5b9a\u7fa9\u3055\u308c\u308b\u7591\u4f3c\u30ab\u30e9\u30e0\u306f":74,"\u5b9a\u7fa9\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u5b9a\u7fa9\u6e08\u307f\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":87,"\u5b9a\u7fa9\u6e08\u307f\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":48,"\u5b9f\u4f53\u3092\u78ba\u4fdd\u3057\u307e\u3059":51,"\u5b9f\u51e6\u7406\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u3067\u306e\u30af\u30a8\u30ea\u30d1\u30bf\u30f3\u306b\u8fd1\u3044\u30af\u30a8\u30ea\u3092\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":144,"\u5b9f\u7a3c\u52d5\u74b0\u5883\u306b\u8fd1\u3044\u72b6\u614b\u3067\u306e\u691c\u8a3c\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":144,"\u5b9f\u884c\u3059\u308b\u30b3\u30de\u30f3\u30c9\u3068\u305d\u306e\u5f15\u6570\u3092\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u5f15\u6570\u306b\u6307\u5b9a\u3067\u304d\u307e\u3059":145,"\u5b9f\u884c\u3059\u308b\u6f14\u7b97\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5b9f\u884c\u3067\u304d\u307e\u3059":12,"\u5b9f\u884c\u306b\u306f\u76f8\u5fdc\u306e\u30b3\u30b9\u30c8\u304c\u304b\u304b\u308b\u306e\u3067\u3042\u307e\u308a\u983b\u7e41\u306b\u547c\u3070\u306a\u3044\u3088\u3046\u306b\u3057\u3066\u4e0b\u3055\u3044":64,"\u5b9f\u884c\u306e\u4e2d\u65ad\u3092\u6307\u793a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":56,"\u5b9f\u884c\u4f8b":[14,78],"\u5b9f\u884c\u7d50\u679c\u3092\u8fd4\u3057\u307e\u3059":11,"\u5b9f\u884c\u958b\u59cb\u6642\u523b":146,"\u5b9f\u884c\u9806\u4f4d\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u5b9f\u969b\u306b\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b\u4f8b\u3092\u8aac\u660e\u3057\u307e\u3059":208,"\u5b9f\u9a13\u7684":33,"\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3057\u307e\u3059":61,"\u5bfe\u5fdc\u3059\u308b\u30ad\u30fc\u306e\u691c\u7d22\u306b\u6210\u529f\u3057":64,"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":[61,64],"\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3059\u308b\u5834\u5408\u306fkey\u9577\u3092\u8fd4\u3057\u307e\u3059":64,"\u5bfe\u5fdc\u3059\u308bid\u3092\u8fd4\u3057\u307e\u3059":64,"\u5bfe\u7b56\u65b9\u6cd51":[22,207],"\u5bfe\u7b56\u65b9\u6cd52":[22,207],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8":[85,96],"\u5bfe\u8c61\u3068\u306a\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3057\u307e\u3059":[85,96],"\u5bfe\u8c61\u306ecolumn\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5bfe\u8c61\u306ehttp\u306e\u30d1\u30b9\u7fa4":144,"\u5bfe\u8c61\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3057\u307e\u3059":58,"\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306ekey\u30b5\u30a4\u30ba\u3068\u540c\u3058\u304b\u8d85\u3048\u308b\u5e45\u3067\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":65,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306e\u30bb\u30af\u30b7\u30e7\u30f3\u756a\u53f7\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,61,64],"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u306e\u9577\u3055":64,"\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5bfe\u8c61column\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u5bfe\u8c61ctx\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u5bfe\u8c61cursor\u3092\u6307\u5b9a\u3057\u307e\u3059":[58,65],"\u5bfe\u8c61id\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61obj\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u5bfe\u8c61object\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,52,56,59,61,62,68],"\u5bfe\u8c61table1\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5bfe\u8c61table2\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u5bfe\u8c61table\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,61,64,65],"\u5c0f\u6570\u5f62\u5f0f\u306etime\u30ea\u30c6\u30e9\u30eb\u3092\u30ed\u30fc\u30c9\u3059\u308b\u3068\u30df\u30ea\u79d2\u60c5\u5831\u304c\u843d\u3061\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"\u5de6\u4e0a":34,"\u5de6\u4e0b":34,"\u5dee\u5206\u3092":146,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u304b\u3089\u30df\u30ea\u79d2\u5f62\u5f0f\u3078\u306e\u5909\u63db\u65b9\u6cd5\u3084":195,"\u5ea6\u5206\u79d2\u5f62\u5f0f\u3067x\u5ea6y\u5206z\u79d2\u3068\u306a\u308b\u7d4c\u5ea6":195,"\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":156,"\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":157,"\u5ec3\u6b62\u4e88\u5b9a\u3067\u3042\u308a\u4f7f\u7528\u304c\u63a8\u5968\u3055\u308c\u307e\u305b\u3093":78,"\u5f15\u6570\u3067\u6307\u5b9a\u3057\u305fdb\u306e\u4e2d\u8eab\u306f\u30c1\u30a7\u30c3\u30af\u3057\u307e\u305b\u3093":146,"\u5f15\u6570\u3068\u3057\u3066":11,"\u5f15\u6570\u306f\u4ee5\u4e0b\u306e2\u7a2e\u985e\u306e\u65b9\u6cd5\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":145,"\u5f15\u6570\u3092grn_expr\u3068\u3057\u3066\u89e3\u91c8\u3059\u308b\u304b":11,"\u5f15\u6570\u540d":145,"\u5f15\u6570\u540d1":145,"\u5f15\u6570\u540d2":145,"\u5f15\u7528\u7b26\u306b\u4f7f\u7528\u3057\u305f\u6587\u5b57\u3092\u5024\u306e\u4e2d\u3067\u6307\u5b9a\u3059\u308b\u5834\u5408\u306b\u306f":145,"\u5f37":193,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u30af\u30ea\u30a2\u3057\u307e\u3059":61,"\u5f37\u5236\u7684\u306b\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3059\u308bclearlock\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u5f53\u8a72\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306bdefault":78,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u306e\u30ed\u30c3\u30af\u3092\u89e3\u9664\u3057\u307e\u3059":61,"\u5f53\u8a72\u30ec\u30b3\u30fc\u30c9\u3092\u30ed\u30c3\u30af\u3057\u307e\u3059":61,"\u5f62\u5f0f1":145,"\u5f62\u5f0f1\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":145,"\u5f62\u5f0f2":145,"\u5f62\u5f0f2\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306f":145,"\u5f8c\u8ff0\u306e\u3059\u3079\u3066\u306e\u30af\u30a8\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306fdb_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u5b9f\u73fe\u3055\u308c\u3066\u3044\u307e\u3059":11,"\u5f8c\u8ff0\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3054\u3068\u306egrntest\u306b\u3088\u308b\u52d5\u4f5c\u78ba\u8a8d\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"\u5f93\u3063\u3066":128,"\u5f97\u3089\u308c\u305f\u30b9\u30b3\u30a2\u5024\u306bscore2\u3092\u7a4d\u7b97\u3057\u305f\u3082\u306e\u3092":11,"\u5f97\u3089\u308c\u305f\u691c\u7d22\u7d50\u679c\u6570\u304ct1\u3088\u308a\u3082\u5c0f\u3055\u3044\u5834\u5408\u306f":11,"\u5fa9\u53f7\u3057\u305f\u9375":12,"\u5fa9\u53f7\u3057\u305f\u9375\u30d5\u30a1\u30a4\u30eb":12,"\u5fc5\u8981\u306a\u6642\u4ee5\u5916\u306bmecab\u306e\u8f9e\u66f8\u30c1\u30a7\u30c3\u30af\u3092\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u5fc5\u8981\u306a\u90e8\u5206\u3092groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u554f\u3044\u5408\u308f\u305b\u308b\u305f\u3081\u306e\u30af\u30a8\u30ea\u306e\u8868\u73fe\u3068\u5b9f\u884c\u306b\u95a2\u3057\u3066":11,"\u5fc5\u8981\u306a\u9805\u76ee\u304c\u306a\u3044\u5834\u5408\u306f\u30ed\u30b0\u306b\u51fa\u529b":34,"\u6027\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":87,"\u60c5\u5831\u306e\u9806\u5e8f\u306f":133,"\u60c5\u5831\u540d\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":133,"\u611f\u8b1d":33,"\u6210\u529f\u304b\u3069\u3046\u304b\u306e\u30d5\u30e9\u30b0":[85,89,95,104,105,106],"\u623b\u308a\u5024\u3067\u3042\u308b":58,"\u623b\u308a\u5024\u3067\u3042\u308bgrn_index_cursor\u306f":58,"\u624b\u7d9a\u304d":62,"\u624b\u7d9a\u304d\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"\u62c5\u5f53\u8005":12,"\u62e1\u5f35\u5b50\u306b\u5236\u9650\u306f\u3042\u308a\u307e\u305b\u3093":146,"\u62e1\u5f35\u5b50\u306f":146,"\u62e1\u5f35\u5b50\u3092\u9664\u3044\u305f":146,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u30a8\u30e9\u30fc\u304c\u8fd4\u3055\u308c\u307e\u3059":78,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u6a19\u6e96\u30a8\u30e9\u30fc\u51fa\u529b\u306b\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057":78,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cdevelop\u3042\u308b\u3044\u306fdeprecated\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f":78,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u304cstable\u3067\u3042\u3063\u305f\u5834\u5408\u306b\u306f\u306a\u3093\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3082\u8868\u793a\u3055\u308c\u305a\u305d\u306e\u307e\u307e\u8d77\u52d5\u3057\u307e\u3059":78,"\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":78,"\u6307\u5b9a\u3055\u308c\u305f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408":146,"\u6307\u5b9a\u3055\u308c\u3066\u3044\u308b\u30d5\u30e9\u30b0\u5024\u3067\u3059":84,"\u6307\u5b9a\u3057\u305f2\u3064\u306e\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u8a08\u7b97\u3059\u308b":154,"\u6307\u5b9a\u3057\u305f2\u3064\u6587\u5b57\u5217\u306e\u7de8\u96c6\u8ddd\u96e2\u3092uint32\u578b\u306e\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":154,"\u6307\u5b9a\u3057\u305f\u30af\u30a8\u30ea\u306b\u5bfe\u3059\u308b\u88dc\u5b8c":35,"\u6307\u5b9a\u3057\u305f\u30d5\u30a1\u30a4\u30eb\u304b\u3089\u30b3\u30de\u30f3\u30c9\u3092\u8aad\u307f\u8fbc\u3080":34,"\u6307\u5b9a\u3057\u305f\u5024\u306e\u9593\u306e\u95a2\u4fc2\u3068\u3057\u3066\u8868\u73fe\u3057\u307e\u3059":11,"\u6307\u5b9a\u3057\u305fdb\u304c\u9069\u5207\u304b":146,"\u6307\u5b9a\u3059\u308b":52,"\u6307\u5b9a\u3067\u304d\u308b\u5024\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":156,"\u6307\u5b9a\u5148\u306bgroonga\u30b5\u30fc\u30d0\u304c\u7acb\u3061\u4e0a\u304c\u3063\u3066\u3044\u306a\u3044\u5834\u5408":146,"\u63a5\u7d9a\u3057\u3066\u3044\u308bgroonga\u30b5\u30fc\u30d0\u30d7\u30ed\u30bb\u30b9\u3092\u505c\u6b62\u3057\u307e\u3059":129,"\u63a5\u7d9a\u3059\u308bgroonga":146,"\u63a5\u7d9a\u3059\u308bgroonga\u30b5\u30fc\u30d0\u3092":146,"\u63a5\u7d9a\u4e0d\u80fd\u3068\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u63a5\u7d9a\u5148\u306e\u30db\u30b9\u30c8\u540d\u3068\u30dd\u30fc\u30c8\u756a\u53f7\u3092\u3092\u6307\u5b9a\u3057\u307e\u3059":144,"\u63a5\u7d9a\u5148\u306egroonga\u30b5\u30fc\u30d0\u304c\u5229\u7528\u3057\u3066\u3044\u308b\u30dd\u30fc\u30c8\u3068":146,"\u63a5\u7d9a\u5148\u30b5\u30fc\u30d0\u304c\u4f7f\u7528\u4e2d\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":146,"\u63d0\u6848\u3092\u884c\u3046":35,"\u6539\u826f":33,"\u6539\u884c\u6587\u5b57\u306f":145,"\u6570\u5024":206,"\u6570\u5024\u306e\u30d9\u30af\u30bf\u3092\u30b5\u30dd\u30fc\u30c8":34,"\u6570\u5024\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":156,"\u6570\u5b57":146,"\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":208,"\u6570\u5b57\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":208,"\u6587\u5b57\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":154,"\u65b0\u3057\u3044\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":145,"\u65b0\u3057\u3044\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092value\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":61,"\u65b0\u3057\u3044\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":[48,61],"\u65b0\u3057\u3044key\u3068\u305d\u306ebyte\u9577\u3092dest_key\u3068dest_key_size\u306b\u6307\u5b9a\u3057\u307e\u3059":64,"\u65b0\u3057\u3044value\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"\u65b0\u3057\u304f\u958b\u767a\u306b\u52a0\u308f\u308b\u4eba\u3068\u3082\u5171\u6709\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":10,"\u65b0\u305f\u306a\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u4f5c\u6210\u3055\u308c\u308b":106,"\u65b0\u305f\u306adb\u3092\u4f5c\u6210\u3057\u307e\u3059":52,"\u65b0\u305f\u306brecord\u304c\u8ffd\u52a0\u3055\u308c\u305f\u6642\u306b\u306f1\u304c":64,"\u65b0\u898f\u306b\u30ea\u30ea\u30fc\u30b9\u3092\u884c\u3046\u3053\u3068\u306b\u306a\u3063\u305f\u62c5\u5f53\u8005\u3084\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u7f72\u540d\u3059\u308b\u9375\u306b\u5909\u66f4\u304c\u3042\u3063\u305f\u5834\u5408\u306a\u3069\u306b\u884c\u3044\u307e\u3059":12,"\u65b0\u898f\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65b9\u5f62\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":156,"\u65e2\u5b58\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f":146,"\u65e2\u5b58\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u540d\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u3067":106,"\u65e2\u5b58\u306edb\u3092\u958b\u304d\u307e\u3059":52,"\u65e2\u5b58\u306etype\u3042\u308b\u3044\u306ftable\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"\u65e2\u5b58record\u3060\u3063\u305f\u6642\u306b\u306f0\u304c\u30bb\u30c3\u30c8\u3055\u308c\u307e\u3059":64,"\u65e5":193,"\u65e5\u3005":10,"\u65e5\u672c":[163,177,187,193],"\u65e5\u672c\u4eba":187,"\u65e5\u672c\u6e2c\u5730\u7cfb\u5ea7\u6a19":[156,157],"\u65e5\u672c\u8a9e":187,"\u65e5\u672c\u8a9e\u306e\u52c9\u5f37":193,"\u65e5\u672c\u8a9e\u7248\u305d\u308c\u305e\u308c\u3067\u884c\u3044\u307e\u3059":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":12,"\u65e7\u30d0\u30fc\u30b8\u30e7\u30f3\u3092chroot\u74b0\u5883\u3078\u3068\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b":12,"\u65e7\u65e5\u672c\u6e2c\u5730\u7cfb\u306b\u3088\u308b\u7d4c\u7def\u5ea6\u3067\u3042\u308a":195,"\u6642\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"\u6642\u9593\u306e\u89e3\u50cf\u5ea6\u3092\u30ca\u30ce\u79d2\u306b\u5909\u66f4":35,"\u66f4\u65b0\u3055\u308c\u308b\u305f\u3073\u306b1\u305a\u3064\u5927\u304d\u304f\u306a\u308a\u307e\u3059":78,"\u66f4\u65b0\u524d\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u66f4\u65b0\u5f8c\u306e\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"\u6700\u521d\u306b\u58f0\u3092\u304b\u3051\u308b\u3068\u304d\u306b\u89e3\u6c7a\u7b56\u30921\u3064\u304b2\u3064\u63d0\u6848\u3067\u304d\u308b\u3068\u671b\u307e\u3057\u3044\u3067\u3059":10,"\u6700\u5927\u3067\u5229\u7528\u3059\u308b\u30b9\u30ec\u30c3\u30c9\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308b":34,"\u6700\u5927\u30ad\u30e3\u30c3\u30b7\u30e5\u6570\u3092\u6307\u5b9a\u3059\u308bcache_limit\u30b3\u30de\u30f3\u30c9\u306e\u8ffd\u52a0":34,"\u6700\u5f8c\u306b":208,"\u6700\u5f8c\u306bgrntest\u306b\u3088\u308b\u5b9f\u884c\u7d50\u679c\u304c\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u307e\u3068\u3081\u3066\u8868\u793a\u3055\u308c\u307e\u3059":12,"\u6700\u5f8c\u306e":146,"\u6700\u7d42\u66f4\u65b0\u6642\u523b\u306f\u30ad\u30e3\u30c3\u30b7\u30e5\u304c\u6709\u52b9\u304b\u3069\u3046\u304b\u306e\u5224\u65ad\u306a\u3069\u306b\u5229\u7528\u3055\u308c\u307e\u3059":52,"\u672c":193,"\u672c\u8a9e":193,"\u6761\u4ef6\u306e\u9806\u5e8f\u3092\u5909\u3048\u308b\u3068\u691c\u7d22\u7d50\u679c\u304c\u5909\u308f\u308b\u3068\u3044\u3046\u72b6\u6cc1\u304c\u767a\u751f\u3057\u307e\u3059":208,"\u6761\u4ef6\u5f0f\u306f\u4e00\u500b\u4ee5\u4e0a\u306e\u95a2\u4fc2\u5f0f\u304b":11,"\u6761\u4ef6\u5f0f\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u8981\u7d20\u3092\u95a2\u4fc2\u5f0f\u3068\u547c\u3073\u307e\u3059":11,"\u6771\u4eac":[193,206,208],"\u6771\u4eac\u90fd":[193,206,208],"\u6771\u4eac\u90fd\u6c11":[206,208],"\u6771\u4eac\u90fd\u6c11\u306b\u6df1\u523b\u306a\u30c0\u30e1\u30fc\u30b8\u3092\u4e0e\u3048\u307e\u3057\u305f":208,"\u683c\u7d0d\u3057\u305f\u30ab\u30e9\u30e0id\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":64,"\u683c\u7d0d\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":61,"\u68ee\u7530":213,"\u691c\u7d22":[22,35,39,128,141,204],"\u691c\u7d22\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u308b\u30c7\u30fc\u30bf\u304c\u6e80\u305f\u3059\u3079\u304d\u6761\u4ef6\u3092":11,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d":51,"\u691c\u7d22\u3057\u3088\u3046\u3068\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":22,"\u691c\u7d22\u306e\u6319\u52d5":22,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u3042\u308a":206,"\u691c\u7d22\u306e\u6319\u52d5\u306b\u306f\u4ee5\u4e0b\u306e3\u7a2e\u985e\u304c\u3042\u308a\u307e\u3059":208,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u5909\u66f4\u3057\u307e\u3059":60,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u691c\u7d22\u306e\u6319\u52d5\u3092\u30a8\u30b9\u30ab\u30ec\u30fc\u30b7\u30e7\u30f3\u3059\u308b\u95be\u5024\u3092\u8fd4\u3057\u307e\u3059":60,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3082\u540c\u4e00\u306e\u65b9\u6cd5\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3055\u308c\u307e\u3059":206,"\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u305f\u7d50\u679c\u5f97\u3089\u308c\u308b\u8a9e\u5f59\u306e\u914d\u5217\u3068\u540c\u4e00\u306e\u914d\u5217\u3092\u542b\u3080\u6587\u66f8\u3092\u691c\u7d22\u3059\u308b\u51e6\u7406\u3092\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3068\u547c\u3093\u3067\u3044\u307e\u3059":206,"\u691c\u7d22\u30af\u30a8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9":95,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u304f\u308b\u3053\u3068\u3092\u6291\u3048\u3064\u3064\u518d\u73fe\u7387\u3092\u4e0a\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":208,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u4e0a\u4f4d\u306b\u73fe\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308b\u3053\u3068\u306b\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044":208,"\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u591a\u304f\u306a\u3063\u305f\u5834\u5408\u306f\u6307\u5b9a\u3059\u308b\u5024\u3092\u4f4e\u304f\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":208,"\u691c\u7d22\u4f8b1":3,"\u691c\u7d22\u4f8b2":3,"\u691c\u7d22\u4f8b3":3,"\u691c\u7d22\u4f8b4":3,"\u691c\u7d22\u51e6\u7406\u304c\u5b8c\u4e86\u3057":128,"\u691c\u7d22\u51e6\u7406\u306e\u5b9f\u884c\u4e2d\u306b\u9069\u6642\u547c\u3073\u51fa\u3055\u308c":56,"\u691c\u7d22\u51e6\u7406\u3092\u5b9f\u884c\u3059\u308b\u904e\u7a0b\u3067\u5024\u304c\u8a2d\u5b9a\u3055\u308c\u307e\u3059\u304c":74,"\u691c\u7d22\u5bfe\u8c61\u3068\u306a\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u5bfe\u8c61\u306e":208,"\u691c\u7d22\u5bfe\u8c61\u306e\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u691c\u7d22\u5bfe\u8c61\u306eobject\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22\u5bfe\u8c61\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306b\u52a0\u3048\u307e\u3059":11,"\u691c\u7d22\u5bfe\u8c61\u6587\u66f8\u306f\u8907\u6570\u306e\u8a9e\u5f59\u306b\u30c8\u30fc\u30af\u30ca\u30a4\u30ba":206,"\u691c\u7d22\u6761\u4ef6\u306b\u30de\u30c3\u30c1\u3059\u308b\u5168\u3066\u306e\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u9069\u7528\u3059\u308bgrn_expr\u3092script\u5f62\u5f0f\u3067\u6307\u5b9a\u3057\u307e\u3059":128,"\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093":195,"\u691c\u7d22\u6761\u4ef6\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3057\u305f\u65b0\u305f\u306a\u691c\u7d22\u30b3\u30de\u30f3\u30c9\u3092\u5b9a\u7fa9\u3057\u307e\u3059":[95,145],"\u691c\u7d22\u7d50\u679c\u3068\u3057\u3066\u751f\u6210\u3055\u308c\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":74,"\u691c\u7d22\u7d50\u679c\u306b\u3088\u3063\u3066\u52d5\u7684\u306b\u4f7f\u3044\u5206\u3051\u3066\u3044\u307e\u3059":206,"\u691c\u7d22\u7d50\u679c\u306e\u30bd\u30fc\u30c8\u9806\u5e8f\u3092\u30ab\u30b9\u30bf\u30de\u30a4\u30ba\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":128,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb":11,"\u691c\u7d22\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u304c\u7a7a\u3067\u306a\u3044\u5834\u5408\u306b\u3060\u3051\u610f\u5473\u3092\u6301\u3061\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3057\u306a\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u304b\u3089\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u304d\u307e\u3059":11,"\u691c\u7d22\u7d50\u679c\u30c6\u30fc\u30d6\u30eb\u306e\u4e2d\u3067\u30af\u30a8\u30ea\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u3057\u3066\u30b9\u30b3\u30a2\u5024\u306e\u66f4\u65b0\u306e\u307f\u3092\u884c\u3044\u307e\u3059":11,"\u691c\u7d22id\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u691c\u7d22key\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u691c\u7d22key\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u6955\u5186\u4f53\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":156,"\u6975\u4ed8\u8fd1\u3067\u306f\u8aa4\u5dee\u304c\u5927\u304d\u304f\u306a\u308a\u307e\u3059":156,"\u697d\u3057":[206,208],"\u697d\u3057\u3044billiard":[206,208],"\u69cb\u9020\u4f53\u306b\u95a2\u3057\u3066\u306f":51,"\u69cb\u9020\u4f53\u306e\u914d\u5217":62,"\u69cb\u9020\u4f53\u306f\u89e3\u653e\u3059\u308b\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093":58,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":3,"\u6a19\u6e96":85,"\u6a19\u6e96\u5165":129,"\u6a19\u6e96\u5165\u529b":[84,87,89,95,96,98,104,105,106,120,133],"\u6a19\u6e96\u5165\u529b\u304b\u3089\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u4e0e\u3048\u308b\u5834\u5408\u306f":145,"\u6a19\u6e96\u5165\u529b\u304b\u3089\u4e00\u884c\u305a\u3064eof\u306b\u9054\u3059\u308b\u307e\u3067\u30b3\u30de\u30f3\u30c9\u6587\u5b57\u5217\u3092\u8aad\u307f\u53d6\u308a":145,"\u6b21\u306b":11,"\u6b21\u306bgroonga\u306etest":12,"\u6b21\u56de\u63d0\u4f9b\u3059\u308bgroonga\u306f":78,"\u6b21\u671f\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u958b\u767a\u304c\u59cb\u307e\u308a\u307e\u3059":12,"\u6b63\u5e38\u306b\u30d3\u30eb\u30c9\u304c\u7d42\u4e86\u3059\u308b\u3068":12,"\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068dist":12,"\u6b8b\u308a\u306e\u4e00\u3064\u306f":78,"\u6bb5\u843d\u60c5\u5831":48,"\u6bb5\u843d\u60c5\u5831\u3092\u683c\u7d0d\u3059\u308b\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u6c11":206,"\u6c17\u8efd\u306b\u3067\u304d\u306a\u3044\u3053\u3068\u3092\u76f8\u624b\u306b\u8981\u6c42\u3059\u308b\u3068\u840e\u7e2e\u3055\u308c\u3066\u3057\u307e\u3046\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":10,"\u6c38\u7d9a\u7684\u306a":61,"\u6ce8\u610f":64,"\u6df1\u523b":208,"\u6e21\u3055\u308c\u305f\u30b3\u30de\u30f3\u30c9\u3092\u89e3\u91c8\u3057":11,"\u6e2c\u5730\u7cfb":195,"\u6e2c\u5730\u7cfb\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f":195,"\u6f14\u7b97\u5b50\u3068\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u4e0b\u8a18\u306e4\u7a2e\u985e\u3067\u3059":11,"\u6f22\u5b57":163,"\u7121\u540dobject\u306a\u30890\u3092\u8fd4\u3057\u307e\u3059":61,"\u7279\u306b\u4f55\u3082\u6307\u5b9a\u3057\u306a\u3044\u3068\u751f\u6210\u3057\u305fhtml\u306b\u57cb\u3081\u8fbc\u307e\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u304c":12,"\u7279\u5b9a\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u7528\u306b\u6e96\u5099\u3057\u305f\u5185\u90e8api\u3067\u3059":57,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570":14,"\u7279\u5b9a\u306e\u30ea\u30ea\u30fc\u30b9":12,"\u7279\u6b8a\u547d\u4ee4\u304c\u6709\u52b9\u3068\u306a\u308a\u307e\u3059":146,"\u7279\u6b8a\u547d\u4ee4\u306f\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u4efb\u610f\u306e\u5834\u6240\u306b\u66f8\u304d\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u3059":146,"\u72b6\u614b\u3092\u8868\u793a\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3057\u307e\u3059":84,"\u73fe\u5728":106,"\u73fe\u5728\u306f":[144,146],"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u306e\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":12,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u7279\u6b8a\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e\u4e8c\u3064\u3067\u3059":146,"\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308bgroonga":146,"\u73fe\u5728\u5b9f\u884c\u4e2d\u306e":62,"\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u8fd4\u3057\u307e\u3059":162,"\u73fe\u5728\u6642\u523b\u3092\u8fd4\u3059":162,"\u73fe\u72b6\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306fcommand":78,"\u7403\u9762\u8fd1\u4f3c\u3067\u8fd1\u4f3c\u3057\u307e\u3059":156,"\u74b0\u5883\u5909\u6570cutter_check_leak\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u74b0\u5883\u5909\u6570cutter_debug\u3092yes\u3068\u8a2d\u5b9a\u3059\u308b\u3068":14,"\u751f\u6210\u3055\u308c\u3066\u3044\u308b\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u554f\u984c\u306e\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3067\u304d\u305f\u3089":12,"\u751f\u6210\u3057\u305f\u30d1\u30c3\u30b1\u30fc\u30b8\u3078\u306e\u7f72\u540d\u3092\u884c\u3046\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"\u7528\u8a9e\u96c6\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u8a9e\u306eid":84,"\u753b\u9762\u4e0b\u90e8\u306b\u914d\u7f6e\u3055\u308c\u3066\u3044\u308b":12,"\u7591\u4f3c\u30ab\u30e9\u30e0":74,"\u7701\u7565\u3057\u305f\u5834\u5408\u306f":165,"\u77e9\u5f62\u306e\u53f3\u4e0b\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u77e9\u5f62\u306e\u5de6\u4e0a\u9685\u3068\u306a\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u5b58\u5728\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u308b\u5ea7\u6a19\u3092\u6307\u5b9a\u3057\u307e\u3059":157,"\u78ba\u8a8d\u304c\u5b8c\u4e86\u3057\u305f\u3089":12,"\u79d2":61,"\u7a7a\u306e\u30d9\u30af\u30bf\u3092load\u3059\u308b\u3068segv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"\u7a7a\u306e\u5834\u5408":[85,96],"\u7a7a\u767d":145,"\u7a7a\u767d\u306f\u7121\u8996\u3059\u308b":208,"\u7a7a\u767d\u3084":145,"\u7ba1\u7406\u3055\u308c\u3066\u3044\u306a\u3044\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":84,"\u7bc4\u56f2\u5185\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u304c\u6709\u52b9\u3067\u3042\u308b\u3068\u306f\u9650\u308a\u307e\u305b\u3093":61,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u306e\u9806\u756a\u3092\u5165\u308c\u66ff\u3048\u3066\u691c\u7d22\u3057\u307e\u3059":208,"\u7bc4\u56f2\u6307\u5b9a\u3068\u5168\u6587\u691c\u7d22\u3092\u7d44\u307f\u5408\u308f\u305b\u3066\u691c\u7d22\u3057\u307e\u3059":208,"\u7d22\u5f15\u304c\u4e0d\u6b63\u306b\u5927\u304d\u304f\u306a\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u30bd\u30fc\u30c8\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u3092\u7528\u3044\u305f\u9ad8\u901f\u306ageopoint\u306e\u691c\u7d22\u6a5f\u80fd\u3092\u8ffd\u52a0":34,"\u7d22\u5f15\u4ed8\u304d\u30ab\u30e9\u30e0\u3092\u7b49\u4fa1\u6761\u4ef6\u3067\u691c\u7d22\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"\u7d42\u4e86\u95a2\u6570\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnul\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3059\u308b":52,"\u7d44\u307f\u8fbc\u307f\u578b\u306e\u540d\u524d\u3068\u306a\u308bnull\u7d42\u7aef\u6587\u5b57\u5217\u306e\u914d\u5217\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306f":[84,85,87,89,95,96,98,104,105,106,120,129,133],"\u7d44\u8fbc\u95a2\u6570\u306f":[154,156,157,162,165],"\u7d4c\u5ea6\u3068\u7def\u5ea6\u306e\u533a\u5207\u308a\u3068\u3057\u3066\u306f":195,"\u7d4c\u5ea6\u3068\u7def\u5ea6\u3092\u30df\u30ea\u79d2\u5358\u4f4d\u3067\u8868\u73fe\u3057\u305f\u6574\u6570\u306e\u7d44\u306b\u3088\u308a\u8868\u73fe\u3057\u307e\u3059":195,"\u7d4c\u5ea6\u306e\u5c0f\u6570\u8868\u8a18x\u7def\u5ea6\u306e\u5c0f\u6570\u8868\u8a18":195,"\u7d4c\u904e\u3057\u3066\u3082lock\u3092\u53d6\u5f97\u3067\u304d\u306a\u3044\u5834\u5408\u306f":61,"\u7d50\u679c\u304c\u7570\u5e38\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":146,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b":64,"\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308btable\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"\u7d9a\u3044\u3066":208,"\u7de8\u96c6\u3057\u305f\u5185\u5bb9\u3092push\u3059\u308b\u524d\u306b\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306fjekyll\u304a\u3088\u3073redcloth":12,"\u7de8\u96c6\u8ddd\u96e2":34,"\u7def\u5ea6\u306f":195,"\u7e70\u308a\u8fd4\u3057\u6570":146,"\u7e70\u308a\u8fd4\u3057\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u5834\u5408":146,"\u7e70\u308a\u8fd4\u3057\u6570\u3068\u3082\u7701\u7565\u6642\u306f1\u3067\u3059":146,"\u7ffb\u8a33\u307e\u3067\u5b8c\u4e86\u3057\u3066\u3044\u308b\u72b6\u614b\u3067":12,"\u7ffb\u8a33\u6e08\u307fpo\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30df\u30c3\u30c8\u3057\u307e\u3059":12,"\u7ffb\u8a33\u7d50\u679c\u3092html\u3067\u78ba\u8a8d\u3059\u308b\u305f\u3081\u306b":12,"\u811a\u6ce8":[89,156,157],"\u81ea\u5206\u304c\u30c4\u30a4\u30fc\u30c8\u3057\u305f\u5185\u5bb9\u3092\u628a\u63e1\u3057\u3066\u3044\u306a\u3044\u8fd4\u4fe1\u3092\u3055\u308c\u305f\u3089\u666e\u901a\u3044\u3044\u6c17\u306f\u3057\u307e\u305b\u3093":10,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3055\u308c\u308bgroonga\u30b5\u30fc\u30d0\u306f\u30dd\u30fc\u30c8\u756a\u53f710400\u3092\u5229\u7528\u3057\u307e\u3059":146,"\u81ea\u52d5\u7684\u306b\u8d77\u52d5\u3059\u308bgroonga\u30b5\u30fc\u30d0":146,"\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u7acb\u3061\u4e0a\u3052\u307e\u3059":146,"\u81ea\u7531\u306b\u5909\u66f4\u53ef\u80fd\u3067\u3059":74,"\u826f\u3044\u306e\u304b":10,"\u826f\u3044\u4f8b":10,"\u82b1\u5b50":213,"\u884c":14,"\u884c\u3059\u308b":12,"\u8907\u6570\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u540c\u3058\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u3092\u540c\u6642\u306b\u5b9f\u884c\u3057\u307e\u3059":146,"\u8907\u6570\u306e\u5024\u306e\u914d\u5217\u3092\u683c\u7d0d\u3067\u304d\u308b\u30ab\u30e9\u30e0\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"\u8907\u6570\u306e\u6761\u4ef6\u3092\u518d\u5e30\u7684\u306b\u7d44\u307f\u5408\u308f\u305b\u3066\u3088\u308a\u8907\u96d1\u306a\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"\u8907\u6570\u4eba\u306b\u3088\u308b\u30b5\u30dd\u30fc\u30c8\u3092groonga\u3067\u884c\u3046\u5834\u5408\u306b":10,"\u898b\u3064\u304b\u3089\u306a\u3044\u5834\u5408\u306f0\u3092\u8fd4\u3057\u307e\u3059":64,"\u89e3\u653e\u3059\u308bctx\u69cb\u9020\u4f53\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"\u8a18\u4e8b\u3092\u975e\u516c\u958b\u306e\u72b6\u614b\u3067\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f":12,"\u8a18\u53f7":[145,208],"\u8a18\u53f7\u3067\u30c8\u30fc\u30af\u30f3\u3092\u533a\u5207\u308btokenbigramsplitsymbol\u3092\u4f7f\u7528":35,"\u8a18\u53f7\u3068\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":208,"\u8a18\u53f7\u3082\u30d0\u30a4\u30b0\u30e9\u30e0\u3067\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b":208,"\u8a18\u53f7\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u306fbigram\u3092\u751f\u6210\u305b\u305a":206,"\u8a2d\u5b9a\u3057\u3088\u3046\u3068\u3059\u308b\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u8a2d\u5b9a\u3059\u308b\u30ed\u30b0\u51fa\u529b\u30ec\u30d9\u30eb\u306e\u5024\u3092\u4ee5\u4e0b\u306e\u3044\u305a\u308c\u304b\u3067\u6307\u5b9a\u3057\u307e\u3059":[104,105],"\u8a2d\u5b9a\u3059\u308b\u60c5\u5831\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":59,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306b\u306a\u308a\u307e\u3059":145,"\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"\u8a2d\u5b9a\u5024\u3092\u8868\u793a\u3059\u308b":34,"\u8a72\u5f53\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u4e00\u5f0f\u3092\u524a\u9664\u3057\u307e\u3059":61,"\u8a72\u5f53\u3059\u308b\u7bc4\u56f2\u306e\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":65,"\u8a73\u7d30\u306b\u5831\u544a\u3059\u308b":146,"\u8a73\u7d30\u306f":[14,208],"\u8a73\u7d30\u691c\u7d22\u6761\u4ef6\u3092\u6307\u5b9a\u3057\u307e\u3059":63,"\u8a8d\u3059\u308b\u3088\u3046\u306b\u3057\u305f":34,"\u8a9e":[84,193],"\u8a9e\u306e":193,"\u8aa4\u3063\u305f\u30b3\u30f3\u30d1\u30a4\u30eb\u30d5\u30e9\u30b0\u3067\u30ea\u30ea\u30fc\u30b9\u3057\u3066\u3057\u307e\u3046\u5371\u967a\u304c\u3042\u308a\u307e\u3059":12,"\u8aa4\u5dee\u306f\u5c0f\u3055\u3044\u3067\u3059":156,"\u8aa4\u5dee\u306f\u5c0f\u3055\u304f\u306a\u308a\u307e\u3059":156,"\u8ad6\u7406\u548c":11,"\u8ad6\u7406\u6f14\u7b97\u5b50\u306f":11,"\u8ad6\u7406\u7a4d":11,"\u8b66\u544a\u3092\u9664\u53bb":35,"\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306b\u51fa\u529b\u3055\u308c\u307e\u3059":78,"\u8d77\u52d5\u30aa\u30d7\u30b7\u30e7\u30f3\u3068":35,"\u8ddd\u96e2\u306e\u8a08\u7b97\u306b\u306f\u30d2\u30e5\u30d9\u30cb\u306e\u8ddd\u96e2\u8a08\u7b97\u5f0f\u3092\u7528\u3044\u307e\u3059":156,"\u8ee2\u7f6e\u7d22\u5f15\u306b\u51fa\u73fe\u4f4d\u7f6e\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":48,"\u8ee2\u7f6e\u7d22\u5f15\u306bsection":48,"\u8ee2\u7f6e\u7d22\u5f15\u306bweight\u60c5\u5831\u3092\u5408\u308f\u305b\u3066\u683c\u7d0d\u3057\u307e\u3059":48,"\u8f9e\u66f8\u691c\u7d22\u306e\u30b5\u30f3\u30d7\u30eb\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"\u8fd4\u5024\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u304c\u5b89\u5b9a\u3057\u3066\u3044\u308b\u3068\u3044\u3046\u3053\u3068\u306f\u4fdd\u8a3c\u3055\u308c\u307e\u305b\u3093":84,"\u8fd4\u5024\u306e\u6700\u5927\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":165,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_limit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_offset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_output_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306edrilldown_sortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306efilter\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306elimit\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306ematch_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoffset\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306eoutput_columns\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306equery\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306escorer\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u3059\u308bselector\u30b3\u30de\u30f3\u30c9\u306esortby\u5f15\u6570\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3092\u6307\u5b9a\u3057\u307e\u3059":95,"\u8ffd\u52a0\u306e\u5c5e":87,"\u9014\u4e2d\u3067\u5931\u6557\u3059\u308b\u3053\u3068\u3082\u3042\u308b\u306e\u3067\u9806\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u5024\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093":145,"\u9014\u4e2d\u306e\u5f15\u6570\u306e\u6307\u5b9a\u3092\u7701\u7565\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":145,"\u9014\u4e2d\u306e\u9078\u629e\u80a2\u306f\u7701\u7565":12,"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":[3,4],"\u901a\u5e38\u306f\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3057\u305f\u9806\u306b1\u305a\u3064\u52a0\u7b97\u3055\u308c\u307e\u3059":74,"\u9023\u7d9a\u3059\u308b\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8":208,"\u9023\u7d9a\u3059\u308b\u6570\u5b57\u306f\u4e00\u8a9e\u3068\u3057\u3066\u6271\u3046":208,"\u9023\u7d9a\u3059\u308b\u8a18\u53f7":208,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u3092\u304a\u3055\u3089\u3044\u3057":10,"\u9069\u5408\u7387\u304c\u4e0b\u304c\u308a\u691c\u7d22\u30ce\u30a4\u30ba\u304c\u542b\u307e\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u304f\u306a\u308a\u307e\u3059":208,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":206,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u3066":206,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u5229\u7528\u3059\u308b\u304b\u3069\u3046\u304b\u306e\u95be\u5024\u306f":208,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":208,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22\u3092\u9806\u306b\u884c\u3044\u307e\u3059":206,"\u90fd":[193,206,208],"\u90fd\u6c11":[206,208],"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3057\u307e\u3059":52,"\u914d\u5217\u306eoffset\u306fenum\u578bgrn_builtin_type\u306e\u5024\u306b\u5bfe\u5fdc\u3059\u308b":52,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u3046\u3061\u6700\u3082\u5927\u304d\u306aid\u3067\u3059":84,"\u914d\u5217\u30bb\u30b0\u30e1\u30f3\u30c8\u306e\u6570\u3067\u3059":84,"\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u6b63\u5e38\u7d42\u4e86\u3059\u308b\u3068":12,"\u9375\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u305f\u3060\u3051\u3067\u306f\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u305f\u3081":12,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u89e3\u6d88\u3059\u308b":96,"\u958b\u3044\u3066\u3044\u308b\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30ed\u30c3\u30af\u3092\u3059\u3079\u3066\u89e3\u9664\u3059\u308b":85,"\u958b\u3044\u3066\u3044\u308b\u30d5\u30a1\u30a4\u30eb\u30c7\u30a3\u30b9\u30af\u30ea\u30d7\u30bf\u304c\u591a\u3059\u304e\u3066accept\u3067\u304d\u306a\u3044\u72b6\u614b\u306e\u8ca0\u8377\u3092\u4f4e\u6e1b":35,"\u958b\u3044\u3066\u3044\u308bdb\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059":[85,96],"\u958b\u3053\u3046\u3068\u3059\u308bdb\u3092\u683c\u7d0d\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306b\u3053\u3046\u3059\u308b\u3068\u3044\u3044":10,"\u9593\u9055\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"\u95a2\u4fc2\u5f0f":3,"\u95a2\u4fc2\u5f0f\u306f":11,"\u95a2\u6570":14,"\u95a2\u6570\u304a\u3088\u3073\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5909\u6570":62,"\u95a2\u6570\u304c\u5f15\u6570\u3092":34,"\u95a2\u6570\u306e\u8ffd\u52a0":34,"\u95a2\u6570\u306f":[11,154,156,157,165],"\u95a2\u6570\u306f\u73fe\u5728\u6642\u523b\u306b\u5bfe\u5fdc\u3059\u308btime\u578b\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":162,"\u95a2\u6570\u3082\u30b3\u30de\u30f3\u30c9\u3068\u3057\u3066\u547c\u3073\u51fa\u3057\u3066\u3057\u307e\u3046\u554f\u984c\u3092\u4fee\u6b63":35,"\u95a2\u6570\u3092\u4f7f\u7528\u3057\u307e\u3059":11,"\u95be\u5024\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u306f0\u3067\u3059":206,"\u95be\u5024\u306f1\u304c\u30c7\u30d5\u30a9\u30eb\u30c8\u5024\u3068\u306a\u3063\u3066\u3044\u307e\u3059":208,"\u95be\u5024\u3092\u3042\u3052\u308b":[22,207],"\u95be\u5024\u3092\u8d8a\u3048\u308b":208,"\u9759\u7684\u89e3\u6790":3,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306e\u6319\u52d5\u306ftokenbigram\u306a\u3069n":206,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u306f\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067\u8a9e\u5f59\u8868\u3092\u69cb\u7bc9\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":206,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3092\u884c\u3044":[206,208],"\u975e\u4e92\u63db":37,"\u975e\u4e92\u63db\u306a\u5909\u66f4\u304c\u542b\u307e\u308c\u308b\u306e\u3067\u3042\u308c\u3070":12,"\u9806\u6b21\u5b9f\u884c\u3057\u307e\u3059":145,"\u99c4\u76ee\u306a\u4f8b":10,"\u9ad8\u6a5f\u80fd\u3067\u8907\u96d1\u306a\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u307e\u3067\u3044\u304f\u3064\u304b\u306e\u968e\u5c64\u7684\u306a\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u30e6\u30fc\u30b6\u30d7\u30ed\u30b0\u30e9\u30e0\u306b\u63d0\u4f9b\u3057\u3066\u3044\u307e\u3059":11,"\uff11\u3064\u306eedge\u3068\u7d50\u3073\u3064\u304f\u3053\u3068\u304c\u3067\u304d\u308b":9,"\uff4d\uff59\uff53\uff51\uff4c":[158,159],"__uint32_t":33,"_avg":[110,128],"_dataset":[149,151],"_id":[33,41,44,48,61,74,76,79,86,90,97,98,110,128,131,135,140,153,161,163,170,171,172,174,181,187,188,190,192,208,212,213,214,216,218,219,220,221],"_id\u306e\u5024\u306f\u4e0d\u5909\u3067":74,"_kei":[33,39,40,41,44,48,61,74,76,79,86,88,90,97,98,100,109,110,116,123,127,128,131,134,135,136,140,147,153,155,160,161,163,167,168,170,171,174,177,182,187,188,190,192,194,199,211,212,213,214,216,217,218,219,220,221],"_key\u30ab\u30e9\u30e0\u306e\u51fa\u529b\u306b\u5bfe\u5fdc":34,"_max":[110,128],"_min":[110,128],"_name":132,"_nsubrec":[41,48,74,110,128,212,213,217],"_post":12,"_score":[33,37,39,40,48,74,76,128,131,155,164,171,182,183,184,187,188,190,208,213,214,216,217,221],"_set_valu":38,"_sum":[110,128],"_valu":[40,41,48,74,110,128],"_yyyymmdd":[107,109,110,112],"a\u3092\u6307\u5b9a\u3057\u3066tabl":64,"admin_html\u4ee5\u4e0b\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3055\u308c\u307e\u3059":145,"akio\u3055\u3093":35,"akio\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"akio\u3055\u3093\u304c\u5831\u544a":35,"akio\u3055\u3093\u304c\u63d0\u6848":35,"am\u30d5\u30a1\u30a4\u30eb\u3078\u3068\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3055\u308c\u307e\u3059":12,"apt\u306e\u5834\u5408":12,"apt\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"aramaki\u3055\u3093":35,"aramaki\u3055\u3093\u304c\u5831\u544a":35,"architectures\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"arg\u306e\u307f\u304c\u6570\u5024\u3067\u4e0e\u3048\u3089\u308c\u305f\u5834\u5408\u306f\u30b9\u30b3\u30a2\u5024\u306e\u4fc2\u6570\u3068\u307f\u306a\u3055\u308c\u307e\u3059":11,"b\u306f\u5fc5\u305aa\u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3068\u306a\u308a\u307e\u3059":64,"b\u3092\u4f5c\u6210\u3057\u305f\u5834\u5408":64,"base_version\u304c\u66f4\u65b0\u3055\u308c\u308b\u306e\u3067\u30b3\u30df\u30c3\u30c8\u3057\u3066\u304a\u304d\u307e\u3059":12,"base_version\u306ftar":12,"benchmark\u304bgroonga\u306b\u3042\u308a\u307e\u3059":146,"benchmark\u304c\u5229\u7528\u3059\u308bgroonga":146,"benchmark\u304c\u52d5\u4f5c\u3057":146,"benchmark\u304c\u65b0\u898f\u306b\u4f5c\u6210\u3057\u307e\u3059":146,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u5834\u5408":146,"benchmark\u304c\u6b63\u5e38\u306b\u52d5\u4f5c\u3059\u308c\u3070":146,"benchmark\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068":146,"benchmark\u3067\u306f\u30b3\u30e1\u30f3\u30c8\u304c\u5229\u7528\u3067\u304d\u308b\u4ee5\u5916":146,"benchmark\u306e\u52d5\u4f5c\u65b9\u6cd5":146,"benchmark\u306f":146,"benchmark\u306f\u52d5\u4f5c\u306e\u305f\u3073\u306bftp":146,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u306a\u3044\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":146,"benchmark\u306f\u6b63\u5e38\u306b\u52d5\u4f5c\u3057\u307e\u305b\u3093":146,"benchmark\u306f\u81ea\u52d5\u7684\u306blocalhost\u306egroonga\u30b5\u30fc\u30d0\u3092\u8d77\u52d5\u3057\u3066\u63a5\u7d9a\u3057\u307e\u3059":146,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057":146,"benchmark\u5358\u4f53\u3067\u5b9f\u884c\u3057\u307e\u3059":146,"benchmark\u547d\u4ee4\u304c\u3042\u308b\u5834\u5408":146,"benchmark\u547d\u4ee4\u3068\u547c\u3073\u307e\u3059":146,"benchmark\u547d\u4ee4\u306f\u4ee5\u4e0b\u306e11\u7a2e\u985e\u3067\u3059":146,"benchmark\u547d\u4ee4\u3092\u5b9f\u884c\u3059\u308b\u5834\u5408\u306b\u4ed8\u4e0e\u3057\u3066\u3082\u554f\u984c\u3042\u308a\u307e\u305b\u3093":146,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":146,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":146,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3059\u308b\u5834\u5408\u306b\u5fc5\u8981\u3067\u3059\u304c":146,"benchmark\u547d\u4ee4\u3092\u8a18\u8ff0\u3067\u304d\u307e\u3059\u304c":146,"benchmark\u5b9f\u884c\u6642\u306b\u81ea\u52d5\u7684\u306b\u4f5c\u6210\u3055\u308c\u308b\u30ed\u30b0\u3068\u306f\u5225\u306e\u3082\u306e\u3067\u3059":146,"benchmark\u7528\u306e\u30c7\u30fc\u30bf\u30d5\u30a1\u30a4\u30eb\u306f\u81ea\u5206\u3067\u4f5c\u6210\u3059\u308b\u3053\u3068\u3082\u65e2\u5b58\u306e\u3082\u306e\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u3082\u3067\u304d\u307e\u3059":146,"benchmark\u7d42\u4e86\u5f8c\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u51fa\u529b\u5148\u306f\u306f\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067\u3059":146,"bigram\u306e\u5834\u5408\u306f\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u884c\u3044\u307e\u3059":206,"blog_body\u7d22\u5f15":208,"blogroonga\u306e\u30ea\u30ea\u30fc\u30b9\u30a8\u30f3\u30c8\u30ea\u306b\u306f":12,"blogs\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u3092tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3057\u3066\u304b\u3089\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059":208,"body\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"bom\u4ed8\u304dutf":35,"boolean":[22,33,40,42,127,170],"branches\u306e3\u3064\u306e\u5bfe\u8c61\u304c\u3042\u308a\u307e\u3059":14,"break":[33,37,39,41,143],"bsd\u3067\u30d3\u30eb\u30c9\u3067\u304d\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"buf_size\u306b\u6307\u5b9a\u3055\u308c\u305f\u500b\u6570\u3092\u4e0a\u9650\u3068\u3057\u3066indexbuf\u306b\u8fd4\u3057\u307e\u3059":48,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u3055\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":48,"buf_size\u306e\u9577\u3055\u304c\u540d\u524d\u306e\u9577\u4ee5\u4e0a\u3067\u3042\u3063\u305f\u5834\u5408\u306f":61,"build\u3067\u30af\u30ed\u30b9\u30b3\u30f3\u30d1\u30a4\u30eb\u3092\u884c\u3044\u307e\u3059":12,"build\u3092\u7528\u3044\u3066":14,"build\u30b3\u30de\u30f3\u30c9\u4ee5\u5916\u3067\u3082":12,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092":52,"builtin_type_names\u3067\u6307\u5b9a\u3059\u308b\u6587\u5b57\u5217\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":52,"builtin_type_names\u306b\u306f":52,"byte":[33,37,39,40,41,48,51,54,61,62,64,67,70,81,116,127,128,166,195,205],"byte\u9577":[48,61,64],"callback\u304c\u4e0e\u3048\u3089\u308c\u305a":11,"case":[28,33,37,40,41,44,47,51,52,66,70,76],"center\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u3092\u4e2d\u5fc3\u3068\u3059\u308b\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":156,"centos\u306e\u5834\u5408":12,"centos_versions\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067\u7279\u5b9a\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u307f\u30d3\u30eb\u30c9\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"char":[41,48,51,52,53,54,61,62,64,66,67,70],"check\u3067\u3082\u5229\u7528\u53ef\u80fd\u3067\u3059":14,"check\u30b3\u30de\u30f3\u30c9\u306f":84,"chroot\u74b0\u5883\u306e":12,"class":[158,159,160,166],"clearlock\u306f":85,"clone\u3057\u305fweb\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306b\u5bfe\u3057\u3066\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u65b0\u898f\u8ffd\u52a0\u3057\u307e\u3059":12,"clone\u6e08\u307f\u306egroonga\u306eweb\u30b5\u30a4\u30c8\u306e\u30c8\u30c3\u30d7\u30da\u30fc\u30b8\u306e\u30bd\u30fc\u30b9":12,"codes\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"column2\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f":11,"column\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":48,"column\u306b\u5f35\u3089\u308c\u3066\u3044\u308bindex\u306e\u3046\u3061":48,"column\u306e\u5024\u304c":11,"column\u306f":48,"column\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":48,"column_create\u306f":87,"column_list\u30b3\u30de\u30f3\u30c9":34,"column_remove\u306f\u30c6\u30fc\u30d6\u30eb\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30ab\u30e9\u30e0\u3092\u524a\u9664\u3057\u307e\u3059":89,"columns\u3067\u6307\u5b9a\u3059\u308b\u3068\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"com\u304c\u5916\u90e8\u304b\u3089\u306e\u63a5\u7d9a\u3092\u53d7\u3051\u4ed8\u3051\u308b":9,"com\u304cedge\u3092\u4f5c\u308b":9,"com\u306f1\u30b9\u30ec\u30c3\u30c9":9,"command_version\u3092\u5909\u66f4\u3057\u307e\u3059":51,"command_version\u3092\u8fd4\u3057\u307e\u3059":51,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u6307\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":78,"commit\u3067\u691c\u7d22\u3057\u306a\u304c\u3089":12,"config\u304c\u306a\u3044\u5834\u5408\u306flibedit\u3092\u691c\u51fa\u3057\u306a\u3044\u3088\u3046\u306b\u3057\u305f":35,"config\u30d5\u30a1\u30a4\u30eb\u306e\u4e2d\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3082\u53ef\u80fd\u3067\u3059":78,"configure\u306e":37,"configure\u306e\u6700\u5f8c\u306b\u691c\u51fa\u3057\u305fmecab\u306e\u60c5\u5831\u3082\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3057\u305f":35,"configure\u306f\uff11\u5ea6\u306e\u307f\u5b9f\u884c\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":14,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u3042\u308b":12,"configure\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u5909\u66f4\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":208,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":3,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":3,"const":[38,48,51,52,53,54,61,62,64,65,67,70],"coverage\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b":14,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u304b\u3089name\u306b\u5bfe\u5fdc\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3092\u691c\u7d22\u3057\u3066\u8fd4\u3059":51,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066column\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":48,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066obj\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":61,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u304a\u3044\u3066table\u306b\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u3092name\u306b\u66f4\u65b0\u3057\u307e\u3059":64,"ctx\u304c\u4f7f\u7528\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"ctx\u304c\u64cd\u4f5c\u5bfe\u8c61\u3068\u3059\u308bdb\u3092\u6307\u5b9a\u3057\u307e\u3059":51,"ctx\u304c\u73fe\u5728\u64cd\u4f5c\u5bfe\u8c61\u3068\u3057\u3066\u3044\u308bdb\u3092\u8fd4\u3057\u307e\u3059":51,"ctx\u306e\u7ba1\u7406\u3059\u308b\u30e1\u30e2\u30ea\u3092\u89e3\u653e\u3057":51,"ctx\u3092\u521d\u671f\u5316\u3057\u307e\u3059":51,"ctx\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":51,"ctx_new\u3068\u3044\u3046queue\u306b":9,"cursor\u304c\u5c5e\u3059\u308btable\u3092\u8fd4\u3057\u307e\u3059":65,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306f":65,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092key\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":65,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u5f15\u6570\u306e\u5185\u5bb9\u306b\u7f6e\u304d\u63db\u3048\u307e\u3059":65,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u4ef6\u9032\u3081\u3066\u305d\u306eid\u3092\u8fd4\u3057\u307e\u3059":65,"cursor\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":65,"cursor\u306e\u5bfe\u8c61\u7bc4\u56f2\u306e\u672b\u5c3e\u306b\u9054\u3059\u308b\u3068":65,"cursor\u306e\u7bc4\u56f2\u5185\u306e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u306e\u5024\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3057\u307e\u3059":58,"cursor\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u30ab\u30ec\u30f3\u30c8\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092value\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u30bb\u30c3\u30c8\u3057":65,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u3068\u547c\u3076":14,"cutter\u3067\u306f\u30c6\u30b9\u30c8\u30b1\u30fc\u30b9\u3068\u547c\u3076":14,"cutter\u306b\u542b\u307e\u308c\u308b\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u4f7f\u7528\u3057\u3066\u3044\u307e\u3059":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u65b9\u6cd5\u306f":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":3,"cutter\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u3066cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u53d6\u5f97\u3057\u307e\u3059":12,"cutter_source_path\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306bcutter\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"dataset\u306e\u30d1\u30b9\u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u308b":36,"db\u304b\u3089id\u306b\u5bfe\u5fdc\u3059\u308b\u30c6\u30fc\u30d6\u30eb\u3084\u30ab\u30e9\u30e0\u306a\u3069\u3092\u524a\u9664\u3057\u307e\u3059":61,"db\u3068\u306a\u308a\u307e\u3059":52,"db\u306b\u30c6\u30fc\u30d6\u30eb\u3092\u8ffd\u52a0\u3057\u307e\u3059":145,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u306e\u30ea\u30b9\u30c8\u3092\u8868\u793a\u3057\u307e\u3059":[133,145],"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u30ea\u30b9\u30c8\u8868\u793a":133,"db\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u30c6\u30fc\u30d6\u30eb\u3092\u524a\u9664\u3057\u307e\u3059":145,"db\u306b\u5bfe\u3057\u3066\u540d\u524d\u3092\u3042\u308a\u306etable\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u306f":64,"db\u306e\u5185\u5bb9\u306e\u6700\u7d42\u66f4\u65b0\u6642\u523b\u3092\u73fe\u5728\u6642\u523b\u306b\u3057\u307e\u3059":52,"db\u306eid\u306b\u5bfe\u5fdc\u3059\u308bpath\u3092\u8fd4\u3057\u307e\u3059":61,"db\u3092\u4f7f\u7528\u3057\u3066\u3044\u306a\u3044\u5834\u5408\u306fnull\u3092\u8fd4\u3057\u307e\u3059":51,"db\u3092\u64cd\u4f5c\u3057\u306a\u3044\u72b6\u614b":51,"db_api\u306e\u6a5f\u80fd\u3092\u7d44\u307f\u5408\u308f\u305b\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u8907\u96d1\u306a\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"db_api\u306f":11,"db_api\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u69cb\u6210\u3059\u308b\u500b\u3005\u306e\u90e8\u5206\u306b\u5bfe\u3059\u308b\u5358\u7d14\u306a\u64cd\u4f5c\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"ddl\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059":208,"deb\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"deb\u30d1\u30c3\u30b1\u30fc\u30b8\u3084\u30bd\u30fc\u30b9\u30a2\u30fc\u30ab\u30a4\u30d6\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"debian\u3084ubuntu\u3067\u306f\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"debian\u30d1\u30c3\u30b1\u30fc\u30b8\u3092cdbs\u30d9\u30fc\u30b9\u304b\u3089debhelper\u30d9\u30fc\u30b9\u3078\u79fb\u884c":37,"debian\u7cfb":12,"debian\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"debian\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"debian\u7cfb\u3082\u3057\u304f\u306fr":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"debug\u3092\u8ffd\u52a0":35,"debug\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3057\u305f\u3068\u304d\u306b\u7d42\u4e86\u6642\u306b\u672a\u958b\u653e\u306e\u30e1\u30e2\u30ea\u304c":35,"default":[0,6,7,8,18,23],"define_selector\u306f":95,"defrag\u306f":96,"delete\u304c\u5e38\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"delete\u30b3\u30de\u30f3\u30c9":34,"delete\u64cd\u4f5c\u3092\u5b9f\u884c\u3057\u305f\u3053\u3068\u306e\u3042\u308b\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u3057\u3066\u306f":61,"deprecated\u3060\u3063\u305f\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u5bfe\u8c61\u5916\u3068\u306a\u308a\u307e\u3059":78,"deprecated\u306e\u3044\u305a\u308c\u304b\u306e\u4f4d\u7f6e\u3065\u3051\u3068\u306a\u308a\u307e\u3059":78,"description\u306b":206,"develop\u306a\u3044\u3057deprecated\u3068\u306a\u308a\u307e\u3059":78,"diff\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u3060\u3057\u307e\u3059":146,"dist\u3067\u751f\u6210\u3057\u305ftar":12,"dist\u3092\u884c\u3046\u3068version\u304c\u53e4\u3044\u307e\u307e\u306b\u306a\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059":12,"distributions\u306e\u6307\u5b9a\u306f\u6709\u52b9\u3067\u3059":12,"distributions\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3059\u308b\u3053\u3068\u3067":12,"dragonfly\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"drilldown\u6642\u306b\u53c2\u7167\u5148\u304c\u5b58\u5728\u3057\u306a\u3044\u5834\u5408\u306bsegv\u3059\u308b\u554f\u984c\u306e\u4fee\u6b63":34,"dump\u304c\u51fa\u529b\u3059\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f\u76f4\u63a5groonga\u304c\u89e3\u91c8\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059":98,"dump\u306e\u7d50\u679c\u306f\u5927\u304d\u304f\u306a\u308b\u305f\u3081":98,"dump\u306f\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30b9\u30ad\u30fc\u30de\u3068\u30c7\u30fc\u30bf\u3092\u5f8c\u304b\u3089\u8aad\u307f\u8fbc\u3081\u308b\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u51fa\u529b\u3057\u307e\u3059":98,"dump\u30b3\u30de\u30f3\u30c9":34,"edge\u304cworker\u306b\u7d50\u3073\u3064\u3044\u3066\u3044\u306a\u3044\u3068\u304d\u306f":9,"edge\u3054\u3068\u306bqueue\u3092\u6301\u3064":9,"edge\u306equeue\u306benqueue\u3055\u308c\u308b":9,"edge\u306f\u63a5\u7d9a\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"edge\u306fctx\u3092\u542b\u3080":9,"encoding\u306e\u5024\u304c":37,"entry\u30c6\u30fc\u30d6\u30eb\u306ebody\u30ab\u30e9\u30e0\u306e\u5024\u3092\u5bfe\u8c61\u3068\u3059\u308b\u5b8c\u5168\u8ee2\u7f6e\u30a4\u30f3\u30c7\u30c3\u30af\u30b9\u578b\u30ab\u30e9\u30e0":87,"entry_body\u3092\u4f5c\u6210\u3057\u307e\u3059":87,"export":[18,33,37,40,41],"expr\u306a\u3069\u306f\u89e3\u653e\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093":61,"expr\u306e\u307f\u4f7f\u7528\u53ef\u80fd\u3067\u3059":68,"expr\u306e\u307f\u8a2d\u5b9a\u53ef\u80fd\u3067\u3059":62,"fedora\u306e\u30aa\u30d5\u30a3\u30b7\u30e3\u30eb\u30ea\u30dd\u30b8\u30c8\u30ea\u306b\u767b\u9332":35,"fedora\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"fedora\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30b7\u30e7\u30f3\u306e\u30eb\u30fc\u30eb\u306b\u5f93\u3046\u3088\u3046\u306b\u6539\u826f":35,"file\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30b5\u30dd\u30fc\u30c8":35,"files\u306e\u5b9f\u884c":3,"files\u3092\u5b9f\u884c\u3059\u308b\u3068\u65b0\u898f\u306b\u8ffd\u52a0\u3055\u308c\u305f\u30d5\u30a1\u30a4\u30eb\u306a\u3069\u304c\u5404\u7a2e":12,"files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"filter\u5185\u3067\u306e\u6570\u5024\u6bd4\u8f03\u6f14\u7b97\u3092\u30b5\u30dd\u30fc\u30c8":35,"final":[69,70,76,128,147],"flags\u306b":[48,64],"flags\u306b\u306f":64,"flags\u306e\u5024\u306b\u4ee5\u4e0b\u306e\u5024\u3092\u52a0\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066":87,"float":[33,39,79,110,116,127,128,155],"function":[0,6,12,14,22,33,39,40,41,42,43,44,51,66,70,79,115,116,128,137,147,150],"function\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bgrntest\u306e\u30bd\u30fc\u30b9\u3092\u5c55\u958b\u3057\u307e\u3059":12,"functions\u304c\u3082\u3063\u3068\u3082\u91cd\u8981\u306a\u5bfe\u8c61\u3067\u3059":14,"gdb\u4e0a\u3067run\u3092\u884c\u3046\u3068":14,"geopoint\u306e\u30ad\u30e3\u30b9\u30c8\u306b\u5bfe\u5fdc":35,"geopoint\u306e\u5ea6\u3067\u306e\u6307\u5b9a\u3092\u30b5\u30dd\u30fc\u30c8":34,"geopoint\u306e\u5ea6\u8868\u8a18\u306e\u89e3\u91c8\u3092\u4fee\u6b63":35,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":12,"get\u3067\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u306e\u306f\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306a\u306e\u3067":12,"get\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u542b\u3080":144,"git\u3067\u306e\u30b3\u30df\u30c3\u30c8\u6642\u30cf\u30c3\u30b7\u30e5\u306e\u4e00\u90e8\u304c\u4f7f\u308f\u308c\u308b\u305f\u3081\u3067\u3059":12,"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":3,"gqtp\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":144,"gqtp\u306e\u3044\u305a\u308c\u304b\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"gqtp\u306e\u30ea\u30af\u30a8\u30b9\u30c8\u3092lf\u533a\u5207\u308a\u5f62\u5f0f\u3067\u6a19\u6e96\u5165\u529b\u306b\u4e0e\u3048\u308b\u3068":144,"gqtp\u306e\u5834\u5408":145,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u8a9e\u306e\u30d2\u30c3\u30c8\u6570\u304c\u591a\u3044\u305f\u3081":208,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u65b9\u304ctokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3088\u308a\u3082\u9069\u5408\u7387\u306e\u4f4e\u3044\u5834\u5408\u304c\u591a\u3044\u306e\u3067":208,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u9069\u5408\u7387\u3092\u91cd\u8996\u3057\u305f\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3068\u8a00\u3048\u307e\u3059":208,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3068tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u3067\u6319\u52d5\u304c\u5909\u308f\u308a\u307e\u3059":206,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5229\u7528\u3057\u3066\u3044\u308b\u5834\u5408\u306f\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":206,"gram\u7cfb\u306e\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u6307\u5b9a\u3059\u308b\u3053\u3068\u306b\u3088\u308a\u518d\u73fe\u7387\u3092\u3042\u3052\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":208,"gram\u7cfb\u306e\u30d2\u30c3\u30c8\u30b9\u30b3\u30a2\u306e\u65b9\u304c\u91cd\u304f\u6271\u308f\u308c\u3066\u3057\u307e\u3044\u307e\u3059":208,"grn_bool\u578b\u3092\u8ffd\u52a0":35,"grn_cursor_prefix\u304c\u52d5\u4f5c\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"grn_expr\u3067\u8868\u73fe\u3055\u308c\u305f\u691c\u7d22\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u3068\u304d\u306b\u4f7f\u3044\u307e\u3059":11,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":3,"grn_expr\u306b\u3088\u3063\u3066\u8868\u73fe\u3055\u308c\u305f\u30af\u30a8\u30ea\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306f":11,"grn_expr\u306f":11,"grn_expr\u306f\u4ee3\u5165\u3084\u95a2\u6570\u547c\u3073\u51fa\u3057\u306e\u3088\u3046\u306a\u69d8\u3005\u306a\u64cd\u4f5c\u3092\u8868\u73fe\u3067\u304d\u307e\u3059\u304c":11,"grn_expr\u3092\u4f7f\u3063\u3066\u69d8\u3005\u306a\u691c\u7d22\u30af\u30a8\u30ea\u3092\u8868\u73fe\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":11,"grn_op_adjust\u306f":11,"grn_op_and\u306f":11,"grn_op_but\u306f":11,"grn_op_or\u306f":11,"grn_op_or\u4ee5\u5916\u306e\u6f14\u7b97\u5b50\u306f":11,"grnslap\u306f":144,"grntest\u304cmlock\u306e\u60c5\u5831\u51fa\u529b\u306b\u5bfe\u5fdc":35,"grntest\u3067\u306fgroonga\u30b3\u30de\u30f3\u30c9\u3092\u660e\u793a\u7684\u306b\u3057\u3066\u3044\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":12,"grntest\u3067\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u306a\u3044\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"grntest\u3067\u7d50\u679c\u306e\u6bd4\u8f03\u304c\u5e38\u306b\u5931\u6557\u3057\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":35,"grntest\u3068\u3044\u3046\u540d\u524d\u3067grntest\u306e\u30bd\u30fc\u30b9\u3092\u914d\u7f6e\u3057\u307e\u3059":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f":12,"grntest\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u5c55\u958b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u305f\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u30c6\u30b9\u30c8\u3092\u5b9f\u884c\u3059\u308b":12,"grntest\u306e\u6b63\u5e38\u7d42\u4e86\u3092\u78ba\u8a8d\u3059\u308b":12,"grntest\u3092\u5b9f\u884c\u3059\u308b\u305f\u3081\u306b\u306fgroonga\u306e\u30c6\u30b9\u30c8\u30c7\u30fc\u30bf\u3068grntest\u306e\u30bd\u30fc\u30b9\u304c\u5fc5\u8981\u3067\u3059":12,"groonga\u3068mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u540c\u3058\u304b\u3069\u3046\u304b\u3092\u78ba":34,"groonga\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3084zip\u30a2\u30fc\u30ab\u30a4\u30d6\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u306fgroonga\u540c\u69d8\u306bgithub\u306b\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u7f6e\u3044\u3066\u3044\u307e\u3059":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":3,"groonga\u306e\u30ab\u30e9\u30e0\u306f":195,"groonga\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092clone\u3057\u305f\u6642\u70b9\u3067\u306fconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u304c\u542b\u307e\u308c\u3066\u304a\u3089\u305a":12,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3067\u4f5c\u6210\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306b\u306f":74,"groonga\u306e\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u306f\u5927\u91cf\u306e\u30c7\u30fc\u30bf\u3092\u683c\u7d0d\u3057":11,"groonga\u306e\u30c8\u30c3\u30d7\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3067":14,"groonga\u306e\u30d1\u30b9\u6307\u5b9a":12,"groonga\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3059\u308b\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u30c4\u30fc\u30eb":35,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f":12,"groonga\u306e\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u3067\u306f\u30ea\u30ea\u30fc\u30b9\u5c02\u7528\u306e\u74b0\u5883\u4e0b":12,"groonga\u306e\u7d44\u8fbc\u578b\u304b":87,"groonga\u306epackag":12,"groonga\u306f":14,"groonga\u306f\u4f4e\u6a5f\u80fd\u3067\u5358\u7d14\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u304b\u3089":11,"groonga\u306f\u57fa\u672c\u7684\u306b\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u306e\u307f\u3092\u884c\u3044\u307e\u3059":[206,208],"groonga\u306f\u5b8c\u5168\u4e00\u81f4\u691c\u7d22\u3057\u305f\u7d50\u679c\u306e\u30d2\u30c3\u30c8\u4ef6\u6570\u304c\u6240\u5b9a\u306e\u95be\u5024\u3092\u8d85\u3048\u306a\u3044\u5834\u5408\u306b\u9650\u308a":208,"groonga\u306f\u8907\u6570\u306e\u624b\u6bb5\u3092\u7528\u610f\u3057\u3066\u3044\u307e\u3059":11,"groonga\u3084mysql\u306erpm":12,"groonga\u3092\u4f7f\u3063\u3066\u304f\u308c\u3066\u3044\u308b\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066":10,"groonga\u3092\u4f7f\u3063\u3066\u3082\u3089\u3048\u308b\u3088\u3046\u306btwitter\u306e\u30a2\u30ab\u30a6\u30f3\u30c8groonga\u3092\u53d6\u5f97\u3057\u3066":10,"groonga\u3092\u5358\u72ec\u306e\u30d7\u30ed\u30bb\u30b9\u3068\u3057\u3066\u5229\u7528\u3059\u308b\u5834\u5408\u306f\u3082\u3061\u308d\u3093":146,"groonga\u3092\u5e83\u304f\u901a\u77e5\u3057\u307e\u3059":12,"groonga\u3092\u7c21\u5358\u306b\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306b":12,"groonga\u3092\u8d77\u52d5\u3059\u308b\u969b\u306e\u30b3\u30de\u30f3\u30c9\u30e9\u30a4\u30f3\u30aa\u30d7\u30b7\u30e7\u30f3\u306a\u3044\u3057\u30b3\u30f3\u30d5\u30a3\u30b0\u30d5\u30a1\u30a4\u30eb\u306bdefault":78,"groonga\u30b3\u30de\u30f3\u30c9\u304c\u4f7f\u3046\u30d7\u30ed\u30c8\u30b3\u30eb\u3068\u3057\u3066":146,"groonga\u30b3\u30de\u30f3\u30c9\u306b":35,"groonga\u30b3\u30de\u30f3\u30c9\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":146,"groonga\u30b3\u30de\u30f3\u30c9\u3092\u901a\u3057\u3066\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u547d\u4ee4\u3092\u30b3\u30de\u30f3\u30c9\u3068\u547c\u3073\u307e\u3059":145,"groonga\u30b9\u30af\u30ea\u30d7\u30c8\u5185\u3067\u306e\u884c\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc":35,"groonga\u30c6\u30b9\u30c8\u30d7\u30ed\u30b0\u30e9\u30e0":146,"groonga\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u4f5c\u6210\u3057\u3088\u3046\u3068\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u5bfe\u3059\u308b\u691c\u7d22\u51e6\u7406\u3084\u66f4\u65b0\u51e6\u7406\u306e\u305f\u3081\u306e\u6761\u4ef6\u3092\u8868\u73fe\u3059\u308b\u305f\u3081\u306e\u30c7\u30fc\u30bf\u69cb\u9020\u3067":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u30b3\u30de\u30f3\u30c9\u30a4\u30f3\u30bf\u30fc\u30d7\u30ea\u30bf\u3067\u3059":11,"groonga\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u3092\u64cd\u4f5c\u3059\u308b\u305f\u3081\u306e\u4e00\u7fa4\u306ec\u8a00\u8a9e\u5411\u3051api\u95a2\u6570\u3092\u63d0\u4f9b\u3057\u307e\u3059":11,"groonga\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u65b0\u3057\u304f\u306a\u3063\u305f\u3068\u3057\u3066\u3082":78,"groonga\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u3067\u306f\u7f72\u540d\u7528\u306e\u9375\u3092\u30ea\u30ea\u30fc\u30b9\u62c5\u5f53\u8005\u306e\u516c\u958b\u9375\u3067\u6697\u53f7\u5316\u3057\u3066\u30ea\u30dd\u30b8\u30c8\u30ea\u306epackag":12,"groonga\u30d7\u30ed\u30bb\u30b9\u3068\u306e\u30bb\u30c3\u30b7\u30e7\u30f3\u3092\u7d42\u4e86\u3057\u307e\u3059":120,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u30ed\u30fc\u30c9\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u4f7f\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u307e\u3059":145,"groonga\u30d7\u30ed\u30bb\u30b9\u306b\u5bfe\u3057\u3066\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u591a\u91cd\u306b\u884c\u3044":144,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":145,"groonga\u30d7\u30ed\u30bb\u30b9\u306e\u901a\u4fe1\u5c64\u306e\u30d1\u30d5\u30a9\u30fc\u30de\u30f3\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u30c4\u30fc\u30eb":144,"groonga\u30d7\u30ed\u30bb\u30b9\u5185\u306e\u6307\u5b9a\u3057\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u72b6\u614b\u3092\u8868\u793a\u3057\u307e\u3059":84,"groonga\u30d7\u30ed\u30bb\u30b9\u8d77\u52d5\u6642\u306b":78,"groonga\u5358\u4f53\u3067test":146,"groonga\u53ca\u3073groonga":146,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb\u306e\u5f15\u6570":[84,85,87,89,95,96,98,104,105,106,120,129,133],"groonga\u5b9f\u884c\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u5f15\u6570\u3068\u3057\u3066default":78,"groonga\u6c4e\u7528\u30d9\u30f3\u30c1\u30de\u30fc\u30af\u30c4\u30fc\u30eb\u3067\u3059":146,"groonga\u72ec\u81ea\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u3042\u308bgqtp\u3068":144,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u306b\u95a2\u3057\u3066\u306f":146,"groonga\u7d44\u307f\u8fbc\u307f\u30b3\u30de\u30f3\u30c9\u30921\u884c\u306b1\u3064\u305a\u3064\u8a18\u8ff0\u3057\u305f\u30c6\u30ad\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u3059":146,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcheck\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":84,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bclearlock\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":85,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_create\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":87,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bcolumn_remove\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":89,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefine_selector\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":95,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdefrag\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":96,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bdump\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":98,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_level\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":104,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_put\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":105,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308blog_reopen\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":106,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bquit\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":120,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308bshutdown\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":129,"groonga\u7d44\u8fbc\u30b3\u30de\u30f3\u30c9\u306e\u4e00\u3064\u3067\u3042\u308btable_list\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":133,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bedit_distance\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":154,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_circle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":156,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bgeo_in_rectangle\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":157,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308bnow\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":162,"groonga\u7d44\u8fbc\u95a2\u6570\u306e\u4e00\u3064\u3067\u3042\u308brand\u306b\u3064\u3044\u3066\u8aac\u660e\u3057\u307e\u3059":165,"groonga\u95a2\u9023\u3067\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u306a\u3044\u3068\u306a\u308b\u3068\u958b\u767a\u8005\u306f\u56f0\u3063\u3066\u3044\u308b\u4eba\u3092\u898b\u3064\u3051\u3089\u308c\u306a\u3044\u3057":10,"groonga_clone_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_clone_dir\u306b\u3066autogen":12,"groonga_dir\u306b\u3066\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"groonga_dir\u4ee5\u4e0b\u306e\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u4f5c\u696d\u30c7\u30a3\u30ec\u30af\u30c8\u30ea":12,"groonga_org_path\u3068\u3057\u3066\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f":12,"groonga_org_path\u306bgroonga":12,"groonga_suggest_create_dataset\u5909\u6570\u3092\u8ffd\u52a0":36,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"group\u5316\u306e\u7d50\u679c\u3092\u683c\u7d0d\u3059\u308b\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u306e\u30b5\u30a4\u30ba\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"group\u5316\u30ad\u30fc\u69cb\u9020\u4f53\u306e\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"gz\u304c\u4f5c\u6210\u3055\u308c\u307e\u3059":12,"gz\u306a\u3069\u306e\u30ea\u30ea\u30fc\u30b9\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u3067\u4f7f\u7528\u3057\u307e\u3059":12,"gz\u306eversion\u304a\u3088\u3073vers":12,"hat\u7cfb":12,"hat\u7cfb\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306b\u306f\u672c\u756a\u74b0\u5883\u3078\u3068\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u524d\u306b\u30ed\u30fc\u30ab\u30eb\u306eapt\u306a\u3044\u3057yum\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092\u53c2\u7167\u3057\u3066\u6b63\u5e38\u306b\u66f4\u65b0\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u307e\u3059":12,"hat\u7cfb\u306e\u5834\u5408\u306e\u52d5\u4f5c\u78ba\u8a8d\u624b\u9806\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3068\u306a\u308a\u307e\u3059":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"help\u3067\u51fa\u529b\u3055\u308c\u308b":37,"help\u3092\u5b9f\u884c\u3057\u30d8\u30eb\u30d7\u3092\u3054\u89a7\u304f\u3060\u3055\u3044":14,"hiroshi\u3055\u3093":35,"hiroshi\u3055\u3093\u304c\u5831\u544a":35,"homebrew\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"homebrew\u306e\u66f4\u65b0":3,"homebrew\u3078pul":12,"hook\u306e\u5b9f\u884c\u9806\u4f4d":56,"hook\u30bf\u30a4\u30d7\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"hook\u56fa\u6709\u60c5\u5831\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f":56,"hook\u56fa\u6709\u60c5\u5831\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"hook\u56fa\u6709\u60c5\u5831\u683c\u7d0d\u30d0\u30c3\u30d5\u30a1\u3092\u6307\u5b9a\u3057\u307e\u3059":56,"host\u30aa\u30d7\u30b7\u30e7\u30f3\u3068\u540c\u7b49\u306e\u6a5f\u80fd\u3067\u3059":146,"hosts\u3092\u66f8\u304d\u63db\u3048\u3066packag":12,"html\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068":145,"http\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3057\u307e\u3059":144,"http\u3067\u516c\u958b\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b":35,"http\u306e\u4e21\u30d7\u30ed\u30c8\u30b3\u30eb\u3067\u30ea\u30af\u30a8\u30b9\u30c8\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059":144,"http\u306e\u5834\u5408":145,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066\u8d77\u52d5\u3057\u307e\u3059":145,"http\u30b5\u30fc\u30d0\u3068\u3057\u3066groonga\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u306b\u9759\u7684\u30da\u30fc\u30b8\u3092\u683c\u7d0d\u3059\u308b\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"http\u7d4c\u7531\u3067\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u306b\u30a2\u30af\u30bb\u30b9\u3057\u305f\u6642\u306b\u5b58\u5728\u3057\u306a\u3044\u30d1\u30b9\u3092\u5831\u544a\u3059\u308b\u3088\u3046\u306b":35,"id\u304c\u9023\u7d9a\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ab\u30e9\u30e0\u5024\u304c\u6607\u9806\u306b\u683c\u7d0d\u3055\u308c\u305f\u914d\u5217\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092values\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":61,"id\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":51,"import":[0,12,28,33,37,39,40,47,51,76,77,128,132,138,147,170,180,182,183,184,193,199,215],"index\u3067\u5b9f\u884c\u3057\u305f\u3044\u64cd\u4f5c\u3092\u6307\u5b9a\u3057\u307e\u3059":48,"index\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":48,"index_cursor\u3092\u4f5c\u6210\u3059\u308b\u3068\u304d\u306b\u6307\u5b9a\u3057\u305ftable_cursor\u306e\u73fe\u5728\u306e\u5bfe\u8c61\u30ec\u30b3\u30fc\u30c9\u306eid\u3092\u8fd4\u3057\u307e\u3059":58,"indexbuf\u306e\u30b5\u30a4\u30ba":48,"init\u76f4\u5f8c\u306e\u72b6\u614b":51,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u306a\u3044":144,"install\u3057\u3066\u3082\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u306f\u884c\u308f\u308c\u307e\u305b\u3093":146,"installer\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068windows\u30a4\u30f3\u30b9\u30c8\u30fc\u30e9\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"int":[33,39,46,47,48,51,52,54,55,56,57,58,60,61,62,64,65,66,67,70,178],"ip\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u30db\u30b9\u30c8\u540d\u3067\u6307\u5b9a\u3057\u307e\u3059":146,"jekyll\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3092\u884c\u3063\u305f\u3089":12,"jquery\u30d7\u30e9\u30b0\u30a4\u30f3\u304c\u540c\u68b1\u3055\u308c\u3066\u3044\u306a\u3044\u554f\u984c\u306e\u4fee\u6b63":35,"js\u306a\u3069":12,"jsonp\u304c\u52d5\u4f5c\u3057\u306a\u304f\u306a\u3063\u3066\u3044\u305f\u554f\u984c\u3092\u4fee\u6b63":37,"key\u304c\u8fd1\u3044\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u5f97\u3059\u308b\u5834\u5408":65,"key\u304cmin\u3068\u524d\u65b9\u4e00\u81f4\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"key\u306b\u306f":64,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u306b\u5bfe\u5fdc\u3059\u308b\u5024\u3092\u683c\u7d0d\u3059\u308b\u9818\u57df\u3092\u4e00\u3064\u3060\u3051\u6301\u3064\u3053\u3068\u304c\u3067\u304d\u307e\u3059":64,"key\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u3057\u3044record\u3092table\u306b\u8ffd\u52a0\u3057":64,"key\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u3059\u3067\u306btable\u306b\u5b58\u5728\u3059\u308b\u306a\u3089\u3070":64,"key\u306e\u30d1\u30c8\u30ea\u30b7\u30a2\u6728\u3067":65,"key\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"key\u306e\u4e0b\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"key\u306e\u578b\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"key\u3092\u683c\u7d0d\u3059\u308b\u30d0\u30c3\u30d5\u30a1":64,"key\u3092\u8fd4\u3057\u307e\u3059":61,"key_type\u306bt":64,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22\u3068\u540c\u7b49\u3067\u3059":206,"key_with_sis\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u3066\u3044\u308b\u5834\u5408\u306e\u307f\u5229\u7528\u53ef\u80fd\u3067\u3059":206,"keybuf\u306b\u8a72\u5f53\u3059\u308bkey\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":64,"keybuf\u306e\u30b5\u30a4\u30ba":64,"launchpad\u306b\u767b\u9332\u3057\u305fkeyid":12,"lc_messages\u4ee5\u4e0b\u306e\u5404\u7a2e":12,"learner\u306e\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u4fee\u6b63":35,"lenny\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u524a\u9664":37,"libedit\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u30d8\u30eb\u30d7\u30e1\u30c3\u30bb\u30fc\u30b8\u3068\u9055\u3046\u554f\u984c\u306e\u4fee\u6b63":35,"libedit\u5bfe\u5fdc":34,"libmemcached\u306e\u5c0e\u5165\u304c\u5fc5\u8981\u3067\u3059":14,"limit\u4ef6\u306e\u307f\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"list\u306bcontrib\u30bb\u30af\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0\u3059\u308c\u3070apt":12,"listen\u3059\u308b\u30a2\u30c9\u30ec\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"load\u306a\u3069\u306e\u3059\u3079\u3066\u306egroonga\u30b3\u30de\u30f3\u30c9\u306bcommand_version\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":78,"load\u30b3\u30de\u30f3\u30c9":34,"locale\u4ee5\u4e0b\u306b\u66f4\u65b0\u3057\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u304c\u30b3\u30d4\u30fc\u3055\u308c\u307e\u3059":12,"localstatedir\u3092\u4f7f\u7528":35,"log\u3067\u3059":145,"log\u3068\u3044\u3046\u5f62\u5f0f\u306e\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u4f5c\u3089\u308c\u307e\u3059":146,"log\u30d5\u30a1\u30a4\u30eb\u306b\u8b66\u544a\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u51fa\u529b\u3057\u307e\u3059":78,"log_level\u306f":104,"log_put\u306f":105,"log_reopen\u306f":106,"log_reopen\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b":106,"long":[33,40,41,57,60,124,132,143],"longtext\u306e\uff13\u3064\u306e\u578b\u306b\u3064\u3044\u3066\u306f\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u4fdd\u5b58\u3057\u305f\u308a\u51fa\u529b\u3057\u305f\u308a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u304c":195,"lucid\u304b\u3089":35,"lucid\u4ee5\u964d\u306e\u95a2\u9023\u3059\u308b":12,"lzo\u30b5\u30dd\u30fc\u30c8\u4ed8\u304d\u3067\u30d3\u30eb\u30c9\u3055\u308c\u3066\u3044\u308b\u304b\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308bapi\u3092\u8ffd\u52a0":35,"macports\u3067\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u8ffd\u52a0":37,"makefile\u3092\u751f\u6210\u3059\u308b\u305f\u3081\u306bconfigure\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"man\u3092\u8ffd\u52a0":34,"markdown\u30d1\u30fc\u30b5\u30fc":12,"marverick\u306b\u5909\u66f4":35,"masahiro\u3055\u3093":35,"match_columns\u30aa\u30d7\u30b7\u30e7\u30f3\u3067\u6307\u5b9a\u3067\u304d\u307e\u3059":208,"max\u304cnull\u306e\u5834\u5408\u306b\u306f":65,"max\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":65,"max\u3067\u4e0e\u3048\u3089\u308c\u308b\u30dd\u30a4\u30f3\u30bf\u304c\u6307\u3059\u5024\u306f":65,"max\u3068\u7570\u306a\u3063\u305f\u65b9\u5411\u306b\u3042\u308b\u30ce\u30fc\u30c9\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u306f\u53d6\u308a\u51fa\u3057\u307e\u305b\u3093":65,"max\u3068common":65,"max\u3068max_size\u304c\u6307\u5b9a\u3055\u308c":65,"max\u3068pat\u6728\u4e0a\u3067\u8fd1\u3044\u4f4d\u7f6e\u306b\u3042\u308b\u30ce\u30fc\u30c9\u304b\u3089\u9806\u756a\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"max\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"max_size\u30d1\u30e9\u30e1\u30fc\u30bf\u306f\u7121\u8996\u3055\u308c\u307e\u3059":65,"md\u30d5\u30a1\u30a4\u30eb\u306epublish":12,"mecab\u306e\u8f9e\u66f8\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u691c\u51fa\u51e6\u7406\u3092\u6539\u5584":34,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u304c\u898b\u3064\u304b\u3089\u306a\u3044\u6642\u306e\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u3088\u308a\u89aa\u5207\u306b\u3057\u305f":35,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u305f\u3068\u304d\u306b\u30af\u30e9\u30c3\u30b7\u30e5\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":37,"mecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u8aad\u307f\u8fbc\u307f\u30a8\u30e9\u30fc\u3092\u7121\u8996\u3059\u308b\u3088\u3046\u306b\u3057\u305f":37,"memcached\u306e\u30d0\u30a4\u30ca\u30ea\u30d7\u30ed\u30c8\u30b3\u30eb\u306e\u30c6\u30b9\u30c8\u3092\u52d5\u4f5c\u3055\u305b\u308b\u305f\u3081\u306b\u306f":14,"min\u304cnull\u306e\u5834\u5408\u3082\u3057\u304f\u306f":65,"min\u306esize\u3092\u6307\u5b9a\u3057\u307e\u3059":65,"min\u306f\u7121\u8996\u3055\u308c\u307e\u3059":65,"min_size\u30d0\u30a4\u30c8\u672a\u6e80\u306e\u30d3\u30c3\u30c8\u306b\u5bfe\u3059\u308b\u30ce\u30fc\u30c9\u3067":65,"mooz\u3055\u3093":37,"mooz\u3055\u3093\u304c\u4fee\u6b63":37,"mroonga\u5411\u3051\u306b\u7528\u610f\u3057\u305f\u5185\u90e8api\u3067\u3059":61,"msg\u306fcom\u306b\u3088\u3063\u3066":9,"msg\u3092enqueue\u3057\u305f\u5bfe\u8c61\u306eedge\u3092enqueue\u3059\u308b":9,"multithread\u74b0\u5883\u3067\u306f\u4ed6\u306ethread\u306e\u30a2\u30af\u30bb\u30b9\u306b\u3088\u3063\u3066":64,"munin\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u8ffd\u52a0":34,"n_builtin_type_names\u306b\u306f":52,"name\u304c\u30ab\u30e9\u30e0\u540d\u306e\u5834\u5408":61,"name\u306b\u4e00\u81f4\u3059\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5b58\u5728\u3057\u306a\u3051\u308c\u3070null\u3092\u8fd4\u3059":51,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306aproc":62,"name\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atyp":67,"name\u306f\u30a2\u30af\u30bb\u30b5\u6587\u5b57\u5217\u306e\u5834\u5408":61,"name\u306f\u7701\u7565\u3067\u304d\u307e\u305b\u3093":48,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u304b\u3089\u59cb\u307e\u308btable\u306e\u30ab\u30e9\u30e0id\u3092res\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u683c\u7d0d\u3057\u307e\u3059":64,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\u65b0\u305f\u306atable\u3092ctx\u304c\u4f7f\u7528\u3059\u308bdb\u306b\u5b9a\u7fa9\u3057\u307e\u3059":64,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u9577\u3055\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"name\u30d1\u30e9\u30e1\u30fc\u30bf\u306es":[48,61,64],"name_size\u30d1\u30e9\u30e1\u30fc\u30bf\u304c0\u306e\u5834\u5408\u306f\u3059\u3079\u3066\u306e\u30ab\u30e9\u30e0id\u3092\u683c\u7d0d\u3057\u307e\u3059":64,"namebuf\u306b\u8a72\u5f53\u3059\u308b\u540d\u524d\u3092\u30b3\u30d4\u30fc\u3057\u307e\u3059":[48,61],"namebuf\u306e\u30b5\u30a4\u30ba":[48,61],"net\u306egroonga\u30c1\u30fc\u30e0\u306eppa\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"net\u4e0a\u3067\u30d3\u30eb\u30c9\u304c\u5b9f\u884c\u3055\u308c":12,"netbsd\u3067\u306e\u30d3\u30eb\u30c9\u306b\u5bfe\u5fdc":35,"new":[0,3,6,7,12],"new_release_date\u306b\u6b21\u56de\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"newvalue\u306e\u5024\u304b\u3089\u5f97\u3089\u308c\u308b\u30ad\u30fc\u306b\u5bfe\u5fdc\u3059\u308bcolumn\u306e\u5024\u306e\u4e2d\u306e":48,"no_key\u30c6\u30fc\u30d6\u30eb\u3092\u53c2\u7167\u3057\u3066\u3044\u308b\u30ab\u30e9\u30e0\u5024\u3092\u30b5\u30dd\u30fc\u30c8":34,"null":[6,7,11,33,37,39,40,41,47,51,54,55,62,66,70,83,99,101,102,103,108,109,110,116,123,126,127,128,132,133,135,137,138,158,159,160,166],"null\u306a\u3089\u7121\u540dtable\u3068\u306a\u308a\u307e\u3059":64,"null\u306a\u3089\u81ea\u52d5\u7684\u306b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u304c\u4ed8\u4e0e\u3055\u308c\u307e\u3059":[48,64],"null\u306a\u3089temporari":52,"null\u306f\u4e0a\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":65,"null\u306f\u4e0b\u9650\u306a\u3057\u3068\u898b\u306a\u3057\u307e\u3059":65,"null\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":51,"null\u30ea\u30c6\u30e9\u30eb\u3092\u30b5\u30dd\u30fc\u30c8":34,"null\u4ee5\u5916\u306e\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306fpersist":52,"null\u4ee5\u5916\u306e\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u5834\u5408":64,"obj\u304c\u73fe\u5728lock\u3055\u308c\u3066\u3044\u308c\u30700\u4ee5\u5916\u306e\u5024\u3092\u8fd4\u3057\u307e\u3059":61,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u624b\u7d9a\u304d":56,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":56,"obj\u306b\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308bhook\u3092\u524a\u9664\u3057\u307e\u3059":56,"obj\u306b\u5bfe\u3057\u3066hook\u3092\u8ffd\u52a0\u3057\u307e\u3059":56,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u306e\u6574\u5408\u6027\u3092\u691c\u67fb\u3057\u307e\u3059":61,"obj\u306b\u5bfe\u5fdc\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u30d1\u30b9\u3092\u8fd4\u3057\u307e\u3059":61,"obj\u306b\u5c5e\u3059\u308bobject\u3082\u518d\u5e30\u7684\u306b\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3055\u308c\u307e\u3059":61,"obj\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ab\u30e9\u30e0\u306b\u3064\u3044\u3066":61,"obj\u306e\u5360\u6709\u3059\u308b\u30e1\u30e2\u30ea\u306e\u3046\u3061":61,"obj\u306e\u5360\u6709\u3059\u308bdb\u30d5\u30a1\u30a4\u30eb\u9818\u57df\u306e\u3046\u3061":61,"obj\u306e\u540d\u524d\u306e\u9577\u3055\u3092\u8fd4\u3057\u307e\u3059":61,"obj\u306e\u578b\u3092\u5909\u66f4\u3057\u307e\u3059":61,"obj\u306e\u5c5e\u3059\u308bdb\u3092\u8fd4\u3057\u307e\u3059":52,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e":59,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u5024\u3092\u66f4\u65b0\u3057\u307e\u3059":61,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":59,"obj\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306evalue\u3092\u53d6\u5f97\u3057\u307e\u3059":61,"obj\u306eid\u3092\u8fd4\u3057\u307e\u3059":61,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092value\u306e\u5185\u5bb9\u306b\u66f4\u65b0\u3057\u307e\u3059":59,"obj\u306etype\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"obj\u306f":61,"obj\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":61,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057":61,"obj\u3092\u30e1\u30e2\u30ea\u304b\u3089\u89e3\u653e\u3057\u307e\u3059":61,"obj\u3092\u5bfe\u8c61\u3068\u3057\u3066query\u306b\u30de\u30c3\u30c1\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u691c\u7d22\u3057":63,"obj\u3092lock\u3057\u307e\u3059":61,"obj\u3092unlock\u3057\u307e\u3059":61,"obj\u30d1\u30e9\u30e1\u30fc\u30bf\u306e\u3068\u308b\u5024\u306e\u7bc4\u56f2\u3092\u8868\u308f\u3057\u3066\u3044\u308b\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306eid\u3092\u8fd4\u3057\u307e\u3059":61,"object\u306b\u767b\u9332\u3067\u304d\u308b\u30e6\u30fc\u30b6\u30c7\u30fc\u30bf\u3078\u306e\u30dd\u30a4\u30f3\u30bf\u3092\u8fd4\u3057\u307e\u3059":68,"object\u306b\u8907\u6570\u306ehook\u304c\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u306f\u9806\u4f4d\u306e\u9806\u306b\u547c\u3073\u51fa\u3055\u308c\u307e\u3059":56,"object\u306e\u53c2\u7167\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":56,"object\u306e\u66f4\u65b0\u6642\u306b\u547c\u3073\u51fa\u3055\u308c\u308bhook\u3092\u5b9a\u7fa9\u3057\u307e\u3059":56,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"object\u3092\u7834\u68c4\u3059\u308b\u3068\u304d\u306b\u547c\u3070\u308c\u308b\u95a2\u6570\u3092\u8a2d\u5b9a\u3057\u307e\u3059":62,"offset\u306b\u5bfe\u5fdc\u3059\u308bhook\u306e\u76f4\u524d\u306b\u65b0\u305f\u306ahook\u3092\u633f\u5165\u3057\u307e\u3059":56,"offset\u306b\u6307\u5b9a\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9id\u3092\u958b\u59cb\u4f4d\u7f6e\u3068\u3057\u3066":61,"offset\u306f":64,"offset\u756a\u76ee\u304b\u3089\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"offset\u756a\u76ee\u304b\u3089\u9806\u306bres\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u683c\u7d0d\u3057\u307e\u3059":64,"old_release_date\u306b\u524d\u56de\u306e\u30ea\u30ea\u30fc\u30b9\u306e\u65e5\u4ed8\u3092":12,"ongaeshi\u3055\u3093":35,"ongaeshi\u3055\u3093\u304c\u5831\u544a":35,"op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066res\u306b\u30ec\u30b3\u30fc\u30c9\u3092\u8ffd\u52a0\u3042\u308b\u3044\u306f\u524a\u9664\u3057\u307e\u3059":63,"op\u306e\u64cd\u4f5c\u3092\u5b9f\u884c\u53ef\u80fd\u306a\u3082\u306e\u306e\u6570\u3092\u8fd4\u3057\u307e\u3059":48,"org\u304b\u3089\u5fc5\u8981\u306b\u5fdc\u3058\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u307e\u3059":146,"org\u304c\u30db\u30b9\u30c8\u3092":12,"org\u304c\u30db\u30b9\u30c8\u3092\u53c2\u7167\u3059\u308b\u3088\u3046\u306b\u5909\u66f4\u3059\u308b":12,"org\u3068\u901a\u4fe1\u3057\u307e\u3059":146,"org\u3068\u901a\u4fe1\u53ef\u80fd\u3067\u306a\u3044\u5834\u5408":146,"org\u3068ftp\u901a\u4fe1\u3092\u884c\u3044":146,"org\u306bssh\u30ed\u30b0\u30a4\u30f3\u3067\u304d\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3057\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044":12,"org\u306e\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059":12,"org\u306edoc":12,"org\u3078\u3068\u53cd\u6620\u3055\u308c\u307e\u3059":12,"org\u3078\u3068\u53cd\u6620\u3057\u307e\u3059":12,"output_columns\u304b\u3089_value\u3092\u524a\u9664":35,"output_type\u6307\u5b9a\u306f\u7121\u8996\u3055\u308c\u307e\u3059":98,"package\u304c\u6b63\u5e38\u306b\u7d42\u4e86\u3059\u308b\u3068zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3092files\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306b\u4f5c\u6210\u3057\u307e\u3059":12,"partial\u30e2\u30fc\u30c9\u3067\u518d\u5ea6\u691c\u7d22\u3057":11,"pat\u6728\u4e0a\u3067\u4f4d\u7f6e\u304c\u8fd1\u3044\u3053\u3068\u3068key\u306e\u5024\u304c\u8fd1\u3044\u3053\u3068\u306f\u540c\u4e00\u3067\u306f\u3042\u308a\u307e\u305b\u3093":65,"path\u306b\u306fcutter\u306e\u30bd\u30fc\u30b9\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306b\u306fgroonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u30ea\u30dd\u30b8\u30c8\u30ea\u3092clone\u3057\u305f\u5834\u6240\u3092\u6307\u5b9a\u3057\u307e\u3059":12,"path\u306e\u4e2d\u304b\u3089groonga\u30b3\u30de\u30f3\u30c9\u3092\u63a2\u3057\u307e\u3059":146,"path\u3092":35,"pc\u306bgroonga":36,"pid\u3092\u4fdd\u5b58\u3059\u308b\u30d1\u30b9\u3092\u6307\u5b9a\u3057\u307e\u3059":145,"pid\u30d5\u30a1\u30a4\u30eb\u3092\u6307\u5b9a\u3059\u308b":34,"po\u306e\u5b9f\u884c":3,"po\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"po\u30b3\u30de\u30f3\u30c9\u306e\u5b9f\u884c\u306b\u3088\u308a\u66f4\u65b0\u3057\u305f\u5404\u7a2e":12,"po\u30d5\u30a1\u30a4\u30eb\u304c\u66f4\u65b0\u3055\u308c\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u66f4\u65b0\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3066\u5b9f\u884c\u3057\u307e\u3059":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":3,"po\u30d5\u30a1\u30a4\u30eb\u3092\u7ffb\u8a33\u3057\u307e\u3059":12,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c":[156,157],"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u5186\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":156,"point\u306b\u6307\u5b9a\u3057\u305f\u5ea7\u6a19\u304c\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092bool\u578b\u306e\u5024\u3067\u8fd4\u3057\u307e\u3059":157,"point\u578b\u306e\u5024":[156,157],"point\u578b\u306e\u5024\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":[156,157],"prefix\u304cmin_size\u30d0\u30a4\u30c8\u4ee5\u4e0a\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u51fa\u3057\u307e\u3059":65,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u5b9a\u7fa9\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"proc\u3067\u4f7f\u7528\u3059\u308b\u5909\u6570\u306e\u6570\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"proc\u306e\u3044\u305a\u308c\u304b\u304c\u6307\u5b9a\u3067\u304d\u307e\u3059":64,"proc\u306e\u7a2e\u985e\u3092\u6307\u5b9a\u3057\u307e\u3059":62,"public":41,"push\u3057\u3066groonga":12,"query\u5185\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u69cb\u6587":36,"quit\u306f":120,"rb\u3092\u8ffd\u52a0":35,"release\u306e\u5b9f\u884c":3,"release\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u3067build\u304b\u3089upload\u307e\u3067\u4e00\u6c17\u306b\u5b9f\u884c\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u304c":12,"release\u30b3\u30de\u30f3\u30c9\u3067\u306f":12,"repositories\u914d\u4e0b\u306b":12,"repositories\u914d\u4e0b\u306brpm\u30d1\u30c3\u30b1\u30fc\u30b8\u304c\u751f\u6210\u3055\u308c\u307e\u3059":12,"request\u3092\u9001\u308a\u307e\u3057\u305f":12,"request\u3092\u9001\u308a\u307e\u3059":12,"res2\u306b\u683c\u7d0d\u3057\u307e\u3059":64,"res\u306b\u683c\u7d0d\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4e0a\u9650\u3092\u6307\u5b9a\u3057\u307e\u3059":64,"res\u306btable1\u3042\u308b\u3044\u306ftable2\u305d\u306e\u3082\u306e\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u3092\u9664\u3051\u3070":64,"result\u306b\u30bb\u30c3\u30c8\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":11,"return":[22,33,37,39,40,41,43,46,47,48,51,52,53,54,55,61,64,66,69,70,77,79],"rid_max\u3092\u6307\u5b9a\u3057\u3066\u53d6\u5f97\u3059\u308b\u30ec\u30b3\u30fc\u30c9id\u306e\u5024\u3092\u5236\u9650\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059":58,"root\u306b\u5909\u66f4":35,"root\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5024\u306b\u6307\u5b9a\u3057\u3066\u8d77\u52d5\u3057\u305f\u5834\u5408":145,"rpm\u306a\u3069\u306e\u30b5\u30d6\u30bf\u30b9\u30af\u3067\u3082architectur":12,"rpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ruby\u306erake\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u306b\u3088\u308a\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u307e\u3059":12,"s3ki\u3055\u3093":35,"s3ki\u3055\u3093\u304c\u5831\u544a":35,"scan_build\u3068\u3044\u3046\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u89e3\u6790\u7d50\u679c\u306ehtml\u304c\u51fa\u529b\u3055\u308c\u307e\u3059":14,"scorer\u306f":128,"scr\u3067\u3059":146,"scr\u306e\u4e2d\u8eab\u304c":146,"script\u30d5\u30a1\u30a4\u30eb\u306e\u540c\u671f\u3084\u30ed\u30b0\u30d5\u30a1\u30a4\u30eb\u306e\u9001\u4fe1\u3092\u884c\u3044\u307e\u3059":146,"script\u5f62\u5f0f\u306egrn_expr\u4e2d\u3067\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059":[154,156,157,162,165],"search\u3092\u884c\u3044":[64,65],"search\u3092\u884c\u3046\u5834\u5408\u306b\u306f":65,"section\u306b\u5bfe\u5fdc\u3059\u308b\u30a8\u30f3\u30c8\u30ea\u3092\u66f4\u65b0\u3057\u307e\u3059":48,"section\u756a\u53f7\u3092\u683c\u7d0d\u3059\u308bint\u9577\u30d0\u30c3\u30d5\u30a1":48,"select\u306e\u4e2d\u8eab\u309210\u56de\u7e70\u308a\u8fd4\u3059":146,"select\u306e\u51fa\u529b\u306b\u4e0d\u6b63\u306a\u30ab\u30e9\u30e0\u3092\u6307\u5b9a\u3055\u308c\u305f\u6642\u306bsegv\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":34,"select\u3084load\u306a\u3069\u306egroonga\u306e\u30b3\u30de\u30f3\u30c9\u306e\u4ed5\u69d8\u306e\u4e92\u63db\u6027\u3092\u8868\u3057\u307e\u3059":78,"select\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8ffd\u52a0":35,"select\u30b3\u30de\u30f3\u30c9":34,"set_host\u3067\u6307\u5b9a\u3057\u305fip\u30a2\u30c9\u30ec\u30b9":146,"set_host\u3092\u5229\u7528\u3057\u305f\u5834\u5408":146,"sh\u304c\u30bf\u30b0\u3068\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u306e\u304c\u671b\u307e\u3057\u3044\u3067\u3059":12,"sh\u306e\u307f\u306a\u3089\u305a":14,"sh\u306f\u3044\u304f\u3064\u304b\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u3068\u308a\u307e\u3059":14,"sh\u3092\u4ee5\u4e0b\u306e\u3088\u3046\u306b\u5b9f\u884c\u3057\u307e\u3059":12,"sh\u3092\u5b9f\u884c\u3059\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u3082\u884c\u3048\u307e\u3059":14,"shibuya\u3055\u3093":35,"shibuya\u3055\u3093\u304c\u5831\u544a":35,"shimada\u3055\u3093":35,"shimada\u3055\u3093\u304c\u5831\u544a":35,"short":[76,147],"shorttext\u306e\u30d9\u30af\u30bf\u30fc\u3092\u691c\u7d22\u6761\u4ef6\u3084\u30c9\u30ea\u30eb\u30c0\u30a6\u30f3\u6761\u4ef6\u306b\u4f7f\u7528\u3057\u305f\u3044\u5834\u5408\u306b\u306f":195,"shorttext\u578b\u306e\u5024\u3092\u683c\u7d0d\u3059\u308b\u30ab\u30e9\u30e0":87,"shorttext\u578b\u30ab\u30e9\u30e0\u3078\u30c7\u30fc\u30bf\u8ffd\u52a0":35,"shutdown\u3067\u7d42\u4e86\u3057\u306a\u3044\u554f\u984c\u3092\u4fee\u6b63":35,"shutdown\u306f":129,"sigint\u3067\u306e\u4e2d\u65ad\u306b\u5bfe\u5fdc":37,"sign\u3092\u884c\u3046\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059":12,"sigsegv\u304c\u767a\u751f\u3059\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059":64,"sort\u3055\u308c\u305f\u30ec\u30b3\u30fc\u30c9\u306e\u3046\u3061":64,"source\u30d1\u30c3\u30b1\u30fc\u30b8\u306b\u5fc5\u8981\u306a\u3082\u306e\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"source\u4ee5\u4e0b\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u66f4\u65b0":12,"squeeze\u306ei386\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"squeeze\u4ee5\u964d\u306edebian\u3084karmic\u4ee5\u964d\u306euubntu\u3067\u306f\u4ee5\u4e0b\u306e\u7528\u306b\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3067\u304d\u307e\u3059":14,"srpm\u30d1\u30c3\u30b1\u30fc\u30b8\u306a\u3069\u304c\u30ab\u30ec\u30f3\u30c8\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u3078\u3068\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3059":12,"static":[33,37,41,66,148,214],"status\u3068\u3044\u3046\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb\u309210\u500b\u306e\u30b9\u30ec\u30c3\u30c9\u3067\u5b9f\u884c\u3059\u308b":146,"status\u306e\u51fa\u529b\u7d50\u679c\u306b\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8ffd\u52a0":35,"status\u30b3\u30de\u30f3\u30c9":34,"string1\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u3068string2\u306b\u6307\u5b9a\u3057\u305f\u6587\u5b57\u5217\u306e\u9593\u306e\u7de8\u96c6\u8ddd\u96e2\u3092\u6c42\u3081\u307e\u3059":154,"string\u306b":11,"suggest\u306ehttp\u30b5\u30fc\u30d0\u306blimit\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"suggest\u30b3\u30de\u30f3\u30c9\u306bthreshold\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0":37,"table1\u3068table2\u304b\u3089\u91cd\u8907\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u53d6\u308a\u9664\u3044\u305f\u7d50\u679c\u3092\u305d\u308c\u305e\u308cres1":64,"table1\u3068table2\u3092op\u306e\u6307\u5b9a\u306b\u5f93\u3063\u3066\u96c6\u5408\u6f14\u7b97\u3057\u305f\u7d50\u679c\u3092res\u306b\u683c\u7d0d\u3057\u307e\u3059":64,"table2\u306f\u7834\u58ca\u3055\u308c\u307e\u305b\u3093":64,"table\u304c":64,"table\u306b\u65b0\u305f\u306a\u30ab\u30e9\u30e0\u3092\u5b9a\u7fa9\u3057\u307e\u3059":48,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u306e\u4ef6\u6570\u3092\u8fd4\u3057\u307e\u3059":64,"table\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u9806\u756a\u306b\u53d6\u308a\u51fa\u3059\u305f\u3081\u306e\u30ab\u30fc\u30bd\u30eb\u3092\u751f\u6210\u3057\u3066\u8fd4\u3057\u307e\u3059":65,"table\u306bid\u306b\u5bfe\u5fdc\u3059\u308brecord\u304c\u5b58\u5728\u3059\u308b\u304b\u78ba\u8a8d\u3057":64,"table\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u7279\u5b9a\u306e\u6761\u4ef6\u3067\u30b0\u30eb\u30fc\u30d7\u5316\u3057\u307e\u3059":64,"table\u306e\u5168\u3066\u306ecolumn\u3082\u540c\u6642\u306b\u540d\u524d\u304c\u5909\u66f4\u3055\u308c\u307e\u3059":64,"table\u306e\u5168\u30ec\u30b3\u30fc\u30c9\u3092\u4e00\u62ec\u3057\u3066\u524a\u9664\u3057\u307e\u3059":64,"table\u306ecolumn":64,"table\u306ecolumn1\u306e\u5024\u304cstring\u306bexact\u30e2\u30fc\u30c9\u3067\u30d2\u30c3\u30c8\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306b\u3064\u3044\u3066\u5f97\u3089\u308c\u308b\u30b9\u30b3\u30a2\u5024\u306bscore1\u3092\u7a4d\u7b97\u3057\u3066result\u306b\u30bb\u30c3\u30c8\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u306b\u542b\u307e\u308c\u308b\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306ecolumn\u306e\u5024\u304cstring\u3092\u542b\u3080\u30ec\u30b3\u30fc\u30c9\u3092result\u306b\u8fd4\u3057\u307e\u3059":11,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u53d6\u5f97\u3057\u307e\u3059":64,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":64,"table\u306eid\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,"table\u306ekey\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u3092\u524a\u9664\u3057\u307e\u3059":64,"table\u306esrc_key\u306b\u5bfe\u5fdc\u3059\u308b\u30ec\u30b3\u30fc\u30c9\u306ekey\u3092\u5909\u66f4\u3057\u307e\u3059":64,"table\u306f\u6c38\u7d9a\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u306a\u3051\u308c\u3070\u3044\u3051\u307e\u305b\u3093":64,"table\u306fcolumn\u3068\u306f\u5225\u306b":64,"table\u5185\u306e\u30ec\u30b3\u30fc\u30c9\u3092\u30bd\u30fc\u30c8\u3057":64,"table_list\u306f":133,"takahiro\u3055\u3093":35,"takahiro\u3055\u3093\u304c\u5831\u544a":35,"takahiro\u3055\u3093\u304c\u63d0\u6848":35,"takashi\u3055\u3093":37,"takashi\u3055\u3093\u304c\u5831\u544a":37,"takuto\u3055\u3093":35,"takuto\u3055\u3093\u304c\u5831\u544a":35,"test_gqtp\u547d\u4ee4\u3067\u5229\u7528\u3057\u307e\u3059":146,"textile\u30d1\u30fc\u30b5\u30fc":12,"tid\u306bnull\u4ee5\u5916\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306f":58,"tokenbigram\u3067\u306f\u5b8c\u5168\u4e00\u81f4\u3057\u307e\u3059":208,"tokenbigram\u306a\u3069":208,"tokenbigram\u3092\u7528\u3044\u305f\u7d22\u5f15\u3092\u8ffd\u52a0\u3057\u307e\u3059":208,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f":206,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":206,"tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":208,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3067\u306f\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u6587\u5b57\u5217\u306b\u3064\u3044\u3066\u3082bigram\u3092\u751f\u6210\u3057":206,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u3068":208,"tokenbigramsplitsymbolalpha\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3046\u5834\u5408\u3082\u91cd\u307f\u4ed8\u3051\u3092\u8003\u616e\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u3053\u3068\u306f\u304b\u308f\u308a\u3042\u308a\u307e\u305b\u3093":208,"tokendelimitnull\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u8ffd\u52a0":36,"tokenmecab\u3067\u306f":208,"tokenmecab\u306e\u5834\u5408":208,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u3092\u4f7f\u7528\u3057\u305f\u7d22\u5f15\u3067\u306f":206,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u524d\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":206,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306e\u5834\u5408\u306f\u308f\u304b\u3061\u66f8\u304d\u5f8c\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3067\u524d\u65b9\u4e00\u81f4\u691c\u7d22\u3068\u4e2d\u9593\u4e00\u81f4\u691c\u7d22\u3068\u5f8c\u65b9\u4e00\u81f4\u691c\u7d22\u3092\u3057\u307e\u3059":206,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u306f\u4e8b\u524d\u306b\u6e96\u5099\u3057\u305f\u8f9e\u66f8\u3092\u7528\u3044\u3066\u30c8\u30fc\u30af\u30ca\u30a4\u30ba\u3059\u308b\u305f\u3081":208,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u3044\u308b\u5834\u5408\u306f\u3053\u306e\u30af\u30a8\u30ea\u306f\u30de\u30c3\u30c1\u3057\u307e\u305b\u3093":208,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u306e\u65b9\u3092tokenbigram\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u3063\u3066\u4f5c\u3063\u305f\u7d22\u5f15\u3088\u308a\u3082\u91cd\u8996\u3059\u308b\u3088\u3046\u306b\u91cd\u307f\u4ed8\u3051\u3092\u6307\u5b9a\u3057\u307e\u3059":208,"tokenmecab\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u4f7f\u7528":208,"tomita\u3055\u3093\u304c\u30d1\u30c3\u30c1\u4f5c\u6210":35,"tomita\u3055\u3093\u304c\u5831\u544a":35,"tomotaka_ito\u3055\u3093":37,"tomotaka_ito\u3055\u3093\u304c\u5831\u544a":37,"top_left\u3068bottom_right\u304c\u306a\u3059\u77e9\u5f62\u306e\u7bc4\u56f2\u5185\u306b\u3042\u308b\u304b\u3069\u3046\u304b\u3092\u8abf\u3079\u307e\u3059":157,"true":[33,34,40,41,44,76,85,86,87,88,89,90,91,92,93,94,95,97,99,100,101,102,103,104,105,106,107,108,110,111,112,115,116,117,118,119,122,123,124,125,126,127,128,132,134,135,136,140,153,155,156,157,158,159,160,161,163,164,166,167,168,170,171,172,174,177,181,182,183,184,192,195,211,212,213,214,216,217,219,220,221],"truncate\u30b3\u30de\u30f3\u30c9\u3092\u8ffd\u52a0":37,"try":[3,33,46,91,145,193,198,216,217],"twitter\u3067\u3084\u308a\u3068\u308a\u3092\u5b8c\u7d50\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059":10,"twitter\u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u308b\u5b89\u5fc3\u611f\u304b\u3089groonga\u30e6\u30fc\u30b6\u30fc\u306e\u62e1\u5927\u306b\u7e4b\u3052\u308b":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":3,"twitter\u306f\u6c17\u8efd\u306b\u3064\u3076\u3084\u3051\u308b\u3053\u3068\u304c\u91cd\u8981\u306a\u306e\u3067":10,"twitter\u7de8":3,"txt\u306b\u307e\u3068\u3081\u307e\u3059":12,"txt\u306b\u5909\u66f4\u70b9\u3092\u307e\u3068\u3081\u307e\u3057\u305f\u304c":12,"txt\u306e\u5185\u5bb9":12,"type\u306b\u5bfe\u5fdc\u3059\u308b\u60c5\u5831\u3092valuebuf\u306b\u683c\u7d0d\u3057\u307e\u3059":59,"ubuntu\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":3,"ueno\u3055\u3093":[35,36],"ueno\u3055\u3093\u304c\u5831\u544a":36,"ueno\u3055\u3093\u4f5c\u6210\u306espec\u304c\u30d9\u30fc\u30b9":35,"uint16\u306e\u7b49\u5024\u6bd4\u8f03\u306bc\u8a00\u8a9e\u306e\u6bd4\u8f03\u6f14\u7b97\u5b50\u3092\u4f7f\u7528":35,"unit\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u304a\u3044\u3066":14,"uptime\u306e\u8868\u793a\u5f62\u5f0f\u3092\u8aad\u307f\u3084\u3059\u3044\u5f62\u5f0f\u306b\u5909\u66f4":34,"user_data\u3092\u30ad\u30fc\u3068\u3057\u3066":62,"v1\u306e\u5024\u304c\u8981\u7d20\u306b\u5206\u89e3\u3055\u308c\u308b\u3068\u304d":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3068\u7b49\u3057\u3044\u304b\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u524d\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u306b\u5bfe\u3057\u3066\u5f8c\u65b9\u4e00\u81f4\u3059\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5927\u304d\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3088\u308a\u3082\u5c0f\u3055\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u304cv2\u306e\u5024\u3092\u542b\u3093\u3067\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u7b49\u3057\u304f\u306a\u3044\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u3068v2\u306e\u5024\u304c\u985e\u4f3c\u3057\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v1\u306e\u5024\u306e\u4e2d\u306b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u4e2d\u9593\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u524d\u65b9\u4e00\u81f4\u3059\u308b":11,"v1\u306e\u5024\u306e\u8981\u7d20\u304cv2\u306e\u5024\u306b\u5f8c\u65b9\u4e00\u81f4\u3059\u308b":11,"v2\u306b\u306f\u5024\u306e\u914d\u5217\u3092\u6e21\u3057\u307e\u3059":11,"v2\u306e\u5024\u306e\u8981\u7d20\u304c\u63a5\u8fd1\u3057\u3066\u542b\u307e\u308c\u3066\u3044\u308b\u3053\u3068\u3092\u8868\u3057\u307e\u3059":11,"v2\u306e\u5024\u306f\u8981\u7d20\u306b\u5206\u89e3\u3057\u306a\u3044":11,"v2\u306e\u5024\u3082v1\u306e\u5024\u3068\u540c\u69d8\u306b\u8981\u7d20\u306b\u5206\u89e3\u3057\u305f\u3068\u304d":11,"vagrant\u3067\u4f7f\u7528\u3059\u308b\u4eee\u60f3\u5316\u30bd\u30d5\u30c8\u30a6\u30a7\u30a2":12,"valgrind\u3092\u7528\u3044\u3066\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9\u3084\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u3092\u691c\u51fa\u3057\u3064\u3064":14,"value\u304c\u5c5e\u3059\u308b\u578b":133,"value\u3092\u623b\u308a\u5024\u3068\u3057\u3066\u8fd4\u3057\u307e\u3059":61,"value_type\u3092\u6307\u5b9a\u3057\u305f\u30c6\u30fc\u30d6\u30eb\u306e\u307f\u306b\u5b9a\u7fa9\u3055\u308c\u307e\u3059":74,"var":[11,28,33,62,70,88,143,145,147,203],"version\u304c\u6307\u5b9a\u3055\u308c\u306a\u304b\u3063\u305f\u5834\u5408\u306f":78,"version\u3067\u8868\u793a\u3055\u308c\u308b\u30d0\u30fc\u30b8\u30e7\u30f3\u8868\u8a18\u304c\u66f4\u65b0\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u304c\u5fc5\u8981\u3067\u3059":12,"version\u306b\u6307\u5b9a\u3057\u305f\u5024\u304c\u6307\u5b9a\u3055\u308c\u305f\u3082\u306e\u3068\u307f\u306a\u3057\u307e\u3059":78,"version\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u8ffd\u52a0":35,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u306bstable\u6271\u3044\u3067\u306a\u3044\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u305f\u5834\u5408\u306b\u306f":78,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3084command_version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u305b\u305a\u306bgroonga\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u305f\u969b\u306b\u306f":78,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4e0e\u3048\u308b\u3053\u3068\u306b\u3088\u3063\u3066\u6307\u5b9a\u3067\u304d\u307e\u3059":78,"version\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059":78,"virtualbox\u306fsourc":12,"vmware\u306a\u3069":12,"void":[38,46,49,52,53,60,61,64,65,66,69,70],"web\u30b5\u30a4\u30c8\u304b\u3089\u6700\u65b0\u7248\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3057\u3066\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059":12,"web\u7ba1\u7406\u753b\u9762":34,"wheezy\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u8ffd\u52a0":37,"while":[0,33,39,40,52,90,102,108,123,135,138,172],"windows\u3067\u306fmingw\u3067\u3082pthread\u3092\u4f7f\u308f\u306a\u3044\u3088\u3046\u306b\u3057\u305f":37,"windows\u306a\u3089\u30b3\u30de\u30f3\u30c9\u30d7\u30ed\u30f3\u30d7\u30c8\u4e0a":146,"windows\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"windows\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9\u306b\u5fc5\u8981\u306a\u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u5411\u3051":12,"windows\u5411\u3051\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u306b\u306f\u4ee5\u4e0b\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u307e\u3059":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":3,"windows\u7cfb":12,"worker\u306f":9,"worker\u306f\u4e0a\u9650\u304c\u500b\u5b9a\u6570":9,"worker\u306fthread\u3068\uff11\u5bfe\uff11\u5bfe\u5fdc":9,"x86\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u4ee5\u4e0b\u306bx64":12,"x86\u30d0\u30a4\u30ca\u30ea\u3092\u4f5c\u6210\u3057\u307e\u3059":12,"x\u3067\u306e\u30d1\u30c3\u30b1\u30fc\u30b8\u7ba1\u7406\u65b9\u6cd5\u3068\u3057\u3066":12,"x\u3067\u306frealloc":35,"x\u3067\u30e2\u30b8\u30e5\u30fc\u30eb\u306e\u62e1\u5f35\u5b50\u306e\u691c\u51fa\u306b\u5931\u6557\u3059\u308b\u554f\u984c\u3092\u4fee\u6b63":35,"x\u306e\u304a\u77e5\u3089\u305b":33,"xxxxx\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8":12,"yes\u3092\u6307\u5b9a\u3059\u308b\u3068chroot\u74b0\u5883\u3067\u4e26\u5217\u306b\u30d3\u30eb\u30c9\u3092":12,"yes\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3059\u308b\u3068":12,"yum\u306e\u5834\u5408":12,"yum\u30b5\u30d6\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306b\u79fb\u52d5\u3057\u3066":12,"zip\u30a2\u30fc\u30ab\u30a4\u30d6\u3082\u540c\u69d8\u306b\u3057\u3066grntest\u3092\u5b9f\u884c\u3057\u52d5\u4f5c\u78ba\u8a8d\u3092\u884c\u3044\u307e\u3059":12,aba:[212,214,221],abbrev:155,abc:33,abcd:113,abi:33,abl:[166,181,182,183,184,185],abort:41,about:[2,7,14,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33,37,38,39,40,41,43,46,70,76,77,79,81,82,83,87,88,90,91,92,93,97,101,102,103,107,110,113,114,123,124,125,126,127,128,130,131,134,136,138,139,140,145,147,152,155,161,164,167,170,171,173,175,176,180,181,182,183,184,187,188,190,193,194],abov:[17,21,28,31,33,39,99,107,124,128,132,147,150,153,160,161,164,167,174,180,187,188,190,193,212,214,216,217,220,221],absolut:[118,119,122],acccess:203,accept:[0,33,37,39,41,81,124,140,145,150,153,155,171,199,205,214,216,217,220,221],access:[0,17,22,33,37,39,40,41,44,46,48,90,128,135,147,148,187,188,190,194,198],accessor:[33,64],accident:40,accord:[155,211],accordingli:147,account:[2,41],accross:39,accuml:40,accumul:128,accur:[0,166],achiev:107,acquir:[33,46,101,103],acronym:[197,205],across:155,action:40,actual:[40,41,107,109,110,112,147,182,211,214],add:[3,6,7],add_record_if_not_exist:61,addit:[0,22,24,25,26,30,43,113,128,138],addition:[33,221],additional_configure_opt:40,address:[33,37,39,145,150,205,218],address_is_in_us:205,address_is_not_avail:205,adisk:181,adjac:[170,193],adjust:[40,41,76,110],admin:[33,35,37,39,40,41],admin_html:[37,145],administr:[22,39,41],advanc:[33,42,107,109],advantag:[0,166,203],affect:[33,39,40,41],afr:[212,214,221],after:[17,18,28,31,33,37,39,40,41,44,46,55,69,94,99,115,117,134,141,147,150,158,159,171,174,191,192,194,211,213,214,218],again:[33,41,46,147,172],against:[0,22,33,39,41,48,52,54,76,111,127,128,134,140,145,170,171,181,185,187,188,190,210,213],againt:128,agaist:39,ago:187,ahello:33,ahost1:181,aim:40,aio:40,aki:41,akihabara:221,akinori:33,akio:[33,37,39,40],akira:41,alert:[41,104,105,145,147,173],algolithm:169,algorithm:[37,83,155,184],ali:86,alia:[22,33,43],alias:[33,44,91,92,93],aliased_column:44,alic:[44,86,90,116,128,135,140,147,153,164,170,193,199,217],alisa:164,all:[0,17,28,33,37,39,41,44,48,51,52,55,76,81,83,86,88,90,91,92,93,94,98,99,100,101,102,103,108,110,111,115,116,117,118,122,123,125,126,127,128,130,132,134,135,136,137,138,140,141,143,147,153,159,169,170,171,172,173,174,181,183,184,187,190,191,192,193,194,195,199,205,214,217,220],all_record:39,alloc:[22,33,39,41,47,51,54,70,128,130,207],alloc_count:[80,130,145,147,178,205,214,218],allow:[0,25,33,39,151,166,214,218],allow_column:[128,170],allow_leading_not:128,allow_pragma:128,allow_upd:[128,170],almost:[37,128,194,197,209],alon:33,alphabet:[41,110,128,132,138,181,188,193],alreadi:[41,46,70,94,100,115,138,151,172,194,214,216],also:[0,3],although:147,alwai:[0,33,41,66,79,88,108,116,128,131,137,147,163,170,171,187,194,205],amazon:128,amd64:12,among:[22,39,210,211,213],amount:39,analysi:[0,28,171],analyz:[0,37,39,147,193],anchor:33,ani:[0,24,28,33,44,86,100,110,113,117,125,126,127,128,131,136,137,138,145,147,158,159,164,166,167,170,180,182,193,199],anim:213,ann:12,annot:40,anonym:191,anoth:[0,33,39,54,86,101,128,143,180],api:[1,3,15],appear:[0,41,82,128,138,166,170,171,180,182,214],append:[39,54,61],apper:128,appl:174,appli:[42,54],applic:[0,20,37,41,145,147,166,171,180,199],approach:155,approv:41,approxim:[37,39,155],appveyor:41,april:12,apt:[12,18,21,25,30,39],aptitud:14,arai:33,aramaki:37,arc:138,architectur:[0,12,33,41,145],archiv:[6,7,8,12,17,22,23,28],area:0,aren:[33,39,41,110,128,130,132,134,147,166,170,176,191,194,199],arg1_nam:181,arg1_valu:181,arg2_nam:181,arg2_valu:181,arg3_valu:181,arg_list_too_long:205,argc:66,argument1:[171,182],argument2:[171,182],argument:[33,37,39,40,41,51,70,99,127,145,148,155,158,159,160,161,163,164,166,167,168,171,181,182,185,202,205,214,216,218],argument_name1:148,argument_name2:148,argv:66,arithmet:40,armhf:41,arnaud:37,around:[166,176],arrai:[37,39,41,76,79,84,88,113,114,127,128,132,138,139,166,170],arrang:214,art:[171,217],articl:216,articles2:216,articles_cont:216,arugment1:171,asami:40,asc:12,ascend:[109,111,128,176,212,214,221],ascii:[170,171,193],askmonti:41,assgin:171,assigend:170,assign:[33,40],associ:[37,70,97,100,128,211,213,214],assum:[51,62,124],atsushi:[33,41],attach:[17,174,192],attent:[128,219],attr_setpshar:40,attribut:[113,114,138,139,160],atv:[212,214,221],auth_bas:[147,199],auth_basic_user_fil:[147,199],authent:198,author:147,auto:[39,41,108,131],autoconf:[6,37],autogen:[6,12,17,39],automak:[6,35],automat:[17,33,52,99,118,119,122,143,147,170,171,191,202,213,214,219],autoreconf:12,autotool:[3,5],avail:[0,8,17,22,28,33,40,42,43,50,70,79,88,108,109,110,113,128,131,132,138,143],averag:[41,128],avg:[41,110,128,144],avoid:[22,40,41,128,134,207],awar:70,ayumu:[33,41],back:[147,171,181],background:145,backslash:[40,54,170],backup:[52,98],backward:[33,39,41,140,183,184,199],bad:[0,40,41],bad_address:205,bad_file_descriptor:205,bar:132,base:[0,17,24,25,26,28,30,39,40,41,55,124,128,138,147,148,150,151,158,159,166,170,171,177,181,182,183,184,185,187,188,190,193,198,203,217,218],basebal:[213,216],bash:[28,33],basi:214,basic:[0,22,39,41,86,128],batch:39,bc009774:12,becam:[41,203],becaus:[0,6,7,8,21,26,33,39,41,44,52,79,86,87,90,94,99,107,110,116,117,118,122,128,132,135,137,143,147,150,153,161,163,164,166,167,170,171,172,174,177,178,180,181,182,183,184,187,188,189,190,191,192,193,194,197,198,199,203,205,211,213,214,216,219,220],becom:[0,33,42,155,195,211],been:[12,33,90,135],befor:[28,33,38,39,69,76,83,108,115,117,118,122,128,134,137,147,180,181,187,188,189,211,214],before_instal:21,beforehand:26,beg:[181,193],begin:[144,181,193],behav:[150,155],behavior:[33,39,41,141,153,164,181,193],behaviour:[40,98],beijin:155,belong:[72,195,212],below:[13,90,100,135,170,193],benchmark:[22,39,40,41,43,142],benefit:203,bernard:33,best:0,beta:42,better:[0,41,99,128,171,216],between:[22,37,39,40,41,43,61,90,99,128,132,135,145,151,152],big:[41,147],bigram:[146,149,193,208],bigramlexicon:123,bill:[33,206,208],billiard:[206,208],bin:[18,28,31],binari:[0,1,22,31,33,39,40,41,79,147,171,178,195,196,199],bind:[20,21,33,37,39,42,145,158,159,169],binlib:12,bison:12,bit:[21,23,24,25,26,29,30,31,128,146,170,171,195,211],bitwis:33,black:[174,176],blank:[33,174,193],block:[40,130,132,134,147,171,211],blog1:216,blog2:216,blog:[12,22,110,128,167,170,171,172,208,210,216],blog_bodi:208,blog_comment_index:167,blog_cont:167,blog_titl:214,blogroonga:3,bm25:[182,184],bob:[44,90,128,135,140,147,153,164,170,199,217],bodi:40,book:171,bookmark:[76,98],bookmark_index:76,bookmark_titl:98,bool:[33,40,86,116,127,136,170,192],boost:187,border:[39,138,153],borderlin:[107,109,112],boston:217,both:[0,23,24,25,26,30,31,33,61,72,76,79,87,110,128,134,141,166,170,171,172,181,184,187,191,199,205,217,221],bottom:55,bottom_right:[37,157],bottom_right_point:55,bound:41,box:128,brand:33,brasil:155,brasillia:155,brazil:212,brew:[18,27],bring:214,british:220,broadcast:217,broken:[33,37,39,40,41,48,52,101,102,103,117,123,134,143],broken_pip:205,brooklyn:217,brother:170,browser:[17,28,148,218],bsd:[5,7,8,28,33,37,41],buf_siz:[48,61,64],buffer:[33,40,51,54,57,61,84,216],bug:3,build:[0,3,4],buildabl:37,builder:57,built:[0,22,28,33,40,43,61,77,113,138,147,152,155],builtin:[22,43,116],builtin_type_nam:52,bulk:[33,54,61],bump:[33,40,41],bundl:[17,33,39,40,41,164],button:[17,39,40],bye:[110,128,136,170,171,192],cach:[0,33,34,39,40,47,61,83],cache_hit_r:[80,130,147,178,205,214,218],cache_limit:[22,33,43,77],cache_previ:47,calc_target:33,calc_typ:33,calcul:[39,40,41,125,128,150,155,176,217,221],call:[33,39,40,41,51,66,69,70,76,90,108,125,126,128,135,137,155,166,169],caller:62,calloc:33,calro:153,camp:217,can:[0,1,5,6,7,8,17,18,19,21,24,25,26,27,28,30,31,33,37,38,39,40,41,44,45,46,47,50,51,52,54,69,70,76,79,81,82,83,86,87,88,90,91,92,93,94,98,99,100,101,107,108,109,110,111,113,115,116,117,118,119,122,123,124,125,126,127,128,131,132,134,135,136,137,138,140,141,143,145,147,148,152,153,155,158,159,160,161,163,164,166,167,169,170,171,172,173,174,176,177,178,180,181,182,183,184,185,187,188,189,190,191,192,193,194],can_be_key_typ:127,can_be_value_typ:127,cancel:[41,81,124],cancel_request_is_accepted_or_not:124,candid:[131,150,163,187],candidate1:131,candidate2:131,candidate_1:150,candidate_2:150,candidate_n:150,cannot:[22,128,132,170,171,172,174,191,199,207],capit:214,caplit:[40,41],care:[17,88,107,128,170,184,187],carefulli:[76,117],carlo:[90,135,140],cas_error:205,cascad:[40,41],cast:[37,38,39,40,61],cat:12,categor:[128,136,138],caus:[33,37,39,40,41,132,170,171,211],ceekz:40,cenos6:39,cent:193,center:[0,156],cento:[12,18,22,23],central:217,certain:221,cflag:29,chain:167,chang:[0,18,28,33,37,38,39,40,41],chapter:214,charact:[0,33,37,39,40,41,54,70,113,128,132,138,145,158,159,166,170,171,173,174,180],charli:217,chart:37,check:[12,13,14,22,33,35,37,39,40,41,43,51,52,61,77,79,82],child:99,china:[155,212],choic:0,choos:[5,6,7,41,80,100,128,132,145,147,181,193,211],chracter:[132,166,174],chracterist:191,christian:33,chroot:12,chunk:[33,84,194,209],circl:[0,176],cirit:147,citi:[155,176,217],clang:[14,33,39,40,41],clarifi:41,classif:212,clean:[6,7,12,14,33],clear:[12,33,37,39,41,48,61,102],clearli:33,clearlock:[22,39,41,43,77],cleverli:94,click:128,clone:[3,6,7,8,12,13],close:[33,100,134,158,191],close_tag1:158,clumn:194,cmake:[3,5,6],cmp0014:41,code:[3,6,7,8,12,17,22,33,39,40,41,43,54,69,77,79],col1:61,col2:61,col3:61,collaps:39,colleagu:3,collect:[0,79,217],color:174,colum:216,column1:[11,39,40,41,110,128,171,182],column2:[11,39,40,41,110,128,171,182],column3:182,column_1:[127,167],column_2:[127,167],column_3:[127,167],column_copi:[22,33,43,44,77],column_cr:[22,33,37,41,43,44,76,77,86],column_index:[33,41,76,87,88,98,110,123,127,128,134,153,158,159,161,163,164,166,167,170,171,172,181,182,183,184,192,194,208,213,214,216,217,220],column_inform:88,column_information1:88,column_information2:88,column_list:[22,35,37,39,41,43,77],column_list_head:88,column_n:167,column_nam:[99,100,115,117,127],column_name1:100,column_name2:100,column_name_1:[127,128],column_name_2:[127,128],column_name_3:127,column_name_n:128,column_name_with_t:127,column_name_with_table_nam:127,column_remov:[22,41,43,77,86],column_renam:[22,38,40,41,43,44,77,86],column_scalar:[44,86,87,88,90,97,98,99,101,102,103,107,110,111,115,117,123,127,128,134,135,136,140,153,155,158,159,160,161,163,164,166,167,170,171,172,181,182,183,184,192,194,208,212,213,216,217,220],column_type_1:128,column_type_2:128,column_type_n:128,column_vector:[33,40,41,76,86,87,88,97,128,163,167,168,211,213,217],column_with_index:33,columnn:39,com:[6,7,8,12,13,17,21,128,211,212,214,218,221],comamnd:199,combin:[0,39,41,128,132,153,163,164],combind:170,come:[176,217],comma:[33,100,171,211,212,214],command:[0,6,7,8,13,14,17,18,21,22,28,31,33,35,37,39,40,41,43,44,47,51,70,76],command_lin:127,command_nam:[127,148,218],command_object_remov:117,command_vers:[33,78,80,130,147,148,158,159,160,166,168,178,205,214,218],commandinput:33,commands_column_list:88,commands_column_renam:90,commands_object_remov:117,commands_table_cr:133,commands_table_renam:135,comment:[33,40,167,180,216],comment_cont:167,comment_index:217,comment_nam:167,comments2:216,comments_cont:216,comments_loc:217,commit:[6,7,17,41],commnad:[31,78],common:[30,37,39,64,65,128,132,145,169,170,171,191,195,216],commonli:[0,181],compar:[0,33,39,41,128,166,170],comparison:[22,39],compat:[24,25,26,30,33,41,110,113,140,147,148,174,183,184,199],compil:[6,7,28,33,37,40,41],complet:[22,37,38,40,43,118,119,122,131,150,163,177,186],complex:[33,39,40,128,171,181],complianc:147,composit:174,compress:[28,37,39,40,41,87,127,198],compress_lzo:87,compress_zlib:87,comput:[39,70,130,171,177,182,183,184,187,188,190,194],conbin:[128,169],conbind:170,concaten:216,concatin:[39,40,150],concept:41,concret:[86,128,212,213,216],concurr:173,cond:40,cond_sign:66,condit:[22,32,33,39,40,54],conditin:170,condition1:171,condition2:171,conditional_probability_threshold:[37,131],condtion:170,conf:[33,147,194,203,209],config:[8,28,31,33,34,37,39,91,145],config_delet:[22,33,43,77],config_get:[22,33,43,77,91],config_set:[22,33,43,44,77,91,92],configur:3,confirm:3,confus:[181,193],conifugr:21,connect:[1,33,39,145,205,214],connection_refus:205,consid:[41,107,132,199,203,213,216,220],consist:[33,41,127,128,141,170,185,190,193,205,214],consol:147,constant:33,constant_pattern:33,construct:[22,33,39,40,41,43,171],construnct:33,consum:41,contact:17,contain:0,content:[33,37,40,41,70,79,88,110,127,128,134,147,160,164,166,167,170,171,172,182,192,194,199,205,213,216,217],content_index:[134,182],content_type_len:39,context:[33,37,47,51,54,61,110,130,134,147,166,167],continu:[21,33,39,40,41,130,138,145,188,193],contrast:[0,41,69,145,164,214],contrib:12,control:[39,41,108,109,128,147,153,164,169],conveni:[0,1,28,37,107,187,198],convens:39,convent:39,convers:[37,147],convert:[33,41,82,171,174],coordin:[155,211],copa:33,copi:[33,39,44,70,86,90,135],copyright:41,core:[0,6,7,28,146,147,150,198],coremodul:147,correct:[22,33,39,41,43,131,150,180,186,187],correctli:[33,39,214],correspond:[61,99,107,110,128,131,148,187,188,189,190],cosmo0920:[40,41],cost:[172,193],could:[39,211],couldn:[33,39],count:[0,33,107,128,130,213,217],countri:[97,212,218],cours:212,cover:[0,166],coverag:14,cpu:[6,7,28,146,147,150,198],cpuinfo:[24,25,26,30],crash:[33,37,39,40,41,90,99,102,135],crch:138,created_at:110,createfilemap:33,createrepo:12,creation:[33,37,40,214],creteria:214,crit:[104,105],criteria:214,critic:[28,39,70,145,173],ctrl:[145,205,214],ctx:[11,47,48,51,52,54,55,56,57,58,59,60,61,62,63,64,65,67,68,70],curl:[21,27,28,39,124,145,147,150,178,199],current:[17,33,37,44,47,50,51,52,83,86,90,100,108,130,132,134,135,147,176,214,217],current_column:44,current_nfthread:66,cursor:[33,37,55],custom:[6,7,8,21,28,33,37,39,40,41,66,98,113,128,132,136,137,138,147,166,169,170,173,174,182,187,192,198],customiz:166,cutter:[6,7,12,14],cutter_check_leak:14,cutter_debug:14,cutter_dir:12,cutter_source_path:12,cve:41,cxxflag:29,daemoinz:39,daemon:[33,39,40,41],dai:[33,107,130,171,172,173,185,217],daiki:[35,36,37,39],danger:[48,52,90,101,102,103,117,135,199],dangl:134,dash:28,dat:[38,39,40],dat_kei:[116,191],data:[0,21,22,23,24,25,26,30,31,32,33,37,38,39,40,41,43,44,47,52,56,66,72,76,86,88,97,98,100,107,110,116,123,128,131],data_set_nam:131,databas:[0,20,22,28,33,37,39,40,41,47,51,52,61,64,88,90,94,98,99,100,101,102,103,114,115],database_path:143,database_unmap:[22,33,43,77],datail:128,dataset:[22,33,40,43,131,142],date:[0,22,146,155,195,210],dave:153,daylight:41,db1:199,db2:199,db_path:[33,117,145,147,148,178,197,202,205,214,218],dbm:[0,166],dbmss:0,dcb314:41,dcmake_install_prefix:[7,8,31],ddl:[41,146],deafult:37,deatil:128,deb:[12,25,30,33,37,39,40,41],debian:[12,18,22,23],debootstrap:12,debug:[6,7,8,33,41,104,105,138,145,147,173],debugg:[6,7],decid:180,decim:[171,195,211],decreas:[6,7,33,66],decrib:147,decrypt:12,defalt:35,default_command_vers:[80,130,147,178,205,214,218],default_token:[110,123,127,128],defin:[33,149,163,171,172,180,185,187,195,205,214],define_selector:[22,43,77],definion:171,definit:[39,44,97,110,128,153,155,158,159,160,161,163,164,166,167,168,170,171,181,182,183,184],defrag:[22,37,40,43,77],degrad:33,degre:[37,76,171,211,221],dejan:33,delet:[18,22,33,34,35,37,39,40,41,43,61,77,91],delimit:[0,33,40,138,190,193,211],demerit:191,demo:213,depend:[0,3],deprec:[33,37,39,40,41,70,78,85,122,128,130,132,145,155],deriv:[151,203],descend:[33,128,131],describ:[3,5,6,7,8,17,18,19,20,21,23,24,25,26,27,28,29,30,31,33,41,44,45,70,76,77,79,83,86,88,90,91,92,93,94,99,100,101,102,103,107,108,109,110,111,112,113,115,116,117,123,124,125,126,127,128,130,132,134,135,136,137,138,140,142,143,145,152,159,160,167,170,171,174,175,176,180,181,182,183,184,185,186,187,188,190,193,194,205,214,216,217],descript:[6,7,8,22,33,39,40,41,43,88,109,110,113,114,127,128,130,132,138,139,145,147,150,170,171,181,185,187],design:[39,128,197,211],desin:203,desktop:[8,31],dest:[144,145,211],dest_kei:64,dest_key_s:64,destin:[33,61,86],detail:[0,1,3,17,24,25,26,28,30,33,39,40,41,70,76,81,86,88,94,99,110,116,118,119,122,127,128,130,132,134,135,136,138,146,147,148,164,170,171,173,181,194,195,203,211,212,214,221],detect:[6,28,33,37,39,138,147],determin:[128,169,214],dev:[2,6,7,12,14,25,30,33,37,39,40,41],devel:[24,26],develop:[0,3],devic:0,dewangga:33,dgrn_with_debug:7,dgrn_with_mrubi:[7,8],dialog:40,dic:26,dictionari:[26,33,35,39,40,41,174,193],didn:[33,41],differ:[19,33,39,41],difficult:0,digest:199,digit:[41,110,128,132,173,181,188,193],dinam:169,dinner:0,dir:146,direct:[39,40],directli:[171,217],directori:[6,7,17,28,33,37,39,40,41,70,147,150,151,180],directory_not_empti:205,disabl:[18,28,33,35,37,38,39,40,41,117,128,145,147,150,170,173,187],discard:40,discuss:[2,19],disk:[33,94,99,115,132,181,216],displai:[39,163],dist:12,distanc:[0,39,155,171,176,221],distinct:[32,150,219],distribut:[12,23,24,25,26,28,30,31,39,41,110,185],divid:[0,171,184,211],divis:41,dll:[37,39,41,70],do_gqpt:146,do_gqtp:146,do_http:146,do_loc:146,doc:[12,16,17,18,33,37,38,39,40,41,147,220],doc_bodi:220,documenataion:79,document:[0,3,5,6,7,8,12],document_index:[158,159],document_vers:12,document_version_ful:12,documents_content_index:[164,166],docutil:12,doe:[0,33,39,40,66,76,128,131,143,147,167,170,171,203,211,214],doesn:[28,33,39,40,41,46,61,70,79,86,88,90,94,109,110,115,116,117,124,127,128,132,135,137,138,147,153,166,170,171,172,174,176,177,180,181,182,184,185,187,188,191,192,193,194,198,199,220],domain:[16,33,39,41,54,61,70,88,90,133,135,145],domain_error:205,don:[17,23,28,33,37,41,47,50,51,54,66,76,88,94,99,100,101,102,103,108,109,123,128,132,145,147,148,163,170,171,172,174,178,180,182,183,184,190,193,199,202,205,214,218],done:[41,46,47,99,128,147],dot:39,doubl:[33,37,39,40,41,100,113,127,128,132,138,170,171,191,195,214],doubt:212,down:[22,40,41],downcas:174,download:[12,24,25,26,27,28,29,30,31],downtim:[44,198],draw:213,drildown:[22,210],drill:217,drilldown:[22,33,37,40,41,74,95],drilldown_calc_target:41,drilldown_calc_typ:41,drilldown_limit:[33,95],drilldown_offset:[33,95],drilldown_output_column:[41,95],drilldown_result1:128,drilldown_result2:128,drilldown_result:128,drilldown_result_1:128,drilldown_result_2:128,drilldown_result_for_column1:128,drilldown_result_for_column2:128,drilldown_result_for_kei:128,drilldown_result_for_labeled_drilldown:128,drilldown_result_n:128,drilldown_sortbi:[33,95],drilldown_xxx:128,droonga:[161,185],drop:[33,37,39,40,41],due:[0,166],dump:[22,33,35,37,39,40,41,43,50,77],dump_index:33,dump_plugin:33,dump_record:33,dump_schema:33,duplic:41,dure:[39,214],dynam:[0,38,147,214],each:[0,5,23,28,33,37,40,54,76,81,88,100,107,108,109,112,114,124,128,130,131,138,139,141,147,150,158,163,164,171,173,182,187,188,190,191,205,209,211,212,213,214,215],each_nam:33,ealier:39,eanbl:6,ear:138,earch:138,earlier:[33,37,140,174],easi:[0,41,145,169,180,182,199,218],easier:182,easili:41,echo:117,eclips:17,ecmascript:[39,40,128,169,171],edict2grn:41,edit:[3,12],edit_dist:[22,33,34,43,152],editor:17,editrc:37,effect:[33,39,99,100,145,183,217],effici:[0,76,108,216],egg:216,eight:214,either:[19,40,128,153,170,171,181,216],eito:40,el5:24,elaps:[37,79,130,150,171,173,178,195],elapsed_tim:[79,173],element1:[76,171],element2:[76,171],element3:76,element:[33,39,40,41,76,79,82,166,211,214],elfr:39,elimin:40,ellip:[155,156],ello:33,els:[33,41],emac:17,embed:[0,33,145,147,159,166,180],embedd:33,emerg:[104,105,145,147,173],emit:39,emphas:160,empti:[33,37,40,41,88,91,92,93,127,128,170,195],enabl:[3,6,7,8,12],enable_tokenized_delimit:138,enci:146,enclos:[100,214],encod:23,encodiong:171,encount:[23,24,25,26,30,31],encyclopedia:195,end:[33,144,155,170,171,178,181,193],end_of_data:205,end_tagn:158,endian:41,endpoint:[150,151],eng:[131,187],engi:[131,187],enginen:187,english:[2,14,17,18,19,37,40,41,128,187,193],enhanc:42,enorm:213,enough:[0,33,41,209,216],enourm:190,ensur:[33,188],enter:[33,40,205,214],entiti:0,entranc:214,entri:[33,40,47,56,83,85,86,87,89,95,96,97,100,101,102,103,110,123,128,134,143,158,159,167,170,171,194,216,217],entries_20150708:110,entries_20150709:110,entries_content_index:[128,170,171,194],entries_content_index_20150708:110,entries_content_index_20150709:110,entries_key_index:[128,170,171,194],entries_key_index_20150708:110,entries_key_index_20150709:110,entries_numb:33,entries_yyyymmdd:110,entry1:86,entry_20150708:110,entry_20150709:110,entry_bodi:[87,123],entry_kei:123,entry_selector:95,entrykei:134,enumer:214,env:180,enviromn:33,environ:[6,7,8,21,23,24,28,31,33,37,38,40,41,147,180],epel:[24,39],epoch:[211,217],equat:155,era:0,eric:153,errno:[33,41],error:[0,6,7,22,23,24,25,26,28,30,31,33,37,38,39,40,41,44,47,48,51,52,54,55,61,69,70],error_cod:70,error_loc:79,error_messag:79,errror:181,escal:23,escap:[39,40,41,54,158],escape_charact:54,escaped_charact:54,escaped_queri:54,escaped_str:54,escaps:[158,159,166],especi:33,essenti:[25,30,147],establish:[205,214],estim:[33,55,209],estimate_s:33,etc:[3,12,25,39,147,180,194,199,203,209,211,214],etim:144,euc:[40,145,193],euc_jp:28,eval:125,evalu:[33,40,125,127,167,170,171,181,193],evaluated_valu:125,evalud:125,even:[0,23,24,25,26,30,31,33,39,40,41,107,117,171,184,187,216],event:[33,199],event_dataset:[149,151],event_queri:[131,149,151,187,188,190],event_typ:149,ever:40,everi:212,everyon:218,evil:171,exact:[11,44,108,128,132,191],exactli:209,exampl:[0,3,8,20],exce:[33,39,40],exceed:209,excel:180,except:[26,33,37,39,41,44,76,86,116,123,125,126,128,132,138,147,161,166,170,176,181,191,193,194],exclam:33,exclud:[39,40,41,98,100,107,109,110,112,153],exclude_t:40,excut:40,exec_format_error:205,execut:[0,22,28,31,33,37,39,40,41,43,44,51,66,76,79,83,86,88,90,91,92,93,94,97,99,100,101,102,103,107,108,110,111,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140],exist:[1,18,33,39,40,41,44,52,61,99,100,109,110,111,115,117,124,128,134,143,145,147,151,153,161,171,182,185,193,203,205,211,214,216,221],exit:[33,39,40,141,143,145],exit_failur:69,exit_success:69,expand:[22,39,40,43,118,119,122,128],expans:[22,33,37,39,128,164,180,210],expect:[41,177,181,183,193,211],experiment:[33,37,38,39,40,41,47,52,99,107,108,109,110,111,112,113,119,124,125,126,143,158,159,166,181,183,184,185,193],expir:[33,83,147],explain:[33,211,214],explicitli:[18,33,39,99,147],exploit:0,expnas:180,expornenti:171,expr:54,express:[8,22,31,33,37,39,40,43,54,97,126,128,147,150,155,169],ext:138,extend:[41,181,216,220],extens:178,extract:[0,17,28,31,33,39,41,54,128,132,159,166,167],extrct:171,f10399c0:12,facet:128,fact:[128,213],faction:217,factor:[41,128],fail:[33,37,39,40,41,46,47,70,86,91,94,99,117,118,119,122,128,132,134,135,170,214],failur:[12,33,39,41,46],fallback:33,fals:[12,33,34,40,41,86,87,90,91,93,94,97,101,102,103,115,117,123,124,127,134,138,140,153,158,161,164,167,170,171,193,195,211,219],famili:[138,171],familiar:212,fast:[0,33,72,79,100,110,128,132,138,155,158,159,160,161,166,170,171,176,181,182,184,191,198,199,213,214,216],faster:[28,37,40,41,193,197],fastest:44,fatal:41,fault:39,favorit:17,favorited_bi:217,fbnteqr:33,featur:[0,6,7,8,17,33,37,39,41,44,51,52,76,86,99,107,108,109,110,111,112,113,114,119,124,128,131,132,134,137,138,139,143,145,147,155,158,159,163,164,166,169,170],feb:107,fedora:[12,18,22,23],fedoraproject:24,feel:[41,181],fetch:[41,190,216],few:[128,198,199],ff01:33,ff1f:33,ff76:174,ff9e:174,ffef:193,fff0:193,fffe:138,fget:33,field:[33,88],figur:176,file:[3,12],file_corrupt:205,file_exist:205,file_too_larg:205,filename_too_long:205,fill:[150,171],filter:[22,25,30,33,37,39,40,41,43,44,76,86,95,97],fin:62,find:[0,3,17,18,28,31,33,64,86,90,128,131,135,158,159,163,166,174,177,185,187,188,190,192,193,214],finish:[33,69,124,173],firefox:17,firewood:[39,40],first:[17,28,31,33,37,40,41,51,70,79,88,110,124,128,132,147,150,158,159,166,170,171,180,181,182,199,203,211,213,214,216,217,220],five:[79,153,214],fixed_size_type_vector_column:33,flag:[33,37,38,39,41,48,51,54,58,61,64,65,67,70,76,84,87,88,90],flanc:155,flexibl:[0,164,169],flow:3,flower:211,fluent:13,flush:[33,99],flushviewoffil:33,focus:214,folder:[8,31],follow:[2,17,18,21,28,31,32,33,37,39,40,41,44,48,69,70,76,79,86,88,90,99,100,108,110,113,114,115,116,117,127,128,131,132,134,135,137,138,139,145,147,148,149,150,151,155,158,159,164,166,167,168,170,171,173,176,178,180,181,182,183,184,185,187,188,189,190,193,194,195,197,199,202,205,209,211,212,213,214],followe:217,fontain:37,footnot:[155,214],forc:39,force_prefix:[33,138,193],foreground:145,forget:[76,101,163],fork:[17,145],form:[37,40,128,147,150,169,170,174,202,205,214,217,218],form_1:214,form_2:214,format:[17,22,33,38,39,41,42,43,50,70,77],former:[44,174,180],formula:[155,209],found:[28,31,39,40,55,64,128,177,189,193],four:[79,86,145,173,191,214],fraction:[0,211,217],fragment:96,francisco:155,frank:153,freebsd:[22,33,43],freed:[41,47,52,130],freq0:190,freq1:190,freq2:190,frequenc:[33,41,131,182,183,184,215],frequency_threshold:[37,131,187,188,190],frequent:182,fresh:172,friend:[3,213],friendli:39,friendship:213,from:0,from_column:86,fromtabl:86,fsf:39,ftb:42,ftp:[12,146],ful:138,full_nam:127,fullfil:203,fulli:[39,147],fulltext:[24,25,26,30,45,110,128,132,138,145,158,159,164,166,170,171,174,176,191,203,216],fullwidth:33,fumiyasu:37,funa:41,func:[51,62,66,70],functin:171,function_nam:79,function_not_impl:205,furigana:131,further:211,futur:[37,40,76,107,113,125,126,155,181,199,205],fuzzi:[33,132],fuzzy_search:33,g0763d91:80,g8029ddb:[214,218],ga54c5f8:146,garbag:[37,40,41,84],gat:[212,214,221],gb6fd7f7:130,gb87d9f8:178,gcc:[24,26,28,29,37,39,40],gdb:[6,7],gem:12,gemfil:39,gener:[3,6],genki:40,geo_dist:[22,37,39,40,43,152],geo_distance2:[37,155],geo_distance3:[37,155],geo_in_circl:[22,37,40,43,152],geo_in_rectangl:[22,34,35,37,40,43,152],geodet:[195,221],geograph:[155,211],geoindex:213,geoloc:[22,41,43,175],geometri:[33,37],geopoint:155,geosit:213,get:[0,2,12,17,18,22,25,28,30,33,37,39,41,47,51,55,70,83,92,108,111,117,128,136,137,138,141,145,148],getaddrinfo:39,getenv:33,gettext:[17,18],git:[6,7,8,12,13,17],github:[6,7,8,12,13,17,19,21,33,37,39,40,41,87],gitter:[2,33],give:[0,164],given:[39,40,164,213],glaser:33,glib:40,global:[22,33,39,40,43,45],glossari:[21,22,43],gmo:41,gnu:[3,5],gnupg2:12,gobject:33,golubchik:33,gone:213,goo:[170,171],good:[0,17,28,110,128,136,138,170,171,172,192,193,216],googl:[128,170,182,183,184,189],goronga:31,goroo:197,got:[40,41],gpg:12,gpl:42,gqtp:[0,1,22,24,25,26,30,33,39,40,41,82,144,145,146,196],grace:33,gram:[0,138,171,214],grand:217,graph:0,greas:211,gregex:40,grep:[24,25,26,30],grn1:216,grn2:216,grn3:216,grn:[98,147],grn_address_is_in_us:82,grn_address_is_not_avail:82,grn_api:54,grn_arg_list_too_long:82,grn_bad_address:82,grn_bad_file_descriptor:82,grn_between_too_many_index_match_ratio:41,grn_bool:61,grn_bool_rc:51,grn_broken_pip:82,grn_builtin_typ:[61,67],grn_bulk:[33,54],grn_bulk_vsiz:[51,54],grn_cach:[22,33,43,45],grn_cache_clos:47,grn_cache_current_get:47,grn_cache_current_set:47,grn_cache_get_max_n_entri:47,grn_cache_open:47,grn_cache_set_max_n_entri:47,grn_cas_error:82,grn_column:[22,43,45],grn_column_cr:48,grn_column_get_all_index_data:33,grn_column_index:48,grn_column_index_upd:48,grn_column_nam:48,grn_column_name_id:48,grn_column_name_id_len:48,grn_column_name_kei:48,grn_column_name_key_len:48,grn_column_name_nsubrec:48,grn_column_name_nsubrecs_len:48,grn_column_name_scor:48,grn_column_name_score_len:48,grn_column_name_valu:48,grn_column_name_value_len:48,grn_column_renam:48,grn_column_t:48,grn_column_trunc:[41,48],grn_command_input_get_argu:33,grn_command_vers:[22,43,45],grn_command_version_default:33,grn_command_version_max:49,grn_command_version_min:49,grn_command_version_st:49,grn_cond:66,grn_conf_get:33,grn_conf_set:33,grn_config_cursor_get_kei:33,grn_config_cursor_get_valu:33,grn_config_cursor_next:33,grn_config_cursor_open:33,grn_config_delet:[33,91],grn_config_get:33,grn_config_set:33,grn_connection_refus:82,grn_content_json:50,grn_content_msgpack:50,grn_content_non:50,grn_content_tsv:50,grn_content_typ:[22,43,45],grn_content_xml:50,grn_ctx:[22,33,39,43,45,46,47,48],grn_ctx_at:[39,51],grn_ctx_batch_mod:41,grn_ctx_close:[37,41,51],grn_ctx_db:51,grn_ctx_fin:[39,51],grn_ctx_get:[48,51],grn_ctx_get_all_norm:33,grn_ctx_get_all_t:[33,51],grn_ctx_get_all_token:33,grn_ctx_get_all_token_filt:33,grn_ctx_get_all_typ:33,grn_ctx_get_command_vers:51,grn_ctx_get_match_escalation_threshold:60,grn_ctx_get_output_typ:51,grn_ctx_init:[37,51],grn_ctx_is_open:[33,51],grn_ctx_open:[37,51],grn_ctx_output_nul:33,grn_ctx_output_uint64:33,grn_ctx_per_db:[37,51],grn_ctx_recv:41,grn_ctx_send:[47,50,51],grn_ctx_set_command_vers:51,grn_ctx_set_fin:51,grn_ctx_set_match_escalation_threshold:60,grn_ctx_set_output_typ:51,grn_ctx_t:82,grn_ctx_use:51,grn_ctx_use_ql:41,grn_cursor_ascend:65,grn_cursor_by_id:65,grn_cursor_by_kei:65,grn_cursor_descend:65,grn_cursor_gt:65,grn_cursor_lt:65,grn_cursor_prefix:65,grn_cursor_rk:65,grn_dat:37,grn_dat_repair:38,grn_db:[22,38,43,45],grn_db_creat:52,grn_db_create_optarg:52,grn_db_float:33,grn_db_int:61,grn_db_kei:38,grn_db_open:52,grn_db_recov:[33,41,52],grn_db_register_by_nam:36,grn_db_text:54,grn_db_touch:[35,52],grn_db_unmap:[33,52],grn_default_logger_get_path:39,grn_default_logger_get_rotate_threshold_s:33,grn_default_logger_set_path:39,grn_default_logger_set_rotate_threshold_s:33,grn_default_query_logger_get_path:39,grn_default_query_logger_get_rotate_threshold_s:33,grn_default_query_logger_set_path:39,grn_default_query_logger_set_rotate_threshold_s:33,grn_directory_not_empti:82,grn_domain_error:82,grn_dump_column_create_flag:33,grn_dump_table_create_flag:33,grn_ecmascript:44,grn_enc_utf8:[53,65],grn_encod:[22,43,45],grn_encoding_pars:53,grn_encoding_to_str:53,grn_end_of_data:82,grn_exec_format_error:82,grn_expr_add_var:54,grn_expr_alloc:54,grn_expr_append_const:[11,54],grn_expr_append_const_int:54,grn_expr_append_const_str:54,grn_expr_append_obj:[11,54],grn_expr_append_op:[11,54],grn_expr_clos:54,grn_expr_compil:54,grn_expr_creat:54,grn_expr_create_for_queri:11,grn_expr_estimate_s:33,grn_expr_exec:[33,51,54],grn_expr_get_keyword:54,grn_expr_get_var_by_offset:54,grn_expr_pars:54,grn_expr_syntax_escap:54,grn_expr_syntax_escape_queri:54,grn_expr_syntax_expand_queri:33,grn_expr_var:[62,70],grn_fals:[51,61],grn_file_corrupt:82,grn_file_exist:82,grn_file_read:33,grn_file_too_larg:82,grn_filename_too_long:82,grn_fin:[33,69],grn_float_valu:33,grn_function_not_impl:82,grn_geo:[22,43,45],grn_geo_cursor_next:55,grn_geo_cursor_open_in_rectangl:55,grn_geo_estimate_in_rectangl:[37,55],grn_geo_point:55,grn_geo_select_in_circl:37,grn_geo_select_in_rectangl:[37,55],grn_geo_table_sort:33,grn_get_default_command_vers:49,grn_get_default_encod:53,grn_get_default_match_escalation_threshold:60,grn_get_global_error_messag:33,grn_get_lock_timeout:46,grn_get_package_label:33,grn_hash_siz:33,grn_hash_tini:33,grn_hook:[22,43,45],grn_hook_entri:56,grn_hook_get:56,grn_hook_select:56,grn_hook_set:56,grn_id:[48,51,54,57,58,59,61,64,65,70],grn_id_nil:[51,54,64,65],grn_ii:[22,43,45],grn_ii_buff:57,grn_ii_buffer_append:57,grn_ii_buffer_clos:57,grn_ii_buffer_commit:57,grn_ii_buffer_open:57,grn_ii_cursor:33,grn_ii_cursor_clos:33,grn_ii_cursor_next:33,grn_ii_cursor_open:33,grn_ii_cursor_set_min:33,grn_ii_cursor_set_min_en:33,grn_ii_estimate_size_for_lexicon_cursor:33,grn_ii_estimate_size_for_queri:33,grn_illegal_byte_sequ:82,grn_improper_link:82,grn_in_values_too_many_index_match_ratio:41,grn_inappropriate_i_o_control_oper:82,grn_incompatible_file_format:82,grn_index_cursor:[22,43,45],grn_index_cursor_next:[40,58],grn_index_cursor_open:58,grn_info:[22,43,45],grn_info_typ:59,grn_init:[33,39,66,69,173],grn_input_output_error:82,grn_int32_value_float_valu:33,grn_interrupted_function_cal:[82,124],grn_invalid_argu:[61,64,65,82],grn_invalid_format:82,grn_invalid_seek:82,grn_io_open:117,grn_io_use_spars:33,grn_io_vers:41,grn_is_a_directori:82,grn_itoh:37,grn_ja_skip_same_value_put:40,grn_log_level:70,grn_log_level_pars:33,grn_log_level_to_str:33,grn_log_path:39,grn_logger:39,grn_logger_info:39,grn_logger_reopen:39,grn_logical_range_filter_en:33,grn_logical_range_filter_threshold:33,grn_lzo_error:82,grn_match_escal:[22,43,45],grn_mecab_chunk_size_threshold:33,grn_mecab_chunked_tokenize_en:33,grn_mutex:66,grn_network_is_down:82,grn_no_buff:82,grn_no_child_process:82,grn_no_locks_avail:82,grn_no_memory_avail:82,grn_no_space_left_on_devic:82,grn_no_such_devic:82,grn_no_such_device_or_address:82,grn_no_such_file_or_directori:82,grn_no_such_process:82,grn_not_a_directori:82,grn_not_enough_spac:82,grn_not_socket:82,grn_obj:[22,33,39,41,43,45,48,51,52,54,55,56,57,58,59],grn_obj_add_hook:56,grn_obj_append:61,grn_obj_cast:33,grn_obj_cast_by_id:61,grn_obj_check:61,grn_obj_clear_lock:[37,61],grn_obj_clos:[11,33,41,51,58,61],grn_obj_column:61,grn_obj_column_index:[48,58],grn_obj_column_scalar:48,grn_obj_column_vector:48,grn_obj_compar:61,grn_obj_compress_lzo:48,grn_obj_compress_zlib:48,grn_obj_db:52,grn_obj_decr:61,grn_obj_defrag:61,grn_obj_delete_by_id:[37,61],grn_obj_delete_hook:56,grn_obj_expir:61,grn_obj_fin:[51,54],grn_obj_flag:[48,54,64,67,70],grn_obj_flush:33,grn_obj_flush_recurs:33,grn_obj_get:61,grn_obj_get_element_info:59,grn_obj_get_hook:56,grn_obj_get_info:59,grn_obj_get_nhook:56,grn_obj_get_rang:61,grn_obj_get_valu:[37,61],grn_obj_id:61,grn_obj_incr:61,grn_obj_init:61,grn_obj_is_accessor:33,grn_obj_is_builtin:[37,61],grn_obj_is_function_proc:33,grn_obj_is_key_accessor:33,grn_obj_is_lock:61,grn_obj_is_normalizer_proc:33,grn_obj_is_proc_proc:33,grn_obj_is_scorer_proc:33,grn_obj_is_selector_proc:33,grn_obj_is_t:33,grn_obj_is_token_filter_proc:33,grn_obj_is_tokenizer_proc:33,grn_obj_is_tru:33,grn_obj_is_typ:33,grn_obj_key_float:67,grn_obj_key_int:67,grn_obj_key_norm:64,grn_obj_key_uint:67,grn_obj_key_var_s:67,grn_obj_key_with_si:64,grn_obj_lock:61,grn_obj_nam:61,grn_obj_own:33,grn_obj_path:[40,61],grn_obj_path_by_id:[38,61],grn_obj_persist:[48,64],grn_obj_prepend:61,grn_obj_reindex:33,grn_obj_reinit:61,grn_obj_remov:[33,37,61],grn_obj_renam:61,grn_obj_search:[33,63],grn_obj_set:61,grn_obj_set_element_info:59,grn_obj_set_fin:62,grn_obj_set_info:59,grn_obj_set_mask:61,grn_obj_set_valu:[61,65],grn_obj_table_dat_kei:37,grn_obj_table_hash_kei:[64,65],grn_obj_table_no_kei:[64,65],grn_obj_table_pat_kei:[64,65],grn_obj_type_to_str:33,grn_obj_unlink:[51,61],grn_obj_unlock:61,grn_obj_user_data:68,grn_obj_vector:[51,54,61],grn_obj_with_posit:48,grn_obj_with_sect:48,grn_obj_with_weight:48,grn_object_corrupt:82,grn_op_adjust:[11,63],grn_op_and:[11,63],grn_op_and_not:63,grn_op_but:11,grn_op_cal:11,grn_op_fuzzi:33,grn_op_or:[11,63],grn_op_push:11,grn_op_term_extract:33,grn_oper:[48,54,55,63,64],grn_operation_not_permit:82,grn_operation_not_support:82,grn_operation_timeout:82,grn_operation_would_block:82,grn_parse_query_flag:33,grn_pat_at:35,grn_pat_cursor_next:33,grn_pat_del:33,grn_pat_fuzzy_search:33,grn_permission_deni:82,grn_plugin_calloc:33,grn_plugin_charlen:70,grn_plugin_command_cr:[41,70],grn_plugin_error:70,grn_plugin_expr_var_init:[41,70],grn_plugin_fin:70,grn_plugin_fre:70,grn_plugin_get_nam:33,grn_plugin_get_ruby_suffix:33,grn_plugin_get_suffix:37,grn_plugin_get_system_plugins_dir:37,grn_plugin_init:70,grn_plugin_isspac:70,grn_plugin_log:70,grn_plugin_malloc:70,grn_plugin_mutex:70,grn_plugin_mutex_clos:70,grn_plugin_mutex_lock:70,grn_plugin_mutex_open:70,grn_plugin_mutex_unlock:70,grn_plugin_proc_alloc:70,grn_plugin_proc_get_var:[41,70],grn_plugin_proc_get_var_bool:33,grn_plugin_proc_get_var_by_offset:[41,70],grn_plugin_proc_get_var_int32:33,grn_plugin_proc_get_var_str:33,grn_plugin_realloc:70,grn_plugin_regist:[36,70],grn_plugin_win32_base_dir:[33,70],grn_plugin_windows_base_dir:[33,70],grn_plugins_dir:33,grn_post:[55,58],grn_proc:[22,43,45],grn_proc_creat:62,grn_proc_func:[51,62,70],grn_proc_funct:70,grn_proc_get_info:62,grn_proc_get_typ:41,grn_proc_set_selector:41,grn_proc_typ:62,grn_ptr:33,grn_ptr_init:[51,54],grn_ptr_value_at:[51,54],grn_pvector:[33,51,54],grn_qlog_path:39,grn_queri:39,grn_query_expander_tsv_synonyms_fil:180,grn_range_error:82,grn_rc:[46,47,48,49,51,52,53,54,55,56,57,59,60,61,62,63,64,65,69,70],grn_read_only_file_system:82,grn_resource_busi:82,grn_resource_deadlock_avoid:[61,82],grn_resource_temporarily_unavail:82,grn_result_too_larg:82,grn_retry_max:82,grn_search:[22,43,45],grn_search_optarg:[33,63],grn_select:128,grn_selector_func:41,grn_set_default_command_vers:49,grn_set_default_encod:53,grn_set_default_match_escalation_threshold:60,grn_set_lock_timeout:46,grn_snip:[39,41],grn_snip_clos:41,grn_socket_is_already_connect:82,grn_socket_is_already_shutdown:82,grn_socket_is_not_connect:82,grn_socket_not_initi:82,grn_stack_over_flow:82,grn_success:[46,47,48,51,52,54,61,69,70,82,173],grn_syntax_error:82,grn_t:33,grn_tabl:[22,43,45],grn_table_add:64,grn_table_at:[35,38,61,64],grn_table_column:64,grn_table_cr:64,grn_table_cursor:[22,43,45,58],grn_table_cursor_clos:65,grn_table_cursor_delet:65,grn_table_cursor_get_kei:65,grn_table_cursor_get_valu:65,grn_table_cursor_next:[35,65],grn_table_cursor_open:[35,65],grn_table_cursor_set_valu:65,grn_table_cursor_t:65,grn_table_dat_kei:64,grn_table_delet:[33,64],grn_table_delete_by_id:[33,64],grn_table_differ:64,grn_table_fuzzy_search:33,grn_table_fuzzy_with_transposit:33,grn_table_get:[38,64],grn_table_get_kei:64,grn_table_group:[33,64],grn_table_group_flag:[33,64],grn_table_group_result:64,grn_table_hash_kei:[55,64],grn_table_lcp_search:64,grn_table_pat_kei:64,grn_table_renam:64,grn_table_s:[11,64],grn_table_select:3,grn_table_setoper:64,grn_table_sort:64,grn_table_sort_asc:64,grn_table_sort_desc:64,grn_table_sort_flag:64,grn_table_sort_kei:64,grn_table_trunc:[37,64],grn_table_upd:64,grn_table_update_by_id:64,grn_text_len:54,grn_text_printf:41,grn_text_valu:54,grn_text_vprintf:41,grn_thread_:[22,43,45],grn_thread_get_limit:[33,66],grn_thread_get_limit_func:66,grn_thread_set_get_limit_func:[66,137],grn_thread_set_limit:66,grn_thread_set_limit_func:66,grn_thread_set_set_limit_func:[66,137],grn_tokenize_onli:33,grn_tokenizer_error:82,grn_tokenizer_query_open:39,grn_too_large_offset:82,grn_too_many_link:82,grn_too_many_open_fil:82,grn_too_many_open_files_in_system:82,grn_too_many_symbolic_link:82,grn_too_small_limit:82,grn_too_small_offset:82,grn_true:[51,61],grn_type:[22,43,45],grn_type_cr:67,grn_unknown_error:82,grn_unsupported_command_vers:82,grn_update_not_allow:82,grn_user_data:[22,43,45,62],grn_vector_pop_el:33,grn_void:33,grn_zlib_error:82,grndb:[22,33,41,43,117,142],grnline:214,grnslap:[22,43,142],grntest:[12,13,35,37,39],grnwrap:214,gro:[150,166],gronga:[180,189],gronnga:189,groo:[128,150],groogna:[31,38,39,128,170],groogna_default_command_vers:199,groonga1:78,groonga_cache_limit:40,groonga_cli:171,groonga_clone_dir:12,groonga_database_auto_cr:[39,40],groonga_dir:12,groonga_dist:39,groonga_get_thread_limit:66,groonga_log_level:40,groonga_log_path:40,groonga_n_record:40,groonga_org_path:12,groonga_path:146,groonga_query_log_path:[40,41],groonga_set_thread_limit:66,groonga_vers:37,groongau0000ful:193,grooon:150,group:[0,33,39,40,41,110,128,167],grroonga:189,gtar:29,gted:17,gtihub:37,guard:[33,184],gui:127,gurun:169,gurunavi:33,gzip:[28,39,198],gzip_typ:199,had:[17,33,182],hai:11,half:174,halfwidth:174,hana:213,hanako:97,hand:[0,33,128,147,164,167,211,216],handl:[33,40,41,51,82,147,191,193,194,209,211],hang:40,hard:194,hardcod:107,hash:[33,37,39,40,127,132,171,191],hash_index:217,hash_kei:[116,191],hash_tag:217,hat:28,hatak:[33,41],have:[0,6,7,16,17,28,33,41,50,52,72,79,82,86,88,100,110,116,128,131,132,134,147,163,170,171,172,174,176,180,185,188,190,192,193,194,195,198,199,203,211,214,218],haystack:11,hdd:146,head:[41,128,144,147,205],header:[29,33,39,40,41],heavi:[99,128,197],held:33,hello:[33,110,128,136,171,172,192,193],help:[16,17,23],hemispher:39,hendro:40,here:[6,7,8,17,18,21,28,30,31,44,47,50,51,52,54,66,69,70,72,76,80,81,82,83,86,88,90,91,92,93,97,98,99,100,101,102,103,107,108,109,110,111,113,114,116,118,119,122,123,124,125,126,127,128,130,131,132,134,135,136,138,139,140,143,145,147,149,150,151,153,155,158,159,160,161,163,164,166,167,168,170,171,173,174,176,180,181,182,183,184,187,188,190,191,192,193,194,199,205,212,216,221],hereaft:0,hex:[171,213],hidden:0,hide:40,hideki:[33,40,41],high:[0,76,128,169,183],high_scor:86,higher:[128,131],highight_ful:158,highli:[182,183,184],highlight:[33,158,159],highlight_ful:[22,41,43,152],highlight_html:[22,33,41,43,152,158],hino:40,hiragana:[163,170,171,177,187,193],hiro:33,hiroaki:33,hiroshi:[33,37,41],hirotaka:33,hiroyuki:33,histori:37,hit:[40,128,169,219],hmm:217,hobbi:173,hoge:[145,154],hold:[211,215],home:[12,28,193],homebrew:[12,22,23],homepag:146,hook:21,horikoshi:37,host1:181,host2:181,host:[6,7,8,21,37,145,146,181,185,205,218],host_name_or_ip_address:[205,218],hostnam:[39,145,146,147,148,205],hottolink:42,hour:[46,171,173,217],how_to_use_range_index:108,howev:0,html:[3,12],html_untag:[22,40,43,152],htpasswd:[147,199],http:[0,1,12,13,17,21,22,24,25,26,27,28,29,30,31,33,39,40,41,43,76,98,124,142,144,145,146,147],httpd:[12,22,24,25,26,30,33,37,38,39,40,41,43,47,124,137,142],httprewritemodul:147,hubeni:155,human:[88,132],hypertext:[22,210],hyphen:[132,214],i18n:[3,15],i386:[12,24,37],i686:146,ichii:37,id_column:48,idea:128,identifi:[86,97,195],ideograph:33,idf:[41,182,183,184],ieee:195,ifexist:100,iff:214,ignor:[33,37,39,40,41,52,97,113,124,128,138,170,180,191,193],ii_buff:57,ill:206,illegal_byte_sequ:205,illustr:212,imagin:[128,212],immedi:[0,33,124,147],implement:[17,33,37,39,41,42,86,107,110,125,126,128,147,148,155,163,171,184,185,191,197,198],implemnt:198,improper_link:205,in_valu:[22,33,41,43,152],inaccur:39,inada:40,inappropriate_i_o_control_oper:205,inc:[33,41],includ:[6,16,24,33,40,41,79,86,88,90,107,109,110,112,113,116,117,118,119,122,125,126,128,135,138,153,166,171,180,183,184,193,199,214],incompat:[33,39,40,41],incompatible_file_format:205,incorrect:41,increas:[0,6,7,33,66,76,114,125,128,130,138,139,155,181,184,193,194],increment:81,incres:41,independ:[0,108],index_1:127,index_2:127,index_blog:216,index_column:[33,41,99],index_column_nam:127,index_column_name_with_table_nam:127,index_friend:213,index_messag:216,index_n:127,index_point:213,index_tag:213,index_titl:216,indexblog1:216,indexblog2:216,indexbuf:48,indic:[40,138,155,173,214,219],infinit:[33,37,39,41,132],info:[33,104,105,145,147,181,184],inform:[0,2,17,22,33,38,39,40,47,51,88,116,118,122,125,126,127,128,173,174,210,213],inherit:40,inhibit:38,init:[28,39,40,41,62],initi:[33,37,39,41,51,69,70,150],innodb:0,input:[37,40,50,79,100,128,171,177,187,188,189,190,205,214],input_file_nam:79,input_output_error:205,input_typ:100,insensit:[128,163,181],insert:[39,166,214],inspect:[33,40,41,116,127],inst:40,instal:[0,3],instantli:[0,166],instead:[21,23,26,28,31,33,37,39,40,41,51,70,85,110,122,128,130,132,145,147,155,158,159,166,169,170,171,174,176,181,191,203,205,220],instroduc:40,insuffici:211,int16:[35,40,116,127],int32:[33,39,40,41,76,86,90,110,116,127,128,131,132,135,140,153,155,164,170,171,182,183,184,187,188,190],int64:[40,41,110,116,127,128],int8:[35,40,41,116,127],integ:[33,76,82,116,128,137,145],integr:[21,39,40,211],intel:146,intend:[39,41,167,170,216],intens:147,interact:[205,214],interest:[3,33,181,214],interfac:[39,150,178,214],intern:[33,38,40,41,47,50,51,166,211],internet:[0,169],interpret:[12,38,170],interrupted_function_cal:205,introduc:[3,33,41,147],introduct:[3,15],introspect:39,intuit:219,inv_res_column:146,inv_thread_column:146,invalid:[33,37,39,40,41,53,70,99,128,132,150],invalid_argu:205,invalid_format:205,invalid_seek:205,invers:[41,182,184],investig:[40,209,212],io_flush:[22,33,43,77],ipa:26,ipad:[26,193],iptabl:[199,218],is_a_directori:205,is_anim:211,is_removable_t:134,is_stop_word:[33,41,136,192],isn:[6,7,8,24,28,33,39,40,41,44,51,52,66,79,83,88,99,100,108,110,116,125,126,127,128,131,132,134,145,147,166,170,180,185,187,188,189,193,205],iso:171,isob:40,isssu:40,issu:3,itagaki:35,item:[33,44,91,92,93,128,131,132,141,163,187,188,190,199,203],item_:131,item_dataset:[149,190],item_exampl:187,item_queri:[131,149,187,188,190],items_index:163,iter:[33,171],itself:[40,41,76,138,170,180,181],ivh:[24,26],iwai:[38,39,40],iwamatsu:33,jacob16bit:33,jame:219,jan:217,januari:[150,171],japan:[97,187,212,218,221],japanes:[0,2,17,19,39,41,170,171,177,187,193],jason:219,javascript:[12,22,37,147,148,210,218],jeff:219,jekyl:12,jemalloc:41,jennif:219,jersei:217,jessi:[12,22,23],jinja2:12,jiro:213,job:146,john:[97,219],join:2,joseph:219,jqueri:41,json:[33,35,37,39,41,50,76],jsonp:[33,150],juli:33,juman:26,jumand:26,jun:[33,41],just:[6,7,17,21,23,24,25,26,28,29,30,31,33,37,39,40,41,47,52,61,69],kagami:33,kakesa:33,kana:[131,149,177,187,188,190],kanako:40,kanji:[177,193],kashihara:41,katagiri:40,katakana:[131,163,174,177,187,193],kawada:41,kawaji:39,kazuhiko:[39,41],kazuhiro:40,keep:[32,37,47,51,76,172,183,184,193],kei:[0,12,22,32,33,38,39,40,41,44,61,64,65,76,86],ken:213,kenichi:[35,37],kentaro:40,kernel:[39,194],key1:86,key_1:127,key_2:127,key_column:48,key_index:134,key_length:205,key_n:127,key_nam:[110,128],key_norm:[33,39,132,174],key_siz:64,key_typ:[64,127],key_with_si:[132,170,171,219],keyboard:128,keybuf:64,keyr:[25,39],keys_zon:147,keyword1:[39,158],keyword2:[39,158],keyword:[33,39,40,54,108,128,132,158,159,164,166,170,182,183,184,189,213,214,216],keyword_cont:54,keyword_s:54,kfc:176,kind:[0,195,212,214,220,221],kinjir:213,kisk:39,kitaiti:33,klose:33,know:[33,99,128,143,193,212,213,217],knowledg:0,known:[0,40,107,166,171,182,214,218],koi8r:[28,39,145],koji:39,konishi:40,korea:212,kosuk:40,kouhei:40,kuriyama:[33,41],kwic:166,kytea:[28,39,40,138],label1:[41,110,128],label2:[110,128],label:[33,40,41,86],label_1:128,label_2:128,label_n:128,lager:40,lake:176,langasek:33,languag:[0,1,3],larg:[0,33,39,132,143,170,171,185,191,193,194,199,211],larger:[33,41,76,94,110,128,145,151,166,190,191,194,205],larget:124,largetext:191,last:[33,39,51,138,193],last_modifi:217,lat:146,latenc:146,later:[33,37,39,40,41,86,107,128,145,158,159,160,167,174,181,185,214],latest:[2,3,6,7,8],latin1:[28,39],latin:145,latinov:33,latitude_in_degre:171,latitude_in_degreexlongitude_in_degre:171,latitude_in_msec:171,latitude_in_msecxlongitude_in_msec:171,latter:[44,174,180],launchpad:[12,30,41],layer:33,layout:12,lc_messag:17,lcov:14,lead:[128,166,214],leak:[33,35,37,39,40,41,87,130],leakag:220,leaner:151,lear:190,learn:[40,110,128,131],learner:[22,41,43,142,149],least:[33,39,83,167,170,194,209],left:[33,55],left_hand_side_el:33,leftmost:171,lemon:44,length:[39,70,211],let:[22,76,107,110,128,134,155,172,193,210,211,213,214,216],letter:174,level:[33,39,40,41,70,104,105,145,147,151,173,205,212],lexcon:214,lexicon2:216,lexicon:[22,33,98,123],lexicon_t:146,lgpl:42,lib:[35,40,110,118,119,122,143,147,203],libedit:[26,28,33,37,39],libev:[25,28,30,38],libgcc_s_sjlj:41,libgroonga:[20,214],liblzo2:[25,30],libmecab:[12,25,30],libmemcach:14,libmsgpack:[25,30],libstemm:41,libtool:[6,33],libwinpthread:41,libzmq:[25,30],licens:[12,39,41,42],life:33,lifecycl:21,light:[90,115,135,197],like:[2,22,28,33,41,48,76,88,90,110,115,117,128,131,135,145,147,155,163,167,169,170,171,176,181,183,184,187,193,197,199,210,212,217],limit:22,line:[6,7,8,14,17,18,21,28,31,33,37,39,41,51,79,127],line_cont:79,line_numb:79,link:[33,39,41,128,170,171,211,212,218],linux:[3,5],lion:39,listen:[39,147,199,205,218],liter:[37,39,40,158,159,166,170],live:[132,217],lldb:[6,7],llt:138,load:[22,33,35,37,38,39,40,41,43,44],loaded_valu:126,local:[0,6,7,12,17,18,28,145,147,171],localhost:[12,124,144,145,146,147,150,178,199,205],localstatedir:23,location_in_groonga:79,location_in_input:79,location_str:217,lock_acquir:[22,33,43,77],lock_clear:[22,33,41,43,77,85,101],lock_releas:[22,33,43,77,101],log1:86,log:[12,22,23],log_level:[22,33,43,77],log_put:[22,33,43,77,104],log_reopen:[22,43,77,104,105],log_repoen:39,logal:21,logger:[33,39],logic:[33,39,107,109,110,111,112,128],logical_:[108,185],logical_count:[22,33,43,77],logical_filt:109,logical_paramet:[22,33,43,77],logical_range_filt:[22,33,43,77,108],logical_select:[22,33,43,77],logical_shard_list:[22,33,43,77],logical_table_nam:[110,185],logical_table_remov:[22,33,43,77],login:194,logo:39,logrot:[33,39,41],logs_20150203:[107,109,112],logs_20150204:107,logs_20150205:107,logs_20150801:111,logs_20150802:111,logs_20150814:185,logs_20150815:185,logs_20150930:111,logs_message_index:181,logs_timestamp:123,logyyyymmddhhmmss:150,london:155,longer:[42,51,101],longest:[37,64,171],longitude_in_degre:171,longitude_in_msec:171,longitudexlatitud:40,longtext:[44,55,116,127],look:82,loop:[33,39,41],loose_items_index:163,looseitem:163,lot:40,lower:[128,132,138,181,214],lru:83,lte:138,lucid:[35,40],lunch:0,lz4:23,lzo:[37,39,40,41,87],lzo_error:205,m64:29,mac:[22,23],machin:[41,145],macport:[22,23],macro:[33,37,40,41],made:[33,37,39,214],madrid:155,mai:[0,20,28,32,33,37,39,40,41,47,48,52,66,79,88,90,99,101,102,103,107,113,115,124,125,126,127,130,131,132,134,135,143,147,170,171,180,181,182,183,184,191,193,194,199,213,216],mail_column:146,mailarch:12,main:[12,25,66],mainli:[41,217],mainlin:[33,41],mainstream:0,maintain:193,mainten:193,major:23,make:[0,3],makecach:[24,39],makefil:[7,8],makoto:33,malfunct:33,malloc:41,manag:[0,18,21,28,44,51,52,81,94,116,124,141,143,145,147,166,180,191,199,218],mani:[0,3,17,28,33,37,40,41,66,76,99,107,109,110,112,128,132,134,136,138,147,149,166,170,171,181,182,183,184,189,191,194,197,198,199,203,211,212,214],manipul:169,manner:[128,214],manual:[22,41],map:[33,37,44,86,94,107,128,173,187,194,209],map_hugetlb:37,mariadb:[40,41],mark:[33,38,41,132,174,192,193,203,217],marku:39,markup:[16,33],masafumi:[33,40,41],masaharu:[38,39,40],masahiro:[35,40,41],masatoshi:33,massachusett:217,master:[17,21,147],match:23,match_column:[22,33,40,41,76,95],match_escalation_threshold:[28,35,51],matsuu:35,matthia:33,matur:[1,107,203],maverick:37,max:[33,37,39,40,41,44,47,65,66],max_command_vers:[80,130,147,178,205,214,218],max_concurr:144,max_nfthread:66,max_siz:65,max_total_s:116,max_tp:144,max_valu:194,maximium:128,maximum:[32,33,81,107,110,116,128,153,171,182,183,205,209,211,214],mcdonald:176,mdev:33,mean:[28,33,39,40,41,44,46,50,54,55,61,70,76,82,88,94,99,101,102,103,107,109,110,112,116,117,123,124,128,130,131,138,141,145,147,167,170,171,173,174,176,177,180,181,183,184,185,187,193,194,209,211,212,214,221],meaning:33,meaningless:[44,181],measur:[0,37],mecab:[0,12,24,25,26,27,28,30,33,37,39,40,41,42,193],mecab_new2:39,mecab_strerror:41,mechan:[33,39,147,199],media:41,median:41,medium:[23,24,25,26,30,31,217],meerkat:37,meet:[41,217,221],meetup:33,memcach:[0,1,22,33,196],memo1:182,memo2:182,memo3:182,memo4:182,memo5:182,memo6:182,memo7:182,memo:[33,127,161,164,168,182,183,184,192],memo_index:41,memori:[22,23,24,25,26,30,31,33,35,37,39,40,41,47,51,70,87,94,99,130,132,181],memos_cont:192,memos_content_index:127,memos_tag:161,memset:33,mention:167,menu:[31,128],mercuri:12,merg:[0,17,39],meridian:155,messag:[6,7,12,23],message_index:[183,184],message_pack_install_prefix:23,messagepack:[28,33,37,38,39,50],met:167,meta:[39,88],metadata:[39,125,126,182,183,184,217],meter:[155,221],method:[33,40,127,148,177,187,193,214],micro:[22,171,210,211],microsecond:[173,211],microsoft:[8,31,33],midnight:171,migrat:[41,110,128,170,171],mike:97,million:32,millisecond:[46,150,171,211,221],mime:[33,199],min:[33,39,41,46,65],min_siz:65,minagawa:[40,41],mind:[32,185],mine:0,mingw:12,minim:[147,153],minimum:[24,25,26,30,70,110,128,171,203],minut:[171,173,187,188,217,221],mip:33,mismatch:41,miss:[33,37,39,40,41,180],mitani:41,mitsuhiro:35,mitsuo:40,mix:[33,76,131,148,193],mizuhara:33,mkdir:98,mkostemp:41,mktime:33,mmap:[22,40,207],mobil:0,model:[41,137,145,205],modern:217,modif:33,modifi:[28,209,218,220],modul:[0,22,33,35,41],moero:213,monei:213,monitor:[24,25,26,30,40],monkei:211,month:[33,171,173,185,213,217],montywi:38,more:[0,6,7,28,32,33,39,40,41,51,70,72,76,88,99,110,123,128,131,132,134,143,145,147,151,161,163,164,166,167,170,171,172,177,180,181,182,183,184,185,188,189,191,192,193,194,195,199,205,211,214,217,219],moreov:221,moritapo:213,moritar:216,morn:172,morpholog:[0,28,171,193],most:[33,41,51,55,76,77,110,128,170,171,181,183,193,199,211,214],motoi:40,move:[16,31,33,37,39,86,94],movi:213,mpaa:153,mpisel:33,mrb:[33,110],mrubi:[6,7,8,12,33,40,41,125,126,185],msec:[37,46],msg_control:33,msg_controllen:33,msg_flag:33,msg_id:12,msghdr:33,msgpack:[33,178,199,205],msvc:33,msyql:76,mte:42,much:193,multi:[0,28,33,37,41,147,198],multibyt:37,multilin:181,multipl:[0,22,33,39,40,41,44,47,76,88,97,107,110,113,123,124,127,128,136,138,150,158,161,164,170],multipli:171,multithread:[33,94,124],munin:[23,24,25,26],murakami:[33,40,41],museum:217,musha:33,music:[173,213],must:[6,7,8,28,33,41,44,47,48,52,54,55,61,69,70,72,86,88,90,94,97,99,100,101,102,103,107,109,110,112,117,124,128,131,132,135,137,143,150,151,160,163,167,168,170,171,181,183,184,185,190,194,199,205,209,211,214,218],mutex:[40,70],mutex_lock:66,mutex_unlock:66,mxcl:12,myisam:0,mysql:[0,24,25,26,30,33,41,42,76,113,128,158,159,166,174,180,182,185,189],n_builtin_type_nam:52,n_entri:83,n_hit:128,n_kei:64,n_keyword:54,n_like:[79,110,128,170,171,194],n_max_thread:137,n_queri:[80,130,147,178,205,214,218],n_record:116,n_result:64,n_tabl:51,n_var:70,nagano:41,naist:193,naiv:212,nakai:40,nakamura:33,name1:171,name2:171,name:[0,17,22,33,37,38,39,40,41,43,44,48,51,52,53,54,61,62,64,67,70,79,84,86,87,88,89],name_1:[214,218],name_2:[214,218],name_s:[48,51,54,61,62,64,67,70],name_t:116,namebuf:[48,61],nanosecond:[79,173],naoina:[39,40],naoya:[33,40,41],narg:54,narrow:[22,40,41,99,128,210],narwhal:37,natanael:33,natti:37,ncpu:27,nearbi:0,necessari:[37,214],need:[0,5,6,7,8,17,18,21,24,28,29,31,33,37,39,41,44,47,50,51,54,66,69,76,79,94,99,101,107,108,110,111,113,118,122,124,128,132,134,138,140,143,145,147,148,150,159,163,166,170,171,174,177,178,180,181,182,183,184,185,187,188,190,191,193,194,199,202,205,209,214,216,219,220,221],needl:11,needleess:39,needless:[33,38,39,40],neg:[33,39,46,51,62,70,82,128],neglig:41,neighbor:0,neither:99,neolog:193,neologd:193,nest:[22,33,39,40,41,116,210],nested_reference_column:128,net:[2,12,211,212,213,214,218,221],netbsd:40,netinet:33,network:[39,199,205,213],network_is_down:205,never:[28,33,108,131,181],new_column:44,new_limit:66,new_release_d:12,new_seri:86,new_tag:86,new_valu:128,new_vers:12,newark:217,newer:[33,41],newid:86,newli:[0,41,47,140,166,172],newlin:[33,37,38],newnam:86,newvalu:48,next:[0,33,41,55,62,109,128,213,214],nfkc51lexicon:174,nfkc:174,nfthread:66,nginx:[24,25,26,30,33,39,40,41],nginxhttpstubstatusmodul:41,ngx_http_proxy_modul:147,nice:172,night:[172,220],niho:163,nihon:[163,187],niku:41,nine:214,nippon:187,nise_nab:41,no_buff:205,no_child_process:205,no_kei:[116,191],no_locks_avail:205,no_memory_avail:205,no_space_left_on_devic:205,no_such_devic:205,no_such_device_or_address:205,no_such_file_or_directori:205,no_such_process:205,noarch:[24,26],nobuhiro:33,node:[12,21,24,33,39],nogpgcheck:39,nois:[188,193],nokubi:41,nomal:[39,128,147],nomral:170,non:[33,39,40,79,128,143,170,171,193],none:[28,101,102,103,110,113,123,128,132,136,138,145,147,149,205,216],nonexist:[33,41,44,91,92,110,128],nonexistent_command:33,nor:128,noraml:138,normal:[22,24,25,26,30,33,38,39,40,41,43,44,50,51,52,66],normali:195,normalizeauto:158,normalized_text:113,normalizer_1:127,normalizer_2:127,normalizer_list:[22,41,43,77],normalizer_n:127,normalizer_nam:127,normalizer_name_1:127,normalizer_name_2:127,normalizer_name_n:127,normalizerauto:[33,110,113,114,123,127,128,132,133,134,136,138,158,159,163,164,166,170,171,172],normalizernfkc51:[114,127],normalizs:132,normallexicon:174,normalzi:158,northern:39,nosuchfileordirectori:33,not_a_directori:205,not_enough_spac:205,not_socket:205,notat:[39,40,171],note:[0,26,33,37,39,40,41,70,97,99,107,109,117,124,125,126,128,132,145,147,150,160,168,171,194,199,209,211,212,214,218],noth:[33,50,66,99,128,143,145,147,168,187,189],notic:[33,104,105,145,147,183,184],notif:[40,173],notifi:124,now:[6,7,8,17,18,22,26,28,33,38,41,43,44,76,87,110,125,126,152],nroonga:[21,164,216],nsi:12,nsubrecs_column:48,nterm:84,nul:[37,70,193],number1:171,number2:171,number:[0,23],number_liter:33,numer:[22,33,170,171,210],nvar:62,o_binari:39,obata:[33,35,37,40],obj:[48,52,54,56,59,61,62,63,68,84],object1:171,object2:171,object:[33,37,39,41,44,47,51,52,61,64,70,72,76,90,96,99,101,102,103,113,114,115,116,117,123,127,128,130,135,138,139,143,166,168,169],object_corrupt:205,object_exist:[22,33,43,77],object_inspect:[22,33,43,77],object_remov:[22,33,43,77],objnam:[85,96],obsolet:[33,177,203],obtain:70,obvious:211,occur:[33,39,40,41,51,55,79,87,90,131,135,180,194,220],occurr:184,ocelot:[37,40],octal:171,octob:41,odd:171,off:[37,41,147,193],offici:[8,12,24,26,37,164],offlin:[22,33,38,39,40,41,43],offset:[33,39,54,55,56,61,64,65,70,95],often:[99,153],ohzeki:41,okapi:[182,184],old_releas:12,old_release_d:12,older:[33,217],oldvalu:48,omit:[37,79,99,101,102,103,118,119,122,123,128,138,155,178,187,191,214],onc:[37,39,41,69,128,174,212,216,217],oneir:[37,40],oneself:41,onga:166,ongaeshi:[33,39,40],onigmo:[33,41,181],oniguruma:33,onli:[0,6,7,17,21,23,24,25,26,30,31,33,39,41,44,47,50,61,69,70,82,83,88,91,92,94,97,98,99,100,101,102,103,108,109,110,111,115,116,117,118,119,122,123,124,125,126,128,130,131,132,134,137,138,140,143,145,147,148,153,158,159,160,163,164,166,167,170,171,172,174,176,180,181,182,183,184,185,191,193,199,203,211,214,216,219,221],onlin:[22,33,43],onto:194,ooo:191,opaqu:[47,205],opear:171,open:[21,33,37,39,40,47,51,52,55,100,117,134,143,158,173,174],open_tag1:158,openbsd:33,oper:[22,28,33,39,40,41,43,54,55,86,90,102,115,128,135,163,169],operation_not_permit:205,operation_not_support:205,operation_timeout:205,operation_would_block:205,optarg:[52,63],optim:[33,41],optimum:147,option:[6,7,8,18,24,25,26,27,28,29,30,33,37,38,39,40,41,52,79,83],oracl:[22,23],orangain:40,order:[0,33,39,40],org:[12,17,24,25,26,27,28,29,30,31,33,41,76,98,146,147,160,211,212,213,214,218,221],orient:[0,166,211],origin:[1,17,40,41,50,79,98,128],orilldown:212,orphan:40,osanai:[33,41],osdn:[2,12,33],otehr:132,other:[0,3,17,22,23],other_t:33,otherwis:[21,47,51,61,70,87,90,91,93,97,101,102,103,115,123,124,127,140,153,161,164,167,171,214],ouput:40,our:[2,17,185],out:[13,23,24,25,26,30,31,41,167,216],out_gqtp:146,out_http:146,out_loc:146,outdat:41,output:3,output_column:[33,39,40,41,76,86,95],output_pretti:80,output_typ:[148,178],outsid:41,over:[0,33,39,40,41,158,209,218],overcom:107,overcommit:194,overcommit_memori:39,overflow:[33,37,40,41,211],overhead:[41,203],overrid:[28,44],overwritten:221,own:[0,33,39,54,107,171,211],owner:[33,40,147],pack:23,packag:[8,12,17,22,23,24,25,26,27],page:[2,17,22,33,39,40],pagerank:[182,183,184],pagin:214,pai:128,pair:[33,116,128,180,187,188,189,190,211],pair_dataset:[149,190],pair_queri:[131,149,187,188,190],pakcag:26,palallel:12,pangolin:[30,39],paragraph:214,parallel:[0,6,7],paramet:[22,31,33,37,38,39,40,41,43,46,47,48,49,51,52,53,54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,80,81],parameter1:147,parameter_name1:148,parameter_name2:148,parent:[110,128,147],parenth:100,parenthes:214,pari:155,park:217,parker:33,pars:[41,53,54,169],parser:[170,181],part:[0,28,79,107,109,112,128,166,193,211,214,217],partial:[11,33,185,187,189,205],partit:107,pass:[6,7,8,12,33,37,38,52,66,124,137,147,155,164,170,171,181,214,218],past:39,pat:[38,39],pat_kei:[116,191],path:[12,18,23],patiricia:33,patprefix:219,patricia:[22,33,37,39,40,127,132,170,171,191,210,214],patsuffix:219,pattern:[0,33,79,170,171,181],pcre:[39,147],penalti:40,pend:33,pentium:146,peopl:[0,193],per:[0,37,39,107,141,147,150,193],percentag:130,perfect:[0,184],perfectli:108,perform:[0,33,37,40,41,128],period:33,perl:147,permiss:[28,41],permission_deni:205,persist:[22,43,64,88,90,132,133,135,141],person:[22,23],pgp:12,pgroonga:[33,182,185],php:[12,33,39,41,197],phrase:39,physic:84,pid:[28,33,34,37,145],pikonyan:213,pip:18,pipermail:41,piro:41,pkg:[24,28,29,33,35,37,39],place:[2,28,217],placehold:40,plai:[0,220],plain:[33,160],plan:219,platform:[17,23],player1:86,player:[86,135],pleas:[2,3,17,19,28,33,41,52,182,183,184,203,214],pluggabl:0,plugin:[13,17,22,23,24,25,26],plugin_1:127,plugin_2:127,plugin_n:127,plugin_nam:127,plugin_name_1:127,plugin_name_2:127,plugin_name_n:127,plugin_regist:[22,43,77,98,99,108,110,111],plugin_unregist:[22,33,43,77,99,118],poedit:17,point:[0,33,37,38,40,55,70,76,90,124,150,155,156,157,161,170],pointer:70,pole:155,polici:40,pool:66,poor:180,popular:[33,76,110,128,145],port:[27,40,41,42,145,146,147,148,150,178,199,203,205,218],port_numb:[202,205,218],portabl:[37,40,147],posit:[41,55,70,76,82,88,127,128,136,137,138,193,214],posix:[33,171],possibl:[33,37,148,195],post:[12,33,39,40,41,55,110,128],posted_bi:217,postfix:[107,109,110,112],postgresql:[0,166,185],potenti:40,power8:41,power:[128,181],poyonga:197,ppa:[12,22,23],practic:[0,41,211],pragma:128,precis:[0,12,30,33,39,79,187,193,195,214],preconfigur:[24,25,26,30,203],predic:33,predict:[132,191,193],prefer:[33,150],preferenti:94,prefix:6,prefix_rk_search:[22,33,43,152],prefix_search:[37,131],prepar:[22,147,159,166,210],prepend:[147,170,171],press:17,pretti:[22,33,41,43,77],prevent:40,previou:[39,40,41,137,181,182,203,211,212,216],price:211,primari:[22,100],print:[22,33,41,43,77],prioriti:[0,128,187],privileg:[40,218],probabl:131,problem:[33,37,39,40,47,117,147,170,171,183,193,211],proc:[24,25,26,30,33,40,56,62,68,70,94,128],proc_database_unmap:94,proc_object:117,procedur:[39,40,163],process:[0,17,22,23,24,25,26,30,31,33,37,39,40,41,43,48,52,77,79,82,90,99,102,118,122,123,130,132,135,141,145,147,170,171],processor:[0,24,25,26,30],product:[33,109,147],profil:217,program:[1,39,40,88,145,147,150,151,171],progress:173,project:[0,3,12,13,19,21,41,171,203],promot:40,prompt:[31,39,178,214],pronounc:169,proonga:197,proper:[41,79,107,217],properli:[33,39,170,218],properti:[30,127,173],propos:[128,189],protocol:[0,1,22,24,25,26,30,33,39,41,82,145,146,147,148,178,196,197,199],provid:[0,1,21,24,25,26,30,33,39,41,45,51,66,69,88,108,110,142,145,147,150,155,164,178,180,181,182,184,185,187,188,189,190,191,198,199,203,212,214,218],proxy_cache_path:147,proxy_cache_valid:147,proxy_pass:147,pseudo:[22,33,39,40,41,43,48,72],pthread_:40,ptr:[35,70],pub:[12,24],publish:[12,41],pull:12,pure:193,puropos:138,purpos:[40,76,107,164,214,218],push:[17,51],put:[17,33,41,148,170,177,181,184,194],python:[12,18,197],q_cond:66,q_mutex:66,quantal:39,query_expand:40,query_expans:[37,40],query_flag:39,query_s:54,query_str:40,queryexpandertsv:[22,39,40,43,118,119,122,164,179],question:[33,216],quetzal:39,quickli:[109,128,172],quiet:205,quit:[12,22,43,77],quiz:213,quot:[40,100,113,138,170,171,214],quotat:[113,138],quotient:171,rab:[212,214,221],raccoon:213,radious_or_point:156,radix:171,rake:12,rakutan:216,ram:146,ran:187,rand:[22,43,152],rand_max:165,random:221,rang:[22,33,39,40,41,72,88,90,108,128],range_error:205,range_filt:[22,41,43,77],range_index:33,ranguba:[41,76],rank:[41,214],rare:[33,40],rate:[40,153],rather:[33,76,88,128,172,181,182,183,184,193,197],raw:[21,40],rch:138,rdbm:[33,145],rdiscount:12,reach:194,read_only_file_system:205,readabl:[38,41],readi:[18,28,39,110,128,170,171,181],readm:[12,40],real:[0,44,66,128,130,166,194,195],real_nam:[44,91,92,93],realli:[110,128,170,171,220],realtim:[131,190],reason:[39,128,132,143,171,181,187,193,199,203,209,212],rebuild:33,recal:[0,169,193],receiv:[0,17,51,145,147,150,151,171,202,205],recent:83,recogn:0,recommend:[6,7,8,23,24,25,26,30,31,33,41,44,79,128,161,170,171,181,193,194,197,199,203,214,218],reconstruct:41,record:[0,22,32,33,37,39,40,41,43,44,54,55,61,64,76,86,97,98,100,107,110,116],record_1_column_1:128,record_1_column_2:128,record_1_column_n:128,record_2_column_1:128,record_2_column_2:128,record_2_column_n:128,record_id:33,record_n_column_1:128,record_n_column_2:128,record_n_column_n:128,recov:[33,52],recover:[52,143],recreat:[33,123],recrod:128,rect:[39,155,156],rectangl:[0,37,39,55],recurs:[6,7,8,12,13,44],recycl:41,red:3,redcloth:12,redhat:[28,37],redmin:41,reduc:[0,33,39,40,94,108,143,177,181,188,191,199,203,220],refer:[0,22,33,37,40,41],referenc:[39,40,97,99,128,132,134,212],reference_column:[33,41,128,134],reference_vector_column:40,referenced_table_nam:99,referencedbycolumn:134,referencedbyt:134,referencet:134,refin:[0,40],refresh:213,regard:[40,148,170],regardless:33,regexp:[33,41],regexplexicon:[123,181],region:[176,221],regist:[0,22,33,39,40,43,44,70,77,98,107,108,109,110,111,113,118],regress:[33,40,41],regular:[22,33,43,147,150],regular_express:181,reindex:[22,33,43,77],rel:[37,41,128],relat:[0,2,3,13,21,22,24,25,26,28,30,33,37,39,40,41,61,66],relationship:[22,39,90,135,210,211],relax:194,releas:[6,7,8,12,24,26,31],relev:[0,214],reload:180,remain:[40,94,173,181],remaind:171,rememb:128,remot:[22,145,205,210],remov:[6,7,29,33,37,38,39,40,41,52,61,86,97,117,122,134,136,147,181,192,211],remove_blank:113,remove_tokenized_delimit:113,removep:61,renam:[33,37,39,40,44,86,90,135,191,214],reopen:[37,123],rep_gqpt:146,rep_gqtp:146,rep_http:146,rep_loc:146,repair:38,repeat:[0,17],replac:[33,41,44,149,151,171,181,220],replai:147,repli:[216,217],replic:182,replied_to:217,replied_us:217,replies2:216,replies_cont:216,reply_to:216,repoforg:[24,39],report:3,repositori:[3,4],repres:[54,145,169,171,181,211,213,220],represent:[17,53,54,76],reproduc:40,request_cancel:[22,41,43,77,81],request_id:[33,81,124],requir:[0,21,24,25,26,28,29,30,31,33,37,39,40],reqular:150,res1:64,res2:64,res_column:146,res_tabl:146,rescord:169,reset:33,resiz:70,resolut:[22,210],resolv:[22,37,39,43],resourc:[41,51,52,69],resource_busi:205,resource_deadlock_avoid:205,resource_temporarily_unavail:205,resours:47,respect:[39,211,217,221],respons:[0,33,37,39,40,41,47,82,86,109,124,128,130,150,199,205],rest:[70,180],restart:[33,118,122,180,194],restaur:0,restrict:[39,40,199,218],result:[0,11,17,22,33,37,38,39,40,41,64,79,80,109,110,113,124,125,126,128,143,148,150,151,155,164,166,167,171,174,177,178,180,181,187,188,190,191,193,210,211],result_too_larg:205,retri:46,retriev:[0,128,171],retry_max:205,return_cod:[79,173],reus:[33,191],reveal:0,revers:[12,22],rewrit:[33,42],rid:57,rid_max:58,rid_min:58,right:[33,41,55],right_hand_sid:33,ringtail:40,risk:41,rlimit_nofil:[40,173],role:[0,164],romaji:163,roonga:[170,171,189],root:[33,40,145,147,148,218],rose:211,rotat:[33,145],roughli:211,round:37,row:[0,166],rpm:[12,24,26,33,37,38,39,40,41],rpmforg:24,rroonga:[21,33,40,41,47,158,159,161,164,167,168,169,182,216],rubi:[0,6,7,8,12,21,33,39,41,42,76,125,126,158,159,168,169,181,182,197],ruby19:39,ruby_ev:[22,40,43,77],ruby_load:[22,40,43,77],ruby_script:125,rubygem:39,rubyinstal:8,rule:[22,41,43,110,128,138],run:3,runtim:33,rurema:41,ryo:33,ryoji:41,ryunosuk:33,s10:41,sae:[131,188],saer:[131,188],saerc:[131,188],saerch:[131,188],sai:[171,214],sako:33,salamand:[40,41],same:[33,40,46,51,54,76,79,81,86,100,109,110,118,122,123,124,128,147,148,164,170,171,174,181,182,183,184,185,188,197,199,211,214,216,221],sampl:[39,97,98,110,111,118,119,122,128,146,147,150,151,153,155,158,159,160,161,163,164,166,167,168],san:155,satisfi:[33,40,100,134],sato:33,satoh:37,satoshi:41,sauci:[40,41],save:[12,41,150,209,216],sbin:27,scalar:[22,33,43,44,72],scale:[0,199],scan:[14,33,158,159,163,170,171],scan_build:14,schema:[22,33,43,44,77,86,97,98,107,110],scope:33,score1:11,score2:11,score:[33,39,76,90],score_1:150,score_2:150,score_adjust_express:128,score_adjust_expression1:128,score_adjust_expression2:128,score_column:48,score_funct:182,score_function1:182,score_function2:182,score_function3:182,score_n:150,score_valu:33,scorer:[22,33,43,95,99],scorer_tf_at_most:[33,182],scorer_tf_idf:182,scr:146,script:[21,22,28,33,39,40,41,43,54,110],sea:[138,187],sear:187,searc:187,search_result:128,searchabl:[33,172],searchu0000http:193,sebastian:41,sec:46,second:[79,88,124,128,130,155,170,171,173,182,195,199,211,214,216,217,221],secret:12,secsion:79,section:[3,17,20,21,23,24,25,26,27,28,29,30,31,33,40,41,44,45,48,57,70,76,77,83,86,88,90,91,92,93,94,99,100,101,102,103,107,108,109,110,111,112,113,115,116,117,123,124,125,126,127,128,130,132,134,135,136,137,138,140,142,143,145,147,152,155,159,170,175,180,181,182,183,184,186,187,188,190,194,205,212,216,217],secur:[22,33,41],sed:[33,37,39],see:[0,1],segment:[39,41,84],segv:40,select:[22,33,35,36,37,39,40,41,43,44,47,54,55,76,77,78,81,83,86,90,97,99],select_opt:171,selector:[33,39,163],self:146,semi:[37,132],sen_index_delimit:42,sen_index_norm:42,sen_sel_term_extract:42,senboku:40,send:3,sender:[150,151],senna:33,sensit:193,sent:199,sentens:33,separ:[33,39,50,88,100,113,128,131,136,138,170,171,178,180,193,205,212,214],sequenc:[37,40,81,128,131,170,171,173,187,188,190,205],sequence_dataset:149,sequence_queri:149,sequenti:[33,41,163,170,171,172,181,193],serach:188,serch:[131,188],sergei:[33,41],seri:214,serial:86,serihiro:39,seriou:[39,41],serv:[12,41,211],servic:[0,21,33,39,40,41,188,194,203],session:[150,197,205],set:[24,25,26,30,33,39,40,41,46,47,51,61,66,72,76,83,92,93,108,128,136,137,141],set_groonga_error:110,set_host:146,set_port:146,set_token_filt:41,setup:[17,21,40],seven:214,shape:176,shard:[22,33,43,107,108,109,110,111],shard_name_1:111,shard_name_2:111,shard_name_n:111,share:[0,2,28,37,39,40,46,47,48,52,107,109,110,112,145,147,213,216],shell:[28,33,145,170,181],shidara:37,shift_ji:[28,193],shimada:39,shimamura:33,shimoda:35,shimomura:39,shinjyuku:221,shinoda:[33,41],shinya:39,sho:[40,41],shop:[172,206],shorter:[33,172],shorttext:[41,44,55,76,79,86,87,88,90,97,98,99,101,102,103,110,111,115,116,117,123,127,128,131,132,133,134,135,136,140,145,146,153,155,158,159,160,161,163,164,166,167,168,170,171,172,174,177,181,182,183,184,187,188,190,191,192,194],should:[6,7,8,18,21,23,24,25,26,28,30,31,33,39,51,54,70,76,81,100,108,109,117,123,128,132,140,170,171,174,180,188,205],shouldn:[6,7,41],show:[0,28,33,34,37,39,40,41,44,50,79,82,86,97,100,101,107,110,113,127,128,153,155,158,159,160,163,164,166,167,170,171,176,178,181,182,183,184,193,202,205,211,212,213,214,217,218,221],showen:82,shown:[171,214],shuhei:41,shutdown:[22,43,77,99,107],sid:[12,37,41,84],side:[0,33,39,128],sigcont:40,sign:[12,39,82],signal:41,significantli:0,sigstop:40,sigusr1:37,silent:21,simil:171,similar_search:[39,131],simpl:[33,41,88,90,107],simplest:[0,28,81,182],simpli:[184,219],simplifi:[40,161],sinc:[26,33,39,48,70,79,85,122,130,132,140,145,155,171,172,173,181,195,203,211,217],singl:[40,41,76,100,113,128,137,138,214],site:[41,98,101,102,103,123,128,169,211,212,213,214,216,218,221],site_titl:123,sitecountri:[212,218],sitedomain:[212,218],situat:128,six:[173,214],size:[23,24,25,26,30,31,32,33,37,39,40,41,44,48,54,66,67,70,81,84,88,91,92,93,116,117,127,132,141,145,147,166,168,185,191,194],size_of_one_value_in_byt:127,sizeof:[33,51,54],sji:[28,42,145],skip:[33,40,41,214],slash:171,sleepi:172,slow:[33,147,170,171,181,191],slower:[155,182,184,212],small:[33,40,41,117,132,170,171,191,193,217],smaller:[0,76,132,155,172,173],snake_cas:33,snippet1:166,snippet2:166,snippet3:166,snippet:[33,39,40,42,166],snippet_html:[22,33,39,40,41,43,128,152],soccer:213,social:213,socket:39,socket_is_already_connect:205,socket_is_already_shutdown:205,socket_is_not_connect:205,socket_not_initi:205,soft:194,softwar:3,solari:[5,7,8,22,23],solr:171,solut:[22,193,207],solv:[182,183,184,211],some:[0,1,2,8,17,26,28,32,33,39,40,41,44,46,54,69,76,79,81,107,109,110,116,124,132,134,138,141,143,149,152,164,170,171,173,181,182,185,192,193,194,195],someon:217,someth:41,sometim:41,soon:[166,176,185,199],sort:[0,22,33,37,40,111,128,131,176,191,210],sortbi:[37,40,95],sound:[174,188],soundkitchen:[37,39],sourc:[6,7,8,12,16,17,18,21,22,23],source_1:127,source_2:127,source_column_nam:33,source_file_nam:79,source_n:127,sourceforg:[2,12,33],southern:39,space:[0,33,37,40,70,76,100,113,128,138,170,181,190,193,214],spain:155,spammer:[182,183,184],span:[158,159,160,166],spars:33,speaker:2,spec:[37,39,40],special:[17,28,40,46,54,79,82,128,138,148,158,159,166,170,181,205,214],specif:[0,22,28,39,40,41,76,98,107,117,125,126,128,131],specifi:[0,6,7,8,17,22,27,28,33,38,39,40,41,51,52,55,61,62,70,72,76,79,80,83,86,87,88,90,91,92,93,96,97,98,99,100,101,102,103,107,108,109,110,111,112,113,115,116,117,118,119,122,123,124,125,126,127,128,131,132,134,135,136,137,138,140,143,145,147,148,149,150,151,153],speech:[0,193],speed:[37,189,191],spell:[180,220],spend:[170,171],spheric:155,sphinx:[12,15,16,17,18,33,41],sphr:[155,156],spil:33,split:[33,37,171,191,193],spokesman:3,sport:213,spreadsheet:180,sql:[107,128,182,212],squar:155,squeez:[12,40],src:[12,25,211],src_kei:64,src_key_siz:64,ssh:12,ssssss:173,stabl:[41,78,131],stack:40,stack_over_flow:205,stage:41,stamp:[173,187,188,190],stand:[33,197],standard:[33,100,147,195,205,214],start:[17,31,37,39,40,41,70,79,90,107,110,128,130,135,148,150,155,170,171,172,173,177,178,180,187,189,193,199],start_tim:[33,80,130],starttim:[33,80,130,147,178,205,214,218],startup:39,state:[39,97,155,197,205],statement:171,station:[176,217,221],statu:[22,24,25,26,30,33,39,40,41,43,77,80,82,97],status:[82,205],stdin:38,stem:[25,30,41,192],step:[17,28,31,86,181,190,211,214],steve:33,still:[16,17,40,41,90,124,135],stop:[33,37,39,40,41,44,66,90,128,135,145,147,182,183,184,192],stop_word:[98,136,192],storategi:128,str:54,str_length:70,str_ptr:70,str_size:54,strang:181,stream:41,strerror:41,strict:[33,41],string1:154,string2:154,string:[11,22,33,37,38,39,40,41,51,53,54,61,62,70,76,79,81,91,92,93,100],string_length:33,string_liter:41,string_siz:54,stringifi:33,strip:160,strlen:70,strongli:[23,24,25,26,30,31],structur:[0,41,79,191,213],stub:41,studio:[8,31,33,39,40],style:[33,41],sub1:[110,128],sub:[0,12],sub_filt:[22,33,40,43,152,163],subject:40,submiss:[131,187,188,190],submit:3,subrecord:40,subset:195,substit:128,substitut:[17,21,128,164,170,171],substr:[170,171],succeed:[28,33,82,87,91,93,97,101,102,103,123,140,214],succeeded_or_not:90,success:[47,48,51,52,54,61,69,70],successfulli:[70,102,103,214],successor:171,suddenli:40,sudo:[12,14,18,21,24,25,26,27,28,29,30,39,194,203,209,218],suenaga:33,suffici:70,suffixsearchterm:[170,171],sug:189,suggest:[22,28,33,35,36,37,38,39,40,41,43,77],suggest_prepar:[131,187,188,190],sugimoto:33,suit:[0,41,166],suitabl:[41,110,128,132,145,172,182,184,191,193],sum:[41,110,128,182],summar:212,summari:[22,40,43],suno:41,superior:[0,166],support:[0,1,6,7,8,17,21,28,30,33,37,38,39,40,41,42,70,80,100,110,124,125,126,128,130,132,137,138,147,151,163,164,166,170,171,172,174],suppress:[38,39,41],sure:214,surfac:176,surround:[39,158,159,166,171],suzuki:39,swap:194,swig:42,symbol:193,synonym:[128,180,220],syntax:[22,33,39,40,41,43,44,54,76],syntax_error:205,syscal:[41,214],sysconfig:203,sysctl:[27,33,194,209],system:[0,5,6,7,28,29,30,33,37,40,41,94,99,110,128,145,147,166,170,171,172,194,195,211,221],systemctl:203,systemd:[33,39],tab:[33,50,178,180,205],tabl:[11,22],table1:64,table2:64,table_1:127,table_2:127,table_:[132,191],table_buff:51,table_cr:[22,33,39,41,43,44,76,77,86,88,90,97,98,99,101,102,103,107,110,111,115,116,117,123,127,128],table_dat_kei:[40,41,86,116,127,132,133,170,171],table_hash_kei:[44,76,86,97,98,99,101,102,103,110,111,115,116,117,123,127,128,132,133,134,153,155,160,161,163,164,168,171,172,174,182],table_list:[22,35,37,39,43,77],table_n:127,table_nam:[99,115],table_name_1:127,table_name_2:127,table_name_n:127,table_name_of_index_column:99,table_no_kei:[33,41,44,86,97,98,101,102,103,107,115,116,117,123,127,128,132,133,134,158,159,164,166,170,171,172,181,183,184],table_pat_kei:[33,40,76,86,88,90,98,110,116,123,127,128,132,133,134,135,136,140,145,158,159,161,163,164,166,167,170,171,177,181,182,183,184],table_remov:[22,33,39,40,43,77,86,99,117],table_renam:[22,38,43,77,86,99],table_token:[22,43,77],tablecursor:33,tablegroupflag:33,tablenam:78,tables_buff:51,tag:[12,22,33,37,39,40,41,76,86,88,110,128],tagger:0,tahr:[30,41],tail:[12,205],tajima:39,takashi:97,takatsugu:41,takayama:33,takayuki:37,take:[83,86,88,90,91,92,93,94,99,101,102,103,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,132,134,135,136,137,138,139,140,143,148,203,214],takiuchi:40,talk:[2,12,33,40],tamano:41,tanab:40,tanuma:41,tar:[12,24,25,26,27,28,29,30],target:[18,28,31,33,37,39,41,47,48,52,54,55,61,76,91,92,93,99,100,101,102,103,110,117,123,124,128,132,134,138],target_charact:54,target_nam:41,taro:213,task:[0,39],tasuku:[33,42],tatsuya:39,techniqu:[182,183,184],temporari:[6,7,22,33,39,43,134,145,155],tend:216,term:[0,32,33,39,40,41,84,87,110,127,128,134,136,145,158,159,164,166,170],termin:[33,39,51,54,62,70,145,147],teruya:33,test:[6,12,14,23,24,25,26,30,31,33,39,41,108,109,146,147,193,211,214,216,217,218],test_loc:146,test_str:14,test_text_otoj:14,testdb:[146,151],tetsuharu:41,tex:138,than:[0,32,33,37,40,41,76,88,94,110,128,131,132,145,155,166,169],thatn:128,theater:220,theatr:220,thei:[28,29,33,44,76,100,110,118,119,122,128,134,138,147,148,158,159,163,166,167,169,170,171,172,173,178,180,182,183,184,185,187,188,189,190,191,193,194,199],them:[16,17,24,25,26,28,30,33,46,54,76,79,87,99,100,110,128,134,155,170,181,182,193,194,205,211,214,221],themselv:[17,177,180],therubyrac:12,thesauru:128,thi:[0,3,5,6,7,8,18,20,21,23,24,25,26,27,28,29,30,31,33,37,39,40,41,44,45,47,48,50,51,52,61,70,76,77,79,83,86,87,88,90,91,92,93,94,99,100,101,102,103,107,108,109,110,111,112,113,114,115,116,117,118,119,122,123,124,125,126,127,128,130,132,134,135,136,137,138,139,140,142,143,145,147,149,150,152,153,155,158,159,161,164,166,167,168,170,171,173,175,177,178,180,181,182,183,184,185,186,187,188,190,193,194,195,199,205,209,211,212,214,216,217,218,219,220,221],thing:33,think:[128,134,171,182,183,184],third:[88,128,171,211],thorsten:33,those:[0,17,28,29,38,128,155,166,169,170,171,174,178,189,190,191,199,211,214],though:[0,39,40,41,107,187,216],thread:[0,33,40,41,48,51,52,66,70,94,102,108,130,134,137,145,150,173,199],thread_count:33,thread_limit:[22,33,43,77,94,108,117,134],thread_tabl:146,thread_title_column:146,threasd:145,three:[40,76,79,90,107,113,128,155,158,169,183,184,187,188,211,212,214,216],threshold:23,through:[0,147],throughput:[37,199],thu:[0,41,107,149,151,170,215,216,220,221],tid:58,time:[0,6,7,22,33,37,39,40,41,46,79,107,110,111,115,116,117,123,124,127,130,131,132,143,146,150,166,170],time_column:146,time_stamp:173,timeout:[40,46,61],timestamp:[107,111,115,117,123,217],timeuot:46,tini:33,titl:[12,40,41,98,101,102,103,110,123,128,134,154,167,170,171,182,183,184,211,212,213,214,216,218],title_index:182,tiwawan:33,tld:212,tmp:[6,7,12,40,88,90,117,131,133,135,145,150,180,181,199,205,214,218],to_column:86,tobbi:164,todai:0,todo:[6,7,14,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,68,71,73,75,76,79,107,109,110,112,113,121,128,149,152],token_filt:98,token_filter_1:127,token_filter_2:127,token_filter_n:127,token_filter_nam:127,token_filter_name_1:127,token_filter_name_2:127,token_filter_name_n:127,token_fitl:127,tokenbigram:[110,123,127,128,132,133,134,136,138,139,145,158,159,164,166,167,170,171,172,182,183,184,188,191,192],tokenbigramignoreblank:[127,139],tokenbigramignoreblanksplitalpha:193,tokenbigramignoreblanksplitalphadigit:193,tokenbigramignoreblanksplitsymbol:[127,139],tokenbigramignoreblanksplitsymbolalpha:[127,139],tokenbigramignoreblanksplitsymbolalphadigit:[127,139],tokenbigramsplitsymbol:[127,139],tokenbigramsplitsymbolalpha:[127,128,138,139],tokenbigramsplitsymbolalphadigit:[86,127,139,164,188],tokenbigramsplitxxx:193,tokenbigrm:86,tokendelimit:[127,138,139,190],tokendelimitnul:[127,139],tokenfilterstem:[25,30,41],tokenfilterstopword:[33,41,136],tokenizer_1:127,tokenizer_2:127,tokenizer_error:205,tokenizer_list:[22,41,43,77],tokenizer_n:127,tokenizer_nam:127,tokenizer_name_1:127,tokenizer_name_2:127,tokenizer_name_n:127,tokenizs:[22,43],tokenkytea:39,tokenmecab:[39,127,139],tokenregexp:[33,123,127,139,181],tokentrigram:[33,127,138,139],tokenunigram:[127,139],tokyo:[155,221],tokyogeopoint:[37,55,116,127,155,156,157],tom:164,tomita:35,tomo:213,tomoatsu:[35,39],tomygx:33,too:[33,40,66,76,117,128,171,211,216],too_large_offset:205,too_many_link:205,too_many_open_fil:205,too_many_open_files_in_system:205,too_many_symbolic_link:205,too_small_limit:205,too_small_offset:205,tood:70,tool:[6,15,17,18,21,22,23],top:[55,212],top_left:[37,157],top_left_point:55,topic:3,tortoisegit:8,totabl:86,total:[32,33,39,84,116],total_s:116,touch:[33,52],toybox:211,tracker:3,trade:193,tradit:[0,41],transfer:[0,22,197,203,205,210],transit:203,translat:3,transposit:33,travel:217,travi:20,treat:[33,39,40,41,107,109,110,112,128,138,171,176,187,188],tree:41,tri:[46,217],trial:0,trie:[22,33,37,39,40,127,132,170,171,191,210,214],tritonn:[110,128,170,171],troubl:17,truncat:[22,33,37,40,41,43,48,77,99],trust:12,trusti:[12,30,41],tsu_root:33,tsv:33,tune:[22,33,40,43,76,128],turn:147,tutori:[22,33,39,41,70],tweet:[2,172],twice:[33,128,170],two:[19,24,25,26,30,33,40,41,51,54,79,87,88,93,99,108,110,117,128,132,135,137,138,147,151,155,161,163,164,166,167,170,173,174,176,181,183,188,190,193,198,199,203,212,213,214,216,217,221],txt:[16,17,193],type1:131,type2:131,type:[13,22,33,37,38,39,40,41,43,44,48,50,51,54,55,59,61,62,66,72,76,82,86,87,88,90,97,110,113,115],type_1:127,type_2:127,type_n:127,type_name_1:127,type_name_2:127,type_name_n:127,type_of_the_column:167,typic:[33,128],typo:[33,37,39,40,41,180,187,188],u0000ful:193,u0000http:193,ubuntu:[12,18,21,22,23],ueno:[37,39],uid:12,uint16:[40,116,127],uint32:[39,40,41,44,76,79,86,88,90,97,110,116,127,128,132,133,134,135,140,153,163,167,170,171,172,174,181,192,194],uint32_column:33,uint32_t:66,uint64:[40,41,116,127],uint8:[35,40,44,88,99,116,127],uint:39,ull:138,ultra:213,umask:41,umemoto:37,unari:40,unauthent:[25,39],unchang:70,uncontinu:39,undefin:211,under:[28,41,147,148,150,151,199],underflow:211,underli:0,underscor:132,understand:[41,128,214],unexpect:[39,41],unexpectedli:[33,40,99],unicod:[33,174],unicorn:33,uniniti:33,uninstal:39,uniqu:[124,150],unit:[77,97,130,155,166,171,193,205],univers:30,unix:[3,5],unix_time_when_command_is_start:79,unknow:41,unknown:[38,53],unknown_error:205,unlink:54,unload:39,unlock:70,unmanag:84,unmap:[33,52,94],unnecessari:194,unpatch:42,unrecover:52,unregist:[118,119],unrel:37,unreli:143,unresolv:37,unsaf:[33,52],unsign:[33,41,47,48,54,57,61,62,64,65,67,70,82,116],unsort:33,unsplit:[11,128],unstabl:38,unsupport:33,unsupported_command_vers:205,untag:160,until:[17,41,46,70,94,100,128,172],unus:[41,94],updag:39,update_buffer_s:57,update_not_allow:205,updated_at:208,upgrad:[33,39,41,198],upload:12,upper:[37,41,132,181,214],uptim:[80,130,147,178,205,214,218],uri:[147,148],url:[37,41,98,148,199],usa:212,usabl:141,usag:[0,22,33,40,41,43],use_offline_index:38,use_range_index:33,useless:52,user:[3,6,7,8,28,31,33,39,40,41,44,66,79,81,86,88,90,97,99,107,115,116,117,124,127,128,135,140,146,147,150,153,159,164,166,167,170,171,173,177,187,188,189,190,194,195,199,213],user_ag:153,user_column:146,user_data:[62,70],user_input:171,usernam:[31,213],users_index:217,users_loc:217,users_memo:164,users_nam:164,usr:[14,27,28,118,119,122,145,147],usual:[33,51,151,211,216],utc:[79,171],utf8:[28,53,145],utf:[28,39,40,42,150,171,174,178,193],util:147,utop:33,uuuuuu:171,uzulla:37,vagrant:12,valid:[33,37,39,40,41,110,128,170,171,190,191,211],valu:[0,8,28,33,37,38,39,40,41,46,48,50,51,57,59,61,62,65,70,72,76,79,82],value1:[86,100,147,148,161,171],value2:[100,148,171],value_1:[127,214,218],value_2:[127,214,218],value_column:48,value_n:127,value_typ:[64,127],valuebuf:59,valuen:161,vari:[32,70],variabl:[29,33,37,38,39,40,41,70,88,116,128,171,180,205,211],varieti:213,variou:[22,210],vdw:[212,214,221],vector:[22,33,37,39,40,41,43,72],vector_column:[33,40],vector_s:[22,33,43,152],vector_text_column:33,veres:199,veri:[0,39,79,100,110,128,158,159,166,170,171,181,182,187,191,199,213],version1:78,version2:78,version3:78,version4:78,version:[12,22,25,29,30,31,33,37,39,40,41,42,43,44,48,49,51,52,70,77],vertic:132,vervet:[30,33],via:[17,39,82,190],video:213,view:[22,39,150,161,209,210],virtual:[33,40],virtualbox:12,visual:[0,8,31,33,37,39,40,41,79,127],vivid:[12,30,33],vmstat:209,vocabulari:214,voic:174,void_t:66,vojtovich:41,vulner:41,w64:12,wai:[0,3,6,7,19,39,40,41,76,99,141,147,151,164,169,178,212,214,216,217,220],wait:[46,70],wanab:40,want:[6,7,8,13,16,24,25,26,27,28,30,33,41,44,66,86,100,108,113,115,117,125,126,127,128,132,134,136,138,145,147,150,155,161,163,167,170,180,181,185,187,188,190,193,197,203,205,209,212,214,216,220],wareohji:39,warn:[6,7,38,39,40,41,104,105,128,145,147,173,181,184],warp:41,warri:23,washida:40,watch:12,weak:[0,166],web:[28,128,131,147,148,170,188,190,213],webclip:160,weight1:[39,76,128],weight2:[39,76,128],weight3:76,weight:[22,39,40,41],weight_in_match_column:76,weight_in_weight_vector:76,welcom:[2,3,16,17,110,128,170,171,217],well:[0,28,40,107,147,166,218],were:[155,214],werewolf:[30,33],wget:[24,25,26,28,29,30],wgs84geopoint:[37,55,116,127,155],wgs84geoppoint:55,what:[22,43,54,99,131,167,181],wheezi:[12,22,23],when:[0,3,18,33,37,39,40,41,44,48,52,61,66,76,79,80,86,87,91,94,99,100,101,108,110,117,118,122,123,127,128,131,132,134,137,145,147,150,155,160,161,164,167,170,172,174,181,185,187,193,194,197,202,205,213,214,217,219],where:[28,82,211],whether:[33,39,41,51,52,61,82,91,93,98,99,101,102,103,107,109,110,112,115,117,123,127,128,131,140,143,147,153,155,161,164,167,169,170,185,209,211],which:[0,1,26,33,39,40,41,69,70,97,107,109,110,112,113,125,126,128,136,138,145,150,151,155,160,161,163,164,167,168,170,171,187,203,205,211,212,213,214,216,217,218,219,220,221],white:[170,193,214],who:[33,40,193,213],whole:40,whombx:40,whose:[171,214],why:[40,128,181,203],wibowo:40,wide:[0,28,37,177,181,214],width:[33,37,174],wiedenroth:41,wiki:147,wikipedia:[177,195],wili:[30,33],win64:[8,31],window:[3,5,6,7],wing:[39,40],with_check:[41,113],with_command_vers:33,with_posit:[87,88,110,123,127,128,158,159,164,166,167,170,171,172,181,182,183,184,192,194,208,214,216,217,220],with_sect:[33,41,87,88,127,216,217],with_typ:113,with_weight:[41,76,87,88,127],within:[187,188,217,221],without:[0,33,38,39,40,41,44,76,80,83,86,103,107,108,109,110,112,117,118,122,128,137,147,164,166,167,170,171,181,187,190,198],wno:37,word1:[39,128,170,171],word2:[39,128,170,171],word:[0,33,39,41,66,72,128,167,169,170,171,180,182,187,188,189,190,192,193,215,217],work:[0,3,12],workaround:[33,41,134],worker:[40,147],world:[40,41,193,195,221],writabl:[33,41],write:[14,18,28,33,38,41,66,102,109,121,128,145,170,171,181,215,216,217],written:[18,41,118,122,140,185,217],wrong:[33,37,39,40,41,143,188,189],wrongli:37,x64:[12,31],x86:[31,33,37],x86_64:[12,24],xcode:27,xml:[37,38,39,40,41,50],xvzf:[24,25,26,27,28,29,30],xxx:[33,40,41,145,171],xxx_20150603:33,xxx_20150604:33,xxx_201506:33,yahppo:40,yamada:41,yamaguchi:37,yamamoto:41,yaman:[40,41],yappo:[40,41,42],year:[33,44,153,171,173,217],years_old:44,yet:[0,37,40,107,110,125,126,128,171,176,182,184,185,199],yito:[39,40],yml:21,yoji:37,yokoyama:[33,40,41],yoku:[40,41],york:[155,217],yoshida:40,yoshioka:[33,39],you:[0,1,2,3,5,6,7,8,13,16,17,18,19,20,21,23,24,25,26,27,28,30,31,33,37,38,39,40,41,44,46,47,48,50,51,52,54,66,69,70,76,77,79,80,81,82,83,86,87,88,90,91,92,93,94,97,98,99,100,101,102,103,107,108,109,110,111,112,113,115,116,117,118,119,122,123,124,125,126,127,128,131,132,134,135,136,137,138,140,141,143,145,147,148,149,150,151,152,153,155,158,159,160,161,163,164,166,167,168,169,170,171,174,176,177,178,180,181,182,183,184,185,187,190,191,192,193,194,195,197,199,202,203,205,209,211,212,213,214,216,217,218,219,220,221],your:[0,3,6,7,8],your_db:37,your_github_account:17,your_new_db:37,yourself:23,yuki:[37,41],yum:[12,18,24,26,39],yunqiang:33,yutaro:33,yuya:[33,41],yy_syntax_error:44,yyi:17,yyyi:[171,173],yyyymm:185,yyyymmdd:[110,185],zenigata:213,zero:[72,76,128,163,174,180,192,193,205,211],zeromq:28,zip:[12,22,23],zlib1g:[25,30],zlib:23,zlib_error:205,zsh:28,zunda:37,zxvf:12},titles:["1. Characteristics of Groonga","6. Client","3. Community","12. How to contribute to groonga","12.3. For Groonga developers","12.3.2. How to build Groonga at the repository","12.3.2.1. How to build Groonga at the repository by GNU Autotools","12.3.2.2. How to build Groonga at the repository by CMake on GNU/Linux or Unix","12.3.2.3. How to build Groonga at the repository by CMake on Windows","12.3.3. Groonga \u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3","12.3.4. \u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd","12.3.5. \u30af\u30a8\u30ea\u306e\u5b9f\u73fe","12.3.7. \u30ea\u30ea\u30fc\u30b9\u624b\u9806","12.3.1. Repository","12.3.8. \u30c6\u30b9\u30c8\u65b9\u6cd5","12.2. How to contribute in documentation topics","12.2.3. C API","12.2.2. I18N","12.2.1. Introduction","12.1. How to report a bug","11. Development","11.1. Travis CI","Groonga documentation","2. Install","2.5. CentOS","2.3. Debian GNU/Linux","2.6. Fedora","2.2. Mac OS X","2.8. Others","2.7. Oracle Solaris","2.4. Ubuntu","2.1. Windows","9. Limitations","News","\u30d0\u30fc\u30b8\u30e7\u30f30.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.0.x\u306e\u304a\u77e5\u3089\u305b","\u30d0\u30fc\u30b8\u30e7\u30f31.1.x\u306e\u304a\u77e5\u3089\u305b","Release 1.2.9 - 2011-12-29","Release 1.3.0 - 2012-01-29","Release 2.1.2 - 2013-01-29","Release 3.1.2 - 2014-01-29","Release 4.1.1 - 2015-01-29","News in Senna period","7. Reference manual","7.17. Alias","7.23. API","7.23.2. Global configurations","7.23.4. <code class=\"docutils literal\"><span class=\"pre\">grn_cache</span></code>","7.23.5. <code class=\"docutils literal\"><span class=\"pre\">grn_column</span></code>","7.23.6. <code class=\"docutils literal\"><span class=\"pre\">grn_command_version</span></code>","7.23.7. <code class=\"docutils literal\"><span class=\"pre\">grn_content_type</span></code>","7.23.8. <code class=\"docutils literal\"><span class=\"pre\">grn_ctx</span></code>","7.23.9. <code class=\"docutils literal\"><span class=\"pre\">grn_db</span></code>","7.23.10. <code class=\"docutils literal\"><span class=\"pre\">grn_encoding</span></code>","7.23.11. grn_expr","7.23.12. <code class=\"docutils literal\"><span class=\"pre\">grn_geo</span></code>","7.23.13. <code class=\"docutils literal\"><span class=\"pre\">grn_hook</span></code>","7.23.14. <code class=\"docutils literal\"><span class=\"pre\">grn_ii</span></code>","7.23.15. <code class=\"docutils literal\"><span class=\"pre\">grn_index_cursor</span></code>","7.23.16. <code class=\"docutils literal\"><span class=\"pre\">grn_info</span></code>","7.23.17. <code class=\"docutils literal\"><span class=\"pre\">grn_match_escalation</span></code>","7.23.18. <code class=\"docutils literal\"><span class=\"pre\">grn_obj</span></code>","7.23.19. <code class=\"docutils literal\"><span class=\"pre\">grn_proc</span></code>","7.23.20. <code class=\"docutils literal\"><span class=\"pre\">grn_search</span></code>","7.23.21. <code class=\"docutils literal\"><span class=\"pre\">grn_table</span></code>","7.23.22. <code class=\"docutils literal\"><span class=\"pre\">grn_table_cursor</span></code>","7.23.23. <code class=\"docutils literal\"><span class=\"pre\">grn_thread_*</span></code>","7.23.24. <code class=\"docutils literal\"><span class=\"pre\">grn_type</span></code>","7.23.25. <code class=\"docutils literal\"><span class=\"pre\">grn_user_data</span></code>","7.23.1. Overview","7.23.3. Plugin","Cast","7.6. Column","7.6.4. Index column","7.6.3. Pseudo column","7.6.1. Scalar column","7.6.2. Vector column","7.3. Command","7.3.1. Command version","7.3.2. Output format","7.3.3. Pretty print","7.3.4. Request ID","7.3.5. Return code","7.3.6. <code class=\"docutils literal\"><span class=\"pre\">cache_limit</span></code>","7.3.7. <code class=\"docutils literal\"><span class=\"pre\">check</span></code>","7.3.8. <code class=\"docutils literal\"><span class=\"pre\">clearlock</span></code>","7.3.9. <code class=\"docutils literal\"><span class=\"pre\">column_copy</span></code>","7.3.10. <code class=\"docutils literal\"><span class=\"pre\">column_create</span></code>","7.3.11. <code class=\"docutils literal\"><span class=\"pre\">column_list</span></code>","7.3.12. <code class=\"docutils literal\"><span class=\"pre\">column_remove</span></code>","7.3.13. <code class=\"docutils literal\"><span class=\"pre\">column_rename</span></code>","7.3.14. <code class=\"docutils literal\"><span class=\"pre\">config_delete</span></code>","7.3.15. <code class=\"docutils literal\"><span class=\"pre\">config_get</span></code>","7.3.16. <code class=\"docutils literal\"><span class=\"pre\">config_set</span></code>","7.3.17. <code class=\"docutils literal\"><span class=\"pre\">database_unmap</span></code>","7.3.18. <code class=\"docutils literal\"><span class=\"pre\">define_selector</span></code>","7.3.19. <code class=\"docutils literal\"><span class=\"pre\">defrag</span></code>","7.3.20. <code class=\"docutils literal\"><span class=\"pre\">delete</span></code>","7.3.21. <code class=\"docutils literal\"><span class=\"pre\">dump</span></code>","7.3.22. <code class=\"docutils literal\"><span class=\"pre\">io_flush</span></code>","7.3.23. <code class=\"docutils literal\"><span class=\"pre\">load</span></code>","7.3.24. <code class=\"docutils literal\"><span class=\"pre\">lock_acquire</span></code>","7.3.25. <code class=\"docutils literal\"><span class=\"pre\">lock_clear</span></code>","7.3.26. <code class=\"docutils literal\"><span class=\"pre\">lock_release</span></code>","7.3.27. <code class=\"docutils literal\"><span class=\"pre\">log_level</span></code>","7.3.28. <code class=\"docutils literal\"><span class=\"pre\">log_put</span></code>","7.3.29. <code class=\"docutils literal\"><span class=\"pre\">log_reopen</span></code>","7.3.30. <code class=\"docutils literal\"><span class=\"pre\">logical_count</span></code>","7.3.31. <code class=\"docutils literal\"><span class=\"pre\">logical_parameters</span></code>","7.3.32. <code class=\"docutils literal\"><span class=\"pre\">logical_range_filter</span></code>","7.3.33. <code class=\"docutils literal\"><span class=\"pre\">logical_select</span></code>","7.3.34. <code class=\"docutils literal\"><span class=\"pre\">logical_shard_list</span></code>","7.3.35. <code class=\"docutils literal\"><span class=\"pre\">logical_table_remove</span></code>","7.3.36. <code class=\"docutils literal\"><span class=\"pre\">normalize</span></code>","7.3.37. <code class=\"docutils literal\"><span class=\"pre\">normalizer_list</span></code>","7.3.38. <code class=\"docutils literal\"><span class=\"pre\">object_exist</span></code>","7.3.39. <code class=\"docutils literal\"><span class=\"pre\">object_inspect</span></code>","7.3.40. <code class=\"docutils literal\"><span class=\"pre\">object_remove</span></code>","7.3.41. <code class=\"docutils literal\"><span class=\"pre\">plugin_register</span></code>","7.3.42. <code class=\"docutils literal\"><span class=\"pre\">plugin_unregister</span></code>","7.3.43. <code class=\"docutils literal\"><span class=\"pre\">quit</span></code>","7.3.44. <code class=\"docutils literal\"><span class=\"pre\">range_filter</span></code>","7.3.45. <code class=\"docutils literal\"><span class=\"pre\">register</span></code>","7.3.46. <code class=\"docutils literal\"><span class=\"pre\">reindex</span></code>","7.3.47. <code class=\"docutils literal\"><span class=\"pre\">request_cancel</span></code>","7.3.48. <code class=\"docutils literal\"><span class=\"pre\">ruby_eval</span></code>","7.3.49. <code class=\"docutils literal\"><span class=\"pre\">ruby_load</span></code>","7.3.50. <code class=\"docutils literal\"><span class=\"pre\">schema</span></code>","7.3.51. <code class=\"docutils literal\"><span class=\"pre\">select</span></code>","7.3.52. <code class=\"docutils literal\"><span class=\"pre\">shutdown</span></code>","7.3.53. <code class=\"docutils literal\"><span class=\"pre\">status</span></code>","7.3.54. <code class=\"docutils literal\"><span class=\"pre\">suggest</span></code>","7.3.55. <code class=\"docutils literal\"><span class=\"pre\">table_create</span></code>","7.3.56. <code class=\"docutils literal\"><span class=\"pre\">table_list</span></code>","7.3.57. <code class=\"docutils literal\"><span class=\"pre\">table_remove</span></code>","7.3.58. <code class=\"docutils literal\"><span class=\"pre\">table_rename</span></code>","7.3.59. <code class=\"docutils literal\"><span class=\"pre\">table_tokenize</span></code>","7.3.60. <code class=\"docutils literal\"><span class=\"pre\">thread_limit</span></code>","7.3.61. <code class=\"docutils literal\"><span class=\"pre\">tokenize</span></code>","7.3.62. <code class=\"docutils literal\"><span class=\"pre\">tokenizer_list</span></code>","7.3.63. <code class=\"docutils literal\"><span class=\"pre\">truncate</span></code>","7.16. Configuration","7.1. Executables","7.1.1. <code class=\"docutils literal\"><span class=\"pre\">grndb</span></code>","7.1.2. grnslap","7.1.3. <code class=\"docutils literal\"><span class=\"pre\">groonga</span></code> executable file","7.1.4. groonga-benchmark","7.1.5. groonga-httpd","7.1.6. Groonga HTTP server","7.1.7. groonga-suggest-create-dataset","7.1.8. groonga-suggest-httpd","7.1.9. groonga-suggest-learner","7.14. Function","7.14.1. <code class=\"docutils literal\"><span class=\"pre\">between</span></code>","7.14.2. edit_distance","7.14.3. <code class=\"docutils literal\"><span class=\"pre\">geo_distance</span></code>","7.14.4. geo_in_circle","7.14.5. geo_in_rectangle","7.14.6. <code class=\"docutils literal\"><span class=\"pre\">highlight_full</span></code>","7.14.7. <code class=\"docutils literal\"><span class=\"pre\">highlight_html</span></code>","7.14.8. <code class=\"docutils literal\"><span class=\"pre\">html_untag</span></code>","7.14.9. <code class=\"docutils literal\"><span class=\"pre\">in_values</span></code>","7.14.10. now","7.14.11. <code class=\"docutils literal\"><span class=\"pre\">prefix_rk_search()</span></code>","7.14.12. <code class=\"docutils literal\"><span class=\"pre\">query</span></code>","7.14.13. rand","7.14.14. <code class=\"docutils literal\"><span class=\"pre\">snippet_html</span></code>","7.14.15. <code class=\"docutils literal\"><span class=\"pre\">sub_filter</span></code>","7.14.16. <code class=\"docutils literal\"><span class=\"pre\">vector_size</span></code>","7.12. grn_expr","7.12.1. Query syntax","7.12.2. Script syntax","7.19. Indexing","7.21. Log","7.7. Normalizers","7.15. Operations","7.15.1. Geolocation search","7.15.2. Prefix RK search","7.2. Output","7.10. Query expanders","7.10.1. QueryExpanderTSV","7.13. Regular expression","7.11. Scorer","7.11.3.1. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_at_most</span></code>","7.11.3.2. <code class=\"docutils literal\"><span class=\"pre\">scorer_tf_idf</span></code>","7.20. Sharding","7.18. Suggest","7.18.2. Completion","7.18.3. Correction","7.18.1. Introduction","7.18.4. Suggestion","7.5. Tables","7.9. Token filters","7.8. Tokenizers","7.22. Tuning","7.4. Data types","5. Server","5.3. GQTP","5.2. HTTP","5.2.1. Comparison","5.2.2. groonga","5.2.3. groonga-httpd","5.4. Memcached binary protocol","5.1. Server packages","8. Specification","8.1. GQTP","8.2. \u691c\u7d22","10. \u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0","10.1. \u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b","10.2. How to avoid mmap Cannot allocate memory error","4. Tutorial","4.3. Various data types","4.5. Drilldown","4.6. Tag search and reverse resolution of reference relationships","4.1. Basic operations","4.9. Additional information about lexicon for full text search","4.7. match_columns parameter","4.10. Let's create micro-blog","4.2. Remote access","4.8. Prefix search with patricia trie","4.11. Query expansion","4.4. Various search conditions"],titleterms:{"0\u30ea\u30ea\u30fc\u30b9":[35,36,37],"1\u30ea\u30ea\u30fc\u30b9":[35,37],"2\u30ea\u30ea\u30fc\u30b9":35,"3\u30ea\u30ea\u30fc\u30b9":35,"4\u30ea\u30ea\u30fc\u30b9":35,"5\u30ea\u30ea\u30fc\u30b9":35,"6\u30ea\u30ea\u30fc\u30b9":[34,35],"7\u30ea\u30ea\u30fc\u30b9":[34,35],"8\u30ea\u30ea\u30fc\u30b9":35,"\u3053\u3061\u3089\u304b\u3089\u60c5\u5831\u3092\u63d0\u4f9b\u3059\u308b":10,"\u306e\u66f4\u65b0":12,"\u3078\u3068\u8a98\u5c0e\u3057\u306a\u3044":10,"\u30aa\u30d7\u30b7\u30e7\u30f3":[144,146],"\u30ab\u30d0\u30ec\u30c3\u30b8\u60c5\u5831":14,"\u30af\u30a8\u30ea\u306e\u5b9f\u4f8b":11,"\u30af\u30a8\u30ea\u306e\u5b9f\u73fe":11,"\u30af\u30a8\u30ea\u5b9f\u884c\u306e\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9":11,"\u30b3\u30de\u30f3\u30c9\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6307\u5b9a\u65b9\u6cd5":78,"\u30b3\u30de\u30f3\u30c9\u30d5\u30a1\u30a4\u30eb":146,"\u30b5\u30f3\u30d7\u30eb":[144,146],"\u30b9\u30af\u30ea\u30d7\u30c8\u30d5\u30a1\u30a4\u30eb":146,"\u30c6\u30b9\u30c8\u306e\u52d5\u4f5c":14,"\u30c6\u30b9\u30c8\u65b9\u6cd5":14,"\u30c6\u30b9\u30c8\u74b0\u5883\u306e\u69cb\u7bc9":14,"\u30c7\u30d0\u30c3\u30ac\u4e0a\u3067\u306e\u30c6\u30b9\u30c8\u5b9f\u884c":14,"\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0":[146,207],"\u30c8\u30fc\u30af\u30ca\u30a4\u30b6\u30fc\u3092\u5909\u66f4\u3059\u308b":208,"\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d0\u30fc\u30b8\u30e7\u30f30":34,"\u30d0\u30fc\u30b8\u30e7\u30f31":[35,36],"\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u4f4d\u7f6e\u3065\u3051":78,"\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u660e\u793a\u7684\u306b\u6307\u5b9a\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u751f\u6210\u3057\u305f\u3044":12,"\u30d0\u30fc\u30b8\u30e7\u30f3\u66f4\u65b0":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u52d5\u4f5c\u78ba\u8a8d":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u7f72\u540d\u7528\u306e\u30d1\u30b9\u30d5\u30ec\u30fc\u30ba\u3092\u77e5\u308a\u305f\u3044":12,"\u30d1\u30c3\u30b1\u30fc\u30b8\u7f72\u540d\u7528\u79d8\u5bc6\u9375\u306e\u30a4\u30f3\u30dd\u30fc\u30c8":12,"\u30d3\u30eb\u30c9\u3092\u4e26\u5217\u5316\u3057\u305f\u3044":12,"\u30d3\u30eb\u30c9\u6642\u306etip":12,"\u30d3\u30eb\u30c9\u74b0\u5883\u306e\u6e96\u5099":12,"\u30d3\u30eb\u30c9\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9":12,"\u30d6\u30ed\u30b0":12,"\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u65b0\u898f\u30d0\u30fc\u30b8\u30e7\u30f3\u8ffd\u52a0":12,"\u30d9\u30af\u30bf\u30fc\u3068\u3057\u3066\u683c\u7d0d\u3067\u304d\u306a\u3044\u578b":195,"\u30e1\u30e2\u30ea\u30ea\u30fc\u30af\u691c\u51fa":14,"\u30e6\u30fc\u30b6\u30fc\u3068\u5354\u529b\u3057\u3066\u958b\u767a\u3092\u3046\u307e\u304f\u9032\u3081\u3066\u3044\u304f\u305f\u3081\u306e\u6307\u91dd":10,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9":12,"\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u30bf\u30b0\u306e\u8a2d\u5b9a":12,"\u30ea\u30ea\u30fc\u30b9\u4f5c\u696d\u7528\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u306e\u4f5c\u6210":12,"\u30ea\u30ea\u30fc\u30b9\u5f8c\u306b\u3084\u308b\u3053\u3068":12,"\u30ea\u30ea\u30fc\u30b9\u624b\u9806":12,"\u30ea\u30ea\u30fc\u30b9\u7528\u30a2\u30fc\u30ab\u30a4\u30d6\u30d5\u30a1\u30a4\u30eb\u306e\u4f5c\u6210":12,"\u4e0d\u6b63\u30e1\u30e2\u30ea\u30a2\u30af\u30bb\u30b9":14,"\u4f7f\u3044\u65b9":146,"\u4f8b":[154,156,157,162,165,208],"\u4f8b\u3048\u3070redmin":10,"\u4fee\u6b63":[34,35,36,37],"\u5236\u9650\u4e8b\u9805":146,"\u524d\u63d0\u6761\u4ef6":12,"\u539f\u56e0":208,"\u540c\u3058\u691c\u7d22\u30ad\u30fc\u30ef\u30fc\u30c9\u306a\u306e\u306b\u5168\u6587\u691c\u7d22\u7d50\u679c\u304c\u7570\u306a\u308b":208,"\u540d\u524d":[74,144,146,154,156,157,162,165],"\u5909\u66f4":35,"\u5909\u66f4\u70b9\u306e\u307e\u3068\u3081":12,"\u5b8c\u5168\u4e00\u81f4\u691c\u7d22":206,"\u5b9f\u9a13\u7684":37,"\u5bfe\u5fdc":10,"\u5bfe\u7b56\u65b9\u6cd51":208,"\u5bfe\u7b56\u65b9\u6cd52":208,"\u5f15\u6570":[144,146,154,156,157,165],"\u611f\u8b1d":[34,35,36,37],"\u6539\u826f":[34,35,36,37],"\u66f8\u5f0f":[144,146,154,156,157,162,165],"\u691c\u7d22":206,"\u691c\u7d22\u306e\u4f7f\u3044\u5206\u3051":206,"\u691c\u7d22\u306e\u6319\u52d5":206,"\u691c\u7d22\u4f8b1":11,"\u691c\u7d22\u4f8b2":11,"\u691c\u7d22\u4f8b3":11,"\u691c\u7d22\u4f8b4":11,"\u6982\u8981":78,"\u69d8\u3005\u306a\u30c6\u30b9\u30c8":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u30d5\u30a1\u30a4\u30eb\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u30c6\u30b9\u30c8\u95a2\u6570\u306e\u307f\u30c6\u30b9\u30c8\u3059\u308b":14,"\u7279\u5b9a\u306e\u74b0\u5883\u5411\u3051\u306e\u307f\u30d3\u30eb\u30c9\u3057\u305f\u3044":12,"\u7279\u6b8a\u547d\u4ee4":146,"\u7406\u7531":10,"\u8aac\u660e":[74,144,146,154,156,157,162,165],"\u8fd4\u5024":[154,156,157,162,165],"\u901a\u4fe1\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"\u904e\u53bb\u306e\u30c4\u30a4\u30fc\u30c8\u306f\u304a\u3055\u3089\u3044\u3057\u3066\u304a\u304f":10,"\u90e8\u5206\u4e00\u81f4\u691c\u7d22":206,"\u95a2\u4fc2\u5f0f":11,"\u95be\u5024\u3092\u3042\u3052\u308b":208,"\u9759\u7684\u89e3\u6790":14,"\u975e\u308f\u304b\u3061\u66f8\u304d\u691c\u7d22":206,"benchmark\u547d\u4ee4":146,"benchmark\u5b9f\u884c\u7d50\u679c":146,"boolean":[171,211],"case":[79,134],"clang\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"class":181,"command_version\u30d1\u30e9\u30e1\u30fc\u30bf":78,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u5b9f\u884c":12,"configure\u30b9\u30af\u30ea\u30d7\u30c8\u306e\u751f\u6210":12,"cutter\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"cutter\u306e\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u53d6\u5f97":12,"debian\u7cfb\u306e\u5834\u5408":12,"debian\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"default":[28,78],"files\u306e\u5b9f\u884c":12,"float":[171,195],"function":[152,171],"gqtp\u3067\u306e\u30a2\u30fc\u30ad\u30c6\u30af\u30c1\u30e3":9,"grn_expr\u3067\u8868\u73fe\u3067\u304d\u308b\u30af\u30a8\u30ea":11,"grntest\u306e\u5b9f\u884c\u65b9\u6cd5":12,"grntest\u306e\u6e96\u5099":12,"groonga\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u53d6\u5f97":12,"groonga\u5b9f\u884c\u30d5\u30a1\u30a4\u30eb":11,"hat\u7cfb\u306e\u5834\u5408":12,"hat\u7cfb\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"homebrew\u306e\u66f4\u65b0":12,"lcov\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"libmemcached\u306e\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb":14,"log_reopen\u3092\u7528\u3044\u305f\u30ed\u30b0\u306e\u30ed\u30fc\u30c6\u30fc\u30b7\u30e7\u30f3":106,"new":[17,33,42],"null":171,"po\u306e\u5b9f\u884c":12,"po\u30d5\u30a1\u30a4\u30eb\u306e\u7ffb\u8a33":12,"release\u306e\u5b9f\u884c":12,"return":[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,148,150,153,155,158,159,160,161,163,164,166,167,168,183,184],"twitter\u3067\u306e\u3084\u308a\u3068\u308a\u306f\u3067\u304d\u308b\u3060\u3051\u4ed6\u306e\u5834\u6240":10,"twitter\u3067\u30ea\u30ea\u30fc\u30b9\u30a2\u30ca\u30a6\u30f3\u30b9\u3092\u3059\u308b":12,"twitter\u7de8":10,"ubuntu\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9":12,"version\u30d1\u30e9\u30e1\u30fc\u30bf":78,"windows\u5411\u3051\u306e\u5834\u5408":12,"windows\u7528\u30d1\u30c3\u30b1\u30fc\u30b8\u306e\u30d3\u30eb\u30c9":12,"x\u306e\u304a\u77e5\u3089\u305b":[34,35,36],about:[195,215],access:[199,218],add:17,addit:[171,174,215],adjust:128,administr:[147,218],advanc:[110,128],against:216,aggreg:0,alia:44,alloc:209,also:[6,7,8,44,79,81,82,83,85,88,91,92,93,95,97,100,101,103,104,105,106,111,113,114,118,119,121,122,124,125,126,127,128,131,132,136,138,139,149,158,159,163,164,166,167,169,174,177,180,183,184,191,192,205],among:216,anchor:181,api:[16,45],appli:76,approximate_typ:155,archiv:30,arg:11,arithmet:171,arrai:171,assign:[81,170,171],authent:199,autotool:6,avail:[147,192],avoid:209,basic:[134,171,214],benchmark:146,between:153,bigram:217,binari:202,bitwis:171,blog:217,blogroonga:12,bodi:79,bool:195,brows:147,bug:19,build:[5,6,7,8,24,25,26,27,28,30,31],built:[174,182,193],builtin:[145,195],cach:[109,128,147],cache_limit:83,calc_target:110,calc_typ:110,call:171,callback:11,can:195,cannot:209,cascad:97,cast:71,cento:24,chang:[42,86],charact:181,characterist:[0,191],chat:2,check:[84,143],checkout:[6,7,8],choic:181,clearlock:85,client:[1,145,205],clone:17,close_tagn:158,cmake:[7,8],code:82,column:[0,32,72,73,74,75,76,86,127,155,158,163,170,183,184,212,214,216],column_copi:86,column_cr:87,column_list:88,column_or_valu:153,column_remov:89,column_renam:90,combin:170,command:[77,78,127,141,143,145,148,150,178,185,199,214,218],comment:217,commun:2,comparison:[171,199],complet:[187,189],compress:199,condit:[128,170,221],config_delet:91,config_get:92,config_set:93,configur:[6,18,21,28,46,86,141,147,199],confirm:17,construct:172,contain:11,contribut:[3,15],control:171,convert:177,cooccurr:[187,188,190],core:199,correct:[188,189],cpu:199,creat:[6,76,132,149,214,216,217],custom:199,daemon:[145,205],data:[132,147,151,170,171,187,190,195,211,217],databas:[116,199,214],database_name_t:116,database_path:[150,151],database_type_id:116,database_type_nam:116,database_unmap:94,dataset:149,date:211,db_api:11,debian:25,decreas:134,default_token:132,define_selector:95,defrag:96,delet:97,depend:[6,7,8,18,28],descript:195,desctipion:149,develop:[4,20],differ:110,direct:147,divis:171,document:[15,18,22],domain:212,down:[147,221],downtim:199,drildown:212,drilldown:[110,128,212],drilldown_calc_target:[110,128],drilldown_calc_typ:[110,128],drilldown_limit:[110,128],drilldown_offset:[110,128],drilldown_output_column:[110,128],drilldown_sortbi:[110,128],dump:98,dump_index:98,dump_plugin:98,dump_record:98,dump_schema:98,each:216,edit:17,edit_dist:154,ellipsoid:155,enabl:18,encod:28,engin:0,equal:[11,170,171],error:[79,209],escal:28,escap:[170,181],exampl:[21,47,48,49,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,149,205,209],execut:[142,145],exit:149,expand:179,expans:220,explicit:170,explicitli:155,express:[170,171,181],extract:[171,190],facebook:2,favorit:217,featur:176,fedora:26,file:[17,145,149,151,180,194,199],filter:[107,109,110,128,192],filter_str:167,fix:[33,37,39,40,41,42],flag:[113,132,136,138,205],flow:17,follow:217,forc:117,format:[79,100,128,173,180,214],free:0,freebsd:194,from:[6,7,8,24,25,26,27,28,30,31,110,151],from_nam:86,from_tabl:86,full:[0,170,214,215,216,221],gener:[17,18],geo:[0,171,213],geo_dist:155,geo_in_circl:156,geo_in_rectangl:157,geoindex:217,geoloc:[176,217],geopoint:217,get:[150,214],global:46,glossari:185,gnu:[6,7,25],gqtp:[197,203,205],greater:[11,170,171],greater_equ:11,grn_cach:47,grn_column:48,grn_command_vers:49,grn_content_typ:50,grn_ctx:51,grn_db:52,grn_encod:53,grn_expr:[11,54,169],grn_geo:55,grn_hook:56,grn_ii:57,grn_index_cursor:58,grn_info:59,grn_match_escal:60,grn_obj:61,grn_proc:62,grn_search:63,grn_tabl:64,grn_table_cursor:65,grn_table_select:11,grn_thread_:66,grn_type:67,grn_user_data:68,grndb:143,grnslap:144,groonga:[0,3,4,5,6,7,8,9,12,17,22,42,145,146,147,148,149,150,151,200,201,203],groonga_base_path:147,groonga_cache_limit:147,groonga_databas:147,groonga_database_auto_cr:147,groonga_log_level:147,groonga_log_path:147,groonga_query_log_path:147,group:[170,171,181],gzip:199,hash:217,hashtag:217,header:[79,91,92,93,101,103,127,205],help:28,highlight_ful:158,highlight_html:159,homebrew:27,how:[3,5,6,7,8,15,17,19,44,76,81,86,172,177,187,188,190,197,205,209,218],html:[17,18,160],html_untag:160,http:[148,178,198,199,203,218],httpd:[147,150,151,201,203],hypertext:218,i18n:17,improv:[33,37,38,39,40,41,42],in_valu:161,index:[0,32,73,127,132,172,181,183,184,213,214,216],inform:[215,221],instal:[6,7,8,18,23,28,31,180],instant:0,int16:195,int32:195,int64:195,int8:195,integ:171,introduct:[18,189],invert:0,io_flush:99,issu:[19,218],javascript:221,jessi:25,json:[79,100],just:76,kei:[91,92,93,110,128,195,219],kern:194,key_typ:132,keyword:217,keywordn:158,label:[110,128],languag:17,latest:12,latitud:[0,211],launch:150,learn:[150,151,187,188,189,190],learner:151,left:171,less:[11,170,171],less_equ:11,let:217,lexicon:[132,214,215],librari:[0,28],like:221,limit:[32,76,109,110,128,180,191,195,212],line:[145,150,178],linux:[7,25,194],list:[2,19,82],liter:171,load:[76,100,147,214,217],localstatedir:28,locat:[0,155,180,213,221],lock:0,lock_acquir:101,lock_clear:102,lock_releas:103,log:[28,151,173,199],log_level:104,log_put:105,log_reopen:106,logic:[170,171],logical_count:107,logical_paramet:108,logical_range_filt:109,logical_select:110,logical_shard_list:111,logical_t:[107,109,110,111,112],logical_table_remov:112,longitud:[0,211],longtext:195,lz4:28,mac:27,macport:27,mail:[2,19],make:[6,7,12,28],manual:43,match:[28,170,171],match_column:[110,128,164,216],match_escalation_threshold:[110,128],max:[83,107,109,110,112,137,153,194],max_bord:[107,109,110,112,153],max_map_count:194,maxfileperproc:194,memcach:202,memori:[194,209],messag:28,message_pack_install_prefix:28,messagepack:79,micro:217,min:[107,109,110,112,153],min_bord:[107,109,110,112,153],mmap:209,mode:[11,136,138,145],modul:147,modulo:171,mroonga:0,multi:199,multipl:[171,212,216],munin:28,name:[90,115,116,117,132,134,135,148,149,195,216],narrow:221,nest:216,new_nam:[90,135],nginx:147,nofil:194,normal:[76,113,127,132,138,174],normalizer_list:114,normalizer_nam:158,normalizerauto:174,normalizernfkc51:174,not_equ:11,now:162,number:[28,128,194],numer:211,object:171,object_exist:115,object_inspect:116,object_remov:117,offlin:172,offset:[109,110,128],old:33,onlin:172,open:194,open_tagn:158,oper:[171,175,214],option:[86,91,92,93,94,98,99,107,108,109,110,111,112,113,115,116,117,127,130,136,137,138,145,149,150,151,155,159,164,183,184],oracl:29,order:109,origin:171,other:[28,181],output:[17,79,110,128,178,214],output_column:[109,110,128],overcommit_memori:194,overview:[0,69,211],pack:28,packag:[28,30,203],page:128,paramet:[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,120,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,145,150,151,153,155,158,159,160,161,163,164,167,168,183,184,194,216],patch:17,path:[28,126,199],patricia:219,per:194,perform:[147,199],period:42,persist:191,person:30,phrase:170,platform:28,plugin:[28,70,127],plugin_regist:118,plugin_unregist:119,point1:155,point2:155,point:171,post:[147,199,217],ppa:30,prefix:[11,28,170,171,177,187,199,219],prefix_rk_search:163,prepar:220,pretti:80,primari:[195,219],print:80,process:[173,194],protocol:[202,205,218],proxi:147,proxy_cach:147,pseudo:74,pull:17,quantifi:181,queri:[0,110,128,147,163,164,170,173,179,220],query_expand:[110,128,164],query_expans:128,query_flag:[110,128],query_str:164,query_typ:205,queryexpandertsv:180,quit:120,rand:165,rang:[132,214],range_filt:121,range_index:108,read:[0,177,187],record:[128,191,214],recov:143,rectangl:155,recurs:99,red:12,refer:[43,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,76,211,213],regist:122,regular:[170,171,181],reindex:123,relat:[109,110,128,147,151,216],relationship:213,releas:[33,37,38,39,40,41],remot:218,report:19,repositori:[5,6,7,8,13,17],request:[17,81,147,150],request_cancel:124,requir:[86,88,90,91,92,93,94,99,107,108,109,110,111,112,113,115,116,117,124,127,128,130,134,135,136,137,138,140,150,155,159,160,164,183,184],resolut:213,resolv:44,resourc:134,restart:203,result:[212,214],revers:[147,213],right:171,romaji:177,room:2,ruby_ev:125,ruby_load:126,rule:185,run:[6,7,8,18,197,205,218],sampl:[170,171],scalar:75,schema:127,scope:167,score:128,scorer:[110,128,182,221],scorer_tf_at_most:183,scorer_tf_idf:184,script:[125,171],search:[0,76,110,128,170,171,176,177,187,188,190,213,214,215,216,217,219,220,221],secur:[171,218],see:[6,7,8,44,79,81,82,83,85,88,91,92,93,95,97,100,101,103,104,105,106,111,113,114,118,119,121,122,124,125,126,127,128,131,132,136,138,139,149,158,159,163,164,166,167,169,174,177,180,183,184,191,192,205],select:[110,128],send:[17,218],senna:42,server:[0,145,148,196,203,205,218],set:[147,150],sharabl:0,shard:185,shard_kei:[107,109,110,112],shift:171,shorttext:195,shut:147,shutdown:129,sign:171,similar:[11,171,188],simpl:[110,128],size:205,snippet_html:166,softwar:[6,7,8,18],solari:29,solut:209,sort:[212,214,221],sortbi:[110,128],sourc:[24,25,26,27,28,30,31,127],specif:[147,204,216,217],specifi:[155,195,214],sphere:155,standalon:145,start:203,statu:[130,149,205],stop:203,storag:0,store:[0,132],string:[113,136,138,171,211],style:128,sub_filt:167,submit:19,substitution_t:164,subtract:171,succeeded_or_not:[91,93,101,103],success:79,suffix:[11,170,171,219],suggest:[131,149,150,151,186,189,190],summari:[44,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,73,75,76,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,145,147,148,150,151,153,155,158,159,160,161,163,164,166,167,168,174,177,180,181,182,183,184,185,191,192,193,194,197],support:176,synopsi:[147,148,150,151],synopsti:149,syntax:[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,145,153,155,158,159,160,161,163,164,166,167,168,170,171,181,183,184,221],tabl:[32,86,88,90,98,116,127,128,132,136,151,191,195,214,216,217],table_cr:132,table_dat_kei:191,table_hash_kei:191,table_key_max_total_s:116,table_key_total_s:116,table_key_typ:116,table_list:133,table_n_record:116,table_nam:116,table_no_kei:191,table_pat_kei:191,table_remov:134,table_renam:135,table_token:136,table_type_id:116,table_type_nam:116,table_value_typ:116,tag:[132,213,217],target:[143,168],target_nam:[99,101,102,103,123,140],target_valu:161,temporari:191,term:171,termin:205,text:[0,159,170,195,214,215,216,221],than:[170,171],thank:[33,37,38,39,40,41],thread_limit:137,threshold:28,time:[171,195,211,217],to_nam:86,to_tabl:86,todo:[164,166],token:[0,127,138,192,193],token_filt:[127,132,138],tokenbigram:193,tokenbigramignoreblank:193,tokenbigramignoreblanksplitsymbol:193,tokenbigramignoreblanksplitsymbolalpha:193,tokenbigramignoreblanksplitsymbolalphadigit:193,tokenbigramsplitsymbol:193,tokenbigramsplitsymbolalpha:193,tokenbigramsplitsymbolalphadigit:193,tokendelimit:193,tokendelimitnul:193,tokenfilterstem:192,tokenfilterstopword:192,tokenizer_list:139,tokenizs:193,tokenmecab:193,tokenregexp:193,tokentrigram:193,tokenunigram:193,tokyogeopoint:195,tool:[28,147,218],topic:15,total:128,tracker:19,transfer:218,translat:17,travi:21,trie:219,truncat:140,tsv:[79,180],tune:194,tutori:210,twitter:2,type:[116,127,195,211,217],type_id:116,type_id_of_typ:116,type_nam:116,type_name_of_typ:116,type_s:116,ubuntu:30,uint16:195,uint32:195,uint64:195,uint8:195,unix:7,unremov:134,unsign:171,updat:[0,12,17,18,187],upgrad:199,usag:[44,73,75,76,80,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,143,145,147,150,151,153,155,158,159,160,161,163,164,166,167,168,177,178,180,181,182,183,184,194],use_html_escap:158,use_range_index:109,user:217,valu:[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,148,150,153,155,158,159,160,161,163,164,166,167,168,183,184,217],value_typ:132,variou:[211,221],vector:[76,211],vector_s:168,version:[78,199],view:214,weight:[76,216],wgs84geopoint:195,what:193,wheezi:25,who:217,window:[8,31],without:199,work:[17,187,188,190],worker_process:147,xml:79,xor:171,your:17,zip:31,zlib:28}})
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5. Server &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>5. Server &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="index.html" />
29
29
  <link rel="next" title="5.1. Server packages" href="server/package.html" />
30
30
  <link rel="prev" title="4.11. Query expansion" href="tutorial/query_expansion.html" />
31
31
  </head>
@@ -59,7 +59,7 @@
59
59
  <li class="right" >
60
60
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
61
61
  accesskey="P">previous</a> |</li>
62
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
62
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
63
63
  </ul>
64
64
  </div>
65
65
 
@@ -142,11 +142,11 @@
142
142
  <li class="right" >
143
143
  <a href="tutorial/query_expansion.html" title="4.11. Query expansion"
144
144
  >previous</a> |</li>
145
- <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
145
+ <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
146
146
  </ul>
147
147
  </div>
148
148
  <div class="footer" role="contentinfo">
149
- &copy; Copyright 2009-2015, Brazil, Inc.
149
+ &copy; Copyright 2009-2016, Brazil, Inc.
150
150
  </div>
151
151
  </body>
152
152
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.3. GQTP &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>5.3. GQTP &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.4. Memcached binary protocol" href="memcached.html" />
31
31
  <link rel="prev" title="5.2.3. groonga-httpd" href="http/groonga-httpd.html" />
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
62
62
  accesskey="P">previous</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
64
64
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -100,12 +100,12 @@ HTTP client libraries.</p>
100
100
  <h2>5.3.2. How to run<a class="headerlink" href="#how-to-run" title="Permalink to this headline">¶</a></h2>
101
101
  <p><a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> is a GQTP server implementation.
102
102
  You can run a Groonga server by the following command line:</p>
103
- <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -s [options] DB_PATH
103
+ <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -s [options] DB_PATH
104
104
  </pre></div>
105
105
  </div>
106
106
  <p>You can run a Groonga server as a daemon by the following command
107
107
  line:</p>
108
- <div class="highlight-none"><div class="highlight"><pre>groonga --protocol gqtp -d [options] DB_PATH
108
+ <div class="highlight-none"><div class="highlight"><pre><span></span>groonga --protocol gqtp -d [options] DB_PATH
109
109
  </pre></div>
110
110
  </div>
111
111
  <p>See <a class="reference internal" href="../reference/executables/groonga.html"><em>groonga executable file</em></a> for available <code class="docutils literal"><span class="pre">options</span></code>.</p>
@@ -169,12 +169,12 @@ line:</p>
169
169
  <li class="right" >
170
170
  <a href="http/groonga-httpd.html" title="5.2.3. groonga-httpd"
171
171
  >previous</a> |</li>
172
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
172
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
173
173
  <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &raquo;</li>
174
174
  </ul>
175
175
  </div>
176
176
  <div class="footer" role="contentinfo">
177
- &copy; Copyright 2009-2015, Brazil, Inc.
177
+ &copy; Copyright 2009-2016, Brazil, Inc.
178
178
  </div>
179
179
  </body>
180
180
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2. HTTP &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>5.2. HTTP &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="../index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="../index.html" />
29
29
  <link rel="up" title="5. Server" href="../server.html" />
30
30
  <link rel="next" title="5.2.1. Comparison" href="http/comparison.html" />
31
31
  <link rel="prev" title="5.1. Server packages" href="package.html" />
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="package.html" title="5.1. Server packages"
62
62
  accesskey="P">previous</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
64
64
  <li class="nav-item nav-item-1"><a href="../server.html" accesskey="U">5. Server</a> &raquo;</li>
65
65
  </ul>
66
66
  </div>
@@ -153,12 +153,12 @@ implementation. It is also fast and has many HTTP features.</p>
153
153
  <li class="right" >
154
154
  <a href="package.html" title="5.1. Server packages"
155
155
  >previous</a> |</li>
156
- <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
156
+ <li class="nav-item nav-item-0"><a href="../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
157
157
  <li class="nav-item nav-item-1"><a href="../server.html" >5. Server</a> &raquo;</li>
158
158
  </ul>
159
159
  </div>
160
160
  <div class="footer" role="contentinfo">
161
- &copy; Copyright 2009-2015, Brazil, Inc.
161
+ &copy; Copyright 2009-2016, Brazil, Inc.
162
162
  </div>
163
163
  </body>
164
164
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.1. Comparison &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>5.2.1. Comparison &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.2.2. groonga" href="groonga.html" />
31
31
  <link rel="prev" title="5.2. HTTP" href="../http.html" />
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="../http.html" title="5.2. HTTP"
62
62
  accesskey="P">previous</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
64
64
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
65
65
  <li class="nav-item nav-item-2"><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
@@ -153,7 +153,7 @@ default. If you have 8 CPU cores, 8 threads are used by default.</p>
153
153
  <a class="reference external" href="http://nginx.org/en/docs/ngx_core_module.html#worker_processes">worker_processes</a>
154
154
  directive to use CPU cores. If you have 8 CPU cores, specify
155
155
  <code class="docutils literal"><span class="pre">worker_processes</span> <span class="pre">8</span></code> in configuration file like the following:</p>
156
- <div class="highlight-none"><div class="highlight"><pre>worker_processes 8;
156
+ <div class="highlight-none"><div class="highlight"><pre><span></span>worker_processes 8;
157
157
 
158
158
  http {
159
159
  # ...
@@ -170,13 +170,13 @@ configuration items.</p>
170
170
  <p>It's very easy to run groonga HTTP server because <a class="reference internal" href="groonga.html"><em>groonga</em></a>
171
171
  requires just a few options to run. Here is the most simple command
172
172
  line to start HTTP server by <a class="reference internal" href="groonga.html"><em>groonga</em></a>:</p>
173
- <div class="highlight-none"><div class="highlight"><pre>% groonga --protocol http -d /PATH/TO/DATABASE
173
+ <div class="highlight-none"><div class="highlight"><pre><span></span>% groonga --protocol http -d /PATH/TO/DATABASE
174
174
  </pre></div>
175
175
  </div>
176
176
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> requires configuration file to run. Here is the
177
177
  most simple configuration file to start HTTP server by
178
178
  <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a>:</p>
179
- <div class="highlight-none"><div class="highlight"><pre>events {
179
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
180
180
  }
181
181
 
182
182
  http {
@@ -200,7 +200,7 @@ prefix path <code class="docutils literal"><span class="pre">/d/</span></code>.<
200
200
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> can custom prefix path. For example, you can use
201
201
  <code class="docutils literal"><span class="pre">http://localhost:10041/api/status</span></code> as command URL. Here is a sample
202
202
  configuration to use <code class="docutils literal"><span class="pre">/api/</span></code> as prefix path:</p>
203
- <div class="highlight-none"><div class="highlight"><pre>events {
203
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
204
204
  }
205
205
 
206
206
  http {
@@ -218,12 +218,12 @@ http {
218
218
  </div>
219
219
  <div class="section" id="custom-command-version">
220
220
  <h2>5.2.1.5. Custom command version<a class="headerlink" href="#custom-command-version" title="Permalink to this headline">¶</a></h2>
221
- <p>Groonga has <a class="reference internal" href="../../reference/command/command_version.html"><em>コマンドバージョン</em></a> mechanism. It is for
221
+ <p>Groonga has <a class="reference internal" href="../../reference/command/command_version.html"><em>Command version</em></a> mechanism. It is for
222
222
  upgrading groonga commands with backward compatibility.</p>
223
223
  <p><a class="reference internal" href="groonga.html"><em>groonga</em></a> can change the default command veresion by
224
224
  <code class="docutils literal"><span class="pre">--default-command-version</span></code> option. Here is a sample command line to
225
225
  use command version 2 as the default command version:</p>
226
- <div class="highlight-none"><div class="highlight"><pre>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
226
+ <div class="highlight-none"><div class="highlight"><pre><span></span>% groonga --protocol http --default-command-version 2 -d /PATH/TO/DATABASE
227
227
  </pre></div>
228
228
  </div>
229
229
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> cannot custom the default command version
@@ -232,7 +232,7 @@ provides different command version groonga commands in the same
232
232
  <a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> process. Here is a sample configuration to
233
233
  provide command version 1 commands under <code class="docutils literal"><span class="pre">/api/1/</span></code> and command
234
234
  version 2 comamnds under <code class="docutils literal"><span class="pre">/api/2/</span></code>:</p>
235
- <div class="highlight-none"><div class="highlight"><pre>events {
235
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
236
236
  }
237
237
 
238
238
  http {
@@ -261,7 +261,7 @@ http {
261
261
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> can use one or more databases in a process. Here
262
262
  is a sample configuration to provide <code class="docutils literal"><span class="pre">/tmp/db1</span></code> database under
263
263
  <code class="docutils literal"><span class="pre">/db1/</span></code> path and <code class="docutils literal"><span class="pre">/tmp/db2</span></code> database under <code class="docutils literal"><span class="pre">/db2/</span></code> path:</p>
264
- <div class="highlight-none"><div class="highlight"><pre>events {
264
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
265
265
  }
266
266
 
267
267
  http {
@@ -293,7 +293,7 @@ needed.</p>
293
293
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> supports basic authentication. Here is a sample
294
294
  configuration to restrict use of <a class="reference internal" href="../../reference/commands/shutdown.html"><em>shutdown</em></a>
295
295
  command:</p>
296
- <div class="highlight-none"><div class="highlight"><pre>events {
296
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
297
297
  }
298
298
 
299
299
  http {
@@ -325,7 +325,7 @@ for large search response.</p>
325
325
  reverse proxy is needed.</p>
326
326
  <p><a class="reference internal" href="groonga-httpd.html"><em>groonga-httpd</em></a> supports gzip compression. Here is a sample
327
327
  configuration to compress response by gzip:</p>
328
- <div class="highlight-none"><div class="highlight"><pre>events {
328
+ <div class="highlight-none"><div class="highlight"><pre><span></span>events {
329
329
  }
330
330
 
331
331
  http {
@@ -366,7 +366,7 @@ following rules to use loading by POST.</p>
366
366
  </ul>
367
367
  <p>Here is an example curl command line that loads two users <cite>alice</cite> and
368
368
  <cite>bob</cite> to <cite>Users</cite> table:</p>
369
- <div class="highlight-none"><div class="highlight"><pre>% curl --data-binary &#39;[{&quot;_key&quot;: &quot;alice&quot;}, {&quot;_key&quot;: &quot;bob&quot;}]&#39; -H &quot;Content-Type: application/json&quot; &quot;http://localhost:10041/d/load?table=Users&quot;
369
+ <div class="highlight-none"><div class="highlight"><pre><span></span>% curl --data-binary &#39;[{&quot;_key&quot;: &quot;alice&quot;}, {&quot;_key&quot;: &quot;bob&quot;}]&#39; -H &quot;Content-Type: application/json&quot; &quot;http://localhost:10041/d/load?table=Users&quot;
370
370
  </pre></div>
371
371
  </div>
372
372
  </div>
@@ -451,13 +451,13 @@ following rules to use loading by POST.</p>
451
451
  <li class="right" >
452
452
  <a href="../http.html" title="5.2. HTTP"
453
453
  >previous</a> |</li>
454
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
454
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
455
455
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
456
456
  <li class="nav-item nav-item-2"><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
457
457
  </ul>
458
458
  </div>
459
459
  <div class="footer" role="contentinfo">
460
- &copy; Copyright 2009-2015, Brazil, Inc.
460
+ &copy; Copyright 2009-2016, Brazil, Inc.
461
461
  </div>
462
462
  </body>
463
463
  </html>
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>5.2.3. groonga-httpd &mdash; Groonga v5.1.0-71-g748d76e documentation</title>
10
+ <title>5.2.3. groonga-httpd &mdash; Groonga v5.1.2-250-gb1f40be documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
13
13
  <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: '../../',
18
- VERSION: '5.1.0-71-g748d76e',
18
+ VERSION: '5.1.2-250-gb1f40be',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -25,7 +25,7 @@
25
25
  <script type="text/javascript" src="../../_static/underscore.js"></script>
26
26
  <script type="text/javascript" src="../../_static/doctools.js"></script>
27
27
  <link rel="shortcut icon" href="../../_static/favicon.ico"/>
28
- <link rel="top" title="Groonga v5.1.0-71-g748d76e documentation" href="../../index.html" />
28
+ <link rel="top" title="Groonga v5.1.2-250-gb1f40be documentation" href="../../index.html" />
29
29
  <link rel="up" title="5.2. HTTP" href="../http.html" />
30
30
  <link rel="next" title="5.3. GQTP" href="../gqtp.html" />
31
31
  <link rel="prev" title="5.2.2. groonga" href="groonga.html" />
@@ -60,7 +60,7 @@
60
60
  <li class="right" >
61
61
  <a href="groonga.html" title="5.2.2. groonga"
62
62
  accesskey="P">previous</a> |</li>
63
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
63
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
64
64
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
65
65
  <li class="nav-item nav-item-2"><a href="../http.html" accesskey="U">5.2. HTTP</a> &raquo;</li>
66
66
  </ul>
@@ -124,13 +124,13 @@
124
124
  <li class="right" >
125
125
  <a href="groonga.html" title="5.2.2. groonga"
126
126
  >previous</a> |</li>
127
- <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.0-71-g748d76e documentation</a> &raquo;</li>
127
+ <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v5.1.2-250-gb1f40be documentation</a> &raquo;</li>
128
128
  <li class="nav-item nav-item-1"><a href="../../server.html" >5. Server</a> &raquo;</li>
129
129
  <li class="nav-item nav-item-2"><a href="../http.html" >5.2. HTTP</a> &raquo;</li>
130
130
  </ul>
131
131
  </div>
132
132
  <div class="footer" role="contentinfo">
133
- &copy; Copyright 2009-2015, Brazil, Inc.
133
+ &copy; Copyright 2009-2016, Brazil, Inc.
134
134
  </div>
135
135
  </body>
136
136
  </html>