rroonga 5.0.1-x86-mingw32 → 5.0.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/README.md +1 -1
 - data/ext/groonga/rb-grn-logger.c +159 -3
 - data/ext/groonga/rb-grn-plugin.c +17 -1
 - data/ext/groonga/rb-grn-query-logger.c +129 -3
 - data/ext/groonga/rb-grn.h +1 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/2.2/groonga.so +0 -0
 - data/lib/groonga/query-logger.rb +48 -3
 - data/lib/groonga/schema.rb +16 -3
 - data/rroonga-build.rb +3 -3
 - data/test/test-logger.rb +97 -2
 - data/test/test-plugin.rb +5 -1
 - data/test/test-query-logger.rb +149 -0
 - data/test/test-schema.rb +19 -0
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-4.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libonig-5.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga.h +1 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +12 -6
 - data/vendor/local/include/groonga/groonga/portability.h +158 -0
 - data/vendor/local/include/msgpack.h +1 -0
 - data/vendor/local/include/msgpack.hpp +2 -1
 - data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
 - data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
 - data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
 - data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
 - data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
 - data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
 - data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
 - data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
 - data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
 - data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
 - data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
 - data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
 - data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
 - data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
 - data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
 - data/vendor/local/include/msgpack/fbuffer.h +3 -4
 - data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
 - data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
 - data/vendor/local/include/msgpack/iterator.hpp +42 -0
 - data/vendor/local/include/msgpack/object.h +51 -30
 - data/vendor/local/include/msgpack/object.hpp +564 -273
 - data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
 - data/vendor/local/include/msgpack/pack.h +23 -17
 - data/vendor/local/include/msgpack/pack.hpp +889 -164
 - data/vendor/local/include/msgpack/pack_define.h +2 -2
 - data/vendor/local/include/msgpack/pack_template.h +452 -356
 - data/vendor/local/include/msgpack/sbuffer.h +43 -37
 - data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
 - data/vendor/local/include/msgpack/sysdep.h +48 -53
 - data/vendor/local/include/msgpack/type.hpp +35 -17
 - data/vendor/local/include/msgpack/unpack.h +62 -44
 - data/vendor/local/include/msgpack/unpack.hpp +1578 -217
 - data/vendor/local/include/msgpack/unpack_define.h +49 -47
 - data/vendor/local/include/msgpack/unpack_template.h +344 -284
 - data/vendor/local/include/msgpack/util.h +23 -0
 - data/vendor/local/include/msgpack/version.h +12 -6
 - data/vendor/local/include/msgpack/version.hpp +44 -0
 - data/vendor/local/include/msgpack/version_master.h +3 -0
 - data/vendor/local/include/msgpack/versioning.hpp +77 -0
 - data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
 - data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
 - data/vendor/local/include/msgpack/zbuffer.h +79 -79
 - data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
 - data/vendor/local/include/msgpack/zone.h +65 -42
 - data/vendor/local/include/msgpack/zone.hpp +10 -445
 - data/vendor/local/include/msgpack_fwd.hpp +28 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.la +41 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
 - data/vendor/local/lib/groonga/plugins/sharding.rb +1 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +38 -41
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +2 -2
 - data/vendor/local/lib/liblz4.a +0 -0
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +4 -4
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
 - data/vendor/local/lib/pkgconfig/msgpack.pc +2 -2
 - data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
 - data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/sbin/groonga-httpd.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
 - data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
 - data/vendor/local/share/groonga/html/admin/404.html +133 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
 - data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +9 -297
 - data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
 - data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
 - data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
 - data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
 - data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
 - data/vendor/local/share/license/groonga-admin/README.md +79 -0
 - data/vendor/local/share/license/msgpack/AUTHORS +0 -1
 - data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
 - data/vendor/local/share/man/man1/groonga.1 +812 -99
 - metadata +138 -55
 - data/doc/text/install.textile +0 -145
 - data/doc/text/tutorial.textile +0 -510
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/include/msgpack/type/define.hpp +0 -3465
 - data/vendor/local/include/msgpack/type/deque.hpp +0 -77
 - data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
 - data/vendor/local/include/msgpack/type/float.hpp +0 -102
 - data/vendor/local/include/msgpack/type/int.hpp +0 -276
 - data/vendor/local/include/msgpack/type/list.hpp +0 -77
 - data/vendor/local/include/msgpack/type/map.hpp +0 -205
 - data/vendor/local/include/msgpack/type/raw.hpp +0 -94
 - data/vendor/local/include/msgpack/type/set.hpp +0 -122
 - data/vendor/local/include/msgpack/type/string.hpp +0 -62
 - data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
 - data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
 - data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
 - data/vendor/local/include/msgpack/type/vector.hpp +0 -81
 - data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/us.png +0 -0
 
| 
         @@ -5,10 +5,10 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            News in Senna period
         
     | 
| 
       6 
6 
     | 
    
         
             
            ====================
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
     | 
    
         
            -
            Senna -> groonga - 2009 
     | 
| 
      
 8 
     | 
    
         
            +
            Senna -> groonga - 2009-01-14
         
     | 
| 
       9 
9 
     | 
    
         
             
            -----------------------------
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
            2006 
     | 
| 
      
 11 
     | 
    
         
            +
            2006-04-05
         
     | 
| 
       12 
12 
     | 
    
         
             
            ----------
         
     | 
| 
       13 
13 
     | 
    
         | 
| 
       14 
14 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -17,7 +17,7 @@ Improvements 
     | 
|
| 
       17 
17 
     | 
    
         
             
            * SEN_INDEX_DELIMITED added
         
     | 
| 
       18 
18 
     | 
    
         
             
            * sen_sel_term_extract added
         
     | 
| 
       19 
19 
     | 
    
         | 
| 
       20 
     | 
    
         
            -
            2006 
     | 
| 
      
 20 
     | 
    
         
            +
            2006-03-03
         
     | 
| 
       21 
21 
     | 
    
         
             
            ----------
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -25,7 +25,7 @@ Improvements 
     | 
|
| 
       25 
25 
     | 
    
         | 
| 
       26 
26 
     | 
    
         
             
            * snippet function added
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
     | 
    
         
            -
            2006 
     | 
| 
      
 28 
     | 
    
         
            +
            2006-01-16
         
     | 
| 
       29 
29 
     | 
    
         
             
            ----------
         
     | 
| 
       30 
30 
     | 
    
         | 
| 
       31 
31 
     | 
    
         
             
            Fixes
         
     | 
| 
         @@ -33,7 +33,7 @@ Fixes 
     | 
|
| 
       33 
33 
     | 
    
         | 
| 
       34 
34 
     | 
    
         
             
            * io.c bug fix. index format changed
         
     | 
| 
       35 
35 
     | 
    
         | 
| 
       36 
     | 
    
         
            -
            2006 
     | 
| 
      
 36 
     | 
    
         
            +
            2006-01-12
         
     | 
| 
       37 
37 
     | 
    
         
             
            ----------
         
     | 
| 
       38 
38 
     | 
    
         | 
| 
       39 
39 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -41,7 +41,7 @@ Improvements 
     | 
|
| 
       41 
41 
     | 
    
         | 
| 
       42 
42 
     | 
    
         
             
            * windows porting released
         
     | 
| 
       43 
43 
     | 
    
         | 
| 
       44 
     | 
    
         
            -
            2005 
     | 
| 
      
 44 
     | 
    
         
            +
            2005-12-22
         
     | 
| 
       45 
45 
     | 
    
         
             
            ----------
         
     | 
| 
       46 
46 
     | 
    
         | 
| 
       47 
47 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -50,7 +50,7 @@ Improvements 
     | 
|
| 
       50 
50 
     | 
    
         
             
            * support unpatched version of mecab (0.81, 0.82pre, 0.90)
         
     | 
| 
       51 
51 
     | 
    
         
             
              no longer depends on mecab mte patch.
         
     | 
| 
       52 
52 
     | 
    
         | 
| 
       53 
     | 
    
         
            -
            2005 
     | 
| 
      
 53 
     | 
    
         
            +
            2005-10-27
         
     | 
| 
       54 
54 
     | 
    
         
             
            ----------
         
     | 
| 
       55 
55 
     | 
    
         | 
| 
       56 
56 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -58,7 +58,7 @@ Improvements 
     | 
|
| 
       58 
58 
     | 
    
         | 
| 
       59 
59 
     | 
    
         
             
            * mysql binding updated
         
     | 
| 
       60 
60 
     | 
    
         | 
| 
       61 
     | 
    
         
            -
            2005 
     | 
| 
      
 61 
     | 
    
         
            +
            2005-09-17
         
     | 
| 
       62 
62 
     | 
    
         
             
            ----------
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -66,7 +66,7 @@ Improvements 
     | 
|
| 
       66 
66 
     | 
    
         | 
| 
       67 
67 
     | 
    
         
             
            * mysql-5.0.12-beta binding from <tasuku at hottolink.co.jp>
         
     | 
| 
       68 
68 
     | 
    
         | 
| 
       69 
     | 
    
         
            -
            2005 
     | 
| 
      
 69 
     | 
    
         
            +
            2005-09-08
         
     | 
| 
       70 
70 
     | 
    
         
             
            ----------
         
     | 
| 
       71 
71 
     | 
    
         | 
| 
       72 
72 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -74,7 +74,7 @@ Improvements 
     | 
|
| 
       74 
74 
     | 
    
         | 
| 
       75 
75 
     | 
    
         
             
            * utf-8 support enhanced. (SEN_INDEX_NORMALIZE become available)
         
     | 
| 
       76 
76 
     | 
    
         | 
| 
       77 
     | 
    
         
            -
            2005 
     | 
| 
      
 77 
     | 
    
         
            +
            2005-08-16
         
     | 
| 
       78 
78 
     | 
    
         
             
            ----------
         
     | 
| 
       79 
79 
     | 
    
         | 
| 
       80 
80 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -83,7 +83,7 @@ Improvements 
     | 
|
| 
       83 
83 
     | 
    
         
             
            * Ruby binding has rewrited using SWIG and supports advanced API.
         
     | 
| 
       84 
84 
     | 
    
         
             
            * SJIS support enhanced.
         
     | 
| 
       85 
85 
     | 
    
         | 
| 
       86 
     | 
    
         
            -
            2005 
     | 
| 
      
 86 
     | 
    
         
            +
            2005-07-05
         
     | 
| 
       87 
87 
     | 
    
         
             
            ----------
         
     | 
| 
       88 
88 
     | 
    
         | 
| 
       89 
89 
     | 
    
         
             
            Changes
         
     | 
| 
         @@ -91,7 +91,7 @@ Changes 
     | 
|
| 
       91 
91 
     | 
    
         | 
| 
       92 
92 
     | 
    
         
             
            * the license has changed to LGPL from GPL.
         
     | 
| 
       93 
93 
     | 
    
         | 
| 
       94 
     | 
    
         
            -
            2005 
     | 
| 
      
 94 
     | 
    
         
            +
            2005-06-23
         
     | 
| 
       95 
95 
     | 
    
         
             
            ----------
         
     | 
| 
       96 
96 
     | 
    
         | 
| 
       97 
97 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -99,7 +99,7 @@ Improvements 
     | 
|
| 
       99 
99 
     | 
    
         | 
| 
       100 
100 
     | 
    
         
             
            * advanced API functions implemented
         
     | 
| 
       101 
101 
     | 
    
         | 
| 
       102 
     | 
    
         
            -
            2005 
     | 
| 
      
 102 
     | 
    
         
            +
            2005-04-12
         
     | 
| 
       103 
103 
     | 
    
         
             
            ----------
         
     | 
| 
       104 
104 
     | 
    
         | 
| 
       105 
105 
     | 
    
         
             
            Improvements
         
     | 
| 
         @@ -2,6 +2,9 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            .. highlightlang:: none
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
      
 5 
     | 
    
         
            +
            .. groonga-command
         
     | 
| 
      
 6 
     | 
    
         
            +
            .. database: commands_dump
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
       5 
8 
     | 
    
         
             
            ``dump``
         
     | 
| 
       6 
9 
     | 
    
         
             
            ========
         
     | 
| 
       7 
10 
     | 
    
         | 
| 
         @@ -26,59 +29,164 @@ Syntax 
     | 
|
| 
       26 
29 
     | 
    
         
             
            ------
         
     | 
| 
       27 
30 
     | 
    
         
             
            ::
         
     | 
| 
       28 
31 
     | 
    
         | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
      
 32 
     | 
    
         
            +
               dump [tables]
         
     | 
| 
      
 33 
     | 
    
         
            +
                    [dump_plugins]
         
     | 
| 
      
 34 
     | 
    
         
            +
                    [dump_schema]
         
     | 
| 
      
 35 
     | 
    
         
            +
                    [dump_records]
         
     | 
| 
      
 36 
     | 
    
         
            +
                    [dump_indexes]
         
     | 
| 
       30 
37 
     | 
    
         | 
| 
       31 
38 
     | 
    
         
             
            Usage
         
     | 
| 
       32 
39 
     | 
    
         
             
            -----
         
     | 
| 
       33 
40 
     | 
    
         | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
      
 41 
     | 
    
         
            +
            Here is the sample schema and data to check dump behaviour::
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
              plugin_register token_filters/stop_word
         
     | 
| 
      
 44 
     | 
    
         
            +
              table_create Bookmarks TABLE_HASH_KEY ShortText
         
     | 
| 
      
 45 
     | 
    
         
            +
              column_create Bookmarks title COLUMN_SCALAR ShortText
         
     | 
| 
      
 46 
     | 
    
         
            +
              table_create Lexicon TABLE_PAT_KEY ShortText
         
     | 
| 
      
 47 
     | 
    
         
            +
              table_create Sites TABLE_NO_KEY
         
     | 
| 
      
 48 
     | 
    
         
            +
              column_create Sites url COLUMN_SCALAR ShortText
         
     | 
| 
      
 49 
     | 
    
         
            +
              column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
         
     | 
| 
      
 50 
     | 
    
         
            +
              load --table Bookmarks
         
     | 
| 
      
 51 
     | 
    
         
            +
              [
         
     | 
| 
      
 52 
     | 
    
         
            +
              {"_key":"Groonga", "title":"Introduction to Groonga"},
         
     | 
| 
      
 53 
     | 
    
         
            +
              {"_key":"Mroonga", "title":"Introduction to Mroonga"}
         
     | 
| 
      
 54 
     | 
    
         
            +
              ]
         
     | 
| 
      
 55 
     | 
    
         
            +
              load --table Sites
         
     | 
| 
      
 56 
     | 
    
         
            +
              [
         
     | 
| 
      
 57 
     | 
    
         
            +
              {"_key": 1, "url":"http://groonga.org"},
         
     | 
| 
      
 58 
     | 
    
         
            +
              {"_key": 2, "url":"http://mroonga.org"}
         
     | 
| 
      
 59 
     | 
    
         
            +
              ]
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            Dump all data in database::
         
     | 
| 
       35 
62 
     | 
    
         | 
| 
       36 
63 
     | 
    
         
             
              > dump
         
     | 
| 
       37 
     | 
    
         
            -
               
     | 
| 
       38 
     | 
    
         
            -
               
     | 
| 
       39 
     | 
    
         
            -
               
     | 
| 
       40 
     | 
    
         
            -
              column_create  
     | 
| 
       41 
     | 
    
         
            -
               
     | 
| 
       42 
     | 
    
         
            -
               
     | 
| 
      
 64 
     | 
    
         
            +
              plugin_register token_filters/stop_word
         
     | 
| 
      
 65 
     | 
    
         
            +
              
         
     | 
| 
      
 66 
     | 
    
         
            +
              table_create Sites TABLE_NO_KEY
         
     | 
| 
      
 67 
     | 
    
         
            +
              column_create Sites url COLUMN_SCALAR ShortText
         
     | 
| 
      
 68 
     | 
    
         
            +
              
         
     | 
| 
      
 69 
     | 
    
         
            +
              table_create Bookmarks TABLE_HASH_KEY ShortText
         
     | 
| 
      
 70 
     | 
    
         
            +
              column_create Bookmarks title COLUMN_SCALAR ShortText
         
     | 
| 
      
 71 
     | 
    
         
            +
              
         
     | 
| 
      
 72 
     | 
    
         
            +
              table_create Lexicon TABLE_PAT_KEY ShortText
         
     | 
| 
      
 73 
     | 
    
         
            +
              
         
     | 
| 
      
 74 
     | 
    
         
            +
              load --table Sites
         
     | 
| 
       43 
75 
     | 
    
         
             
              [
         
     | 
| 
       44 
     | 
    
         
            -
              [" 
     | 
| 
       45 
     | 
    
         
            -
              [" 
     | 
| 
       46 
     | 
    
         
            -
              [" 
     | 
| 
       47 
     | 
    
         
            -
              ...
         
     | 
| 
      
 76 
     | 
    
         
            +
              ["_id","url"],
         
     | 
| 
      
 77 
     | 
    
         
            +
              [1,"http://groonga.org"],
         
     | 
| 
      
 78 
     | 
    
         
            +
              [2,"http://mroonga.org"]
         
     | 
| 
       48 
79 
     | 
    
         
             
              ]
         
     | 
| 
       49 
     | 
    
         
            -
               
     | 
| 
      
 80 
     | 
    
         
            +
              
         
     | 
| 
      
 81 
     | 
    
         
            +
              load --table Bookmarks
         
     | 
| 
      
 82 
     | 
    
         
            +
              [
         
     | 
| 
      
 83 
     | 
    
         
            +
              ["_key","title"],
         
     | 
| 
      
 84 
     | 
    
         
            +
              ["Groonga","Introduction to Groonga"],
         
     | 
| 
      
 85 
     | 
    
         
            +
              ["Mroonga","Introduction to Mroonga"]
         
     | 
| 
      
 86 
     | 
    
         
            +
              ]
         
     | 
| 
      
 87 
     | 
    
         
            +
              
         
     | 
| 
      
 88 
     | 
    
         
            +
              create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
         
     | 
| 
       50 
89 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
      
 90 
     | 
    
         
            +
            Dump schema and specific table data::
         
     | 
| 
       52 
91 
     | 
    
         | 
| 
       53 
     | 
    
         
            -
              > dump  
     | 
| 
       54 
     | 
    
         
            -
               
     | 
| 
       55 
     | 
    
         
            -
               
     | 
| 
       56 
     | 
    
         
            -
              table_create Comments TABLE_PAT_KEY ShortText
         
     | 
| 
       57 
     | 
    
         
            -
              column_create Comments text COLUMN_SCALAR ShortText
         
     | 
| 
      
 92 
     | 
    
         
            +
              > dump Bookmarks
         
     | 
| 
      
 93 
     | 
    
         
            +
              plugin_register token_filters/stop_word
         
     | 
| 
      
 94 
     | 
    
         
            +
              
         
     | 
| 
       58 
95 
     | 
    
         
             
              table_create Sites TABLE_NO_KEY
         
     | 
| 
       59 
96 
     | 
    
         
             
              column_create Sites url COLUMN_SCALAR ShortText
         
     | 
| 
       60 
     | 
    
         
            -
               
     | 
| 
      
 97 
     | 
    
         
            +
              
         
     | 
| 
      
 98 
     | 
    
         
            +
              table_create Bookmarks TABLE_HASH_KEY ShortText
         
     | 
| 
      
 99 
     | 
    
         
            +
              column_create Bookmarks title COLUMN_SCALAR ShortText
         
     | 
| 
      
 100 
     | 
    
         
            +
              
         
     | 
| 
      
 101 
     | 
    
         
            +
              table_create Lexicon TABLE_PAT_KEY ShortText
         
     | 
| 
      
 102 
     | 
    
         
            +
              
         
     | 
| 
      
 103 
     | 
    
         
            +
              load --table Bookmarks
         
     | 
| 
       61 
104 
     | 
    
         
             
              [
         
     | 
| 
       62 
     | 
    
         
            -
              ["_key"],
         
     | 
| 
       63 
     | 
    
         
            -
              [" 
     | 
| 
       64 
     | 
    
         
            -
              [" 
     | 
| 
       65 
     | 
    
         
            -
              ...
         
     | 
| 
      
 105 
     | 
    
         
            +
              ["_key","title"],
         
     | 
| 
      
 106 
     | 
    
         
            +
              ["Groonga","Introduction to Groonga"],
         
     | 
| 
      
 107 
     | 
    
         
            +
              ["Mroonga","Introduction to Mroonga"]
         
     | 
| 
       66 
108 
     | 
    
         
             
              ]
         
     | 
| 
      
 109 
     | 
    
         
            +
              
         
     | 
| 
      
 110 
     | 
    
         
            +
              column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            Dump plugin only::
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
              > dump --dump_schema no --dump_records no --dump_indexes no
         
     | 
| 
      
 115 
     | 
    
         
            +
              plugin_register token_filters/stop_word
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
            Dump records only::
         
     | 
| 
      
 118 
     | 
    
         
            +
             
     | 
| 
      
 119 
     | 
    
         
            +
              > dump --dump_schema no --dump_plugins no --dump_indexes no
         
     | 
| 
       67 
120 
     | 
    
         
             
              load --table Sites
         
     | 
| 
       68 
121 
     | 
    
         
             
              [
         
     | 
| 
       69 
122 
     | 
    
         
             
              ["_id","url"],
         
     | 
| 
       70 
     | 
    
         
            -
              [1,"http://groonga.org 
     | 
| 
       71 
     | 
    
         
            -
              [2,"http:// 
     | 
| 
       72 
     | 
    
         
            -
               
     | 
| 
      
 123 
     | 
    
         
            +
              [1,"http://groonga.org"],
         
     | 
| 
      
 124 
     | 
    
         
            +
              [2,"http://mroonga.org"]
         
     | 
| 
      
 125 
     | 
    
         
            +
              ]
         
     | 
| 
      
 126 
     | 
    
         
            +
              
         
     | 
| 
      
 127 
     | 
    
         
            +
              load --table Bookmarks
         
     | 
| 
      
 128 
     | 
    
         
            +
              [
         
     | 
| 
      
 129 
     | 
    
         
            +
              ["_key","title"],
         
     | 
| 
      
 130 
     | 
    
         
            +
              ["Groonga","Introduction to Groonga"],
         
     | 
| 
      
 131 
     | 
    
         
            +
              ["Mroonga","Introduction to Mroonga"]
         
     | 
| 
       73 
132 
     | 
    
         
             
              ]
         
     | 
| 
      
 133 
     | 
    
         
            +
              
         
     | 
| 
      
 134 
     | 
    
         
            +
            Dump schema only::
         
     | 
| 
       74 
135 
     | 
    
         | 
| 
      
 136 
     | 
    
         
            +
              > dump --dump_records no --dump_plugins no --dump_indexes no
         
     | 
| 
      
 137 
     | 
    
         
            +
              table_create Sites TABLE_NO_KEY
         
     | 
| 
      
 138 
     | 
    
         
            +
              column_create Sites url COLUMN_SCALAR ShortText
         
     | 
| 
      
 139 
     | 
    
         
            +
              
         
     | 
| 
      
 140 
     | 
    
         
            +
              table_create Bookmarks TABLE_HASH_KEY ShortText
         
     | 
| 
      
 141 
     | 
    
         
            +
              column_create Bookmarks title COLUMN_SCALAR ShortText
         
     | 
| 
      
 142 
     | 
    
         
            +
              
         
     | 
| 
      
 143 
     | 
    
         
            +
              table_create Lexicon TABLE_PAT_KEY ShortText
         
     | 
| 
      
 144 
     | 
    
         
            +
              
         
     | 
| 
       75 
145 
     | 
    
         
             
            Parameters
         
     | 
| 
       76 
146 
     | 
    
         
             
            ----------
         
     | 
| 
       77 
147 
     | 
    
         | 
| 
      
 148 
     | 
    
         
            +
            There are optional parameters.
         
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            Optional parameters
         
     | 
| 
      
 151 
     | 
    
         
            +
            ^^^^^^^^^^^^^^^^^^^
         
     | 
| 
      
 152 
     | 
    
         
            +
             
     | 
| 
       78 
153 
     | 
    
         
             
            ``tables``
         
     | 
| 
      
 154 
     | 
    
         
            +
            """"""""""
         
     | 
| 
       79 
155 
     | 
    
         | 
| 
       80 
156 
     | 
    
         
             
              出力対象のテーブルを「,」(カンマ)区切りで指定します。存在しないテーブルを指定した場合は無視されます。
         
     | 
| 
       81 
157 
     | 
    
         | 
| 
      
 158 
     | 
    
         
            +
            ``dump_plugins``
         
     | 
| 
      
 159 
     | 
    
         
            +
            """"""""""""""""
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
            You can customize the output whether it contains registered plugins or not.
         
     | 
| 
      
 162 
     | 
    
         
            +
            To exclude registered plugins from the output, specify ``no``.
         
     | 
| 
      
 163 
     | 
    
         
            +
             
     | 
| 
      
 164 
     | 
    
         
            +
            The default value is ``yes``.
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
            ``dump_schema``
         
     | 
| 
      
 167 
     | 
    
         
            +
            """""""""""""""
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
            You can customize the output whether it contains database schema or not.
         
     | 
| 
      
 170 
     | 
    
         
            +
            To exclude database schema from the output, specify ``no``.
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
            The default value is ``yes``.
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
            ``dump_records``
         
     | 
| 
      
 175 
     | 
    
         
            +
            """"""""""""""""
         
     | 
| 
      
 176 
     | 
    
         
            +
             
     | 
| 
      
 177 
     | 
    
         
            +
            You can customize the output whether it contains records or not.
         
     | 
| 
      
 178 
     | 
    
         
            +
            To exclude records from the output, specify ``no``.
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
            The default value is ``yes``.
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
            ``dump_indexes``
         
     | 
| 
      
 183 
     | 
    
         
            +
            """"""""""""""""
         
     | 
| 
      
 184 
     | 
    
         
            +
             
     | 
| 
      
 185 
     | 
    
         
            +
            You can customize the output whether it contains indexes or not.
         
     | 
| 
      
 186 
     | 
    
         
            +
            To exclude indexes from the output, specify ``no``.
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
            The default value is ``yes``.
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
       82 
190 
     | 
    
         
             
            Return value
         
     | 
| 
       83 
191 
     | 
    
         
             
            ------------
         
     | 
| 
       84 
192 
     | 
    
         | 
| 
         @@ -66,7 +66,7 @@ request may be ignored. 
     | 
|
| 
       66 
66 
     | 
    
         | 
| 
       67 
67 
     | 
    
         
             
            You can send cancel request for the same request ID multiple times. If
         
     | 
| 
       68 
68 
     | 
    
         
             
            the target request is canceled or finished, ``"canceled"`` value is
         
     | 
| 
       69 
     | 
    
         
            -
            changed to ``false`` from ``true 
     | 
| 
      
 69 
     | 
    
         
            +
            changed to ``false`` from ``true`` in return value::
         
     | 
| 
       70 
70 
     | 
    
         | 
| 
       71 
71 
     | 
    
         
             
              $ curl 'http://localhost:10041/d/request_cancel?id=unique-id-1'
         
     | 
| 
       72 
72 
     | 
    
         
             
              [[...], {"id": "unique-id-1", "canceled": true}]
         
     | 
| 
         @@ -2,23 +2,164 @@ 
     | 
|
| 
       2 
2 
     | 
    
         | 
| 
       3 
3 
     | 
    
         
             
            .. highlightlang:: none
         
     | 
| 
       4 
4 
     | 
    
         | 
| 
       5 
     | 
    
         
            -
            groonga  
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
      
 5 
     | 
    
         
            +
            ``groonga`` executable file
         
     | 
| 
      
 6 
     | 
    
         
            +
            ===========================
         
     | 
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            Summary
         
     | 
| 
       9 
9 
     | 
    
         
             
            -------
         
     | 
| 
       10 
10 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
            groonga  
     | 
| 
      
 11 
     | 
    
         
            +
            ``groonga`` executable file provides the following features:
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              * Fulltext search server
         
     | 
| 
      
 14 
     | 
    
         
            +
              * Fulltext search shell
         
     | 
| 
      
 15 
     | 
    
         
            +
              * Client for Groonga fulltext search server
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            Groonga can be used as a library. If you want to use Groonga as a
         
     | 
| 
      
 18 
     | 
    
         
            +
            library, you need to write a program in C, C++ and so on. Library use
         
     | 
| 
      
 19 
     | 
    
         
            +
            is useful for embedding fulltext search feature to your application,
         
     | 
| 
      
 20 
     | 
    
         
            +
            but it's not easy to use.
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            You can use ``groonga`` executable file to get fulltext search
         
     | 
| 
      
 23 
     | 
    
         
            +
            feature.
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            If you want to try Groonga, fulltext search shell usage is useful. You
         
     | 
| 
      
 26 
     | 
    
         
            +
            don't need any server and client. You just need one terminal. You can
         
     | 
| 
      
 27 
     | 
    
         
            +
            try Groonga like the following::
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
              % groonga -n db
         
     | 
| 
      
 30 
     | 
    
         
            +
              > status
         
     | 
| 
      
 31 
     | 
    
         
            +
              [[0,1429687763.70845,0.000115633010864258],{"alloc_count":195,...}]
         
     | 
| 
      
 32 
     | 
    
         
            +
              > quit
         
     | 
| 
      
 33 
     | 
    
         
            +
              %
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            If you want to create an application that has fulltext search feature,
         
     | 
| 
      
 36 
     | 
    
         
            +
            fulltext search server usage is useful. You can use Groonga as a
         
     | 
| 
      
 37 
     | 
    
         
            +
            server like RDBMS (Relational DataBase Management
         
     | 
| 
      
 38 
     | 
    
         
            +
            System). Client-server model is a popular architecture.
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            Normally, client for Groonga fulltext server usage isn't used.
         
     | 
| 
       12 
41 
     | 
    
         | 
| 
       13 
     | 
    
         
            -
            Groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンです。
         
     | 
| 
       14 
     | 
    
         
            -
            Groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通して操作することができます。このマニュアルページでは、groongaコマンドの使い方について説明します。
         
     | 
| 
       15 
42 
     | 
    
         | 
| 
       16 
43 
     | 
    
         
             
            Syntax
         
     | 
| 
       17 
44 
     | 
    
         
             
            ------
         
     | 
| 
       18 
45 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
      
 46 
     | 
    
         
            +
            ``groonga`` executable file has the following four modes:
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
              * Standalone mode
         
     | 
| 
      
 49 
     | 
    
         
            +
              * Server mode
         
     | 
| 
      
 50 
     | 
    
         
            +
              * Daemon mode
         
     | 
| 
      
 51 
     | 
    
         
            +
              * Client mode
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
            There are common options in these modes. These common options is
         
     | 
| 
      
 54 
     | 
    
         
            +
            described later section.
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
            .. _groonga-executable-file-standalone-mode:
         
     | 
| 
      
 57 
     | 
    
         
            +
             
     | 
| 
      
 58 
     | 
    
         
            +
            Standalone mode
         
     | 
| 
      
 59 
     | 
    
         
            +
            ^^^^^^^^^^^^^^^
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
            In standalone mode, ``groonga`` executable file runs one or more
         
     | 
| 
      
 62 
     | 
    
         
            +
            Groonga :doc:`/reference/command` against a local Groonga database.
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            Here is the syntax to run shell that executes Groonga command against
         
     | 
| 
      
 65 
     | 
    
         
            +
            temporary database::
         
     | 
| 
      
 66 
     | 
    
         
            +
             
     | 
| 
      
 67 
     | 
    
         
            +
              groonga [options]
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
            Here is the syntax to create a new database and run shell that
         
     | 
| 
      
 70 
     | 
    
         
            +
            executes Groonga command against the new database::
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
              groonga [options] -n DB_PATH
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
            Here is the syntax to run shell that executes Groonga command against
         
     | 
| 
      
 75 
     | 
    
         
            +
            existing database::
         
     | 
| 
      
 76 
     | 
    
         
            +
             
     | 
| 
      
 77 
     | 
    
         
            +
              groonga [options] DB_PATH
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
            Here is the syntax to run Groonga command against existing database
         
     | 
| 
      
 80 
     | 
    
         
            +
            and exit::
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
              groonga [options] DB_PATH COMMAND [command arguments]
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
            .. _groonga-executable-file-server-mode:
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
            Server mode
         
     | 
| 
      
 87 
     | 
    
         
            +
            ^^^^^^^^^^^
         
     | 
| 
      
 88 
     | 
    
         
            +
             
     | 
| 
      
 89 
     | 
    
         
            +
            In server mode, ``groonga`` executable file runs as a server. The
         
     | 
| 
      
 90 
     | 
    
         
            +
            server accepts connections from other processes at local machine or
         
     | 
| 
      
 91 
     | 
    
         
            +
            remote machine and executes received Groonga :doc:`/reference/command`
         
     | 
| 
      
 92 
     | 
    
         
            +
            against a local Groonga database.
         
     | 
| 
      
 93 
     | 
    
         
            +
             
     | 
| 
      
 94 
     | 
    
         
            +
            You can choose one protocol from :doc:`/server/http` and
         
     | 
| 
      
 95 
     | 
    
         
            +
            :doc:`/server/gqtp`. Normally, HTTP is suitable but GQTP is the
         
     | 
| 
      
 96 
     | 
    
         
            +
            default protocol. This section describes only about HTTP protocol
         
     | 
| 
      
 97 
     | 
    
         
            +
            usage.
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            In server mode, ``groonga`` executable file runs in the foreground. If
         
     | 
| 
      
 100 
     | 
    
         
            +
            you want to run Groonga server in the background, see
         
     | 
| 
      
 101 
     | 
    
         
            +
            :ref:`groonga-executable-file-server-mode`.
         
     | 
| 
      
 102 
     | 
    
         
            +
             
     | 
| 
      
 103 
     | 
    
         
            +
            Here is the syntax to run Groonga server with temporary database::
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
              groonga [options] --protocol http -s
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
            Here is the syntax to create a new database and run Groonga server
         
     | 
| 
      
 108 
     | 
    
         
            +
            with the new database::
         
     | 
| 
      
 109 
     | 
    
         
            +
             
     | 
| 
      
 110 
     | 
    
         
            +
              groonga [options] --protocol http -s -n DB_PATH
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
            Here is the syntax to run Groonga server with existing database::
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
      
 114 
     | 
    
         
            +
              groonga [options] --protocol http -s DB_PATH
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
            .. _groonga-executable-file-daemon-mode:
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
            Daemon mode
         
     | 
| 
      
 119 
     | 
    
         
            +
            ^^^^^^^^^^^
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
            In daemon mode, ``groonga`` executable file runs as a daemon. Daemon
         
     | 
| 
      
 122 
     | 
    
         
            +
            is similar to server but it runs in the background. See
         
     | 
| 
      
 123 
     | 
    
         
            +
            :ref:`_groonga-executable-file-daemon-mode` about server.
         
     | 
| 
      
 124 
     | 
    
         
            +
             
     | 
| 
      
 125 
     | 
    
         
            +
            Here is the syntax to run Groonga daemon with temporary database::
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
              groonga [options] --protocol http -d
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
            Here is the syntax to create a new database and run Groonga daemon
         
     | 
| 
      
 130 
     | 
    
         
            +
            with the new database::
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
              groonga [options] --protocol http -d -n DB_PATH
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
            Here is the syntax to run Groonga daemon with existing database::
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
              groonga [options] --protocol http -d DB_PATH
         
     | 
| 
      
 137 
     | 
    
         
            +
             
     | 
| 
      
 138 
     | 
    
         
            +
            :option:`--pid-file` option will be useful for daemon mode.
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
            .. _groonga-executable-file-client-mode:
         
     | 
| 
      
 141 
     | 
    
         
            +
             
     | 
| 
      
 142 
     | 
    
         
            +
            Client mode
         
     | 
| 
      
 143 
     | 
    
         
            +
            ^^^^^^^^^^^
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
            In client mode, ``groonga`` executable file runs as a client for GQTP
         
     | 
| 
      
 146 
     | 
    
         
            +
            protocol Groonga server. Its usage is similar to
         
     | 
| 
      
 147 
     | 
    
         
            +
            :ref:`groonga-executable-file-standalone-mode`. You can run shell and
         
     | 
| 
      
 148 
     | 
    
         
            +
            execute one command. You need to specify server address instead of
         
     | 
| 
      
 149 
     | 
    
         
            +
            local database.
         
     | 
| 
      
 150 
     | 
    
         
            +
             
     | 
| 
      
 151 
     | 
    
         
            +
            Note that you can use ``groonga`` executable file as a client for HTTP
         
     | 
| 
      
 152 
     | 
    
         
            +
            protocol Groonga server.
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
            Here is the syntax to run shell that executes Groonga command against
         
     | 
| 
      
 155 
     | 
    
         
            +
            Groonga server that is running at ``192.168.0.1:10043``::
         
     | 
| 
      
 156 
     | 
    
         
            +
             
     | 
| 
      
 157 
     | 
    
         
            +
              groonga [options] -c --host 192.168.0.1 --port 10043
         
     | 
| 
      
 158 
     | 
    
         
            +
             
     | 
| 
      
 159 
     | 
    
         
            +
            Here is the syntax to run Groonga command against Groonga server that
         
     | 
| 
      
 160 
     | 
    
         
            +
            is running at ``192.168.0.1:10043`` and exit::
         
     | 
| 
       20 
161 
     | 
    
         | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
      
 162 
     | 
    
         
            +
              groonga [options] -c --host 192.168.0.1 --port 10043 COMMAND [command arguments]
         
     | 
| 
       22 
163 
     | 
    
         | 
| 
       23 
164 
     | 
    
         
             
            Options
         
     | 
| 
       24 
165 
     | 
    
         
             
            -------
         
     |