rroonga 9.0.3-x64-mingw32 → 9.0.7-x64-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 +4 -4
 - data/doc/text/news.md +30 -0
 - data/ext/groonga/rb-grn-context.c +27 -0
 - data/ext/groonga/rb-grn-flushable.c +7 -0
 - data/ext/groonga/rb-grn-index-column.c +28 -0
 - data/ext/groonga/rb-grn-index-cursor.c +19 -0
 - data/ext/groonga/rb-grn-logger.c +17 -3
 - data/ext/groonga/rb-grn-object.c +236 -22
 - data/ext/groonga/rb-grn-table.c +68 -42
 - data/ext/groonga/rb-grn.h +1 -1
 - data/lib/2.3/groonga.so +0 -0
 - data/lib/2.4/groonga.so +0 -0
 - data/lib/2.5/groonga.so +0 -0
 - data/lib/2.6/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +3 -0
 - data/lib/groonga/record.rb +2 -2
 - data/test/groonga-test-utils.rb +28 -5
 - data/test/run-test.rb +0 -2
 - data/test/test-accessor.rb +63 -7
 - data/test/test-context.rb +25 -0
 - data/test/test-exception.rb +5 -0
 - data/test/test-flushable.rb +51 -6
 - data/test/test-index-column.rb +67 -6
 - data/test/test-index-cursor.rb +26 -0
 - data/test/test-logger.rb +56 -11
 - data/test/test-plugin.rb +1 -0
 - data/test/test-query-logger.rb +4 -3
 - data/test/test-record.rb +2 -1
 - data/test/test-remote.rb +40 -10
 - data/test/test-schema-dumper.rb +13 -0
 - data/test/test-table.rb +21 -1
 - data/test/test-variable.rb +23 -7
 - data/vendor/local/bin/generate-pdb.bat +22 -22
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga-suggest-create-dataset.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-2.dll +0 -0
 - data/vendor/local/bin/libmsgpackc.dll +0 -0
 - data/vendor/local/bin/libonigmo-6.dll +0 -0
 - data/vendor/local/bin/libpcre-1.dll +0 -0
 - data/vendor/local/bin/libpcrecpp-0.dll +0 -0
 - data/vendor/local/bin/libpcreposix-0.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat.exe +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/pcregrep.exe +0 -0
 - data/vendor/local/bin/pcretest.exe +0 -0
 - data/vendor/local/bin/unlz4.exe +0 -0
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/cmake/RapidJSONConfig.cmake +3 -0
 - data/vendor/local/cmake/RapidJSONConfigVersion.cmake +10 -0
 - data/vendor/local/include/groonga/groonga/expr.h +16 -0
 - data/vendor/local/include/groonga/groonga/obj.h +8 -0
 - data/vendor/local/include/groonga/groonga/output.h +5 -0
 - data/vendor/local/include/groonga/groonga/version.h +2 -2
 - data/vendor/local/include/rapidjson/allocators.h +271 -0
 - data/vendor/local/include/rapidjson/document.h +2575 -0
 - data/vendor/local/include/rapidjson/encodedstream.h +299 -0
 - data/vendor/local/include/rapidjson/encodings.h +716 -0
 - data/vendor/local/include/rapidjson/error/en.h +74 -0
 - data/vendor/local/include/rapidjson/error/error.h +155 -0
 - data/vendor/local/include/rapidjson/filereadstream.h +99 -0
 - data/vendor/local/include/rapidjson/filewritestream.h +104 -0
 - data/vendor/local/include/rapidjson/fwd.h +151 -0
 - data/vendor/local/include/rapidjson/internal/biginteger.h +290 -0
 - data/vendor/local/include/rapidjson/internal/diyfp.h +258 -0
 - data/vendor/local/include/rapidjson/internal/dtoa.h +245 -0
 - data/vendor/local/include/rapidjson/internal/ieee754.h +78 -0
 - data/vendor/local/include/rapidjson/internal/itoa.h +304 -0
 - data/vendor/local/include/rapidjson/internal/meta.h +181 -0
 - data/vendor/local/include/rapidjson/internal/pow10.h +55 -0
 - data/vendor/local/include/rapidjson/internal/regex.h +701 -0
 - data/vendor/local/include/rapidjson/internal/stack.h +230 -0
 - data/vendor/local/include/rapidjson/internal/strfunc.h +55 -0
 - data/vendor/local/include/rapidjson/internal/strtod.h +269 -0
 - data/vendor/local/include/rapidjson/internal/swap.h +46 -0
 - data/vendor/local/include/rapidjson/istreamwrapper.h +115 -0
 - data/vendor/local/include/rapidjson/memorybuffer.h +70 -0
 - data/vendor/local/include/rapidjson/memorystream.h +71 -0
 - data/vendor/local/include/rapidjson/msinttypes/inttypes.h +316 -0
 - data/vendor/local/include/rapidjson/msinttypes/stdint.h +300 -0
 - data/vendor/local/include/rapidjson/ostreamwrapper.h +81 -0
 - data/vendor/local/include/rapidjson/pointer.h +1358 -0
 - data/vendor/local/include/rapidjson/prettywriter.h +255 -0
 - data/vendor/local/include/rapidjson/rapidjson.h +615 -0
 - data/vendor/local/include/rapidjson/reader.h +1879 -0
 - data/vendor/local/include/rapidjson/schema.h +2006 -0
 - data/vendor/local/include/rapidjson/stream.h +179 -0
 - data/vendor/local/include/rapidjson/stringbuffer.h +117 -0
 - data/vendor/local/include/rapidjson/writer.h +610 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
 - 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 +1 -1
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -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 +1 -1
 - data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +44 -18
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +9 -8
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +48 -15
 - data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +84 -58
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +1 -1
 - 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 +1 -1
 - 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 +1 -1
 - 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 +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/command.rb +3 -4
 - data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +267 -77
 - data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +96 -0
 - data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +30 -7
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +5 -0
 - data/vendor/local/lib/groonga/scripts/ruby/loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger/flags.rb +70 -0
 - data/vendor/local/lib/groonga/scripts/ruby/query_loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/time.rb +9 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +1 -1
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.8.2 +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libonigmo.a +0 -0
 - data/vendor/local/lib/libonigmo.dll.a +0 -0
 - data/vendor/local/lib/libonigmo.la +1 -1
 - data/vendor/local/lib/libpcre.dll.a +0 -0
 - data/vendor/local/lib/libpcrecpp.dll.a +0 -0
 - data/vendor/local/lib/libpcreposix.dll.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - 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/share/doc/RapidJSON/examples/CMakeLists.txt +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/capitalize/capitalize.cpp +67 -0
 - data/vendor/local/share/doc/RapidJSON/examples/condense/condense.cpp +32 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkey/filterkey.cpp +135 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp +170 -0
 - data/vendor/local/share/doc/RapidJSON/examples/jsonx/jsonx.cpp +207 -0
 - data/vendor/local/share/doc/RapidJSON/examples/messagereader/messagereader.cpp +105 -0
 - data/vendor/local/share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/pretty/pretty.cpp +30 -0
 - data/vendor/local/share/doc/RapidJSON/examples/prettyauto/prettyauto.cpp +56 -0
 - data/vendor/local/share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp +72 -0
 - data/vendor/local/share/doc/RapidJSON/examples/serialize/serialize.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simpledom/simpledom.cpp +29 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplereader/simplereader.cpp +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp +36 -0
 - data/vendor/local/share/doc/RapidJSON/examples/tutorial/tutorial.cpp +151 -0
 - data/vendor/local/share/doc/RapidJSON/readme.md +160 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +79 -8
 - data/vendor/local/share/doc/groonga/en/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news.html +498 -206
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +77 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +78 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +58 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_ngram.html +1005 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_table.html +246 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +68 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +69 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news.html +494 -206
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +75 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +73 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +57 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_ngram.html +998 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_table.html +242 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +64 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +3 -3
 - data/vendor/local/share/groonga/COPYING +502 -0
 - data/vendor/local/share/groonga/mruby/LEGAL +58 -54
 - data/vendor/local/share/license/mruby/AUTHORS +6 -2
 - data/vendor/local/share/license/mruby/LEGAL +1 -1
 - data/vendor/local/share/license/mruby/{MITL → LICENSE} +1 -1
 - data/vendor/local/share/license/mruby/README.md +3 -3
 - data/vendor/local/share/license/rapidjson/license.txt +57 -0
 - metadata +126 -60
 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.17.2. Prefix RK search — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.17.2. Prefix RK search — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="geolocation_search.html" title="7.17.1. Geolocation search"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../operations.html" accesskey="U">7.17. Operations</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -171,7 +171,7 @@ for JIS X 4063:2000.</p> 
     | 
|
| 
       171 
171 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       172 
172 
     | 
    
         
             
                      <a href="geolocation_search.html" title="7.17.1. Geolocation search"
         
     | 
| 
       173 
173 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       174 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 174 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       175 
175 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       176 
176 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../operations.html" >7.17. Operations</a> »</li> 
         
     | 
| 
       177 
177 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.2. Output — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.2. Output — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="executables/groonga-suggest-learner.html" title="7.1.9. groonga-suggest-learner"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -271,7 +271,7 @@ in MessagePack format:</p> 
     | 
|
| 
       271 
271 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       272 
272 
     | 
    
         
             
                      <a href="executables/groonga-suggest-learner.html" title="7.1.9. groonga-suggest-learner"
         
     | 
| 
       273 
273 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       274 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 274 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       275 
275 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       276 
276 
     | 
    
         
             
                  </ul>
         
     | 
| 
       277 
277 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.10. Query expanders — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.10. Query expanders — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="token_filters/token_filter_stop_word.html" title="7.9.4. TokenFilterStopWord"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -107,7 +107,7 @@ 
     | 
|
| 
       107 
107 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       108 
108 
     | 
    
         
             
                      <a href="token_filters/token_filter_stop_word.html" title="7.9.4. TokenFilterStopWord"
         
     | 
| 
       109 
109 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       110 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 110 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       111 
111 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       112 
112 
     | 
    
         
             
                  </ul>
         
     | 
| 
       113 
113 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.10.1. QueryExpanderTSV — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.10.1. QueryExpanderTSV — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="../query_expanders.html" title="7.10. Query expanders"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../query_expanders.html" accesskey="U">7.10. Query expanders</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -283,7 +283,7 @@ loaded only at the plugin load time.</p> 
     | 
|
| 
       283 
283 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       284 
284 
     | 
    
         
             
                      <a href="../query_expanders.html" title="7.10. Query expanders"
         
     | 
| 
       285 
285 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       286 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 286 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       287 
287 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       288 
288 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../query_expanders.html" >7.10. Query expanders</a> »</li> 
         
     | 
| 
       289 
289 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.14. Regular expression — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.14. Regular expression — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="grn_expr/script_syntax.html" title="7.13.2. Script syntax"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -948,7 +948,7 @@ syntaxes.</p> 
     | 
|
| 
       948 
948 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       949 
949 
     | 
    
         
             
                      <a href="grn_expr/script_syntax.html" title="7.13.2. Script syntax"
         
     | 
| 
       950 
950 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       951 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 951 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       952 
952 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       953 
953 
     | 
    
         
             
                  </ul>
         
     | 
| 
       954 
954 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.11. Scorer — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.11. Scorer — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="query_expanders/tsv.html" title="7.10.1. QueryExpanderTSV"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -488,7 +488,7 @@ a match column:</p> 
     | 
|
| 
       488 
488 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       489 
489 
     | 
    
         
             
                      <a href="query_expanders/tsv.html" title="7.10.1. QueryExpanderTSV"
         
     | 
| 
       490 
490 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       491 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 491 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       492 
492 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       493 
493 
     | 
    
         
             
                  </ul>
         
     | 
| 
       494 
494 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.11.3.1. scorer_tf_at_most — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.11.3.1. scorer_tf_at_most — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="../scorer.html" title="7.11. Scorer"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../scorer.html" accesskey="U">7.11. Scorer</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -287,7 +287,7 @@ backward compatibility.</p> 
     | 
|
| 
       287 
287 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       288 
288 
     | 
    
         
             
                      <a href="../scorer.html" title="7.11. Scorer"
         
     | 
| 
       289 
289 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       290 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 290 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       291 
291 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       292 
292 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../scorer.html" >7.11. Scorer</a> »</li> 
         
     | 
| 
       293 
293 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.11.3.2. scorer_tf_idf — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.11.3.2. scorer_tf_idf — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="scorer_tf_at_most.html" title="7.11.3.1. scorer_tf_at_most"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../scorer.html" accesskey="U">7.11. Scorer</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -306,7 +306,7 @@ backward compatibility.</p> 
     | 
|
| 
       306 
306 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       307 
307 
     | 
    
         
             
                      <a href="scorer_tf_at_most.html" title="7.11.3.1. scorer_tf_at_most"
         
     | 
| 
       308 
308 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       309 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 309 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       310 
310 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       311 
311 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../scorer.html" >7.11. Scorer</a> »</li> 
         
     | 
| 
       312 
312 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.22. Sharding — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.22. Sharding — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="indexing.html" title="7.21. Indexing"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -204,7 +204,7 @@ name and <code class="docutils literal notranslate"><span class="pre">20150814</ 
     | 
|
| 
       204 
204 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       205 
205 
     | 
    
         
             
                      <a href="indexing.html" title="7.21. Indexing"
         
     | 
| 
       206 
206 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       207 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 207 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       208 
208 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       209 
209 
     | 
    
         
             
                  </ul>
         
     | 
| 
       210 
210 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.20. Suggest — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.20. Suggest — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="alias.html" title="7.19. Alias"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -134,7 +134,7 @@ 
     | 
|
| 
       134 
134 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       135 
135 
     | 
    
         
             
                      <a href="alias.html" title="7.19. Alias"
         
     | 
| 
       136 
136 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       137 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 137 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       138 
138 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       139 
139 
     | 
    
         
             
                  </ul>
         
     | 
| 
       140 
140 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.20.2. Completion — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.20.2. Completion — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="introduction.html" title="7.20.1. Introduction"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" accesskey="U">7.20. Suggest</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -552,7 +552,7 @@ suggest --table item_query --column kana --types complete --frequency_threshold 
     | 
|
| 
       552 
552 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       553 
553 
     | 
    
         
             
                      <a href="introduction.html" title="7.20.1. Introduction"
         
     | 
| 
       554 
554 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       555 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 555 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       556 
556 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       557 
557 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" >7.20. Suggest</a> »</li> 
         
     | 
| 
       558 
558 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.20.3. Correction — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.20.3. Correction — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="completion.html" title="7.20.2. Completion"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" accesskey="U">7.20. Suggest</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -283,7 +283,7 @@ following command:</p> 
     | 
|
| 
       283 
283 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       284 
284 
     | 
    
         
             
                      <a href="completion.html" title="7.20.2. Completion"
         
     | 
| 
       285 
285 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       286 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 286 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       287 
287 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       288 
288 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" >7.20. Suggest</a> »</li> 
         
     | 
| 
       289 
289 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.20.1. Introduction — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.20.1. Introduction — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="../suggest.html" title="7.20. Suggest"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" accesskey="U">7.20. Suggest</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -215,7 +215,7 @@ are provided for the propose.</p> 
     | 
|
| 
       215 
215 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       216 
216 
     | 
    
         
             
                      <a href="../suggest.html" title="7.20. Suggest"
         
     | 
| 
       217 
217 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       218 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 218 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       219 
219 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       220 
220 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" >7.20. Suggest</a> »</li> 
         
     | 
| 
       221 
221 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.20.4. Suggestion — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.20.4. Suggestion — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="correction.html" title="7.20.3. Correction"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" accesskey="U">7.20. Suggest</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -280,7 +280,7 @@ In pair table, the valid value of <code class="docutils literal notranslate"><sp 
     | 
|
| 
       280 
280 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       281 
281 
     | 
    
         
             
                      <a href="correction.html" title="7.20.3. Correction"
         
     | 
| 
       282 
282 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       283 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 283 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       284 
284 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       285 
285 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../suggest.html" >7.20. Suggest</a> »</li> 
         
     | 
| 
       286 
286 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.5. Tables — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.5. Tables — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="types.html" title="7.4. Data types"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -338,7 +338,7 @@ more larger total key size.</p> 
     | 
|
| 
       338 
338 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       339 
339 
     | 
    
         
             
                      <a href="types.html" title="7.4. Data types"
         
     | 
| 
       340 
340 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       341 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 341 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       342 
342 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       343 
343 
     | 
    
         
             
                  </ul>
         
     | 
| 
       344 
344 
     | 
    
         
             
                </div>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.9.1. Summary — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.9.1. Summary — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -50,7 +50,7 @@ 
     | 
|
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
51 
     | 
    
         
             
                      <a href="../token_filters.html" title="7.9. Token filters"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../token_filters.html" accesskey="U">7.9. Token filters</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -135,7 +135,7 @@ table_create Terms TABLE_PAT_KEY ShortText \ 
     | 
|
| 
       135 
135 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       136 
136 
     | 
    
         
             
                      <a href="../token_filters.html" title="7.9. Token filters"
         
     | 
| 
       137 
137 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       138 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 138 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       139 
139 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       140 
140 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../token_filters.html" >7.9. Token filters</a> »</li> 
         
     | 
| 
       141 
141 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.9. Token filters — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.9. Token filters — Groonga v9.0.6 documentation</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -19,7 +19,7 @@ 
     | 
|
| 
       19 
19 
     | 
    
         
             
                <link rel="index" title="Index" href="../genindex.html" />
         
     | 
| 
       20 
20 
     | 
    
         
             
                <link rel="search" title="Search" href="../search.html" />
         
     | 
| 
       21 
21 
     | 
    
         
             
                <link rel="next" title="7.9.1. Summary" href="token_filter/summary.html" />
         
     | 
| 
       22 
     | 
    
         
            -
                <link rel="prev" title="7.8. 
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="prev" title="7.8.18. TokenUnigram" href="tokenizers/token_unigram.html" /> 
         
     | 
| 
       23 
23 
     | 
    
         
             
              </head><body>
         
     | 
| 
       24 
24 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       25 
25 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
         @@ -48,9 +48,9 @@ 
     | 
|
| 
       48 
48 
     | 
    
         
             
                      <a href="token_filter/summary.html" title="7.9.1. Summary"
         
     | 
| 
       49 
49 
     | 
    
         
             
                         accesskey="N">next</a> |</li>
         
     | 
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
     | 
    
         
            -
                      <a href="tokenizers/token_unigram.html" title="7.8. 
     | 
| 
      
 51 
     | 
    
         
            +
                      <a href="tokenizers/token_unigram.html" title="7.8.18. TokenUnigram"
         
     | 
| 
       52 
52 
     | 
    
         
             
                         accesskey="P">previous</a> |</li>
         
     | 
| 
       53 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       54 
54 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" accesskey="U">7. Reference manual</a> »</li> 
         
     | 
| 
       55 
55 
     | 
    
         
             
                  </ul>
         
     | 
| 
       56 
56 
     | 
    
         
             
                </div>  
         
     | 
| 
         @@ -80,7 +80,7 @@ 
     | 
|
| 
       80 
80 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       81 
81 
     | 
    
         
             
              <h4>Previous topic</h4>
         
     | 
| 
       82 
82 
     | 
    
         
             
              <p class="topless"><a href="tokenizers/token_unigram.html"
         
     | 
| 
       83 
     | 
    
         
            -
                                    title="previous chapter">7.8. 
     | 
| 
      
 83 
     | 
    
         
            +
                                    title="previous chapter">7.8.18. <code class="docutils literal notranslate"><span class="pre">TokenUnigram</span></code></a></p>
         
     | 
| 
       84 
84 
     | 
    
         
             
              <h4>Next topic</h4>
         
     | 
| 
       85 
85 
     | 
    
         
             
              <p class="topless"><a href="token_filter/summary.html"
         
     | 
| 
       86 
86 
     | 
    
         
             
                                    title="next chapter">7.9.1. Summary</a></p>
         
     | 
| 
         @@ -108,9 +108,9 @@ 
     | 
|
| 
       108 
108 
     | 
    
         
             
                      <a href="token_filter/summary.html" title="7.9.1. Summary"
         
     | 
| 
       109 
109 
     | 
    
         
             
                         >next</a> |</li>
         
     | 
| 
       110 
110 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       111 
     | 
    
         
            -
                      <a href="tokenizers/token_unigram.html" title="7.8. 
     | 
| 
      
 111 
     | 
    
         
            +
                      <a href="tokenizers/token_unigram.html" title="7.8.18. TokenUnigram"
         
     | 
| 
       112 
112 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       113 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0. 
     | 
| 
      
 113 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       114 
114 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../reference.html" >7. Reference manual</a> »</li> 
         
     | 
| 
       115 
115 
     | 
    
         
             
                  </ul>
         
     | 
| 
       116 
116 
     | 
    
         
             
                </div>
         
     |