rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -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.12. TokenMecab — Groonga v9.0.
|
8
|
+
<title>7.8.12. TokenMecab — 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,7 +18,7 @@
|
|
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.13.
|
21
|
+
<link rel="next" title="7.8.13. TokenNgram" href="token_ngram.html" />
|
22
22
|
<link rel="prev" title="7.8.11. TokenDelimitNull" href="token_delimit_null.html" />
|
23
23
|
</head><body>
|
24
24
|
<div class="header">
|
@@ -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_ngram.html" title="7.8.13. TokenNgram"
|
49
49
|
accesskey="N">next</a> |</li>
|
50
50
|
<li class="right" >
|
51
51
|
<a href="token_delimit_null.html" title="7.8.11. TokenDelimitNull"
|
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>
|
@@ -743,8 +743,8 @@ person name as below.</p>
|
|
743
743
|
<p class="topless"><a href="token_delimit_null.html"
|
744
744
|
title="previous chapter">7.8.11. <code class="docutils literal notranslate"><span class="pre">TokenDelimitNull</span></code></a></p>
|
745
745
|
<h4>Next topic</h4>
|
746
|
-
<p class="topless"><a href="
|
747
|
-
title="next chapter">7.8.13. <code class="docutils literal notranslate"><span class="pre">
|
746
|
+
<p class="topless"><a href="token_ngram.html"
|
747
|
+
title="next chapter">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code></a></p>
|
748
748
|
<div id="searchbox" style="display: none" role="search">
|
749
749
|
<h3>Quick search</h3>
|
750
750
|
<div class="searchformwrapper">
|
@@ -766,12 +766,12 @@ person name as below.</p>
|
|
766
766
|
<a href="../../genindex.html" title="General Index"
|
767
767
|
>index</a></li>
|
768
768
|
<li class="right" >
|
769
|
-
<a href="
|
769
|
+
<a href="token_ngram.html" title="7.8.13. TokenNgram"
|
770
770
|
>next</a> |</li>
|
771
771
|
<li class="right" >
|
772
772
|
<a href="token_delimit_null.html" title="7.8.11. TokenDelimitNull"
|
773
773
|
>previous</a> |</li>
|
774
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.
|
774
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
|
775
775
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
776
776
|
<li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. Tokenizers</a> »</li>
|
777
777
|
</ul>
|
@@ -0,0 +1,1005 @@
|
|
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.13. TokenNgram — 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.14. TokenPattern" href="token_pattern.html" />
|
22
|
+
<link rel="prev" title="7.8.12. TokenMecab" href="token_mecab.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_ngram.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_pattern.html" title="7.8.14. TokenPattern"
|
49
|
+
accesskey="N">next</a> |</li>
|
50
|
+
<li class="right" >
|
51
|
+
<a href="token_mecab.html" title="7.8.12. TokenMecab"
|
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="tokenngram">
|
65
|
+
<span id="token-ngram"></span><h1>7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code><a class="headerlink" href="#tokenngram" title="Permalink to this headline">¶</a></h1>
|
66
|
+
<div class="section" id="summary">
|
67
|
+
<h2>7.8.13.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
|
68
|
+
<p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> can change define its behavior dynamically via its options.
|
69
|
+
For example, we can use it as unigram, bigram, trigram on with changing <code class="docutils literal notranslate"><span class="pre">n</span></code> option value as below.</p>
|
70
|
+
<p>Uni-gram:</p>
|
71
|
+
<p>Execution example:</p>
|
72
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("n", 1)' --string "Hello World"
|
73
|
+
# [
|
74
|
+
# [
|
75
|
+
# 0,
|
76
|
+
# 1556063953.911713,
|
77
|
+
# 0.05761265754699707
|
78
|
+
# ],
|
79
|
+
# [
|
80
|
+
# {
|
81
|
+
# "value": "H",
|
82
|
+
# "position": 0,
|
83
|
+
# "force_prefix": false,
|
84
|
+
# "force_prefix_search": false
|
85
|
+
# },
|
86
|
+
# {
|
87
|
+
# "value": "e",
|
88
|
+
# "position": 1,
|
89
|
+
# "force_prefix": false,
|
90
|
+
# "force_prefix_search": false
|
91
|
+
# },
|
92
|
+
# {
|
93
|
+
# "value": "l",
|
94
|
+
# "position": 2,
|
95
|
+
# "force_prefix": false,
|
96
|
+
# "force_prefix_search": false
|
97
|
+
# },
|
98
|
+
# {
|
99
|
+
# "value": "l",
|
100
|
+
# "position": 3,
|
101
|
+
# "force_prefix": false,
|
102
|
+
# "force_prefix_search": false
|
103
|
+
# },
|
104
|
+
# {
|
105
|
+
# "value": "o",
|
106
|
+
# "position": 4,
|
107
|
+
# "force_prefix": false,
|
108
|
+
# "force_prefix_search": false
|
109
|
+
# },
|
110
|
+
# {
|
111
|
+
# "value": " ",
|
112
|
+
# "position": 5,
|
113
|
+
# "force_prefix": false,
|
114
|
+
# "force_prefix_search": false
|
115
|
+
# },
|
116
|
+
# {
|
117
|
+
# "value": "W",
|
118
|
+
# "position": 6,
|
119
|
+
# "force_prefix": false,
|
120
|
+
# "force_prefix_search": false
|
121
|
+
# },
|
122
|
+
# {
|
123
|
+
# "value": "o",
|
124
|
+
# "position": 7,
|
125
|
+
# "force_prefix": false,
|
126
|
+
# "force_prefix_search": false
|
127
|
+
# },
|
128
|
+
# {
|
129
|
+
# "value": "r",
|
130
|
+
# "position": 8,
|
131
|
+
# "force_prefix": false,
|
132
|
+
# "force_prefix_search": false
|
133
|
+
# },
|
134
|
+
# {
|
135
|
+
# "value": "l",
|
136
|
+
# "position": 9,
|
137
|
+
# "force_prefix": false,
|
138
|
+
# "force_prefix_search": false
|
139
|
+
# },
|
140
|
+
# {
|
141
|
+
# "value": "d",
|
142
|
+
# "position": 10,
|
143
|
+
# "force_prefix": false,
|
144
|
+
# "force_prefix_search": false
|
145
|
+
# }
|
146
|
+
# ]
|
147
|
+
# ]
|
148
|
+
</pre></div>
|
149
|
+
</div>
|
150
|
+
<p>Bi-gram:</p>
|
151
|
+
<p>Execution example:</p>
|
152
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("n", 2)' --string "Hello World"
|
153
|
+
# [
|
154
|
+
# [
|
155
|
+
# 0,
|
156
|
+
# 1556064877.095833,
|
157
|
+
# 0.0002193450927734375
|
158
|
+
# ],
|
159
|
+
# [
|
160
|
+
# {
|
161
|
+
# "value": "He",
|
162
|
+
# "position": 0,
|
163
|
+
# "force_prefix": false,
|
164
|
+
# "force_prefix_search": false
|
165
|
+
# },
|
166
|
+
# {
|
167
|
+
# "value": "el",
|
168
|
+
# "position": 1,
|
169
|
+
# "force_prefix": false,
|
170
|
+
# "force_prefix_search": false
|
171
|
+
# },
|
172
|
+
# {
|
173
|
+
# "value": "ll",
|
174
|
+
# "position": 2,
|
175
|
+
# "force_prefix": false,
|
176
|
+
# "force_prefix_search": false
|
177
|
+
# },
|
178
|
+
# {
|
179
|
+
# "value": "lo",
|
180
|
+
# "position": 3,
|
181
|
+
# "force_prefix": false,
|
182
|
+
# "force_prefix_search": false
|
183
|
+
# },
|
184
|
+
# {
|
185
|
+
# "value": "o ",
|
186
|
+
# "position": 4,
|
187
|
+
# "force_prefix": false,
|
188
|
+
# "force_prefix_search": false
|
189
|
+
# },
|
190
|
+
# {
|
191
|
+
# "value": " W",
|
192
|
+
# "position": 5,
|
193
|
+
# "force_prefix": false,
|
194
|
+
# "force_prefix_search": false
|
195
|
+
# },
|
196
|
+
# {
|
197
|
+
# "value": "Wo",
|
198
|
+
# "position": 6,
|
199
|
+
# "force_prefix": false,
|
200
|
+
# "force_prefix_search": false
|
201
|
+
# },
|
202
|
+
# {
|
203
|
+
# "value": "or",
|
204
|
+
# "position": 7,
|
205
|
+
# "force_prefix": false,
|
206
|
+
# "force_prefix_search": false
|
207
|
+
# },
|
208
|
+
# {
|
209
|
+
# "value": "rl",
|
210
|
+
# "position": 8,
|
211
|
+
# "force_prefix": false,
|
212
|
+
# "force_prefix_search": false
|
213
|
+
# },
|
214
|
+
# {
|
215
|
+
# "value": "ld",
|
216
|
+
# "position": 9,
|
217
|
+
# "force_prefix": false,
|
218
|
+
# "force_prefix_search": false
|
219
|
+
# },
|
220
|
+
# {
|
221
|
+
# "value": "d",
|
222
|
+
# "position": 10,
|
223
|
+
# "force_prefix": false,
|
224
|
+
# "force_prefix_search": false
|
225
|
+
# }
|
226
|
+
# ]
|
227
|
+
# ]
|
228
|
+
</pre></div>
|
229
|
+
</div>
|
230
|
+
<p>Tri-gram:</p>
|
231
|
+
<p>Execution example:</p>
|
232
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("n", 3)' --string "Hello World"
|
233
|
+
# [
|
234
|
+
# [
|
235
|
+
# 0,
|
236
|
+
# 1556064951.790899,
|
237
|
+
# 0.0002274513244628906
|
238
|
+
# ],
|
239
|
+
# [
|
240
|
+
# {
|
241
|
+
# "value": "Hel",
|
242
|
+
# "position": 0,
|
243
|
+
# "force_prefix": false,
|
244
|
+
# "force_prefix_search": false
|
245
|
+
# },
|
246
|
+
# {
|
247
|
+
# "value": "ell",
|
248
|
+
# "position": 1,
|
249
|
+
# "force_prefix": false,
|
250
|
+
# "force_prefix_search": false
|
251
|
+
# },
|
252
|
+
# {
|
253
|
+
# "value": "llo",
|
254
|
+
# "position": 2,
|
255
|
+
# "force_prefix": false,
|
256
|
+
# "force_prefix_search": false
|
257
|
+
# },
|
258
|
+
# {
|
259
|
+
# "value": "lo ",
|
260
|
+
# "position": 3,
|
261
|
+
# "force_prefix": false,
|
262
|
+
# "force_prefix_search": false
|
263
|
+
# },
|
264
|
+
# {
|
265
|
+
# "value": "o W",
|
266
|
+
# "position": 4,
|
267
|
+
# "force_prefix": false,
|
268
|
+
# "force_prefix_search": false
|
269
|
+
# },
|
270
|
+
# {
|
271
|
+
# "value": " Wo",
|
272
|
+
# "position": 5,
|
273
|
+
# "force_prefix": false,
|
274
|
+
# "force_prefix_search": false
|
275
|
+
# },
|
276
|
+
# {
|
277
|
+
# "value": "Wor",
|
278
|
+
# "position": 6,
|
279
|
+
# "force_prefix": false,
|
280
|
+
# "force_prefix_search": false
|
281
|
+
# },
|
282
|
+
# {
|
283
|
+
# "value": "orl",
|
284
|
+
# "position": 7,
|
285
|
+
# "force_prefix": false,
|
286
|
+
# "force_prefix_search": false
|
287
|
+
# },
|
288
|
+
# {
|
289
|
+
# "value": "rld",
|
290
|
+
# "position": 8,
|
291
|
+
# "force_prefix": false,
|
292
|
+
# "force_prefix_search": false
|
293
|
+
# },
|
294
|
+
# {
|
295
|
+
# "value": "ld",
|
296
|
+
# "position": 9,
|
297
|
+
# "force_prefix": false,
|
298
|
+
# "force_prefix_search": false
|
299
|
+
# },
|
300
|
+
# {
|
301
|
+
# "value": "d",
|
302
|
+
# "position": 10,
|
303
|
+
# "force_prefix": false,
|
304
|
+
# "force_prefix_search": false
|
305
|
+
# }
|
306
|
+
# ]
|
307
|
+
# ]
|
308
|
+
</pre></div>
|
309
|
+
</div>
|
310
|
+
<p>This tokenizer also has options other than the above.</p>
|
311
|
+
</div>
|
312
|
+
<div class="section" id="syntax">
|
313
|
+
<h2>7.8.13.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
|
314
|
+
<p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> has optional parameter.</p>
|
315
|
+
<p>No options:</p>
|
316
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenNgram
|
317
|
+
</pre></div>
|
318
|
+
</div>
|
319
|
+
<p>If we don’t use options, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> is the same behavior for <code class="docutils literal notranslate"><span class="pre">TokenBigram</span></code>.</p>
|
320
|
+
<p>Specify option:</p>
|
321
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenNgram("n", true)
|
322
|
+
|
323
|
+
TokenNgram("loose_symbol", true)
|
324
|
+
|
325
|
+
TokenNgram("loose_blank", true)
|
326
|
+
|
327
|
+
TokenNgram("remove_blank", true)
|
328
|
+
|
329
|
+
TokenNgram("report_source_location", true)
|
330
|
+
|
331
|
+
TokenNgram("unify_alphabet", true)
|
332
|
+
|
333
|
+
TokenNgram("unify_symbol", true)
|
334
|
+
|
335
|
+
TokenNgram("unify_digit", true)
|
336
|
+
</pre></div>
|
337
|
+
</div>
|
338
|
+
<p>Specify multiple options:</p>
|
339
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenNgram("loose_symbol", true, "loose_blank", true)
|
340
|
+
</pre></div>
|
341
|
+
</div>
|
342
|
+
<p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> We can also specify multiple options at the same time except the above examples.</p>
|
343
|
+
</div>
|
344
|
+
<div class="section" id="usage">
|
345
|
+
<h2>7.8.13.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
346
|
+
</div>
|
347
|
+
<div class="section" id="simple-usage">
|
348
|
+
<h2>7.8.13.4. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h2>
|
349
|
+
<p>Here is an example of <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p>
|
350
|
+
<p>If we use <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> in the nothing of option.
|
351
|
+
<code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> behavior is the same as <code class="docutils literal notranslate"><span class="pre">TokenBigram</span></code> as below:</p>
|
352
|
+
<ul class="simple">
|
353
|
+
<li><p>If no normalizer is used.</p></li>
|
354
|
+
</ul>
|
355
|
+
<p>Execution example:</p>
|
356
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer TokenNgram --string "Hello World"
|
357
|
+
# [
|
358
|
+
# [
|
359
|
+
# 0,
|
360
|
+
# 1556063548.341422,
|
361
|
+
# 0.0002450942993164062
|
362
|
+
# ],
|
363
|
+
# [
|
364
|
+
# {
|
365
|
+
# "value": "He",
|
366
|
+
# "position": 0,
|
367
|
+
# "force_prefix": false,
|
368
|
+
# "force_prefix_search": false
|
369
|
+
# },
|
370
|
+
# {
|
371
|
+
# "value": "el",
|
372
|
+
# "position": 1,
|
373
|
+
# "force_prefix": false,
|
374
|
+
# "force_prefix_search": false
|
375
|
+
# },
|
376
|
+
# {
|
377
|
+
# "value": "ll",
|
378
|
+
# "position": 2,
|
379
|
+
# "force_prefix": false,
|
380
|
+
# "force_prefix_search": false
|
381
|
+
# },
|
382
|
+
# {
|
383
|
+
# "value": "lo",
|
384
|
+
# "position": 3,
|
385
|
+
# "force_prefix": false,
|
386
|
+
# "force_prefix_search": false
|
387
|
+
# },
|
388
|
+
# {
|
389
|
+
# "value": "o ",
|
390
|
+
# "position": 4,
|
391
|
+
# "force_prefix": false,
|
392
|
+
# "force_prefix_search": false
|
393
|
+
# },
|
394
|
+
# {
|
395
|
+
# "value": " W",
|
396
|
+
# "position": 5,
|
397
|
+
# "force_prefix": false,
|
398
|
+
# "force_prefix_search": false
|
399
|
+
# },
|
400
|
+
# {
|
401
|
+
# "value": "Wo",
|
402
|
+
# "position": 6,
|
403
|
+
# "force_prefix": false,
|
404
|
+
# "force_prefix_search": false
|
405
|
+
# },
|
406
|
+
# {
|
407
|
+
# "value": "or",
|
408
|
+
# "position": 7,
|
409
|
+
# "force_prefix": false,
|
410
|
+
# "force_prefix_search": false
|
411
|
+
# },
|
412
|
+
# {
|
413
|
+
# "value": "rl",
|
414
|
+
# "position": 8,
|
415
|
+
# "force_prefix": false,
|
416
|
+
# "force_prefix_search": false
|
417
|
+
# },
|
418
|
+
# {
|
419
|
+
# "value": "ld",
|
420
|
+
# "position": 9,
|
421
|
+
# "force_prefix": false,
|
422
|
+
# "force_prefix_search": false
|
423
|
+
# },
|
424
|
+
# {
|
425
|
+
# "value": "d",
|
426
|
+
# "position": 10,
|
427
|
+
# "force_prefix": false,
|
428
|
+
# "force_prefix_search": false
|
429
|
+
# }
|
430
|
+
# ]
|
431
|
+
# ]
|
432
|
+
</pre></div>
|
433
|
+
</div>
|
434
|
+
<ul class="simple">
|
435
|
+
<li><p>If normalizer is used.</p></li>
|
436
|
+
</ul>
|
437
|
+
<p>Execution example:</p>
|
438
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer TokenNgram --string "Hello World" --normalizer NormalizerAuto
|
439
|
+
# [
|
440
|
+
# [
|
441
|
+
# 0,
|
442
|
+
# 1556063752.798628,
|
443
|
+
# 0.0001776218414306641
|
444
|
+
# ],
|
445
|
+
# [
|
446
|
+
# {
|
447
|
+
# "value": "hello",
|
448
|
+
# "position": 0,
|
449
|
+
# "force_prefix": false,
|
450
|
+
# "force_prefix_search": false
|
451
|
+
# },
|
452
|
+
# {
|
453
|
+
# "value": "world",
|
454
|
+
# "position": 1,
|
455
|
+
# "force_prefix": false,
|
456
|
+
# "force_prefix_search": false
|
457
|
+
# }
|
458
|
+
# ]
|
459
|
+
# ]
|
460
|
+
</pre></div>
|
461
|
+
</div>
|
462
|
+
</div>
|
463
|
+
<div class="section" id="advanced-usage">
|
464
|
+
<h2>7.8.13.5. Advanced usage<a class="headerlink" href="#advanced-usage" title="Permalink to this headline">¶</a></h2>
|
465
|
+
<p>We can specify multiple options for <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code>.</p>
|
466
|
+
<p>For example, we can deal with variantsas as phone number by using <code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code> and <code class="docutils literal notranslate"><span class="pre">loose_blank</span></code> as below.</p>
|
467
|
+
<p>We can search <code class="docutils literal notranslate"><span class="pre">0123(45)6789</span></code>, <code class="docutils literal notranslate"><span class="pre">0123-45-6789</span></code> and, <code class="docutils literal notranslate"><span class="pre">0123</span> <span class="pre">45</span> <span class="pre">6789</span></code> by using <code class="docutils literal notranslate"><span class="pre">0123456789</span></code> as below example.</p>
|
468
|
+
<p>Execution example:</p>
|
469
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("loose_symbol", true, "loose_blank", true)' --string "0123(45)6789" --normalizer NormalizerAuto
|
470
|
+
# [
|
471
|
+
# [
|
472
|
+
# 0,
|
473
|
+
# 1557187317.825164,
|
474
|
+
# 0.0003116130828857422
|
475
|
+
# ],
|
476
|
+
# [
|
477
|
+
# {
|
478
|
+
# "value": "0123",
|
479
|
+
# "position": 0,
|
480
|
+
# "force_prefix": false,
|
481
|
+
# "force_prefix_search": false
|
482
|
+
# },
|
483
|
+
# {
|
484
|
+
# "value": "(",
|
485
|
+
# "position": 1,
|
486
|
+
# "force_prefix": false,
|
487
|
+
# "force_prefix_search": false
|
488
|
+
# },
|
489
|
+
# {
|
490
|
+
# "value": "45",
|
491
|
+
# "position": 2,
|
492
|
+
# "force_prefix": false,
|
493
|
+
# "force_prefix_search": false
|
494
|
+
# },
|
495
|
+
# {
|
496
|
+
# "value": ")",
|
497
|
+
# "position": 3,
|
498
|
+
# "force_prefix": false,
|
499
|
+
# "force_prefix_search": false
|
500
|
+
# },
|
501
|
+
# {
|
502
|
+
# "value": "6789",
|
503
|
+
# "position": 4,
|
504
|
+
# "force_prefix": false,
|
505
|
+
# "force_prefix_search": false
|
506
|
+
# },
|
507
|
+
# {
|
508
|
+
# "value": "",
|
509
|
+
# "position": 5,
|
510
|
+
# "force_prefix": false,
|
511
|
+
# "force_prefix_search": false
|
512
|
+
# },
|
513
|
+
# {
|
514
|
+
# "value": "0123456789",
|
515
|
+
# "position": 6,
|
516
|
+
# "force_prefix": false,
|
517
|
+
# "force_prefix_search": false
|
518
|
+
# }
|
519
|
+
# ]
|
520
|
+
# ]
|
521
|
+
tokenize --tokenizer 'TokenNgram("loose_symbol", true, "loose_blank", true)' --string "0123-45-6789" --normalizer NormalizerAuto
|
522
|
+
# [
|
523
|
+
# [
|
524
|
+
# 0,
|
525
|
+
# 1557187366.441741,
|
526
|
+
# 0.0002820491790771484
|
527
|
+
# ],
|
528
|
+
# [
|
529
|
+
# {
|
530
|
+
# "value": "0123",
|
531
|
+
# "position": 0,
|
532
|
+
# "force_prefix": false,
|
533
|
+
# "force_prefix_search": false
|
534
|
+
# },
|
535
|
+
# {
|
536
|
+
# "value": "-",
|
537
|
+
# "position": 1,
|
538
|
+
# "force_prefix": false,
|
539
|
+
# "force_prefix_search": false
|
540
|
+
# },
|
541
|
+
# {
|
542
|
+
# "value": "45",
|
543
|
+
# "position": 2,
|
544
|
+
# "force_prefix": false,
|
545
|
+
# "force_prefix_search": false
|
546
|
+
# },
|
547
|
+
# {
|
548
|
+
# "value": "-",
|
549
|
+
# "position": 3,
|
550
|
+
# "force_prefix": false,
|
551
|
+
# "force_prefix_search": false
|
552
|
+
# },
|
553
|
+
# {
|
554
|
+
# "value": "6789",
|
555
|
+
# "position": 4,
|
556
|
+
# "force_prefix": false,
|
557
|
+
# "force_prefix_search": false
|
558
|
+
# },
|
559
|
+
# {
|
560
|
+
# "value": "",
|
561
|
+
# "position": 5,
|
562
|
+
# "force_prefix": false,
|
563
|
+
# "force_prefix_search": false
|
564
|
+
# },
|
565
|
+
# {
|
566
|
+
# "value": "0123456789",
|
567
|
+
# "position": 6,
|
568
|
+
# "force_prefix": false,
|
569
|
+
# "force_prefix_search": false
|
570
|
+
# }
|
571
|
+
# ]
|
572
|
+
# ]
|
573
|
+
tokenize --tokenizer 'TokenNgram("loose_symbol", true, "loose_blank", true)' --string "0123 45 6789" --normalizer NormalizerAuto
|
574
|
+
# [
|
575
|
+
# [
|
576
|
+
# 0,
|
577
|
+
# 1557187404.034283,
|
578
|
+
# 0.0003006458282470703
|
579
|
+
# ],
|
580
|
+
# [
|
581
|
+
# {
|
582
|
+
# "value": "0123",
|
583
|
+
# "position": 0,
|
584
|
+
# "force_prefix": false,
|
585
|
+
# "force_prefix_search": false
|
586
|
+
# },
|
587
|
+
# {
|
588
|
+
# "value": "45",
|
589
|
+
# "position": 1,
|
590
|
+
# "force_prefix": false,
|
591
|
+
# "force_prefix_search": false
|
592
|
+
# },
|
593
|
+
# {
|
594
|
+
# "value": "6789",
|
595
|
+
# "position": 2,
|
596
|
+
# "force_prefix": false,
|
597
|
+
# "force_prefix_search": false
|
598
|
+
# },
|
599
|
+
# {
|
600
|
+
# "value": "",
|
601
|
+
# "position": 3,
|
602
|
+
# "force_prefix": false,
|
603
|
+
# "force_prefix_search": false
|
604
|
+
# },
|
605
|
+
# {
|
606
|
+
# "value": "0123456789",
|
607
|
+
# "position": 4,
|
608
|
+
# "force_prefix": false,
|
609
|
+
# "force_prefix_search": false
|
610
|
+
# }
|
611
|
+
# ]
|
612
|
+
# ]
|
613
|
+
</pre></div>
|
614
|
+
</div>
|
615
|
+
</div>
|
616
|
+
<div class="section" id="parameters">
|
617
|
+
<h2>7.8.13.6. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
|
618
|
+
<div class="section" id="optional-parameter">
|
619
|
+
<h3>7.8.13.6.1. Optional parameter<a class="headerlink" href="#optional-parameter" title="Permalink to this headline">¶</a></h3>
|
620
|
+
<p>There are eight optional parameters.</p>
|
621
|
+
<div class="section" id="n">
|
622
|
+
<span id="token-ngram-n"></span><h4>7.8.13.6.1.1. <code class="docutils literal notranslate"><span class="pre">n</span></code><a class="headerlink" href="#n" title="Permalink to this headline">¶</a></h4>
|
623
|
+
<p>This option shows <code class="docutils literal notranslate"><span class="pre">N</span></code> of Ngram. For example, <code class="docutils literal notranslate"><span class="pre">n</span></code> is <code class="docutils literal notranslate"><span class="pre">3</span></code> for trigram.</p>
|
624
|
+
</div>
|
625
|
+
<div class="section" id="loose-symbol">
|
626
|
+
<span id="token-ngram-loose-symbol"></span><h4>7.8.13.6.1.2. <code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code><a class="headerlink" href="#loose-symbol" title="Permalink to this headline">¶</a></h4>
|
627
|
+
<p>Tokenize keywords including symbols, to be searched by both queries with/without symbols.
|
628
|
+
For example, a keyword <code class="docutils literal notranslate"><span class="pre">090-1111-2222</span></code> will be found by any of <code class="docutils literal notranslate"><span class="pre">09011112222</span></code>, <code class="docutils literal notranslate"><span class="pre">090</span></code>, <code class="docutils literal notranslate"><span class="pre">1111</span></code>, <code class="docutils literal notranslate"><span class="pre">2222</span></code> and <code class="docutils literal notranslate"><span class="pre">090-1111-2222</span></code>.</p>
|
629
|
+
</div>
|
630
|
+
<div class="section" id="loose-blank">
|
631
|
+
<span id="token-ngram-loose-blank"></span><h4>7.8.13.6.1.3. <code class="docutils literal notranslate"><span class="pre">loose_blank</span></code><a class="headerlink" href="#loose-blank" title="Permalink to this headline">¶</a></h4>
|
632
|
+
<p>Tokenize keywords including blanks, to be searched by both queries with/without blanks.
|
633
|
+
For example, a keyword <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> will be found by any of <code class="docutils literal notranslate"><span class="pre">09011112222</span></code>, <code class="docutils literal notranslate"><span class="pre">090</span></code>, <code class="docutils literal notranslate"><span class="pre">1111</span></code>, <code class="docutils literal notranslate"><span class="pre">2222</span></code> and <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code>.</p>
|
634
|
+
</div>
|
635
|
+
<div class="section" id="remove-blank">
|
636
|
+
<span id="token-ngram-remove-blank"></span><h4>7.8.13.6.1.4. <code class="docutils literal notranslate"><span class="pre">remove_blank</span></code><a class="headerlink" href="#remove-blank" title="Permalink to this headline">¶</a></h4>
|
637
|
+
<p>Tokenize keywords including blanks, to be searched by queries without blanks.
|
638
|
+
For example, a keyword <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> will be found by any of <code class="docutils literal notranslate"><span class="pre">09011112222</span></code>, <code class="docutils literal notranslate"><span class="pre">090</span></code>, <code class="docutils literal notranslate"><span class="pre">1111</span></code> or <code class="docutils literal notranslate"><span class="pre">2222</span></code>.</p>
|
639
|
+
<p>Note that the keyword won’t be found by a query including blanks like <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code>.</p>
|
640
|
+
</div>
|
641
|
+
<div class="section" id="report-source-location">
|
642
|
+
<span id="token-ngram-report-source-location"></span><h4>7.8.13.6.1.5. <code class="docutils literal notranslate"><span class="pre">report_source_location</span></code><a class="headerlink" href="#report-source-location" title="Permalink to this headline">¶</a></h4>
|
643
|
+
<p>This option tells us a location of token of highlight target when we highlight token by <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code>.</p>
|
644
|
+
<p>We only use this option when we want to highlight token by <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code>.</p>
|
645
|
+
<p>When Groonga tokenize texts that target highlight, always used <code class="docutils literal notranslate"><span class="pre">NormalizerAuto</span></code> to normalizer until now.
|
646
|
+
Therefore, if we use <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> to normalizer, sometimes it
|
647
|
+
can’t find the position of the highlight as below.</p>
|
648
|
+
<p>Execution example:</p>
|
649
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Entries TABLE_NO_KEY
|
650
|
+
#[[0,0.0,0.0],true]
|
651
|
+
column_create Entries body COLUMN_SCALAR ShortText
|
652
|
+
#[[0,0.0,0.0],true]
|
653
|
+
table_create Terms TABLE_PAT_KEY ShortText --normalizer 'NormalizerNFKC100'
|
654
|
+
#[[0,0.0,0.0],true]
|
655
|
+
column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body
|
656
|
+
#[[0,0.0,0.0],true]
|
657
|
+
load --table Entries
|
658
|
+
[
|
659
|
+
{"body": "ア㌕Az"}
|
660
|
+
]
|
661
|
+
#[[0,0.0,0.0],1]
|
662
|
+
select Entries --match_columns body --query 'グラム' --output_columns 'highlight_html(body, Terms)'
|
663
|
+
#[
|
664
|
+
# [
|
665
|
+
# 0,
|
666
|
+
# 1558915202.24493,
|
667
|
+
# 0.0003714561462402344
|
668
|
+
# ],
|
669
|
+
# [[[0],[["highlight_html",null]]]]
|
670
|
+
#]
|
671
|
+
</pre></div>
|
672
|
+
</div>
|
673
|
+
<p>Because we use different normalizer to normalize token.</p>
|
674
|
+
<p>This option is used to reduce the shift of the position of the highlight as below.</p>
|
675
|
+
<p>Execution example:</p>
|
676
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Entries TABLE_NO_KEY
|
677
|
+
#[[0,0.0,0.0],true]
|
678
|
+
column_create Entries body COLUMN_SCALAR ShortText
|
679
|
+
#[[0,0.0,0.0],true]
|
680
|
+
table_create Terms TABLE_PAT_KEY ShortText --default_tokenizer 'TokenNgram("report_source_location", true)' --normalizer 'NormalizerNFKC100'
|
681
|
+
#[[0,0.0,0.0],true]
|
682
|
+
column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body
|
683
|
+
#[[0,0.0,0.0],true]
|
684
|
+
load --table Entries
|
685
|
+
[
|
686
|
+
{"body": "ア㌕Az"}
|
687
|
+
]
|
688
|
+
#[[0,0.0,0.0],1]
|
689
|
+
select Entries --match_columns body --query 'グラム' --output_columns 'highlight_html(body, Terms)'
|
690
|
+
#[
|
691
|
+
# [
|
692
|
+
# 0,
|
693
|
+
# 0.0,
|
694
|
+
# 0.0
|
695
|
+
# ],
|
696
|
+
# [
|
697
|
+
# [
|
698
|
+
# [
|
699
|
+
# 1
|
700
|
+
# ],
|
701
|
+
# [
|
702
|
+
# [
|
703
|
+
# "highlight_html",
|
704
|
+
# null
|
705
|
+
# ]
|
706
|
+
# ],
|
707
|
+
# [
|
708
|
+
# "ア<span class=\"keyword\">㌕</span>Az"
|
709
|
+
# ]
|
710
|
+
# ]
|
711
|
+
# ]
|
712
|
+
#]
|
713
|
+
</pre></div>
|
714
|
+
</div>
|
715
|
+
</div>
|
716
|
+
<div class="section" id="unify-alphabet">
|
717
|
+
<span id="token-ngram-unify-alphabet"></span><h4>7.8.13.6.1.6. <code class="docutils literal notranslate"><span class="pre">unify_alphabet</span></code><a class="headerlink" href="#unify-alphabet" title="Permalink to this headline">¶</a></h4>
|
718
|
+
<p>If we set false, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> uses bigram tokenize method for ASCII character.</p>
|
719
|
+
<p>Default value of this option is true.</p>
|
720
|
+
<p>Execution example:</p>
|
721
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_alphabet", false)' --string "abcd ABCD" --normaluzer NormalizeAuto
|
722
|
+
#[
|
723
|
+
# [
|
724
|
+
# 0,
|
725
|
+
# 1558570398.145967,
|
726
|
+
# 0.0009109973907470703
|
727
|
+
# ],
|
728
|
+
# [
|
729
|
+
# {
|
730
|
+
# "value": "ab",
|
731
|
+
# "position": 0,
|
732
|
+
# "force_prefix": false,
|
733
|
+
# "force_prefix_search": false
|
734
|
+
# },
|
735
|
+
# {
|
736
|
+
# "value": "bc",
|
737
|
+
# "position": 1,
|
738
|
+
# "force_prefix": false,
|
739
|
+
# "force_prefix_search": false
|
740
|
+
# },
|
741
|
+
# {
|
742
|
+
# "value": "cd",
|
743
|
+
# "position": 2,
|
744
|
+
# "force_prefix": false,
|
745
|
+
# "force_prefix_search": false
|
746
|
+
# },
|
747
|
+
# {
|
748
|
+
# "value": "d ",
|
749
|
+
# "position": 3,
|
750
|
+
# "force_prefix": false,
|
751
|
+
# "force_prefix_search": false
|
752
|
+
# },
|
753
|
+
# {
|
754
|
+
# "value": " A",
|
755
|
+
# "position": 4,
|
756
|
+
# "force_prefix": false,
|
757
|
+
# "force_prefix_search": false
|
758
|
+
# },
|
759
|
+
# {
|
760
|
+
# "value": "AB",
|
761
|
+
# "position": 5,
|
762
|
+
# "force_prefix": false,
|
763
|
+
# "force_prefix_search": false
|
764
|
+
# },
|
765
|
+
# {
|
766
|
+
# "value": "BC",
|
767
|
+
# "position": 6,
|
768
|
+
# "force_prefix": false,
|
769
|
+
# "force_prefix_search": false
|
770
|
+
# },
|
771
|
+
# {
|
772
|
+
# "value": "CD",
|
773
|
+
# "position": 7,
|
774
|
+
# "force_prefix": false,
|
775
|
+
# "force_prefix_search": false
|
776
|
+
# },
|
777
|
+
# {
|
778
|
+
# "value": "D",
|
779
|
+
# "position": 8,
|
780
|
+
# "force_prefix": false,
|
781
|
+
# "force_prefix_search": false
|
782
|
+
# }
|
783
|
+
# ]
|
784
|
+
#]
|
785
|
+
</pre></div>
|
786
|
+
</div>
|
787
|
+
</div>
|
788
|
+
<div class="section" id="unify-symbol">
|
789
|
+
<span id="token-ngram-unify-symbol"></span><h4>7.8.13.6.1.7. <code class="docutils literal notranslate"><span class="pre">unify_symbol</span></code><a class="headerlink" href="#unify-symbol" title="Permalink to this headline">¶</a></h4>
|
790
|
+
<p>If we set false, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> uses bigram tokenize method for symbols.
|
791
|
+
<code class="docutils literal notranslate"><span class="pre">TokenNgram("unify_symbol",</span> <span class="pre">false)</span></code> is same behavior of <code class="docutils literal notranslate"><span class="pre">TokenBigramSplitSymbol</span></code>.</p>
|
792
|
+
<p>Default value of this option is true.</p>
|
793
|
+
<p>Execution example:</p>
|
794
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_symbol", false)' --string "___---" --normalizer NormalizerAuto
|
795
|
+
#[
|
796
|
+
# [
|
797
|
+
# 0,
|
798
|
+
# 1558913369.875591,
|
799
|
+
# 0.0008268356323242188
|
800
|
+
# ],
|
801
|
+
# [
|
802
|
+
# {
|
803
|
+
# "value": "__",
|
804
|
+
# "position": 0,
|
805
|
+
# "force_prefix": false,
|
806
|
+
# "force_prefix_search": false
|
807
|
+
# },
|
808
|
+
# {
|
809
|
+
# "value": "__",
|
810
|
+
# "position": 1,
|
811
|
+
# "force_prefix": false,
|
812
|
+
# "force_prefix_search": false
|
813
|
+
# },
|
814
|
+
# {
|
815
|
+
# "value": "_-",
|
816
|
+
# "position": 2,
|
817
|
+
# "force_prefix": false,
|
818
|
+
# "force_prefix_search": false
|
819
|
+
# },
|
820
|
+
# {
|
821
|
+
# "value": "--",
|
822
|
+
# "position": 3,
|
823
|
+
# "force_prefix": false,
|
824
|
+
# "force_prefix_search": false
|
825
|
+
# },
|
826
|
+
# {
|
827
|
+
# "value": "--",
|
828
|
+
# "position": 4,
|
829
|
+
# "force_prefix": false,
|
830
|
+
# "force_prefix_search": false
|
831
|
+
# },
|
832
|
+
# {
|
833
|
+
# "value": "-",
|
834
|
+
# "position": 5,
|
835
|
+
# "force_prefix": false,
|
836
|
+
# "force_prefix_search": false
|
837
|
+
# }
|
838
|
+
# ]
|
839
|
+
#]
|
840
|
+
</pre></div>
|
841
|
+
</div>
|
842
|
+
</div>
|
843
|
+
<div class="section" id="unify-digit">
|
844
|
+
<span id="token-ngram-unify-digit"></span><h4>7.8.13.6.1.8. <code class="docutils literal notranslate"><span class="pre">unify_digit</span></code><a class="headerlink" href="#unify-digit" title="Permalink to this headline">¶</a></h4>
|
845
|
+
<p>If we set false, <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> uses bigram tokenize method for digits.</p>
|
846
|
+
<p>Default value of this option is true.</p>
|
847
|
+
<p>Execution example:</p>
|
848
|
+
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_digit", false)' --string "012345 6789" --normalizer NormalizerAuto
|
849
|
+
#[
|
850
|
+
# [
|
851
|
+
# 0,
|
852
|
+
# 1558914023.967506,
|
853
|
+
# 0.001635313034057617
|
854
|
+
# ],
|
855
|
+
# [
|
856
|
+
# {
|
857
|
+
# "value": "01",
|
858
|
+
# "position": 0,
|
859
|
+
# "force_prefix": false,
|
860
|
+
# "force_prefix_search": false
|
861
|
+
# },
|
862
|
+
# {
|
863
|
+
# "value": "12",
|
864
|
+
# "position": 1,
|
865
|
+
# "force_prefix": false,
|
866
|
+
# "force_prefix_search": false
|
867
|
+
# },
|
868
|
+
# {
|
869
|
+
# "value": "23",
|
870
|
+
# "position": 2,
|
871
|
+
# "force_prefix": false,
|
872
|
+
# "force_prefix_search": false
|
873
|
+
# },
|
874
|
+
# {
|
875
|
+
# "value": "34",
|
876
|
+
# "position": 3,
|
877
|
+
# "force_prefix": false,
|
878
|
+
# "force_prefix_search": false
|
879
|
+
# },
|
880
|
+
# {
|
881
|
+
# "value": "45",
|
882
|
+
# "position": 4,
|
883
|
+
# "force_prefix": false,
|
884
|
+
# "force_prefix_search": false
|
885
|
+
# },
|
886
|
+
# {
|
887
|
+
# "value": "5",
|
888
|
+
# "position": 5,
|
889
|
+
# "force_prefix": false,
|
890
|
+
# "force_prefix_search": false
|
891
|
+
# },
|
892
|
+
# {
|
893
|
+
# "value": "67",
|
894
|
+
# "position": 6,
|
895
|
+
# "force_prefix": false,
|
896
|
+
# "force_prefix_search": false
|
897
|
+
# },
|
898
|
+
# {
|
899
|
+
# "value": "78",
|
900
|
+
# "position": 7,
|
901
|
+
# "force_prefix": false,
|
902
|
+
# "force_prefix_search": false
|
903
|
+
# },
|
904
|
+
# {
|
905
|
+
# "value": "89",
|
906
|
+
# "position": 8,
|
907
|
+
# "force_prefix": false,
|
908
|
+
# "force_prefix_search": false
|
909
|
+
# },
|
910
|
+
# {
|
911
|
+
# "value": "9",
|
912
|
+
# "position": 9,
|
913
|
+
# "force_prefix": false,
|
914
|
+
# "force_prefix_search": false
|
915
|
+
# }
|
916
|
+
# ]
|
917
|
+
#]
|
918
|
+
</pre></div>
|
919
|
+
</div>
|
920
|
+
</div>
|
921
|
+
</div>
|
922
|
+
</div>
|
923
|
+
<div class="section" id="see-also">
|
924
|
+
<h2>7.8.13.7. See also<a class="headerlink" href="#see-also" title="Permalink to this headline">¶</a></h2>
|
925
|
+
<ul class="simple">
|
926
|
+
<li><p><a class="reference internal" href="../commands/tokenize.html"><span class="doc">tokenize</span></a></p></li>
|
927
|
+
</ul>
|
928
|
+
</div>
|
929
|
+
</div>
|
930
|
+
|
931
|
+
|
932
|
+
</div>
|
933
|
+
</div>
|
934
|
+
</div>
|
935
|
+
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
936
|
+
<div class="sphinxsidebarwrapper">
|
937
|
+
<h3><a href="../../index.html">Table of Contents</a></h3>
|
938
|
+
<ul>
|
939
|
+
<li><a class="reference internal" href="#">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code></a><ul>
|
940
|
+
<li><a class="reference internal" href="#summary">7.8.13.1. Summary</a></li>
|
941
|
+
<li><a class="reference internal" href="#syntax">7.8.13.2. Syntax</a></li>
|
942
|
+
<li><a class="reference internal" href="#usage">7.8.13.3. Usage</a></li>
|
943
|
+
<li><a class="reference internal" href="#simple-usage">7.8.13.4. Simple usage</a></li>
|
944
|
+
<li><a class="reference internal" href="#advanced-usage">7.8.13.5. Advanced usage</a></li>
|
945
|
+
<li><a class="reference internal" href="#parameters">7.8.13.6. Parameters</a><ul>
|
946
|
+
<li><a class="reference internal" href="#optional-parameter">7.8.13.6.1. Optional parameter</a><ul>
|
947
|
+
<li><a class="reference internal" href="#n">7.8.13.6.1.1. <code class="docutils literal notranslate"><span class="pre">n</span></code></a></li>
|
948
|
+
<li><a class="reference internal" href="#loose-symbol">7.8.13.6.1.2. <code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code></a></li>
|
949
|
+
<li><a class="reference internal" href="#loose-blank">7.8.13.6.1.3. <code class="docutils literal notranslate"><span class="pre">loose_blank</span></code></a></li>
|
950
|
+
<li><a class="reference internal" href="#remove-blank">7.8.13.6.1.4. <code class="docutils literal notranslate"><span class="pre">remove_blank</span></code></a></li>
|
951
|
+
<li><a class="reference internal" href="#report-source-location">7.8.13.6.1.5. <code class="docutils literal notranslate"><span class="pre">report_source_location</span></code></a></li>
|
952
|
+
<li><a class="reference internal" href="#unify-alphabet">7.8.13.6.1.6. <code class="docutils literal notranslate"><span class="pre">unify_alphabet</span></code></a></li>
|
953
|
+
<li><a class="reference internal" href="#unify-symbol">7.8.13.6.1.7. <code class="docutils literal notranslate"><span class="pre">unify_symbol</span></code></a></li>
|
954
|
+
<li><a class="reference internal" href="#unify-digit">7.8.13.6.1.8. <code class="docutils literal notranslate"><span class="pre">unify_digit</span></code></a></li>
|
955
|
+
</ul>
|
956
|
+
</li>
|
957
|
+
</ul>
|
958
|
+
</li>
|
959
|
+
<li><a class="reference internal" href="#see-also">7.8.13.7. See also</a></li>
|
960
|
+
</ul>
|
961
|
+
</li>
|
962
|
+
</ul>
|
963
|
+
|
964
|
+
<h4>Previous topic</h4>
|
965
|
+
<p class="topless"><a href="token_mecab.html"
|
966
|
+
title="previous chapter">7.8.12. <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code></a></p>
|
967
|
+
<h4>Next topic</h4>
|
968
|
+
<p class="topless"><a href="token_pattern.html"
|
969
|
+
title="next chapter">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code></a></p>
|
970
|
+
<div id="searchbox" style="display: none" role="search">
|
971
|
+
<h3>Quick search</h3>
|
972
|
+
<div class="searchformwrapper">
|
973
|
+
<form class="search" action="../../search.html" method="get">
|
974
|
+
<input type="text" name="q" />
|
975
|
+
<input type="submit" value="Go" />
|
976
|
+
</form>
|
977
|
+
</div>
|
978
|
+
</div>
|
979
|
+
<script type="text/javascript">$('#searchbox').show(0);</script>
|
980
|
+
</div>
|
981
|
+
</div>
|
982
|
+
<div class="clearer"></div>
|
983
|
+
</div>
|
984
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
985
|
+
<h3>Navigation</h3>
|
986
|
+
<ul>
|
987
|
+
<li class="right" style="margin-right: 10px">
|
988
|
+
<a href="../../genindex.html" title="General Index"
|
989
|
+
>index</a></li>
|
990
|
+
<li class="right" >
|
991
|
+
<a href="token_pattern.html" title="7.8.14. TokenPattern"
|
992
|
+
>next</a> |</li>
|
993
|
+
<li class="right" >
|
994
|
+
<a href="token_mecab.html" title="7.8.12. TokenMecab"
|
995
|
+
>previous</a> |</li>
|
996
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6 documentation</a> »</li>
|
997
|
+
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
998
|
+
<li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. Tokenizers</a> »</li>
|
999
|
+
</ul>
|
1000
|
+
</div>
|
1001
|
+
<div class="footer" role="contentinfo">
|
1002
|
+
© Copyright 2009-2019, Brazil, Inc.
|
1003
|
+
</div>
|
1004
|
+
</body>
|
1005
|
+
</html>
|