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
 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.9. in_values — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.9. in_values — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="7.14.10. now" href="now.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.8. html_untag" href="html_untag.html" /> 
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/in_values.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/in_values.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -60,7 +60,7 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="html_untag.html" title="7.14.8. html_untag"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -243,7 +243,7 @@ column_create Tags memos_tag COLUMN_INDEX Memos tag 
     | 
|
| 
       243 
243 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       244 
244 
     | 
    
         
             
                      <a href="html_untag.html" title="7.14.8. html_untag"
         
     | 
| 
       245 
245 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       246 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 246 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       247 
247 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       248 
248 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       249 
249 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.10. now — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.10. now — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="7.14.11. query" href="query.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.9. in_values" href="in_values.html" /> 
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/now.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/now.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -60,7 +60,7 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="in_values.html" title="7.14.9. in_values"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -159,7 +159,7 @@ 
     | 
|
| 
       159 
159 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       160 
160 
     | 
    
         
             
                      <a href="in_values.html" title="7.14.9. in_values"
         
     | 
| 
       161 
161 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       162 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 162 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       163 
163 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       164 
164 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       165 
165 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.11. query — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.11. query — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="7.14.12. rand" href="rand.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.10. now" href="now.html" /> 
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/query.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/query.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -60,7 +60,7 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="now.html" title="7.14.10. now"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -425,7 +425,7 @@ records are matched, it returns <tt class="docutils literal"><span class="pre">t 
     | 
|
| 
       425 
425 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       426 
426 
     | 
    
         
             
                      <a href="now.html" title="7.14.10. now"
         
     | 
| 
       427 
427 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       428 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 428 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       429 
429 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       430 
430 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       431 
431 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.12. rand — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.12. rand — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="7.14.13. snippet_html" href="snippet_html.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.11. query" href="query.html" /> 
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/rand.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/rand.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -60,7 +60,7 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="query.html" title="7.14.11. query"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -166,7 +166,7 @@ 
     | 
|
| 
       166 
166 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       167 
167 
     | 
    
         
             
                      <a href="query.html" title="7.14.11. query"
         
     | 
| 
       168 
168 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       169 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 169 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       170 
170 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       171 
171 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       172 
172 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.13. snippet_html — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.13. snippet_html — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="7.14.14. sub_filter" href="sub_filter.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.12. rand" href="rand.html" /> 
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/snippet_html.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/snippet_html.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -60,7 +60,7 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="rand.html" title="7.14.12. rand"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -290,7 +290,7 @@ to 3. The max size 3 will be customizable soon.</p> 
     | 
|
| 
       290 
290 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       291 
291 
     | 
    
         
             
                      <a href="rand.html" title="7.14.12. rand"
         
     | 
| 
       292 
292 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       293 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 293 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       294 
294 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       295 
295 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       296 
296 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>7.14.14. sub_filter — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.14. sub_filter — Groonga v5.0.3 documentation</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    '../../',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -25,9 +25,9 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       28 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
       29 
29 
     | 
    
         
             
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
       30 
     | 
    
         
            -
                <link rel="next" title="7.15.  
     | 
| 
      
 30 
     | 
    
         
            +
                <link rel="next" title="7.14.15. vector_size" href="vector_size.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="7.14.13. snippet_html" href="snippet_html.html" /> 
         
     | 
| 
       32 
32 
     | 
    
         
             
              </head>
         
     | 
| 
       33 
33 
     | 
    
         
             
              <body>
         
     | 
| 
         @@ -42,7 +42,7 @@ 
     | 
|
| 
       42 
42 
     | 
    
         | 
| 
       43 
43 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       44 
44 
     | 
    
         
             
                <ul>
         
     | 
| 
       45 
     | 
    
         
            -
                  <li><a href="../../../../ja/html/reference/functions/sub_filter.html" 
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/sub_filter.html">日本語</a></li>
         
     | 
| 
       46 
46 
     | 
    
         
             
                </ul>
         
     | 
| 
       47 
47 
     | 
    
         
             
              </div>
         
     | 
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -55,12 +55,12 @@ 
     | 
|
| 
       55 
55 
     | 
    
         
             
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
       56 
56 
     | 
    
         
             
                         accesskey="I">index</a></li>
         
     | 
| 
       57 
57 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       58 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 58 
     | 
    
         
            +
                      <a href="vector_size.html" title="7.14.15. vector_size"
         
     | 
| 
       59 
59 
     | 
    
         
             
                         accesskey="N">next</a> |</li>
         
     | 
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="snippet_html.html" title="7.14.13. snippet_html"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       64 
64 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       65 
65 
     | 
    
         
             
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
       66 
66 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -275,8 +275,8 @@ more records are matched, it returns <tt class="docutils literal"><span class="p 
     | 
|
| 
       275 
275 
     | 
    
         
             
              <p class="topless"><a href="snippet_html.html"
         
     | 
| 
       276 
276 
     | 
    
         
             
                                    title="previous chapter">7.14.13. snippet_html</a></p>
         
     | 
| 
       277 
277 
     | 
    
         
             
              <h4>Next topic</h4>
         
     | 
| 
       278 
     | 
    
         
            -
              <p class="topless"><a href=" 
     | 
| 
       279 
     | 
    
         
            -
                                    title="next chapter">7.15.  
     | 
| 
      
 278 
     | 
    
         
            +
              <p class="topless"><a href="vector_size.html"
         
     | 
| 
      
 279 
     | 
    
         
            +
                                    title="next chapter">7.14.15. vector_size</a></p>
         
     | 
| 
       280 
280 
     | 
    
         
             
              <h3>This Page</h3>
         
     | 
| 
       281 
281 
     | 
    
         
             
              <ul class="this-page-menu">
         
     | 
| 
       282 
282 
     | 
    
         
             
                <li><a href="../../_sources/reference/functions/sub_filter.txt"
         
     | 
| 
         @@ -306,12 +306,12 @@ more records are matched, it returns <tt class="docutils literal"><span class="p 
     | 
|
| 
       306 
306 
     | 
    
         
             
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
       307 
307 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       308 
308 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       309 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 309 
     | 
    
         
            +
                      <a href="vector_size.html" title="7.14.15. vector_size"
         
     | 
| 
       310 
310 
     | 
    
         
             
                         >next</a> |</li>
         
     | 
| 
       311 
311 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       312 
312 
     | 
    
         
             
                      <a href="snippet_html.html" title="7.14.13. snippet_html"
         
     | 
| 
       313 
313 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       314 
     | 
    
         
            -
                    <li><a href="../../index.html">Groonga v5.0. 
     | 
| 
      
 314 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
       315 
315 
     | 
    
         
             
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       316 
316 
     | 
    
         
             
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
       317 
317 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -0,0 +1,248 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 3 
     | 
    
         
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>7.14.15. vector_size — Groonga v5.0.3 documentation</title>
         
     | 
| 
      
 11 
     | 
    
         
            +
                
         
     | 
| 
      
 12 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
      
 13 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
      
 14 
     | 
    
         
            +
                
         
     | 
| 
      
 15 
     | 
    
         
            +
                <script type="text/javascript">
         
     | 
| 
      
 16 
     | 
    
         
            +
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
      
 17 
     | 
    
         
            +
                    URL_ROOT:    '../../',
         
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.3',
         
     | 
| 
      
 19 
     | 
    
         
            +
                    COLLAPSE_INDEX: false,
         
     | 
| 
      
 20 
     | 
    
         
            +
                    FILE_SUFFIX: '.html',
         
     | 
| 
      
 21 
     | 
    
         
            +
                    HAS_SOURCE:  true
         
     | 
| 
      
 22 
     | 
    
         
            +
                  };
         
     | 
| 
      
 23 
     | 
    
         
            +
                </script>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/jquery.js"></script>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
      
 26 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
      
 27 
     | 
    
         
            +
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.3 documentation" href="../../index.html" />
         
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="up" title="7.14. Function" href="../function.html" />
         
     | 
| 
      
 30 
     | 
    
         
            +
                <link rel="next" title="7.15. Operations" href="../operations.html" />
         
     | 
| 
      
 31 
     | 
    
         
            +
                <link rel="prev" title="7.14.14. sub_filter" href="sub_filter.html" /> 
         
     | 
| 
      
 32 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 33 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 34 
     | 
    
         
            +
            <div class="header">
         
     | 
| 
      
 35 
     | 
    
         
            +
              <h1 class="title">
         
     | 
| 
      
 36 
     | 
    
         
            +
                <a id="top-link" href="../../index.html">
         
     | 
| 
      
 37 
     | 
    
         
            +
                  <span class="project">groonga</span>
         
     | 
| 
      
 38 
     | 
    
         
            +
                  <span class="separator">-</span>
         
     | 
| 
      
 39 
     | 
    
         
            +
                  <span class="description">An open-source fulltext search engine and column store.</span>
         
     | 
| 
      
 40 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 41 
     | 
    
         
            +
              </h1>
         
     | 
| 
      
 42 
     | 
    
         
            +
             
     | 
| 
      
 43 
     | 
    
         
            +
              <div class="other-language-links">
         
     | 
| 
      
 44 
     | 
    
         
            +
                <ul>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/functions/vector_size.html">日本語</a></li>
         
     | 
| 
      
 46 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 47 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 48 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 49 
     | 
    
         
            +
              
         
     | 
| 
      
 50 
     | 
    
         
            +
             
     | 
| 
      
 51 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 52 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 53 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 54 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 56 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 57 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 58 
     | 
    
         
            +
                      <a href="../operations.html" title="7.15. Operations"
         
     | 
| 
      
 59 
     | 
    
         
            +
                         accesskey="N">next</a> |</li>
         
     | 
| 
      
 60 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 61 
     | 
    
         
            +
                      <a href="sub_filter.html" title="7.14.14. sub_filter"
         
     | 
| 
      
 62 
     | 
    
         
            +
                         accesskey="P">previous</a> |</li>
         
     | 
| 
      
 63 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
      
 64 
     | 
    
         
            +
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 65 
     | 
    
         
            +
                      <li><a href="../function.html" accesskey="U">7.14. Function</a> »</li> 
         
     | 
| 
      
 66 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 67 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 68 
     | 
    
         
            +
             
     | 
| 
      
 69 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 70 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 71 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 72 
     | 
    
         
            +
                      <div class="body">
         
     | 
| 
      
 73 
     | 
    
         
            +
                        
         
     | 
| 
      
 74 
     | 
    
         
            +
              <div class="section" id="vector-size">
         
     | 
| 
      
 75 
     | 
    
         
            +
            <h1>7.14.15. vector_size<a class="headerlink" href="#vector-size" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <div class="section" id="summary">
         
     | 
| 
      
 77 
     | 
    
         
            +
            <h2>7.14.15.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <div class="versionadded">
         
     | 
| 
      
 79 
     | 
    
         
            +
            <p><span class="versionmodified">New in version 5.0.3.</span></p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">vector_size</span></tt> returns the value of vector column size.</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
            <p>To enable this function, register <tt class="docutils literal"><span class="pre">functions/vector</span></tt> plugin by following the command:</p>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>plugin_register functions/vector
         
     | 
| 
      
 84 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 85 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 86 
     | 
    
         
            +
            <p>Then, use <tt class="docutils literal"><span class="pre">vector_size</span></tt> function with <tt class="docutils literal"><span class="pre">--command_version</span> <span class="pre">2</span></tt> option.</p>
         
     | 
| 
      
 87 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <div class="section" id="syntax">
         
     | 
| 
      
 89 
     | 
    
         
            +
            <h2>7.14.15.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">vector_size</span></tt> requires one argument - <tt class="docutils literal"><span class="pre">target</span></tt>.</p>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>vector_size(target)
         
     | 
| 
      
 92 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 93 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 94 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 95 
     | 
    
         
            +
            <div class="section" id="usage">
         
     | 
| 
      
 96 
     | 
    
         
            +
            <h2>7.14.15.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <p>Here is a schema definition and sample data.</p>
         
     | 
| 
      
 98 
     | 
    
         
            +
            <p>Sample schema:</p>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 100 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>table_create Memos TABLE_HASH_KEY ShortText
         
     | 
| 
      
 101 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 102 
     | 
    
         
            +
            column_create Memos tags COLUMN_VECTOR ShortText
         
     | 
| 
      
 103 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 104 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 105 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 106 
     | 
    
         
            +
            <p>Sample data:</p>
         
     | 
| 
      
 107 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 108 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>load --table Memos
         
     | 
| 
      
 109 
     | 
    
         
            +
            [
         
     | 
| 
      
 110 
     | 
    
         
            +
            {"_key": "Groonga",          "tags": ["Groonga"]},
         
     | 
| 
      
 111 
     | 
    
         
            +
            {"_key": "Rroonga",          "tags": ["Groonga", "Ruby"]},
         
     | 
| 
      
 112 
     | 
    
         
            +
            {"_key": "Nothing"}
         
     | 
| 
      
 113 
     | 
    
         
            +
            ]
         
     | 
| 
      
 114 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], 3]
         
     | 
| 
      
 115 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 116 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 117 
     | 
    
         
            +
            <p>Here is the simple usage of <tt class="docutils literal"><span class="pre">vector_size</span></tt> function which returns tags and size - the value of <tt class="docutils literal"><span class="pre">tags</span></tt> column and size of it.</p>
         
     | 
| 
      
 118 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 119 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>select Memos --output_columns 'tags, vector_size(tags)' --command_version 2
         
     | 
| 
      
 120 
     | 
    
         
            +
            # [
         
     | 
| 
      
 121 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 122 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 123 
     | 
    
         
            +
            #     1337566253.89858,
         
     | 
| 
      
 124 
     | 
    
         
            +
            #     0.000355720520019531
         
     | 
| 
      
 125 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 126 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 127 
     | 
    
         
            +
            #     [
         
     | 
| 
      
 128 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 129 
     | 
    
         
            +
            #         3
         
     | 
| 
      
 130 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 131 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 132 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 133 
     | 
    
         
            +
            #           "tags",
         
     | 
| 
      
 134 
     | 
    
         
            +
            #           "ShortText"
         
     | 
| 
      
 135 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 136 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 137 
     | 
    
         
            +
            #           "vector_size",
         
     | 
| 
      
 138 
     | 
    
         
            +
            #           "Object"
         
     | 
| 
      
 139 
     | 
    
         
            +
            #         ]
         
     | 
| 
      
 140 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 141 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 142 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 143 
     | 
    
         
            +
            #           "Groonga"
         
     | 
| 
      
 144 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 145 
     | 
    
         
            +
            #         1
         
     | 
| 
      
 146 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 147 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 148 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 149 
     | 
    
         
            +
            #           "Groonga",
         
     | 
| 
      
 150 
     | 
    
         
            +
            #           "Ruby"
         
     | 
| 
      
 151 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 152 
     | 
    
         
            +
            #         2
         
     | 
| 
      
 153 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 154 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 155 
     | 
    
         
            +
            #         [],
         
     | 
| 
      
 156 
     | 
    
         
            +
            #         0
         
     | 
| 
      
 157 
     | 
    
         
            +
            #       ]
         
     | 
| 
      
 158 
     | 
    
         
            +
            #     ]
         
     | 
| 
      
 159 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 160 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 161 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 162 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 163 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 164 
     | 
    
         
            +
            <div class="section" id="parameters">
         
     | 
| 
      
 165 
     | 
    
         
            +
            <h2>7.14.15.4. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 166 
     | 
    
         
            +
            <p>There is one required parameter, <tt class="docutils literal"><span class="pre">target</span></tt>.</p>
         
     | 
| 
      
 167 
     | 
    
         
            +
            <div class="section" id="target">
         
     | 
| 
      
 168 
     | 
    
         
            +
            <h3>7.14.15.4.1. <tt class="docutils literal"><span class="pre">target</span></tt><a class="headerlink" href="#target" title="Permalink to this headline">¶</a></h3>
         
     | 
| 
      
 169 
     | 
    
         
            +
            <p>Specifies a vector column of table that is specified by <tt class="docutils literal"><span class="pre">table</span></tt> parameter in <tt class="docutils literal"><span class="pre">select</span></tt>.</p>
         
     | 
| 
      
 170 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 171 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 172 
     | 
    
         
            +
            <div class="section" id="return-value">
         
     | 
| 
      
 173 
     | 
    
         
            +
            <h2>7.14.15.5. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 174 
     | 
    
         
            +
            <p><tt class="docutils literal"><span class="pre">vector_size</span></tt> returns the value of target vector column size.</p>
         
     | 
| 
      
 175 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 176 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
             
     | 
| 
      
 179 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 180 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 181 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 182 
     | 
    
         
            +
                  <div class="sphinxsidebar">
         
     | 
| 
      
 183 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 184 
     | 
    
         
            +
              <h3><a href="../../index.html">Table Of Contents</a></h3>
         
     | 
| 
      
 185 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 186 
     | 
    
         
            +
            <li><a class="reference internal" href="#">7.14.15. vector_size</a><ul>
         
     | 
| 
      
 187 
     | 
    
         
            +
            <li><a class="reference internal" href="#summary">7.14.15.1. Summary</a></li>
         
     | 
| 
      
 188 
     | 
    
         
            +
            <li><a class="reference internal" href="#syntax">7.14.15.2. Syntax</a></li>
         
     | 
| 
      
 189 
     | 
    
         
            +
            <li><a class="reference internal" href="#usage">7.14.15.3. Usage</a></li>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <li><a class="reference internal" href="#parameters">7.14.15.4. Parameters</a><ul>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <li><a class="reference internal" href="#target">7.14.15.4.1. <tt class="docutils literal"><span class="pre">target</span></tt></a></li>
         
     | 
| 
      
 192 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 193 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 194 
     | 
    
         
            +
            <li><a class="reference internal" href="#return-value">7.14.15.5. Return value</a></li>
         
     | 
| 
      
 195 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 196 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 197 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
              <h4>Previous topic</h4>
         
     | 
| 
      
 200 
     | 
    
         
            +
              <p class="topless"><a href="sub_filter.html"
         
     | 
| 
      
 201 
     | 
    
         
            +
                                    title="previous chapter">7.14.14. sub_filter</a></p>
         
     | 
| 
      
 202 
     | 
    
         
            +
              <h4>Next topic</h4>
         
     | 
| 
      
 203 
     | 
    
         
            +
              <p class="topless"><a href="../operations.html"
         
     | 
| 
      
 204 
     | 
    
         
            +
                                    title="next chapter">7.15. Operations</a></p>
         
     | 
| 
      
 205 
     | 
    
         
            +
              <h3>This Page</h3>
         
     | 
| 
      
 206 
     | 
    
         
            +
              <ul class="this-page-menu">
         
     | 
| 
      
 207 
     | 
    
         
            +
                <li><a href="../../_sources/reference/functions/vector_size.txt"
         
     | 
| 
      
 208 
     | 
    
         
            +
                       rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 209 
     | 
    
         
            +
              </ul>
         
     | 
| 
      
 210 
     | 
    
         
            +
            <div id="searchbox" style="display: none">
         
     | 
| 
      
 211 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 212 
     | 
    
         
            +
                <form class="search" action="../../search.html" method="get">
         
     | 
| 
      
 213 
     | 
    
         
            +
                  <input type="text" name="q" />
         
     | 
| 
      
 214 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 215 
     | 
    
         
            +
                  <input type="hidden" name="check_keywords" value="yes" />
         
     | 
| 
      
 216 
     | 
    
         
            +
                  <input type="hidden" name="area" value="default" />
         
     | 
| 
      
 217 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 218 
     | 
    
         
            +
                <p class="searchtip" style="font-size: 90%">
         
     | 
| 
      
 219 
     | 
    
         
            +
                Enter search terms or a module, class or function name.
         
     | 
| 
      
 220 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 221 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 222 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 223 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 224 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 225 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 226 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 227 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 228 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 229 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 230 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 231 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 232 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 233 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 234 
     | 
    
         
            +
                      <a href="../operations.html" title="7.15. Operations"
         
     | 
| 
      
 235 
     | 
    
         
            +
                         >next</a> |</li>
         
     | 
| 
      
 236 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 237 
     | 
    
         
            +
                      <a href="sub_filter.html" title="7.14.14. sub_filter"
         
     | 
| 
      
 238 
     | 
    
         
            +
                         >previous</a> |</li>
         
     | 
| 
      
 239 
     | 
    
         
            +
                    <li><a href="../../index.html">Groonga v5.0.3 documentation</a> »</li>
         
     | 
| 
      
 240 
     | 
    
         
            +
                      <li><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 241 
     | 
    
         
            +
                      <li><a href="../function.html" >7.14. Function</a> »</li> 
         
     | 
| 
      
 242 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 243 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 244 
     | 
    
         
            +
                <div class="footer">
         
     | 
| 
      
 245 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
      
 246 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 247 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 248 
     | 
    
         
            +
            </html>
         
     |