rroonga 5.0.1-x86-mingw32 → 5.0.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (731) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +1 -1
  3. data/ext/groonga/rb-grn-logger.c +159 -3
  4. data/ext/groonga/rb-grn-plugin.c +17 -1
  5. data/ext/groonga/rb-grn-query-logger.c +129 -3
  6. data/ext/groonga/rb-grn.h +1 -1
  7. data/lib/1.9/groonga.so +0 -0
  8. data/lib/2.0/groonga.so +0 -0
  9. data/lib/2.1/groonga.so +0 -0
  10. data/lib/2.2/groonga.so +0 -0
  11. data/lib/groonga/query-logger.rb +48 -3
  12. data/lib/groonga/schema.rb +16 -3
  13. data/rroonga-build.rb +3 -3
  14. data/test/test-logger.rb +97 -2
  15. data/test/test-plugin.rb +5 -1
  16. data/test/test-query-logger.rb +149 -0
  17. data/test/test-schema.rb +19 -0
  18. data/vendor/local/bin/grndb.exe +0 -0
  19. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  20. data/vendor/local/bin/groonga.exe +0 -0
  21. data/vendor/local/bin/libgroonga-0.dll +0 -0
  22. data/vendor/local/bin/libmecab-1.dll +0 -0
  23. data/vendor/local/bin/libmsgpack-4.dll +0 -0
  24. data/vendor/local/bin/libmsgpackc-2.dll +0 -0
  25. data/vendor/local/bin/libonig-5.dll +0 -0
  26. data/vendor/local/bin/lz4.exe +0 -0
  27. data/vendor/local/bin/lz4c.exe +0 -0
  28. data/vendor/local/bin/lz4cat +0 -0
  29. data/vendor/local/bin/mecab-config +2 -2
  30. data/vendor/local/bin/mecab.exe +0 -0
  31. data/vendor/local/bin/onig-config +1 -1
  32. data/vendor/local/bin/zlib1.dll +0 -0
  33. data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
  34. data/vendor/local/include/groonga/groonga.h +1 -0
  35. data/vendor/local/include/groonga/groonga/groonga.h +12 -6
  36. data/vendor/local/include/groonga/groonga/portability.h +158 -0
  37. data/vendor/local/include/msgpack.h +1 -0
  38. data/vendor/local/include/msgpack.hpp +2 -1
  39. data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
  40. data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
  41. data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
  42. data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
  43. data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
  44. data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
  45. data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
  46. data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
  47. data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
  48. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
  49. data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
  50. data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
  51. data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
  52. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
  53. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
  54. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
  55. data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
  56. data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
  57. data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
  58. data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
  59. data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
  60. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
  61. data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
  62. data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
  63. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
  64. data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
  65. data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
  66. data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
  67. data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
  68. data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
  69. data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
  70. data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
  71. data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
  72. data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
  73. data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
  74. data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
  75. data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
  76. data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
  77. data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
  78. data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
  79. data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
  80. data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
  81. data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
  82. data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
  83. data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
  84. data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
  85. data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
  86. data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
  87. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
  88. data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
  89. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
  90. data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
  91. data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
  92. data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
  93. data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
  94. data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
  95. data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
  96. data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
  97. data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
  98. data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
  99. data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
  100. data/vendor/local/include/msgpack/fbuffer.h +3 -4
  101. data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
  102. data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
  103. data/vendor/local/include/msgpack/iterator.hpp +42 -0
  104. data/vendor/local/include/msgpack/object.h +51 -30
  105. data/vendor/local/include/msgpack/object.hpp +564 -273
  106. data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
  107. data/vendor/local/include/msgpack/pack.h +23 -17
  108. data/vendor/local/include/msgpack/pack.hpp +889 -164
  109. data/vendor/local/include/msgpack/pack_define.h +2 -2
  110. data/vendor/local/include/msgpack/pack_template.h +452 -356
  111. data/vendor/local/include/msgpack/sbuffer.h +43 -37
  112. data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
  113. data/vendor/local/include/msgpack/sysdep.h +48 -53
  114. data/vendor/local/include/msgpack/type.hpp +35 -17
  115. data/vendor/local/include/msgpack/unpack.h +62 -44
  116. data/vendor/local/include/msgpack/unpack.hpp +1578 -217
  117. data/vendor/local/include/msgpack/unpack_define.h +49 -47
  118. data/vendor/local/include/msgpack/unpack_template.h +344 -284
  119. data/vendor/local/include/msgpack/util.h +23 -0
  120. data/vendor/local/include/msgpack/version.h +12 -6
  121. data/vendor/local/include/msgpack/version.hpp +44 -0
  122. data/vendor/local/include/msgpack/version_master.h +3 -0
  123. data/vendor/local/include/msgpack/versioning.hpp +77 -0
  124. data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
  125. data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
  126. data/vendor/local/include/msgpack/zbuffer.h +79 -79
  127. data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
  128. data/vendor/local/include/msgpack/zone.h +65 -42
  129. data/vendor/local/include/msgpack/zone.hpp +10 -445
  130. data/vendor/local/include/msgpack_fwd.hpp +28 -0
  131. data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
  132. data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
  133. data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
  134. data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
  135. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  136. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
  137. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  138. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
  139. data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
  140. data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
  141. data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
  142. data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
  143. data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
  144. data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
  145. data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
  146. data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
  147. data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
  148. data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
  149. data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
  150. data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
  151. data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -0
  152. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  153. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
  154. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  155. data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
  156. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  157. data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
  158. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  159. data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
  160. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
  161. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
  162. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
  163. data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
  164. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  165. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
  166. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  167. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
  168. data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
  169. data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
  170. data/vendor/local/lib/libgroonga.a +0 -0
  171. data/vendor/local/lib/libgroonga.dll.a +0 -0
  172. data/vendor/local/lib/libgroonga.la +2 -2
  173. data/vendor/local/lib/liblz4.a +0 -0
  174. data/vendor/local/lib/liblz4.dll +0 -0
  175. data/vendor/local/lib/liblz4.dll.1 +0 -0
  176. data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
  177. data/vendor/local/lib/libmecab.a +0 -0
  178. data/vendor/local/lib/libmecab.dll.a +0 -0
  179. data/vendor/local/lib/libmecab.la +2 -2
  180. data/vendor/local/lib/libmsgpack.a +0 -0
  181. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  182. data/vendor/local/lib/libmsgpack.la +4 -4
  183. data/vendor/local/lib/libmsgpackc.a +0 -0
  184. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  185. data/vendor/local/lib/libmsgpackc.la +2 -2
  186. data/vendor/local/lib/libonig.a +0 -0
  187. data/vendor/local/lib/libonig.dll.a +0 -0
  188. data/vendor/local/lib/libonig.la +2 -2
  189. data/vendor/local/lib/libz.a +0 -0
  190. data/vendor/local/lib/libz.dll.a +0 -0
  191. data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
  192. data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
  193. data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
  194. data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
  195. data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
  196. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  197. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  198. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  199. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  200. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  201. data/vendor/local/sbin/groonga-httpd-restart +1 -1
  202. data/vendor/local/sbin/groonga-httpd.exe +0 -0
  203. data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
  204. data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +69 -52
  205. data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
  206. data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
  207. data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
  208. data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
  209. data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +7 -7
  210. data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
  211. data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
  212. data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
  213. data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
  214. data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
  215. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
  216. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
  217. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
  218. data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
  219. data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
  220. data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
  221. data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
  222. data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
  223. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
  224. data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
  225. data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
  226. data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
  227. data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
  228. data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
  229. data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
  230. data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
  231. data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
  232. data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
  233. data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
  234. data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
  235. data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
  236. data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
  237. data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
  238. data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
  239. data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
  240. data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
  241. data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
  242. data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
  243. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
  244. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
  245. data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
  246. data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
  247. data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
  248. data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
  249. data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
  250. data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
  251. data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
  252. data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
  253. data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
  254. data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
  255. data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
  256. data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
  257. data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
  258. data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
  259. data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
  260. data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
  261. data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
  262. data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
  263. data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
  264. data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
  265. data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
  266. data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
  267. data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
  268. data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
  269. data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
  270. data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
  271. data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
  272. data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
  273. data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
  274. data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
  275. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
  276. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
  277. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
  278. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
  279. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
  280. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
  281. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
  282. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
  283. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
  284. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
  285. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
  286. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
  287. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
  288. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
  289. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
  290. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
  291. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
  292. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
  293. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
  294. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
  295. data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
  296. data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
  297. data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
  298. data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
  299. data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
  300. data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
  301. data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
  302. data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
  303. data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
  304. data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
  305. data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
  306. data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
  307. data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
  308. data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
  309. data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
  310. data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
  311. data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
  312. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
  313. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
  314. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
  315. data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
  316. data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
  317. data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
  318. data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
  319. data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
  320. data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
  321. data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
  322. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
  323. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
  324. data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
  325. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
  326. data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
  327. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
  328. data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
  329. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
  330. data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
  331. data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
  332. data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
  333. data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
  334. data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
  335. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
  336. data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
  337. data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
  338. data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
  339. data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
  340. data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
  341. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
  342. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
  343. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
  344. data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
  345. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
  346. data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
  347. data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
  348. data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
  349. data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
  350. data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
  351. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
  352. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
  353. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
  354. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  355. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
  356. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
  357. data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
  358. data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
  359. data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
  360. data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
  361. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
  362. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
  363. data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
  364. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
  365. data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
  366. data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
  367. data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
  368. data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
  369. data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
  370. data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
  371. data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
  372. data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
  373. data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
  374. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
  375. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
  376. data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
  377. data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
  378. data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
  379. data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
  380. data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
  381. data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
  382. data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
  383. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
  384. data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
  385. data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
  386. data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
  387. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
  388. data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
  389. data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
  390. data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
  391. data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
  392. data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
  393. data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
  394. data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
  395. data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
  396. data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
  397. data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
  398. data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
  399. data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
  400. data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
  401. data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
  402. data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
  403. data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
  404. data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
  405. data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
  406. data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
  407. data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
  408. data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
  409. data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
  410. data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
  411. data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
  412. data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
  413. data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
  414. data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  415. data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  416. data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
  417. data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
  418. data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
  419. data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
  420. data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
  421. data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
  422. data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
  423. data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
  424. data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
  425. data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
  426. data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
  427. data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
  428. data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
  429. data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
  430. data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
  431. data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
  432. data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
  433. data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
  434. data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +7 -7
  435. data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
  436. data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
  437. data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
  438. data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
  439. data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
  440. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
  441. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
  442. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
  443. data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
  444. data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
  445. data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
  446. data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
  447. data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
  448. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
  449. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
  450. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
  451. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
  452. data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
  453. data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
  454. data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
  455. data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
  456. data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
  457. data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
  458. data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
  459. data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
  460. data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
  461. data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
  462. data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
  463. data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
  464. data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
  465. data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
  466. data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
  467. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
  468. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
  469. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
  470. data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
  471. data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
  472. data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
  473. data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
  474. data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
  475. data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
  476. data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
  477. data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
  478. data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
  479. data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
  480. data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
  481. data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
  482. data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
  483. data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
  484. data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
  485. data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
  486. data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
  487. data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
  488. data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
  489. data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
  490. data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
  491. data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
  492. data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
  493. data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
  494. data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
  495. data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
  496. data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
  497. data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
  498. data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
  499. data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
  500. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
  501. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
  502. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
  503. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
  504. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
  505. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
  506. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
  507. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
  508. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
  509. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
  510. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
  511. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
  512. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
  513. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
  514. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
  515. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
  516. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
  517. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
  518. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
  519. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
  520. data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
  521. data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
  522. data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
  523. data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
  524. data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
  525. data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
  526. data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
  527. data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
  528. data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
  529. data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
  530. data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
  531. data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
  532. data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
  533. data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
  534. data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
  535. data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
  536. data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
  537. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
  538. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
  539. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
  540. data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
  541. data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
  542. data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
  543. data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
  544. data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
  545. data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
  546. data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
  547. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
  548. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
  549. data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
  550. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
  551. data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
  552. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
  553. data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
  554. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
  555. data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
  556. data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
  557. data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
  558. data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
  559. data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
  560. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
  561. data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
  562. data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
  563. data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
  564. data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
  565. data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
  566. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
  567. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
  568. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
  569. data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
  570. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
  571. data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
  572. data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
  573. data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
  574. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
  575. data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
  576. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
  577. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
  578. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
  579. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
  580. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
  581. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
  582. data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
  583. data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
  584. data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
  585. data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
  586. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
  587. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
  588. data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
  589. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
  590. data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
  591. data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
  592. data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
  593. data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
  594. data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
  595. data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
  596. data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
  597. data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
  598. data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
  599. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
  600. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
  601. data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
  602. data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
  603. data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
  604. data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
  605. data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
  606. data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
  607. data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
  608. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
  609. data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
  610. data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
  611. data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
  612. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
  613. data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
  614. data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
  615. data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
  616. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
  617. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
  618. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
  619. data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
  620. data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
  621. data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
  622. data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
  623. data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
  624. data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
  625. data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
  626. data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
  627. data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
  628. data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
  629. data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
  630. data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
  631. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
  632. data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
  633. data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
  634. data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
  635. data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
  636. data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
  637. data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
  638. data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
  639. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
  640. data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
  641. data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
  642. data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
  643. data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
  644. data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
  645. data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
  646. data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
  647. data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
  648. data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
  649. data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
  650. data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
  651. data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
  652. data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
  653. data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
  654. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  655. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  656. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  657. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  658. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  659. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  660. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  661. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  662. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  663. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  664. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  665. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  666. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  667. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  668. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  669. data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
  670. data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
  671. data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
  672. data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
  673. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
  674. data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
  675. data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
  676. data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
  677. data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
  678. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
  679. data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
  680. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
  681. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
  682. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
  683. data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
  684. data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
  685. data/vendor/local/share/groonga/html/admin/404.html +133 -0
  686. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  687. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
  688. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  689. data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  690. data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
  691. data/vendor/local/share/groonga/html/admin/index.html +9 -297
  692. data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
  693. data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
  694. data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
  695. data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
  696. data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
  697. data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
  698. data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
  699. data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
  700. data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
  701. data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
  702. data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
  703. data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
  704. data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
  705. data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
  706. data/vendor/local/share/license/groonga-admin/README.md +79 -0
  707. data/vendor/local/share/license/msgpack/AUTHORS +0 -1
  708. data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
  709. data/vendor/local/share/man/man1/groonga.1 +812 -99
  710. metadata +138 -55
  711. data/doc/text/install.textile +0 -145
  712. data/doc/text/tutorial.textile +0 -510
  713. data/vendor/local/bin/libmsgpack-3.dll +0 -0
  714. data/vendor/local/include/msgpack/type/define.hpp +0 -3465
  715. data/vendor/local/include/msgpack/type/deque.hpp +0 -77
  716. data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
  717. data/vendor/local/include/msgpack/type/float.hpp +0 -102
  718. data/vendor/local/include/msgpack/type/int.hpp +0 -276
  719. data/vendor/local/include/msgpack/type/list.hpp +0 -77
  720. data/vendor/local/include/msgpack/type/map.hpp +0 -205
  721. data/vendor/local/include/msgpack/type/raw.hpp +0 -94
  722. data/vendor/local/include/msgpack/type/set.hpp +0 -122
  723. data/vendor/local/include/msgpack/type/string.hpp +0 -62
  724. data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
  725. data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
  726. data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
  727. data/vendor/local/include/msgpack/type/vector.hpp +0 -81
  728. data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
  729. data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
  730. data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
  731. data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
@@ -1,6 +1,6 @@
1
1
  .\" Man page generated from reStructuredText.
2
2
  .
3
- .TH "GROONGA" "1" "March 31, 2015" "5.0.2" "Groonga"
3
+ .TH "GROONGA" "1" "April 28, 2015" "5.0.3" "Groonga"
4
4
  .SH NAME
5
5
  groonga \- Groonga documentation
6
6
  .
@@ -110,7 +110,7 @@ packages.groonga.org:
110
110
  .INDENT 3.5
111
111
  .INDENT 0.0
112
112
  .IP \(bu 2
113
- \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.2\-x86.exe\fP
113
+ \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x86.exe\fP
114
114
  .UNINDENT
115
115
  .UNINDENT
116
116
  .UNINDENT
@@ -123,7 +123,7 @@ packages.goronga.org:
123
123
  .INDENT 3.5
124
124
  .INDENT 0.0
125
125
  .IP \(bu 2
126
- \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.2\-x64.exe\fP
126
+ \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x64.exe\fP
127
127
  .UNINDENT
128
128
  .UNINDENT
129
129
  .UNINDENT
@@ -140,7 +140,7 @@ packages.groonga.org:
140
140
  .INDENT 3.5
141
141
  .INDENT 0.0
142
142
  .IP \(bu 2
143
- \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.2\-x86.zip\fP
143
+ \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x86.zip\fP
144
144
  .UNINDENT
145
145
  .UNINDENT
146
146
  .UNINDENT
@@ -153,7 +153,7 @@ packages.groonga.org:
153
153
  .INDENT 3.5
154
154
  .INDENT 0.0
155
155
  .IP \(bu 2
156
- \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.2\-x64.zip\fP
156
+ \fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x64.zip\fP
157
157
  .UNINDENT
158
158
  .UNINDENT
159
159
  .UNINDENT
@@ -169,7 +169,7 @@ Windows. Here are required tools:
169
169
  .INDENT 3.5
170
170
  .INDENT 0.0
171
171
  .IP \(bu 2
172
- \fI\%Microsoft Visual Studio 2010 Express\fP
172
+ \fI\%Microsoft Visual Studio Express 2013 for Windows Desktop\fP
173
173
  .IP \(bu 2
174
174
  \fI\%CMake\fP
175
175
  .UNINDENT
@@ -181,7 +181,7 @@ Download zipped source from packages.groonga.org:
181
181
  .INDENT 3.5
182
182
  .INDENT 0.0
183
183
  .IP \(bu 2
184
- \fI\%http://packages.groonga.org/source/groonga/groonga\-5.0.2.zip\fP
184
+ \fI\%http://packages.groonga.org/source/groonga/groonga\-5.0.3.zip\fP
185
185
  .UNINDENT
186
186
  .UNINDENT
187
187
  .UNINDENT
@@ -194,21 +194,21 @@ Move to the Groonga\(aqs source folder:
194
194
  .sp
195
195
  .nf
196
196
  .ft C
197
- > cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-5.0.2
197
+ > cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-5.0.3
198
198
  .ft P
199
199
  .fi
200
200
  .UNINDENT
201
201
  .UNINDENT
202
202
  .sp
203
203
  Configure by \fBcmake\fP\&. The following commnad line is for 64\-bit
204
- version. To build 32\-bit version, use \fB\-G "Visual Studio 10"\fP
204
+ version. To build 32\-bit version, use \fB\-G "Visual Studio 12 2013"\fP
205
205
  parameter instead:
206
206
  .INDENT 0.0
207
207
  .INDENT 3.5
208
208
  .sp
209
209
  .nf
210
210
  .ft C
211
- groonga\-5.0.2> cmake . \-G "Visual Studio 10 Win64" \-DCMAKE_INSTALL_PREFIX=C:\egroonga
211
+ groonga\-5.0.3> cmake . \-G "Visual Studio 12 2013 Win64" \-DCMAKE_INSTALL_PREFIX=C:\eGroonga
212
212
  .ft P
213
213
  .fi
214
214
  .UNINDENT
@@ -220,7 +220,7 @@ Build:
220
220
  .sp
221
221
  .nf
222
222
  .ft C
223
- groonga\-5.0.2> cmake \-\-build . \-\-config Release
223
+ groonga\-5.0.3> cmake \-\-build . \-\-config Release
224
224
  .ft P
225
225
  .fi
226
226
  .UNINDENT
@@ -232,14 +232,14 @@ Install:
232
232
  .sp
233
233
  .nf
234
234
  .ft C
235
- groonga\-5.0.2> cmake \-\-build . \-\-config Release \-\-target Install
235
+ groonga\-5.0.3> cmake \-\-build . \-\-config Release \-\-target Install
236
236
  .ft P
237
237
  .fi
238
238
  .UNINDENT
239
239
  .UNINDENT
240
240
  .sp
241
- After the above steps, \fB/reference/executables/groonga\fP is found in
242
- \fBc:\egroonga\ebin\egroonga.exe\fP\&.
241
+ After the above steps, \fB/reference/executables/groonga\fP is found at
242
+ \fBc:\eGroonga\ebin\egroonga.exe\fP\&.
243
243
  .SS Mac OS X
244
244
  .sp
245
245
  This section describes how to install Groonga on Mac OS X. You can
@@ -294,9 +294,9 @@ Download source:
294
294
  .sp
295
295
  .nf
296
296
  .ft C
297
- % curl \-O http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
298
- % tar xvzf groonga\-5.0.2.tar.gz
299
- % cd groonga\-5.0.2
297
+ % curl \-O http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
298
+ % tar xvzf groonga\-5.0.3.tar.gz
299
+ % cd groonga\-5.0.3
300
300
  .ft P
301
301
  .fi
302
302
  .UNINDENT
@@ -429,7 +429,7 @@ Install groonga\-token\-filter\-stem package:
429
429
  .UNINDENT
430
430
  .sp
431
431
  There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
432
- groonga status by Munin, install groonga\-munin\-plugins package.
432
+ Groonga status by Munin, install groonga\-munin\-plugins package.
433
433
  .sp
434
434
  Install groonga\-munin\-plugins package:
435
435
  .INDENT 0.0
@@ -444,7 +444,121 @@ Install groonga\-munin\-plugins package:
444
444
  .UNINDENT
445
445
  .sp
446
446
  There is a package that provides MySQL compatible normalizer as
447
- groonga plugins.
447
+ a Groonga plugin.
448
+ If you want to use that one, install groonga\-normalizer\-mysql package.
449
+ .sp
450
+ Install groonga\-normalizer\-mysql package:
451
+ .INDENT 0.0
452
+ .INDENT 3.5
453
+ .sp
454
+ .nf
455
+ .ft C
456
+ % sudo apt\-get install \-y \-V groonga\-normalizer\-mysql
457
+ .ft P
458
+ .fi
459
+ .UNINDENT
460
+ .UNINDENT
461
+ .SS jessie
462
+ .sp
463
+ New in version 5.0.3.
464
+
465
+ .sp
466
+ Add the Groonga apt repository.
467
+ .sp
468
+ /etc/apt/sources.list.d/groonga.list:
469
+ .INDENT 0.0
470
+ .INDENT 3.5
471
+ .sp
472
+ .nf
473
+ .ft C
474
+ deb http://packages.groonga.org/debian/ jessie main
475
+ deb\-src http://packages.groonga.org/debian/ jessie main
476
+ .ft P
477
+ .fi
478
+ .UNINDENT
479
+ .UNINDENT
480
+ .sp
481
+ Install:
482
+ .INDENT 0.0
483
+ .INDENT 3.5
484
+ .sp
485
+ .nf
486
+ .ft C
487
+ % sudo apt\-get update
488
+ % sudo apt\-get install \-y \-\-allow\-unauthenticated groonga\-keyring
489
+ % sudo apt\-get update
490
+ % sudo apt\-get install \-y \-V groonga
491
+ .ft P
492
+ .fi
493
+ .UNINDENT
494
+ .UNINDENT
495
+ .sp
496
+ \fBNOTE:\fP
497
+ .INDENT 0.0
498
+ .INDENT 3.5
499
+ \fBgroonga\fP package is the minimum set of fulltext search engine.
500
+ If you want to use Groonga for server use, you can install
501
+ additional preconfigured packages.
502
+ .sp
503
+ There are two packages for server use.
504
+ .INDENT 0.0
505
+ .IP \(bu 2
506
+ groonga\-httpd (nginx and HTTP protocol based server package)
507
+ .IP \(bu 2
508
+ groonga\-server\-gqtp (GQTP protocol based server package)
509
+ .UNINDENT
510
+ .sp
511
+ See \fB/server\fP section about details.
512
+ .UNINDENT
513
+ .UNINDENT
514
+ .sp
515
+ If you want to use \fI\%MeCab\fP as a
516
+ tokenizer, install groonga\-tokenizer\-mecab package.
517
+ .sp
518
+ Install groonga\-tokenizer\-mecab package:
519
+ .INDENT 0.0
520
+ .INDENT 3.5
521
+ .sp
522
+ .nf
523
+ .ft C
524
+ % sudo apt\-get install \-y \-V groonga\-tokenizer\-mecab
525
+ .ft P
526
+ .fi
527
+ .UNINDENT
528
+ .UNINDENT
529
+ .sp
530
+ If you want to use \fBTokenFilterStem\fP as a token filter, install
531
+ groonga\-token\-filter\-stem package.
532
+ .sp
533
+ Install groonga\-token\-filter\-stem package:
534
+ .INDENT 0.0
535
+ .INDENT 3.5
536
+ .sp
537
+ .nf
538
+ .ft C
539
+ % sudo apt\-get install \-y \-V groonga\-token\-filter\-stem
540
+ .ft P
541
+ .fi
542
+ .UNINDENT
543
+ .UNINDENT
544
+ .sp
545
+ There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
546
+ Groonga status by Munin, install groonga\-munin\-plugins package.
547
+ .sp
548
+ Install groonga\-munin\-plugins package:
549
+ .INDENT 0.0
550
+ .INDENT 3.5
551
+ .sp
552
+ .nf
553
+ .ft C
554
+ % sudo apt\-get install \-y \-V groonga\-munin\-plugins
555
+ .ft P
556
+ .fi
557
+ .UNINDENT
558
+ .UNINDENT
559
+ .sp
560
+ There is a package that provides MySQL compatible normalizer as
561
+ a Groonga plugin.
448
562
  If you want to use that one, install groonga\-normalizer\-mysql package.
449
563
  .sp
450
564
  Install groonga\-normalizer\-mysql package:
@@ -478,9 +592,9 @@ Download source:
478
592
  .sp
479
593
  .nf
480
594
  .ft C
481
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
482
- % tar xvzf groonga\-5.0.2.tar.gz
483
- % cd groonga\-5.0.2
595
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
596
+ % tar xvzf groonga\-5.0.3.tar.gz
597
+ % cd groonga\-5.0.3
484
598
  .ft P
485
599
  .fi
486
600
  .UNINDENT
@@ -546,6 +660,8 @@ Here are supported Ubuntu versions:
546
660
  14.04 LTS Trusty Tahr
547
661
  .IP \(bu 2
548
662
  14.10 Utopic Unicorn
663
+ .IP \(bu 2
664
+ 15.04 Vivid Vervet
549
665
  .UNINDENT
550
666
  .UNINDENT
551
667
  .UNINDENT
@@ -638,7 +754,7 @@ Install groonga\-token\-filter\-stem package:
638
754
  .UNINDENT
639
755
  .sp
640
756
  There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
641
- groonga status by Munin, install groonga\-munin\-plugins package.
757
+ Groonga status by Munin, install groonga\-munin\-plugins package.
642
758
  .sp
643
759
  Install groonga\-munin\-plugins package:
644
760
  .INDENT 0.0
@@ -653,7 +769,7 @@ Install groonga\-munin\-plugins package:
653
769
  .UNINDENT
654
770
  .sp
655
771
  There is a package that provides MySQL compatible normalizer as
656
- Groonga plugins.
772
+ a Groonga plugin.
657
773
  If you want to use that one, install groonga\-normalizer\-mysql package.
658
774
  .sp
659
775
  Install groonga\-normalizer\-mysql package:
@@ -687,9 +803,9 @@ Download source:
687
803
  .sp
688
804
  .nf
689
805
  .ft C
690
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
691
- % tar xvzf groonga\-5.0.2.tar.gz
692
- % cd groonga\-5.0.2
806
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
807
+ % tar xvzf groonga\-5.0.3.tar.gz
808
+ % cd groonga\-5.0.3
693
809
  .ft P
694
810
  .fi
695
811
  .UNINDENT
@@ -856,7 +972,7 @@ Install groonga\-munin\-plugins package:
856
972
  .UNINDENT
857
973
  .sp
858
974
  There is a package that provides MySQL compatible normalizer as
859
- Groonga plugins.
975
+ a Groonga plugin.
860
976
  If you want to use that one, install groonga\-normalizer\-mysql package.
861
977
  .sp
862
978
  Install groonga\-normalizer\-mysql package:
@@ -958,7 +1074,7 @@ Install groonga\-munin\-plugins package:
958
1074
  .UNINDENT
959
1075
  .sp
960
1076
  There is a package that provides MySQL compatible normalizer as
961
- Groonga plugins.
1077
+ a Groonga plugin.
962
1078
  If you want to use that one, install groonga\-normalizer\-mysql package.
963
1079
  .sp
964
1080
  Install groonga\-normalizer\-mysql package:
@@ -1060,7 +1176,7 @@ Install groonga\-munin\-plugins package:
1060
1176
  .UNINDENT
1061
1177
  .sp
1062
1178
  There is a package that provides MySQL compatible normalizer as
1063
- Groonga plugins.
1179
+ a Groonga plugin.
1064
1180
  If you want to use that one, install groonga\-normalizer\-mysql package.
1065
1181
  .sp
1066
1182
  Install groonga\-normalizer\-mysql package:
@@ -1094,9 +1210,9 @@ Download source:
1094
1210
  .sp
1095
1211
  .nf
1096
1212
  .ft C
1097
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
1098
- % tar xvzf groonga\-5.0.2.tar.gz
1099
- % cd groonga\-5.0.2
1213
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
1214
+ % tar xvzf groonga\-5.0.3.tar.gz
1215
+ % cd groonga\-5.0.3
1100
1216
  .ft P
1101
1217
  .fi
1102
1218
  .UNINDENT
@@ -1263,7 +1379,7 @@ Install groonga\-munin\-plugins package:
1263
1379
  .UNINDENT
1264
1380
  .sp
1265
1381
  There is a package that provides MySQL compatible normalizer as
1266
- Groonga plugins.
1382
+ a Groonga plugin.
1267
1383
  If you want to use that one, install groonga\-normalizer\-mysql package.
1268
1384
  .sp
1269
1385
  Install groonga\-normalizer\-mysql package:
@@ -1297,9 +1413,9 @@ Download source:
1297
1413
  .sp
1298
1414
  .nf
1299
1415
  .ft C
1300
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
1301
- % tar xvzf groonga\-5.0.2.tar.gz
1302
- % cd groonga\-5.0.2
1416
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
1417
+ % tar xvzf groonga\-5.0.3.tar.gz
1418
+ % cd groonga\-5.0.3
1303
1419
  .ft P
1304
1420
  .fi
1305
1421
  .UNINDENT
@@ -1364,9 +1480,9 @@ Download source:
1364
1480
  .sp
1365
1481
  .nf
1366
1482
  .ft C
1367
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
1368
- % gtar xvzf groonga\-5.0.2.tar.gz
1369
- % cd groonga\-5.0.2
1483
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
1484
+ % gtar xvzf groonga\-5.0.3.tar.gz
1485
+ % cd groonga\-5.0.3
1370
1486
  .ft P
1371
1487
  .fi
1372
1488
  .UNINDENT
@@ -1458,7 +1574,7 @@ Here are optional tools:
1458
1574
  detecting libraries
1459
1575
  .IP \(bu 2
1460
1576
  \fI\%sudo\fP for installing built
1461
- groonga
1577
+ Groonga
1462
1578
  .UNINDENT
1463
1579
  .UNINDENT
1464
1580
  .UNINDENT
@@ -1506,9 +1622,9 @@ steps:
1506
1622
  .sp
1507
1623
  .nf
1508
1624
  .ft C
1509
- % wget http://packages.groonga.org/source/groonga/groonga\-5.0.2.tar.gz
1510
- % tar xvzf groonga\-5.0.2.tar.gz
1511
- % cd groonga\-5.0.2
1625
+ % wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
1626
+ % tar xvzf groonga\-5.0.3.tar.gz
1627
+ % cd groonga\-5.0.3
1512
1628
  % ./configure
1513
1629
  % make
1514
1630
  % sudo make install
@@ -1520,7 +1636,7 @@ steps:
1520
1636
  After the above steps, \fB/reference/executables/groonga\fP is found in
1521
1637
  \fB/usr/local/bin/groonga\fP\&.
1522
1638
  .sp
1523
- The default build will work well but you can customize groonga at
1639
+ The default build will work well but you can customize Groonga at
1524
1640
  \fBconfigure\fP step.
1525
1641
  .sp
1526
1642
  The following describes details about each step.
@@ -1668,7 +1784,7 @@ installed with \fB\-\-prefix=/usr\fP, you need to specify this option with
1668
1784
  path that you use for building MessagePack.
1669
1785
  .sp
1670
1786
  If you installed MessagePack with \fB\-\-prefix=$HOME/local\fP option, you
1671
- sholud specify \fB\-\-with\-message\-pack=$HOME/local\fP to groonga\(aqs
1787
+ should specify \fB\-\-with\-message\-pack=$HOME/local\fP to Groonga\(aqs
1672
1788
  \fBconfigure\fP\&.
1673
1789
  .sp
1674
1790
  The default is \fB/usr\fP\&.
@@ -1729,7 +1845,7 @@ files:
1729
1845
  Shows all \fBconfigure\fP options.
1730
1846
  .SS \fBmake\fP
1731
1847
  .sp
1732
- \fBconfigure\fP is succeeded, you can build groonga by \fBmake\fP:
1848
+ \fBconfigure\fP is succeeded, you can build Groonga by \fBmake\fP:
1733
1849
  .INDENT 0.0
1734
1850
  .INDENT 3.5
1735
1851
  .sp
@@ -5267,17 +5383,21 @@ Execution example:
5267
5383
  .sp
5268
5384
  .nf
5269
5385
  .ft C
5386
+ table_create \-\-name GeoSite \-\-flags TABLE_HASH_KEY \-\-key_type ShortText
5387
+ # [[0, 1337566253.89858, 0.000355720520019531], true]
5388
+ column_create \-\-table GeoSite \-\-name location \-\-type WGS84GeoPoint
5389
+ # [[0, 1337566253.89858, 0.000355720520019531], true]
5270
5390
  table_create \-\-name GeoIndex \-\-flags TABLE_PAT_KEY \-\-key_type WGS84GeoPoint
5271
5391
  # [[0, 1337566253.89858, 0.000355720520019531], true]
5272
- column_create \-\-table GeoIndex \-\-name index_point \-\-type Site \-\-flags COLUMN_INDEX \-\-source location
5392
+ column_create \-\-table GeoIndex \-\-name index_point \-\-type GeoSite \-\-flags COLUMN_INDEX \-\-source location
5273
5393
  # [[0, 1337566253.89858, 0.000355720520019531], true]
5274
- load \-\-table Site
5394
+ load \-\-table GeoSite
5275
5395
  [
5276
5396
  {"_key":"http://example.org/","location":"128452975x503157902"},
5277
5397
  {"_key":"http://example.net/","location":"128487316x502920929"}
5278
5398
  ]
5279
5399
  # [[0, 1337566253.89858, 0.000355720520019531], 2]
5280
- select \-\-table Site \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 5000)\(aq \-\-output_columns _key,location
5400
+ select \-\-table GeoSite \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 5000)\(aq \-\-output_columns _key,location
5281
5401
  # [
5282
5402
  # [
5283
5403
  # 0,
@@ -5319,7 +5439,7 @@ Execution example:
5319
5439
  .sp
5320
5440
  .nf
5321
5441
  .ft C
5322
- select \-\-table Site \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 50000)\(aq \-\-output_columns _key,location,_score \-\-sortby \(aq\-geo_distance(location, "128515259x503187188")\(aq \-\-scorer \(aq_score = geo_distance(location, "128515259x503187188")\(aq
5442
+ select \-\-table GeoSite \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 50000)\(aq \-\-output_columns _key,location,_score \-\-sortby \(aq\-geo_distance(location, "128515259x503187188")\(aq \-\-scorer \(aq_score = geo_distance(location, "128515259x503187188")\(aq
5323
5443
  # [
5324
5444
  # [
5325
5445
  # 0,
@@ -8420,10 +8540,70 @@ TODO
8420
8540
  .sp
8421
8541
  TODO
8422
8542
  .SS GQTP
8543
+ .SS Summary
8423
8544
  .sp
8424
- TODO
8545
+ GQTP is the acronym standing for "Groonga Query Transfer Protocol".
8546
+ .sp
8547
+ GQTP is a protocol designed for Groonga. It\(aqs a stateful
8548
+ protocol. You can send multiple commands in one session.
8549
+ .sp
8550
+ GQTP will be faster rather than \fB/server/http\fP when you send many
8551
+ light commands like \fB/reference/commands/status\fP\&. GQTP will be
8552
+ almost same performance as HTTP when you send heavy commands like
8553
+ \fB/reference/commands/select\fP\&.
8554
+ .sp
8555
+ We recommend that you use HTTP for many cases. Because there are many
8556
+ HTTP client libraries.
8557
+ .sp
8558
+ If you want to use GQTP, you can use the following libraries:
8559
+ .INDENT 0.0
8560
+ .INDENT 3.5
8561
+ .INDENT 0.0
8562
+ .IP \(bu 2
8563
+ Ruby: \fI\%groonga\-client\fP
8564
+ .IP \(bu 2
8565
+ Python: \fI\%poyonga\fP
8566
+ .IP \(bu 2
8567
+ Go: \fI\%goroo\fP
8568
+ .IP \(bu 2
8569
+ PHP: \fI\%proonga\fP
8570
+ .IP \(bu 2
8571
+ C/C++: Groonga (Groonga can be also used as library)
8572
+ .UNINDENT
8573
+ .UNINDENT
8574
+ .UNINDENT
8575
+ .sp
8576
+ It\(aqs not a library but you can use
8577
+ \fB/reference/executables/groonga\fP as a GQTP client.
8578
+ .SS How to run
8579
+ .sp
8580
+ \fB/reference/executables/groonga\fP is a GQTP server implementation.
8581
+ You can run a Groonga server by the following command line:
8582
+ .INDENT 0.0
8583
+ .INDENT 3.5
8584
+ .sp
8585
+ .nf
8586
+ .ft C
8587
+ groonga \-\-protocol gqtp \-s [options] DB_PATH
8588
+ .ft P
8589
+ .fi
8590
+ .UNINDENT
8591
+ .UNINDENT
8425
8592
  .sp
8426
- See \fB/reference/executables/groonga\fP\&.
8593
+ You can run a Groonga server as a daemon by the following command
8594
+ line:
8595
+ .INDENT 0.0
8596
+ .INDENT 3.5
8597
+ .sp
8598
+ .nf
8599
+ .ft C
8600
+ groonga \-\-protocol gqtp \-d [options] DB_PATH
8601
+ .ft P
8602
+ .fi
8603
+ .UNINDENT
8604
+ .UNINDENT
8605
+ .sp
8606
+ See \fB/reference/executables/groonga\fP for available \fBoptions\fP\&.
8427
8607
  .SS Memcached binary protocol
8428
8608
  .sp
8429
8609
  Groonga supports the memcached binary protocol. The following form shows how to run Groonga as a memcached binary protocol server daemon.
@@ -8640,20 +8820,259 @@ gqtpでリクエストします。gqtpのリクエストをLF区切り形式で
8640
8820
  .fi
8641
8821
  .UNINDENT
8642
8822
  .UNINDENT
8643
- .SS groonga command
8823
+ .SS \fBgroonga\fP executable file
8644
8824
  .SS Summary
8645
8825
  .sp
8646
- groonga \- 列指向データベース機能を持つ全文検索エンジンソフトウェア
8826
+ \fBgroonga\fP executable file provides the following features:
8827
+ .INDENT 0.0
8828
+ .INDENT 3.5
8829
+ .INDENT 0.0
8830
+ .IP \(bu 2
8831
+ Fulltext search server
8832
+ .IP \(bu 2
8833
+ Fulltext search shell
8834
+ .IP \(bu 2
8835
+ Client for Groonga fulltext search server
8836
+ .UNINDENT
8837
+ .UNINDENT
8838
+ .UNINDENT
8839
+ .sp
8840
+ Groonga can be used as a library. If you want to use Groonga as a
8841
+ library, you need to write a program in C, C++ and so on. Library use
8842
+ is useful for embedding fulltext search feature to your application,
8843
+ but it\(aqs not easy to use.
8844
+ .sp
8845
+ You can use \fBgroonga\fP executable file to get fulltext search
8846
+ feature.
8647
8847
  .sp
8648
- Groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンです。
8649
- Groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通して操作することができます。このマニュアルページでは、groongaコマンドの使い方について説明します。
8848
+ If you want to try Groonga, fulltext search shell usage is useful. You
8849
+ don\(aqt need any server and client. You just need one terminal. You can
8850
+ try Groonga like the following:
8851
+ .INDENT 0.0
8852
+ .INDENT 3.5
8853
+ .sp
8854
+ .nf
8855
+ .ft C
8856
+ % groonga \-n db
8857
+ > status
8858
+ [[0,1429687763.70845,0.000115633010864258],{"alloc_count":195,...}]
8859
+ > quit
8860
+ %
8861
+ .ft P
8862
+ .fi
8863
+ .UNINDENT
8864
+ .UNINDENT
8865
+ .sp
8866
+ If you want to create an application that has fulltext search feature,
8867
+ fulltext search server usage is useful. You can use Groonga as a
8868
+ server like RDBMS (Relational DataBase Management
8869
+ System). Client\-server model is a popular architecture.
8870
+ .sp
8871
+ Normally, client for Groonga fulltext server usage isn\(aqt used.
8650
8872
  .SS Syntax
8873
+ .sp
8874
+ \fBgroonga\fP executable file has the following four modes:
8875
+ .INDENT 0.0
8876
+ .INDENT 3.5
8877
+ .INDENT 0.0
8878
+ .IP \(bu 2
8879
+ Standalone mode
8880
+ .IP \(bu 2
8881
+ Server mode
8882
+ .IP \(bu 2
8883
+ Daemon mode
8884
+ .IP \(bu 2
8885
+ Client mode
8886
+ .UNINDENT
8887
+ .UNINDENT
8888
+ .UNINDENT
8889
+ .sp
8890
+ There are common options in these modes. These common options is
8891
+ described later section.
8892
+ .SS Standalone mode
8893
+ .sp
8894
+ In standalone mode, \fBgroonga\fP executable file runs one or more
8895
+ Groonga \fB/reference/command\fP against a local Groonga database.
8896
+ .sp
8897
+ Here is the syntax to run shell that executes Groonga command against
8898
+ temporary database:
8899
+ .INDENT 0.0
8900
+ .INDENT 3.5
8901
+ .sp
8902
+ .nf
8903
+ .ft C
8904
+ groonga [options]
8905
+ .ft P
8906
+ .fi
8907
+ .UNINDENT
8908
+ .UNINDENT
8909
+ .sp
8910
+ Here is the syntax to create a new database and run shell that
8911
+ executes Groonga command against the new database:
8912
+ .INDENT 0.0
8913
+ .INDENT 3.5
8914
+ .sp
8915
+ .nf
8916
+ .ft C
8917
+ groonga [options] \-n DB_PATH
8918
+ .ft P
8919
+ .fi
8920
+ .UNINDENT
8921
+ .UNINDENT
8922
+ .sp
8923
+ Here is the syntax to run shell that executes Groonga command against
8924
+ existing database:
8925
+ .INDENT 0.0
8926
+ .INDENT 3.5
8927
+ .sp
8928
+ .nf
8929
+ .ft C
8930
+ groonga [options] DB_PATH
8931
+ .ft P
8932
+ .fi
8933
+ .UNINDENT
8934
+ .UNINDENT
8935
+ .sp
8936
+ Here is the syntax to run Groonga command against existing database
8937
+ and exit:
8938
+ .INDENT 0.0
8939
+ .INDENT 3.5
8940
+ .sp
8941
+ .nf
8942
+ .ft C
8943
+ groonga [options] DB_PATH COMMAND [command arguments]
8944
+ .ft P
8945
+ .fi
8946
+ .UNINDENT
8947
+ .UNINDENT
8948
+ .SS Server mode
8949
+ .sp
8950
+ In server mode, \fBgroonga\fP executable file runs as a server. The
8951
+ server accepts connections from other processes at local machine or
8952
+ remote machine and executes received Groonga \fB/reference/command\fP
8953
+ against a local Groonga database.
8954
+ .sp
8955
+ You can choose one protocol from \fB/server/http\fP and
8956
+ \fB/server/gqtp\fP\&. Normally, HTTP is suitable but GQTP is the
8957
+ default protocol. This section describes only about HTTP protocol
8958
+ usage.
8959
+ .sp
8960
+ In server mode, \fBgroonga\fP executable file runs in the foreground. If
8961
+ you want to run Groonga server in the background, see
8962
+ \fIgroonga\-executable\-file\-server\-mode\fP\&.
8963
+ .sp
8964
+ Here is the syntax to run Groonga server with temporary database:
8965
+ .INDENT 0.0
8966
+ .INDENT 3.5
8967
+ .sp
8968
+ .nf
8969
+ .ft C
8970
+ groonga [options] \-\-protocol http \-s
8971
+ .ft P
8972
+ .fi
8973
+ .UNINDENT
8974
+ .UNINDENT
8975
+ .sp
8976
+ Here is the syntax to create a new database and run Groonga server
8977
+ with the new database:
8978
+ .INDENT 0.0
8979
+ .INDENT 3.5
8980
+ .sp
8981
+ .nf
8982
+ .ft C
8983
+ groonga [options] \-\-protocol http \-s \-n DB_PATH
8984
+ .ft P
8985
+ .fi
8986
+ .UNINDENT
8987
+ .UNINDENT
8988
+ .sp
8989
+ Here is the syntax to run Groonga server with existing database:
8990
+ .INDENT 0.0
8991
+ .INDENT 3.5
8992
+ .sp
8993
+ .nf
8994
+ .ft C
8995
+ groonga [options] \-\-protocol http \-s DB_PATH
8996
+ .ft P
8997
+ .fi
8998
+ .UNINDENT
8999
+ .UNINDENT
9000
+ .SS Daemon mode
9001
+ .sp
9002
+ In daemon mode, \fBgroonga\fP executable file runs as a daemon. Daemon
9003
+ is similar to server but it runs in the background. See
9004
+ \fI_groonga\-executable\-file\-daemon\-mode\fP about server.
9005
+ .sp
9006
+ Here is the syntax to run Groonga daemon with temporary database:
9007
+ .INDENT 0.0
9008
+ .INDENT 3.5
9009
+ .sp
9010
+ .nf
9011
+ .ft C
9012
+ groonga [options] \-\-protocol http \-d
9013
+ .ft P
9014
+ .fi
9015
+ .UNINDENT
9016
+ .UNINDENT
9017
+ .sp
9018
+ Here is the syntax to create a new database and run Groonga daemon
9019
+ with the new database:
9020
+ .INDENT 0.0
9021
+ .INDENT 3.5
9022
+ .sp
9023
+ .nf
9024
+ .ft C
9025
+ groonga [options] \-\-protocol http \-d \-n DB_PATH
9026
+ .ft P
9027
+ .fi
9028
+ .UNINDENT
9029
+ .UNINDENT
9030
+ .sp
9031
+ Here is the syntax to run Groonga daemon with existing database:
8651
9032
  .INDENT 0.0
8652
9033
  .INDENT 3.5
8653
9034
  .sp
8654
9035
  .nf
8655
9036
  .ft C
8656
- groonga [options] [dest] [command [args]]
9037
+ groonga [options] \-\-protocol http \-d DB_PATH
9038
+ .ft P
9039
+ .fi
9040
+ .UNINDENT
9041
+ .UNINDENT
9042
+ .sp
9043
+ \fI\-\-pid\-file\fP option will be useful for daemon mode.
9044
+ .SS Client mode
9045
+ .sp
9046
+ In client mode, \fBgroonga\fP executable file runs as a client for GQTP
9047
+ protocol Groonga server. Its usage is similar to
9048
+ \fIgroonga\-executable\-file\-standalone\-mode\fP\&. You can run shell and
9049
+ execute one command. You need to specify server address instead of
9050
+ local database.
9051
+ .sp
9052
+ Note that you can use \fBgroonga\fP executable file as a client for HTTP
9053
+ protocol Groonga server.
9054
+ .sp
9055
+ Here is the syntax to run shell that executes Groonga command against
9056
+ Groonga server that is running at \fB192.168.0.1:10043\fP:
9057
+ .INDENT 0.0
9058
+ .INDENT 3.5
9059
+ .sp
9060
+ .nf
9061
+ .ft C
9062
+ groonga [options] \-c \-\-host 192.168.0.1 \-\-port 10043
9063
+ .ft P
9064
+ .fi
9065
+ .UNINDENT
9066
+ .UNINDENT
9067
+ .sp
9068
+ Here is the syntax to run Groonga command against Groonga server that
9069
+ is running at \fB192.168.0.1:10043\fP and exit:
9070
+ .INDENT 0.0
9071
+ .INDENT 3.5
9072
+ .sp
9073
+ .nf
9074
+ .ft C
9075
+ groonga [options] \-c \-\-host 192.168.0.1 \-\-port 10043 COMMAND [command arguments]
8657
9076
  .ft P
8658
9077
  .fi
8659
9078
  .UNINDENT
@@ -13197,76 +13616,201 @@ dumpが出力するフォーマットは直接Groongaが解釈できるフォー
13197
13616
  .nf
13198
13617
  .ft C
13199
13618
  dump [tables]
13619
+ [dump_plugins]
13620
+ [dump_schema]
13621
+ [dump_records]
13622
+ [dump_indexes]
13200
13623
  .ft P
13201
13624
  .fi
13202
13625
  .UNINDENT
13203
13626
  .UNINDENT
13204
13627
  .SS Usage
13205
13628
  .sp
13206
- データベース内のすべてのデータを出力:
13629
+ Here is the sample schema and data to check dump behaviour:
13630
+ .INDENT 0.0
13631
+ .INDENT 3.5
13632
+ .sp
13633
+ .nf
13634
+ .ft C
13635
+ plugin_register token_filters/stop_word
13636
+ table_create Bookmarks TABLE_HASH_KEY ShortText
13637
+ column_create Bookmarks title COLUMN_SCALAR ShortText
13638
+ table_create Lexicon TABLE_PAT_KEY ShortText
13639
+ table_create Sites TABLE_NO_KEY
13640
+ column_create Sites url COLUMN_SCALAR ShortText
13641
+ column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
13642
+ load \-\-table Bookmarks
13643
+ [
13644
+ {"_key":"Groonga", "title":"Introduction to Groonga"},
13645
+ {"_key":"Mroonga", "title":"Introduction to Mroonga"}
13646
+ ]
13647
+ load \-\-table Sites
13648
+ [
13649
+ {"_key": 1, "url":"http://groonga.org"},
13650
+ {"_key": 2, "url":"http://mroonga.org"}
13651
+ ]
13652
+ .ft P
13653
+ .fi
13654
+ .UNINDENT
13655
+ .UNINDENT
13656
+ .sp
13657
+ Dump all data in database:
13207
13658
  .INDENT 0.0
13208
13659
  .INDENT 3.5
13209
13660
  .sp
13210
13661
  .nf
13211
13662
  .ft C
13212
13663
  > dump
13213
- table_create LocalNames 48 ShortText
13214
- table_create Entries 48 ShortText
13215
- column_create Entries local_name 0 LocalNames
13216
- column_create LocalNames Entries_local_name 2 Entries local_name
13217
- \&...
13218
- load \-\-table LocalNames
13664
+ plugin_register token_filters/stop_word
13665
+
13666
+ table_create Sites TABLE_NO_KEY
13667
+ column_create Sites url COLUMN_SCALAR ShortText
13668
+
13669
+ table_create Bookmarks TABLE_HASH_KEY ShortText
13670
+ column_create Bookmarks title COLUMN_SCALAR ShortText
13671
+
13672
+ table_create Lexicon TABLE_PAT_KEY ShortText
13673
+
13674
+ load \-\-table Sites
13219
13675
  [
13220
- ["_key"],
13221
- ["Items"],
13222
- ["BLT"],
13223
- \&...
13676
+ ["_id","url"],
13677
+ [1,"http://groonga.org"],
13678
+ [2,"http://mroonga.org"]
13224
13679
  ]
13225
- \&...
13680
+
13681
+ load \-\-table Bookmarks
13682
+ [
13683
+ ["_key","title"],
13684
+ ["Groonga","Introduction to Groonga"],
13685
+ ["Mroonga","Introduction to Mroonga"]
13686
+ ]
13687
+
13688
+ create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
13226
13689
  .ft P
13227
13690
  .fi
13228
13691
  .UNINDENT
13229
13692
  .UNINDENT
13230
13693
  .sp
13231
- データベース内のスキーマと特定のテーブルのデータのみ出力:
13694
+ Dump schema and specific table data:
13232
13695
  .INDENT 0.0
13233
13696
  .INDENT 3.5
13234
13697
  .sp
13235
13698
  .nf
13236
13699
  .ft C
13237
- > dump \-\-tables Users,Sites
13238
- table_create Users TABLE_HASH_KEY ShortText
13239
- column_create Users name COLUMN_SCALAR ShortText
13240
- table_create Comments TABLE_PAT_KEY ShortText
13241
- column_create Comments text COLUMN_SCALAR ShortText
13700
+ > dump Bookmarks
13701
+ plugin_register token_filters/stop_word
13702
+
13242
13703
  table_create Sites TABLE_NO_KEY
13243
13704
  column_create Sites url COLUMN_SCALAR ShortText
13244
- load \-\-table Users
13705
+
13706
+ table_create Bookmarks TABLE_HASH_KEY ShortText
13707
+ column_create Bookmarks title COLUMN_SCALAR ShortText
13708
+
13709
+ table_create Lexicon TABLE_PAT_KEY ShortText
13710
+
13711
+ load \-\-table Bookmarks
13245
13712
  [
13246
- ["_key"],
13247
- ["mori"],
13248
- ["yu"],
13249
- \&...
13713
+ ["_key","title"],
13714
+ ["Groonga","Introduction to Groonga"],
13715
+ ["Mroonga","Introduction to Mroonga"]
13250
13716
  ]
13717
+
13718
+ column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
13719
+ .ft P
13720
+ .fi
13721
+ .UNINDENT
13722
+ .UNINDENT
13723
+ .sp
13724
+ Dump plugin only:
13725
+ .INDENT 0.0
13726
+ .INDENT 3.5
13727
+ .sp
13728
+ .nf
13729
+ .ft C
13730
+ > dump \-\-dump_schema no \-\-dump_records no \-\-dump_indexes no
13731
+ plugin_register token_filters/stop_word
13732
+ .ft P
13733
+ .fi
13734
+ .UNINDENT
13735
+ .UNINDENT
13736
+ .sp
13737
+ Dump records only:
13738
+ .INDENT 0.0
13739
+ .INDENT 3.5
13740
+ .sp
13741
+ .nf
13742
+ .ft C
13743
+ > dump \-\-dump_schema no \-\-dump_plugins no \-\-dump_indexes no
13251
13744
  load \-\-table Sites
13252
13745
  [
13253
13746
  ["_id","url"],
13254
- [1,"http://groonga.org/"],
13255
- [2,"http://qwik.jp/senna/"],
13256
- \&...
13747
+ [1,"http://groonga.org"],
13748
+ [2,"http://mroonga.org"]
13257
13749
  ]
13750
+
13751
+ load \-\-table Bookmarks
13752
+ [
13753
+ ["_key","title"],
13754
+ ["Groonga","Introduction to Groonga"],
13755
+ ["Mroonga","Introduction to Mroonga"]
13756
+ ]
13757
+ .ft P
13758
+ .fi
13759
+ .UNINDENT
13760
+ .UNINDENT
13761
+ .sp
13762
+ Dump schema only:
13763
+ .INDENT 0.0
13764
+ .INDENT 3.5
13765
+ .sp
13766
+ .nf
13767
+ .ft C
13768
+ > dump \-\-dump_records no \-\-dump_plugins no \-\-dump_indexes no
13769
+ table_create Sites TABLE_NO_KEY
13770
+ column_create Sites url COLUMN_SCALAR ShortText
13771
+
13772
+ table_create Bookmarks TABLE_HASH_KEY ShortText
13773
+ column_create Bookmarks title COLUMN_SCALAR ShortText
13774
+
13775
+ table_create Lexicon TABLE_PAT_KEY ShortText
13258
13776
  .ft P
13259
13777
  .fi
13260
13778
  .UNINDENT
13261
13779
  .UNINDENT
13262
13780
  .SS Parameters
13263
13781
  .sp
13264
- \fBtables\fP
13782
+ There are optional parameters.
13783
+ .SS Optional parameters
13784
+ .SS \fBtables\fP
13265
13785
  .INDENT 0.0
13266
13786
  .INDENT 3.5
13267
13787
  出力対象のテーブルを「,」(カンマ)区切りで指定します。存在しないテーブルを指定した場合は無視されます。
13268
13788
  .UNINDENT
13269
13789
  .UNINDENT
13790
+ .SS \fBdump_plugins\fP
13791
+ .sp
13792
+ You can customize the output whether it contains registered plugins or not.
13793
+ To exclude registered plugins from the output, specify \fBno\fP\&.
13794
+ .sp
13795
+ The default value is \fByes\fP\&.
13796
+ .SS \fBdump_schema\fP
13797
+ .sp
13798
+ You can customize the output whether it contains database schema or not.
13799
+ To exclude database schema from the output, specify \fBno\fP\&.
13800
+ .sp
13801
+ The default value is \fByes\fP\&.
13802
+ .SS \fBdump_records\fP
13803
+ .sp
13804
+ You can customize the output whether it contains records or not.
13805
+ To exclude records from the output, specify \fBno\fP\&.
13806
+ .sp
13807
+ The default value is \fByes\fP\&.
13808
+ .SS \fBdump_indexes\fP
13809
+ .sp
13810
+ You can customize the output whether it contains indexes or not.
13811
+ To exclude indexes from the output, specify \fBno\fP\&.
13812
+ .sp
13813
+ The default value is \fByes\fP\&.
13270
13814
  .SS Return value
13271
13815
  .sp
13272
13816
  データベースのスキーマとデータをGroongaの組み込みコマンド呼び出し形式で出力します。output_type指定は無視されます。
@@ -14703,7 +15247,7 @@ request may be ignored.
14703
15247
  .sp
14704
15248
  You can send cancel request for the same request ID multiple times. If
14705
15249
  the target request is canceled or finished, \fB"canceled"\fP value is
14706
- changed to \fBfalse\fP from \fBtrue\fP:
15250
+ changed to \fBfalse\fP from \fBtrue\fP in return value:
14707
15251
  .INDENT 0.0
14708
15252
  .INDENT 3.5
14709
15253
  .sp
@@ -27411,7 +27955,8 @@ SCORE_FUNCTION(COLUMN, ARGUMENT1, ARGUMENT2, ...) * WEIGHT
27411
27955
  .UNINDENT
27412
27956
  .UNINDENT
27413
27957
  .sp
27414
- You can use different score function for each match column:
27958
+ You can use different score function for each
27959
+ \fIselect\-match\-columns\fP:
27415
27960
  .INDENT 0.0
27416
27961
  .INDENT 3.5
27417
27962
  .sp
@@ -35830,6 +36375,144 @@ more records are matched, it returns \fBtrue\fP\&. Otherwise, it returns
35830
36375
  .IP \(bu 2
35831
36376
  \fB/reference/grn_expr/script_syntax\fP
35832
36377
  .UNINDENT
36378
+ .SS vector_size
36379
+ .SS Summary
36380
+ .sp
36381
+ New in version 5.0.3.
36382
+
36383
+ .sp
36384
+ \fBvector_size\fP returns the value of vector column size.
36385
+ .sp
36386
+ To enable this function, register \fBfunctions/vector\fP plugin by following the command:
36387
+ .INDENT 0.0
36388
+ .INDENT 3.5
36389
+ .sp
36390
+ .nf
36391
+ .ft C
36392
+ plugin_register functions/vector
36393
+ .ft P
36394
+ .fi
36395
+ .UNINDENT
36396
+ .UNINDENT
36397
+ .sp
36398
+ Then, use \fBvector_size\fP function with \fB\-\-command_version 2\fP option.
36399
+ .SS Syntax
36400
+ .sp
36401
+ \fBvector_size\fP requires one argument \- \fBtarget\fP\&.
36402
+ .INDENT 0.0
36403
+ .INDENT 3.5
36404
+ .sp
36405
+ .nf
36406
+ .ft C
36407
+ vector_size(target)
36408
+ .ft P
36409
+ .fi
36410
+ .UNINDENT
36411
+ .UNINDENT
36412
+ .SS Usage
36413
+ .sp
36414
+ Here is a schema definition and sample data.
36415
+ .sp
36416
+ Sample schema:
36417
+ .sp
36418
+ Execution example:
36419
+ .INDENT 0.0
36420
+ .INDENT 3.5
36421
+ .sp
36422
+ .nf
36423
+ .ft C
36424
+ table_create Memos TABLE_HASH_KEY ShortText
36425
+ # [[0, 1337566253.89858, 0.000355720520019531], true]
36426
+ column_create Memos tags COLUMN_VECTOR ShortText
36427
+ # [[0, 1337566253.89858, 0.000355720520019531], true]
36428
+ .ft P
36429
+ .fi
36430
+ .UNINDENT
36431
+ .UNINDENT
36432
+ .sp
36433
+ Sample data:
36434
+ .sp
36435
+ Execution example:
36436
+ .INDENT 0.0
36437
+ .INDENT 3.5
36438
+ .sp
36439
+ .nf
36440
+ .ft C
36441
+ load \-\-table Memos
36442
+ [
36443
+ {"_key": "Groonga", "tags": ["Groonga"]},
36444
+ {"_key": "Rroonga", "tags": ["Groonga", "Ruby"]},
36445
+ {"_key": "Nothing"}
36446
+ ]
36447
+ # [[0, 1337566253.89858, 0.000355720520019531], 3]
36448
+ .ft P
36449
+ .fi
36450
+ .UNINDENT
36451
+ .UNINDENT
36452
+ .sp
36453
+ Here is the simple usage of \fBvector_size\fP function which returns tags and size \- the value of \fBtags\fP column and size of it.
36454
+ .sp
36455
+ Execution example:
36456
+ .INDENT 0.0
36457
+ .INDENT 3.5
36458
+ .sp
36459
+ .nf
36460
+ .ft C
36461
+ select Memos \-\-output_columns \(aqtags, vector_size(tags)\(aq \-\-command_version 2
36462
+ # [
36463
+ # [
36464
+ # 0,
36465
+ # 1337566253.89858,
36466
+ # 0.000355720520019531
36467
+ # ],
36468
+ # [
36469
+ # [
36470
+ # [
36471
+ # 3
36472
+ # ],
36473
+ # [
36474
+ # [
36475
+ # "tags",
36476
+ # "ShortText"
36477
+ # ],
36478
+ # [
36479
+ # "vector_size",
36480
+ # "Object"
36481
+ # ]
36482
+ # ],
36483
+ # [
36484
+ # [
36485
+ # "Groonga"
36486
+ # ],
36487
+ # 1
36488
+ # ],
36489
+ # [
36490
+ # [
36491
+ # "Groonga",
36492
+ # "Ruby"
36493
+ # ],
36494
+ # 2
36495
+ # ],
36496
+ # [
36497
+ # [],
36498
+ # 0
36499
+ # ]
36500
+ # ]
36501
+ # ]
36502
+ # ]
36503
+ .ft P
36504
+ .fi
36505
+ .UNINDENT
36506
+ .UNINDENT
36507
+ .SS Parameters
36508
+ .sp
36509
+ There is one required parameter, \fBtarget\fP\&.
36510
+ .SS \fBtarget\fP
36511
+ .sp
36512
+ Specifies a vector column of table that is specified by \fBtable\fP parameter in \fBselect\fP\&.
36513
+ .SS Return value
36514
+ .sp
36515
+ \fBvector_size\fP returns the value of target vector column size.
35833
36516
  .SS Operations
35834
36517
  .sp
35835
36518
  Groonga has the multiple search operations. This section describes
@@ -41556,8 +42239,12 @@ Execution example:
41556
42239
  .UNINDENT
41557
42240
  .UNINDENT
41558
42241
  .SS See also
41559
- .sp
41560
- TODO
42242
+ .INDENT 0.0
42243
+ .IP \(bu 2
42244
+ \fB/reference/executables/groonga\fP
42245
+ .IP \(bu 2
42246
+ \fB/server/gqtp\fP
42247
+ .UNINDENT
41561
42248
  .SS 検索
41562
42249
  .sp
41563
42250
  \fB/reference/commands/select\fP コマンドがqueryパラメータを使ってどのように検索するのかを説明します。
@@ -42901,14 +43588,19 @@ CUTTER_SOURCE_PATH=$HOME/work/cutter/cutter
42901
43588
  .UNINDENT
42902
43589
  .UNINDENT
42903
43590
  .sp
42904
- rinseのバージョンが古いとCentOS 5/6パッケージのビルドを行うことができません。
42905
- 別途debパッケージを以下のコマンドを実行して最新版をインストールします。:
43591
+ Debian系(.deb)やRed Hat系(.rpm)パッケージのビルドには \fI\%Vagrant\fP を使用します。apt\-getでインストールできるのは古いバージョンなので、Webサイトから最新版をダウンロードしてインストールすることをおすすめします。
43592
+ .sp
43593
+ Vagrantで使用する仮想化ソフトウェア(VirtualBox、VMwareなど)がない場合、合わせてインストールしてください。なお、VirtualBoxはsources.listにcontribセクションを追加すればapt\-getでインストールできます。:
42906
43594
  .INDENT 0.0
42907
43595
  .INDENT 3.5
42908
43596
  .sp
42909
43597
  .nf
42910
43598
  .ft C
42911
- % sudo dpkg \-i rinse_1.9.2\-1_all.deb
43599
+ % cat /etc/apt/sources.list
43600
+ deb http://ftp.jp.debian.org/debian/ sid main contrib
43601
+ deb\-src http://ftp.jp.debian.org/debian/ sid main contrib
43602
+ % sudo apt\-get update
43603
+ % sudo apt\-get install virtualbox
42912
43604
  .ft P
42913
43605
  .fi
42914
43606
  .UNINDENT
@@ -43501,8 +44193,8 @@ Debian系もしくはRed Hat系の場合には本番環境へとアップロー
43501
44193
  .sp
43502
44194
  .nf
43503
44195
  .ft C
43504
- % ruby1.9.1 \-run \-e httpd \-\- packages/yum/repositories (yumの場合)
43505
- % ruby1.9.1 \-run \-e httpd \-\- packages/apt/repositories (aptの場合)
44196
+ % ruby \-run \-e httpd \-\- packages/yum/repositories (yumの場合)
44197
+ % ruby \-run \-e httpd \-\- packages/apt/repositories (aptの場合)
43506
44198
  .ft P
43507
44199
  .fi
43508
44200
  .UNINDENT
@@ -43715,6 +44407,27 @@ Windows向けのパッケージのアップロードには以下のコマンド
43715
44407
  .UNINDENT
43716
44408
  .sp
43717
44409
  アップロードが正常終了すると、リリース対象のリポジトリデータやパッケージ、アーカイブ等がpackages.groonga.orgへと反映されます。
44410
+ .SS Ubuntu用パッケージのアップロード
44411
+ .sp
44412
+ Ubuntu向けのパッケージのアップロードには以下のコマンドを実行します。:
44413
+ .INDENT 0.0
44414
+ .INDENT 3.5
44415
+ .sp
44416
+ .nf
44417
+ .ft C
44418
+ % cd packages/ubuntu
44419
+ % make upload
44420
+ .ft P
44421
+ .fi
44422
+ .UNINDENT
44423
+ .UNINDENT
44424
+ .sp
44425
+ アップロードが正常終了すると、launchpad.net上でビルドが実行され、ビルド結果がメールで通知されます。ビルドに成功すると、リリース対象のパッケージがlaunchpad.netのGroongaチームのPPAへと反映されます。公開されているパッケージは以下のURLで確認できます。
44426
+ .INDENT 0.0
44427
+ .INDENT 3.5
44428
+ \fI\%https://launchpad.net/~groonga/+archive/ubuntu/ppa\fP
44429
+ .UNINDENT
44430
+ .UNINDENT
43718
44431
  .SS blogroonga(ブログ)の更新
43719
44432
  .sp
43720
44433
  \fI\%http://groonga.org/blog/\fP および \fI\%http://groonga.org/blog/\fP にて公開されているリリース案内を作成します。
@@ -43724,19 +44437,19 @@ Windows向けのパッケージのアップロードには以下のコマンド
43724
44437
  cloneしたWebサイトのソースに対して以下のファイルを新規追加します。
43725
44438
  .INDENT 0.0
43726
44439
  .IP \(bu 2
43727
- groonga.org/en/_post/(リリース日)\-release.textile
44440
+ groonga.org/en/_post/(リリース日)\-release.md
43728
44441
  .IP \(bu 2
43729
- groonga.org/ja/_post/(リリース日)\-release.textile
44442
+ groonga.org/ja/_post/(リリース日)\-release.md
43730
44443
  .UNINDENT
43731
44444
  .sp
43732
- 編集した内容をpushする前に確認したい場合にはjekyllおよびRedClothが必要です。
44445
+ 編集した内容をpushする前に確認したい場合にはJekyllおよびRedCloth(Textileパーサー)、RDiscount(Markdownパーサー)、JavaScript interpreter(therubyracer、Node.jsなど)が必要です。
43733
44446
  インストールするには以下のコマンドを実行します。:
43734
44447
  .INDENT 0.0
43735
44448
  .INDENT 3.5
43736
44449
  .sp
43737
44450
  .nf
43738
44451
  .ft C
43739
- % sudo gem1.9.1 install jekyll RedCloth
44452
+ % sudo gem install jekyll RedCloth rdiscount therubyracer
43740
44453
  .ft P
43741
44454
  .fi
43742
44455
  .UNINDENT
@@ -43759,7 +44472,7 @@ jekyllのインストールを行ったら、以下のコマンドでローカ
43759
44472
  \fBNOTE:\fP
43760
44473
  .INDENT 0.0
43761
44474
  .INDENT 3.5
43762
- 記事を非公開の状態でアップロードするには.textileファイルのpublished:をfalseに設定します。:
44475
+ 記事を非公開の状態でアップロードするには.mdファイルのpublished:をfalseに設定します。:
43763
44476
  .INDENT 0.0
43764
44477
  .INDENT 3.5
43765
44478
  .sp