rroonga 2.1.2-x86-mingw32 → 2.1.3-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 +29 -0
- data/doc/text/tutorial.textile +176 -199
- data/ext/groonga/extconf.rb +16 -2
- data/ext/groonga/rb-grn-logger.c +214 -202
- data/ext/groonga/rb-grn-object.c +1 -23
- data/ext/groonga/rb-grn-table-cursor.c +1 -2
- data/ext/groonga/rb-grn-table.c +1 -2
- data/ext/groonga/rb-grn-utils.c +3 -7
- data/ext/groonga/rb-grn.h +2 -16
- data/ext/groonga/rb-groonga.c +1 -3
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/context.rb +27 -0
- data/lib/groonga/dumper.rb +35 -3
- data/lib/groonga/logger.rb +142 -0
- data/lib/groonga.rb +2 -1
- data/rroonga-build.rb +2 -2
- data/test/groonga-test-utils.rb +3 -1
- data/test/test-context.rb +63 -0
- data/test/test-logger.rb +1 -0
- 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-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +48 -7
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +3 -3
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +1 -1
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/pkgconfig/groonga.pc +5 -3
- 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 +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +6 -4
- 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 +5 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +50 -22
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +46 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +135 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/log.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +17 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/server/package.txt +192 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +2 -14
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +193 -138
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/community.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +8 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/contribution.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/development.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/genindex.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/index.html +22 -18
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +25 -14
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/others.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -11
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +22 -11
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +47 -25
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -10
- data/vendor/local/share/doc/groonga/en/html/limitations.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/news.html +148 -97
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +8 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +9 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +403 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +29 -31
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +10 -12
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +11 -13
- data/vendor/local/share/doc/groonga/en/html/reference.html +14 -16
- data/vendor/local/share/doc/groonga/en/html/search.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +16 -18
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +43 -45
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +14 -16
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/server/http.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/server/package.html +375 -0
- data/vendor/local/share/doc/groonga/en/html/server.html +23 -19
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/spec.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/suggest.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +7 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +6 -4
- 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 +5 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +50 -22
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +46 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +135 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/log.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +17 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt +192 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +2 -14
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +192 -137
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/community.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +11 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/development.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/index.html +28 -24
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -11
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +20 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +47 -20
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -10
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/news.html +135 -97
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +8 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +13 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +9 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +394 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +11 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +31 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +82 -134
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +10 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +15 -17
- data/vendor/local/share/doc/groonga/ja/html/reference.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/search.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +16 -18
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +43 -45
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +14 -16
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +372 -0
- data/vendor/local/share/doc/groonga/ja/html/server.html +23 -19
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/spec.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +7 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +7 -9
- data/vendor/local/share/man/ja/man1/groonga.1 +849 -276
- data/vendor/local/share/man/man1/groonga.1 +814 -144
- data/vendor/local/share/mecab/dic/naist-jdic/sys.dic +0 -0
- data/vendor/local/share/mecab/dic/naist-jdic/unk.dic +0 -0
- metadata +883 -1287
- data/ext/groonga/rb-grn-view-accessor.c +0 -53
- data/ext/groonga/rb-grn-view-cursor.c +0 -35
- data/ext/groonga/rb-grn-view-record.c +0 -41
- data/ext/groonga/rb-grn-view.c +0 -414
- data/test/test-schema-view.rb +0 -90
- data/test/test-view.rb +0 -71
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/view_add.html +0 -196
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/view_add.html +0 -197
- data/vendor/local/share/doc/groonga/source/__init__.py +0 -0
- data/vendor/local/share/doc/groonga/source/characteristic.txt +0 -69
- data/vendor/local/share/doc/groonga/source/community.txt +0 -37
- data/vendor/local/share/doc/groonga/source/conf.py +0 -272
- data/vendor/local/share/doc/groonga/source/contribution/development/com.txt +0 -20
- data/vendor/local/share/doc/groonga/source/contribution/development/document.txt +0 -40
- data/vendor/local/share/doc/groonga/source/contribution/development/query.txt +0 -214
- data/vendor/local/share/doc/groonga/source/contribution/development/release.txt +0 -661
- data/vendor/local/share/doc/groonga/source/contribution/development/test.txt +0 -116
- data/vendor/local/share/doc/groonga/source/contribution/development.txt +0 -12
- data/vendor/local/share/doc/groonga/source/contribution/documentation/c-api.txt +0 -14
- data/vendor/local/share/doc/groonga/source/contribution/documentation/i18n.txt +0 -198
- data/vendor/local/share/doc/groonga/source/contribution/documentation.txt +0 -16
- data/vendor/local/share/doc/groonga/source/contribution/report.txt +0 -28
- data/vendor/local/share/doc/groonga/source/contribution.txt +0 -26
- data/vendor/local/share/doc/groonga/source/development/travis-ci.txt +0 -61
- data/vendor/local/share/doc/groonga/source/development.txt +0 -15
- data/vendor/local/share/doc/groonga/source/example/completion-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/correction-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/register/query_expanders_tsv.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/filter_less_than.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_negative.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/limit_simple.log +0 -32
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_simple.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_some_columns.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_columns_weight.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/match_escalation_threshold.log +0 -74
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/no_limit.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_negative.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/offset_simple.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_asterisk.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/output_columns_simple.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/paging.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_and.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_complex.log +0 -52
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitute.log +0 -131
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_expansion_substitution_table.log +0 -12
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_column.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_leading_not.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_allow_update.log +0 -90
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_flags_none.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_less_than.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/query_or.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_filter.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_query.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/simple_usage.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_descending.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_score_with_query.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/sortby_simple.log +0 -65
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/table_nonexistent.log +0 -18
- data/vendor/local/share/doc/groonga/source/example/reference/commands/select/usage_setup.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/reference/commands/status.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-completion.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-correction.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-completion.log +0 -12
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-correction.log +0 -14
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-learn-suggestion.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-mixed.log +0 -77
- data/vendor/local/share/doc/groonga/source/example/reference/commands/suggest-suggestion.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/data_store_table_no_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/lexicon_table_pat_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_create/tag_index_table_hash_key.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/commands/table_list.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/reference/executables/groonga-httpd.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_ellipsoid.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_equator.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_meridian.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_rectangle_across_the_date_line.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_distance_sphere.log +0 -15
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_ellipsoid.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_rectangle.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_location_sphere.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_distance.log +0 -13
- data/vendor/local/share/doc/groonga/source/example/reference/functions/geo_distance_setup_location.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage.log +0 -28
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_basic.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_setup.log +0 -17
- data/vendor/local/share/doc/groonga/source/example/reference/functions/snippet_html/usage_string_literal.log +0 -28
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/setup.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_equal.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_full_text_search_with_explicit_match_column.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_greater_than_or_equal_to.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_grouping.log +0 -92
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than.log +0 -53
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_less_than_or_equal_to.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_and.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_not.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_logical_or.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_not_equal.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_phrase_search_with_explicit_match_column.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_prefix_search.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/query_syntax/simple_suffix_search.log +0 -51
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_addition_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_and_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_not_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_or_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_bitwise_xor_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_control_syntax_ternary_operator.log +0 -53
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_quotient.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_division_operator_remainder.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_equal_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_function.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_grouping.log +0 -92
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_left_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_and_operator.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_but_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_not_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_logical_or_operator.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_match_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_multiplication_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_near_search_operator.log +0 -52
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_not_equal_operator.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_prefix_search_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_right_shift_operator.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_signed_right_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_similar_search_operator.log +0 -29
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_subtraction_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_suffix_search_operator.log +0 -51
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_term_extract_operator.log +0 -39
- data/vendor/local/share/doc/groonga/source/example/reference/grn_expr/script_syntax/simple_unsigned_right_shift_operator.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-data.log +0 -9
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-offline-index-construction.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-online-index-construction.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-schema.log +0 -8
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-offline-index-construction.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-after-online-index-construction.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/reference/indexing-search-without-index.log +0 -27
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/example-load.log +0 -46
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/example-table-create.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/normalizer-auto.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/reference/normalizers/normalizer-nfkc51.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/suggestion-1.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +0 -48
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +0 -57
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-4.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-5.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-6.log +0 -47
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-7.log +0 -46
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-8.log +0 -54
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-1.log +0 -23
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-2.log +0 -78
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-3.log +0 -85
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-4.log +0 -113
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-5.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/tutorial/drilldown-6.log +0 -74
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-1.log +0 -24
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-2.log +0 -105
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-3.log +0 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-4.log +0 -84
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-5.log +0 -78
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-6.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/index-7.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +0 -3
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-10.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-11.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-12.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-13.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-14.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-15.log +0 -129
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-16.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-17.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-18.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +0 -22
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +0 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-4.log +0 -27
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-5.log +0 -33
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-6.log +0 -15
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-7.log +0 -76
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-8.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-9.log +0 -36
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-1.log +0 -21
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-2.log +0 -137
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-3.log +0 -19
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-4.log +0 -137
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data-with-three-relationship.log +0 -23
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-data.log +0 -16
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema-with-three-relationship.log +0 -30
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-schema.log +0 -20
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select-with-three-relationship.log +0 -86
- data/vendor/local/share/doc/groonga/source/example/tutorial/match_columns-nested-index-select.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-1.log +0 -59
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-10.log +0 -98
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-2.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-3.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-4.log +0 -89
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-5.log +0 -35
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-6.log +0 -73
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-7.log +0 -54
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-8.log +0 -58
- data/vendor/local/share/doc/groonga/source/example/tutorial/micro_blog-9.log +0 -37
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-1.log +0 -24
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-2.log +0 -5
- data/vendor/local/share/doc/groonga/source/example/tutorial/network-3.log +0 -89
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-1.log +0 -45
- data/vendor/local/share/doc/groonga/source/example/tutorial/patricia_trie-2.log +0 -102
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-1.log +0 -26
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-2.log +0 -70
- data/vendor/local/share/doc/groonga/source/example/tutorial/query_expansion-3.log +0 -80
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-1.log +0 -31
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-2.log +0 -84
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-3.log +0 -150
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-4.log +0 -43
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-5.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-6.log +0 -41
- data/vendor/local/share/doc/groonga/source/example/tutorial/search-7.log +0 -31
- data/vendor/local/share/doc/groonga/source/geolocation_search.txt +0 -52
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/array.svg +0 -188
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/columns.svg +0 -501
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/hash-table.svg +0 -275
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/index-column.svg +0 -899
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/inverted-index.svg +0 -249
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/patricia-trie.svg +0 -275
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/prefix-search.svg +0 -743
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record-id.svg +0 -261
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/record.svg +0 -228
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/scalar-column.svg +0 -241
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-index-column-value.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram-token-id.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-bigram.svg +0 -879
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-choose-tokenizer.svg +0 -602
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-index-column-value.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-first-token-id.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-initial-state.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-on-key-table.svg +0 -917
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-result.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-index-column-value.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/search-second-token-id.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/tokenizer.svg +0 -561
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-initial.svg +0 -389
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-first-token.svg +0 -469
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-first-data-second-token.svg +0 -514
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-first-token.svg +0 -595
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-process-second-data-second-token.svg +0 -600
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-first-data.svg +0 -424
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/update-save-second-data.svg +0 -549
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/fulltext-introduction/vector-column.svg +0 -241
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-2bit.svg +0 -203
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-encode-leading-4bit.svg +0 -264
- data/vendor/local/share/doc/groonga/source/images/geo-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-distance.svg +0 -317
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-circle.svg +0 -306
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-in-rectangle.svg +0 -304
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points-sort.svg +0 -383
- data/vendor/local/share/doc/groonga/source/images/geo-points.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-points.svg +0 -296
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-circle.svg +0 -287
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.png +0 -0
- data/vendor/local/share/doc/groonga/source/images/geo-search-in-rectangle.svg +0 -174
- data/vendor/local/share/doc/groonga/source/index.txt +0 -33
- data/vendor/local/share/doc/groonga/source/install/centos.txt +0 -152
- data/vendor/local/share/doc/groonga/source/install/debian.txt +0 -136
- data/vendor/local/share/doc/groonga/source/install/fedora.txt +0 -82
- data/vendor/local/share/doc/groonga/source/install/mac_os_x.txt +0 -53
- data/vendor/local/share/doc/groonga/source/install/others.txt +0 -267
- data/vendor/local/share/doc/groonga/source/install/solaris.txt +0 -43
- data/vendor/local/share/doc/groonga/source/install/ubuntu.txt +0 -196
- data/vendor/local/share/doc/groonga/source/install/windows.txt +0 -87
- data/vendor/local/share/doc/groonga/source/install.txt +0 -28
- data/vendor/local/share/doc/groonga/source/limitations.txt +0 -29
- data/vendor/local/share/doc/groonga/source/news/0.x.txt +0 -126
- data/vendor/local/share/doc/groonga/source/news/1.0.x.txt +0 -289
- data/vendor/local/share/doc/groonga/source/news/1.1.x.txt +0 -31
- data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +0 -386
- data/vendor/local/share/doc/groonga/source/news/senna.txt +0 -109
- data/vendor/local/share/doc/groonga/source/news.txt +0 -632
- data/vendor/local/share/doc/groonga/source/rdoc.py +0 -762
- data/vendor/local/share/doc/groonga/source/reference/api/grn_expr.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/api.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/cast.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/command/command_version.txt +0 -75
- data/vendor/local/share/doc/groonga/source/reference/command/output_format.txt +0 -228
- data/vendor/local/share/doc/groonga/source/reference/command/return_code.txt +0 -110
- data/vendor/local/share/doc/groonga/source/reference/command.txt +0 -20
- data/vendor/local/share/doc/groonga/source/reference/commands/cache_limit.txt +0 -54
- data/vendor/local/share/doc/groonga/source/reference/commands/check.txt +0 -166
- data/vendor/local/share/doc/groonga/source/reference/commands/clearlock.txt +0 -63
- data/vendor/local/share/doc/groonga/source/reference/commands/column_create.txt +0 -95
- data/vendor/local/share/doc/groonga/source/reference/commands/column_list.txt +0 -111
- data/vendor/local/share/doc/groonga/source/reference/commands/column_remove.txt +0 -60
- data/vendor/local/share/doc/groonga/source/reference/commands/define_selector.txt +0 -116
- data/vendor/local/share/doc/groonga/source/reference/commands/defrag.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/commands/delete.txt +0 -72
- data/vendor/local/share/doc/groonga/source/reference/commands/dump.txt +0 -91
- data/vendor/local/share/doc/groonga/source/reference/commands/load.txt +0 -100
- data/vendor/local/share/doc/groonga/source/reference/commands/log_level.txt +0 -67
- data/vendor/local/share/doc/groonga/source/reference/commands/log_put.txt +0 -71
- data/vendor/local/share/doc/groonga/source/reference/commands/log_reopen.txt +0 -68
- data/vendor/local/share/doc/groonga/source/reference/commands/quit.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/commands/register.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/commands/select.txt +0 -894
- data/vendor/local/share/doc/groonga/source/reference/commands/shutdown.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/commands/status.txt +0 -60
- data/vendor/local/share/doc/groonga/source/reference/commands/suggest.txt +0 -270
- data/vendor/local/share/doc/groonga/source/reference/commands/table_create.txt +0 -286
- data/vendor/local/share/doc/groonga/source/reference/commands/table_list.txt +0 -81
- data/vendor/local/share/doc/groonga/source/reference/commands/table_remove.txt +0 -52
- data/vendor/local/share/doc/groonga/source/reference/commands/view_add.txt +0 -55
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/add.txt +0 -104
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/get.txt +0 -80
- data/vendor/local/share/doc/groonga/source/reference/commands_not_implemented/set.txt +0 -105
- data/vendor/local/share/doc/groonga/source/reference/executables/grnslap.txt +0 -66
- data/vendor/local/share/doc/groonga/source/reference/executables/grntest.txt +0 -273
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-httpd.txt +0 -209
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-server-http.txt +0 -56
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga-suggest-create-dataset.txt +0 -50
- data/vendor/local/share/doc/groonga/source/reference/executables/groonga.txt +0 -248
- data/vendor/local/share/doc/groonga/source/reference/executables.txt +0 -14
- data/vendor/local/share/doc/groonga/source/reference/function.txt +0 -20
- data/vendor/local/share/doc/groonga/source/reference/functions/edit_distance.txt +0 -48
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_distance.txt +0 -301
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_in_circle.txt +0 -81
- data/vendor/local/share/doc/groonga/source/reference/functions/geo_in_rectangle.txt +0 -55
- data/vendor/local/share/doc/groonga/source/reference/functions/now.txt +0 -36
- data/vendor/local/share/doc/groonga/source/reference/functions/rand.txt +0 -43
- data/vendor/local/share/doc/groonga/source/reference/functions/snippet_html.txt +0 -120
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/query_syntax.txt +0 -584
- data/vendor/local/share/doc/groonga/source/reference/grn_expr/script_syntax.txt +0 -805
- data/vendor/local/share/doc/groonga/source/reference/grn_expr.txt +0 -59
- data/vendor/local/share/doc/groonga/source/reference/indexing.txt +0 -110
- data/vendor/local/share/doc/groonga/source/reference/log.txt +0 -214
- data/vendor/local/share/doc/groonga/source/reference/normalizers.txt +0 -122
- data/vendor/local/share/doc/groonga/source/reference/output.txt +0 -164
- data/vendor/local/share/doc/groonga/source/reference/pseudo_column.txt +0 -40
- data/vendor/local/share/doc/groonga/source/reference/query_expanders/tsv.txt +0 -153
- data/vendor/local/share/doc/groonga/source/reference/query_expanders.txt +0 -12
- data/vendor/local/share/doc/groonga/source/reference/tables.txt +0 -163
- data/vendor/local/share/doc/groonga/source/reference/tokenizers.txt +0 -8
- data/vendor/local/share/doc/groonga/source/reference/types.txt +0 -129
- data/vendor/local/share/doc/groonga/source/reference.txt +0 -24
- data/vendor/local/share/doc/groonga/source/server/gqtp.txt +0 -16
- data/vendor/local/share/doc/groonga/source/server/http/comparison.txt +0 -298
- data/vendor/local/share/doc/groonga/source/server/http/groonga-httpd.txt +0 -8
- data/vendor/local/share/doc/groonga/source/server/http/groonga.txt +0 -8
- data/vendor/local/share/doc/groonga/source/server/http.txt +0 -29
- data/vendor/local/share/doc/groonga/source/server.txt +0 -12
- data/vendor/local/share/doc/groonga/source/spec/gqtp.txt +0 -214
- data/vendor/local/share/doc/groonga/source/spec/search.txt +0 -115
- data/vendor/local/share/doc/groonga/source/spec.txt +0 -12
- data/vendor/local/share/doc/groonga/source/suggest/completion.txt +0 -195
- data/vendor/local/share/doc/groonga/source/suggest/correction.txt +0 -148
- data/vendor/local/share/doc/groonga/source/suggest/introduction.txt +0 -96
- data/vendor/local/share/doc/groonga/source/suggest/suggestion.txt +0 -115
- data/vendor/local/share/doc/groonga/source/suggest/tutorial.txt +0 -8
- data/vendor/local/share/doc/groonga/source/suggest.txt +0 -17
- data/vendor/local/share/doc/groonga/source/textile.py +0 -771
- data/vendor/local/share/doc/groonga/source/troubleshooting/different_results_with_the_same_keyword.txt +0 -135
- data/vendor/local/share/doc/groonga/source/troubleshooting.txt +0 -12
- data/vendor/local/share/doc/groonga/source/tutorial/data.txt +0 -155
- data/vendor/local/share/doc/groonga/source/tutorial/drilldown.txt +0 -66
- data/vendor/local/share/doc/groonga/source/tutorial/index.txt +0 -118
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +0 -286
- data/vendor/local/share/doc/groonga/source/tutorial/lexicon.txt +0 -11
- data/vendor/local/share/doc/groonga/source/tutorial/match_columns.txt +0 -220
- data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +0 -487
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +0 -142
- data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +0 -53
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +0 -62
- data/vendor/local/share/doc/groonga/source/tutorial/search.txt +0 -121
- data/vendor/local/share/doc/groonga/source/tutorial.txt +0 -21
@@ -1,4 +1,4 @@
|
|
1
|
-
.TH "GROONGA" "1" "
|
1
|
+
.TH "GROONGA" "1" "January 28, 2013" "2.1.2" "groonga"
|
2
2
|
.SH NAME
|
3
3
|
groonga \- groonga documentation
|
4
4
|
.
|
@@ -104,20 +104,60 @@ memory error with a 32\-bit package even if you just process medium
|
|
104
104
|
size data.
|
105
105
|
.SS Installer
|
106
106
|
.sp
|
107
|
-
For 32\-bit environment, download
|
108
|
-
and run it.
|
107
|
+
For 32\-bit environment, download x86 executable binary from packages.groonga.org.
|
109
108
|
.sp
|
110
|
-
|
111
|
-
|
109
|
+
You can download such a binary by command line operation.
|
110
|
+
.sp
|
111
|
+
Start command prompt \fBcmd.exe\fP and download x86 executable binary by default browser:
|
112
|
+
.sp
|
113
|
+
.nf
|
114
|
+
.ft C
|
115
|
+
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/windows/groonga/groonga\-2.1.2\-x86.exe
|
116
|
+
.ft P
|
117
|
+
.fi
|
118
|
+
.sp
|
119
|
+
Then run it.
|
120
|
+
.sp
|
121
|
+
For 64\-bit environment, download x64 executable binary from packages.groonga.org.
|
122
|
+
.sp
|
123
|
+
Start command prompt \fBcmd.exe\fP and download x64 executable binary by default browser:
|
124
|
+
.sp
|
125
|
+
.nf
|
126
|
+
.ft C
|
127
|
+
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/windows/groonga/groonga\-2.1.2\-x64.exe
|
128
|
+
.ft P
|
129
|
+
.fi
|
130
|
+
.sp
|
131
|
+
Then run it.
|
112
132
|
.sp
|
113
133
|
Use command prompt for \fB/reference/executables/groonga\fP installed in start menu.
|
114
134
|
.SS zip
|
115
135
|
.sp
|
116
|
-
For 32\-bit environment, download
|
117
|
-
|
136
|
+
For 32\-bit environment, download x86 zip archive from packages.groonga.org.
|
137
|
+
.sp
|
138
|
+
You can download such a binary by command line operation.
|
139
|
+
.sp
|
140
|
+
Start command prompt \fBcmd.exe\fP and download x86 zip archive by default browser:
|
141
|
+
.sp
|
142
|
+
.nf
|
143
|
+
.ft C
|
144
|
+
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/windows/groonga/groonga\-2.1.2\-x86.zip
|
145
|
+
.ft P
|
146
|
+
.fi
|
147
|
+
.sp
|
148
|
+
Then extract it.
|
149
|
+
.sp
|
150
|
+
For 64\-bit environment, download x64 zip archive from packages.groonga.org.
|
118
151
|
.sp
|
119
|
-
|
120
|
-
|
152
|
+
Start command prompt \fBcmd.exe\fP and download x64 zip archive by default browser:
|
153
|
+
.sp
|
154
|
+
.nf
|
155
|
+
.ft C
|
156
|
+
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/windows/groonga/groonga\-2.1.2\-x64.zip
|
157
|
+
.ft P
|
158
|
+
.fi
|
159
|
+
.sp
|
160
|
+
Then extract it.
|
121
161
|
.sp
|
122
162
|
\fB/reference/executables/groonga\fP is in \fBbin\fP folder.
|
123
163
|
.SS Build from source
|
@@ -135,15 +175,27 @@ Windows. Here are required tools:
|
|
135
175
|
.UNINDENT
|
136
176
|
.UNINDENT
|
137
177
|
.sp
|
138
|
-
Download zipped source
|
139
|
-
|
178
|
+
Download zipped source from packages.groonga.org.
|
179
|
+
.sp
|
180
|
+
You can download such a zipped source file by command line operation.
|
140
181
|
.sp
|
141
182
|
Start \fBVisual Studio Command Prompt (2010)\fP installed by Microsoft
|
142
|
-
Visual Studio 2010 Express and
|
183
|
+
Visual Studio 2010 Express and download it by default browser:
|
184
|
+
.sp
|
185
|
+
.nf
|
186
|
+
.ft C
|
187
|
+
> cd c:\eUsers\e%USERNAME%\eDownloads
|
188
|
+
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/source/groonga/groonga\-2.1.2.zip
|
189
|
+
.ft P
|
190
|
+
.fi
|
191
|
+
.sp
|
192
|
+
Then extract it.
|
193
|
+
.sp
|
194
|
+
Move to the groonga\(aqs source folder:
|
143
195
|
.sp
|
144
196
|
.nf
|
145
197
|
.ft C
|
146
|
-
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-2.1.
|
198
|
+
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-2.1.2
|
147
199
|
.ft P
|
148
200
|
.fi
|
149
201
|
.sp
|
@@ -153,7 +205,7 @@ parameter instead:
|
|
153
205
|
.sp
|
154
206
|
.nf
|
155
207
|
.ft C
|
156
|
-
groonga\-2.1.
|
208
|
+
groonga\-2.1.2> cmake . \-G "Visual Studio 10 Win64" \-DCMAKE_INSTALL_PREFIX=C:\egroonga
|
157
209
|
.ft P
|
158
210
|
.fi
|
159
211
|
.sp
|
@@ -161,7 +213,7 @@ Build by Visual C++ 2010 Express:
|
|
161
213
|
.sp
|
162
214
|
.nf
|
163
215
|
.ft C
|
164
|
-
groonga\-2.1.
|
216
|
+
groonga\-2.1.2> msbuild groonga.sln /p:Configuration=Release
|
165
217
|
.ft P
|
166
218
|
.fi
|
167
219
|
.sp
|
@@ -169,7 +221,7 @@ Install by Visual C++ 2010 Express:
|
|
169
221
|
.sp
|
170
222
|
.nf
|
171
223
|
.ft C
|
172
|
-
groonga\-2.1.
|
224
|
+
groonga\-2.1.2> msbuild groonga.sln /p:Configuration=Release /t:Install
|
173
225
|
.ft P
|
174
226
|
.fi
|
175
227
|
.sp
|
@@ -179,7 +231,7 @@ Build by Visual Studio 2010:
|
|
179
231
|
.sp
|
180
232
|
.nf
|
181
233
|
.ft C
|
182
|
-
groonga\-2.1.
|
234
|
+
groonga\-2.1.2> devenv groonga.sln /Build Release
|
183
235
|
.ft P
|
184
236
|
.fi
|
185
237
|
.sp
|
@@ -187,7 +239,7 @@ Install by Visual Studio 2010:
|
|
187
239
|
.sp
|
188
240
|
.nf
|
189
241
|
.ft C
|
190
|
-
groonga\-2.1.
|
242
|
+
groonga\-2.1.2> devenv groonga.sln /Build Release /Project Install
|
191
243
|
.ft P
|
192
244
|
.fi
|
193
245
|
.sp
|
@@ -229,9 +281,9 @@ Download source:
|
|
229
281
|
.sp
|
230
282
|
.nf
|
231
283
|
.ft C
|
232
|
-
% curl \-O http://packages.groonga.org/source/groonga/groonga\-2.1.
|
233
|
-
% tar xvzf groonga\-2.1.
|
234
|
-
% cd groonga\-2.1.
|
284
|
+
% curl \-O http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
285
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
286
|
+
% cd groonga\-2.1.2
|
235
287
|
.ft P
|
236
288
|
.fi
|
237
289
|
.sp
|
@@ -268,6 +320,23 @@ recommend a 64\-bit package for server. You should use a 32\-bit package
|
|
268
320
|
just only for tests or development. You will encounter an out of
|
269
321
|
memory error with a 32\-bit package even if you just process medium
|
270
322
|
size data.
|
323
|
+
.IP Note
|
324
|
+
The package \(aqgroonga\(aq is the mininum set of fulltext search engine.
|
325
|
+
If you want to use groonga for server use, you can install
|
326
|
+
additional preconfigured packages.
|
327
|
+
.sp
|
328
|
+
There are three packages for server use.
|
329
|
+
.INDENT 0.0
|
330
|
+
.IP \(bu 2
|
331
|
+
groonga\-server\-http (simple HTTP protocol based server package)
|
332
|
+
.IP \(bu 2
|
333
|
+
groonga\-httpd (nginx and HTTP protocol based server package)
|
334
|
+
.IP \(bu 2
|
335
|
+
groonga\-server\-gqtp (GQTP protocol based server package)
|
336
|
+
.UNINDENT
|
337
|
+
.sp
|
338
|
+
See \fB/server\fP section about details.
|
339
|
+
.RE
|
271
340
|
.SS squeeze
|
272
341
|
.sp
|
273
342
|
Add the groonga apt repository.
|
@@ -417,9 +486,9 @@ Download source:
|
|
417
486
|
.sp
|
418
487
|
.nf
|
419
488
|
.ft C
|
420
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
421
|
-
% tar xvzf groonga\-2.1.
|
422
|
-
% cd groonga\-2.1.
|
489
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
490
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
491
|
+
% cd groonga\-2.1.2
|
423
492
|
.ft P
|
424
493
|
.fi
|
425
494
|
.sp
|
@@ -456,6 +525,23 @@ recommend a 64\-bit package for server. You should use a 32\-bit package
|
|
456
525
|
just only for tests or development. You will encounter an out of
|
457
526
|
memory error with a 32\-bit package even if you just process medium
|
458
527
|
size data.
|
528
|
+
.IP Note
|
529
|
+
The package \(aqgroonga\(aq is the mininum set of fulltext search engine.
|
530
|
+
If you want to use groonga for server use, you can install
|
531
|
+
additional preconfigured packages.
|
532
|
+
.sp
|
533
|
+
There are three packages for server use.
|
534
|
+
.INDENT 0.0
|
535
|
+
.IP \(bu 2
|
536
|
+
groonga\-server\-http (simple HTTP protocol based server package)
|
537
|
+
.IP \(bu 2
|
538
|
+
groonga\-httpd (nginx and HTTP protocol based server package)
|
539
|
+
.IP \(bu 2
|
540
|
+
groonga\-server\-gqtp (GQTP protocol based server package)
|
541
|
+
.UNINDENT
|
542
|
+
.sp
|
543
|
+
See \fB/server\fP section about details.
|
544
|
+
.RE
|
459
545
|
.SS 10.04 LTS Lucid Lynx
|
460
546
|
.IP Note
|
461
547
|
Enable the universe repository to install groonga:
|
@@ -690,9 +776,9 @@ Download source:
|
|
690
776
|
.sp
|
691
777
|
.nf
|
692
778
|
.ft C
|
693
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
694
|
-
% tar xvzf groonga\-2.1.
|
695
|
-
% cd groonga\-2.1.
|
779
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
780
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
781
|
+
% cd groonga\-2.1.2
|
696
782
|
.ft P
|
697
783
|
.fi
|
698
784
|
.sp
|
@@ -729,6 +815,23 @@ recommend a 64\-bit package for server. You should use a 32\-bit package
|
|
729
815
|
just only for tests or development. You will encounter an out of
|
730
816
|
memory error with a 32\-bit package even if you just process medium
|
731
817
|
size data.
|
818
|
+
.IP Note
|
819
|
+
The package \(aqgroonga\(aq is the mininum set of fulltext search engine.
|
820
|
+
If you want to use groonga for server use, you can install
|
821
|
+
additional preconfigured packages.
|
822
|
+
.sp
|
823
|
+
There are three packages for server use.
|
824
|
+
.INDENT 0.0
|
825
|
+
.IP \(bu 2
|
826
|
+
groonga\-server\-http (simple HTTP protocol based server package)
|
827
|
+
.IP \(bu 2
|
828
|
+
groonga\-httpd (nginx and HTTP protocol based server package)
|
829
|
+
.IP \(bu 2
|
830
|
+
groonga\-server\-gqtp (GQTP protocol based server package)
|
831
|
+
.UNINDENT
|
832
|
+
.sp
|
833
|
+
See \fB/server\fP section about details.
|
834
|
+
.RE
|
732
835
|
.SS CentOS 5
|
733
836
|
.sp
|
734
837
|
Install:
|
@@ -893,9 +996,9 @@ Download source:
|
|
893
996
|
.sp
|
894
997
|
.nf
|
895
998
|
.ft C
|
896
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
897
|
-
% tar xvzf groonga\-2.1.
|
898
|
-
% cd groonga\-2.1.
|
999
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
1000
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
1001
|
+
% cd groonga\-2.1.2
|
899
1002
|
.ft P
|
900
1003
|
.fi
|
901
1004
|
.sp
|
@@ -940,7 +1043,24 @@ recommend a 64\-bit package for server. You should use a 32\-bit package
|
|
940
1043
|
just only for tests or development. You will encounter an out of
|
941
1044
|
memory error with a 32\-bit package even if you just process medium
|
942
1045
|
size data.
|
943
|
-
.
|
1046
|
+
.IP Note
|
1047
|
+
The package \(aqgroonga\(aq is the mininum set of fulltext search engine.
|
1048
|
+
If you want to use groonga for server use, you can install
|
1049
|
+
additional preconfigured packages.
|
1050
|
+
.sp
|
1051
|
+
There are three packages for server use.
|
1052
|
+
.INDENT 0.0
|
1053
|
+
.IP \(bu 2
|
1054
|
+
groonga\-server\-http (simple HTTP protocol based server package)
|
1055
|
+
.IP \(bu 2
|
1056
|
+
groonga\-httpd (nginx and HTTP protocol based server package)
|
1057
|
+
.IP \(bu 2
|
1058
|
+
groonga\-server\-gqtp (GQTP protocol based server package)
|
1059
|
+
.UNINDENT
|
1060
|
+
.sp
|
1061
|
+
See \fB/server\fP section about details.
|
1062
|
+
.RE
|
1063
|
+
.SS Fedora 18
|
944
1064
|
.sp
|
945
1065
|
Install:
|
946
1066
|
.sp
|
@@ -1005,9 +1125,9 @@ Download source:
|
|
1005
1125
|
.sp
|
1006
1126
|
.nf
|
1007
1127
|
.ft C
|
1008
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
1009
|
-
% tar xvzf groonga\-2.1.
|
1010
|
-
% cd groonga\-2.1.
|
1128
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
1129
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
1130
|
+
% cd groonga\-2.1.2
|
1011
1131
|
.ft P
|
1012
1132
|
.fi
|
1013
1133
|
.sp
|
@@ -1052,9 +1172,9 @@ Download source:
|
|
1052
1172
|
.sp
|
1053
1173
|
.nf
|
1054
1174
|
.ft C
|
1055
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
1056
|
-
% gtar xvzf groonga\-2.1.
|
1057
|
-
% cd groonga\-2.1.
|
1175
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
1176
|
+
% gtar xvzf groonga\-2.1.2.tar.gz
|
1177
|
+
% cd groonga\-2.1.2
|
1058
1178
|
.ft P
|
1059
1179
|
.fi
|
1060
1180
|
.sp
|
@@ -1178,9 +1298,9 @@ steps:
|
|
1178
1298
|
.sp
|
1179
1299
|
.nf
|
1180
1300
|
.ft C
|
1181
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.
|
1182
|
-
% tar xvzf groonga\-2.1.
|
1183
|
-
% cd groonga\-2.1.
|
1301
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-2.1.2.tar.gz
|
1302
|
+
% tar xvzf groonga\-2.1.2.tar.gz
|
1303
|
+
% cd groonga\-2.1.2
|
1184
1304
|
% ./configure
|
1185
1305
|
% make
|
1186
1306
|
% sudo make install
|
@@ -7569,6 +7689,334 @@ are treated.
|
|
7569
7689
|
.sp
|
7570
7690
|
Coming soon...
|
7571
7691
|
.SH SERVER
|
7692
|
+
.SS Server packages
|
7693
|
+
.sp
|
7694
|
+
The package \fBgroonga\fP is the mininum set of fulltext search engine.
|
7695
|
+
If you want to use groonga for server use, you can install
|
7696
|
+
additional preconfigured packages.
|
7697
|
+
.sp
|
7698
|
+
There are three packages for server use.
|
7699
|
+
.INDENT 0.0
|
7700
|
+
.IP \(bu 2
|
7701
|
+
\fBgroonga\-httpd\fP (nginx and HTTP protocol based server package)
|
7702
|
+
.IP \(bu 2
|
7703
|
+
\fBgroonga\-server\-http\fP (simple HTTP protocol based server package)
|
7704
|
+
.IP \(bu 2
|
7705
|
+
\fBgroonga\-server\-gqtp\fP (GQTP protocol based server package)
|
7706
|
+
.UNINDENT
|
7707
|
+
.sp
|
7708
|
+
Note that there is a conflict between \fBgroonga\-httpd\fP and \fBgroonga\-server\-http\fP
|
7709
|
+
package because of port number.
|
7710
|
+
See \fB/server/http/comparison\fP if you want to know which package meets your demands.
|
7711
|
+
.SS groonga\-httpd
|
7712
|
+
.sp
|
7713
|
+
\fBgroonga\-httpd\fP is a nginx and HTTP protocol based server package.
|
7714
|
+
.sp
|
7715
|
+
Preconfigured setting:
|
7716
|
+
.TS
|
7717
|
+
center;
|
7718
|
+
|l|l|.
|
7719
|
+
_
|
7720
|
+
T{
|
7721
|
+
Item
|
7722
|
+
T} T{
|
7723
|
+
Default value
|
7724
|
+
T}
|
7725
|
+
_
|
7726
|
+
T{
|
7727
|
+
Port number
|
7728
|
+
T} T{
|
7729
|
+
10041
|
7730
|
+
T}
|
7731
|
+
_
|
7732
|
+
T{
|
7733
|
+
Access log path
|
7734
|
+
T} T{
|
7735
|
+
/var/log/groonga/httpd/acccess.log
|
7736
|
+
T}
|
7737
|
+
_
|
7738
|
+
T{
|
7739
|
+
Error log path
|
7740
|
+
T} T{
|
7741
|
+
/var/log/groonga/http\-query.log
|
7742
|
+
T}
|
7743
|
+
_
|
7744
|
+
T{
|
7745
|
+
Database
|
7746
|
+
T} T{
|
7747
|
+
/var/lib/groonga/db/*
|
7748
|
+
T}
|
7749
|
+
_
|
7750
|
+
T{
|
7751
|
+
Configuration file
|
7752
|
+
T} T{
|
7753
|
+
/etc/groonga/httpd/groonga\-httpd.conf
|
7754
|
+
T}
|
7755
|
+
_
|
7756
|
+
.TE
|
7757
|
+
.SS Start HTTP server
|
7758
|
+
.sp
|
7759
|
+
Starting groonga HTTP server(Debian/Ubuntu/CentOS):
|
7760
|
+
.sp
|
7761
|
+
.nf
|
7762
|
+
.ft C
|
7763
|
+
% sudo service groonga\-httpd start
|
7764
|
+
.ft P
|
7765
|
+
.fi
|
7766
|
+
.sp
|
7767
|
+
Starting groonga HTTP server(Fedora):
|
7768
|
+
.sp
|
7769
|
+
.nf
|
7770
|
+
.ft C
|
7771
|
+
% sudo systemctl start groonga\-httpd
|
7772
|
+
.ft P
|
7773
|
+
.fi
|
7774
|
+
.SS Stop HTTP server
|
7775
|
+
.sp
|
7776
|
+
Stopping groonga HTTP server(Debian/Ubuntu/CentOS):
|
7777
|
+
.sp
|
7778
|
+
.nf
|
7779
|
+
.ft C
|
7780
|
+
% sudo service groonga\-httpd stop
|
7781
|
+
.ft P
|
7782
|
+
.fi
|
7783
|
+
.sp
|
7784
|
+
Starting groonga HTTP server(Fedora):
|
7785
|
+
.sp
|
7786
|
+
.nf
|
7787
|
+
.ft C
|
7788
|
+
% sudo systemctl stop groonga\-httpd
|
7789
|
+
.ft P
|
7790
|
+
.fi
|
7791
|
+
.SS Restart HTTP server
|
7792
|
+
.sp
|
7793
|
+
Restarting groonga HTTP server(Debian/Ubuntu/CentOS):
|
7794
|
+
.sp
|
7795
|
+
.nf
|
7796
|
+
.ft C
|
7797
|
+
% sudo service groonga\-httpd restart
|
7798
|
+
.ft P
|
7799
|
+
.fi
|
7800
|
+
.sp
|
7801
|
+
Restarting groonga HTTP server(Fedora):
|
7802
|
+
.sp
|
7803
|
+
.nf
|
7804
|
+
.ft C
|
7805
|
+
% sudo systemctl restart groonga\-httpd
|
7806
|
+
.ft P
|
7807
|
+
.fi
|
7808
|
+
.SS groonga\-server\-http
|
7809
|
+
.sp
|
7810
|
+
\fBgroonga\-server\-http\fP is a simple HTTP protocol based server package.
|
7811
|
+
.sp
|
7812
|
+
Preconfigured setting:
|
7813
|
+
.TS
|
7814
|
+
center;
|
7815
|
+
|l|l|.
|
7816
|
+
_
|
7817
|
+
T{
|
7818
|
+
Item
|
7819
|
+
T} T{
|
7820
|
+
Default value
|
7821
|
+
T}
|
7822
|
+
_
|
7823
|
+
T{
|
7824
|
+
Port number
|
7825
|
+
T} T{
|
7826
|
+
10041
|
7827
|
+
T}
|
7828
|
+
_
|
7829
|
+
T{
|
7830
|
+
\fIprocess\-log\fP
|
7831
|
+
T} T{
|
7832
|
+
/var/log/groonga/groonga\-http.log
|
7833
|
+
T}
|
7834
|
+
_
|
7835
|
+
T{
|
7836
|
+
\fIquery\-log\fP
|
7837
|
+
T} T{
|
7838
|
+
/var/log/groonga/http\-query.log
|
7839
|
+
T}
|
7840
|
+
_
|
7841
|
+
T{
|
7842
|
+
Database
|
7843
|
+
T} T{
|
7844
|
+
/var/lib/groonga/db/*
|
7845
|
+
T}
|
7846
|
+
_
|
7847
|
+
.TE
|
7848
|
+
.sp
|
7849
|
+
Configuration file for server setting (Debian/Ubuntu):
|
7850
|
+
.sp
|
7851
|
+
.nf
|
7852
|
+
.ft C
|
7853
|
+
/etc/default/groonga/groonga\-server\-http
|
7854
|
+
.ft P
|
7855
|
+
.fi
|
7856
|
+
.sp
|
7857
|
+
Configuration file for server setting (CentOS):
|
7858
|
+
.sp
|
7859
|
+
.nf
|
7860
|
+
.ft C
|
7861
|
+
/etc/sysconfig/groonga\-server\-http
|
7862
|
+
.ft P
|
7863
|
+
.fi
|
7864
|
+
.SS Start HTTP server
|
7865
|
+
.sp
|
7866
|
+
Starting groonga HTTP server(Debian/Ubuntu/CentOS):
|
7867
|
+
.sp
|
7868
|
+
.nf
|
7869
|
+
.ft C
|
7870
|
+
% sudo service groonga\-server\-http start
|
7871
|
+
.ft P
|
7872
|
+
.fi
|
7873
|
+
.sp
|
7874
|
+
Starting groonga HTTP server(Fedora):
|
7875
|
+
.sp
|
7876
|
+
.nf
|
7877
|
+
.ft C
|
7878
|
+
% sudo systemctl start groonga\-server\-http
|
7879
|
+
.ft P
|
7880
|
+
.fi
|
7881
|
+
.SS Stop HTTP server
|
7882
|
+
.sp
|
7883
|
+
Stopping groonga HTTP server(Debian/Ubuntu/CentOS):
|
7884
|
+
.sp
|
7885
|
+
.nf
|
7886
|
+
.ft C
|
7887
|
+
% sudo service groonga\-server\-http stop
|
7888
|
+
.ft P
|
7889
|
+
.fi
|
7890
|
+
.sp
|
7891
|
+
Stopping groonga HTTP server(Fedora):
|
7892
|
+
.sp
|
7893
|
+
.nf
|
7894
|
+
.ft C
|
7895
|
+
% sudo systemctl stop groonga\-server\-http
|
7896
|
+
.ft P
|
7897
|
+
.fi
|
7898
|
+
.SS Restart HTTP server
|
7899
|
+
.sp
|
7900
|
+
Restarting groonga HTTP server(Debian/Ubuntu/CentOS):
|
7901
|
+
.sp
|
7902
|
+
.nf
|
7903
|
+
.ft C
|
7904
|
+
% sudo service groonga\-server\-http restart
|
7905
|
+
.ft P
|
7906
|
+
.fi
|
7907
|
+
.sp
|
7908
|
+
Restarting groonga HTTP server(Fedora):
|
7909
|
+
.sp
|
7910
|
+
.nf
|
7911
|
+
.ft C
|
7912
|
+
% sudo systemctl restart groonga\-server\-http
|
7913
|
+
.ft P
|
7914
|
+
.fi
|
7915
|
+
.SS groonga\-server\-gqtp
|
7916
|
+
.sp
|
7917
|
+
\fBgroonga\-server\-gqtp\fP is a GQTP protocol based server package.
|
7918
|
+
.TS
|
7919
|
+
center;
|
7920
|
+
|l|l|.
|
7921
|
+
_
|
7922
|
+
T{
|
7923
|
+
Item
|
7924
|
+
T} T{
|
7925
|
+
Default value
|
7926
|
+
T}
|
7927
|
+
_
|
7928
|
+
T{
|
7929
|
+
Port number
|
7930
|
+
T} T{
|
7931
|
+
10043
|
7932
|
+
T}
|
7933
|
+
_
|
7934
|
+
T{
|
7935
|
+
\fIprocess\-log\fP
|
7936
|
+
T} T{
|
7937
|
+
/var/log/groonga/groonga\-gqtp.log
|
7938
|
+
T}
|
7939
|
+
_
|
7940
|
+
T{
|
7941
|
+
\fIquery\-log\fP
|
7942
|
+
T} T{
|
7943
|
+
/var/log/groonga/gqtp\-query.log
|
7944
|
+
T}
|
7945
|
+
_
|
7946
|
+
T{
|
7947
|
+
Database
|
7948
|
+
T} T{
|
7949
|
+
/var/lib/groonga/db/*
|
7950
|
+
T}
|
7951
|
+
_
|
7952
|
+
.TE
|
7953
|
+
.sp
|
7954
|
+
Configuration file for server setting (Debian/Ubuntu):
|
7955
|
+
.sp
|
7956
|
+
.nf
|
7957
|
+
.ft C
|
7958
|
+
/etc/default/groonga/groonga\-server\-gqtp
|
7959
|
+
.ft P
|
7960
|
+
.fi
|
7961
|
+
.sp
|
7962
|
+
Configuration file for server setting (CentOS):
|
7963
|
+
.sp
|
7964
|
+
.nf
|
7965
|
+
.ft C
|
7966
|
+
/etc/sysconfig/groonga\-server\-gqtp
|
7967
|
+
.ft P
|
7968
|
+
.fi
|
7969
|
+
.SS Start GQTP server
|
7970
|
+
.sp
|
7971
|
+
Starting groonga GQTP server(Debian/Ubuntu/CentOS):
|
7972
|
+
.sp
|
7973
|
+
.nf
|
7974
|
+
.ft C
|
7975
|
+
% sudo service groonga\-server\-gqtp start
|
7976
|
+
.ft P
|
7977
|
+
.fi
|
7978
|
+
.sp
|
7979
|
+
Starting groonga GQTP server(Fedora):
|
7980
|
+
.sp
|
7981
|
+
.nf
|
7982
|
+
.ft C
|
7983
|
+
% sudo systemctl start groonga\-server\-gqtp
|
7984
|
+
.ft P
|
7985
|
+
.fi
|
7986
|
+
.SS Stop GQTP server
|
7987
|
+
.sp
|
7988
|
+
Stopping groonga GQTP server(Debian/Ubuntu/CentOS):
|
7989
|
+
.sp
|
7990
|
+
.nf
|
7991
|
+
.ft C
|
7992
|
+
% sudo service groonga\-server\-http stop
|
7993
|
+
.ft P
|
7994
|
+
.fi
|
7995
|
+
.sp
|
7996
|
+
Stopping groonga GQTP server(Fedora):
|
7997
|
+
.sp
|
7998
|
+
.nf
|
7999
|
+
.ft C
|
8000
|
+
% sudo systemctl stop groonga\-server\-gqtp
|
8001
|
+
.ft P
|
8002
|
+
.fi
|
8003
|
+
.SS Restart GQTP server
|
8004
|
+
.sp
|
8005
|
+
Restarting groonga HTTP server(Debian/Ubuntu/CentOS):
|
8006
|
+
.sp
|
8007
|
+
.nf
|
8008
|
+
.ft C
|
8009
|
+
% sudo service groonga\-server\-gqtp restart
|
8010
|
+
.ft P
|
8011
|
+
.fi
|
8012
|
+
.sp
|
8013
|
+
Restarting groonga HTTP server(Fedora):
|
8014
|
+
.sp
|
8015
|
+
.nf
|
8016
|
+
.ft C
|
8017
|
+
% sudo systemctl restart groonga\-server\-gqtp
|
8018
|
+
.ft P
|
8019
|
+
.fi
|
7572
8020
|
.SS GQTP
|
7573
8021
|
.sp
|
7574
8022
|
TODO
|
@@ -9899,9 +10347,7 @@ clearlockは、対象となるオブジェクト(データベース,テーブル
|
|
9899
10347
|
対象となるオブジェクト名を指定します。空の場合、開いているdbオブジェクトが対象となります。
|
9900
10348
|
.UNINDENT
|
9901
10349
|
.UNINDENT
|
9902
|
-
.
|
9903
|
-
返値
|
9904
|
-
\-\-\-
|
10350
|
+
.SS 返値
|
9905
10351
|
.SS json形式
|
9906
10352
|
.sp
|
9907
10353
|
.nf
|
@@ -14538,63 +14984,11 @@ table_remove name
|
|
14538
14984
|
groonga組込コマンドの一つであるtable_removeについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。
|
14539
14985
|
.sp
|
14540
14986
|
table_removeはテーブルと定義されているカラムを削除します。カラムに付随するインデックスも再帰的に削除されます。
|
14541
|
-
.SS 引数
|
14542
|
-
.INDENT 0.0
|
14543
|
-
.TP
|
14544
|
-
.B \fBname\fP
|
14545
|
-
削除対象のカラムが定義されているテーブルの名前を指定します。
|
14546
|
-
.UNINDENT
|
14547
|
-
.SS 返値
|
14548
|
-
.SS json形式
|
14549
|
-
.sp
|
14550
|
-
.nf
|
14551
|
-
.ft C
|
14552
|
-
[成功かどうかのフラグ]
|
14553
|
-
|
14554
|
-
\(ga\(ga成功かどうかのフラグ\(ga\(ga
|
14555
|
-
|
14556
|
-
エラーが生じなかった場合にはtrue、エラーが生じた場合にはfalseを返す。
|
14557
|
-
.ft P
|
14558
|
-
.fi
|
14559
|
-
.SS 例
|
14560
|
-
.sp
|
14561
|
-
.nf
|
14562
|
-
.ft C
|
14563
|
-
table_remove Entry
|
14564
|
-
|
14565
|
-
[true]
|
14566
|
-
.ft P
|
14567
|
-
.fi
|
14568
|
-
.SS view_add
|
14569
|
-
.SS 名前
|
14570
|
-
.sp
|
14571
|
-
view_add \- view型のテーブルに要素となるテーブルを追加
|
14572
|
-
.SS 書式
|
14573
|
-
.sp
|
14574
|
-
.nf
|
14575
|
-
.ft C
|
14576
|
-
view_add view table
|
14577
|
-
.ft P
|
14578
|
-
.fi
|
14579
|
-
.SS 説明
|
14580
|
-
.sp
|
14581
|
-
groonga組込コマンドの一つであるview_addについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。
|
14582
|
-
.sp
|
14583
|
-
view_addは、view型のテーブルに要素となるテーブルを定義します。
|
14584
|
-
.SS 引数
|
14585
|
-
.sp
|
14586
|
-
\fBview\fP
|
14587
|
-
.INDENT 0.0
|
14588
|
-
.INDENT 3.5
|
14589
|
-
テーブルを追加するview型のテーブルの名前を指定します。
|
14590
|
-
.UNINDENT
|
14591
|
-
.UNINDENT
|
14592
|
-
.sp
|
14593
|
-
\fBtable\fP
|
14987
|
+
.SS 引数
|
14594
14988
|
.INDENT 0.0
|
14595
|
-
.
|
14596
|
-
|
14597
|
-
|
14989
|
+
.TP
|
14990
|
+
.B \fBname\fP
|
14991
|
+
削除対象のカラムが定義されているテーブルの名前を指定します。
|
14598
14992
|
.UNINDENT
|
14599
14993
|
.SS 返値
|
14600
14994
|
.SS json形式
|
@@ -14609,12 +15003,14 @@ view型のテーブルに追加されるテーブルの名前を指定します
|
|
14609
15003
|
.ft P
|
14610
15004
|
.fi
|
14611
15005
|
.SS 例
|
14612
|
-
.
|
14613
|
-
.
|
14614
|
-
.
|
14615
|
-
|
15006
|
+
.sp
|
15007
|
+
.nf
|
15008
|
+
.ft C
|
15009
|
+
table_remove Entry
|
15010
|
+
|
14616
15011
|
[true]
|
14617
|
-
.
|
15012
|
+
.ft P
|
15013
|
+
.fi
|
14618
15014
|
.SS データ型
|
14619
15015
|
.SS 名前
|
14620
15016
|
.sp
|
@@ -14784,7 +15180,7 @@ Table in groonga manages relation between ID and key. Groonga provides
|
|
14784
15180
|
four table types. They are \fBTABLE_NO_KEY\fP, \fBTABLE_HASH_KEY\fP,
|
14785
15181
|
\fBTABLE_PAT_KEY\fP and \fBTABLE_DAT_KEY\fP.
|
14786
15182
|
.sp
|
14787
|
-
All
|
15183
|
+
All tables except \fBTABLE_NO_KEY\fP provides both fast ID search by key
|
14788
15184
|
and fast key search by ID. \fBTABLE_NO_KEY\fP doesn\(aqt support
|
14789
15185
|
key. \fBTABLE_NO_KEY\fP only manages ID. So \fBTABLE_NO_KEY\fP doesn\(aqt
|
14790
15186
|
provides ID search and key search.
|
@@ -14865,13 +15261,15 @@ _
|
|
14865
15261
|
T{
|
14866
15262
|
Key \-> ID
|
14867
15263
|
speed
|
14868
|
-
(o \-> fast)
|
14869
|
-
(x \-> slow)
|
14870
|
-
T} T{
|
14871
15264
|
.INDENT 0.0
|
14872
15265
|
.IP \(bu 2
|
15266
|
+
o: fast
|
15267
|
+
.IP \(bu 2
|
15268
|
+
x: slow
|
14873
15269
|
.UNINDENT
|
14874
15270
|
T} T{
|
15271
|
+
\-
|
15272
|
+
T} T{
|
14875
15273
|
oo
|
14876
15274
|
T} T{
|
14877
15275
|
x
|
@@ -14880,10 +15278,13 @@ o
|
|
14880
15278
|
T}
|
14881
15279
|
_
|
14882
15280
|
T{
|
14883
|
-
Update
|
14884
|
-
|
14885
|
-
(
|
14886
|
-
|
15281
|
+
Update speed
|
15282
|
+
.INDENT 0.0
|
15283
|
+
.IP \(bu 2
|
15284
|
+
o: fast
|
15285
|
+
.IP \(bu 2
|
15286
|
+
x: slow
|
15287
|
+
.UNINDENT
|
14887
15288
|
T} T{
|
14888
15289
|
ooo
|
14889
15290
|
T} T{
|
@@ -14896,8 +15297,12 @@ T}
|
|
14896
15297
|
_
|
14897
15298
|
T{
|
14898
15299
|
Size
|
14899
|
-
|
14900
|
-
(
|
15300
|
+
.INDENT 0.0
|
15301
|
+
.IP \(bu 2
|
15302
|
+
o: small
|
15303
|
+
.IP \(bu 2
|
15304
|
+
x: large
|
15305
|
+
.UNINDENT
|
14901
15306
|
T} T{
|
14902
15307
|
ooo
|
14903
15308
|
T} T{
|
@@ -14912,9 +15317,7 @@ T{
|
|
14912
15317
|
Key
|
14913
15318
|
update
|
14914
15319
|
T} T{
|
14915
|
-
|
14916
|
-
.IP \(bu 2
|
14917
|
-
.UNINDENT
|
15320
|
+
\-
|
14918
15321
|
T} T{
|
14919
15322
|
x
|
14920
15323
|
T} T{
|
@@ -14928,9 +15331,7 @@ Common
|
|
14928
15331
|
prefix
|
14929
15332
|
search
|
14930
15333
|
T} T{
|
14931
|
-
|
14932
|
-
.IP \(bu 2
|
14933
|
-
.UNINDENT
|
15334
|
+
\-
|
14934
15335
|
T} T{
|
14935
15336
|
x
|
14936
15337
|
T} T{
|
@@ -14943,9 +15344,7 @@ T{
|
|
14943
15344
|
Predictive
|
14944
15345
|
search
|
14945
15346
|
T} T{
|
14946
|
-
|
14947
|
-
.IP \(bu 2
|
14948
|
-
.UNINDENT
|
15347
|
+
\-
|
14949
15348
|
T} T{
|
14950
15349
|
x
|
14951
15350
|
T} T{
|
@@ -14958,9 +15357,7 @@ T{
|
|
14958
15357
|
Range
|
14959
15358
|
search
|
14960
15359
|
T} T{
|
14961
|
-
|
14962
|
-
.IP \(bu 2
|
14963
|
-
.UNINDENT
|
15360
|
+
\-
|
14964
15361
|
T} T{
|
14965
15362
|
x
|
14966
15363
|
T} T{
|
@@ -15050,9 +15447,9 @@ more larger total key size.
|
|
15050
15447
|
.SS Normalizers
|
15051
15448
|
.SS Summary
|
15052
15449
|
.sp
|
15053
|
-
Groonga has normalizer module. It is used when
|
15054
|
-
storing table key. For example, \fBA\fP and \fBa\fP
|
15055
|
-
same character after normalization.
|
15450
|
+
Groonga has normalizer module that normalizes text. It is used when
|
15451
|
+
tokenizing text and storing table key. For example, \fBA\fP and \fBa\fP
|
15452
|
+
are processed as the same character after normalization.
|
15056
15453
|
.sp
|
15057
15454
|
Normalizer module can be added as a plugin. You can customize text
|
15058
15455
|
normalization by registering your normalizer plugins to groonga.
|
@@ -15150,7 +15547,7 @@ normalized. Because tokens are stored as table keys. Table keys are
|
|
15150
15547
|
normalized as described above.
|
15151
15548
|
.SS Built\-in normalizers
|
15152
15549
|
.sp
|
15153
|
-
Here is a list of built\-in
|
15550
|
+
Here is a list of built\-in normalizers:
|
15154
15551
|
.INDENT 0.0
|
15155
15552
|
.INDENT 3.5
|
15156
15553
|
.INDENT 0.0
|
@@ -15167,7 +15564,7 @@ Normally you should use \fBNormalizerAuto\fP
|
|
15167
15564
|
normalizer. \fBNormalizerAuto\fP was the normalizer for groonga 2.0.9 or
|
15168
15565
|
earlier. \fBKEY_NORMALIZE\fP flag in \fBtable_create\fP on groonga 2.0.9
|
15169
15566
|
or earlier equals to \fB\-\-normalizer NormalizerAuto\fP option in
|
15170
|
-
\
|
15567
|
+
\fBtable_create\fP on groonga 2.1.0 or later.
|
15171
15568
|
.sp
|
15172
15569
|
\fBNormalizerAuto\fP supports all encoding. It uses Unicode NFKC
|
15173
15570
|
(Normalization Form Compatibility Composition) for UTF\-8 encoding
|
@@ -19578,6 +19975,291 @@ now()
|
|
19578
19975
|
1256791194.55541
|
19579
19976
|
.ft P
|
19580
19977
|
.fi
|
19978
|
+
.SS query
|
19979
|
+
.SS Summary
|
19980
|
+
.sp
|
19981
|
+
\fBquery\fP enables you to specify \fB\-\-match_columns\fP and \fB\-\-query\fP parameters as
|
19982
|
+
function arguments.
|
19983
|
+
.sp
|
19984
|
+
\fBquery\fP is one of the groonga builtin functions, so you can specify
|
19985
|
+
multiple \fBquery\fP function as parameters of \fB\-\-filter\fP option.
|
19986
|
+
.sp
|
19987
|
+
Because of such flexibility, you can control full text search behavior
|
19988
|
+
by combination of multiple \fBquery\fP function.
|
19989
|
+
.sp
|
19990
|
+
\fBquery\fP can be used in only \fB\-\-filter\fP in \fB/reference/commands/select\fP.
|
19991
|
+
.SS Syntax
|
19992
|
+
.sp
|
19993
|
+
\fBquery\fP requires two arguments \- \fBmatch_column\fP and \fBquery_string\fP.
|
19994
|
+
.sp
|
19995
|
+
.nf
|
19996
|
+
.ft C
|
19997
|
+
query(match_column, query_string)
|
19998
|
+
.ft P
|
19999
|
+
.fi
|
20000
|
+
.SS Usage
|
20001
|
+
.sp
|
20002
|
+
Here are a schema definition and sample data to show usage.
|
20003
|
+
.sp
|
20004
|
+
Sample schema:
|
20005
|
+
.sp
|
20006
|
+
Execution example:
|
20007
|
+
.sp
|
20008
|
+
.nf
|
20009
|
+
.ft C
|
20010
|
+
table_create Documents TABLE_NO_KEY
|
20011
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20012
|
+
column_create Documents content COLUMN_SCALAR Text
|
20013
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20014
|
+
table_create Terms TABLE_PAT_KEY|KEY_NORMALIZE ShortText \-\-default_tokenizer TokenBigram
|
20015
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20016
|
+
column_create Terms documents_content_index COLUMN_INDEX|WITH_POSITION Documents content
|
20017
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20018
|
+
table_create Users TABLE_NO_KEY
|
20019
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20020
|
+
column_create Users name COLUMN_SCALAR ShortText
|
20021
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20022
|
+
column_create Users memo COLUMN_SCALAR ShortText
|
20023
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20024
|
+
table_create Lexicon TABLE_HASH_KEY ShortText \e
|
20025
|
+
\-\-default_tokenizer TokenBigramSplitSymbolAlphaDigit \e
|
20026
|
+
\-\-normalizer NormalizerAuto
|
20027
|
+
column_create Lexicon users_name COLUMN_INDEX|WITH_POSITION Users name
|
20028
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20029
|
+
column_create Lexicon users_memo COLUMN_INDEX|WITH_POSITION Users memo
|
20030
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20031
|
+
.ft P
|
20032
|
+
.fi
|
20033
|
+
.sp
|
20034
|
+
Sample data:
|
20035
|
+
.sp
|
20036
|
+
Execution example:
|
20037
|
+
.sp
|
20038
|
+
.nf
|
20039
|
+
.ft C
|
20040
|
+
load \-\-table Users
|
20041
|
+
[
|
20042
|
+
{"name": "Alice", "memo": "groonga user"},
|
20043
|
+
{"name": "Alisa", "memo": "mroonga user"},
|
20044
|
+
{"name": "Bob", "memo": "rroonga user"},
|
20045
|
+
{"name": "Tom", "memo": "nroonga user"},
|
20046
|
+
{"name": "Tobby", "memo": "groonga and mroonga user. mroonga is ..."},
|
20047
|
+
]
|
20048
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
20049
|
+
# [[0, 1337566253.89858, 0.000355720520019531], 5]
|
20050
|
+
.ft P
|
20051
|
+
.fi
|
20052
|
+
.sp
|
20053
|
+
Here is the simple usage of \fBquery\fP function which execute full text
|
20054
|
+
search by keyword \(aqalice\(aq without using \fB\-\-match_column\fP and
|
20055
|
+
\fB\-\-query\fP arguments in \fB\-\-filter\fP.
|
20056
|
+
.sp
|
20057
|
+
Execution example:
|
20058
|
+
.sp
|
20059
|
+
.nf
|
20060
|
+
.ft C
|
20061
|
+
select Users \-\-output_columns name,_score \-\-filter \(aqquery("name * 10", "alice")\(aq
|
20062
|
+
# [
|
20063
|
+
# [
|
20064
|
+
# 0,
|
20065
|
+
# 1337566253.89858,
|
20066
|
+
# 0.000355720520019531
|
20067
|
+
# ],
|
20068
|
+
# [
|
20069
|
+
# [
|
20070
|
+
# [
|
20071
|
+
# 1
|
20072
|
+
# ],
|
20073
|
+
# [
|
20074
|
+
# [
|
20075
|
+
# "name",
|
20076
|
+
# "ShortText"
|
20077
|
+
# ],
|
20078
|
+
# [
|
20079
|
+
# "_score",
|
20080
|
+
# "Int32"
|
20081
|
+
# ]
|
20082
|
+
# ],
|
20083
|
+
# [
|
20084
|
+
# "Alice",
|
20085
|
+
# 10
|
20086
|
+
# ]
|
20087
|
+
# ]
|
20088
|
+
# ]
|
20089
|
+
# ]
|
20090
|
+
.ft P
|
20091
|
+
.fi
|
20092
|
+
.sp
|
20093
|
+
When executing above query, the keyword \(aqalice\(aq is weighted to the value \-
|
20094
|
+
\(aq10\(aq.
|
20095
|
+
.sp
|
20096
|
+
Here are the contrasting examples with/without \fBquery\fP.
|
20097
|
+
.sp
|
20098
|
+
Execution example:
|
20099
|
+
.sp
|
20100
|
+
.nf
|
20101
|
+
.ft C
|
20102
|
+
select Users \-\-output_columns name,memo,_score \-\-match_columns "memo * 10" \-\-query "memo:@groonga OR memo:@mroonga OR memo:@user" \-\-sortby \-_score
|
20103
|
+
# [
|
20104
|
+
# [
|
20105
|
+
# 0,
|
20106
|
+
# 1337566253.89858,
|
20107
|
+
# 0.000355720520019531
|
20108
|
+
# ],
|
20109
|
+
# [
|
20110
|
+
# [
|
20111
|
+
# [
|
20112
|
+
# 5
|
20113
|
+
# ],
|
20114
|
+
# [
|
20115
|
+
# [
|
20116
|
+
# "name",
|
20117
|
+
# "ShortText"
|
20118
|
+
# ],
|
20119
|
+
# [
|
20120
|
+
# "memo",
|
20121
|
+
# "ShortText"
|
20122
|
+
# ],
|
20123
|
+
# [
|
20124
|
+
# "_score",
|
20125
|
+
# "Int32"
|
20126
|
+
# ]
|
20127
|
+
# ],
|
20128
|
+
# [
|
20129
|
+
# "Tobby",
|
20130
|
+
# "groonga and mroonga user. mroonga is ...",
|
20131
|
+
# 4
|
20132
|
+
# ],
|
20133
|
+
# [
|
20134
|
+
# "Alice",
|
20135
|
+
# "groonga user",
|
20136
|
+
# 2
|
20137
|
+
# ],
|
20138
|
+
# [
|
20139
|
+
# "Alisa",
|
20140
|
+
# "mroonga user",
|
20141
|
+
# 2
|
20142
|
+
# ],
|
20143
|
+
# [
|
20144
|
+
# "Bob",
|
20145
|
+
# "rroonga user",
|
20146
|
+
# 1
|
20147
|
+
# ],
|
20148
|
+
# [
|
20149
|
+
# "Tom",
|
20150
|
+
# "nroonga user",
|
20151
|
+
# 1
|
20152
|
+
# ]
|
20153
|
+
# ]
|
20154
|
+
# ]
|
20155
|
+
# ]
|
20156
|
+
.ft P
|
20157
|
+
.fi
|
20158
|
+
.sp
|
20159
|
+
In this case, the keywords \(aqgroonga\(aq and \(aqmroonga\(aq and \(aquser\(aq are
|
20160
|
+
given same weight value.
|
20161
|
+
You can\(aqt pass different weight value to each keyword in this way.
|
20162
|
+
.sp
|
20163
|
+
Execution example:
|
20164
|
+
.sp
|
20165
|
+
.nf
|
20166
|
+
.ft C
|
20167
|
+
select Users \-\-output_columns name,memo,_score \-\-filter \(aqquery("memo * 10", "groonga") || query("memo * 20", "mroonga") || query("memo * 1", "user")\(aq \-\-sortby \-_score
|
20168
|
+
# [
|
20169
|
+
# [
|
20170
|
+
# 0,
|
20171
|
+
# 1337566253.89858,
|
20172
|
+
# 0.000355720520019531
|
20173
|
+
# ],
|
20174
|
+
# [
|
20175
|
+
# [
|
20176
|
+
# [
|
20177
|
+
# 5
|
20178
|
+
# ],
|
20179
|
+
# [
|
20180
|
+
# [
|
20181
|
+
# "name",
|
20182
|
+
# "ShortText"
|
20183
|
+
# ],
|
20184
|
+
# [
|
20185
|
+
# "memo",
|
20186
|
+
# "ShortText"
|
20187
|
+
# ],
|
20188
|
+
# [
|
20189
|
+
# "_score",
|
20190
|
+
# "Int32"
|
20191
|
+
# ]
|
20192
|
+
# ],
|
20193
|
+
# [
|
20194
|
+
# "Tobby",
|
20195
|
+
# "groonga and mroonga user. mroonga is ...",
|
20196
|
+
# 51
|
20197
|
+
# ],
|
20198
|
+
# [
|
20199
|
+
# "Alisa",
|
20200
|
+
# "mroonga user",
|
20201
|
+
# 21
|
20202
|
+
# ],
|
20203
|
+
# [
|
20204
|
+
# "Alice",
|
20205
|
+
# "groonga user",
|
20206
|
+
# 11
|
20207
|
+
# ],
|
20208
|
+
# [
|
20209
|
+
# "Tom",
|
20210
|
+
# "nroonga user",
|
20211
|
+
# 1
|
20212
|
+
# ],
|
20213
|
+
# [
|
20214
|
+
# "Bob",
|
20215
|
+
# "rroonga user",
|
20216
|
+
# 1
|
20217
|
+
# ]
|
20218
|
+
# ]
|
20219
|
+
# ]
|
20220
|
+
# ]
|
20221
|
+
.ft P
|
20222
|
+
.fi
|
20223
|
+
.sp
|
20224
|
+
On the other hand, by specifying multiple \fBquery\fP, the keywords
|
20225
|
+
\(aqgroonga\(aq and \(aqmroonga\(aq and \(aquser\(aq are given different value of weight.
|
20226
|
+
.sp
|
20227
|
+
As a result, you can control full text search result by giving different weight to the
|
20228
|
+
keywords on your purpose.
|
20229
|
+
.SS Parameters
|
20230
|
+
.sp
|
20231
|
+
There are two required parameter, \fBmatch_column\fP and \fBquery_string\fP.
|
20232
|
+
.SS \fBmatch_column\fP
|
20233
|
+
.INDENT 0.0
|
20234
|
+
.INDENT 3.5
|
20235
|
+
It specifies \fBmatch_column\fP equivalent parameter.
|
20236
|
+
.UNINDENT
|
20237
|
+
.UNINDENT
|
20238
|
+
.sp
|
20239
|
+
See \fIselect\-match\-columns\fP about match_column.
|
20240
|
+
.SS \fBquery_string\fP
|
20241
|
+
.INDENT 0.0
|
20242
|
+
.INDENT 3.5
|
20243
|
+
It specifies \fBquery\fP equivalent parameter.
|
20244
|
+
.UNINDENT
|
20245
|
+
.UNINDENT
|
20246
|
+
.sp
|
20247
|
+
See \fIselect\-query\fP about query string.
|
20248
|
+
.SS Return value
|
20249
|
+
.sp
|
20250
|
+
\fBquery\fP returns a value of boolean (true or false).
|
20251
|
+
.SS TODO
|
20252
|
+
.INDENT 0.0
|
20253
|
+
.IP \(bu 2
|
20254
|
+
Support query_expansion
|
20255
|
+
.IP \(bu 2
|
20256
|
+
Support query_flags
|
20257
|
+
.UNINDENT
|
20258
|
+
.SS See also
|
20259
|
+
.INDENT 0.0
|
20260
|
+
.IP \(bu 2
|
20261
|
+
\fB/reference/commands/select\fP
|
20262
|
+
.UNINDENT
|
19581
20263
|
.SS rand
|
19582
20264
|
.SS 名前
|
19583
20265
|
.sp
|
@@ -22574,8 +23256,6 @@ Here are command lines to send pull request:
|
|
22574
23256
|
Now you can send pull request on GitHub. You just access
|
22575
23257
|
your repository page on GitHub and press \fIPull Request\fP
|
22576
23258
|
button.
|
22577
|
-
.IP "See also"
|
22578
|
-
.sp
|
22579
23259
|
\fI\%Help.GitHub - Sending pull requests\fP.
|
22580
23260
|
.RE
|
22581
23261
|
.SS How to send patch
|
@@ -22592,20 +23272,12 @@ Here are command lines to create patch:
|
|
22592
23272
|
.sp
|
22593
23273
|
You can find 000X\-YYY.patch files in the current
|
22594
23274
|
directory. Please send those files to us!
|
22595
|
-
.IP "See also"
|
22596
|
-
.sp
|
22597
|
-
\fB/community\fP describes our contact information.
|
22598
|
-
.RE
|
22599
23275
|
.SS How to send .po files
|
22600
23276
|
.sp
|
22601
23277
|
Please archive doc/locale/${LANGUAGE}/LC_MESSAGES/ (Please
|
22602
23278
|
substitute \fI${LANGUAGE}\fP with your language code such as
|
22603
23279
|
\(aqja\(aq.) and send it to us! We extract and merge them to the
|
22604
23280
|
groonga repository.
|
22605
|
-
.IP "See also"
|
22606
|
-
.sp
|
22607
|
-
\fB/community\fP describes our contact information.
|
22608
|
-
.RE
|
22609
23281
|
.SS How to add new language
|
22610
23282
|
.sp
|
22611
23283
|
Here are command lines to add new translation language:
|
@@ -22619,8 +23291,6 @@ Here are command lines to add new translation language:
|
|
22619
23291
|
.sp
|
22620
23292
|
Please substitute \fI${LANGUAGE}\fP with your language code such
|
22621
23293
|
as \(aqja\(aq.
|
22622
|
-
.IP "See also"
|
22623
|
-
.sp
|
22624
23294
|
\fI\%Codes for the Representation of Names of Languages\fP.
|
22625
23295
|
.RE
|
22626
23296
|
.INDENT 0.0
|
@@ -22634,7 +23304,7 @@ as \(aqja\(aq.
|
|
22634
23304
|
.SH AUTHOR
|
22635
23305
|
groonga project
|
22636
23306
|
.SH COPYRIGHT
|
22637
|
-
2009-
|
23307
|
+
2009-2013, Brazil, Inc
|
22638
23308
|
.\" Generated by docutils manpage writer.
|
22639
23309
|
.\"
|
22640
23310
|
.
|