rroonga 3.0.1-x86-mingw32 → 3.0.2-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.
- data/doc/text/news.textile +21 -0
- data/ext/groonga/rb-grn-index-column.c +353 -1
- data/ext/groonga/rb-grn-object.c +529 -495
- data/ext/groonga/rb-grn-table.c +48 -0
- data/ext/groonga/rb-grn-utils.c +585 -418
- data/ext/groonga/rb-grn.h +6 -4
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/groonga/dumper.rb +25 -8
- data/lib/groonga/record.rb +21 -2
- data/lib/groonga/schema.rb +2 -2
- data/rroonga-build.rb +1 -1
- data/rroonga.gemspec +2 -0
- data/test/test-database-dumper.rb +45 -3
- data/test/test-expression-builder.rb +0 -13
- data/test/test-fix-size-column.rb +40 -9
- data/test/test-index-column.rb +130 -1
- data/test/test-record.rb +43 -8
- data/test/test-schema-create-table.rb +2 -2
- data/test/test-schema-dumper.rb +46 -6
- data/test/test-table.rb +4 -3
- data/test/test-variable-size-column.rb +115 -26
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +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/libstdc++-6.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +1 -9
- 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/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/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/table/table.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/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/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/libmsgpack.la +1 -1
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +1 -1
- 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/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +43 -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 -50
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +11 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +51 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +49 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +8 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +196 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +16 -0
- data/vendor/local/share/doc/groonga/en/html/_static/pygments.css +2 -2
- 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/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 +5 -5
- 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/development.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 +13 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.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/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/genindex.html +22 -5
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/index.html +19 -14
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +48 -12
- 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 +16 -60
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +16 -25
- data/vendor/local/share/doc/groonga/en/html/install.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- 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/news.html +187 -129
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +198 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +31 -6
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +18 -11
- data/vendor/local/share/doc/groonga/en/html/reference/cast.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/command.html +7 -6
- 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 +17 -17
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +310 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +26 -26
- 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/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +5 -5
- 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/executables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.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/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
- 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/tsv.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/tables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +20 -5
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference.html +12 -7
- 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/gqtp.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/http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server.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/spec.html +10 -10
- 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/suggest.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/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
- 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/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +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 +43 -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 -50
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +11 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +51 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +49 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +8 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +196 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +16 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/pygments.css +2 -2
- 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/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 +5 -5
- 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/development.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 +17 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +31 -7
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/index.html +19 -14
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +44 -12
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
- 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 +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +16 -56
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +16 -25
- data/vendor/local/share/doc/groonga/ja/html/install.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news.html +178 -129
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +195 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +31 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +7 -6
- 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 +17 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +5 -5
- 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 +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +311 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +26 -26
- 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/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 +5 -5
- 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/executables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +5 -5
- 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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
- 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/tsv.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/tables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +20 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference.html +12 -7
- 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/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
- 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/http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.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/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
- 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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
- 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/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +3227 -197
- data/vendor/local/share/man/man1/groonga.1 +3230 -195
- metadata +131 -123
@@ -5,6 +5,57 @@
|
|
5
5
|
News
|
6
6
|
====
|
7
7
|
|
8
|
+
.. _release-3-0-4:
|
9
|
+
|
10
|
+
Release 3.0.4 - 2013/05/29
|
11
|
+
--------------------------
|
12
|
+
|
13
|
+
Improvements
|
14
|
+
^^^^^^^^^^^^
|
15
|
+
|
16
|
+
* [tokenizer] Improved to show log message when normalized string is not given.
|
17
|
+
* Supported ``_key`` as an argument of ``geo_in_circle``. [Reported by @ceekz]
|
18
|
+
* Supported to cast vector elements when groonga is used as a library.
|
19
|
+
* Dropped Ubuntu 11.10 (Oneiric Ocelot) support.
|
20
|
+
* Supported multiple index section in ``match_columns``.
|
21
|
+
* Supported ``tokenize`` command.
|
22
|
+
* Supported to show system error message when ``mmap()`` is failed.
|
23
|
+
* [doc][windows] Simplified build procedures by "cmake --build".
|
24
|
+
* Improved to restrict max execution time to prevent hanging service script.
|
25
|
+
[GitHub#61] [Reported by firewood]
|
26
|
+
* Supported to evaluate vector as boolean.
|
27
|
+
By this change, empty vector is evaluated as true.
|
28
|
+
* Improved not to log too many needless log messages.
|
29
|
+
Too many log messages are truncated as "(N same messages are truncated)".
|
30
|
+
* [munin][groonga_n_records] Added ``exclude_tables`` option.
|
31
|
+
It supports to exclude specific tables from monitoring results.
|
32
|
+
* Supported Debian 8.0 (jessie).
|
33
|
+
* Improved database portability by eliminating directory path of
|
34
|
+
system plugins.
|
35
|
+
|
36
|
+
Fixes
|
37
|
+
^^^^^
|
38
|
+
|
39
|
+
* [tokenizer] Fixed a memory leak on error.
|
40
|
+
* Fixed a bug that empty string for similar search causes SEGV.
|
41
|
+
[groonga-dev,01346] [Reported by Nakai Kanako]
|
42
|
+
* Fixed a memory leak when "VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx"
|
43
|
+
expressions are used.
|
44
|
+
* Fixed a bug that SIGSTOP and SIGCONT stops groonga server.
|
45
|
+
* Fixed a crash bug when normalizer returns NULL as normalized string.
|
46
|
+
[Reported by Y.Kentaro]
|
47
|
+
* Fixed a bug that daemonize process doesn't work on OS X.
|
48
|
+
[groonga-dev,01440] [Reported by Masahiro KONISHI]
|
49
|
+
|
50
|
+
Thanks
|
51
|
+
^^^^^^
|
52
|
+
|
53
|
+
* @ceekz
|
54
|
+
* Nakai Kanako
|
55
|
+
* firewood
|
56
|
+
* Y.Kentaro
|
57
|
+
* Masahiro KONISHI
|
58
|
+
|
8
59
|
.. _release-3-0-3:
|
9
60
|
|
10
61
|
Release 3.0.3 - 2013/04/29
|
@@ -0,0 +1,49 @@
|
|
1
|
+
.. -*- rst -*-
|
2
|
+
|
3
|
+
.. highlightlang:: none
|
4
|
+
|
5
|
+
``grn_ctx``
|
6
|
+
===========
|
7
|
+
|
8
|
+
Summary
|
9
|
+
-------
|
10
|
+
|
11
|
+
:c:type:`grn_ctx` is the most important object. :c:type:`grn_ctx`
|
12
|
+
keeps the current infomation such as:
|
13
|
+
|
14
|
+
* The last occurred error.
|
15
|
+
* The current encoding.
|
16
|
+
* The default thresholds. (e.g. :ref:`match-escalation-threshold`)
|
17
|
+
* The default command version. (See :doc:`/reference/command/command_version`)
|
18
|
+
|
19
|
+
:c:type:`grn_ctx` provides platform features such as:
|
20
|
+
|
21
|
+
* Memory management.
|
22
|
+
* Logging.
|
23
|
+
|
24
|
+
Most APIs receive :c:type:`grn_ctx` as the first argument.
|
25
|
+
|
26
|
+
You can't use the same :c:type:`grn_ctx` from two or more threads. You
|
27
|
+
need to create a :c:type:`grn_ctx` for a thread. You can use two or
|
28
|
+
more :c:type:`grn_ctx` in a thread but it is not needed for usual
|
29
|
+
use-case.
|
30
|
+
|
31
|
+
Example
|
32
|
+
-------
|
33
|
+
|
34
|
+
TODO...
|
35
|
+
|
36
|
+
Reference
|
37
|
+
---------
|
38
|
+
|
39
|
+
.. c:type:: grn_ctx
|
40
|
+
|
41
|
+
TODO...
|
42
|
+
|
43
|
+
.. c:function:: grn_rc grn_ctx_init(grn_ctx *ctx, int flags)
|
44
|
+
|
45
|
+
ctxを初期化します。
|
46
|
+
|
47
|
+
:param ctx: 初期化するctx構造体へのポインタを指定します。
|
48
|
+
:param flags: 初期化する ``ctx`` のオプションを指定します。
|
49
|
+
:return: ``GRN_SUCCESS`` on success, not ``GRN_SUCCESS`` on error.
|
@@ -0,0 +1,196 @@
|
|
1
|
+
.. -*- rst -*-
|
2
|
+
|
3
|
+
.. highlightlang:: none
|
4
|
+
|
5
|
+
.. groonga-command
|
6
|
+
.. database: commands_tokenize
|
7
|
+
|
8
|
+
``tokenize``
|
9
|
+
============
|
10
|
+
|
11
|
+
Summary
|
12
|
+
-------
|
13
|
+
|
14
|
+
``tokenize`` command tokenizes text by the specified tokenizer.
|
15
|
+
It is useful to debug tokenization.
|
16
|
+
|
17
|
+
Syntax
|
18
|
+
------
|
19
|
+
|
20
|
+
``tokenize`` command has required parameters and optional parameters.
|
21
|
+
``tokenizer`` and ``string`` are required parameters. Others are
|
22
|
+
optional::
|
23
|
+
|
24
|
+
tokenize tokenizer
|
25
|
+
string
|
26
|
+
[normalizer=null]
|
27
|
+
[flags=NONE]
|
28
|
+
|
29
|
+
Usage
|
30
|
+
-----
|
31
|
+
|
32
|
+
Here is a simple example.
|
33
|
+
|
34
|
+
.. groonga-command
|
35
|
+
.. include:: ../../example/reference/commands/tokenize/simple_example.log
|
36
|
+
.. tokenize TokenBigram "Fulltext Search"
|
37
|
+
|
38
|
+
It has only required parameters. ``tokenizer`` is ``TokenBigram`` and
|
39
|
+
``string`` is ``"Fulltext Search"``. It returns tokens that is
|
40
|
+
generated by tokenizing ``"Fulltext Search"`` with ``TokenBigram``
|
41
|
+
tokenizer. It doesn't normalize ``"Fulltext Search"``.
|
42
|
+
|
43
|
+
Parameters
|
44
|
+
----------
|
45
|
+
|
46
|
+
This section describes all parameters. Parameters are categorized.
|
47
|
+
|
48
|
+
Required parameters
|
49
|
+
^^^^^^^^^^^^^^^^^^^
|
50
|
+
|
51
|
+
There are required parameters, ``tokenizer`` and ``string``.
|
52
|
+
|
53
|
+
``tokenizer``
|
54
|
+
"""""""""""""
|
55
|
+
|
56
|
+
It specifies the tokenizer name. ``tokenize`` command uses the
|
57
|
+
tokenizer that is named ``tokenizer``.
|
58
|
+
|
59
|
+
See :doc:`/reference/tokenizers` about built-in tokenizers.
|
60
|
+
|
61
|
+
Here is an example to use ``TokenTrigram`` tokenizer.
|
62
|
+
|
63
|
+
.. groonga-command
|
64
|
+
.. include:: ../../example/reference/commands/tokenize/tokenizer_token_trigram.log
|
65
|
+
.. tokenize TokenTrigram "Fulltext Search"
|
66
|
+
|
67
|
+
If you want to use other tokenizers, you need to register additional
|
68
|
+
tokenizer plugin by :doc:`register` command. For example, you can use
|
69
|
+
MySQL compatible normalizer by registering `groonga-normalizer-mysql
|
70
|
+
<https://github.com/groonga/groonga-normalizer-mysql>`_.
|
71
|
+
|
72
|
+
``string``
|
73
|
+
""""""""""
|
74
|
+
|
75
|
+
It specifies any string which you want to tokenize. If you want to
|
76
|
+
include spaces in ``string``, you need to quote ``string`` by
|
77
|
+
single quotation (``'``) or double quotation (``"``).
|
78
|
+
|
79
|
+
Here is an example to use spaces in ``string``.
|
80
|
+
|
81
|
+
.. groonga-command
|
82
|
+
.. include:: ../../example/reference/commands/tokenize/string_include_spaces.log
|
83
|
+
.. tokenize TokenBigram "Groonga is a fast fulltext earch engine!"
|
84
|
+
|
85
|
+
Optional parameters
|
86
|
+
^^^^^^^^^^^^^^^^^^^
|
87
|
+
|
88
|
+
There are optional parameters.
|
89
|
+
|
90
|
+
``normalizer``
|
91
|
+
""""""""""""""
|
92
|
+
|
93
|
+
It specifies the normalizer name. ``tokenize`` command uses the
|
94
|
+
normalizer that is named ``normalizer``. Normalizer is important for
|
95
|
+
N-gram family tokenizers such as ``TokenBigram``.
|
96
|
+
|
97
|
+
Normalizer detects character type for each character while
|
98
|
+
normalizing. N-gram family tokenizers use character types while
|
99
|
+
tokenizing.
|
100
|
+
|
101
|
+
Here is an example that doesn't use normalizer.
|
102
|
+
|
103
|
+
.. groonga-command
|
104
|
+
.. include:: ../../example/reference/commands/tokenize/normalizer_none.log
|
105
|
+
.. tokenize TokenBigram "Fulltext Search"
|
106
|
+
|
107
|
+
All alphabets are tokenized by two characters. For example, ``Fu`` is
|
108
|
+
a token.
|
109
|
+
|
110
|
+
Here is an example that uses normalizer.
|
111
|
+
|
112
|
+
.. groonga-command
|
113
|
+
.. include:: ../../example/reference/commands/tokenize/normalizer_use.log
|
114
|
+
.. tokenize TokenBigram "Fulltext Search" NormalizerAuto
|
115
|
+
|
116
|
+
Continuous alphabets are tokenized as one token. For example,
|
117
|
+
``fulltext`` is a token.
|
118
|
+
|
119
|
+
If you want to tokenize by two characters with noramlizer, use
|
120
|
+
``TokenBigramSplitSymbolAlpha``.
|
121
|
+
|
122
|
+
.. groonga-command
|
123
|
+
.. include:: ../../example/reference/commands/tokenize/normalizer_use_with_split_symbol_alpha.log
|
124
|
+
.. tokenize TokenBigramSplitSymbolAlpha "Fulltext Search" NormalizerAuto
|
125
|
+
|
126
|
+
All alphabets are tokenized by two characters. And they are normalized
|
127
|
+
to lower case characters. For example, ``fu`` is a token.
|
128
|
+
|
129
|
+
``flags``
|
130
|
+
"""""""""
|
131
|
+
|
132
|
+
It specifies a tokenization customize options. You can specify
|
133
|
+
multiple options separated by "``|``". For example,
|
134
|
+
``NONE|ENABLE_TOKENIZED_DELIMITER``.
|
135
|
+
|
136
|
+
Here are available flags.
|
137
|
+
|
138
|
+
.. list-table::
|
139
|
+
:header-rows: 1
|
140
|
+
|
141
|
+
* - Flag
|
142
|
+
- Description
|
143
|
+
* - ``NONE``
|
144
|
+
- Just ignored.
|
145
|
+
* - ``ENABLE_TOKENIZED_DELIMITER``
|
146
|
+
- Enables tokenized delimiter. See :doc:`/reference/tokenizers` about
|
147
|
+
tokenized delimiter details.
|
148
|
+
|
149
|
+
Here is an example that uses ``ENABLE_TOKENIZED_DELIMITER``.
|
150
|
+
|
151
|
+
.. groonga-command
|
152
|
+
.. include:: ../../example/reference/commands/tokenize/flags_enable_tokenized_delimiter.log
|
153
|
+
.. tokenize TokenDelimit "Fulltext Seacrch" NormalizerAuto ENABLE_TOKENIZED_DELIMITER
|
154
|
+
|
155
|
+
``TokenDelimit`` tokenizer is one of tokenized delimiter supported
|
156
|
+
tokenizer. ``ENABLE_TOKENIZED_DELIMITER`` enables tokenized delimiter.
|
157
|
+
Tokenized delimiter is special character that indicates token
|
158
|
+
border. It is `U+FFFE`. The character is not assigned any
|
159
|
+
character. It means that the character is not appeared in normal
|
160
|
+
string. So the character is good character for this puropose. If
|
161
|
+
``ENABLE_TOKENIZED_DELIMITER`` is enabled, the target string is
|
162
|
+
treated as already tokenized string. Tokenizer just tokenizes by
|
163
|
+
tokenized delimiter.
|
164
|
+
|
165
|
+
Return value
|
166
|
+
------------
|
167
|
+
|
168
|
+
``tokenize`` command returns tokenized tokens. Each token has some
|
169
|
+
attributes except token itself. The attributes will be increased in
|
170
|
+
the feature::
|
171
|
+
|
172
|
+
[HEADER, tokens]
|
173
|
+
|
174
|
+
``HEADER``
|
175
|
+
|
176
|
+
See :doc:`/reference/command/output_format` about ``HEADER``.
|
177
|
+
|
178
|
+
``tokens``
|
179
|
+
|
180
|
+
Tokens is an array of token. Token is an object that has the following
|
181
|
+
attributes.
|
182
|
+
|
183
|
+
.. list-table::
|
184
|
+
:header-rows: 1
|
185
|
+
|
186
|
+
* - Name
|
187
|
+
- Description
|
188
|
+
* - ``value``
|
189
|
+
- Token itself.
|
190
|
+
* - ``position``
|
191
|
+
- The N-th token.
|
192
|
+
|
193
|
+
See also
|
194
|
+
--------
|
195
|
+
|
196
|
+
* :doc:`/reference/tokenizers`
|
@@ -123,7 +123,7 @@ Here is a list of additional normalizers provided by ``groonga-normalizer-mysql`
|
|
123
123
|
|
124
124
|
* ``NormalizerMySQLGeneralCI``
|
125
125
|
* ``NormalizerMySQLUnicodeCI``
|
126
|
-
* ``
|
126
|
+
* ``NormalizerMySQLUnicodeCIExceptKanaCIKanaWithVoicedSoundMark``
|
127
127
|
|
128
128
|
``groonga-normalizer-mysql`` is a groonga plugin.
|
129
129
|
It provides MySQL compatible normalizers to groonga.
|
@@ -6,3 +6,19 @@ Tokenizers
|
|
6
6
|
==========
|
7
7
|
|
8
8
|
TODO: Write me.
|
9
|
+
|
10
|
+
Here are the list of built-in tokenizers:
|
11
|
+
|
12
|
+
* TokenBigram
|
13
|
+
* TokenBigramSplitSymbol
|
14
|
+
* TokenBigramSplitSymbolAlpha
|
15
|
+
* TokenBigramSplitSymbolAlphaDigit
|
16
|
+
* TokenBigramIgnoreBlank
|
17
|
+
* TokenBigramIgnoreBlankSplitSymbol
|
18
|
+
* TokenBigramIgnoreBlankSplitAlpha
|
19
|
+
* TokenBigramIgnoreBlankSplitAlphaDigit
|
20
|
+
* TokenDelimit
|
21
|
+
* TokenDelimitNull
|
22
|
+
* TokenTrigram
|
23
|
+
* TokenUnigram
|
24
|
+
|
@@ -13,11 +13,11 @@
|
|
13
13
|
.highlight .gr { color: #FF0000 } /* Generic.Error */
|
14
14
|
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
15
15
|
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
16
|
-
.highlight .go { color: #
|
16
|
+
.highlight .go { color: #333333 } /* Generic.Output */
|
17
17
|
.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */
|
18
18
|
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
19
19
|
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
20
|
-
.highlight .gt { color: #
|
20
|
+
.highlight .gt { color: #0044DD } /* Generic.Traceback */
|
21
21
|
.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */
|
22
22
|
.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */
|
23
23
|
.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>1. Characteristics of groonga — groonga v3.0.3 documentation</title>
|
10
|
+
<title>1. Characteristics of groonga — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="index.html" />
|
29
29
|
<link rel="next" title="2. Install" href="install.html" />
|
30
30
|
<link rel="prev" title="groonga documentation" href="index.html" />
|
31
31
|
</head>
|
@@ -59,7 +59,7 @@
|
|
59
59
|
<li class="right" >
|
60
60
|
<a href="index.html" title="groonga documentation"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">groonga v3.0.3 documentation</a> »</li>
|
62
|
+
<li><a href="index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
@@ -179,7 +179,7 @@
|
|
179
179
|
<li class="right" >
|
180
180
|
<a href="index.html" title="groonga documentation"
|
181
181
|
>previous</a> |</li>
|
182
|
-
<li><a href="index.html">groonga v3.0.3 documentation</a> »</li>
|
182
|
+
<li><a href="index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
183
183
|
</ul>
|
184
184
|
</div>
|
185
185
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>3. Community — groonga v3.0.3 documentation</title>
|
10
|
+
<title>3. Community — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="index.html" />
|
29
29
|
<link rel="next" title="4. Tutorial" href="tutorial.html" />
|
30
30
|
<link rel="prev" title="2.8. Others" href="install/others.html" />
|
31
31
|
</head>
|
@@ -59,7 +59,7 @@
|
|
59
59
|
<li class="right" >
|
60
60
|
<a href="install/others.html" title="2.8. Others"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">groonga v3.0.3 documentation</a> »</li>
|
62
|
+
<li><a href="index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
@@ -153,7 +153,7 @@ groonga related information.</p>
|
|
153
153
|
<li class="right" >
|
154
154
|
<a href="install/others.html" title="2.8. Others"
|
155
155
|
>previous</a> |</li>
|
156
|
-
<li><a href="index.html">groonga v3.0.3 documentation</a> »</li>
|
156
|
+
<li><a href="index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
157
157
|
</ul>
|
158
158
|
</div>
|
159
159
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>13.2.2. groonga 通信アーキテクチャ — groonga v3.0.3 documentation</title>
|
10
|
+
<title>13.2.2. groonga 通信アーキテクチャ — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="../../index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="13.2. groonga開発者向け情報" href="../development.html" />
|
30
30
|
<link rel="next" title="13.2.3. ドキュメント作成" href="document.html" />
|
31
31
|
<link rel="prev" title="13.2.1. Repository" href="repository.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="repository.html" title="13.2.1. Repository"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
63
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
64
64
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
65
65
|
<li><a href="../development.html" accesskey="U">13.2. groonga開発者向け情報</a> »</li>
|
66
66
|
</ul>
|
@@ -145,7 +145,7 @@ edgeがworkerに結びついていないときは、同時に、ctx_newという
|
|
145
145
|
<li class="right" >
|
146
146
|
<a href="repository.html" title="13.2.1. Repository"
|
147
147
|
>previous</a> |</li>
|
148
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
148
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
149
149
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
150
150
|
<li><a href="../development.html" >13.2. groonga開発者向け情報</a> »</li>
|
151
151
|
</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>13.2.3. ドキュメント作成 — groonga v3.0.3 documentation</title>
|
10
|
+
<title>13.2.3. ドキュメント作成 — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="../../index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="13.2. groonga開発者向け情報" href="../development.html" />
|
30
30
|
<link rel="next" title="13.2.4. クエリの実現" href="query.html" />
|
31
31
|
<link rel="prev" title="13.2.2. groonga 通信アーキテクチャ" href="com.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="com.html" title="13.2.2. groonga 通信アーキテクチャ"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
63
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
64
64
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
65
65
|
<li><a href="../development.html" accesskey="U">13.2. groonga開発者向け情報</a> »</li>
|
66
66
|
</ul>
|
@@ -168,7 +168,7 @@
|
|
168
168
|
<li class="right" >
|
169
169
|
<a href="com.html" title="13.2.2. groonga 通信アーキテクチャ"
|
170
170
|
>previous</a> |</li>
|
171
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
171
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
172
172
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
173
173
|
<li><a href="../development.html" >13.2. groonga開発者向け情報</a> »</li>
|
174
174
|
</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>13.2.4. クエリの実現 — groonga v3.0.3 documentation</title>
|
10
|
+
<title>13.2.4. クエリの実現 — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="../../index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="13.2. groonga開発者向け情報" href="../development.html" />
|
30
30
|
<link rel="next" title="13.2.6. リリース手順" href="release.html" />
|
31
31
|
<link rel="prev" title="13.2.3. ドキュメント作成" href="document.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="document.html" title="13.2.3. ドキュメント作成"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
63
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
64
64
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
65
65
|
<li><a href="../development.html" accesskey="U">13.2. groonga開発者向け情報</a> »</li>
|
66
66
|
</ul>
|
@@ -345,7 +345,7 @@ columnの値が'needle'であるレコードr1と、columnの値が'haystack'で
|
|
345
345
|
<li class="right" >
|
346
346
|
<a href="document.html" title="13.2.3. ドキュメント作成"
|
347
347
|
>previous</a> |</li>
|
348
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
348
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
349
349
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
350
350
|
<li><a href="../development.html" >13.2. groonga開発者向け情報</a> »</li>
|
351
351
|
</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>13.2.6. リリース手順 — groonga v3.0.3 documentation</title>
|
10
|
+
<title>13.2.6. リリース手順 — groonga v3.0.3-116-g8307aaf 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.3',
|
18
|
+
VERSION: '3.0.3-116-g8307aaf',
|
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.3 documentation" href="../../index.html" />
|
28
|
+
<link rel="top" title="groonga v3.0.3-116-g8307aaf documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="13.2. groonga開発者向け情報" href="../development.html" />
|
30
30
|
<link rel="next" title="13.2.7. テスト方法" href="test.html" />
|
31
31
|
<link rel="prev" title="13.2.4. クエリの実現" href="query.html" />
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="query.html" title="13.2.4. クエリの実現"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
63
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
64
64
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
65
65
|
<li><a href="../development.html" accesskey="U">13.2. groonga開発者向け情報</a> »</li>
|
66
66
|
</ul>
|
@@ -760,7 +760,7 @@ published: false
|
|
760
760
|
<li class="right" >
|
761
761
|
<a href="query.html" title="13.2.4. クエリの実現"
|
762
762
|
>previous</a> |</li>
|
763
|
-
<li><a href="../../index.html">groonga v3.0.3 documentation</a> »</li>
|
763
|
+
<li><a href="../../index.html">groonga v3.0.3-116-g8307aaf documentation</a> »</li>
|
764
764
|
<li><a href="../../contribution.html" >13. How to contribute to groonga</a> »</li>
|
765
765
|
<li><a href="../development.html" >13.2. groonga開発者向け情報</a> »</li>
|
766
766
|
</ul>
|