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
@@ -1,6 +1,6 @@
|
|
1
1
|
.\" Man page generated from reStructuredText.
|
2
2
|
.
|
3
|
-
.TH "GROONGA" "1" "
|
3
|
+
.TH "GROONGA" "1" "April 28, 2015" "5.0.3" "Groonga"
|
4
4
|
.SH NAME
|
5
5
|
groonga \- Groonga documentation
|
6
6
|
.
|
@@ -110,7 +110,7 @@ packages.groonga.org:
|
|
110
110
|
.INDENT 3.5
|
111
111
|
.INDENT 0.0
|
112
112
|
.IP \(bu 2
|
113
|
-
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.
|
113
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x86.exe\fP
|
114
114
|
.UNINDENT
|
115
115
|
.UNINDENT
|
116
116
|
.UNINDENT
|
@@ -123,7 +123,7 @@ packages.goronga.org:
|
|
123
123
|
.INDENT 3.5
|
124
124
|
.INDENT 0.0
|
125
125
|
.IP \(bu 2
|
126
|
-
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.
|
126
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x64.exe\fP
|
127
127
|
.UNINDENT
|
128
128
|
.UNINDENT
|
129
129
|
.UNINDENT
|
@@ -140,7 +140,7 @@ packages.groonga.org:
|
|
140
140
|
.INDENT 3.5
|
141
141
|
.INDENT 0.0
|
142
142
|
.IP \(bu 2
|
143
|
-
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.
|
143
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x86.zip\fP
|
144
144
|
.UNINDENT
|
145
145
|
.UNINDENT
|
146
146
|
.UNINDENT
|
@@ -153,7 +153,7 @@ packages.groonga.org:
|
|
153
153
|
.INDENT 3.5
|
154
154
|
.INDENT 0.0
|
155
155
|
.IP \(bu 2
|
156
|
-
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.
|
156
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-5.0.3\-x64.zip\fP
|
157
157
|
.UNINDENT
|
158
158
|
.UNINDENT
|
159
159
|
.UNINDENT
|
@@ -169,7 +169,7 @@ Windows. Here are required tools:
|
|
169
169
|
.INDENT 3.5
|
170
170
|
.INDENT 0.0
|
171
171
|
.IP \(bu 2
|
172
|
-
\fI\%Microsoft Visual Studio
|
172
|
+
\fI\%Microsoft Visual Studio Express 2013 for Windows Desktop\fP
|
173
173
|
.IP \(bu 2
|
174
174
|
\fI\%CMake\fP
|
175
175
|
.UNINDENT
|
@@ -181,7 +181,7 @@ Download zipped source from packages.groonga.org:
|
|
181
181
|
.INDENT 3.5
|
182
182
|
.INDENT 0.0
|
183
183
|
.IP \(bu 2
|
184
|
-
\fI\%http://packages.groonga.org/source/groonga/groonga\-5.0.
|
184
|
+
\fI\%http://packages.groonga.org/source/groonga/groonga\-5.0.3.zip\fP
|
185
185
|
.UNINDENT
|
186
186
|
.UNINDENT
|
187
187
|
.UNINDENT
|
@@ -194,21 +194,21 @@ Move to the Groonga\(aqs source folder:
|
|
194
194
|
.sp
|
195
195
|
.nf
|
196
196
|
.ft C
|
197
|
-
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-5.0.
|
197
|
+
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-5.0.3
|
198
198
|
.ft P
|
199
199
|
.fi
|
200
200
|
.UNINDENT
|
201
201
|
.UNINDENT
|
202
202
|
.sp
|
203
203
|
Configure by \fBcmake\fP\&. The following commnad line is for 64\-bit
|
204
|
-
version. To build 32\-bit version, use \fB\-G "Visual Studio
|
204
|
+
version. To build 32\-bit version, use \fB\-G "Visual Studio 12 2013"\fP
|
205
205
|
parameter instead:
|
206
206
|
.INDENT 0.0
|
207
207
|
.INDENT 3.5
|
208
208
|
.sp
|
209
209
|
.nf
|
210
210
|
.ft C
|
211
|
-
groonga\-5.0.
|
211
|
+
groonga\-5.0.3> cmake . \-G "Visual Studio 12 2013 Win64" \-DCMAKE_INSTALL_PREFIX=C:\eGroonga
|
212
212
|
.ft P
|
213
213
|
.fi
|
214
214
|
.UNINDENT
|
@@ -220,7 +220,7 @@ Build:
|
|
220
220
|
.sp
|
221
221
|
.nf
|
222
222
|
.ft C
|
223
|
-
groonga\-5.0.
|
223
|
+
groonga\-5.0.3> cmake \-\-build . \-\-config Release
|
224
224
|
.ft P
|
225
225
|
.fi
|
226
226
|
.UNINDENT
|
@@ -232,14 +232,14 @@ Install:
|
|
232
232
|
.sp
|
233
233
|
.nf
|
234
234
|
.ft C
|
235
|
-
groonga\-5.0.
|
235
|
+
groonga\-5.0.3> cmake \-\-build . \-\-config Release \-\-target Install
|
236
236
|
.ft P
|
237
237
|
.fi
|
238
238
|
.UNINDENT
|
239
239
|
.UNINDENT
|
240
240
|
.sp
|
241
|
-
After the above steps, \fB/reference/executables/groonga\fP is found
|
242
|
-
\fBc:\
|
241
|
+
After the above steps, \fB/reference/executables/groonga\fP is found at
|
242
|
+
\fBc:\eGroonga\ebin\egroonga.exe\fP\&.
|
243
243
|
.SS Mac OS X
|
244
244
|
.sp
|
245
245
|
This section describes how to install Groonga on Mac OS X. You can
|
@@ -294,9 +294,9 @@ Download source:
|
|
294
294
|
.sp
|
295
295
|
.nf
|
296
296
|
.ft C
|
297
|
-
% curl \-O http://packages.groonga.org/source/groonga/groonga\-5.0.
|
298
|
-
% tar xvzf groonga\-5.0.
|
299
|
-
% cd groonga\-5.0.
|
297
|
+
% curl \-O http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
298
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
299
|
+
% cd groonga\-5.0.3
|
300
300
|
.ft P
|
301
301
|
.fi
|
302
302
|
.UNINDENT
|
@@ -429,7 +429,7 @@ Install groonga\-token\-filter\-stem package:
|
|
429
429
|
.UNINDENT
|
430
430
|
.sp
|
431
431
|
There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
|
432
|
-
|
432
|
+
Groonga status by Munin, install groonga\-munin\-plugins package.
|
433
433
|
.sp
|
434
434
|
Install groonga\-munin\-plugins package:
|
435
435
|
.INDENT 0.0
|
@@ -444,7 +444,121 @@ Install groonga\-munin\-plugins package:
|
|
444
444
|
.UNINDENT
|
445
445
|
.sp
|
446
446
|
There is a package that provides MySQL compatible normalizer as
|
447
|
-
|
447
|
+
a Groonga plugin.
|
448
|
+
If you want to use that one, install groonga\-normalizer\-mysql package.
|
449
|
+
.sp
|
450
|
+
Install groonga\-normalizer\-mysql package:
|
451
|
+
.INDENT 0.0
|
452
|
+
.INDENT 3.5
|
453
|
+
.sp
|
454
|
+
.nf
|
455
|
+
.ft C
|
456
|
+
% sudo apt\-get install \-y \-V groonga\-normalizer\-mysql
|
457
|
+
.ft P
|
458
|
+
.fi
|
459
|
+
.UNINDENT
|
460
|
+
.UNINDENT
|
461
|
+
.SS jessie
|
462
|
+
.sp
|
463
|
+
New in version 5.0.3.
|
464
|
+
|
465
|
+
.sp
|
466
|
+
Add the Groonga apt repository.
|
467
|
+
.sp
|
468
|
+
/etc/apt/sources.list.d/groonga.list:
|
469
|
+
.INDENT 0.0
|
470
|
+
.INDENT 3.5
|
471
|
+
.sp
|
472
|
+
.nf
|
473
|
+
.ft C
|
474
|
+
deb http://packages.groonga.org/debian/ jessie main
|
475
|
+
deb\-src http://packages.groonga.org/debian/ jessie main
|
476
|
+
.ft P
|
477
|
+
.fi
|
478
|
+
.UNINDENT
|
479
|
+
.UNINDENT
|
480
|
+
.sp
|
481
|
+
Install:
|
482
|
+
.INDENT 0.0
|
483
|
+
.INDENT 3.5
|
484
|
+
.sp
|
485
|
+
.nf
|
486
|
+
.ft C
|
487
|
+
% sudo apt\-get update
|
488
|
+
% sudo apt\-get install \-y \-\-allow\-unauthenticated groonga\-keyring
|
489
|
+
% sudo apt\-get update
|
490
|
+
% sudo apt\-get install \-y \-V groonga
|
491
|
+
.ft P
|
492
|
+
.fi
|
493
|
+
.UNINDENT
|
494
|
+
.UNINDENT
|
495
|
+
.sp
|
496
|
+
\fBNOTE:\fP
|
497
|
+
.INDENT 0.0
|
498
|
+
.INDENT 3.5
|
499
|
+
\fBgroonga\fP package is the minimum set of fulltext search engine.
|
500
|
+
If you want to use Groonga for server use, you can install
|
501
|
+
additional preconfigured packages.
|
502
|
+
.sp
|
503
|
+
There are two packages for server use.
|
504
|
+
.INDENT 0.0
|
505
|
+
.IP \(bu 2
|
506
|
+
groonga\-httpd (nginx and HTTP protocol based server package)
|
507
|
+
.IP \(bu 2
|
508
|
+
groonga\-server\-gqtp (GQTP protocol based server package)
|
509
|
+
.UNINDENT
|
510
|
+
.sp
|
511
|
+
See \fB/server\fP section about details.
|
512
|
+
.UNINDENT
|
513
|
+
.UNINDENT
|
514
|
+
.sp
|
515
|
+
If you want to use \fI\%MeCab\fP as a
|
516
|
+
tokenizer, install groonga\-tokenizer\-mecab package.
|
517
|
+
.sp
|
518
|
+
Install groonga\-tokenizer\-mecab package:
|
519
|
+
.INDENT 0.0
|
520
|
+
.INDENT 3.5
|
521
|
+
.sp
|
522
|
+
.nf
|
523
|
+
.ft C
|
524
|
+
% sudo apt\-get install \-y \-V groonga\-tokenizer\-mecab
|
525
|
+
.ft P
|
526
|
+
.fi
|
527
|
+
.UNINDENT
|
528
|
+
.UNINDENT
|
529
|
+
.sp
|
530
|
+
If you want to use \fBTokenFilterStem\fP as a token filter, install
|
531
|
+
groonga\-token\-filter\-stem package.
|
532
|
+
.sp
|
533
|
+
Install groonga\-token\-filter\-stem package:
|
534
|
+
.INDENT 0.0
|
535
|
+
.INDENT 3.5
|
536
|
+
.sp
|
537
|
+
.nf
|
538
|
+
.ft C
|
539
|
+
% sudo apt\-get install \-y \-V groonga\-token\-filter\-stem
|
540
|
+
.ft P
|
541
|
+
.fi
|
542
|
+
.UNINDENT
|
543
|
+
.UNINDENT
|
544
|
+
.sp
|
545
|
+
There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
|
546
|
+
Groonga status by Munin, install groonga\-munin\-plugins package.
|
547
|
+
.sp
|
548
|
+
Install groonga\-munin\-plugins package:
|
549
|
+
.INDENT 0.0
|
550
|
+
.INDENT 3.5
|
551
|
+
.sp
|
552
|
+
.nf
|
553
|
+
.ft C
|
554
|
+
% sudo apt\-get install \-y \-V groonga\-munin\-plugins
|
555
|
+
.ft P
|
556
|
+
.fi
|
557
|
+
.UNINDENT
|
558
|
+
.UNINDENT
|
559
|
+
.sp
|
560
|
+
There is a package that provides MySQL compatible normalizer as
|
561
|
+
a Groonga plugin.
|
448
562
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
449
563
|
.sp
|
450
564
|
Install groonga\-normalizer\-mysql package:
|
@@ -478,9 +592,9 @@ Download source:
|
|
478
592
|
.sp
|
479
593
|
.nf
|
480
594
|
.ft C
|
481
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
482
|
-
% tar xvzf groonga\-5.0.
|
483
|
-
% cd groonga\-5.0.
|
595
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
596
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
597
|
+
% cd groonga\-5.0.3
|
484
598
|
.ft P
|
485
599
|
.fi
|
486
600
|
.UNINDENT
|
@@ -546,6 +660,8 @@ Here are supported Ubuntu versions:
|
|
546
660
|
14.04 LTS Trusty Tahr
|
547
661
|
.IP \(bu 2
|
548
662
|
14.10 Utopic Unicorn
|
663
|
+
.IP \(bu 2
|
664
|
+
15.04 Vivid Vervet
|
549
665
|
.UNINDENT
|
550
666
|
.UNINDENT
|
551
667
|
.UNINDENT
|
@@ -638,7 +754,7 @@ Install groonga\-token\-filter\-stem package:
|
|
638
754
|
.UNINDENT
|
639
755
|
.sp
|
640
756
|
There is a package that provides \fI\%Munin\fP plugins. If you want to monitor
|
641
|
-
|
757
|
+
Groonga status by Munin, install groonga\-munin\-plugins package.
|
642
758
|
.sp
|
643
759
|
Install groonga\-munin\-plugins package:
|
644
760
|
.INDENT 0.0
|
@@ -653,7 +769,7 @@ Install groonga\-munin\-plugins package:
|
|
653
769
|
.UNINDENT
|
654
770
|
.sp
|
655
771
|
There is a package that provides MySQL compatible normalizer as
|
656
|
-
Groonga
|
772
|
+
a Groonga plugin.
|
657
773
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
658
774
|
.sp
|
659
775
|
Install groonga\-normalizer\-mysql package:
|
@@ -687,9 +803,9 @@ Download source:
|
|
687
803
|
.sp
|
688
804
|
.nf
|
689
805
|
.ft C
|
690
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
691
|
-
% tar xvzf groonga\-5.0.
|
692
|
-
% cd groonga\-5.0.
|
806
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
807
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
808
|
+
% cd groonga\-5.0.3
|
693
809
|
.ft P
|
694
810
|
.fi
|
695
811
|
.UNINDENT
|
@@ -856,7 +972,7 @@ Install groonga\-munin\-plugins package:
|
|
856
972
|
.UNINDENT
|
857
973
|
.sp
|
858
974
|
There is a package that provides MySQL compatible normalizer as
|
859
|
-
Groonga
|
975
|
+
a Groonga plugin.
|
860
976
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
861
977
|
.sp
|
862
978
|
Install groonga\-normalizer\-mysql package:
|
@@ -958,7 +1074,7 @@ Install groonga\-munin\-plugins package:
|
|
958
1074
|
.UNINDENT
|
959
1075
|
.sp
|
960
1076
|
There is a package that provides MySQL compatible normalizer as
|
961
|
-
Groonga
|
1077
|
+
a Groonga plugin.
|
962
1078
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
963
1079
|
.sp
|
964
1080
|
Install groonga\-normalizer\-mysql package:
|
@@ -1060,7 +1176,7 @@ Install groonga\-munin\-plugins package:
|
|
1060
1176
|
.UNINDENT
|
1061
1177
|
.sp
|
1062
1178
|
There is a package that provides MySQL compatible normalizer as
|
1063
|
-
Groonga
|
1179
|
+
a Groonga plugin.
|
1064
1180
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
1065
1181
|
.sp
|
1066
1182
|
Install groonga\-normalizer\-mysql package:
|
@@ -1094,9 +1210,9 @@ Download source:
|
|
1094
1210
|
.sp
|
1095
1211
|
.nf
|
1096
1212
|
.ft C
|
1097
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
1098
|
-
% tar xvzf groonga\-5.0.
|
1099
|
-
% cd groonga\-5.0.
|
1213
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
1214
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
1215
|
+
% cd groonga\-5.0.3
|
1100
1216
|
.ft P
|
1101
1217
|
.fi
|
1102
1218
|
.UNINDENT
|
@@ -1263,7 +1379,7 @@ Install groonga\-munin\-plugins package:
|
|
1263
1379
|
.UNINDENT
|
1264
1380
|
.sp
|
1265
1381
|
There is a package that provides MySQL compatible normalizer as
|
1266
|
-
Groonga
|
1382
|
+
a Groonga plugin.
|
1267
1383
|
If you want to use that one, install groonga\-normalizer\-mysql package.
|
1268
1384
|
.sp
|
1269
1385
|
Install groonga\-normalizer\-mysql package:
|
@@ -1297,9 +1413,9 @@ Download source:
|
|
1297
1413
|
.sp
|
1298
1414
|
.nf
|
1299
1415
|
.ft C
|
1300
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
1301
|
-
% tar xvzf groonga\-5.0.
|
1302
|
-
% cd groonga\-5.0.
|
1416
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
1417
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
1418
|
+
% cd groonga\-5.0.3
|
1303
1419
|
.ft P
|
1304
1420
|
.fi
|
1305
1421
|
.UNINDENT
|
@@ -1364,9 +1480,9 @@ Download source:
|
|
1364
1480
|
.sp
|
1365
1481
|
.nf
|
1366
1482
|
.ft C
|
1367
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
1368
|
-
% gtar xvzf groonga\-5.0.
|
1369
|
-
% cd groonga\-5.0.
|
1483
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
1484
|
+
% gtar xvzf groonga\-5.0.3.tar.gz
|
1485
|
+
% cd groonga\-5.0.3
|
1370
1486
|
.ft P
|
1371
1487
|
.fi
|
1372
1488
|
.UNINDENT
|
@@ -1458,7 +1574,7 @@ Here are optional tools:
|
|
1458
1574
|
detecting libraries
|
1459
1575
|
.IP \(bu 2
|
1460
1576
|
\fI\%sudo\fP for installing built
|
1461
|
-
|
1577
|
+
Groonga
|
1462
1578
|
.UNINDENT
|
1463
1579
|
.UNINDENT
|
1464
1580
|
.UNINDENT
|
@@ -1506,9 +1622,9 @@ steps:
|
|
1506
1622
|
.sp
|
1507
1623
|
.nf
|
1508
1624
|
.ft C
|
1509
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.
|
1510
|
-
% tar xvzf groonga\-5.0.
|
1511
|
-
% cd groonga\-5.0.
|
1625
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-5.0.3.tar.gz
|
1626
|
+
% tar xvzf groonga\-5.0.3.tar.gz
|
1627
|
+
% cd groonga\-5.0.3
|
1512
1628
|
% ./configure
|
1513
1629
|
% make
|
1514
1630
|
% sudo make install
|
@@ -1520,7 +1636,7 @@ steps:
|
|
1520
1636
|
After the above steps, \fB/reference/executables/groonga\fP is found in
|
1521
1637
|
\fB/usr/local/bin/groonga\fP\&.
|
1522
1638
|
.sp
|
1523
|
-
The default build will work well but you can customize
|
1639
|
+
The default build will work well but you can customize Groonga at
|
1524
1640
|
\fBconfigure\fP step.
|
1525
1641
|
.sp
|
1526
1642
|
The following describes details about each step.
|
@@ -1668,7 +1784,7 @@ installed with \fB\-\-prefix=/usr\fP, you need to specify this option with
|
|
1668
1784
|
path that you use for building MessagePack.
|
1669
1785
|
.sp
|
1670
1786
|
If you installed MessagePack with \fB\-\-prefix=$HOME/local\fP option, you
|
1671
|
-
|
1787
|
+
should specify \fB\-\-with\-message\-pack=$HOME/local\fP to Groonga\(aqs
|
1672
1788
|
\fBconfigure\fP\&.
|
1673
1789
|
.sp
|
1674
1790
|
The default is \fB/usr\fP\&.
|
@@ -1729,7 +1845,7 @@ files:
|
|
1729
1845
|
Shows all \fBconfigure\fP options.
|
1730
1846
|
.SS \fBmake\fP
|
1731
1847
|
.sp
|
1732
|
-
\fBconfigure\fP is succeeded, you can build
|
1848
|
+
\fBconfigure\fP is succeeded, you can build Groonga by \fBmake\fP:
|
1733
1849
|
.INDENT 0.0
|
1734
1850
|
.INDENT 3.5
|
1735
1851
|
.sp
|
@@ -5267,17 +5383,21 @@ Execution example:
|
|
5267
5383
|
.sp
|
5268
5384
|
.nf
|
5269
5385
|
.ft C
|
5386
|
+
table_create \-\-name GeoSite \-\-flags TABLE_HASH_KEY \-\-key_type ShortText
|
5387
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
5388
|
+
column_create \-\-table GeoSite \-\-name location \-\-type WGS84GeoPoint
|
5389
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
5270
5390
|
table_create \-\-name GeoIndex \-\-flags TABLE_PAT_KEY \-\-key_type WGS84GeoPoint
|
5271
5391
|
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
5272
|
-
column_create \-\-table GeoIndex \-\-name index_point \-\-type
|
5392
|
+
column_create \-\-table GeoIndex \-\-name index_point \-\-type GeoSite \-\-flags COLUMN_INDEX \-\-source location
|
5273
5393
|
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
5274
|
-
load \-\-table
|
5394
|
+
load \-\-table GeoSite
|
5275
5395
|
[
|
5276
5396
|
{"_key":"http://example.org/","location":"128452975x503157902"},
|
5277
5397
|
{"_key":"http://example.net/","location":"128487316x502920929"}
|
5278
5398
|
]
|
5279
5399
|
# [[0, 1337566253.89858, 0.000355720520019531], 2]
|
5280
|
-
select \-\-table
|
5400
|
+
select \-\-table GeoSite \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 5000)\(aq \-\-output_columns _key,location
|
5281
5401
|
# [
|
5282
5402
|
# [
|
5283
5403
|
# 0,
|
@@ -5319,7 +5439,7 @@ Execution example:
|
|
5319
5439
|
.sp
|
5320
5440
|
.nf
|
5321
5441
|
.ft C
|
5322
|
-
select \-\-table
|
5442
|
+
select \-\-table GeoSite \-\-filter \(aqgeo_in_circle(location, "128515259x503187188", 50000)\(aq \-\-output_columns _key,location,_score \-\-sortby \(aq\-geo_distance(location, "128515259x503187188")\(aq \-\-scorer \(aq_score = geo_distance(location, "128515259x503187188")\(aq
|
5323
5443
|
# [
|
5324
5444
|
# [
|
5325
5445
|
# 0,
|
@@ -8420,10 +8540,70 @@ TODO
|
|
8420
8540
|
.sp
|
8421
8541
|
TODO
|
8422
8542
|
.SS GQTP
|
8543
|
+
.SS Summary
|
8423
8544
|
.sp
|
8424
|
-
|
8545
|
+
GQTP is the acronym standing for "Groonga Query Transfer Protocol".
|
8546
|
+
.sp
|
8547
|
+
GQTP is a protocol designed for Groonga. It\(aqs a stateful
|
8548
|
+
protocol. You can send multiple commands in one session.
|
8549
|
+
.sp
|
8550
|
+
GQTP will be faster rather than \fB/server/http\fP when you send many
|
8551
|
+
light commands like \fB/reference/commands/status\fP\&. GQTP will be
|
8552
|
+
almost same performance as HTTP when you send heavy commands like
|
8553
|
+
\fB/reference/commands/select\fP\&.
|
8554
|
+
.sp
|
8555
|
+
We recommend that you use HTTP for many cases. Because there are many
|
8556
|
+
HTTP client libraries.
|
8557
|
+
.sp
|
8558
|
+
If you want to use GQTP, you can use the following libraries:
|
8559
|
+
.INDENT 0.0
|
8560
|
+
.INDENT 3.5
|
8561
|
+
.INDENT 0.0
|
8562
|
+
.IP \(bu 2
|
8563
|
+
Ruby: \fI\%groonga\-client\fP
|
8564
|
+
.IP \(bu 2
|
8565
|
+
Python: \fI\%poyonga\fP
|
8566
|
+
.IP \(bu 2
|
8567
|
+
Go: \fI\%goroo\fP
|
8568
|
+
.IP \(bu 2
|
8569
|
+
PHP: \fI\%proonga\fP
|
8570
|
+
.IP \(bu 2
|
8571
|
+
C/C++: Groonga (Groonga can be also used as library)
|
8572
|
+
.UNINDENT
|
8573
|
+
.UNINDENT
|
8574
|
+
.UNINDENT
|
8575
|
+
.sp
|
8576
|
+
It\(aqs not a library but you can use
|
8577
|
+
\fB/reference/executables/groonga\fP as a GQTP client.
|
8578
|
+
.SS How to run
|
8579
|
+
.sp
|
8580
|
+
\fB/reference/executables/groonga\fP is a GQTP server implementation.
|
8581
|
+
You can run a Groonga server by the following command line:
|
8582
|
+
.INDENT 0.0
|
8583
|
+
.INDENT 3.5
|
8584
|
+
.sp
|
8585
|
+
.nf
|
8586
|
+
.ft C
|
8587
|
+
groonga \-\-protocol gqtp \-s [options] DB_PATH
|
8588
|
+
.ft P
|
8589
|
+
.fi
|
8590
|
+
.UNINDENT
|
8591
|
+
.UNINDENT
|
8425
8592
|
.sp
|
8426
|
-
|
8593
|
+
You can run a Groonga server as a daemon by the following command
|
8594
|
+
line:
|
8595
|
+
.INDENT 0.0
|
8596
|
+
.INDENT 3.5
|
8597
|
+
.sp
|
8598
|
+
.nf
|
8599
|
+
.ft C
|
8600
|
+
groonga \-\-protocol gqtp \-d [options] DB_PATH
|
8601
|
+
.ft P
|
8602
|
+
.fi
|
8603
|
+
.UNINDENT
|
8604
|
+
.UNINDENT
|
8605
|
+
.sp
|
8606
|
+
See \fB/reference/executables/groonga\fP for available \fBoptions\fP\&.
|
8427
8607
|
.SS Memcached binary protocol
|
8428
8608
|
.sp
|
8429
8609
|
Groonga supports the memcached binary protocol. The following form shows how to run Groonga as a memcached binary protocol server daemon.
|
@@ -8640,20 +8820,259 @@ gqtpでリクエストします。gqtpのリクエストをLF区切り形式で
|
|
8640
8820
|
.fi
|
8641
8821
|
.UNINDENT
|
8642
8822
|
.UNINDENT
|
8643
|
-
.SS
|
8823
|
+
.SS \fBgroonga\fP executable file
|
8644
8824
|
.SS Summary
|
8645
8825
|
.sp
|
8646
|
-
|
8826
|
+
\fBgroonga\fP executable file provides the following features:
|
8827
|
+
.INDENT 0.0
|
8828
|
+
.INDENT 3.5
|
8829
|
+
.INDENT 0.0
|
8830
|
+
.IP \(bu 2
|
8831
|
+
Fulltext search server
|
8832
|
+
.IP \(bu 2
|
8833
|
+
Fulltext search shell
|
8834
|
+
.IP \(bu 2
|
8835
|
+
Client for Groonga fulltext search server
|
8836
|
+
.UNINDENT
|
8837
|
+
.UNINDENT
|
8838
|
+
.UNINDENT
|
8839
|
+
.sp
|
8840
|
+
Groonga can be used as a library. If you want to use Groonga as a
|
8841
|
+
library, you need to write a program in C, C++ and so on. Library use
|
8842
|
+
is useful for embedding fulltext search feature to your application,
|
8843
|
+
but it\(aqs not easy to use.
|
8844
|
+
.sp
|
8845
|
+
You can use \fBgroonga\fP executable file to get fulltext search
|
8846
|
+
feature.
|
8647
8847
|
.sp
|
8648
|
-
Groonga
|
8649
|
-
|
8848
|
+
If you want to try Groonga, fulltext search shell usage is useful. You
|
8849
|
+
don\(aqt need any server and client. You just need one terminal. You can
|
8850
|
+
try Groonga like the following:
|
8851
|
+
.INDENT 0.0
|
8852
|
+
.INDENT 3.5
|
8853
|
+
.sp
|
8854
|
+
.nf
|
8855
|
+
.ft C
|
8856
|
+
% groonga \-n db
|
8857
|
+
> status
|
8858
|
+
[[0,1429687763.70845,0.000115633010864258],{"alloc_count":195,...}]
|
8859
|
+
> quit
|
8860
|
+
%
|
8861
|
+
.ft P
|
8862
|
+
.fi
|
8863
|
+
.UNINDENT
|
8864
|
+
.UNINDENT
|
8865
|
+
.sp
|
8866
|
+
If you want to create an application that has fulltext search feature,
|
8867
|
+
fulltext search server usage is useful. You can use Groonga as a
|
8868
|
+
server like RDBMS (Relational DataBase Management
|
8869
|
+
System). Client\-server model is a popular architecture.
|
8870
|
+
.sp
|
8871
|
+
Normally, client for Groonga fulltext server usage isn\(aqt used.
|
8650
8872
|
.SS Syntax
|
8873
|
+
.sp
|
8874
|
+
\fBgroonga\fP executable file has the following four modes:
|
8875
|
+
.INDENT 0.0
|
8876
|
+
.INDENT 3.5
|
8877
|
+
.INDENT 0.0
|
8878
|
+
.IP \(bu 2
|
8879
|
+
Standalone mode
|
8880
|
+
.IP \(bu 2
|
8881
|
+
Server mode
|
8882
|
+
.IP \(bu 2
|
8883
|
+
Daemon mode
|
8884
|
+
.IP \(bu 2
|
8885
|
+
Client mode
|
8886
|
+
.UNINDENT
|
8887
|
+
.UNINDENT
|
8888
|
+
.UNINDENT
|
8889
|
+
.sp
|
8890
|
+
There are common options in these modes. These common options is
|
8891
|
+
described later section.
|
8892
|
+
.SS Standalone mode
|
8893
|
+
.sp
|
8894
|
+
In standalone mode, \fBgroonga\fP executable file runs one or more
|
8895
|
+
Groonga \fB/reference/command\fP against a local Groonga database.
|
8896
|
+
.sp
|
8897
|
+
Here is the syntax to run shell that executes Groonga command against
|
8898
|
+
temporary database:
|
8899
|
+
.INDENT 0.0
|
8900
|
+
.INDENT 3.5
|
8901
|
+
.sp
|
8902
|
+
.nf
|
8903
|
+
.ft C
|
8904
|
+
groonga [options]
|
8905
|
+
.ft P
|
8906
|
+
.fi
|
8907
|
+
.UNINDENT
|
8908
|
+
.UNINDENT
|
8909
|
+
.sp
|
8910
|
+
Here is the syntax to create a new database and run shell that
|
8911
|
+
executes Groonga command against the new database:
|
8912
|
+
.INDENT 0.0
|
8913
|
+
.INDENT 3.5
|
8914
|
+
.sp
|
8915
|
+
.nf
|
8916
|
+
.ft C
|
8917
|
+
groonga [options] \-n DB_PATH
|
8918
|
+
.ft P
|
8919
|
+
.fi
|
8920
|
+
.UNINDENT
|
8921
|
+
.UNINDENT
|
8922
|
+
.sp
|
8923
|
+
Here is the syntax to run shell that executes Groonga command against
|
8924
|
+
existing database:
|
8925
|
+
.INDENT 0.0
|
8926
|
+
.INDENT 3.5
|
8927
|
+
.sp
|
8928
|
+
.nf
|
8929
|
+
.ft C
|
8930
|
+
groonga [options] DB_PATH
|
8931
|
+
.ft P
|
8932
|
+
.fi
|
8933
|
+
.UNINDENT
|
8934
|
+
.UNINDENT
|
8935
|
+
.sp
|
8936
|
+
Here is the syntax to run Groonga command against existing database
|
8937
|
+
and exit:
|
8938
|
+
.INDENT 0.0
|
8939
|
+
.INDENT 3.5
|
8940
|
+
.sp
|
8941
|
+
.nf
|
8942
|
+
.ft C
|
8943
|
+
groonga [options] DB_PATH COMMAND [command arguments]
|
8944
|
+
.ft P
|
8945
|
+
.fi
|
8946
|
+
.UNINDENT
|
8947
|
+
.UNINDENT
|
8948
|
+
.SS Server mode
|
8949
|
+
.sp
|
8950
|
+
In server mode, \fBgroonga\fP executable file runs as a server. The
|
8951
|
+
server accepts connections from other processes at local machine or
|
8952
|
+
remote machine and executes received Groonga \fB/reference/command\fP
|
8953
|
+
against a local Groonga database.
|
8954
|
+
.sp
|
8955
|
+
You can choose one protocol from \fB/server/http\fP and
|
8956
|
+
\fB/server/gqtp\fP\&. Normally, HTTP is suitable but GQTP is the
|
8957
|
+
default protocol. This section describes only about HTTP protocol
|
8958
|
+
usage.
|
8959
|
+
.sp
|
8960
|
+
In server mode, \fBgroonga\fP executable file runs in the foreground. If
|
8961
|
+
you want to run Groonga server in the background, see
|
8962
|
+
\fIgroonga\-executable\-file\-server\-mode\fP\&.
|
8963
|
+
.sp
|
8964
|
+
Here is the syntax to run Groonga server with temporary database:
|
8965
|
+
.INDENT 0.0
|
8966
|
+
.INDENT 3.5
|
8967
|
+
.sp
|
8968
|
+
.nf
|
8969
|
+
.ft C
|
8970
|
+
groonga [options] \-\-protocol http \-s
|
8971
|
+
.ft P
|
8972
|
+
.fi
|
8973
|
+
.UNINDENT
|
8974
|
+
.UNINDENT
|
8975
|
+
.sp
|
8976
|
+
Here is the syntax to create a new database and run Groonga server
|
8977
|
+
with the new database:
|
8978
|
+
.INDENT 0.0
|
8979
|
+
.INDENT 3.5
|
8980
|
+
.sp
|
8981
|
+
.nf
|
8982
|
+
.ft C
|
8983
|
+
groonga [options] \-\-protocol http \-s \-n DB_PATH
|
8984
|
+
.ft P
|
8985
|
+
.fi
|
8986
|
+
.UNINDENT
|
8987
|
+
.UNINDENT
|
8988
|
+
.sp
|
8989
|
+
Here is the syntax to run Groonga server with existing database:
|
8990
|
+
.INDENT 0.0
|
8991
|
+
.INDENT 3.5
|
8992
|
+
.sp
|
8993
|
+
.nf
|
8994
|
+
.ft C
|
8995
|
+
groonga [options] \-\-protocol http \-s DB_PATH
|
8996
|
+
.ft P
|
8997
|
+
.fi
|
8998
|
+
.UNINDENT
|
8999
|
+
.UNINDENT
|
9000
|
+
.SS Daemon mode
|
9001
|
+
.sp
|
9002
|
+
In daemon mode, \fBgroonga\fP executable file runs as a daemon. Daemon
|
9003
|
+
is similar to server but it runs in the background. See
|
9004
|
+
\fI_groonga\-executable\-file\-daemon\-mode\fP about server.
|
9005
|
+
.sp
|
9006
|
+
Here is the syntax to run Groonga daemon with temporary database:
|
9007
|
+
.INDENT 0.0
|
9008
|
+
.INDENT 3.5
|
9009
|
+
.sp
|
9010
|
+
.nf
|
9011
|
+
.ft C
|
9012
|
+
groonga [options] \-\-protocol http \-d
|
9013
|
+
.ft P
|
9014
|
+
.fi
|
9015
|
+
.UNINDENT
|
9016
|
+
.UNINDENT
|
9017
|
+
.sp
|
9018
|
+
Here is the syntax to create a new database and run Groonga daemon
|
9019
|
+
with the new database:
|
9020
|
+
.INDENT 0.0
|
9021
|
+
.INDENT 3.5
|
9022
|
+
.sp
|
9023
|
+
.nf
|
9024
|
+
.ft C
|
9025
|
+
groonga [options] \-\-protocol http \-d \-n DB_PATH
|
9026
|
+
.ft P
|
9027
|
+
.fi
|
9028
|
+
.UNINDENT
|
9029
|
+
.UNINDENT
|
9030
|
+
.sp
|
9031
|
+
Here is the syntax to run Groonga daemon with existing database:
|
8651
9032
|
.INDENT 0.0
|
8652
9033
|
.INDENT 3.5
|
8653
9034
|
.sp
|
8654
9035
|
.nf
|
8655
9036
|
.ft C
|
8656
|
-
groonga [options]
|
9037
|
+
groonga [options] \-\-protocol http \-d DB_PATH
|
9038
|
+
.ft P
|
9039
|
+
.fi
|
9040
|
+
.UNINDENT
|
9041
|
+
.UNINDENT
|
9042
|
+
.sp
|
9043
|
+
\fI\-\-pid\-file\fP option will be useful for daemon mode.
|
9044
|
+
.SS Client mode
|
9045
|
+
.sp
|
9046
|
+
In client mode, \fBgroonga\fP executable file runs as a client for GQTP
|
9047
|
+
protocol Groonga server. Its usage is similar to
|
9048
|
+
\fIgroonga\-executable\-file\-standalone\-mode\fP\&. You can run shell and
|
9049
|
+
execute one command. You need to specify server address instead of
|
9050
|
+
local database.
|
9051
|
+
.sp
|
9052
|
+
Note that you can use \fBgroonga\fP executable file as a client for HTTP
|
9053
|
+
protocol Groonga server.
|
9054
|
+
.sp
|
9055
|
+
Here is the syntax to run shell that executes Groonga command against
|
9056
|
+
Groonga server that is running at \fB192.168.0.1:10043\fP:
|
9057
|
+
.INDENT 0.0
|
9058
|
+
.INDENT 3.5
|
9059
|
+
.sp
|
9060
|
+
.nf
|
9061
|
+
.ft C
|
9062
|
+
groonga [options] \-c \-\-host 192.168.0.1 \-\-port 10043
|
9063
|
+
.ft P
|
9064
|
+
.fi
|
9065
|
+
.UNINDENT
|
9066
|
+
.UNINDENT
|
9067
|
+
.sp
|
9068
|
+
Here is the syntax to run Groonga command against Groonga server that
|
9069
|
+
is running at \fB192.168.0.1:10043\fP and exit:
|
9070
|
+
.INDENT 0.0
|
9071
|
+
.INDENT 3.5
|
9072
|
+
.sp
|
9073
|
+
.nf
|
9074
|
+
.ft C
|
9075
|
+
groonga [options] \-c \-\-host 192.168.0.1 \-\-port 10043 COMMAND [command arguments]
|
8657
9076
|
.ft P
|
8658
9077
|
.fi
|
8659
9078
|
.UNINDENT
|
@@ -13197,76 +13616,201 @@ dumpが出力するフォーマットは直接Groongaが解釈できるフォー
|
|
13197
13616
|
.nf
|
13198
13617
|
.ft C
|
13199
13618
|
dump [tables]
|
13619
|
+
[dump_plugins]
|
13620
|
+
[dump_schema]
|
13621
|
+
[dump_records]
|
13622
|
+
[dump_indexes]
|
13200
13623
|
.ft P
|
13201
13624
|
.fi
|
13202
13625
|
.UNINDENT
|
13203
13626
|
.UNINDENT
|
13204
13627
|
.SS Usage
|
13205
13628
|
.sp
|
13206
|
-
|
13629
|
+
Here is the sample schema and data to check dump behaviour:
|
13630
|
+
.INDENT 0.0
|
13631
|
+
.INDENT 3.5
|
13632
|
+
.sp
|
13633
|
+
.nf
|
13634
|
+
.ft C
|
13635
|
+
plugin_register token_filters/stop_word
|
13636
|
+
table_create Bookmarks TABLE_HASH_KEY ShortText
|
13637
|
+
column_create Bookmarks title COLUMN_SCALAR ShortText
|
13638
|
+
table_create Lexicon TABLE_PAT_KEY ShortText
|
13639
|
+
table_create Sites TABLE_NO_KEY
|
13640
|
+
column_create Sites url COLUMN_SCALAR ShortText
|
13641
|
+
column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
|
13642
|
+
load \-\-table Bookmarks
|
13643
|
+
[
|
13644
|
+
{"_key":"Groonga", "title":"Introduction to Groonga"},
|
13645
|
+
{"_key":"Mroonga", "title":"Introduction to Mroonga"}
|
13646
|
+
]
|
13647
|
+
load \-\-table Sites
|
13648
|
+
[
|
13649
|
+
{"_key": 1, "url":"http://groonga.org"},
|
13650
|
+
{"_key": 2, "url":"http://mroonga.org"}
|
13651
|
+
]
|
13652
|
+
.ft P
|
13653
|
+
.fi
|
13654
|
+
.UNINDENT
|
13655
|
+
.UNINDENT
|
13656
|
+
.sp
|
13657
|
+
Dump all data in database:
|
13207
13658
|
.INDENT 0.0
|
13208
13659
|
.INDENT 3.5
|
13209
13660
|
.sp
|
13210
13661
|
.nf
|
13211
13662
|
.ft C
|
13212
13663
|
> dump
|
13213
|
-
|
13214
|
-
|
13215
|
-
|
13216
|
-
column_create
|
13217
|
-
|
13218
|
-
|
13664
|
+
plugin_register token_filters/stop_word
|
13665
|
+
|
13666
|
+
table_create Sites TABLE_NO_KEY
|
13667
|
+
column_create Sites url COLUMN_SCALAR ShortText
|
13668
|
+
|
13669
|
+
table_create Bookmarks TABLE_HASH_KEY ShortText
|
13670
|
+
column_create Bookmarks title COLUMN_SCALAR ShortText
|
13671
|
+
|
13672
|
+
table_create Lexicon TABLE_PAT_KEY ShortText
|
13673
|
+
|
13674
|
+
load \-\-table Sites
|
13219
13675
|
[
|
13220
|
-
["
|
13221
|
-
["
|
13222
|
-
["
|
13223
|
-
\&...
|
13676
|
+
["_id","url"],
|
13677
|
+
[1,"http://groonga.org"],
|
13678
|
+
[2,"http://mroonga.org"]
|
13224
13679
|
]
|
13225
|
-
|
13680
|
+
|
13681
|
+
load \-\-table Bookmarks
|
13682
|
+
[
|
13683
|
+
["_key","title"],
|
13684
|
+
["Groonga","Introduction to Groonga"],
|
13685
|
+
["Mroonga","Introduction to Mroonga"]
|
13686
|
+
]
|
13687
|
+
|
13688
|
+
create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
|
13226
13689
|
.ft P
|
13227
13690
|
.fi
|
13228
13691
|
.UNINDENT
|
13229
13692
|
.UNINDENT
|
13230
13693
|
.sp
|
13231
|
-
|
13694
|
+
Dump schema and specific table data:
|
13232
13695
|
.INDENT 0.0
|
13233
13696
|
.INDENT 3.5
|
13234
13697
|
.sp
|
13235
13698
|
.nf
|
13236
13699
|
.ft C
|
13237
|
-
> dump
|
13238
|
-
|
13239
|
-
|
13240
|
-
table_create Comments TABLE_PAT_KEY ShortText
|
13241
|
-
column_create Comments text COLUMN_SCALAR ShortText
|
13700
|
+
> dump Bookmarks
|
13701
|
+
plugin_register token_filters/stop_word
|
13702
|
+
|
13242
13703
|
table_create Sites TABLE_NO_KEY
|
13243
13704
|
column_create Sites url COLUMN_SCALAR ShortText
|
13244
|
-
|
13705
|
+
|
13706
|
+
table_create Bookmarks TABLE_HASH_KEY ShortText
|
13707
|
+
column_create Bookmarks title COLUMN_SCALAR ShortText
|
13708
|
+
|
13709
|
+
table_create Lexicon TABLE_PAT_KEY ShortText
|
13710
|
+
|
13711
|
+
load \-\-table Bookmarks
|
13245
13712
|
[
|
13246
|
-
["_key"],
|
13247
|
-
["
|
13248
|
-
["
|
13249
|
-
\&...
|
13713
|
+
["_key","title"],
|
13714
|
+
["Groonga","Introduction to Groonga"],
|
13715
|
+
["Mroonga","Introduction to Mroonga"]
|
13250
13716
|
]
|
13717
|
+
|
13718
|
+
column_create Lexicon bookmark_title COLUMN_INDEX Bookmarks title
|
13719
|
+
.ft P
|
13720
|
+
.fi
|
13721
|
+
.UNINDENT
|
13722
|
+
.UNINDENT
|
13723
|
+
.sp
|
13724
|
+
Dump plugin only:
|
13725
|
+
.INDENT 0.0
|
13726
|
+
.INDENT 3.5
|
13727
|
+
.sp
|
13728
|
+
.nf
|
13729
|
+
.ft C
|
13730
|
+
> dump \-\-dump_schema no \-\-dump_records no \-\-dump_indexes no
|
13731
|
+
plugin_register token_filters/stop_word
|
13732
|
+
.ft P
|
13733
|
+
.fi
|
13734
|
+
.UNINDENT
|
13735
|
+
.UNINDENT
|
13736
|
+
.sp
|
13737
|
+
Dump records only:
|
13738
|
+
.INDENT 0.0
|
13739
|
+
.INDENT 3.5
|
13740
|
+
.sp
|
13741
|
+
.nf
|
13742
|
+
.ft C
|
13743
|
+
> dump \-\-dump_schema no \-\-dump_plugins no \-\-dump_indexes no
|
13251
13744
|
load \-\-table Sites
|
13252
13745
|
[
|
13253
13746
|
["_id","url"],
|
13254
|
-
[1,"http://groonga.org
|
13255
|
-
[2,"http://
|
13256
|
-
\&...
|
13747
|
+
[1,"http://groonga.org"],
|
13748
|
+
[2,"http://mroonga.org"]
|
13257
13749
|
]
|
13750
|
+
|
13751
|
+
load \-\-table Bookmarks
|
13752
|
+
[
|
13753
|
+
["_key","title"],
|
13754
|
+
["Groonga","Introduction to Groonga"],
|
13755
|
+
["Mroonga","Introduction to Mroonga"]
|
13756
|
+
]
|
13757
|
+
.ft P
|
13758
|
+
.fi
|
13759
|
+
.UNINDENT
|
13760
|
+
.UNINDENT
|
13761
|
+
.sp
|
13762
|
+
Dump schema only:
|
13763
|
+
.INDENT 0.0
|
13764
|
+
.INDENT 3.5
|
13765
|
+
.sp
|
13766
|
+
.nf
|
13767
|
+
.ft C
|
13768
|
+
> dump \-\-dump_records no \-\-dump_plugins no \-\-dump_indexes no
|
13769
|
+
table_create Sites TABLE_NO_KEY
|
13770
|
+
column_create Sites url COLUMN_SCALAR ShortText
|
13771
|
+
|
13772
|
+
table_create Bookmarks TABLE_HASH_KEY ShortText
|
13773
|
+
column_create Bookmarks title COLUMN_SCALAR ShortText
|
13774
|
+
|
13775
|
+
table_create Lexicon TABLE_PAT_KEY ShortText
|
13258
13776
|
.ft P
|
13259
13777
|
.fi
|
13260
13778
|
.UNINDENT
|
13261
13779
|
.UNINDENT
|
13262
13780
|
.SS Parameters
|
13263
13781
|
.sp
|
13264
|
-
|
13782
|
+
There are optional parameters.
|
13783
|
+
.SS Optional parameters
|
13784
|
+
.SS \fBtables\fP
|
13265
13785
|
.INDENT 0.0
|
13266
13786
|
.INDENT 3.5
|
13267
13787
|
出力対象のテーブルを「,」(カンマ)区切りで指定します。存在しないテーブルを指定した場合は無視されます。
|
13268
13788
|
.UNINDENT
|
13269
13789
|
.UNINDENT
|
13790
|
+
.SS \fBdump_plugins\fP
|
13791
|
+
.sp
|
13792
|
+
You can customize the output whether it contains registered plugins or not.
|
13793
|
+
To exclude registered plugins from the output, specify \fBno\fP\&.
|
13794
|
+
.sp
|
13795
|
+
The default value is \fByes\fP\&.
|
13796
|
+
.SS \fBdump_schema\fP
|
13797
|
+
.sp
|
13798
|
+
You can customize the output whether it contains database schema or not.
|
13799
|
+
To exclude database schema from the output, specify \fBno\fP\&.
|
13800
|
+
.sp
|
13801
|
+
The default value is \fByes\fP\&.
|
13802
|
+
.SS \fBdump_records\fP
|
13803
|
+
.sp
|
13804
|
+
You can customize the output whether it contains records or not.
|
13805
|
+
To exclude records from the output, specify \fBno\fP\&.
|
13806
|
+
.sp
|
13807
|
+
The default value is \fByes\fP\&.
|
13808
|
+
.SS \fBdump_indexes\fP
|
13809
|
+
.sp
|
13810
|
+
You can customize the output whether it contains indexes or not.
|
13811
|
+
To exclude indexes from the output, specify \fBno\fP\&.
|
13812
|
+
.sp
|
13813
|
+
The default value is \fByes\fP\&.
|
13270
13814
|
.SS Return value
|
13271
13815
|
.sp
|
13272
13816
|
データベースのスキーマとデータをGroongaの組み込みコマンド呼び出し形式で出力します。output_type指定は無視されます。
|
@@ -14703,7 +15247,7 @@ request may be ignored.
|
|
14703
15247
|
.sp
|
14704
15248
|
You can send cancel request for the same request ID multiple times. If
|
14705
15249
|
the target request is canceled or finished, \fB"canceled"\fP value is
|
14706
|
-
changed to \fBfalse\fP from \fBtrue\fP:
|
15250
|
+
changed to \fBfalse\fP from \fBtrue\fP in return value:
|
14707
15251
|
.INDENT 0.0
|
14708
15252
|
.INDENT 3.5
|
14709
15253
|
.sp
|
@@ -27411,7 +27955,8 @@ SCORE_FUNCTION(COLUMN, ARGUMENT1, ARGUMENT2, ...) * WEIGHT
|
|
27411
27955
|
.UNINDENT
|
27412
27956
|
.UNINDENT
|
27413
27957
|
.sp
|
27414
|
-
You can use different score function for each
|
27958
|
+
You can use different score function for each
|
27959
|
+
\fIselect\-match\-columns\fP:
|
27415
27960
|
.INDENT 0.0
|
27416
27961
|
.INDENT 3.5
|
27417
27962
|
.sp
|
@@ -35830,6 +36375,144 @@ more records are matched, it returns \fBtrue\fP\&. Otherwise, it returns
|
|
35830
36375
|
.IP \(bu 2
|
35831
36376
|
\fB/reference/grn_expr/script_syntax\fP
|
35832
36377
|
.UNINDENT
|
36378
|
+
.SS vector_size
|
36379
|
+
.SS Summary
|
36380
|
+
.sp
|
36381
|
+
New in version 5.0.3.
|
36382
|
+
|
36383
|
+
.sp
|
36384
|
+
\fBvector_size\fP returns the value of vector column size.
|
36385
|
+
.sp
|
36386
|
+
To enable this function, register \fBfunctions/vector\fP plugin by following the command:
|
36387
|
+
.INDENT 0.0
|
36388
|
+
.INDENT 3.5
|
36389
|
+
.sp
|
36390
|
+
.nf
|
36391
|
+
.ft C
|
36392
|
+
plugin_register functions/vector
|
36393
|
+
.ft P
|
36394
|
+
.fi
|
36395
|
+
.UNINDENT
|
36396
|
+
.UNINDENT
|
36397
|
+
.sp
|
36398
|
+
Then, use \fBvector_size\fP function with \fB\-\-command_version 2\fP option.
|
36399
|
+
.SS Syntax
|
36400
|
+
.sp
|
36401
|
+
\fBvector_size\fP requires one argument \- \fBtarget\fP\&.
|
36402
|
+
.INDENT 0.0
|
36403
|
+
.INDENT 3.5
|
36404
|
+
.sp
|
36405
|
+
.nf
|
36406
|
+
.ft C
|
36407
|
+
vector_size(target)
|
36408
|
+
.ft P
|
36409
|
+
.fi
|
36410
|
+
.UNINDENT
|
36411
|
+
.UNINDENT
|
36412
|
+
.SS Usage
|
36413
|
+
.sp
|
36414
|
+
Here is a schema definition and sample data.
|
36415
|
+
.sp
|
36416
|
+
Sample schema:
|
36417
|
+
.sp
|
36418
|
+
Execution example:
|
36419
|
+
.INDENT 0.0
|
36420
|
+
.INDENT 3.5
|
36421
|
+
.sp
|
36422
|
+
.nf
|
36423
|
+
.ft C
|
36424
|
+
table_create Memos TABLE_HASH_KEY ShortText
|
36425
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
36426
|
+
column_create Memos tags COLUMN_VECTOR ShortText
|
36427
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
36428
|
+
.ft P
|
36429
|
+
.fi
|
36430
|
+
.UNINDENT
|
36431
|
+
.UNINDENT
|
36432
|
+
.sp
|
36433
|
+
Sample data:
|
36434
|
+
.sp
|
36435
|
+
Execution example:
|
36436
|
+
.INDENT 0.0
|
36437
|
+
.INDENT 3.5
|
36438
|
+
.sp
|
36439
|
+
.nf
|
36440
|
+
.ft C
|
36441
|
+
load \-\-table Memos
|
36442
|
+
[
|
36443
|
+
{"_key": "Groonga", "tags": ["Groonga"]},
|
36444
|
+
{"_key": "Rroonga", "tags": ["Groonga", "Ruby"]},
|
36445
|
+
{"_key": "Nothing"}
|
36446
|
+
]
|
36447
|
+
# [[0, 1337566253.89858, 0.000355720520019531], 3]
|
36448
|
+
.ft P
|
36449
|
+
.fi
|
36450
|
+
.UNINDENT
|
36451
|
+
.UNINDENT
|
36452
|
+
.sp
|
36453
|
+
Here is the simple usage of \fBvector_size\fP function which returns tags and size \- the value of \fBtags\fP column and size of it.
|
36454
|
+
.sp
|
36455
|
+
Execution example:
|
36456
|
+
.INDENT 0.0
|
36457
|
+
.INDENT 3.5
|
36458
|
+
.sp
|
36459
|
+
.nf
|
36460
|
+
.ft C
|
36461
|
+
select Memos \-\-output_columns \(aqtags, vector_size(tags)\(aq \-\-command_version 2
|
36462
|
+
# [
|
36463
|
+
# [
|
36464
|
+
# 0,
|
36465
|
+
# 1337566253.89858,
|
36466
|
+
# 0.000355720520019531
|
36467
|
+
# ],
|
36468
|
+
# [
|
36469
|
+
# [
|
36470
|
+
# [
|
36471
|
+
# 3
|
36472
|
+
# ],
|
36473
|
+
# [
|
36474
|
+
# [
|
36475
|
+
# "tags",
|
36476
|
+
# "ShortText"
|
36477
|
+
# ],
|
36478
|
+
# [
|
36479
|
+
# "vector_size",
|
36480
|
+
# "Object"
|
36481
|
+
# ]
|
36482
|
+
# ],
|
36483
|
+
# [
|
36484
|
+
# [
|
36485
|
+
# "Groonga"
|
36486
|
+
# ],
|
36487
|
+
# 1
|
36488
|
+
# ],
|
36489
|
+
# [
|
36490
|
+
# [
|
36491
|
+
# "Groonga",
|
36492
|
+
# "Ruby"
|
36493
|
+
# ],
|
36494
|
+
# 2
|
36495
|
+
# ],
|
36496
|
+
# [
|
36497
|
+
# [],
|
36498
|
+
# 0
|
36499
|
+
# ]
|
36500
|
+
# ]
|
36501
|
+
# ]
|
36502
|
+
# ]
|
36503
|
+
.ft P
|
36504
|
+
.fi
|
36505
|
+
.UNINDENT
|
36506
|
+
.UNINDENT
|
36507
|
+
.SS Parameters
|
36508
|
+
.sp
|
36509
|
+
There is one required parameter, \fBtarget\fP\&.
|
36510
|
+
.SS \fBtarget\fP
|
36511
|
+
.sp
|
36512
|
+
Specifies a vector column of table that is specified by \fBtable\fP parameter in \fBselect\fP\&.
|
36513
|
+
.SS Return value
|
36514
|
+
.sp
|
36515
|
+
\fBvector_size\fP returns the value of target vector column size.
|
35833
36516
|
.SS Operations
|
35834
36517
|
.sp
|
35835
36518
|
Groonga has the multiple search operations. This section describes
|
@@ -41556,8 +42239,12 @@ Execution example:
|
|
41556
42239
|
.UNINDENT
|
41557
42240
|
.UNINDENT
|
41558
42241
|
.SS See also
|
41559
|
-
.
|
41560
|
-
|
42242
|
+
.INDENT 0.0
|
42243
|
+
.IP \(bu 2
|
42244
|
+
\fB/reference/executables/groonga\fP
|
42245
|
+
.IP \(bu 2
|
42246
|
+
\fB/server/gqtp\fP
|
42247
|
+
.UNINDENT
|
41561
42248
|
.SS 検索
|
41562
42249
|
.sp
|
41563
42250
|
\fB/reference/commands/select\fP コマンドがqueryパラメータを使ってどのように検索するのかを説明します。
|
@@ -42901,14 +43588,19 @@ CUTTER_SOURCE_PATH=$HOME/work/cutter/cutter
|
|
42901
43588
|
.UNINDENT
|
42902
43589
|
.UNINDENT
|
42903
43590
|
.sp
|
42904
|
-
|
42905
|
-
|
43591
|
+
Debian系(.deb)やRed Hat系(.rpm)パッケージのビルドには \fI\%Vagrant\fP を使用します。apt\-getでインストールできるのは古いバージョンなので、Webサイトから最新版をダウンロードしてインストールすることをおすすめします。
|
43592
|
+
.sp
|
43593
|
+
Vagrantで使用する仮想化ソフトウェア(VirtualBox、VMwareなど)がない場合、合わせてインストールしてください。なお、VirtualBoxはsources.listにcontribセクションを追加すればapt\-getでインストールできます。:
|
42906
43594
|
.INDENT 0.0
|
42907
43595
|
.INDENT 3.5
|
42908
43596
|
.sp
|
42909
43597
|
.nf
|
42910
43598
|
.ft C
|
42911
|
-
%
|
43599
|
+
% cat /etc/apt/sources.list
|
43600
|
+
deb http://ftp.jp.debian.org/debian/ sid main contrib
|
43601
|
+
deb\-src http://ftp.jp.debian.org/debian/ sid main contrib
|
43602
|
+
% sudo apt\-get update
|
43603
|
+
% sudo apt\-get install virtualbox
|
42912
43604
|
.ft P
|
42913
43605
|
.fi
|
42914
43606
|
.UNINDENT
|
@@ -43501,8 +44193,8 @@ Debian系もしくはRed Hat系の場合には本番環境へとアップロー
|
|
43501
44193
|
.sp
|
43502
44194
|
.nf
|
43503
44195
|
.ft C
|
43504
|
-
%
|
43505
|
-
%
|
44196
|
+
% ruby \-run \-e httpd \-\- packages/yum/repositories (yumの場合)
|
44197
|
+
% ruby \-run \-e httpd \-\- packages/apt/repositories (aptの場合)
|
43506
44198
|
.ft P
|
43507
44199
|
.fi
|
43508
44200
|
.UNINDENT
|
@@ -43715,6 +44407,27 @@ Windows向けのパッケージのアップロードには以下のコマンド
|
|
43715
44407
|
.UNINDENT
|
43716
44408
|
.sp
|
43717
44409
|
アップロードが正常終了すると、リリース対象のリポジトリデータやパッケージ、アーカイブ等がpackages.groonga.orgへと反映されます。
|
44410
|
+
.SS Ubuntu用パッケージのアップロード
|
44411
|
+
.sp
|
44412
|
+
Ubuntu向けのパッケージのアップロードには以下のコマンドを実行します。:
|
44413
|
+
.INDENT 0.0
|
44414
|
+
.INDENT 3.5
|
44415
|
+
.sp
|
44416
|
+
.nf
|
44417
|
+
.ft C
|
44418
|
+
% cd packages/ubuntu
|
44419
|
+
% make upload
|
44420
|
+
.ft P
|
44421
|
+
.fi
|
44422
|
+
.UNINDENT
|
44423
|
+
.UNINDENT
|
44424
|
+
.sp
|
44425
|
+
アップロードが正常終了すると、launchpad.net上でビルドが実行され、ビルド結果がメールで通知されます。ビルドに成功すると、リリース対象のパッケージがlaunchpad.netのGroongaチームのPPAへと反映されます。公開されているパッケージは以下のURLで確認できます。
|
44426
|
+
.INDENT 0.0
|
44427
|
+
.INDENT 3.5
|
44428
|
+
\fI\%https://launchpad.net/~groonga/+archive/ubuntu/ppa\fP
|
44429
|
+
.UNINDENT
|
44430
|
+
.UNINDENT
|
43718
44431
|
.SS blogroonga(ブログ)の更新
|
43719
44432
|
.sp
|
43720
44433
|
\fI\%http://groonga.org/blog/\fP および \fI\%http://groonga.org/blog/\fP にて公開されているリリース案内を作成します。
|
@@ -43724,19 +44437,19 @@ Windows向けのパッケージのアップロードには以下のコマンド
|
|
43724
44437
|
cloneしたWebサイトのソースに対して以下のファイルを新規追加します。
|
43725
44438
|
.INDENT 0.0
|
43726
44439
|
.IP \(bu 2
|
43727
|
-
groonga.org/en/_post/(リリース日)\-release.
|
44440
|
+
groonga.org/en/_post/(リリース日)\-release.md
|
43728
44441
|
.IP \(bu 2
|
43729
|
-
groonga.org/ja/_post/(リリース日)\-release.
|
44442
|
+
groonga.org/ja/_post/(リリース日)\-release.md
|
43730
44443
|
.UNINDENT
|
43731
44444
|
.sp
|
43732
|
-
編集した内容をpushする前に確認したい場合には
|
44445
|
+
編集した内容をpushする前に確認したい場合にはJekyllおよびRedCloth(Textileパーサー)、RDiscount(Markdownパーサー)、JavaScript interpreter(therubyracer、Node.jsなど)が必要です。
|
43733
44446
|
インストールするには以下のコマンドを実行します。:
|
43734
44447
|
.INDENT 0.0
|
43735
44448
|
.INDENT 3.5
|
43736
44449
|
.sp
|
43737
44450
|
.nf
|
43738
44451
|
.ft C
|
43739
|
-
% sudo
|
44452
|
+
% sudo gem install jekyll RedCloth rdiscount therubyracer
|
43740
44453
|
.ft P
|
43741
44454
|
.fi
|
43742
44455
|
.UNINDENT
|
@@ -43759,7 +44472,7 @@ jekyllのインストールを行ったら、以下のコマンドでローカ
|
|
43759
44472
|
\fBNOTE:\fP
|
43760
44473
|
.INDENT 0.0
|
43761
44474
|
.INDENT 3.5
|
43762
|
-
記事を非公開の状態でアップロードするには.
|
44475
|
+
記事を非公開の状態でアップロードするには.mdファイルのpublished:をfalseに設定します。:
|
43763
44476
|
.INDENT 0.0
|
43764
44477
|
.INDENT 3.5
|
43765
44478
|
.sp
|