rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +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 +21 -21
 - 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
 
| 
         @@ -0,0 +1,240 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <meta charset="utf-8" />
         
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.8.14. TokenPattern — Groonga v9.0.6 documentation</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
      
 10 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
      
 11 
     | 
    
         
            +
                
         
     | 
| 
      
 12 
     | 
    
         
            +
                <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
         
     | 
| 
      
 13 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/jquery.js"></script>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/language_data.js"></script>
         
     | 
| 
      
 17 
     | 
    
         
            +
                
         
     | 
| 
      
 18 
     | 
    
         
            +
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <link rel="index" title="Index" href="../../genindex.html" />
         
     | 
| 
      
 20 
     | 
    
         
            +
                <link rel="search" title="Search" href="../../search.html" />
         
     | 
| 
      
 21 
     | 
    
         
            +
                <link rel="next" title="7.8.15. TokenRegexp" href="token_regexp.html" />
         
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="prev" title="7.8.13. TokenNgram" href="token_ngram.html" /> 
         
     | 
| 
      
 23 
     | 
    
         
            +
              </head><body>
         
     | 
| 
      
 24 
     | 
    
         
            +
            <div class="header">
         
     | 
| 
      
 25 
     | 
    
         
            +
              <h1 class="title">
         
     | 
| 
      
 26 
     | 
    
         
            +
                <a id="top-link" href="../../index.html">
         
     | 
| 
      
 27 
     | 
    
         
            +
                  <span class="project">groonga</span>
         
     | 
| 
      
 28 
     | 
    
         
            +
                  <span class="separator">-</span>
         
     | 
| 
      
 29 
     | 
    
         
            +
                  <span class="description">An open-source fulltext search engine and column store.</span>
         
     | 
| 
      
 30 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 31 
     | 
    
         
            +
              </h1>
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              <div class="other-language-links">
         
     | 
| 
      
 34 
     | 
    
         
            +
                <ul>
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/tokenizers/token_pattern.html">日本語</a></li>
         
     | 
| 
      
 36 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 37 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 38 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 39 
     | 
    
         
            +
              
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 42 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 44 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 45 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 46 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 48 
     | 
    
         
            +
                      <a href="token_regexp.html" title="7.8.15. TokenRegexp"
         
     | 
| 
      
 49 
     | 
    
         
            +
                         accesskey="N">next</a> |</li>
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <a href="token_ngram.html" title="7.8.13. TokenNgram"
         
     | 
| 
      
 52 
     | 
    
         
            +
                         accesskey="P">previous</a> |</li>
         
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. Tokenizers</a> »</li> 
         
     | 
| 
      
 56 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 57 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
      
 63 
     | 
    
         
            +
                        
         
     | 
| 
      
 64 
     | 
    
         
            +
              <div class="section" id="tokenpattern">
         
     | 
| 
      
 65 
     | 
    
         
            +
            <h1>7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code><a class="headerlink" href="#tokenpattern" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="summary">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <h2>7.8.14.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 68 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> is a tokenizer which is used to extract tokens by regular expression.
         
     | 
| 
      
 69 
     | 
    
         
            +
            This tokenizer extracts only token that matches the specified regular expression.</p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <p>You can also specify multiple patterns of regular expression.</p>
         
     | 
| 
      
 71 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 72 
     | 
    
         
            +
            <div class="section" id="syntax">
         
     | 
| 
      
 73 
     | 
    
         
            +
            <h2>7.8.14.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> has optional parameter.</p>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <p>Specify one pattern:</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenPattern("pattern", PATTERN)
         
     | 
| 
      
 77 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <p>Specify multiple patterns:</p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenPattern("pattern", PATTERN_1, "pattern", PATTERN_2, ... "pattern", PATTERN_N)
         
     | 
| 
      
 81 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> can accept multiple patterns as above.</p>
         
     | 
| 
      
 84 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <div class="section" id="usage">
         
     | 
| 
      
 86 
     | 
    
         
            +
            <h2>7.8.14.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <p>Here is an example of <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code>. As <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> only extracts the token which matches the specified regular expression, it is able to filter search results which only matches the extracted token.</p>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <p>For example, let’s compare search results by specific keywords. One is listed in <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> pattern, and the other is not listed in <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> pattern.</p>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <p>There are menus which contains both of specific keywords in <code class="docutils literal notranslate"><span class="pre">Foods</span></code> table.</p>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <p>Here is the sample schema and data:</p>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 92 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Foods TABLE_NO_KEY
         
     | 
| 
      
 93 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 94 
     | 
    
         
            +
            column_create Foods name COLUMN_SCALAR Text
         
     | 
| 
      
 95 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 96 
     | 
    
         
            +
            table_create Keywords TABLE_PAT_KEY ShortText --default_tokenizer 'TokenPattern("pattern", "Apple|Orange")'
         
     | 
| 
      
 97 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 98 
     | 
    
         
            +
            column_create Keywords index COLUMN_INDEX Foods name
         
     | 
| 
      
 99 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 100 
     | 
    
         
            +
            load --table Foods
         
     | 
| 
      
 101 
     | 
    
         
            +
            [
         
     | 
| 
      
 102 
     | 
    
         
            +
            {"name": "Apple Pie"},
         
     | 
| 
      
 103 
     | 
    
         
            +
            {"name": "Orange Pie"}
         
     | 
| 
      
 104 
     | 
    
         
            +
            {"name": "Raspberry Pie"}
         
     | 
| 
      
 105 
     | 
    
         
            +
            ]
         
     | 
| 
      
 106 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], 3]
         
     | 
| 
      
 107 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 108 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 109 
     | 
    
         
            +
            <p>Then search <code class="docutils literal notranslate"><span class="pre">Apple</span> <span class="pre">Pie</span></code> with <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">Apple</span></code>.</p>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 111 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Foods --match_columns name --query 'Apple'
         
     | 
| 
      
 112 
     | 
    
         
            +
            # [
         
     | 
| 
      
 113 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 114 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 115 
     | 
    
         
            +
            #     1337566253.89858,
         
     | 
| 
      
 116 
     | 
    
         
            +
            #     0.000355720520019531
         
     | 
| 
      
 117 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 118 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 119 
     | 
    
         
            +
            #     [
         
     | 
| 
      
 120 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 121 
     | 
    
         
            +
            #         1
         
     | 
| 
      
 122 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 123 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 124 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 125 
     | 
    
         
            +
            #           "_id",
         
     | 
| 
      
 126 
     | 
    
         
            +
            #           "UInt32"
         
     | 
| 
      
 127 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 128 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 129 
     | 
    
         
            +
            #           "name",
         
     | 
| 
      
 130 
     | 
    
         
            +
            #           "Text"
         
     | 
| 
      
 131 
     | 
    
         
            +
            #         ]
         
     | 
| 
      
 132 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 133 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 134 
     | 
    
         
            +
            #         1,
         
     | 
| 
      
 135 
     | 
    
         
            +
            #         "Apple Pie"
         
     | 
| 
      
 136 
     | 
    
         
            +
            #       ]
         
     | 
| 
      
 137 
     | 
    
         
            +
            #     ]
         
     | 
| 
      
 138 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 139 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 140 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 141 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 142 
     | 
    
         
            +
            <p>In above example, <code class="docutils literal notranslate"><span class="pre">Apple</span></code> matches pattern which is specified as <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> pattern, <code class="docutils literal notranslate"><span class="pre">select</span></code> matches <code class="docutils literal notranslate"><span class="pre">Apple</span> <span class="pre">Pie</span></code>.</p>
         
     | 
| 
      
 143 
     | 
    
         
            +
            <p>Then search <code class="docutils literal notranslate"><span class="pre">Raspberry</span> <span class="pre">Pie</span></code> with <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">Raspberry</span></code>.</p>
         
     | 
| 
      
 144 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 145 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Foods --match_columns name --query 'Raspberry'
         
     | 
| 
      
 146 
     | 
    
         
            +
            # [
         
     | 
| 
      
 147 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 148 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 149 
     | 
    
         
            +
            #     1337566253.89858,
         
     | 
| 
      
 150 
     | 
    
         
            +
            #     0.000355720520019531
         
     | 
| 
      
 151 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 152 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 153 
     | 
    
         
            +
            #     [
         
     | 
| 
      
 154 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 155 
     | 
    
         
            +
            #         0
         
     | 
| 
      
 156 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 157 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 158 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 159 
     | 
    
         
            +
            #           "_id",
         
     | 
| 
      
 160 
     | 
    
         
            +
            #           "UInt32"
         
     | 
| 
      
 161 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 162 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 163 
     | 
    
         
            +
            #           "name",
         
     | 
| 
      
 164 
     | 
    
         
            +
            #           "Text"
         
     | 
| 
      
 165 
     | 
    
         
            +
            #         ]
         
     | 
| 
      
 166 
     | 
    
         
            +
            #       ]
         
     | 
| 
      
 167 
     | 
    
         
            +
            #     ]
         
     | 
| 
      
 168 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 169 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 170 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 171 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 172 
     | 
    
         
            +
            <p>In above example, even though <code class="docutils literal notranslate"><span class="pre">Foods</span></code> table contains <code class="docutils literal notranslate"><span class="pre">Raspberry</span> <span class="pre">Pie</span></code> record, <code class="docutils literal notranslate"><span class="pre">select</span></code> doesn’t match it because <code class="docutils literal notranslate"><span class="pre">Raspberry</span></code> doesn’t match to <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code> pattern..</p>
         
     | 
| 
      
 173 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 174 
     | 
    
         
            +
            <div class="section" id="see-also">
         
     | 
| 
      
 175 
     | 
    
         
            +
            <h2>7.8.14.4. See also<a class="headerlink" href="#see-also" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 176 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 177 
     | 
    
         
            +
            <li><p><a class="reference internal" href="../commands/tokenize.html"><span class="doc">tokenize</span></a></p></li>
         
     | 
| 
      
 178 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 179 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 180 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
             
     | 
| 
      
 183 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 184 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 185 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 186 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
      
 187 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 188 
     | 
    
         
            +
              <h3><a href="../../index.html">Table of Contents</a></h3>
         
     | 
| 
      
 189 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <li><a class="reference internal" href="#">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code></a><ul>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <li><a class="reference internal" href="#summary">7.8.14.1. Summary</a></li>
         
     | 
| 
      
 192 
     | 
    
         
            +
            <li><a class="reference internal" href="#syntax">7.8.14.2. Syntax</a></li>
         
     | 
| 
      
 193 
     | 
    
         
            +
            <li><a class="reference internal" href="#usage">7.8.14.3. Usage</a></li>
         
     | 
| 
      
 194 
     | 
    
         
            +
            <li><a class="reference internal" href="#see-also">7.8.14.4. See also</a></li>
         
     | 
| 
      
 195 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 196 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 197 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
              <h4>Previous topic</h4>
         
     | 
| 
      
 200 
     | 
    
         
            +
              <p class="topless"><a href="token_ngram.html"
         
     | 
| 
      
 201 
     | 
    
         
            +
                                    title="previous chapter">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code></a></p>
         
     | 
| 
      
 202 
     | 
    
         
            +
              <h4>Next topic</h4>
         
     | 
| 
      
 203 
     | 
    
         
            +
              <p class="topless"><a href="token_regexp.html"
         
     | 
| 
      
 204 
     | 
    
         
            +
                                    title="next chapter">7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code></a></p>
         
     | 
| 
      
 205 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
      
 206 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 207 
     | 
    
         
            +
                <div class="searchformwrapper">
         
     | 
| 
      
 208 
     | 
    
         
            +
                <form class="search" action="../../search.html" method="get">
         
     | 
| 
      
 209 
     | 
    
         
            +
                  <input type="text" name="q" />
         
     | 
| 
      
 210 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 211 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 212 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 213 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 214 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 215 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 216 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 217 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 218 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 219 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 220 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 221 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 222 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 223 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 224 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 225 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 226 
     | 
    
         
            +
                      <a href="token_regexp.html" title="7.8.15. TokenRegexp"
         
     | 
| 
      
 227 
     | 
    
         
            +
                         >next</a> |</li>
         
     | 
| 
      
 228 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 229 
     | 
    
         
            +
                      <a href="token_ngram.html" title="7.8.13. TokenNgram"
         
     | 
| 
      
 230 
     | 
    
         
            +
                         >previous</a> |</li>
         
     | 
| 
      
 231 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
      
 232 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 233 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. Tokenizers</a> »</li> 
         
     | 
| 
      
 234 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 235 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 236 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 237 
     | 
    
         
            +
                    © Copyright 2009-2019, Brazil, Inc.
         
     | 
| 
      
 238 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 239 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 240 
     | 
    
         
            +
            </html>
         
     | 
| 
         @@ -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.8. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.8.15. TokenRegexp — 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 
     | 
    
         | 
| 
         @@ -18,8 +18,8 @@ 
     | 
|
| 
       18 
18 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       19 
19 
     | 
    
         
             
                <link rel="index" title="Index" href="../../genindex.html" />
         
     | 
| 
       20 
20 
     | 
    
         
             
                <link rel="search" title="Search" href="../../search.html" />
         
     | 
| 
       21 
     | 
    
         
            -
                <link rel="next" title="7.8. 
     | 
| 
       22 
     | 
    
         
            -
                <link rel="prev" title="7.8. 
     | 
| 
      
 21 
     | 
    
         
            +
                <link rel="next" title="7.8.16. TokenTable" href="token_table.html" />
         
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="prev" title="7.8.14. TokenPattern" href="token_pattern.html" /> 
         
     | 
| 
       23 
23 
     | 
    
         
             
              </head><body>
         
     | 
| 
       24 
24 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       25 
25 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
         @@ -45,12 +45,12 @@ 
     | 
|
| 
       45 
45 
     | 
    
         
             
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
       46 
46 
     | 
    
         
             
                         accesskey="I">index</a></li>
         
     | 
| 
       47 
47 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       48 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 48 
     | 
    
         
            +
                      <a href="token_table.html" title="7.8.16. TokenTable"
         
     | 
| 
       49 
49 
     | 
    
         
             
                         accesskey="N">next</a> |</li>
         
     | 
| 
       50 
50 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       51 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 51 
     | 
    
         
            +
                      <a href="token_pattern.html" title="7.8.14. TokenPattern"
         
     | 
| 
       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="../tokenizers.html" accesskey="U">7.8. Tokenizers</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -62,9 +62,9 @@ 
     | 
|
| 
       62 
62 
     | 
    
         
             
                      <div class="body" role="main">
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
              <div class="section" id="tokenregexp">
         
     | 
| 
       65 
     | 
    
         
            -
            <span id="token-regexp"></span><h1>7.8. 
     | 
| 
      
 65 
     | 
    
         
            +
            <span id="token-regexp"></span><h1>7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code><a class="headerlink" href="#tokenregexp" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
       66 
66 
     | 
    
         
             
            <div class="section" id="summary">
         
     | 
| 
       67 
     | 
    
         
            -
            <h2>7.8. 
     | 
| 
      
 67 
     | 
    
         
            +
            <h2>7.8.15.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       68 
68 
     | 
    
         
             
            <div class="versionadded">
         
     | 
| 
       69 
69 
     | 
    
         
             
            <p><span class="versionmodified added">New in version 5.0.1.</span></p>
         
     | 
| 
       70 
70 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -81,14 +81,14 @@ tokenizer with EUC-JP, Shift_JIS and so on.</p> 
     | 
|
| 
       81 
81 
     | 
    
         
             
            search by index.</p>
         
     | 
| 
       82 
82 
     | 
    
         
             
            </div>
         
     | 
| 
       83 
83 
     | 
    
         
             
            <div class="section" id="syntax">
         
     | 
| 
       84 
     | 
    
         
            -
            <h2>7.8. 
     | 
| 
      
 84 
     | 
    
         
            +
            <h2>7.8.15.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       85 
85 
     | 
    
         
             
            <p><code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code> hasn’t parameter:</p>
         
     | 
| 
       86 
86 
     | 
    
         
             
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenRegexp
         
     | 
| 
       87 
87 
     | 
    
         
             
            </pre></div>
         
     | 
| 
       88 
88 
     | 
    
         
             
            </div>
         
     | 
| 
       89 
89 
     | 
    
         
             
            </div>
         
     | 
| 
       90 
90 
     | 
    
         
             
            <div class="section" id="usage">
         
     | 
| 
       91 
     | 
    
         
            -
            <h2>7.8. 
     | 
| 
      
 91 
     | 
    
         
            +
            <h2>7.8.15.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       92 
92 
     | 
    
         
             
            <p>In general, regular expression search is evaluated as sequential
         
     | 
| 
       93 
93 
     | 
    
         
             
            search. But the following cases can be evaluated as index search:</p>
         
     | 
| 
       94 
94 
     | 
    
         
             
            <blockquote>
         
     | 
| 
         @@ -237,20 +237,20 @@ index text:</p> 
     | 
|
| 
       237 
237 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       238 
238 
     | 
    
         
             
              <h3><a href="../../index.html">Table of Contents</a></h3>
         
     | 
| 
       239 
239 
     | 
    
         
             
              <ul>
         
     | 
| 
       240 
     | 
    
         
            -
            <li><a class="reference internal" href="#">7.8. 
     | 
| 
       241 
     | 
    
         
            -
            <li><a class="reference internal" href="#summary">7.8. 
     | 
| 
       242 
     | 
    
         
            -
            <li><a class="reference internal" href="#syntax">7.8. 
     | 
| 
       243 
     | 
    
         
            -
            <li><a class="reference internal" href="#usage">7.8. 
     | 
| 
      
 240 
     | 
    
         
            +
            <li><a class="reference internal" href="#">7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code></a><ul>
         
     | 
| 
      
 241 
     | 
    
         
            +
            <li><a class="reference internal" href="#summary">7.8.15.1. Summary</a></li>
         
     | 
| 
      
 242 
     | 
    
         
            +
            <li><a class="reference internal" href="#syntax">7.8.15.2. Syntax</a></li>
         
     | 
| 
      
 243 
     | 
    
         
            +
            <li><a class="reference internal" href="#usage">7.8.15.3. Usage</a></li>
         
     | 
| 
       244 
244 
     | 
    
         
             
            </ul>
         
     | 
| 
       245 
245 
     | 
    
         
             
            </li>
         
     | 
| 
       246 
246 
     | 
    
         
             
            </ul>
         
     | 
| 
       247 
247 
     | 
    
         | 
| 
       248 
248 
     | 
    
         
             
              <h4>Previous topic</h4>
         
     | 
| 
       249 
     | 
    
         
            -
              <p class="topless"><a href=" 
     | 
| 
       250 
     | 
    
         
            -
                                    title="previous chapter">7.8. 
     | 
| 
      
 249 
     | 
    
         
            +
              <p class="topless"><a href="token_pattern.html"
         
     | 
| 
      
 250 
     | 
    
         
            +
                                    title="previous chapter">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code></a></p>
         
     | 
| 
       251 
251 
     | 
    
         
             
              <h4>Next topic</h4>
         
     | 
| 
       252 
     | 
    
         
            -
              <p class="topless"><a href=" 
     | 
| 
       253 
     | 
    
         
            -
                                    title="next chapter">7.8. 
     | 
| 
      
 252 
     | 
    
         
            +
              <p class="topless"><a href="token_table.html"
         
     | 
| 
      
 253 
     | 
    
         
            +
                                    title="next chapter">7.8.16. <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code></a></p>
         
     | 
| 
       254 
254 
     | 
    
         
             
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       255 
255 
     | 
    
         
             
              <h3>Quick search</h3>
         
     | 
| 
       256 
256 
     | 
    
         
             
                <div class="searchformwrapper">
         
     | 
| 
         @@ -272,12 +272,12 @@ index text:</p> 
     | 
|
| 
       272 
272 
     | 
    
         
             
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
       273 
273 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       274 
274 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       275 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 275 
     | 
    
         
            +
                      <a href="token_table.html" title="7.8.16. TokenTable"
         
     | 
| 
       276 
276 
     | 
    
         
             
                         >next</a> |</li>
         
     | 
| 
       277 
277 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       278 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 278 
     | 
    
         
            +
                      <a href="token_pattern.html" title="7.8.14. TokenPattern"
         
     | 
| 
       279 
279 
     | 
    
         
             
                         >previous</a> |</li>
         
     | 
| 
       280 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 280 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
       281 
281 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
       282 
282 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. Tokenizers</a> »</li> 
         
     | 
| 
       283 
283 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -0,0 +1,246 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" lang="en">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <meta charset="utf-8" />
         
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.8.16. TokenTable — Groonga v9.0.6 documentation</title>
         
     | 
| 
      
 9 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
      
 10 
     | 
    
         
            +
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
      
 11 
     | 
    
         
            +
                
         
     | 
| 
      
 12 
     | 
    
         
            +
                <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
         
     | 
| 
      
 13 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/jquery.js"></script>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/underscore.js"></script>
         
     | 
| 
      
 15 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/doctools.js"></script>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/language_data.js"></script>
         
     | 
| 
      
 17 
     | 
    
         
            +
                
         
     | 
| 
      
 18 
     | 
    
         
            +
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
      
 19 
     | 
    
         
            +
                <link rel="index" title="Index" href="../../genindex.html" />
         
     | 
| 
      
 20 
     | 
    
         
            +
                <link rel="search" title="Search" href="../../search.html" />
         
     | 
| 
      
 21 
     | 
    
         
            +
                <link rel="next" title="7.8.17. TokenTrigram" href="token_trigram.html" />
         
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="prev" title="7.8.15. TokenRegexp" href="token_regexp.html" /> 
         
     | 
| 
      
 23 
     | 
    
         
            +
              </head><body>
         
     | 
| 
      
 24 
     | 
    
         
            +
            <div class="header">
         
     | 
| 
      
 25 
     | 
    
         
            +
              <h1 class="title">
         
     | 
| 
      
 26 
     | 
    
         
            +
                <a id="top-link" href="../../index.html">
         
     | 
| 
      
 27 
     | 
    
         
            +
                  <span class="project">groonga</span>
         
     | 
| 
      
 28 
     | 
    
         
            +
                  <span class="separator">-</span>
         
     | 
| 
      
 29 
     | 
    
         
            +
                  <span class="description">An open-source fulltext search engine and column store.</span>
         
     | 
| 
      
 30 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 31 
     | 
    
         
            +
              </h1>
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
              <div class="other-language-links">
         
     | 
| 
      
 34 
     | 
    
         
            +
                <ul>
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <li><a href="../../../../ja/html/reference/tokenizers/token_table.html">日本語</a></li>
         
     | 
| 
      
 36 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 37 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 38 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 39 
     | 
    
         
            +
              
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 42 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 44 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 45 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 46 
     | 
    
         
            +
                         accesskey="I">index</a></li>
         
     | 
| 
      
 47 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 48 
     | 
    
         
            +
                      <a href="token_trigram.html" title="7.8.17. TokenTrigram"
         
     | 
| 
      
 49 
     | 
    
         
            +
                         accesskey="N">next</a> |</li>
         
     | 
| 
      
 50 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <a href="token_regexp.html" title="7.8.15. TokenRegexp"
         
     | 
| 
      
 52 
     | 
    
         
            +
                         accesskey="P">previous</a> |</li>
         
     | 
| 
      
 53 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. Tokenizers</a> »</li> 
         
     | 
| 
      
 56 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 57 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
      
 63 
     | 
    
         
            +
                        
         
     | 
| 
      
 64 
     | 
    
         
            +
              <div class="section" id="tokentable">
         
     | 
| 
      
 65 
     | 
    
         
            +
            <h1>7.8.16. <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code><a class="headerlink" href="#tokentable" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="summary">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <h2>7.8.16.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 68 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenTable</span></code> is a tokenizer which treats only known keywords as a token.
         
     | 
| 
      
 69 
     | 
    
         
            +
            The known keywords must be registered as a key in the table for <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code>.</p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <p>For example, query contains a known keyword and a unknown keyword, only a known keyword is
         
     | 
| 
      
 71 
     | 
    
         
            +
            used in search query (unknown keyword will be ignored). In other words, you can search contents with only known keywords.
         
     | 
| 
      
 72 
     | 
    
         
            +
            Because of this characteristic, you need to maintain keyword table for a new keyword continuously.</p>
         
     | 
| 
      
 73 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <div class="section" id="syntax">
         
     | 
| 
      
 75 
     | 
    
         
            +
            <h2>7.8.16.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenTable</span></code> has a required parameter.</p>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <p>Specify the table:</p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenTable("table", TABLE)
         
     | 
| 
      
 79 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TABLE</span></code> must be created with <code class="docutils literal notranslate"><span class="pre">--default_tokenizer</span> <span class="pre">'TokenTable("table",</span> <span class="pre">TABLE)</span></code>.</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <div class="section" id="usage">
         
     | 
| 
      
 84 
     | 
    
         
            +
            <h2>7.8.16.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <p>Here is an example of <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code>.
         
     | 
| 
      
 86 
     | 
    
         
            +
            For example, let’s search <code class="docutils literal notranslate"><span class="pre">Raspberry</span> <span class="pre">Pie</span></code> from <code class="docutils literal notranslate"><span class="pre">Pies</span></code> table.
         
     | 
| 
      
 87 
     | 
    
         
            +
            The table which is used for keyword is <code class="docutils literal notranslate"><span class="pre">Keywords</span></code>.</p>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <p>Here is the sample schema and data:</p>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Pies TABLE_NO_KEY
         
     | 
| 
      
 91 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 92 
     | 
    
         
            +
            column_create Pies name COLUMN_SCALAR Text
         
     | 
| 
      
 93 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 94 
     | 
    
         
            +
            table_create Keywords TABLE_PAT_KEY ShortText --default_tokenizer 'TokenTable("table", "Keywords")'
         
     | 
| 
      
 95 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 96 
     | 
    
         
            +
            column_create Keywords index COLUMN_INDEX Pies name
         
     | 
| 
      
 97 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], true]
         
     | 
| 
      
 98 
     | 
    
         
            +
            load --table Keywords
         
     | 
| 
      
 99 
     | 
    
         
            +
            [
         
     | 
| 
      
 100 
     | 
    
         
            +
            {"_key": "Apple"}
         
     | 
| 
      
 101 
     | 
    
         
            +
            {"_key": "Orange"}
         
     | 
| 
      
 102 
     | 
    
         
            +
            {"_key": "Raspberry"}
         
     | 
| 
      
 103 
     | 
    
         
            +
            ]
         
     | 
| 
      
 104 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], 3]
         
     | 
| 
      
 105 
     | 
    
         
            +
            load --table Pies
         
     | 
| 
      
 106 
     | 
    
         
            +
            [
         
     | 
| 
      
 107 
     | 
    
         
            +
            {"name": "Apple Pie"},
         
     | 
| 
      
 108 
     | 
    
         
            +
            {"name": "Orange Pie"}
         
     | 
| 
      
 109 
     | 
    
         
            +
            {"name": "Raspberry Pie"}
         
     | 
| 
      
 110 
     | 
    
         
            +
            {"name": "Stargazy Pie"}
         
     | 
| 
      
 111 
     | 
    
         
            +
            ]
         
     | 
| 
      
 112 
     | 
    
         
            +
            # [[0, 1337566253.89858, 0.000355720520019531], 4]
         
     | 
| 
      
 113 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 115 
     | 
    
         
            +
            <p>Then search <code class="docutils literal notranslate"><span class="pre">Raspberry</span> <span class="pre">Pie</span></code> with <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">Raspberry</span></code>.</p>
         
     | 
| 
      
 116 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 117 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Pies --match_columns name --query 'Raspberry'
         
     | 
| 
      
 118 
     | 
    
         
            +
            # [
         
     | 
| 
      
 119 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 120 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 121 
     | 
    
         
            +
            #     1337566253.89858,
         
     | 
| 
      
 122 
     | 
    
         
            +
            #     0.000355720520019531
         
     | 
| 
      
 123 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 124 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 125 
     | 
    
         
            +
            #     [
         
     | 
| 
      
 126 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 127 
     | 
    
         
            +
            #         1
         
     | 
| 
      
 128 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 129 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 130 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 131 
     | 
    
         
            +
            #           "_id",
         
     | 
| 
      
 132 
     | 
    
         
            +
            #           "UInt32"
         
     | 
| 
      
 133 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 134 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 135 
     | 
    
         
            +
            #           "name",
         
     | 
| 
      
 136 
     | 
    
         
            +
            #           "Text"
         
     | 
| 
      
 137 
     | 
    
         
            +
            #         ]
         
     | 
| 
      
 138 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 139 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 140 
     | 
    
         
            +
            #         3,
         
     | 
| 
      
 141 
     | 
    
         
            +
            #         "Raspberry Pie"
         
     | 
| 
      
 142 
     | 
    
         
            +
            #       ]
         
     | 
| 
      
 143 
     | 
    
         
            +
            #     ]
         
     | 
| 
      
 144 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 145 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 146 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 147 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 148 
     | 
    
         
            +
            <p>As you expected, the above query matches the <code class="docutils literal notranslate"><span class="pre">Raspberry</span> <span class="pre">Pie</span></code> record.</p>
         
     | 
| 
      
 149 
     | 
    
         
            +
            <p>Next, search <code class="docutils literal notranslate"><span class="pre">Stargazy</span> <span class="pre">Pie</span></code> with <code class="docutils literal notranslate"><span class="pre">--query</span> <span class="pre">Stargazy</span></code>.</p>
         
     | 
| 
      
 150 
     | 
    
         
            +
            <p>Execution example:</p>
         
     | 
| 
      
 151 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>select Pies --match_columns name --query 'Stargazy'
         
     | 
| 
      
 152 
     | 
    
         
            +
            # [
         
     | 
| 
      
 153 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 154 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 155 
     | 
    
         
            +
            #     1337566253.89858,
         
     | 
| 
      
 156 
     | 
    
         
            +
            #     0.000355720520019531
         
     | 
| 
      
 157 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 158 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 159 
     | 
    
         
            +
            #     [
         
     | 
| 
      
 160 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 161 
     | 
    
         
            +
            #         0
         
     | 
| 
      
 162 
     | 
    
         
            +
            #       ],
         
     | 
| 
      
 163 
     | 
    
         
            +
            #       [
         
     | 
| 
      
 164 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 165 
     | 
    
         
            +
            #           "_id",
         
     | 
| 
      
 166 
     | 
    
         
            +
            #           "UInt32"
         
     | 
| 
      
 167 
     | 
    
         
            +
            #         ],
         
     | 
| 
      
 168 
     | 
    
         
            +
            #         [
         
     | 
| 
      
 169 
     | 
    
         
            +
            #           "name",
         
     | 
| 
      
 170 
     | 
    
         
            +
            #           "Text"
         
     | 
| 
      
 171 
     | 
    
         
            +
            #         ]
         
     | 
| 
      
 172 
     | 
    
         
            +
            #       ]
         
     | 
| 
      
 173 
     | 
    
         
            +
            #     ]
         
     | 
| 
      
 174 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 175 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 176 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 177 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 178 
     | 
    
         
            +
            <p>In above example, as the keyword <code class="docutils literal notranslate"><span class="pre">Stargazy</span></code> is not registered in <code class="docutils literal notranslate"><span class="pre">Keywords</span></code> table yet, it doesn’t match anything.</p>
         
     | 
| 
      
 179 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 180 
     | 
    
         
            +
            <div class="section" id="see-also">
         
     | 
| 
      
 181 
     | 
    
         
            +
            <h2>7.8.16.4. See also<a class="headerlink" href="#see-also" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
      
 182 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 183 
     | 
    
         
            +
            <li><p><a class="reference internal" href="../commands/tokenize.html"><span class="doc">tokenize</span></a></p></li>
         
     | 
| 
      
 184 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 185 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 186 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 190 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 191 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 192 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
      
 193 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 194 
     | 
    
         
            +
              <h3><a href="../../index.html">Table of Contents</a></h3>
         
     | 
| 
      
 195 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 196 
     | 
    
         
            +
            <li><a class="reference internal" href="#">7.8.16. <code class="docutils literal notranslate"><span class="pre">TokenTable</span></code></a><ul>
         
     | 
| 
      
 197 
     | 
    
         
            +
            <li><a class="reference internal" href="#summary">7.8.16.1. Summary</a></li>
         
     | 
| 
      
 198 
     | 
    
         
            +
            <li><a class="reference internal" href="#syntax">7.8.16.2. Syntax</a></li>
         
     | 
| 
      
 199 
     | 
    
         
            +
            <li><a class="reference internal" href="#usage">7.8.16.3. Usage</a></li>
         
     | 
| 
      
 200 
     | 
    
         
            +
            <li><a class="reference internal" href="#see-also">7.8.16.4. See also</a></li>
         
     | 
| 
      
 201 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 202 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 203 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 204 
     | 
    
         
            +
             
     | 
| 
      
 205 
     | 
    
         
            +
              <h4>Previous topic</h4>
         
     | 
| 
      
 206 
     | 
    
         
            +
              <p class="topless"><a href="token_regexp.html"
         
     | 
| 
      
 207 
     | 
    
         
            +
                                    title="previous chapter">7.8.15. <code class="docutils literal notranslate"><span class="pre">TokenRegexp</span></code></a></p>
         
     | 
| 
      
 208 
     | 
    
         
            +
              <h4>Next topic</h4>
         
     | 
| 
      
 209 
     | 
    
         
            +
              <p class="topless"><a href="token_trigram.html"
         
     | 
| 
      
 210 
     | 
    
         
            +
                                    title="next chapter">7.8.17. <code class="docutils literal notranslate"><span class="pre">TokenTrigram</span></code></a></p>
         
     | 
| 
      
 211 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
      
 212 
     | 
    
         
            +
              <h3>Quick search</h3>
         
     | 
| 
      
 213 
     | 
    
         
            +
                <div class="searchformwrapper">
         
     | 
| 
      
 214 
     | 
    
         
            +
                <form class="search" action="../../search.html" method="get">
         
     | 
| 
      
 215 
     | 
    
         
            +
                  <input type="text" name="q" />
         
     | 
| 
      
 216 
     | 
    
         
            +
                  <input type="submit" value="Go" />
         
     | 
| 
      
 217 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 218 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 219 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 220 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 221 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 222 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 223 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 224 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 225 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 226 
     | 
    
         
            +
                  <h3>Navigation</h3>
         
     | 
| 
      
 227 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 228 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 229 
     | 
    
         
            +
                      <a href="../../genindex.html" title="General Index"
         
     | 
| 
      
 230 
     | 
    
         
            +
                         >index</a></li>
         
     | 
| 
      
 231 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 232 
     | 
    
         
            +
                      <a href="token_trigram.html" title="7.8.17. TokenTrigram"
         
     | 
| 
      
 233 
     | 
    
         
            +
                         >next</a> |</li>
         
     | 
| 
      
 234 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 235 
     | 
    
         
            +
                      <a href="token_regexp.html" title="7.8.15. TokenRegexp"
         
     | 
| 
      
 236 
     | 
    
         
            +
                         >previous</a> |</li>
         
     | 
| 
      
 237 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
         
     | 
| 
      
 238 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
         
     | 
| 
      
 239 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. Tokenizers</a> »</li> 
         
     | 
| 
      
 240 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 241 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 242 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 243 
     | 
    
         
            +
                    © Copyright 2009-2019, Brazil, Inc.
         
     | 
| 
      
 244 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 245 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 246 
     | 
    
         
            +
            </html>
         
     |