rroonga 3.0.2-x86-mingw32 → 3.0.4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/text/news.textile +30 -1
- data/ext/groonga/extconf.rb +49 -26
- data/ext/groonga/rb-grn-array.c +56 -1
- data/ext/groonga/rb-grn-column.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +3 -3
- data/ext/groonga/rb-grn-expression.c +14 -9
- data/ext/groonga/rb-grn-index-column.c +1 -1
- data/ext/groonga/rb-grn-operator.c +10 -3
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-table.c +71 -25
- data/ext/groonga/rb-grn-utils.c +3 -1
- data/ext/groonga/rb-grn-variable.c +17 -4
- data/ext/groonga/rb-grn.h +2 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/groonga/record.rb +9 -2
- data/lib/groonga/sub-records.rb +62 -0
- data/rroonga-build.rb +2 -1
- data/rroonga.gemspec +1 -1
- data/test/test-array.rb +35 -0
- data/test/test-context.rb +2 -1
- data/test/test-database.rb +2 -1
- data/test/test-expression.rb +14 -4
- data/test/test-sub-records.rb +109 -0
- data/test/test-table.rb +104 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +20 -2
- 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/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/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/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/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.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/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +187 -137
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +16 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +514 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -49
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +10 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +29 -11
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +17 -12
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +25 -15
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +21 -13
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +38 -23
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/news.html +885 -481
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +280 -146
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +12 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +43 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +558 -75
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +10 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +15 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +13 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +83 -46
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +71 -38
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +55 -30
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +19 -12
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +27 -16
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +24 -16
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +31 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +16 -12
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +847 -160
- data/vendor/local/share/man/man1/groonga.1 +826 -97
- metadata +10 -2
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.21. register — groonga v3.0.
|
10
|
+
<title>8.3.21. register — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.22. select" href="select.html" />
|
31
31
|
<link rel="prev" title="8.3.20. quit" href="quit.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="quit.html" title="8.3.20. quit"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -176,7 +176,7 @@ They are completed automatically.</p>
|
|
176
176
|
<li class="right" >
|
177
177
|
<a href="quit.html" title="8.3.20. quit"
|
178
178
|
>previous</a> |</li>
|
179
|
-
<li><a href="../../index.html">groonga v3.0.
|
179
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
180
180
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
181
181
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
182
182
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.22. select — groonga v3.0.
|
10
|
+
<title>8.3.22. select — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.23. shutdown" href="shutdown.html" />
|
31
31
|
<link rel="prev" title="8.3.21. register" href="register.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="register.html" title="8.3.21. register"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -478,7 +478,7 @@ records.</p>
|
|
478
478
|
# [
|
479
479
|
# "grn_select",
|
480
480
|
# "proc.c",
|
481
|
-
#
|
481
|
+
# 778
|
482
482
|
# ]
|
483
483
|
# ]
|
484
484
|
# ]
|
@@ -2332,7 +2332,7 @@ records. It's very useful value to show all records.</p>
|
|
2332
2332
|
<li class="right" >
|
2333
2333
|
<a href="register.html" title="8.3.21. register"
|
2334
2334
|
>previous</a> |</li>
|
2335
|
-
<li><a href="../../index.html">groonga v3.0.
|
2335
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
2336
2336
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
2337
2337
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
2338
2338
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.23. shutdown — groonga v3.0.
|
10
|
+
<title>8.3.23. shutdown — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.24. status" href="status.html" />
|
31
31
|
<link rel="prev" title="8.3.22. select" href="select.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="select.html" title="8.3.22. select"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -163,7 +163,7 @@
|
|
163
163
|
<li class="right" >
|
164
164
|
<a href="select.html" title="8.3.22. select"
|
165
165
|
>previous</a> |</li>
|
166
|
-
<li><a href="../../index.html">groonga v3.0.
|
166
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
167
167
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
168
168
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
169
169
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.24. status — groonga v3.0.
|
10
|
+
<title>8.3.24. status — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.25. suggest" href="suggest.html" />
|
31
31
|
<link rel="prev" title="8.3.23. shutdown" href="shutdown.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="shutdown.html" title="8.3.23. shutdown"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -121,14 +121,14 @@
|
|
121
121
|
# 0.000355720520019531
|
122
122
|
# ],
|
123
123
|
# {
|
124
|
-
# "uptime":
|
124
|
+
# "uptime": 6,
|
125
125
|
# "max_command_version": 2,
|
126
|
-
# "n_queries":
|
126
|
+
# "n_queries": 39,
|
127
127
|
# "cache_hit_rate": 0.0,
|
128
|
-
# "version": "3.0.
|
129
|
-
# "alloc_count":
|
128
|
+
# "version": "3.0.5",
|
129
|
+
# "alloc_count": 303,
|
130
130
|
# "command_version": 1,
|
131
|
-
# "starttime":
|
131
|
+
# "starttime": 1372040777,
|
132
132
|
# "default_command_version": 1
|
133
133
|
# }
|
134
134
|
# ]
|
@@ -199,7 +199,7 @@
|
|
199
199
|
<li class="right" >
|
200
200
|
<a href="shutdown.html" title="8.3.23. shutdown"
|
201
201
|
>previous</a> |</li>
|
202
|
-
<li><a href="../../index.html">groonga v3.0.
|
202
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
203
203
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
204
204
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
205
205
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.25. suggest — groonga v3.0.
|
10
|
+
<title>8.3.25. suggest — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.26. table_create" href="table_create.html" />
|
31
31
|
<link rel="prev" title="8.3.24. status" href="status.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="status.html" title="8.3.24. status"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -562,7 +562,7 @@ default.</div></blockquote>
|
|
562
562
|
<li class="right" >
|
563
563
|
<a href="status.html" title="8.3.24. status"
|
564
564
|
>previous</a> |</li>
|
565
|
-
<li><a href="../../index.html">groonga v3.0.
|
565
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
566
566
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
567
567
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
568
568
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.26. table_create — groonga v3.0.
|
10
|
+
<title>8.3.26. table_create — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.27. table_list" href="table_list.html" />
|
31
31
|
<link rel="prev" title="8.3.25. suggest" href="suggest.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="suggest.html" title="8.3.25. suggest"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -390,7 +390,7 @@ fulltext search index.</p>
|
|
390
390
|
<li class="right" >
|
391
391
|
<a href="suggest.html" title="8.3.25. suggest"
|
392
392
|
>previous</a> |</li>
|
393
|
-
<li><a href="../../index.html">groonga v3.0.
|
393
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
394
394
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
395
395
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
396
396
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.27. table_list — groonga v3.0.
|
10
|
+
<title>8.3.27. table_list — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.28. table_remove" href="table_remove.html" />
|
31
31
|
<link rel="prev" title="8.3.26. table_create" href="table_create.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="table_create.html" title="8.3.26. table_create"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -282,7 +282,7 @@
|
|
282
282
|
<li class="right" >
|
283
283
|
<a href="table_create.html" title="8.3.26. table_create"
|
284
284
|
>previous</a> |</li>
|
285
|
-
<li><a href="../../index.html">groonga v3.0.
|
285
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
286
286
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
287
287
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
288
288
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.28. table_remove — groonga v3.0.
|
10
|
+
<title>8.3.28. table_remove — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.29. tokenize" href="tokenize.html" />
|
31
31
|
<link rel="prev" title="8.3.27. table_list" href="table_list.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="table_list.html" title="8.3.27. table_list"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -179,7 +179,7 @@
|
|
179
179
|
<li class="right" >
|
180
180
|
<a href="table_list.html" title="8.3.27. table_list"
|
181
181
|
>previous</a> |</li>
|
182
|
-
<li><a href="../../index.html">groonga v3.0.
|
182
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
183
183
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
184
184
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
185
185
|
</ul>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>8.3.29. tokenize — groonga v3.0.
|
10
|
+
<title>8.3.29. tokenize — groonga v3.0.5 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="groonga v3.0.
|
28
|
+
<link rel="top" title="groonga v3.0.5 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="8.3. Command" href="../command.html" />
|
30
30
|
<link rel="next" title="8.3.30. truncate" href="truncate.html" />
|
31
31
|
<link rel="prev" title="8.3.28. table_remove" href="table_remove.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="table_remove.html" title="8.3.28. table_remove"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.
|
63
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
65
65
|
<li><a href="../command.html" accesskey="U">8.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -93,6 +93,79 @@ optional:</p>
|
|
93
93
|
<div class="section" id="usage">
|
94
94
|
<h2>8.3.29.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
95
95
|
<p>Here is a simple example.</p>
|
96
|
+
<p>Execution example:</p>
|
97
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram "Fulltext Search"
|
98
|
+
# [
|
99
|
+
# [
|
100
|
+
# 0,
|
101
|
+
# 1337566253.89858,
|
102
|
+
# 0.000355720520019531
|
103
|
+
# ],
|
104
|
+
# [
|
105
|
+
# {
|
106
|
+
# "position": 0,
|
107
|
+
# "value": "Fu"
|
108
|
+
# },
|
109
|
+
# {
|
110
|
+
# "position": 1,
|
111
|
+
# "value": "ul"
|
112
|
+
# },
|
113
|
+
# {
|
114
|
+
# "position": 2,
|
115
|
+
# "value": "ll"
|
116
|
+
# },
|
117
|
+
# {
|
118
|
+
# "position": 3,
|
119
|
+
# "value": "lt"
|
120
|
+
# },
|
121
|
+
# {
|
122
|
+
# "position": 4,
|
123
|
+
# "value": "te"
|
124
|
+
# },
|
125
|
+
# {
|
126
|
+
# "position": 5,
|
127
|
+
# "value": "ex"
|
128
|
+
# },
|
129
|
+
# {
|
130
|
+
# "position": 6,
|
131
|
+
# "value": "xt"
|
132
|
+
# },
|
133
|
+
# {
|
134
|
+
# "position": 7,
|
135
|
+
# "value": "t "
|
136
|
+
# },
|
137
|
+
# {
|
138
|
+
# "position": 8,
|
139
|
+
# "value": " S"
|
140
|
+
# },
|
141
|
+
# {
|
142
|
+
# "position": 9,
|
143
|
+
# "value": "Se"
|
144
|
+
# },
|
145
|
+
# {
|
146
|
+
# "position": 10,
|
147
|
+
# "value": "ea"
|
148
|
+
# },
|
149
|
+
# {
|
150
|
+
# "position": 11,
|
151
|
+
# "value": "ar"
|
152
|
+
# },
|
153
|
+
# {
|
154
|
+
# "position": 12,
|
155
|
+
# "value": "rc"
|
156
|
+
# },
|
157
|
+
# {
|
158
|
+
# "position": 13,
|
159
|
+
# "value": "ch"
|
160
|
+
# },
|
161
|
+
# {
|
162
|
+
# "position": 14,
|
163
|
+
# "value": "h"
|
164
|
+
# }
|
165
|
+
# ]
|
166
|
+
# ]
|
167
|
+
</pre></div>
|
168
|
+
</div>
|
96
169
|
<p>It has only required parameters. <tt class="docutils literal"><span class="pre">tokenizer</span></tt> is <tt class="docutils literal"><span class="pre">TokenBigram</span></tt> and
|
97
170
|
<tt class="docutils literal"><span class="pre">string</span></tt> is <tt class="docutils literal"><span class="pre">"Fulltext</span> <span class="pre">Search"</span></tt>. It returns tokens that is
|
98
171
|
generated by tokenizing <tt class="docutils literal"><span class="pre">"Fulltext</span> <span class="pre">Search"</span></tt> with <tt class="docutils literal"><span class="pre">TokenBigram</span></tt>
|
@@ -110,6 +183,79 @@ tokenizer. It doesn't normalize <tt class="docutils literal"><span class="pre">&
|
|
110
183
|
tokenizer that is named <tt class="docutils literal"><span class="pre">tokenizer</span></tt>.</p>
|
111
184
|
<p>See <a class="reference internal" href="../tokenizers.html"><em>Tokenizers</em></a> about built-in tokenizers.</p>
|
112
185
|
<p>Here is an example to use <tt class="docutils literal"><span class="pre">TokenTrigram</span></tt> tokenizer.</p>
|
186
|
+
<p>Execution example:</p>
|
187
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenTrigram "Fulltext Search"
|
188
|
+
# [
|
189
|
+
# [
|
190
|
+
# 0,
|
191
|
+
# 1337566253.89858,
|
192
|
+
# 0.000355720520019531
|
193
|
+
# ],
|
194
|
+
# [
|
195
|
+
# {
|
196
|
+
# "position": 0,
|
197
|
+
# "value": "Ful"
|
198
|
+
# },
|
199
|
+
# {
|
200
|
+
# "position": 1,
|
201
|
+
# "value": "ull"
|
202
|
+
# },
|
203
|
+
# {
|
204
|
+
# "position": 2,
|
205
|
+
# "value": "llt"
|
206
|
+
# },
|
207
|
+
# {
|
208
|
+
# "position": 3,
|
209
|
+
# "value": "lte"
|
210
|
+
# },
|
211
|
+
# {
|
212
|
+
# "position": 4,
|
213
|
+
# "value": "tex"
|
214
|
+
# },
|
215
|
+
# {
|
216
|
+
# "position": 5,
|
217
|
+
# "value": "ext"
|
218
|
+
# },
|
219
|
+
# {
|
220
|
+
# "position": 6,
|
221
|
+
# "value": "xt "
|
222
|
+
# },
|
223
|
+
# {
|
224
|
+
# "position": 7,
|
225
|
+
# "value": "t S"
|
226
|
+
# },
|
227
|
+
# {
|
228
|
+
# "position": 8,
|
229
|
+
# "value": " Se"
|
230
|
+
# },
|
231
|
+
# {
|
232
|
+
# "position": 9,
|
233
|
+
# "value": "Sea"
|
234
|
+
# },
|
235
|
+
# {
|
236
|
+
# "position": 10,
|
237
|
+
# "value": "ear"
|
238
|
+
# },
|
239
|
+
# {
|
240
|
+
# "position": 11,
|
241
|
+
# "value": "arc"
|
242
|
+
# },
|
243
|
+
# {
|
244
|
+
# "position": 12,
|
245
|
+
# "value": "rch"
|
246
|
+
# },
|
247
|
+
# {
|
248
|
+
# "position": 13,
|
249
|
+
# "value": "ch"
|
250
|
+
# },
|
251
|
+
# {
|
252
|
+
# "position": 14,
|
253
|
+
# "value": "h"
|
254
|
+
# }
|
255
|
+
# ]
|
256
|
+
# ]
|
257
|
+
</pre></div>
|
258
|
+
</div>
|
113
259
|
<p>If you want to use other tokenizers, you need to register additional
|
114
260
|
tokenizer plugin by <a class="reference internal" href="register.html"><em>register</em></a> command. For example, you can use
|
115
261
|
MySQL compatible normalizer by registering <a class="reference external" href="https://github.com/groonga/groonga-normalizer-mysql">groonga-normalizer-mysql</a>.</p>
|
@@ -120,6 +266,179 @@ MySQL compatible normalizer by registering <a class="reference external" href="h
|
|
120
266
|
include spaces in <tt class="docutils literal"><span class="pre">string</span></tt>, you need to quote <tt class="docutils literal"><span class="pre">string</span></tt> by
|
121
267
|
single quotation (<tt class="docutils literal"><span class="pre">'</span></tt>) or double quotation (<tt class="docutils literal"><span class="pre">"</span></tt>).</p>
|
122
268
|
<p>Here is an example to use spaces in <tt class="docutils literal"><span class="pre">string</span></tt>.</p>
|
269
|
+
<p>Execution example:</p>
|
270
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram "Groonga is a fast fulltext earch engine!"
|
271
|
+
# [
|
272
|
+
# [
|
273
|
+
# 0,
|
274
|
+
# 1337566253.89858,
|
275
|
+
# 0.000355720520019531
|
276
|
+
# ],
|
277
|
+
# [
|
278
|
+
# {
|
279
|
+
# "position": 0,
|
280
|
+
# "value": "Gr"
|
281
|
+
# },
|
282
|
+
# {
|
283
|
+
# "position": 1,
|
284
|
+
# "value": "ro"
|
285
|
+
# },
|
286
|
+
# {
|
287
|
+
# "position": 2,
|
288
|
+
# "value": "oo"
|
289
|
+
# },
|
290
|
+
# {
|
291
|
+
# "position": 3,
|
292
|
+
# "value": "on"
|
293
|
+
# },
|
294
|
+
# {
|
295
|
+
# "position": 4,
|
296
|
+
# "value": "ng"
|
297
|
+
# },
|
298
|
+
# {
|
299
|
+
# "position": 5,
|
300
|
+
# "value": "ga"
|
301
|
+
# },
|
302
|
+
# {
|
303
|
+
# "position": 6,
|
304
|
+
# "value": "a "
|
305
|
+
# },
|
306
|
+
# {
|
307
|
+
# "position": 7,
|
308
|
+
# "value": " i"
|
309
|
+
# },
|
310
|
+
# {
|
311
|
+
# "position": 8,
|
312
|
+
# "value": "is"
|
313
|
+
# },
|
314
|
+
# {
|
315
|
+
# "position": 9,
|
316
|
+
# "value": "s "
|
317
|
+
# },
|
318
|
+
# {
|
319
|
+
# "position": 10,
|
320
|
+
# "value": " a"
|
321
|
+
# },
|
322
|
+
# {
|
323
|
+
# "position": 11,
|
324
|
+
# "value": "a "
|
325
|
+
# },
|
326
|
+
# {
|
327
|
+
# "position": 12,
|
328
|
+
# "value": " f"
|
329
|
+
# },
|
330
|
+
# {
|
331
|
+
# "position": 13,
|
332
|
+
# "value": "fa"
|
333
|
+
# },
|
334
|
+
# {
|
335
|
+
# "position": 14,
|
336
|
+
# "value": "as"
|
337
|
+
# },
|
338
|
+
# {
|
339
|
+
# "position": 15,
|
340
|
+
# "value": "st"
|
341
|
+
# },
|
342
|
+
# {
|
343
|
+
# "position": 16,
|
344
|
+
# "value": "t "
|
345
|
+
# },
|
346
|
+
# {
|
347
|
+
# "position": 17,
|
348
|
+
# "value": " f"
|
349
|
+
# },
|
350
|
+
# {
|
351
|
+
# "position": 18,
|
352
|
+
# "value": "fu"
|
353
|
+
# },
|
354
|
+
# {
|
355
|
+
# "position": 19,
|
356
|
+
# "value": "ul"
|
357
|
+
# },
|
358
|
+
# {
|
359
|
+
# "position": 20,
|
360
|
+
# "value": "ll"
|
361
|
+
# },
|
362
|
+
# {
|
363
|
+
# "position": 21,
|
364
|
+
# "value": "lt"
|
365
|
+
# },
|
366
|
+
# {
|
367
|
+
# "position": 22,
|
368
|
+
# "value": "te"
|
369
|
+
# },
|
370
|
+
# {
|
371
|
+
# "position": 23,
|
372
|
+
# "value": "ex"
|
373
|
+
# },
|
374
|
+
# {
|
375
|
+
# "position": 24,
|
376
|
+
# "value": "xt"
|
377
|
+
# },
|
378
|
+
# {
|
379
|
+
# "position": 25,
|
380
|
+
# "value": "t "
|
381
|
+
# },
|
382
|
+
# {
|
383
|
+
# "position": 26,
|
384
|
+
# "value": " e"
|
385
|
+
# },
|
386
|
+
# {
|
387
|
+
# "position": 27,
|
388
|
+
# "value": "ea"
|
389
|
+
# },
|
390
|
+
# {
|
391
|
+
# "position": 28,
|
392
|
+
# "value": "ar"
|
393
|
+
# },
|
394
|
+
# {
|
395
|
+
# "position": 29,
|
396
|
+
# "value": "rc"
|
397
|
+
# },
|
398
|
+
# {
|
399
|
+
# "position": 30,
|
400
|
+
# "value": "ch"
|
401
|
+
# },
|
402
|
+
# {
|
403
|
+
# "position": 31,
|
404
|
+
# "value": "h "
|
405
|
+
# },
|
406
|
+
# {
|
407
|
+
# "position": 32,
|
408
|
+
# "value": " e"
|
409
|
+
# },
|
410
|
+
# {
|
411
|
+
# "position": 33,
|
412
|
+
# "value": "en"
|
413
|
+
# },
|
414
|
+
# {
|
415
|
+
# "position": 34,
|
416
|
+
# "value": "ng"
|
417
|
+
# },
|
418
|
+
# {
|
419
|
+
# "position": 35,
|
420
|
+
# "value": "gi"
|
421
|
+
# },
|
422
|
+
# {
|
423
|
+
# "position": 36,
|
424
|
+
# "value": "in"
|
425
|
+
# },
|
426
|
+
# {
|
427
|
+
# "position": 37,
|
428
|
+
# "value": "ne"
|
429
|
+
# },
|
430
|
+
# {
|
431
|
+
# "position": 38,
|
432
|
+
# "value": "e!"
|
433
|
+
# },
|
434
|
+
# {
|
435
|
+
# "position": 39,
|
436
|
+
# "value": "!"
|
437
|
+
# }
|
438
|
+
# ]
|
439
|
+
# ]
|
440
|
+
</pre></div>
|
441
|
+
</div>
|
123
442
|
</div>
|
124
443
|
</div>
|
125
444
|
<div class="section" id="optional-parameters">
|
@@ -134,13 +453,176 @@ N-gram family tokenizers such as <tt class="docutils literal"><span class="pre">
|
|
134
453
|
normalizing. N-gram family tokenizers use character types while
|
135
454
|
tokenizing.</p>
|
136
455
|
<p>Here is an example that doesn't use normalizer.</p>
|
456
|
+
<p>Execution example:</p>
|
457
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram "Fulltext Search"
|
458
|
+
# [
|
459
|
+
# [
|
460
|
+
# 0,
|
461
|
+
# 1337566253.89858,
|
462
|
+
# 0.000355720520019531
|
463
|
+
# ],
|
464
|
+
# [
|
465
|
+
# {
|
466
|
+
# "position": 0,
|
467
|
+
# "value": "Fu"
|
468
|
+
# },
|
469
|
+
# {
|
470
|
+
# "position": 1,
|
471
|
+
# "value": "ul"
|
472
|
+
# },
|
473
|
+
# {
|
474
|
+
# "position": 2,
|
475
|
+
# "value": "ll"
|
476
|
+
# },
|
477
|
+
# {
|
478
|
+
# "position": 3,
|
479
|
+
# "value": "lt"
|
480
|
+
# },
|
481
|
+
# {
|
482
|
+
# "position": 4,
|
483
|
+
# "value": "te"
|
484
|
+
# },
|
485
|
+
# {
|
486
|
+
# "position": 5,
|
487
|
+
# "value": "ex"
|
488
|
+
# },
|
489
|
+
# {
|
490
|
+
# "position": 6,
|
491
|
+
# "value": "xt"
|
492
|
+
# },
|
493
|
+
# {
|
494
|
+
# "position": 7,
|
495
|
+
# "value": "t "
|
496
|
+
# },
|
497
|
+
# {
|
498
|
+
# "position": 8,
|
499
|
+
# "value": " S"
|
500
|
+
# },
|
501
|
+
# {
|
502
|
+
# "position": 9,
|
503
|
+
# "value": "Se"
|
504
|
+
# },
|
505
|
+
# {
|
506
|
+
# "position": 10,
|
507
|
+
# "value": "ea"
|
508
|
+
# },
|
509
|
+
# {
|
510
|
+
# "position": 11,
|
511
|
+
# "value": "ar"
|
512
|
+
# },
|
513
|
+
# {
|
514
|
+
# "position": 12,
|
515
|
+
# "value": "rc"
|
516
|
+
# },
|
517
|
+
# {
|
518
|
+
# "position": 13,
|
519
|
+
# "value": "ch"
|
520
|
+
# },
|
521
|
+
# {
|
522
|
+
# "position": 14,
|
523
|
+
# "value": "h"
|
524
|
+
# }
|
525
|
+
# ]
|
526
|
+
# ]
|
527
|
+
</pre></div>
|
528
|
+
</div>
|
137
529
|
<p>All alphabets are tokenized by two characters. For example, <tt class="docutils literal"><span class="pre">Fu</span></tt> is
|
138
530
|
a token.</p>
|
139
531
|
<p>Here is an example that uses normalizer.</p>
|
532
|
+
<p>Execution example:</p>
|
533
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigram "Fulltext Search" NormalizerAuto
|
534
|
+
# [
|
535
|
+
# [
|
536
|
+
# 0,
|
537
|
+
# 1337566253.89858,
|
538
|
+
# 0.000355720520019531
|
539
|
+
# ],
|
540
|
+
# [
|
541
|
+
# {
|
542
|
+
# "position": 0,
|
543
|
+
# "value": "fulltext"
|
544
|
+
# },
|
545
|
+
# {
|
546
|
+
# "position": 1,
|
547
|
+
# "value": "search"
|
548
|
+
# }
|
549
|
+
# ]
|
550
|
+
# ]
|
551
|
+
</pre></div>
|
552
|
+
</div>
|
140
553
|
<p>Continuous alphabets are tokenized as one token. For example,
|
141
554
|
<tt class="docutils literal"><span class="pre">fulltext</span></tt> is a token.</p>
|
142
555
|
<p>If you want to tokenize by two characters with noramlizer, use
|
143
556
|
<tt class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></tt>.</p>
|
557
|
+
<p>Execution example:</p>
|
558
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenBigramSplitSymbolAlpha "Fulltext Search" NormalizerAuto
|
559
|
+
# [
|
560
|
+
# [
|
561
|
+
# 0,
|
562
|
+
# 1337566253.89858,
|
563
|
+
# 0.000355720520019531
|
564
|
+
# ],
|
565
|
+
# [
|
566
|
+
# {
|
567
|
+
# "position": 0,
|
568
|
+
# "value": "fu"
|
569
|
+
# },
|
570
|
+
# {
|
571
|
+
# "position": 1,
|
572
|
+
# "value": "ul"
|
573
|
+
# },
|
574
|
+
# {
|
575
|
+
# "position": 2,
|
576
|
+
# "value": "ll"
|
577
|
+
# },
|
578
|
+
# {
|
579
|
+
# "position": 3,
|
580
|
+
# "value": "lt"
|
581
|
+
# },
|
582
|
+
# {
|
583
|
+
# "position": 4,
|
584
|
+
# "value": "te"
|
585
|
+
# },
|
586
|
+
# {
|
587
|
+
# "position": 5,
|
588
|
+
# "value": "ex"
|
589
|
+
# },
|
590
|
+
# {
|
591
|
+
# "position": 6,
|
592
|
+
# "value": "xt"
|
593
|
+
# },
|
594
|
+
# {
|
595
|
+
# "position": 7,
|
596
|
+
# "value": "t"
|
597
|
+
# },
|
598
|
+
# {
|
599
|
+
# "position": 8,
|
600
|
+
# "value": "se"
|
601
|
+
# },
|
602
|
+
# {
|
603
|
+
# "position": 9,
|
604
|
+
# "value": "ea"
|
605
|
+
# },
|
606
|
+
# {
|
607
|
+
# "position": 10,
|
608
|
+
# "value": "ar"
|
609
|
+
# },
|
610
|
+
# {
|
611
|
+
# "position": 11,
|
612
|
+
# "value": "rc"
|
613
|
+
# },
|
614
|
+
# {
|
615
|
+
# "position": 12,
|
616
|
+
# "value": "ch"
|
617
|
+
# },
|
618
|
+
# {
|
619
|
+
# "position": 13,
|
620
|
+
# "value": "h"
|
621
|
+
# }
|
622
|
+
# ]
|
623
|
+
# ]
|
624
|
+
</pre></div>
|
625
|
+
</div>
|
144
626
|
<p>All alphabets are tokenized by two characters. And they are normalized
|
145
627
|
to lower case characters. For example, <tt class="docutils literal"><span class="pre">fu</span></tt> is a token.</p>
|
146
628
|
</div>
|
@@ -171,10 +653,35 @@ tokenized delimiter details.</td>
|
|
171
653
|
</tbody>
|
172
654
|
</table>
|
173
655
|
<p>Here is an example that uses <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt>.</p>
|
656
|
+
<p>Execution example:</p>
|
657
|
+
<div class="highlight-none"><div class="highlight"><pre>tokenize TokenDelimit "Fulltext Seacrch" NormalizerAuto ENABLE_TOKENIZED_DELIMITER
|
658
|
+
# [
|
659
|
+
# [
|
660
|
+
# 0,
|
661
|
+
# 1337566253.89858,
|
662
|
+
# 0.000355720520019531
|
663
|
+
# ],
|
664
|
+
# [
|
665
|
+
# {
|
666
|
+
# "position": 0,
|
667
|
+
# "value": "full"
|
668
|
+
# },
|
669
|
+
# {
|
670
|
+
# "position": 1,
|
671
|
+
# "value": "text sea"
|
672
|
+
# },
|
673
|
+
# {
|
674
|
+
# "position": 2,
|
675
|
+
# "value": "crch"
|
676
|
+
# }
|
677
|
+
# ]
|
678
|
+
# ]
|
679
|
+
</pre></div>
|
680
|
+
</div>
|
174
681
|
<p><tt class="docutils literal"><span class="pre">TokenDelimit</span></tt> tokenizer is one of tokenized delimiter supported
|
175
682
|
tokenizer. <tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> enables tokenized delimiter.
|
176
683
|
Tokenized delimiter is special character that indicates token
|
177
|
-
border. It is <
|
684
|
+
border. It is <tt class="docutils literal"><span class="pre">U+FFFE</span></tt>. The character is not assigned any
|
178
685
|
character. It means that the character is not appeared in normal
|
179
686
|
string. So the character is good character for this puropose. If
|
180
687
|
<tt class="docutils literal"><span class="pre">ENABLE_TOKENIZED_DELIMITER</span></tt> is enabled, the target string is
|
@@ -196,7 +703,7 @@ the feature:</p>
|
|
196
703
|
<div>See <a class="reference internal" href="../command/output_format.html"><em>Output format</em></a> about <tt class="docutils literal"><span class="pre">HEADER</span></tt>.</div></blockquote>
|
197
704
|
<p><tt class="docutils literal"><span class="pre">tokens</span></tt></p>
|
198
705
|
<blockquote>
|
199
|
-
<div><p>
|
706
|
+
<div><p><tt class="docutils literal"><span class="pre">tokens</span></tt> is an array of token. Token is an object that has the following
|
200
707
|
attributes.</p>
|
201
708
|
<table border="1" class="docutils">
|
202
709
|
<colgroup>
|
@@ -298,7 +805,7 @@ attributes.</p>
|
|
298
805
|
<li class="right" >
|
299
806
|
<a href="table_remove.html" title="8.3.28. table_remove"
|
300
807
|
>previous</a> |</li>
|
301
|
-
<li><a href="../../index.html">groonga v3.0.
|
808
|
+
<li><a href="../../index.html">groonga v3.0.5 documentation</a> »</li>
|
302
809
|
<li><a href="../../reference.html" >8. リファレンスマニュアル</a> »</li>
|
303
810
|
<li><a href="../command.html" >8.3. Command</a> »</li>
|
304
811
|
</ul>
|