rroonga 9.0.3-x86-mingw32 → 9.0.7-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/doc/text/news.md +30 -0
 - data/ext/groonga/rb-grn-context.c +27 -0
 - data/ext/groonga/rb-grn-flushable.c +7 -0
 - data/ext/groonga/rb-grn-index-column.c +28 -0
 - data/ext/groonga/rb-grn-index-cursor.c +19 -0
 - data/ext/groonga/rb-grn-logger.c +17 -3
 - data/ext/groonga/rb-grn-object.c +236 -22
 - data/ext/groonga/rb-grn-table.c +68 -42
 - data/ext/groonga/rb-grn.h +1 -1
 - data/lib/2.3/groonga.so +0 -0
 - data/lib/2.4/groonga.so +0 -0
 - data/lib/2.5/groonga.so +0 -0
 - data/lib/2.6/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +3 -0
 - data/lib/groonga/record.rb +2 -2
 - data/test/groonga-test-utils.rb +28 -5
 - data/test/run-test.rb +0 -2
 - data/test/test-accessor.rb +63 -7
 - data/test/test-context.rb +25 -0
 - data/test/test-exception.rb +5 -0
 - data/test/test-flushable.rb +51 -6
 - data/test/test-index-column.rb +67 -6
 - data/test/test-index-cursor.rb +26 -0
 - data/test/test-logger.rb +56 -11
 - data/test/test-plugin.rb +1 -0
 - data/test/test-query-logger.rb +4 -3
 - data/test/test-record.rb +2 -1
 - data/test/test-remote.rb +40 -10
 - data/test/test-schema-dumper.rb +13 -0
 - data/test/test-table.rb +21 -1
 - data/test/test-variable.rb +23 -7
 - data/vendor/local/bin/generate-pdb.bat +21 -21
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga-suggest-create-dataset.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-2.dll +0 -0
 - data/vendor/local/bin/libmsgpackc.dll +0 -0
 - data/vendor/local/bin/libonigmo-6.dll +0 -0
 - data/vendor/local/bin/libpcre-1.dll +0 -0
 - data/vendor/local/bin/libpcrecpp-0.dll +0 -0
 - data/vendor/local/bin/libpcreposix-0.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat.exe +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/pcregrep.exe +0 -0
 - data/vendor/local/bin/pcretest.exe +0 -0
 - data/vendor/local/bin/unlz4.exe +0 -0
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/cmake/RapidJSONConfig.cmake +3 -0
 - data/vendor/local/cmake/RapidJSONConfigVersion.cmake +10 -0
 - data/vendor/local/include/groonga/groonga/expr.h +16 -0
 - data/vendor/local/include/groonga/groonga/obj.h +8 -0
 - data/vendor/local/include/groonga/groonga/output.h +5 -0
 - data/vendor/local/include/groonga/groonga/version.h +2 -2
 - data/vendor/local/include/rapidjson/allocators.h +271 -0
 - data/vendor/local/include/rapidjson/document.h +2575 -0
 - data/vendor/local/include/rapidjson/encodedstream.h +299 -0
 - data/vendor/local/include/rapidjson/encodings.h +716 -0
 - data/vendor/local/include/rapidjson/error/en.h +74 -0
 - data/vendor/local/include/rapidjson/error/error.h +155 -0
 - data/vendor/local/include/rapidjson/filereadstream.h +99 -0
 - data/vendor/local/include/rapidjson/filewritestream.h +104 -0
 - data/vendor/local/include/rapidjson/fwd.h +151 -0
 - data/vendor/local/include/rapidjson/internal/biginteger.h +290 -0
 - data/vendor/local/include/rapidjson/internal/diyfp.h +258 -0
 - data/vendor/local/include/rapidjson/internal/dtoa.h +245 -0
 - data/vendor/local/include/rapidjson/internal/ieee754.h +78 -0
 - data/vendor/local/include/rapidjson/internal/itoa.h +304 -0
 - data/vendor/local/include/rapidjson/internal/meta.h +181 -0
 - data/vendor/local/include/rapidjson/internal/pow10.h +55 -0
 - data/vendor/local/include/rapidjson/internal/regex.h +701 -0
 - data/vendor/local/include/rapidjson/internal/stack.h +230 -0
 - data/vendor/local/include/rapidjson/internal/strfunc.h +55 -0
 - data/vendor/local/include/rapidjson/internal/strtod.h +269 -0
 - data/vendor/local/include/rapidjson/internal/swap.h +46 -0
 - data/vendor/local/include/rapidjson/istreamwrapper.h +115 -0
 - data/vendor/local/include/rapidjson/memorybuffer.h +70 -0
 - data/vendor/local/include/rapidjson/memorystream.h +71 -0
 - data/vendor/local/include/rapidjson/msinttypes/inttypes.h +316 -0
 - data/vendor/local/include/rapidjson/msinttypes/stdint.h +300 -0
 - data/vendor/local/include/rapidjson/ostreamwrapper.h +81 -0
 - data/vendor/local/include/rapidjson/pointer.h +1358 -0
 - data/vendor/local/include/rapidjson/prettywriter.h +255 -0
 - data/vendor/local/include/rapidjson/rapidjson.h +615 -0
 - data/vendor/local/include/rapidjson/reader.h +1879 -0
 - data/vendor/local/include/rapidjson/schema.h +2006 -0
 - data/vendor/local/include/rapidjson/stream.h +179 -0
 - data/vendor/local/include/rapidjson/stringbuffer.h +117 -0
 - data/vendor/local/include/rapidjson/writer.h +610 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/index_column.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/math.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/math.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/number.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/number.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/string.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/time.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/time.la +1 -1
 - data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.la +1 -1
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.a +0 -0
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/normalizers/mysql.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +1 -1
 - data/vendor/local/lib/groonga/plugins/sharding/dynamic_columns.rb +44 -18
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +9 -8
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +48 -15
 - data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +84 -58
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +1 -1
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.la +1 -1
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +1 -1
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/command.rb +3 -4
 - data/vendor/local/lib/groonga/scripts/ruby/command_line/grndb.rb +267 -77
 - data/vendor/local/lib/groonga/scripts/ruby/command_line_parser.rb +96 -0
 - data/vendor/local/lib/groonga/scripts/ruby/expression_rewriters/optimizer.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +30 -7
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +5 -0
 - data/vendor/local/lib/groonga/scripts/ruby/loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger/flags.rb +70 -0
 - data/vendor/local/lib/groonga/scripts/ruby/query_loggable.rb +8 -0
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +1 -1
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/time.rb +9 -0
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +1 -1
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.8.2 +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libonigmo.a +0 -0
 - data/vendor/local/lib/libonigmo.dll.a +0 -0
 - data/vendor/local/lib/libonigmo.la +1 -1
 - data/vendor/local/lib/libpcre.dll.a +0 -0
 - data/vendor/local/lib/libpcrecpp.dll.a +0 -0
 - data/vendor/local/lib/libpcreposix.dll.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
 - data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
 - data/vendor/local/share/doc/RapidJSON/examples/CMakeLists.txt +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/capitalize/capitalize.cpp +67 -0
 - data/vendor/local/share/doc/RapidJSON/examples/condense/condense.cpp +32 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkey/filterkey.cpp +135 -0
 - data/vendor/local/share/doc/RapidJSON/examples/filterkeydom/filterkeydom.cpp +170 -0
 - data/vendor/local/share/doc/RapidJSON/examples/jsonx/jsonx.cpp +207 -0
 - data/vendor/local/share/doc/RapidJSON/examples/messagereader/messagereader.cpp +105 -0
 - data/vendor/local/share/doc/RapidJSON/examples/parsebyparts/parsebyparts.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/pretty/pretty.cpp +30 -0
 - data/vendor/local/share/doc/RapidJSON/examples/prettyauto/prettyauto.cpp +56 -0
 - data/vendor/local/share/doc/RapidJSON/examples/schemavalidator/schemavalidator.cpp +72 -0
 - data/vendor/local/share/doc/RapidJSON/examples/serialize/serialize.cpp +173 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simpledom/simpledom.cpp +29 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplereader/simplereader.cpp +42 -0
 - data/vendor/local/share/doc/RapidJSON/examples/simplewriter/simplewriter.cpp +36 -0
 - data/vendor/local/share/doc/RapidJSON/examples/tutorial/tutorial.cpp +151 -0
 - data/vendor/local/share/doc/RapidJSON/readme.md +160 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +79 -8
 - data/vendor/local/share/doc/groonga/en/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news.html +498 -206
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +77 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +78 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +58 -4
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_ngram.html +1005 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_table.html +246 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +68 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/documentation_options.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/client.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/community.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/index.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/install.html +5 -4
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +69 -8
 - data/vendor/local/share/doc/groonga/ja/html/install/docker.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news.html +494 -206
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/5.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/6.x.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_inspect.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +75 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +73 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/query_expand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_copy.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +57 -4
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/cast_loose.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/fuzzy_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_records.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/math_abs.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/number_classify.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_length.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/string_substring.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_day_of_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_hour.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_minute.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_month.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_second.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_week.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/time_classify_year.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_find.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_new.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_slice.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_auto.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers/normalizer_nfkc51.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filter/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_nfkc100.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stem.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters/token_filter_stop_word.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizer/summary.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +9 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_ignore_blank_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_bigram_split_symbol_alpha_digit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_delimit_null.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_mecab.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_ngram.html +998 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_pattern.html +240 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_regexp.html +21 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_table.html +242 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_trigram.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers/token_unigram.html +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_function.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_count.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_record_number.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/reference/window_functions/window_sum.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/how_to_analyze_error_message.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +64 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +37 -4
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +3 -3
 - data/vendor/local/share/groonga/COPYING +502 -0
 - data/vendor/local/share/groonga/mruby/LEGAL +58 -54
 - data/vendor/local/share/license/mruby/AUTHORS +6 -2
 - data/vendor/local/share/license/mruby/LEGAL +1 -1
 - data/vendor/local/share/license/mruby/{MITL → LICENSE} +1 -1
 - data/vendor/local/share/license/mruby/README.md +3 -3
 - data/vendor/local/share/license/rapidjson/license.txt +57 -0
 - metadata +126 -60
 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
         
     | 
| 
       6 
6 
     | 
    
         
             
              <head>
         
     | 
| 
       7 
7 
     | 
    
         
             
                <meta charset="utf-8" />
         
     | 
| 
       8 
     | 
    
         
            -
                <title>7.8.11. TokenDelimitNull — Groonga v9.0. 
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.8.11. TokenDelimitNull — Groonga v9.0.6ドキュメント</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 
     | 
    
         | 
| 
         @@ -51,7 +51,7 @@ 
     | 
|
| 
       51 
51 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       52 
52 
     | 
    
         
             
                      <a href="token_delimit.html" title="7.8.10. TokenDelimit"
         
     | 
| 
       53 
53 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       54 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 54 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
       56 
56 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. トークナイザー</a> »</li> 
         
     | 
| 
       57 
57 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -148,7 +148,7 @@ 
     | 
|
| 
       148 
148 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       149 
149 
     | 
    
         
             
                      <a href="token_delimit.html" title="7.8.10. TokenDelimit"
         
     | 
| 
       150 
150 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       151 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 151 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
       152 
152 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
       153 
153 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. トークナイザー</a> »</li> 
         
     | 
| 
       154 
154 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -5,7 +5,7 @@ 
     | 
|
| 
       5 
5 
     | 
    
         
             
            <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
         
     | 
| 
       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ドキュメント</title>
         
     | 
| 
       9 
9 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
         
     | 
| 
       10 
10 
     | 
    
         
             
                <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
         @@ -19,7 +19,7 @@ 
     | 
|
| 
       19 
19 
     | 
    
         
             
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
       20 
20 
     | 
    
         
             
                <link rel="index" title="索引" href="../../genindex.html" />
         
     | 
| 
       21 
21 
     | 
    
         
             
                <link rel="search" title="検索" href="../../search.html" />
         
     | 
| 
       22 
     | 
    
         
            -
                <link rel="next" title="7.8.13.  
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="next" title="7.8.13. TokenNgram" href="token_ngram.html" />
         
     | 
| 
       23 
23 
     | 
    
         
             
                <link rel="prev" title="7.8.11. TokenDelimitNull" href="token_delimit_null.html" /> 
         
     | 
| 
       24 
24 
     | 
    
         
             
              </head><body>
         
     | 
| 
       25 
25 
     | 
    
         
             
            <div class="header">
         
     | 
| 
         @@ -46,12 +46,12 @@ 
     | 
|
| 
       46 
46 
     | 
    
         
             
                      <a href="../../genindex.html" title="総合索引"
         
     | 
| 
       47 
47 
     | 
    
         
             
                         accesskey="I">索引</a></li>
         
     | 
| 
       48 
48 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       49 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 49 
     | 
    
         
            +
                      <a href="token_ngram.html" title="7.8.13. TokenNgram"
         
     | 
| 
       50 
50 
     | 
    
         
             
                         accesskey="N">次へ</a> |</li>
         
     | 
| 
       51 
51 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       52 
52 
     | 
    
         
             
                      <a href="token_delimit_null.html" title="7.8.11. TokenDelimitNull"
         
     | 
| 
       53 
53 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       54 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 54 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
       55 
55 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
       56 
56 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. トークナイザー</a> »</li> 
         
     | 
| 
       57 
57 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -724,8 +724,8 @@ TokenMecab("use_reading", true) 
     | 
|
| 
       724 
724 
     | 
    
         
             
              <p class="topless"><a href="token_delimit_null.html"
         
     | 
| 
       725 
725 
     | 
    
         
             
                                    title="前の章へ">7.8.11. <code class="docutils literal notranslate"><span class="pre">TokenDelimitNull</span></code></a></p>
         
     | 
| 
       726 
726 
     | 
    
         
             
              <h4>次のトピックへ</h4>
         
     | 
| 
       727 
     | 
    
         
            -
              <p class="topless"><a href=" 
     | 
| 
       728 
     | 
    
         
            -
                                    title="次の章へ">7.8.13. <code class="docutils literal notranslate"><span class="pre"> 
     | 
| 
      
 727 
     | 
    
         
            +
              <p class="topless"><a href="token_ngram.html"
         
     | 
| 
      
 728 
     | 
    
         
            +
                                    title="次の章へ">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code></a></p>
         
     | 
| 
       729 
729 
     | 
    
         
             
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       730 
730 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       731 
731 
     | 
    
         
             
                <div class="searchformwrapper">
         
     | 
| 
         @@ -747,12 +747,12 @@ TokenMecab("use_reading", true) 
     | 
|
| 
       747 
747 
     | 
    
         
             
                      <a href="../../genindex.html" title="総合索引"
         
     | 
| 
       748 
748 
     | 
    
         
             
                         >索引</a></li>
         
     | 
| 
       749 
749 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       750 
     | 
    
         
            -
                      <a href=" 
     | 
| 
      
 750 
     | 
    
         
            +
                      <a href="token_ngram.html" title="7.8.13. TokenNgram"
         
     | 
| 
       751 
751 
     | 
    
         
             
                         >次へ</a> |</li>
         
     | 
| 
       752 
752 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       753 
753 
     | 
    
         
             
                      <a href="token_delimit_null.html" title="7.8.11. TokenDelimitNull"
         
     | 
| 
       754 
754 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       755 
     | 
    
         
            -
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0. 
     | 
| 
      
 755 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
       756 
756 
     | 
    
         
             
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
       757 
757 
     | 
    
         
             
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. トークナイザー</a> »</li> 
         
     | 
| 
       758 
758 
     | 
    
         
             
                  </ul>
         
     | 
| 
         @@ -0,0 +1,998 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 7 
     | 
    
         
            +
                <meta charset="utf-8" />
         
     | 
| 
      
 8 
     | 
    
         
            +
                <title>7.8.13. TokenNgram — Groonga v9.0.6ドキュメント</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 
     | 
    
         
            +
                <script type="text/javascript" src="../../_static/translations.js"></script>
         
     | 
| 
      
 18 
     | 
    
         
            +
                
         
     | 
| 
      
 19 
     | 
    
         
            +
                <link rel="shortcut icon" href="../../_static/favicon.ico"/>
         
     | 
| 
      
 20 
     | 
    
         
            +
                <link rel="index" title="索引" href="../../genindex.html" />
         
     | 
| 
      
 21 
     | 
    
         
            +
                <link rel="search" title="検索" href="../../search.html" />
         
     | 
| 
      
 22 
     | 
    
         
            +
                <link rel="next" title="7.8.14. TokenPattern" href="token_pattern.html" />
         
     | 
| 
      
 23 
     | 
    
         
            +
                <link rel="prev" title="7.8.12. TokenMecab" href="token_mecab.html" /> 
         
     | 
| 
      
 24 
     | 
    
         
            +
              </head><body>
         
     | 
| 
      
 25 
     | 
    
         
            +
            <div class="header">
         
     | 
| 
      
 26 
     | 
    
         
            +
              <h1 class="title">
         
     | 
| 
      
 27 
     | 
    
         
            +
                <a id="top-link" href="../../index.html">
         
     | 
| 
      
 28 
     | 
    
         
            +
                  <span class="project">groonga</span>
         
     | 
| 
      
 29 
     | 
    
         
            +
                  <span class="separator">-</span>
         
     | 
| 
      
 30 
     | 
    
         
            +
                  <span class="description">オープンソースのカラムストア機能付き全文検索エンジン</span>
         
     | 
| 
      
 31 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 32 
     | 
    
         
            +
              </h1>
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
              <div class="other-language-links">
         
     | 
| 
      
 35 
     | 
    
         
            +
                <ul>
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <li><a href="../../../../en/html/reference/tokenizers/token_ngram.html">English</a></li>
         
     | 
| 
      
 37 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 38 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 39 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 40 
     | 
    
         
            +
              
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <h3>ナビゲーション</h3>
         
     | 
| 
      
 44 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 45 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 46 
     | 
    
         
            +
                      <a href="../../genindex.html" title="総合索引"
         
     | 
| 
      
 47 
     | 
    
         
            +
                         accesskey="I">索引</a></li>
         
     | 
| 
      
 48 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 49 
     | 
    
         
            +
                      <a href="token_pattern.html" title="7.8.14. TokenPattern"
         
     | 
| 
      
 50 
     | 
    
         
            +
                         accesskey="N">次へ</a> |</li>
         
     | 
| 
      
 51 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 52 
     | 
    
         
            +
                      <a href="token_mecab.html" title="7.8.12. TokenMecab"
         
     | 
| 
      
 53 
     | 
    
         
            +
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
      
 54 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
      
 56 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" accesskey="U">7.8. トークナイザー</a> »</li> 
         
     | 
| 
      
 57 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 58 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 61 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 62 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 63 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
      
 64 
     | 
    
         
            +
                        
         
     | 
| 
      
 65 
     | 
    
         
            +
              <div class="section" id="tokenngram">
         
     | 
| 
      
 66 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 67 
     | 
    
         
            +
            <div class="section" id="summary">
         
     | 
| 
      
 68 
     | 
    
         
            +
            <h2>7.8.13.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> はオプションによって、動的に動作を定義できます。例えば、以下のように <code class="docutils literal notranslate"><span class="pre">n</span></code> オプションの値を変更する事によって、ユニグラム、バイグラム、トリグラムとして使えます。</p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <p>ユニグラム:</p>
         
     | 
| 
      
 71 
     | 
    
         
            +
            <p>実行例:</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>バイグラム:</p>
         
     | 
| 
      
 151 
     | 
    
         
            +
            <p>実行例:</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>トリグラム:</p>
         
     | 
| 
      
 231 
     | 
    
         
            +
            <p>実行例:</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>このトークナイザーには、上記以外のオプションもあります。</p>
         
     | 
| 
      
 311 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 312 
     | 
    
         
            +
            <div class="section" id="syntax">
         
     | 
| 
      
 313 
     | 
    
         
            +
            <h2>7.8.13.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 314 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は、省略可能な引数があります。</p>
         
     | 
| 
      
 315 
     | 
    
         
            +
            <p>オプションなし:</p>
         
     | 
| 
      
 316 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>TokenNgram
         
     | 
| 
      
 317 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 318 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 319 
     | 
    
         
            +
            <p>オプションを使わない場合、 <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は <code class="docutils literal notranslate"><span class="pre">TokenBigram</span></code> と同じ動作になります。</p>
         
     | 
| 
      
 320 
     | 
    
         
            +
            <p>オプション指定:</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>複数のオプション指定:</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. 使い方<a class="headerlink" href="#usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 346 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 347 
     | 
    
         
            +
            <div class="section" id="simple-usage">
         
     | 
| 
      
 348 
     | 
    
         
            +
            <h2>7.8.13.4. 簡単な使い方<a class="headerlink" href="#simple-usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 349 
     | 
    
         
            +
            <p>以下は <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> の例です。</p>
         
     | 
| 
      
 350 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> をオプション無しで使った場合、以下のように <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は <code class="docutils literal notranslate"><span class="pre">TokenBigram</span></code> と同じ動作をします。:</p>
         
     | 
| 
      
 351 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 352 
     | 
    
         
            +
            <li><p>ノーマライザーを使用しない場合。</p></li>
         
     | 
| 
      
 353 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 354 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 355 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer TokenNgram --string "Hello World"
         
     | 
| 
      
 356 
     | 
    
         
            +
            # [
         
     | 
| 
      
 357 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 358 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 359 
     | 
    
         
            +
            #     1556063548.341422,
         
     | 
| 
      
 360 
     | 
    
         
            +
            #     0.0002450942993164062
         
     | 
| 
      
 361 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 362 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 363 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 364 
     | 
    
         
            +
            #       "value": "He",
         
     | 
| 
      
 365 
     | 
    
         
            +
            #       "position": 0,
         
     | 
| 
      
 366 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 367 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 368 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 369 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 370 
     | 
    
         
            +
            #       "value": "el",
         
     | 
| 
      
 371 
     | 
    
         
            +
            #       "position": 1,
         
     | 
| 
      
 372 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 373 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 374 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 375 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 376 
     | 
    
         
            +
            #       "value": "ll",
         
     | 
| 
      
 377 
     | 
    
         
            +
            #       "position": 2,
         
     | 
| 
      
 378 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 379 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 380 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 381 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 382 
     | 
    
         
            +
            #       "value": "lo",
         
     | 
| 
      
 383 
     | 
    
         
            +
            #       "position": 3,
         
     | 
| 
      
 384 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 385 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 386 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 387 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 388 
     | 
    
         
            +
            #       "value": "o ",
         
     | 
| 
      
 389 
     | 
    
         
            +
            #       "position": 4,
         
     | 
| 
      
 390 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 391 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 392 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 393 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 394 
     | 
    
         
            +
            #       "value": " W",
         
     | 
| 
      
 395 
     | 
    
         
            +
            #       "position": 5,
         
     | 
| 
      
 396 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 397 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 398 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 399 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 400 
     | 
    
         
            +
            #       "value": "Wo",
         
     | 
| 
      
 401 
     | 
    
         
            +
            #       "position": 6,
         
     | 
| 
      
 402 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 403 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 404 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 405 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 406 
     | 
    
         
            +
            #       "value": "or",
         
     | 
| 
      
 407 
     | 
    
         
            +
            #       "position": 7,
         
     | 
| 
      
 408 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 409 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 410 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 411 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 412 
     | 
    
         
            +
            #       "value": "rl",
         
     | 
| 
      
 413 
     | 
    
         
            +
            #       "position": 8,
         
     | 
| 
      
 414 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 415 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 416 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 417 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 418 
     | 
    
         
            +
            #       "value": "ld",
         
     | 
| 
      
 419 
     | 
    
         
            +
            #       "position": 9,
         
     | 
| 
      
 420 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 421 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 422 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 423 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 424 
     | 
    
         
            +
            #       "value": "d",
         
     | 
| 
      
 425 
     | 
    
         
            +
            #       "position": 10,
         
     | 
| 
      
 426 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 427 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 428 
     | 
    
         
            +
            #     }
         
     | 
| 
      
 429 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 430 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 431 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 432 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 433 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 434 
     | 
    
         
            +
            <li><p>ノーマライザーを使用する場合。</p></li>
         
     | 
| 
      
 435 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 436 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 437 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer TokenNgram --string "Hello World" --normalizer NormalizerAuto
         
     | 
| 
      
 438 
     | 
    
         
            +
            # [
         
     | 
| 
      
 439 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 440 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 441 
     | 
    
         
            +
            #     1556063752.798628,
         
     | 
| 
      
 442 
     | 
    
         
            +
            #     0.0001776218414306641
         
     | 
| 
      
 443 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 444 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 445 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 446 
     | 
    
         
            +
            #       "value": "hello",
         
     | 
| 
      
 447 
     | 
    
         
            +
            #       "position": 0,
         
     | 
| 
      
 448 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 449 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 450 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 451 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 452 
     | 
    
         
            +
            #       "value": "world",
         
     | 
| 
      
 453 
     | 
    
         
            +
            #       "position": 1,
         
     | 
| 
      
 454 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 455 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 456 
     | 
    
         
            +
            #     }
         
     | 
| 
      
 457 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 458 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 459 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 460 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 461 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 462 
     | 
    
         
            +
            <div class="section" id="advanced-usage">
         
     | 
| 
      
 463 
     | 
    
         
            +
            <h2>7.8.13.5. 高度な使い方<a class="headerlink" href="#advanced-usage" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 464 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は複数のオプションを指定できます。</p>
         
     | 
| 
      
 465 
     | 
    
         
            +
            <p>例えば、以下のように <code class="docutils literal notranslate"><span class="pre">loose_symbol</span></code> と <code class="docutils literal notranslate"><span class="pre">loose_blank</span></code> を使って、電話番号の表記ゆれに対処できます。</p>
         
     | 
| 
      
 466 
     | 
    
         
            +
            <p>以下の例のように、 <code class="docutils literal notranslate"><span class="pre">0123456789</span></code> で <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> 、 <code class="docutils literal notranslate"><span class="pre">0123</span> <span class="pre">45</span> <span class="pre">6789</span></code> を検索できます。</p>
         
     | 
| 
      
 467 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 468 
     | 
    
         
            +
            <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
         
     | 
| 
      
 469 
     | 
    
         
            +
            # [
         
     | 
| 
      
 470 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 471 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 472 
     | 
    
         
            +
            #     1557187317.825164,
         
     | 
| 
      
 473 
     | 
    
         
            +
            #     0.0003116130828857422
         
     | 
| 
      
 474 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 475 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 476 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 477 
     | 
    
         
            +
            #       "value": "0123",
         
     | 
| 
      
 478 
     | 
    
         
            +
            #       "position": 0,
         
     | 
| 
      
 479 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 480 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 481 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 482 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 483 
     | 
    
         
            +
            #       "value": "(",
         
     | 
| 
      
 484 
     | 
    
         
            +
            #       "position": 1,
         
     | 
| 
      
 485 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 486 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 487 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 488 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 489 
     | 
    
         
            +
            #       "value": "45",
         
     | 
| 
      
 490 
     | 
    
         
            +
            #       "position": 2,
         
     | 
| 
      
 491 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 492 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 493 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 494 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 495 
     | 
    
         
            +
            #       "value": ")",
         
     | 
| 
      
 496 
     | 
    
         
            +
            #       "position": 3,
         
     | 
| 
      
 497 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 498 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 499 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 500 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 501 
     | 
    
         
            +
            #       "value": "6789",
         
     | 
| 
      
 502 
     | 
    
         
            +
            #       "position": 4,
         
     | 
| 
      
 503 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 504 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 505 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 506 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 507 
     | 
    
         
            +
            #       "value": "",
         
     | 
| 
      
 508 
     | 
    
         
            +
            #       "position": 5,
         
     | 
| 
      
 509 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 510 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 511 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 512 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 513 
     | 
    
         
            +
            #       "value": "0123456789",
         
     | 
| 
      
 514 
     | 
    
         
            +
            #       "position": 6,
         
     | 
| 
      
 515 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 516 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 517 
     | 
    
         
            +
            #     }
         
     | 
| 
      
 518 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 519 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 520 
     | 
    
         
            +
            tokenize --tokenizer 'TokenNgram("loose_symbol", true, "loose_blank", true)' --string "0123-45-6789" --normalizer NormalizerAuto
         
     | 
| 
      
 521 
     | 
    
         
            +
            # [
         
     | 
| 
      
 522 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 523 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 524 
     | 
    
         
            +
            #     1557187366.441741,
         
     | 
| 
      
 525 
     | 
    
         
            +
            #     0.0002820491790771484
         
     | 
| 
      
 526 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 527 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 528 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 529 
     | 
    
         
            +
            #       "value": "0123",
         
     | 
| 
      
 530 
     | 
    
         
            +
            #       "position": 0,
         
     | 
| 
      
 531 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 532 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 533 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 534 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 535 
     | 
    
         
            +
            #       "value": "-",
         
     | 
| 
      
 536 
     | 
    
         
            +
            #       "position": 1,
         
     | 
| 
      
 537 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 538 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 539 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 540 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 541 
     | 
    
         
            +
            #       "value": "45",
         
     | 
| 
      
 542 
     | 
    
         
            +
            #       "position": 2,
         
     | 
| 
      
 543 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 544 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 545 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 546 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 547 
     | 
    
         
            +
            #       "value": "-",
         
     | 
| 
      
 548 
     | 
    
         
            +
            #       "position": 3,
         
     | 
| 
      
 549 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 550 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 551 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 552 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 553 
     | 
    
         
            +
            #       "value": "6789",
         
     | 
| 
      
 554 
     | 
    
         
            +
            #       "position": 4,
         
     | 
| 
      
 555 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 556 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 557 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 558 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 559 
     | 
    
         
            +
            #       "value": "",
         
     | 
| 
      
 560 
     | 
    
         
            +
            #       "position": 5,
         
     | 
| 
      
 561 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 562 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 563 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 564 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 565 
     | 
    
         
            +
            #       "value": "0123456789",
         
     | 
| 
      
 566 
     | 
    
         
            +
            #       "position": 6,
         
     | 
| 
      
 567 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 568 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 569 
     | 
    
         
            +
            #     }
         
     | 
| 
      
 570 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 571 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 572 
     | 
    
         
            +
            tokenize --tokenizer 'TokenNgram("loose_symbol", true, "loose_blank", true)' --string "0123 45 6789" --normalizer NormalizerAuto
         
     | 
| 
      
 573 
     | 
    
         
            +
            # [
         
     | 
| 
      
 574 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 575 
     | 
    
         
            +
            #     0,
         
     | 
| 
      
 576 
     | 
    
         
            +
            #     1557187404.034283,
         
     | 
| 
      
 577 
     | 
    
         
            +
            #     0.0003006458282470703
         
     | 
| 
      
 578 
     | 
    
         
            +
            #   ],
         
     | 
| 
      
 579 
     | 
    
         
            +
            #   [
         
     | 
| 
      
 580 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 581 
     | 
    
         
            +
            #       "value": "0123",
         
     | 
| 
      
 582 
     | 
    
         
            +
            #       "position": 0,
         
     | 
| 
      
 583 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 584 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 585 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 586 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 587 
     | 
    
         
            +
            #       "value": "45",
         
     | 
| 
      
 588 
     | 
    
         
            +
            #       "position": 1,
         
     | 
| 
      
 589 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 590 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 591 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 592 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 593 
     | 
    
         
            +
            #       "value": "6789",
         
     | 
| 
      
 594 
     | 
    
         
            +
            #       "position": 2,
         
     | 
| 
      
 595 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 596 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 597 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 598 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 599 
     | 
    
         
            +
            #       "value": "",
         
     | 
| 
      
 600 
     | 
    
         
            +
            #       "position": 3,
         
     | 
| 
      
 601 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 602 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 603 
     | 
    
         
            +
            #     },
         
     | 
| 
      
 604 
     | 
    
         
            +
            #     {
         
     | 
| 
      
 605 
     | 
    
         
            +
            #       "value": "0123456789",
         
     | 
| 
      
 606 
     | 
    
         
            +
            #       "position": 4,
         
     | 
| 
      
 607 
     | 
    
         
            +
            #       "force_prefix": false,
         
     | 
| 
      
 608 
     | 
    
         
            +
            #       "force_prefix_search": false
         
     | 
| 
      
 609 
     | 
    
         
            +
            #     }
         
     | 
| 
      
 610 
     | 
    
         
            +
            #   ]
         
     | 
| 
      
 611 
     | 
    
         
            +
            # ]
         
     | 
| 
      
 612 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 613 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 614 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 615 
     | 
    
         
            +
            <div class="section" id="parameters">
         
     | 
| 
      
 616 
     | 
    
         
            +
            <h2>7.8.13.6. 引数<a class="headerlink" href="#parameters" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 617 
     | 
    
         
            +
            <div class="section" id="optional-parameter">
         
     | 
| 
      
 618 
     | 
    
         
            +
            <h3>7.8.13.6.1. 省略可能引数<a class="headerlink" href="#optional-parameter" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 619 
     | 
    
         
            +
            <p>8つの省略可能な引数があります。</p>
         
     | 
| 
      
 620 
     | 
    
         
            +
            <div class="section" id="n">
         
     | 
| 
      
 621 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 622 
     | 
    
         
            +
            <p>このオプションは、Ngramの <code class="docutils literal notranslate"><span class="pre">N</span></code> を表します。例えば、trigramでは、 <code class="docutils literal notranslate"><span class="pre">n</span></code> が <code class="docutils literal notranslate"><span class="pre">3</span></code> です。</p>
         
     | 
| 
      
 623 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 624 
     | 
    
         
            +
            <div class="section" id="loose-symbol">
         
     | 
| 
      
 625 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 626 
     | 
    
         
            +
            <p>記号を含むクエリー、含まないクエリーの両方で検索されるよう、記号を含むキーワードをトークナイズします。例えば、キーワード <code class="docutils literal notranslate"><span class="pre">090-1111-2222</span></code> は <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> 、 <code class="docutils literal notranslate"><span class="pre">090-1111-2222</span></code> で見つけられます。</p>
         
     | 
| 
      
 627 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 628 
     | 
    
         
            +
            <div class="section" id="loose-blank">
         
     | 
| 
      
 629 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 630 
     | 
    
         
            +
            <p>空白を含むクエリー、含まないクエリーの両方で検索されるように、空白を含むキーワードをトークナイズします。例えば、キーワード <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> は <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> 、 <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> で見つけられます。</p>
         
     | 
| 
      
 631 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 632 
     | 
    
         
            +
            <div class="section" id="remove-blank">
         
     | 
| 
      
 633 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 634 
     | 
    
         
            +
            <p>空白を含まないクエリーで検索できるよう、空白を含むキーワードをトークナイズします。例えば、キーワード <code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> は <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> でも見つけられます。</p>
         
     | 
| 
      
 635 
     | 
    
         
            +
            <p><code class="docutils literal notranslate"><span class="pre">090</span> <span class="pre">1111</span> <span class="pre">2222</span></code> のような空白を含むクエリーでは、キーワードを見つけられないことに注意して下さい。</p>
         
     | 
| 
      
 636 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 637 
     | 
    
         
            +
            <div class="section" id="report-source-location">
         
     | 
| 
      
 638 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 639 
     | 
    
         
            +
            <p>このオプションは、 <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code> によってトークンをハイライトする際、ハイライト対象のトークンの位置を教えてくれます。</p>
         
     | 
| 
      
 640 
     | 
    
         
            +
            <p>このオプションは、 <code class="docutils literal notranslate"><span class="pre">highlight_html</span></code> を使ってトークンをハイライトしたい時のみ使用します。</p>
         
     | 
| 
      
 641 
     | 
    
         
            +
            <p>Groongaがハイライト対象のテキストをトークナイズするとき、いままでは、常に <code class="docutils literal notranslate"><span class="pre">NormalizerAuto</span></code> が使われていました。そのため、 <code class="docutils literal notranslate"><span class="pre">NormalizerNFKC100</span></code> を使ってノーマライズすると、ハイライトの位置が見つけられないことがあります。</p>
         
     | 
| 
      
 642 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 643 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Entries TABLE_NO_KEY
         
     | 
| 
      
 644 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 645 
     | 
    
         
            +
            column_create Entries body COLUMN_SCALAR ShortText
         
     | 
| 
      
 646 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 647 
     | 
    
         
            +
            table_create Terms TABLE_PAT_KEY ShortText --normalizer 'NormalizerNFKC100'
         
     | 
| 
      
 648 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 649 
     | 
    
         
            +
            column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body
         
     | 
| 
      
 650 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 651 
     | 
    
         
            +
            load --table Entries
         
     | 
| 
      
 652 
     | 
    
         
            +
            [
         
     | 
| 
      
 653 
     | 
    
         
            +
            {"body": "ア㌕Az"}
         
     | 
| 
      
 654 
     | 
    
         
            +
            ]
         
     | 
| 
      
 655 
     | 
    
         
            +
            #[[0,0.0,0.0],1]
         
     | 
| 
      
 656 
     | 
    
         
            +
            select Entries   --match_columns body   --query 'グラム'   --output_columns 'highlight_html(body, Terms)'
         
     | 
| 
      
 657 
     | 
    
         
            +
            #[
         
     | 
| 
      
 658 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 659 
     | 
    
         
            +
            #    0,
         
     | 
| 
      
 660 
     | 
    
         
            +
            #    1558915202.24493,
         
     | 
| 
      
 661 
     | 
    
         
            +
            #    0.0003714561462402344
         
     | 
| 
      
 662 
     | 
    
         
            +
            #  ],
         
     | 
| 
      
 663 
     | 
    
         
            +
            #  [[[0],[["highlight_html",null]]]]
         
     | 
| 
      
 664 
     | 
    
         
            +
            #]
         
     | 
| 
      
 665 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 666 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 667 
     | 
    
         
            +
            <p>異なるノーマライザーを使ってトークンをノーマライズするためです。</p>
         
     | 
| 
      
 668 
     | 
    
         
            +
            <p>このオプションは、ハイライト位置のズレを減らすためのものです。</p>
         
     | 
| 
      
 669 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 670 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Entries TABLE_NO_KEY
         
     | 
| 
      
 671 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 672 
     | 
    
         
            +
            column_create Entries body COLUMN_SCALAR ShortText
         
     | 
| 
      
 673 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 674 
     | 
    
         
            +
            table_create Terms TABLE_PAT_KEY ShortText   --default_tokenizer 'TokenNgram("report_source_location", true)'   --normalizer 'NormalizerNFKC100'
         
     | 
| 
      
 675 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 676 
     | 
    
         
            +
            column_create Terms document_index COLUMN_INDEX|WITH_POSITION Entries body
         
     | 
| 
      
 677 
     | 
    
         
            +
            #[[0,0.0,0.0],true]
         
     | 
| 
      
 678 
     | 
    
         
            +
            load --table Entries
         
     | 
| 
      
 679 
     | 
    
         
            +
            [
         
     | 
| 
      
 680 
     | 
    
         
            +
            {"body": "ア㌕Az"}
         
     | 
| 
      
 681 
     | 
    
         
            +
            ]
         
     | 
| 
      
 682 
     | 
    
         
            +
            #[[0,0.0,0.0],1]
         
     | 
| 
      
 683 
     | 
    
         
            +
            select Entries   --match_columns body   --query 'グラム'   --output_columns 'highlight_html(body, Terms)'
         
     | 
| 
      
 684 
     | 
    
         
            +
            #[
         
     | 
| 
      
 685 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 686 
     | 
    
         
            +
            #    0,
         
     | 
| 
      
 687 
     | 
    
         
            +
            #    0.0,
         
     | 
| 
      
 688 
     | 
    
         
            +
            #    0.0
         
     | 
| 
      
 689 
     | 
    
         
            +
            #  ],
         
     | 
| 
      
 690 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 691 
     | 
    
         
            +
            #    [
         
     | 
| 
      
 692 
     | 
    
         
            +
            #      [
         
     | 
| 
      
 693 
     | 
    
         
            +
            #        1
         
     | 
| 
      
 694 
     | 
    
         
            +
            #      ],
         
     | 
| 
      
 695 
     | 
    
         
            +
            #      [
         
     | 
| 
      
 696 
     | 
    
         
            +
            #        [
         
     | 
| 
      
 697 
     | 
    
         
            +
            #          "highlight_html",
         
     | 
| 
      
 698 
     | 
    
         
            +
            #          null
         
     | 
| 
      
 699 
     | 
    
         
            +
            #        ]
         
     | 
| 
      
 700 
     | 
    
         
            +
            #      ],
         
     | 
| 
      
 701 
     | 
    
         
            +
            #      [
         
     | 
| 
      
 702 
     | 
    
         
            +
            #        "ア<span class=\"keyword\">㌕</span>Az"
         
     | 
| 
      
 703 
     | 
    
         
            +
            #      ]
         
     | 
| 
      
 704 
     | 
    
         
            +
            #    ]
         
     | 
| 
      
 705 
     | 
    
         
            +
            #  ]
         
     | 
| 
      
 706 
     | 
    
         
            +
            #]
         
     | 
| 
      
 707 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 708 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 709 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 710 
     | 
    
         
            +
            <div class="section" id="unify-alphabet">
         
     | 
| 
      
 711 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 712 
     | 
    
         
            +
            <p>falseを設定すると、 <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> はASCII文字にトークナイズ方法としてバイグラムを使います。</p>
         
     | 
| 
      
 713 
     | 
    
         
            +
            <p>デフォルト値はtrueです。</p>
         
     | 
| 
      
 714 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 715 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_alphabet", false)' --string "abcd ABCD" --normaluzer NormalizeAuto
         
     | 
| 
      
 716 
     | 
    
         
            +
            #[
         
     | 
| 
      
 717 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 718 
     | 
    
         
            +
            #    0,
         
     | 
| 
      
 719 
     | 
    
         
            +
            #    1558570398.145967,
         
     | 
| 
      
 720 
     | 
    
         
            +
            #    0.0009109973907470703
         
     | 
| 
      
 721 
     | 
    
         
            +
            #  ],
         
     | 
| 
      
 722 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 723 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 724 
     | 
    
         
            +
            #      "value": "ab",
         
     | 
| 
      
 725 
     | 
    
         
            +
            #      "position": 0,
         
     | 
| 
      
 726 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 727 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 728 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 729 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 730 
     | 
    
         
            +
            #      "value": "bc",
         
     | 
| 
      
 731 
     | 
    
         
            +
            #      "position": 1,
         
     | 
| 
      
 732 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 733 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 734 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 735 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 736 
     | 
    
         
            +
            #      "value": "cd",
         
     | 
| 
      
 737 
     | 
    
         
            +
            #      "position": 2,
         
     | 
| 
      
 738 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 739 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 740 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 741 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 742 
     | 
    
         
            +
            #      "value": "d ",
         
     | 
| 
      
 743 
     | 
    
         
            +
            #      "position": 3,
         
     | 
| 
      
 744 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 745 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 746 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 747 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 748 
     | 
    
         
            +
            #      "value": " A",
         
     | 
| 
      
 749 
     | 
    
         
            +
            #      "position": 4,
         
     | 
| 
      
 750 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 751 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 752 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 753 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 754 
     | 
    
         
            +
            #      "value": "AB",
         
     | 
| 
      
 755 
     | 
    
         
            +
            #      "position": 5,
         
     | 
| 
      
 756 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 757 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 758 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 759 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 760 
     | 
    
         
            +
            #      "value": "BC",
         
     | 
| 
      
 761 
     | 
    
         
            +
            #      "position": 6,
         
     | 
| 
      
 762 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 763 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 764 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 765 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 766 
     | 
    
         
            +
            #      "value": "CD",
         
     | 
| 
      
 767 
     | 
    
         
            +
            #      "position": 7,
         
     | 
| 
      
 768 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 769 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 770 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 771 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 772 
     | 
    
         
            +
            #      "value": "D",
         
     | 
| 
      
 773 
     | 
    
         
            +
            #      "position": 8,
         
     | 
| 
      
 774 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 775 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 776 
     | 
    
         
            +
            #    }
         
     | 
| 
      
 777 
     | 
    
         
            +
            #  ]
         
     | 
| 
      
 778 
     | 
    
         
            +
            #]
         
     | 
| 
      
 779 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 780 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 781 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 782 
     | 
    
         
            +
            <div class="section" id="unify-symbol">
         
     | 
| 
      
 783 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 784 
     | 
    
         
            +
            <p>falseを設定すると、 <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は記号にトークナイズ方法としてバイグラムを使います。<code class="docutils literal notranslate"><span class="pre">TokenNgram("unify_symbol",</span> <span class="pre">false)</span></code> は <code class="docutils literal notranslate"><span class="pre">TokenBigramSplitSymbol</span></code> と同じ動作になります。</p>
         
     | 
| 
      
 785 
     | 
    
         
            +
            <p>デフォルト値はtrueです。</p>
         
     | 
| 
      
 786 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 787 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_symbol", false)' --string "___---" --normalizer NormalizerAuto
         
     | 
| 
      
 788 
     | 
    
         
            +
            #[
         
     | 
| 
      
 789 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 790 
     | 
    
         
            +
            #    0,
         
     | 
| 
      
 791 
     | 
    
         
            +
            #    1558913369.875591,
         
     | 
| 
      
 792 
     | 
    
         
            +
            #    0.0008268356323242188
         
     | 
| 
      
 793 
     | 
    
         
            +
            #  ],
         
     | 
| 
      
 794 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 795 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 796 
     | 
    
         
            +
            #      "value": "__",
         
     | 
| 
      
 797 
     | 
    
         
            +
            #      "position": 0,
         
     | 
| 
      
 798 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 799 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 800 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 801 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 802 
     | 
    
         
            +
            #      "value": "__",
         
     | 
| 
      
 803 
     | 
    
         
            +
            #      "position": 1,
         
     | 
| 
      
 804 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 805 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 806 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 807 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 808 
     | 
    
         
            +
            #      "value": "_-",
         
     | 
| 
      
 809 
     | 
    
         
            +
            #      "position": 2,
         
     | 
| 
      
 810 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 811 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 812 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 813 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 814 
     | 
    
         
            +
            #      "value": "--",
         
     | 
| 
      
 815 
     | 
    
         
            +
            #      "position": 3,
         
     | 
| 
      
 816 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 817 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 818 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 819 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 820 
     | 
    
         
            +
            #      "value": "--",
         
     | 
| 
      
 821 
     | 
    
         
            +
            #      "position": 4,
         
     | 
| 
      
 822 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 823 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 824 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 825 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 826 
     | 
    
         
            +
            #      "value": "-",
         
     | 
| 
      
 827 
     | 
    
         
            +
            #      "position": 5,
         
     | 
| 
      
 828 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 829 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 830 
     | 
    
         
            +
            #    }
         
     | 
| 
      
 831 
     | 
    
         
            +
            #  ]
         
     | 
| 
      
 832 
     | 
    
         
            +
            #]
         
     | 
| 
      
 833 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 834 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 835 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 836 
     | 
    
         
            +
            <div class="section" id="unify-digit">
         
     | 
| 
      
 837 
     | 
    
         
            +
            <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="このヘッドラインへのパーマリンク">¶</a></h4>
         
     | 
| 
      
 838 
     | 
    
         
            +
            <p>falseを設定すると、 <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code> は数字にトークナイズ方法としてバイグラムを使います。</p>
         
     | 
| 
      
 839 
     | 
    
         
            +
            <p>デフォルト値はtrueです。</p>
         
     | 
| 
      
 840 
     | 
    
         
            +
            <p>実行例:</p>
         
     | 
| 
      
 841 
     | 
    
         
            +
            <div class="highlight-none notranslate"><div class="highlight"><pre><span></span>tokenize --tokenizer 'TokenNgram("unify_digit", false)' --string "012345 6789" --normalizer NormalizerAuto
         
     | 
| 
      
 842 
     | 
    
         
            +
            #[
         
     | 
| 
      
 843 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 844 
     | 
    
         
            +
            #    0,
         
     | 
| 
      
 845 
     | 
    
         
            +
            #    1558914023.967506,
         
     | 
| 
      
 846 
     | 
    
         
            +
            #    0.001635313034057617
         
     | 
| 
      
 847 
     | 
    
         
            +
            #  ],
         
     | 
| 
      
 848 
     | 
    
         
            +
            #  [
         
     | 
| 
      
 849 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 850 
     | 
    
         
            +
            #      "value": "01",
         
     | 
| 
      
 851 
     | 
    
         
            +
            #      "position": 0,
         
     | 
| 
      
 852 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 853 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 854 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 855 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 856 
     | 
    
         
            +
            #      "value": "12",
         
     | 
| 
      
 857 
     | 
    
         
            +
            #      "position": 1,
         
     | 
| 
      
 858 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 859 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 860 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 861 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 862 
     | 
    
         
            +
            #      "value": "23",
         
     | 
| 
      
 863 
     | 
    
         
            +
            #      "position": 2,
         
     | 
| 
      
 864 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 865 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 866 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 867 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 868 
     | 
    
         
            +
            #      "value": "34",
         
     | 
| 
      
 869 
     | 
    
         
            +
            #      "position": 3,
         
     | 
| 
      
 870 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 871 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 872 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 873 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 874 
     | 
    
         
            +
            #      "value": "45",
         
     | 
| 
      
 875 
     | 
    
         
            +
            #      "position": 4,
         
     | 
| 
      
 876 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 877 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 878 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 879 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 880 
     | 
    
         
            +
            #      "value": "5",
         
     | 
| 
      
 881 
     | 
    
         
            +
            #      "position": 5,
         
     | 
| 
      
 882 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 883 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 884 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 885 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 886 
     | 
    
         
            +
            #      "value": "67",
         
     | 
| 
      
 887 
     | 
    
         
            +
            #      "position": 6,
         
     | 
| 
      
 888 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 889 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 890 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 891 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 892 
     | 
    
         
            +
            #      "value": "78",
         
     | 
| 
      
 893 
     | 
    
         
            +
            #      "position": 7,
         
     | 
| 
      
 894 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 895 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 896 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 897 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 898 
     | 
    
         
            +
            #      "value": "89",
         
     | 
| 
      
 899 
     | 
    
         
            +
            #      "position": 8,
         
     | 
| 
      
 900 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 901 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 902 
     | 
    
         
            +
            #    },
         
     | 
| 
      
 903 
     | 
    
         
            +
            #    {
         
     | 
| 
      
 904 
     | 
    
         
            +
            #      "value": "9",
         
     | 
| 
      
 905 
     | 
    
         
            +
            #      "position": 9,
         
     | 
| 
      
 906 
     | 
    
         
            +
            #      "force_prefix": false,
         
     | 
| 
      
 907 
     | 
    
         
            +
            #      "force_prefix_search": false
         
     | 
| 
      
 908 
     | 
    
         
            +
            #    }
         
     | 
| 
      
 909 
     | 
    
         
            +
            #  ]
         
     | 
| 
      
 910 
     | 
    
         
            +
            #]
         
     | 
| 
      
 911 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 912 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 913 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 914 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 915 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 916 
     | 
    
         
            +
            <div class="section" id="see-also">
         
     | 
| 
      
 917 
     | 
    
         
            +
            <h2>7.8.13.7. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 918 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 919 
     | 
    
         
            +
            <li><p><a class="reference internal" href="../commands/tokenize.html"><span class="doc">tokenize</span></a></p></li>
         
     | 
| 
      
 920 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 921 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 922 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 923 
     | 
    
         
            +
             
     | 
| 
      
 924 
     | 
    
         
            +
             
     | 
| 
      
 925 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 926 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 927 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 928 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
      
 929 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 930 
     | 
    
         
            +
              <h3><a href="../../index.html">目次</a></h3>
         
     | 
| 
      
 931 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 932 
     | 
    
         
            +
            <li><a class="reference internal" href="#">7.8.13. <code class="docutils literal notranslate"><span class="pre">TokenNgram</span></code></a><ul>
         
     | 
| 
      
 933 
     | 
    
         
            +
            <li><a class="reference internal" href="#summary">7.8.13.1. 概要</a></li>
         
     | 
| 
      
 934 
     | 
    
         
            +
            <li><a class="reference internal" href="#syntax">7.8.13.2. 構文</a></li>
         
     | 
| 
      
 935 
     | 
    
         
            +
            <li><a class="reference internal" href="#usage">7.8.13.3. 使い方</a></li>
         
     | 
| 
      
 936 
     | 
    
         
            +
            <li><a class="reference internal" href="#simple-usage">7.8.13.4. 簡単な使い方</a></li>
         
     | 
| 
      
 937 
     | 
    
         
            +
            <li><a class="reference internal" href="#advanced-usage">7.8.13.5. 高度な使い方</a></li>
         
     | 
| 
      
 938 
     | 
    
         
            +
            <li><a class="reference internal" href="#parameters">7.8.13.6. 引数</a><ul>
         
     | 
| 
      
 939 
     | 
    
         
            +
            <li><a class="reference internal" href="#optional-parameter">7.8.13.6.1. 省略可能引数</a><ul>
         
     | 
| 
      
 940 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 941 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 942 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 943 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 944 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 945 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 946 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 947 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 948 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 949 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 950 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 951 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 952 
     | 
    
         
            +
            <li><a class="reference internal" href="#see-also">7.8.13.7. 参考</a></li>
         
     | 
| 
      
 953 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 954 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 955 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 956 
     | 
    
         
            +
             
     | 
| 
      
 957 
     | 
    
         
            +
              <h4>前のトピックへ</h4>
         
     | 
| 
      
 958 
     | 
    
         
            +
              <p class="topless"><a href="token_mecab.html"
         
     | 
| 
      
 959 
     | 
    
         
            +
                                    title="前の章へ">7.8.12. <code class="docutils literal notranslate"><span class="pre">TokenMecab</span></code></a></p>
         
     | 
| 
      
 960 
     | 
    
         
            +
              <h4>次のトピックへ</h4>
         
     | 
| 
      
 961 
     | 
    
         
            +
              <p class="topless"><a href="token_pattern.html"
         
     | 
| 
      
 962 
     | 
    
         
            +
                                    title="次の章へ">7.8.14. <code class="docutils literal notranslate"><span class="pre">TokenPattern</span></code></a></p>
         
     | 
| 
      
 963 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
      
 964 
     | 
    
         
            +
              <h3>クイック検索</h3>
         
     | 
| 
      
 965 
     | 
    
         
            +
                <div class="searchformwrapper">
         
     | 
| 
      
 966 
     | 
    
         
            +
                <form class="search" action="../../search.html" method="get">
         
     | 
| 
      
 967 
     | 
    
         
            +
                  <input type="text" name="q" />
         
     | 
| 
      
 968 
     | 
    
         
            +
                  <input type="submit" value="検索" />
         
     | 
| 
      
 969 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 970 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 971 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 972 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 973 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 974 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 975 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 976 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 977 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
      
 978 
     | 
    
         
            +
                  <h3>ナビゲーション</h3>
         
     | 
| 
      
 979 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 980 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 981 
     | 
    
         
            +
                      <a href="../../genindex.html" title="総合索引"
         
     | 
| 
      
 982 
     | 
    
         
            +
                         >索引</a></li>
         
     | 
| 
      
 983 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 984 
     | 
    
         
            +
                      <a href="token_pattern.html" title="7.8.14. TokenPattern"
         
     | 
| 
      
 985 
     | 
    
         
            +
                         >次へ</a> |</li>
         
     | 
| 
      
 986 
     | 
    
         
            +
                    <li class="right" >
         
     | 
| 
      
 987 
     | 
    
         
            +
                      <a href="token_mecab.html" title="7.8.12. TokenMecab"
         
     | 
| 
      
 988 
     | 
    
         
            +
                         >前へ</a> |</li>
         
     | 
| 
      
 989 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="../../index.html">Groonga v9.0.6ドキュメント</a> »</li>
         
     | 
| 
      
 990 
     | 
    
         
            +
                      <li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
         
     | 
| 
      
 991 
     | 
    
         
            +
                      <li class="nav-item nav-item-2"><a href="../tokenizers.html" >7.8. トークナイザー</a> »</li> 
         
     | 
| 
      
 992 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 993 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 994 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 995 
     | 
    
         
            +
                    © Copyright 2009-2019, Brazil, Inc.
         
     | 
| 
      
 996 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 997 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 998 
     | 
    
         
            +
            </html>
         
     |