rroonga 3.0.9-x64-mingw32 → 3.1.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.textile +10 -10
- data/bin/groonga-database-inspect +40 -0
- data/doc/text/news.textile +19 -0
- data/ext/groonga/extconf.rb +3 -1
- data/ext/groonga/rb-grn-expression.c +1 -1
- data/ext/groonga/rb-grn-operator.c +218 -8
- data/ext/groonga/rb-grn.h +4 -2
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/groonga.rb +4 -1
- data/lib/groonga/column.rb +25 -0
- data/lib/groonga/database-inspector.rb +279 -0
- data/lib/groonga/database.rb +32 -2
- data/lib/groonga/dumper.rb +7 -13
- data/lib/groonga/index-column.rb +11 -1
- data/lib/groonga/statistic-measurer.rb +37 -0
- data/lib/groonga/table.rb +25 -0
- data/rroonga-build.rb +2 -2
- data/test/groonga-test-utils.rb +10 -10
- data/test/test-column.rb +26 -0
- data/test/test-database-inspector.rb +676 -0
- data/test/test-database.rb +25 -1
- data/test/test-expression-builder.rb +1 -0
- data/test/test-expression.rb +73 -0
- data/test/test-index-column.rb +23 -0
- data/test/test-statistic-measurer.rb +55 -0
- data/test/test-table.rb +40 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +25 -39
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +41 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +273 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest/completion.txt +16 -6
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/genindex.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/index.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +50 -45
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +220 -172
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +12 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +410 -0
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +33 -33
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +21 -11
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +25 -39
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +41 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +273 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest/completion.txt +16 -6
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +19 -19
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/index.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +39 -38
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news.html +234 -173
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +12 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +411 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +33 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +21 -11
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +489 -491
- data/vendor/local/share/man/man1/groonga.1 +500 -498
- metadata +21 -8
- data/lib/groonga/view-record.rb +0 -50
@@ -1,6 +1,6 @@
|
|
1
|
-
.TH "GROONGA" "1" "
|
1
|
+
.TH "GROONGA" "1" "November 27, 2013" "3.1.0" "Groonga"
|
2
2
|
.SH NAME
|
3
|
-
groonga \-
|
3
|
+
groonga \- Groonga documentation
|
4
4
|
.
|
5
5
|
.nr rst2man-indent-level 0
|
6
6
|
.
|
@@ -94,8 +94,8 @@ memory error with a 32\-bit package even if you just process medium
|
|
94
94
|
size data.
|
95
95
|
.SS Windows
|
96
96
|
.sp
|
97
|
-
This section describes how to install
|
98
|
-
install
|
97
|
+
This section describes how to install Groonga on Windows. You can
|
98
|
+
install Groogna by extracting a zip package or running an installer.
|
99
99
|
.sp
|
100
100
|
We distribute both 32\-bit and 64\-bit packages but we strongly
|
101
101
|
recommend a 64\-bit package for server. You should use a 32\-bit package
|
@@ -104,81 +104,66 @@ 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 x86 executable binary from
|
108
|
-
.
|
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:
|
107
|
+
For 32\-bit environment, download x86 executable binary from
|
108
|
+
packages.groonga.org:
|
112
109
|
.INDENT 0.0
|
113
110
|
.INDENT 3.5
|
114
|
-
.
|
115
|
-
.
|
116
|
-
.
|
117
|
-
|
118
|
-
.ft P
|
119
|
-
.fi
|
111
|
+
.INDENT 0.0
|
112
|
+
.IP \(bu 2
|
113
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-3.1.0\-x86.exe\fP
|
114
|
+
.UNINDENT
|
120
115
|
.UNINDENT
|
121
116
|
.UNINDENT
|
122
117
|
.sp
|
123
118
|
Then run it.
|
124
119
|
.sp
|
125
|
-
For 64\-bit environment, download x64 executable binary from
|
126
|
-
.
|
127
|
-
Start command prompt \fBcmd.exe\fP and download x64 executable binary by default browser:
|
120
|
+
For 64\-bit environment, download x64 executable binary from
|
121
|
+
packages.goronga.org:
|
128
122
|
.INDENT 0.0
|
129
123
|
.INDENT 3.5
|
130
|
-
.
|
131
|
-
.
|
132
|
-
.
|
133
|
-
|
134
|
-
.ft P
|
135
|
-
.fi
|
124
|
+
.INDENT 0.0
|
125
|
+
.IP \(bu 2
|
126
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-3.1.0\-x64.exe\fP
|
127
|
+
.UNINDENT
|
136
128
|
.UNINDENT
|
137
129
|
.UNINDENT
|
138
130
|
.sp
|
139
131
|
Then run it.
|
140
132
|
.sp
|
141
|
-
Use command prompt
|
133
|
+
Use command prompt in start menu to run
|
134
|
+
\fB/reference/executables/groonga\fP.
|
142
135
|
.SS zip
|
143
136
|
.sp
|
144
|
-
For 32\-bit environment, download x86 zip archive from
|
145
|
-
.
|
146
|
-
You can download such a binary by command line operation.
|
147
|
-
.sp
|
148
|
-
Start command prompt \fBcmd.exe\fP and download x86 zip archive by default browser:
|
137
|
+
For 32\-bit environment, download x86 zip archive from
|
138
|
+
packages.groonga.org:
|
149
139
|
.INDENT 0.0
|
150
140
|
.INDENT 3.5
|
151
|
-
.
|
152
|
-
.
|
153
|
-
.
|
154
|
-
|
155
|
-
.ft P
|
156
|
-
.fi
|
141
|
+
.INDENT 0.0
|
142
|
+
.IP \(bu 2
|
143
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-3.1.0\-x86.zip\fP
|
144
|
+
.UNINDENT
|
157
145
|
.UNINDENT
|
158
146
|
.UNINDENT
|
159
147
|
.sp
|
160
148
|
Then extract it.
|
161
149
|
.sp
|
162
|
-
For 64\-bit environment, download x64 zip archive from
|
163
|
-
.
|
164
|
-
Start command prompt \fBcmd.exe\fP and download x64 zip archive by default browser:
|
150
|
+
For 64\-bit environment, download x64 zip archive from
|
151
|
+
packages.groonga.org:
|
165
152
|
.INDENT 0.0
|
166
153
|
.INDENT 3.5
|
167
|
-
.
|
168
|
-
.
|
169
|
-
.
|
170
|
-
|
171
|
-
.ft P
|
172
|
-
.fi
|
154
|
+
.INDENT 0.0
|
155
|
+
.IP \(bu 2
|
156
|
+
\fI\%http://packages.groonga.org/windows/groonga/groonga\-3.1.0\-x64.zip\fP
|
157
|
+
.UNINDENT
|
173
158
|
.UNINDENT
|
174
159
|
.UNINDENT
|
175
160
|
.sp
|
176
161
|
Then extract it.
|
177
162
|
.sp
|
178
|
-
\fB/reference/executables/groonga\fP
|
163
|
+
You can find \fB/reference/executables/groonga\fP in \fBbin\fP folder.
|
179
164
|
.SS Build from source
|
180
165
|
.sp
|
181
|
-
First, you need to install required tools for building
|
166
|
+
First, you need to install required tools for building Groonga on
|
182
167
|
Windows. Here are required tools:
|
183
168
|
.INDENT 0.0
|
184
169
|
.INDENT 3.5
|
@@ -191,33 +176,25 @@ Windows. Here are required tools:
|
|
191
176
|
.UNINDENT
|
192
177
|
.UNINDENT
|
193
178
|
.sp
|
194
|
-
Download zipped source from packages.groonga.org
|
195
|
-
.sp
|
196
|
-
You can download such a zipped source file by command line operation.
|
197
|
-
.sp
|
198
|
-
Start \fBVisual Studio Command Prompt (2010)\fP installed by Microsoft
|
199
|
-
Visual Studio 2010 Express and download it by default browser:
|
179
|
+
Download zipped source from packages.groonga.org:
|
200
180
|
.INDENT 0.0
|
201
181
|
.INDENT 3.5
|
202
|
-
.
|
203
|
-
.
|
204
|
-
.
|
205
|
-
|
206
|
-
> "c:\e\eProgram Files\e\eInternet Explorer\e\eiexplore.exe" http://packages.groonga.org/source/groonga/groonga\-3.0.9.zip
|
207
|
-
.ft P
|
208
|
-
.fi
|
182
|
+
.INDENT 0.0
|
183
|
+
.IP \(bu 2
|
184
|
+
\fI\%http://packages.groonga.org/source/groonga/groonga\-3.1.0.zip\fP
|
185
|
+
.UNINDENT
|
209
186
|
.UNINDENT
|
210
187
|
.UNINDENT
|
211
188
|
.sp
|
212
189
|
Then extract it.
|
213
190
|
.sp
|
214
|
-
Move to the
|
191
|
+
Move to the Groonga\(aqs source folder:
|
215
192
|
.INDENT 0.0
|
216
193
|
.INDENT 3.5
|
217
194
|
.sp
|
218
195
|
.nf
|
219
196
|
.ft C
|
220
|
-
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-3.0
|
197
|
+
> cd c:\eUsers\e%USERNAME%\eDownloads\egroonga\-3.1.0
|
221
198
|
.ft P
|
222
199
|
.fi
|
223
200
|
.UNINDENT
|
@@ -231,7 +208,7 @@ parameter instead:
|
|
231
208
|
.sp
|
232
209
|
.nf
|
233
210
|
.ft C
|
234
|
-
groonga\-3.0
|
211
|
+
groonga\-3.1.0> cmake . \-G "Visual Studio 10 Win64" \-DCMAKE_INSTALL_PREFIX=C:\egroonga
|
235
212
|
.ft P
|
236
213
|
.fi
|
237
214
|
.UNINDENT
|
@@ -243,7 +220,7 @@ Build:
|
|
243
220
|
.sp
|
244
221
|
.nf
|
245
222
|
.ft C
|
246
|
-
groonga\-3.0
|
223
|
+
groonga\-3.1.0> cmake \-\-build . \-\-config Release
|
247
224
|
.ft P
|
248
225
|
.fi
|
249
226
|
.UNINDENT
|
@@ -255,7 +232,7 @@ Install:
|
|
255
232
|
.sp
|
256
233
|
.nf
|
257
234
|
.ft C
|
258
|
-
groonga\-3.0
|
235
|
+
groonga\-3.1.0> cmake \-\-build . \-\-config Release \-\-target Install
|
259
236
|
.ft P
|
260
237
|
.fi
|
261
238
|
.UNINDENT
|
@@ -309,9 +286,9 @@ Download source:
|
|
309
286
|
.sp
|
310
287
|
.nf
|
311
288
|
.ft C
|
312
|
-
% curl \-O http://packages.groonga.org/source/groonga/groonga\-3.0.
|
313
|
-
% tar xvzf groonga\-3.0.
|
314
|
-
% cd groonga\-3.0
|
289
|
+
% curl \-O http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
290
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
291
|
+
% cd groonga\-3.1.0
|
315
292
|
.ft P
|
316
293
|
.fi
|
317
294
|
.UNINDENT
|
@@ -711,9 +688,9 @@ Download source:
|
|
711
688
|
.sp
|
712
689
|
.nf
|
713
690
|
.ft C
|
714
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
715
|
-
% tar xvzf groonga\-3.0.
|
716
|
-
% cd groonga\-3.0
|
691
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
692
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
693
|
+
% cd groonga\-3.1.0
|
717
694
|
.ft P
|
718
695
|
.fi
|
719
696
|
.UNINDENT
|
@@ -1262,9 +1239,9 @@ Download source:
|
|
1262
1239
|
.sp
|
1263
1240
|
.nf
|
1264
1241
|
.ft C
|
1265
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
1266
|
-
% tar xvzf groonga\-3.0.
|
1267
|
-
% cd groonga\-3.0
|
1242
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
1243
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
1244
|
+
% cd groonga\-3.1.0
|
1268
1245
|
.ft P
|
1269
1246
|
.fi
|
1270
1247
|
.UNINDENT
|
@@ -1411,7 +1388,7 @@ Enable Repoforge (RPMforge) repository on i386 environment:
|
|
1411
1388
|
.sp
|
1412
1389
|
.nf
|
1413
1390
|
.ft C
|
1414
|
-
% wget http://pkgs.repoforge.org/rpmforge\-release/rpmforge\-release\-0.5.
|
1391
|
+
% wget http://pkgs.repoforge.org/rpmforge\-release/rpmforge\-release\-0.5.3\-1.el5.rf.i386.rpm
|
1415
1392
|
% sudo rpm \-ivh rpmforge\-release\-0.5.2\-2.el5.rf.i386.rpm
|
1416
1393
|
.ft P
|
1417
1394
|
.fi
|
@@ -1424,7 +1401,7 @@ Enable Repoforge (RPMforge) repository on x86_64 environment:
|
|
1424
1401
|
.sp
|
1425
1402
|
.nf
|
1426
1403
|
.ft C
|
1427
|
-
% wget http://pkgs.repoforge.org/rpmforge\-release/rpmforge\-release\-0.5.
|
1404
|
+
% wget http://pkgs.repoforge.org/rpmforge\-release/rpmforge\-release\-0.5.3\-1.el5.rf.x86_64.rpm
|
1428
1405
|
% sudo rpm \-ivh rpmforge\-release\-0.5.2\-2.el5.rf.x86_64.rpm
|
1429
1406
|
.ft P
|
1430
1407
|
.fi
|
@@ -1602,9 +1579,9 @@ Download source:
|
|
1602
1579
|
.sp
|
1603
1580
|
.nf
|
1604
1581
|
.ft C
|
1605
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
1606
|
-
% tar xvzf groonga\-3.0.
|
1607
|
-
% cd groonga\-3.0
|
1582
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
1583
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
1584
|
+
% cd groonga\-3.1.0
|
1608
1585
|
.ft P
|
1609
1586
|
.fi
|
1610
1587
|
.UNINDENT
|
@@ -1809,9 +1786,9 @@ Download source:
|
|
1809
1786
|
.sp
|
1810
1787
|
.nf
|
1811
1788
|
.ft C
|
1812
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
1813
|
-
% tar xvzf groonga\-3.0.
|
1814
|
-
% cd groonga\-3.0
|
1789
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
1790
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
1791
|
+
% cd groonga\-3.1.0
|
1815
1792
|
.ft P
|
1816
1793
|
.fi
|
1817
1794
|
.UNINDENT
|
@@ -1876,9 +1853,9 @@ Download source:
|
|
1876
1853
|
.sp
|
1877
1854
|
.nf
|
1878
1855
|
.ft C
|
1879
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
1880
|
-
% gtar xvzf groonga\-3.0.
|
1881
|
-
% cd groonga\-3.0
|
1856
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
1857
|
+
% gtar xvzf groonga\-3.1.0.tar.gz
|
1858
|
+
% cd groonga\-3.1.0
|
1882
1859
|
.ft P
|
1883
1860
|
.fi
|
1884
1861
|
.UNINDENT
|
@@ -2018,9 +1995,9 @@ steps:
|
|
2018
1995
|
.sp
|
2019
1996
|
.nf
|
2020
1997
|
.ft C
|
2021
|
-
% wget http://packages.groonga.org/source/groonga/groonga\-3.0.
|
2022
|
-
% tar xvzf groonga\-3.0.
|
2023
|
-
% cd groonga\-3.0
|
1998
|
+
% wget http://packages.groonga.org/source/groonga/groonga\-3.1.0.tar.gz
|
1999
|
+
% tar xvzf groonga\-3.1.0.tar.gz
|
2000
|
+
% cd groonga\-3.1.0
|
2024
2001
|
% ./configure
|
2025
2002
|
% make
|
2026
2003
|
% sudo make install
|
@@ -2419,10 +2396,10 @@ status
|
|
2419
2396
|
# "max_command_version": 2,
|
2420
2397
|
# "n_queries": 0,
|
2421
2398
|
# "cache_hit_rate": 0.0,
|
2422
|
-
# "version": "3.0
|
2423
|
-
# "alloc_count":
|
2399
|
+
# "version": "3.1.0",
|
2400
|
+
# "alloc_count": 159,
|
2424
2401
|
# "command_version": 1,
|
2425
|
-
# "starttime":
|
2402
|
+
# "starttime": 1385359899,
|
2426
2403
|
# "default_command_version": 1
|
2427
2404
|
# }
|
2428
2405
|
# ]
|
@@ -3573,10 +3550,10 @@ status
|
|
3573
3550
|
# "max_command_version": 2,
|
3574
3551
|
# "n_queries": 0,
|
3575
3552
|
# "cache_hit_rate": 0.0,
|
3576
|
-
# "version": "3.0
|
3577
|
-
# "alloc_count":
|
3553
|
+
# "version": "3.1.0",
|
3554
|
+
# "alloc_count": 138,
|
3578
3555
|
# "command_version": 1,
|
3579
|
-
# "starttime":
|
3556
|
+
# "starttime": 1385359920,
|
3580
3557
|
# "default_command_version": 1
|
3581
3558
|
# }
|
3582
3559
|
# ]
|
@@ -3685,14 +3662,14 @@ status
|
|
3685
3662
|
# 0.000355720520019531
|
3686
3663
|
# ],
|
3687
3664
|
# {
|
3688
|
-
# "uptime":
|
3665
|
+
# "uptime": 0,
|
3689
3666
|
# "max_command_version": 2,
|
3690
3667
|
# "n_queries": 0,
|
3691
3668
|
# "cache_hit_rate": 0.0,
|
3692
|
-
# "version": "3.0
|
3693
|
-
# "alloc_count":
|
3669
|
+
# "version": "3.1.0",
|
3670
|
+
# "alloc_count": 139,
|
3694
3671
|
# "command_version": 1,
|
3695
|
-
# "starttime":
|
3672
|
+
# "starttime": 1385359920,
|
3696
3673
|
# "default_command_version": 1
|
3697
3674
|
# }
|
3698
3675
|
# ]
|
@@ -8144,7 +8121,11 @@ For example, there is a registered word "日本". And "ニホン"
|
|
8144
8121
|
(it must be katakana) is registered as its reading. An user
|
8145
8122
|
can find "日本" by "ni", "二" or "に".
|
8146
8123
|
.sp
|
8147
|
-
If you create dataset which is named as example by
|
8124
|
+
If you create dataset which is named as example by
|
8125
|
+
\fB/reference/executables/groonga\-suggest\-create\-dataset\fP command,
|
8126
|
+
you can update pairs of registered word and its reading by loading
|
8127
|
+
data to \(aq_key\(aq and \(aqkana\(aq column of item_example table explicitly for
|
8128
|
+
prefix RK search.
|
8148
8129
|
.SS Cooccurrence search
|
8149
8130
|
.sp
|
8150
8131
|
Cooccurrence search can find registered words from user\(aqs
|
@@ -8538,11 +8519,14 @@ suggest \-\-table item_query \-\-column kana \-\-types complete \-\-frequency_th
|
|
8538
8519
|
.UNINDENT
|
8539
8520
|
.UNINDENT
|
8540
8521
|
.sp
|
8541
|
-
Without loading above RK data, you can\(aqt complete registered word "日本"
|
8522
|
+
Without loading above RK data, you can\(aqt complete registered word "日本"
|
8523
|
+
by query \- "nihon".
|
8542
8524
|
.sp
|
8543
|
-
As the column type of item_query table is VECTOR_COLUMN, you can
|
8525
|
+
As the column type of item_query table is VECTOR_COLUMN, you can
|
8526
|
+
register multiple readings for registered word.
|
8544
8527
|
.sp
|
8545
|
-
This is the reason that you can also complete the registered word "日本"
|
8528
|
+
This is the reason that you can also complete the registered word "日本"
|
8529
|
+
by query \- "nippon".
|
8546
8530
|
.sp
|
8547
8531
|
Execution example:
|
8548
8532
|
.INDENT 0.0
|
@@ -8584,9 +8568,12 @@ suggest \-\-table item_query \-\-column kana \-\-types complete \-\-frequency_th
|
|
8584
8568
|
.UNINDENT
|
8585
8569
|
.UNINDENT
|
8586
8570
|
.sp
|
8587
|
-
This feature is very convenient because you can search registered word
|
8571
|
+
This feature is very convenient because you can search registered word
|
8572
|
+
even though Japanese IM is disabled.
|
8588
8573
|
.sp
|
8589
|
-
If there are multiple candidates as completed result, you can
|
8574
|
+
If there are multiple candidates as completed result, you can
|
8575
|
+
customize priority to set the value of "boost" column in item_query
|
8576
|
+
table.
|
8590
8577
|
.sp
|
8591
8578
|
Here is the example to customize priority for RK search.
|
8592
8579
|
.sp
|
@@ -10130,662 +10117,662 @@ gqtpでリクエストします。gqtpのリクエストをLF区切り形式で
|
|
10130
10117
|
.fi
|
10131
10118
|
.UNINDENT
|
10132
10119
|
.UNINDENT
|
10133
|
-
.SS
|
10120
|
+
.SS groonga command
|
10134
10121
|
.SS 名前
|
10135
10122
|
.sp
|
10136
|
-
|
10123
|
+
groonga \- 列指向データベース機能を持つ全文検索エンジンソフトウェア
|
10137
10124
|
.SS 書式
|
10138
10125
|
.INDENT 0.0
|
10139
10126
|
.INDENT 3.5
|
10140
10127
|
.sp
|
10141
10128
|
.nf
|
10142
10129
|
.ft C
|
10143
|
-
|
10130
|
+
groonga [options] [dest] [command [args]]
|
10144
10131
|
.ft P
|
10145
10132
|
.fi
|
10146
10133
|
.UNINDENT
|
10147
10134
|
.UNINDENT
|
10148
10135
|
.SS 説明
|
10149
10136
|
.sp
|
10150
|
-
|
10151
|
-
|
10152
|
-
groongaを単独のプロセスとして利用する場合はもちろん、サーバプログラムとして利用する場合の動作確認や実行速度測定が可能です。
|
10153
|
-
.sp
|
10154
|
-
grntest用のデータファイルは自分で作成することも既存のものを利用することもできます。既存のデータファイルは、ftp.groonga.orgから必要に応じダウンロードします。そのため、groonga及びgrntestが動作し、インターネットに接続できる環境であればgroongaコマンドの知識がなくてもgroongaの動作を確認できます。
|
10155
|
-
.sp
|
10156
|
-
現在は、Linux 及びWindows上で動作します。make installしてもインストールは行われません。
|
10137
|
+
groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンです。
|
10138
|
+
groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通して操作することができます。このマニュアルページでは、groongaコマンドの使い方について説明します。
|
10157
10139
|
.SS オプション
|
10158
10140
|
.INDENT 0.0
|
10159
10141
|
.TP
|
10160
|
-
.B \-
|
10161
|
-
|
10142
|
+
.B \-n
|
10143
|
+
新たなデータベースを作成します。
|
10162
10144
|
.UNINDENT
|
10163
10145
|
.INDENT 0.0
|
10164
10146
|
.TP
|
10165
|
-
.B \-
|
10166
|
-
|
10147
|
+
.B \-c
|
10148
|
+
クライアントモードで実行します。
|
10167
10149
|
.UNINDENT
|
10168
10150
|
.INDENT 0.0
|
10169
10151
|
.TP
|
10170
|
-
.B
|
10171
|
-
|
10152
|
+
.B \-s
|
10153
|
+
サーバモードで実行します。
|
10172
10154
|
.UNINDENT
|
10173
10155
|
.INDENT 0.0
|
10174
10156
|
.TP
|
10175
|
-
.B
|
10176
|
-
|
10157
|
+
.B \-d
|
10158
|
+
デーモンモードで実行します。(forkする点がサーバモードと異なる)
|
10177
10159
|
.UNINDENT
|
10178
10160
|
.INDENT 0.0
|
10179
10161
|
.TP
|
10180
|
-
.B \-\-
|
10181
|
-
|
10162
|
+
.B \-e, \-\-encoding <encoding>
|
10163
|
+
データベースで使用する文字エンコーディング方式を指定します。新たなデータベースを作成する時のみ有効です。none, euc, utf8, sjis, latin, koi8rのいずれかが指定できます。
|
10182
10164
|
.UNINDENT
|
10183
10165
|
.INDENT 0.0
|
10184
10166
|
.TP
|
10185
|
-
.B \-\-
|
10186
|
-
|
10167
|
+
.B \-l, \-\-log\-level <log level>
|
10168
|
+
ログレベルを指定します。0〜8までの数値が指定可能で、数が大きいほど多くのログが出力されます。
|
10187
10169
|
.UNINDENT
|
10188
10170
|
.INDENT 0.0
|
10189
10171
|
.TP
|
10190
|
-
.B \-\-
|
10191
|
-
|
10172
|
+
.B \-a, \-\-address <ip/hostname>
|
10173
|
+
Deprecated since version 1.2.2: Use \fI\-\-bind\-address\fP instead.
|
10174
|
+
|
10192
10175
|
.UNINDENT
|
10193
|
-
.SS 引数
|
10194
10176
|
.INDENT 0.0
|
10195
10177
|
.TP
|
10196
|
-
.B
|
10197
|
-
|
10178
|
+
.B \-\-bind\-address <ip/hostname>
|
10179
|
+
New in version 1.2.2.
|
10180
|
+
|
10181
|
+
.sp
|
10182
|
+
サーバモードかデーモンモードで実行するとき、listenするアドレスを指定します。(デフォルトは \fIhostname\fP の返すホスト名)
|
10198
10183
|
.UNINDENT
|
10199
10184
|
.INDENT 0.0
|
10200
10185
|
.TP
|
10201
|
-
.B
|
10202
|
-
|
10186
|
+
.B \-p, \-\-port <port number>
|
10187
|
+
クライアント、サーバ、またはデーモンモードで使用するTCPポート番号。
|
10188
|
+
(デフォルトは10041番)
|
10203
10189
|
.UNINDENT
|
10204
|
-
.SS 使い方
|
10205
|
-
.sp
|
10206
|
-
まず、シェル上(Windowsならコマンドプロンプト上)で:
|
10207
10190
|
.INDENT 0.0
|
10208
|
-
.
|
10209
|
-
.
|
10210
|
-
|
10211
|
-
.ft C
|
10212
|
-
grntest test.scr 任意のDB名
|
10213
|
-
.ft P
|
10214
|
-
.fi
|
10191
|
+
.TP
|
10192
|
+
.B \-i, \-\-server\-id <ip/hostname>
|
10193
|
+
サーバモードかデーモンモードで実行するとき、サーバのIDとなるアドレスを指定します。(デフォルトは\(gahostname\(gaの返すホスト名)
|
10215
10194
|
.UNINDENT
|
10195
|
+
.INDENT 0.0
|
10196
|
+
.TP
|
10197
|
+
.B \-h, \-\-help
|
10198
|
+
ヘルプメッセージを出力します。
|
10216
10199
|
.UNINDENT
|
10217
|
-
.sp
|
10218
|
-
とタイプしてください。もしgrntestが正常に動作すれば、:
|
10219
10200
|
.INDENT 0.0
|
10220
|
-
.
|
10201
|
+
.TP
|
10202
|
+
.B \-\-document\-root <path>
|
10203
|
+
httpサーバとしてgroongaを使用する場合に静的ページを格納するディレクトリを指定します。
|
10221
10204
|
.sp
|
10222
|
-
.
|
10223
|
-
.ft C
|
10224
|
-
test\-ユーザ名\-数字.log
|
10225
|
-
.ft P
|
10226
|
-
.fi
|
10227
|
-
.UNINDENT
|
10205
|
+
デフォルトでは、データベースを管理するための汎用的なページに対応するファイルが/usr/share/groonga/admin_html以下にインストールされます。このディレクトリをdocument\-rootオプションの値に指定して起動した場合、ウェブブラウザでhttp://hostname:port/index.htmlにアクセスすると、ウェブベースのデータベース管理ツールを使用できます。
|
10228
10206
|
.UNINDENT
|
10229
|
-
.sp
|
10230
|
-
というファイルが作成されるはずです。作成されない場合、このドキュメントの「トラブルシューティング」の章を参照してください。
|
10231
|
-
.SS スクリプトファイル
|
10232
|
-
.sp
|
10233
|
-
スクリプトファイルは、grntest命令を記述したテキストファイルです。
|
10234
|
-
";"セミコロンを利用して、一行に複数のgrntest命令を記述することができます。一行に複数のgrntest命令がある場合、各命令は並列に実行されます。
|
10235
|
-
"#"で始まる行はコメントとして扱われます。
|
10236
|
-
.SS grntest命令
|
10237
|
-
.sp
|
10238
|
-
現在サポートされているgrntest命令は以下の8つです。
|
10239
10207
|
.INDENT 0.0
|
10240
|
-
.
|
10241
|
-
|
10242
|
-
|
10243
|
-
.INDENT 3.5
|
10244
|
-
コマンドファイルをgrntest単体で実行します。スレッド数が指定されている場合、複数のスレッドで同じコマンドファイルを同時に実行します。繰り返し数が指定されてい場合、コマンドファイルの内容を繰り返し実行します。スレッド数、繰り返し数とも省略時は1です。1スレッドで複数回動作させたい場合は、do_local コマンドファイル 1 [繰り返し数]と明示的に指定してください。
|
10245
|
-
.UNINDENT
|
10208
|
+
.TP
|
10209
|
+
.B \-\-protocol <protocol>
|
10210
|
+
http,gqtpのいずれかを指定します。(デフォルトはgqtp)
|
10246
10211
|
.UNINDENT
|
10247
|
-
.sp
|
10248
|
-
do_gqpt コマンドファイル [スレッド数] [繰り返し数]
|
10249
10212
|
.INDENT 0.0
|
10250
|
-
.
|
10251
|
-
|
10252
|
-
.
|
10213
|
+
.TP
|
10214
|
+
.B \-\-log\-path <path>
|
10215
|
+
ログを出力するファイルのパスを指定します。(デフォルトは/var/log/groonga/groonga.logです)
|
10253
10216
|
.UNINDENT
|
10254
|
-
.sp
|
10255
|
-
rep_local コマンドファイル [スレッド数] [繰り返し数]
|
10256
10217
|
.INDENT 0.0
|
10257
|
-
.
|
10258
|
-
|
10259
|
-
|
10218
|
+
.TP
|
10219
|
+
.B \-\-query\-log\-path <path>
|
10220
|
+
クエリーログを出力するファイルのパスを指定します。(デフォルトでは出力されません)
|
10260
10221
|
.UNINDENT
|
10261
|
-
.sp
|
10262
|
-
rep_gqpt コマンドファイル [スレッド数] [繰り返し数]
|
10263
10222
|
.INDENT 0.0
|
10264
|
-
.
|
10265
|
-
|
10266
|
-
|
10223
|
+
.TP
|
10224
|
+
.B \-t, \-\-max\-threads <max threasd>
|
10225
|
+
最大で利用するスレッド数を指定します。(デフォルトはマシンのCPUコア数と同じ数です)
|
10267
10226
|
.UNINDENT
|
10268
|
-
.sp
|
10269
|
-
out_local コマンドファイル 入力ファイル名
|
10270
10227
|
.INDENT 0.0
|
10271
|
-
.
|
10272
|
-
|
10228
|
+
.TP
|
10229
|
+
.B \-\-pid\-path <path>
|
10230
|
+
PIDを保存するパスを指定します。(デフォルトでは保存しません)
|
10231
|
+
.UNINDENT
|
10273
10232
|
.INDENT 0.0
|
10233
|
+
.TP
|
10234
|
+
.B \-\-config\-path <path>
|
10235
|
+
設定ファイルのパスを指定します。設定ファイルは以下のようなフォーマットになります。:
|
10236
|
+
.INDENT 7.0
|
10274
10237
|
.INDENT 3.5
|
10275
10238
|
.sp
|
10276
10239
|
.nf
|
10277
10240
|
.ft C
|
10278
|
-
|
10241
|
+
# \(aq#\(aq以降はコメント。
|
10242
|
+
; \(aq;\(aq以降もコメント。
|
10243
|
+
|
10244
|
+
# \(aqキー = 値\(aqでオプションを指定。
|
10245
|
+
pid\-file = /var/run/groonga.pid
|
10246
|
+
|
10247
|
+
# \(aq=\(aqの前後の空白はは無視される。↓は↑と同じ意味。
|
10248
|
+
pid\-file=/var/run/groonga.pid
|
10249
|
+
|
10250
|
+
# \(aqキー\(aqは\(aq\-\-XXX\(aqスタイルのオプション名と同じものが使える。
|
10251
|
+
# 例えば、\(aq\-\-pid\-path\(aqに対応するキーは\(aqpid\-path\(aq。
|
10252
|
+
# ただし、キーが\(aqconfig\-path\(aqのオプションは無視される。
|
10279
10253
|
.ft P
|
10280
10254
|
.fi
|
10281
10255
|
.UNINDENT
|
10282
10256
|
.UNINDENT
|
10283
|
-
.sp
|
10284
|
-
とした場合と同じです。
|
10285
10257
|
.UNINDENT
|
10258
|
+
.INDENT 0.0
|
10259
|
+
.TP
|
10260
|
+
.B \-\-cache\-limit <limit>
|
10261
|
+
キャッシュ数の最大値を指定します。(デフォルトは100です)
|
10286
10262
|
.UNINDENT
|
10287
|
-
.sp
|
10288
|
-
out_gqtp コマンドファイル 出力ファイル名
|
10289
10263
|
.INDENT 0.0
|
10290
|
-
.
|
10291
|
-
|
10264
|
+
.TP
|
10265
|
+
.B \-\-default\-match\-escalation\-threshold <threshold>
|
10266
|
+
検索の挙動をエスカレーションする閾値を指定します。(デフォルトは0です)
|
10292
10267
|
.UNINDENT
|
10268
|
+
.SS 引数
|
10269
|
+
.INDENT 0.0
|
10270
|
+
.TP
|
10271
|
+
.B dest
|
10272
|
+
使用するデータベースのパス名を指定します。
|
10273
|
+
.sp
|
10274
|
+
クライアントモードの場合は接続先のホスト名とポート番号を指定します(デフォルト値は\(aqlocalhost:10041\(aq)。ポート番号を指定しない場合には、10041が指定されたものとします。
|
10293
10275
|
.UNINDENT
|
10294
10276
|
.INDENT 0.0
|
10295
10277
|
.TP
|
10296
|
-
.B
|
10297
|
-
|
10278
|
+
.B command [args]
|
10279
|
+
スタンドアロンおよびクライアントモードの場合は、実行するコマンドとその引数をコマンドライン引数に指定できます。コマンドライン引数にcommandを与えなかった場合は、標準入力から一行ずつEOFに達するまでコマンド文字列を読み取り、順次実行します。
|
10298
10280
|
.UNINDENT
|
10281
|
+
.SS コマンド
|
10282
|
+
.sp
|
10283
|
+
groongaコマンドを通してデータベースを操作する命令をコマンドと呼びます。コマンドは主にC言語で記述され、groongaプロセスにロードすることによって使用できるようになります。
|
10284
|
+
それぞれのコマンドは一意な名前と、0個以上の引数を持ちます。
|
10285
|
+
.sp
|
10286
|
+
引数は以下の2種類の方法のいずれかで指定することができます。:
|
10287
|
+
.INDENT 0.0
|
10288
|
+
.INDENT 3.5
|
10289
|
+
.sp
|
10290
|
+
.nf
|
10291
|
+
.ft C
|
10292
|
+
形式1: コマンド名 値1 値2,..
|
10293
|
+
|
10294
|
+
形式2: コマンド名 \-\-引数名1 値1 \-\-引数名2 値2,..
|
10295
|
+
.ft P
|
10296
|
+
.fi
|
10299
10297
|
.UNINDENT
|
10300
10298
|
.UNINDENT
|
10301
|
-
.SS コマンドファイル
|
10302
10299
|
.sp
|
10303
|
-
|
10304
|
-
.SS サンプル
|
10300
|
+
形式1でコマンドを実行する場合は、定義された順番で値を指定しなければならず、途中の引数の値を省略することはできません。形式2でコマンドを実行する場合は、「\-\-引数名」のように引数の名前を明示しなければならない代わりに、任意の順番で引数を指定することが可能で、途中の引数の指定を省略することもできます。
|
10305
10301
|
.sp
|
10306
|
-
|
10302
|
+
標準入力からコマンド文字列を与える場合は、コマンド名と引数名と値は、空白( )で区切ります。空白や、記号「"\(aq()」のうちいずれかを含む値を指定したい場合は、シングルクォート(\(aq)かダブルクォート(")で値を囲みます。値として指定する文字列の中では、改行文字は\(aqn\(aqに置き換えて指定します。また、引用符に使用した文字を値の中で指定する場合には、その文字の前にバックスラッシュ(\(aq\(aq) を指定します。バックスラッシュ文字自身を値として指定する場合には、その前にバックスラッシュを指定します。
|
10303
|
+
.sp
|
10304
|
+
You can write command list with continuous line which is represented by \(aq\e\(aq character.:
|
10307
10305
|
.INDENT 0.0
|
10308
10306
|
.INDENT 3.5
|
10309
10307
|
.sp
|
10310
10308
|
.nf
|
10311
10309
|
.ft C
|
10312
|
-
|
10313
|
-
|
10314
|
-
|
10315
|
-
|
10310
|
+
table_create \-\-name Terms \e
|
10311
|
+
\-\-flags TABLE_PAT_KEY \e
|
10312
|
+
\-\-key_type ShortText \e
|
10313
|
+
\-\-default_tokenizer TokenBigram
|
10316
10314
|
.ft P
|
10317
10315
|
.fi
|
10318
10316
|
.UNINDENT
|
10319
10317
|
.UNINDENT
|
10318
|
+
.SS 組み込みコマンド
|
10320
10319
|
.sp
|
10321
|
-
|
10320
|
+
以下のコマンドは組み込みコマンドとして予め定義されています。
|
10322
10321
|
.INDENT 0.0
|
10323
10322
|
.INDENT 3.5
|
10324
10323
|
.INDENT 0.0
|
10325
10324
|
.TP
|
10326
|
-
.B
|
10327
|
-
|
10325
|
+
.B \fBstatus\fP
|
10326
|
+
groongaプロセスの状態を表示します。
|
10328
10327
|
.TP
|
10329
|
-
.B
|
10330
|
-
|
10328
|
+
.B \fBtable_list\fP
|
10329
|
+
DBに定義されているテーブルのリストを表示します。
|
10331
10330
|
.TP
|
10332
|
-
.B
|
10333
|
-
|
10331
|
+
.B \fBcolumn_list\fP
|
10332
|
+
テーブルに定義されているカラムのリストを表示します。
|
10334
10333
|
.TP
|
10335
|
-
.B
|
10336
|
-
|
10334
|
+
.B \fBtable_create\fP
|
10335
|
+
DBにテーブルを追加します。
|
10336
|
+
.TP
|
10337
|
+
.B \fBcolumn_create\fP
|
10338
|
+
テーブルにカラムを追加します。
|
10339
|
+
.TP
|
10340
|
+
.B \fBtable_remove\fP
|
10341
|
+
DBに定義されているテーブルを削除します。
|
10342
|
+
.TP
|
10343
|
+
.B \fBcolumn_remove\fP
|
10344
|
+
テーブルに定義されているカラムを削除します。
|
10345
|
+
.TP
|
10346
|
+
.B \fBload\fP
|
10347
|
+
テーブルにレコードを挿入します。
|
10348
|
+
.TP
|
10349
|
+
.B \fBselect\fP
|
10350
|
+
テーブルに含まれるレコードを検索して表示します。
|
10351
|
+
.TP
|
10352
|
+
.B \fBdefine_selector\fP
|
10353
|
+
検索条件をカスタマイズした新たな検索コマンドを定義します。
|
10354
|
+
.TP
|
10355
|
+
.B \fBquit\fP
|
10356
|
+
データベースとのセッションを終了します。
|
10357
|
+
.TP
|
10358
|
+
.B \fBshutdown\fP
|
10359
|
+
サーバ(デーモン)プロセスを停止します。
|
10360
|
+
.TP
|
10361
|
+
.B \fBlog_level\fP
|
10362
|
+
ログ出力レベルを設定します。
|
10363
|
+
.TP
|
10364
|
+
.B \fBlog_put\fP
|
10365
|
+
ログ出力を行います。
|
10366
|
+
.TP
|
10367
|
+
.B \fBclearlock\fP
|
10368
|
+
ロックを解除します。
|
10337
10369
|
.UNINDENT
|
10338
10370
|
.UNINDENT
|
10339
10371
|
.UNINDENT
|
10340
|
-
.SS
|
10372
|
+
.SS 例
|
10341
10373
|
.sp
|
10342
|
-
|
10374
|
+
新しいデータベースを作成します。:
|
10343
10375
|
.INDENT 0.0
|
10344
10376
|
.INDENT 3.5
|
10345
|
-
.
|
10346
|
-
.
|
10347
|
-
.
|
10348
|
-
\-
|
10349
|
-
|
10350
|
-
.
|
10351
|
-
|
10352
|
-
.UNINDENT
|
10377
|
+
.sp
|
10378
|
+
.nf
|
10379
|
+
.ft C
|
10380
|
+
% groonga \-n /tmp/hoge.db quit
|
10381
|
+
%
|
10382
|
+
.ft P
|
10383
|
+
.fi
|
10353
10384
|
.UNINDENT
|
10354
10385
|
.UNINDENT
|
10355
10386
|
.sp
|
10356
|
-
|
10357
|
-
.sp
|
10358
|
-
例えば、
|
10387
|
+
作成済みのデータベースにテーブルを定義します。:
|
10359
10388
|
.INDENT 0.0
|
10360
10389
|
.INDENT 3.5
|
10361
10390
|
.sp
|
10362
10391
|
.nf
|
10363
10392
|
.ft C
|
10364
|
-
|
10393
|
+
% groonga /tmp/hoge.db table_create Table 0 ShortText
|
10394
|
+
[[0]]
|
10395
|
+
%
|
10365
10396
|
.ft P
|
10366
10397
|
.fi
|
10367
10398
|
.UNINDENT
|
10368
10399
|
.UNINDENT
|
10369
10400
|
.sp
|
10370
|
-
|
10401
|
+
サーバを起動します。:
|
10371
10402
|
.INDENT 0.0
|
10372
10403
|
.INDENT 3.5
|
10373
10404
|
.sp
|
10374
10405
|
.nf
|
10375
10406
|
.ft C
|
10376
|
-
|
10377
|
-
|
10378
|
-
do_local test.load;
|
10379
|
-
rep_gqtp test.select 10 10; rep_local test.status 10
|
10380
|
-
#SET_PORT 10400
|
10407
|
+
% groonga \-d /tmp/hoge.db
|
10408
|
+
%
|
10381
10409
|
.ft P
|
10382
10410
|
.fi
|
10383
10411
|
.UNINDENT
|
10384
10412
|
.UNINDENT
|
10385
10413
|
.sp
|
10386
|
-
|
10387
|
-
.SS grntest実行結果
|
10388
|
-
.sp
|
10389
|
-
grntestが正常に終了すると、(拡張子を除いた)スクリプト名\-ユーザ名\-実行開始時刻.logという形式のログファイルがカレントディレクトリに作られます。ログファイルは自動的にftp.groonga.org
|
10390
|
-
に送信されます。ログファイルは以下のようなjson形式のテキストです。
|
10414
|
+
httpサーバとして起動します。:
|
10391
10415
|
.INDENT 0.0
|
10392
10416
|
.INDENT 3.5
|
10393
10417
|
.sp
|
10394
10418
|
.nf
|
10395
10419
|
.ft C
|
10396
|
-
|
10397
|
-
|
10398
|
-
"date": "2010\-04\-14 22:47:04",
|
10399
|
-
"CPU": Intel(R) Pentium(R) 4 CPU 2.80GHz",
|
10400
|
-
"BIT": 32,
|
10401
|
-
"CORE": 1,
|
10402
|
-
"RAM": "975MBytes",
|
10403
|
-
"HDD": "257662232KBytes",
|
10404
|
-
"OS": "Linux 2.4.20\-24.7\-i686",
|
10405
|
-
"HOST": "localhost",
|
10406
|
-
"PORT": "10041",
|
10407
|
-
"VERSION": "0.1.8\-100\-ga54c5f8"
|
10408
|
-
},
|
10409
|
-
{"jobs": "rep_local test.ddl",
|
10410
|
-
"detail": [
|
10411
|
-
[0, "table_create res_table \-\-key_type ShortText", 1490, 3086, [0,1271252824.25846,0.00144
|
10412
|
-
7]],
|
10413
|
-
[0, "column_create res_table res_column \-\-type Text", 3137, 5956, [0,1271252824.2601,0.002
|
10414
|
-
741]],
|
10415
|
-
[0, "column_create res_table user_column \-\-type Text", 6020, 8935, [0,1271252824.26298,0.0
|
10416
|
-
02841]],
|
10417
|
-
[0, "column_create res_table mail_column \-\-type Text", 8990, 11925, [0,1271252824.26595,0.
|
10418
|
-
002861]],
|
10419
|
-
[0, "column_create res_table time_column \-\-type Time", 12008, 13192, [0,1271252824.26897,0
|
10420
|
-
\&.001147]],
|
10421
|
-
[0, "status", 13214, 13277, [0,1271252824.27018,3.0e\-05]],
|
10422
|
-
[0, "table_create thread_table \-\-key_type ShortText", 13289, 14541, [0,1271252824.27025,0.
|
10423
|
-
001213]],
|
10424
|
-
[0, "column_create thread_table thread_title_column \-\-type ShortText", 14570, 17380, [0,12
|
10425
|
-
71252824.27153,0.002741]],
|
10426
|
-
[0, "status", 17435, 17480, [0,1271252824.2744,2.7e\-05]],
|
10427
|
-
[0, "table_create lexicon_table \-\-flags 129 \-\-key_type ShortText \-\-default_tokenizer Token
|
10428
|
-
Bigram", 17491, 18970, [0,1271252824.27446,0.001431]],
|
10429
|
-
[0, "column_create lexicon_table inv_res_column 514 res_table res_column ", 18998, 33248,
|
10430
|
-
[0,1271252824.27596,0.01418]],
|
10431
|
-
[0, "column_create lexicon_table inv_thread_column 514 thread_table thread_title_column ",
|
10432
|
-
33285, 48472, [0,1271252824.29025,0.015119]],
|
10433
|
-
[0, "status", 48509, 48554, [0,1271252824.30547,2.7e\-05]]],
|
10434
|
-
"summary" :[{"job": "rep_local test.ddl", "latency": 48607, "self": 47719, "qps": 272.4281
|
10435
|
-
73, "min": 45, "max": 15187, "queries": 13}]},
|
10436
|
-
{"jobs": "do_local test.load; ",
|
10437
|
-
"summary" :[{"job": "do_local test.load", "latency": 68693, "self": 19801, "qps": 1010.049
|
10438
|
-
997, "min": 202, "max": 5453, "queries": 20}]},
|
10439
|
-
{"jobs": "do_gqtp test.select 10 10; do_local test.status 10",
|
10440
|
-
"summary" :[{"job": " do_local test.status 10", "latency": 805990, "self": 737014, "qps":
|
10441
|
-
54.273053, "min": 24, "max": 218, "queries": 40},{"job": "do_gqtp test.select 10 10", "lat
|
10442
|
-
ency": 831495, "self": 762519, "qps": 1967.164097, "min": 73, "max": 135631, "queries": 15
|
10443
|
-
00}]},
|
10444
|
-
{"total": 915408, "qps": 1718.359464, "queries": 1573}]
|
10420
|
+
% groonga \-d \-p 80 \-\-protocol http \-\-document\-root /usr/share/groonga/admin_html /tmp/hoge.db
|
10421
|
+
%
|
10445
10422
|
.ft P
|
10446
10423
|
.fi
|
10447
10424
|
.UNINDENT
|
10448
10425
|
.UNINDENT
|
10449
|
-
.SS 制限事項
|
10450
|
-
.INDENT 0.0
|
10451
|
-
.IP \(bu 2
|
10452
|
-
スクリプトファイルの一行には複数のgrntest命令を記述できますが、すべてのスレッド数の合計は最大64までに制限されます。
|
10453
|
-
.IP \(bu 2
|
10454
|
-
コマンドファイル中のgroongaコマンドの長さは最長5000000byteです。
|
10455
|
-
.UNINDENT
|
10456
|
-
.SS トラブルシューティング
|
10457
10426
|
.sp
|
10458
|
-
|
10427
|
+
サーバに接続し、テーブル一覧を表示します。:
|
10459
10428
|
.INDENT 0.0
|
10460
|
-
.
|
10461
|
-
インターネットに接続しているか? \fI\-\-ftp\fP オプションを指定すると、grntestは動作のたびにftp.groonga.orgと通信します。ftp.groonga.orgと通信可能でない場合、grntestは正常に動作しません。
|
10462
|
-
.IP \(bu 2
|
10463
|
-
groonga サーバが動作していないか? grntestは、\-i, \-\-host オプションで明示的にサーバを指定しないかぎり、自動的にlocalhostのgroongaサーバを立ち上げます。すでにgroongaサーバが動作している場合、grntestは正常に動作しない可能性があります。
|
10464
|
-
.IP \(bu 2
|
10465
|
-
指定したDBが適切か? grntestは、引数で指定したDBの中身はチェックしません。もし指定されたDBが存在しなければ自動的にDBを作成しますが、もしファイルとして存在する場合は中身に関わらず動作を続けてしまい、結果が異常になる可能性があります。
|
10466
|
-
.UNINDENT
|
10429
|
+
.INDENT 3.5
|
10467
10430
|
.sp
|
10468
|
-
|
10469
|
-
.
|
10431
|
+
.nf
|
10432
|
+
.ft C
|
10433
|
+
% groonga \-c localhost table_list
|
10434
|
+
[[0],[["id","name","path","flags","domain"],[256,"Table","/tmp/hoge.db.0000100",49152,14]]]
|
10435
|
+
%
|
10436
|
+
.ft P
|
10437
|
+
.fi
|
10438
|
+
.UNINDENT
|
10439
|
+
.UNINDENT
|
10440
|
+
.SS groonga\-benchmark
|
10470
10441
|
.SS 名前
|
10471
10442
|
.sp
|
10472
|
-
groonga \-
|
10443
|
+
groonga\-benchmark \- groongaテストプログラム
|
10473
10444
|
.SS 書式
|
10474
10445
|
.INDENT 0.0
|
10475
10446
|
.INDENT 3.5
|
10476
10447
|
.sp
|
10477
10448
|
.nf
|
10478
10449
|
.ft C
|
10479
|
-
groonga
|
10450
|
+
groonga\-benchmark [options...] [script] [db]
|
10480
10451
|
.ft P
|
10481
10452
|
.fi
|
10482
10453
|
.UNINDENT
|
10483
10454
|
.UNINDENT
|
10484
10455
|
.SS 説明
|
10485
10456
|
.sp
|
10486
|
-
groonga
|
10487
|
-
|
10457
|
+
groonga\-benchmarkは、groonga汎用ベンチマークツールです。
|
10458
|
+
.sp
|
10459
|
+
groongaを単独のプロセスとして利用する場合はもちろん、サーバプログラムとして利用する場合の動作確認や実行速度測定が可能です。
|
10460
|
+
.sp
|
10461
|
+
groonga\-benchmark用のデータファイルは自分で作成することも既存のものを利用することもできます。既存のデータファイルは、ftp.groonga.orgから必要に応じダウンロードします。そのため、groonga及びgroonga\-benchmarkが動作し、インターネットに接続できる環境であればgroongaコマンドの知識がなくてもgroongaの動作を確認できます。
|
10462
|
+
.sp
|
10463
|
+
現在は、Linux 及びWindows上で動作します。make installしてもインストールは行われません。
|
10488
10464
|
.SS オプション
|
10489
10465
|
.INDENT 0.0
|
10490
10466
|
.TP
|
10491
|
-
.B \-
|
10492
|
-
|
10467
|
+
.B \-i, \-\-host <ip/hostname>
|
10468
|
+
接続するgroongaサーバを、ipアドレスまたはホスト名で指定します。指定先にgroongaサーバが立ち上がっていない場合、接続不能となることに注意してください。このオプションを指定しない場合、groonga\-benchmarkは自動的にlocalhostのgroongaサーバを起動して接続します。
|
10493
10469
|
.UNINDENT
|
10494
10470
|
.INDENT 0.0
|
10495
10471
|
.TP
|
10496
|
-
.B \-
|
10497
|
-
|
10472
|
+
.B \-p, \-\-port <port number>
|
10473
|
+
自動的に起動するgroongaサーバ、または明示的に指定した接続先のgroonga サーバが利用するポート番号を指定します。接続先のgroongaサーバが利用しているポートと、このオプションで指定したポート番号が異なる場合、接続不能となることに注意してください。
|
10498
10474
|
.UNINDENT
|
10499
10475
|
.INDENT 0.0
|
10500
10476
|
.TP
|
10501
|
-
.B
|
10502
|
-
|
10477
|
+
.B \-\-dir
|
10478
|
+
ftp.groonga.org に用意されているスクリプトファイルを表示します。
|
10503
10479
|
.UNINDENT
|
10504
10480
|
.INDENT 0.0
|
10505
10481
|
.TP
|
10506
|
-
.B
|
10507
|
-
|
10482
|
+
.B \-\-ftp
|
10483
|
+
ftp.groonga.orgとFTP通信を行い、scriptファイルの同期やログファイルの送信を行います。
|
10508
10484
|
.UNINDENT
|
10509
10485
|
.INDENT 0.0
|
10510
10486
|
.TP
|
10511
|
-
.B \-
|
10512
|
-
|
10487
|
+
.B \-\-log\-output\-dir
|
10488
|
+
デフォルトでは、groonga\-benchmark終了後のログファイルの出力先ははカレントディレクトリです。このオプションを利用すると、任意のディレクトリに出力先を変更することができます。
|
10513
10489
|
.UNINDENT
|
10514
10490
|
.INDENT 0.0
|
10515
10491
|
.TP
|
10516
|
-
.B
|
10517
|
-
|
10492
|
+
.B \-\-groonga <groonga_path>
|
10493
|
+
groongaコマンドのパスを指定します。デフォルトでは、PATHの中からgroongaコマンドを探します。
|
10518
10494
|
.UNINDENT
|
10519
10495
|
.INDENT 0.0
|
10520
10496
|
.TP
|
10521
|
-
.B
|
10522
|
-
|
10523
|
-
|
10497
|
+
.B \-\-protocol <gqtp|http>
|
10498
|
+
groongaコマンドが使うプロトコルとして \fIgqtp\fP または \fIhttp\fP を指定します。
|
10524
10499
|
.UNINDENT
|
10500
|
+
.SS 引数
|
10525
10501
|
.INDENT 0.0
|
10526
10502
|
.TP
|
10527
|
-
.B
|
10528
|
-
|
10529
|
-
|
10530
|
-
.sp
|
10531
|
-
サーバモードかデーモンモードで実行するとき、listenするアドレスを指定します。(デフォルトは \fIhostname\fP の返すホスト名)
|
10503
|
+
.B script
|
10504
|
+
groonga\-benchmarkの動作方法(以下、groonga\-benchmark命令と呼びます)を記述したテキストファイルです。拡張子は.scrです。
|
10532
10505
|
.UNINDENT
|
10533
10506
|
.INDENT 0.0
|
10534
10507
|
.TP
|
10535
|
-
.B
|
10536
|
-
|
10537
|
-
(デフォルトは10041番)
|
10508
|
+
.B db
|
10509
|
+
groonga\-benchmarkが利用するgroonga データベースです。指定されたデータベースが存在しない場合、groonga\-benchmarkが新規に作成します。またgroonga サーバを自動的に起動する場合もこの引数で指定したデータベースが利用されます。接続するgroonga サーバを明示的に指定した場合に利用するデータベースは、接続先サーバが使用中のデータベースになることに注意してください。
|
10538
10510
|
.UNINDENT
|
10511
|
+
.SS 使い方
|
10512
|
+
.sp
|
10513
|
+
まず、シェル上(Windowsならコマンドプロンプト上)で:
|
10539
10514
|
.INDENT 0.0
|
10540
|
-
.
|
10541
|
-
.
|
10542
|
-
|
10515
|
+
.INDENT 3.5
|
10516
|
+
.sp
|
10517
|
+
.nf
|
10518
|
+
.ft C
|
10519
|
+
groonga\-benchmark test.scr 任意のDB名
|
10520
|
+
.ft P
|
10521
|
+
.fi
|
10543
10522
|
.UNINDENT
|
10544
|
-
.INDENT 0.0
|
10545
|
-
.TP
|
10546
|
-
.B \-h, \-\-help
|
10547
|
-
ヘルプメッセージを出力します。
|
10548
10523
|
.UNINDENT
|
10524
|
+
.sp
|
10525
|
+
とタイプしてください。もしgroonga\-benchmarkが正常に動作すれば、:
|
10549
10526
|
.INDENT 0.0
|
10550
|
-
.
|
10551
|
-
.B \-\-document\-root <path>
|
10552
|
-
httpサーバとしてgroongaを使用する場合に静的ページを格納するディレクトリを指定します。
|
10527
|
+
.INDENT 3.5
|
10553
10528
|
.sp
|
10554
|
-
|
10529
|
+
.nf
|
10530
|
+
.ft C
|
10531
|
+
test\-ユーザ名\-数字.log
|
10532
|
+
.ft P
|
10533
|
+
.fi
|
10555
10534
|
.UNINDENT
|
10535
|
+
.UNINDENT
|
10536
|
+
.sp
|
10537
|
+
というファイルが作成されるはずです。作成されない場合、このドキュメントの「トラブルシューティング」の章を参照してください。
|
10538
|
+
.SS スクリプトファイル
|
10539
|
+
.sp
|
10540
|
+
スクリプトファイルは、groonga\-benchmark命令を記述したテキストファイルです。
|
10541
|
+
";"セミコロンを利用して、一行に複数のgroonga\-benchmark命令を記述することができます。一行に複数のgroonga\-benchmark命令がある場合、各命令は並列に実行されます。
|
10542
|
+
"#"で始まる行はコメントとして扱われます。
|
10543
|
+
.SS groonga\-benchmark命令
|
10544
|
+
.sp
|
10545
|
+
現在サポートされているgroonga\-benchmark命令は以下の8つです。
|
10556
10546
|
.INDENT 0.0
|
10557
|
-
.
|
10558
|
-
|
10559
|
-
|
10547
|
+
.INDENT 3.5
|
10548
|
+
do_local コマンドファイル [スレッド数] [繰り返し数]
|
10549
|
+
.INDENT 0.0
|
10550
|
+
.INDENT 3.5
|
10551
|
+
コマンドファイルをgroonga\-benchmark単体で実行します。スレッド数が指定されている場合、複数のスレッドで同じコマンドファイルを同時に実行します。繰り返し数が指定されてい場合、コマンドファイルの内容を繰り返し実行します。スレッド数、繰り返し数とも省略時は1です。1スレッドで複数回動作させたい場合は、do_local コマンドファイル 1 [繰り返し数]と明示的に指定してください。
|
10560
10552
|
.UNINDENT
|
10553
|
+
.UNINDENT
|
10554
|
+
.sp
|
10555
|
+
do_gqpt コマンドファイル [スレッド数] [繰り返し数]
|
10561
10556
|
.INDENT 0.0
|
10562
|
-
.
|
10563
|
-
|
10564
|
-
ログを出力するファイルのパスを指定します。(デフォルトは/var/log/groonga/groonga.logです)
|
10557
|
+
.INDENT 3.5
|
10558
|
+
コマンドファイルをgroongaサーバで実行します。スレッド数や繰り返し数の意味はdo_localの場合と同じです。
|
10565
10559
|
.UNINDENT
|
10560
|
+
.UNINDENT
|
10561
|
+
.sp
|
10562
|
+
rep_local コマンドファイル [スレッド数] [繰り返し数]
|
10566
10563
|
.INDENT 0.0
|
10567
|
-
.
|
10568
|
-
|
10569
|
-
|
10564
|
+
.INDENT 3.5
|
10565
|
+
コマンドファイルをgroonga\-benchmark単体で実行し、より詳細な報告を行います。
|
10566
|
+
.UNINDENT
|
10570
10567
|
.UNINDENT
|
10568
|
+
.sp
|
10569
|
+
rep_gqpt コマンドファイル [スレッド数] [繰り返し数]
|
10571
10570
|
.INDENT 0.0
|
10572
|
-
.
|
10573
|
-
|
10574
|
-
|
10571
|
+
.INDENT 3.5
|
10572
|
+
コマンドファイルをgroongaサーバで実行し、より詳細な報告を行います。 スレッド数や繰り返し数の意味はdo_localと 同じです。
|
10573
|
+
.UNINDENT
|
10575
10574
|
.UNINDENT
|
10575
|
+
.sp
|
10576
|
+
out_local コマンドファイル 入力ファイル名
|
10576
10577
|
.INDENT 0.0
|
10577
|
-
.
|
10578
|
-
|
10579
|
-
PIDを保存するパスを指定します。(デフォルトでは保存しません)
|
10580
|
-
.UNINDENT
|
10578
|
+
.INDENT 3.5
|
10579
|
+
コマンドファイルをgroonga\-benchmark単体で実行し、各コマンドの実行結果をすべて”出力ファイル"に書きだします。この結果は、test_local, test_gqtp命令で利用します。なおこの命令の「出力ファイル」とは、groonga\-benchmark実行時に自動的に作成されるログとは別のものです。groonga\-benchmarkではコメントが利用できる以外、:
|
10581
10580
|
.INDENT 0.0
|
10582
|
-
.TP
|
10583
|
-
.B \-\-config\-path <path>
|
10584
|
-
設定ファイルのパスを指定します。設定ファイルは以下のようなフォーマットになります。:
|
10585
|
-
.INDENT 7.0
|
10586
10581
|
.INDENT 3.5
|
10587
10582
|
.sp
|
10588
10583
|
.nf
|
10589
10584
|
.ft C
|
10590
|
-
|
10591
|
-
; \(aq;\(aq以降もコメント。
|
10592
|
-
|
10593
|
-
# \(aqキー = 値\(aqでオプションを指定。
|
10594
|
-
pid\-file = /var/run/groonga.pid
|
10595
|
-
|
10596
|
-
# \(aq=\(aqの前後の空白はは無視される。↓は↑と同じ意味。
|
10597
|
-
pid\-file=/var/run/groonga.pid
|
10598
|
-
|
10599
|
-
# \(aqキー\(aqは\(aq\-\-XXX\(aqスタイルのオプション名と同じものが使える。
|
10600
|
-
# 例えば、\(aq\-\-pid\-path\(aqに対応するキーは\(aqpid\-path\(aq。
|
10601
|
-
# ただし、キーが\(aqconfig\-path\(aqのオプションは無視される。
|
10585
|
+
groonga < コマンドファイル > 出力ファイル
|
10602
10586
|
.ft P
|
10603
10587
|
.fi
|
10604
10588
|
.UNINDENT
|
10605
10589
|
.UNINDENT
|
10590
|
+
.sp
|
10591
|
+
とした場合と同じです。
|
10606
10592
|
.UNINDENT
|
10607
|
-
.INDENT 0.0
|
10608
|
-
.TP
|
10609
|
-
.B \-\-cache\-limit <limit>
|
10610
|
-
キャッシュ数の最大値を指定します。(デフォルトは100です)
|
10611
10593
|
.UNINDENT
|
10594
|
+
.sp
|
10595
|
+
out_gqtp コマンドファイル 出力ファイル名
|
10612
10596
|
.INDENT 0.0
|
10613
|
-
.
|
10614
|
-
|
10615
|
-
検索の挙動をエスカレーションする閾値を指定します。(デフォルトは0です)
|
10597
|
+
.INDENT 3.5
|
10598
|
+
コマンドファイルをgroongaサーバで実行します。その他はout_local命令と同等です。
|
10616
10599
|
.UNINDENT
|
10617
|
-
.SS 引数
|
10618
|
-
.INDENT 0.0
|
10619
|
-
.TP
|
10620
|
-
.B dest
|
10621
|
-
使用するデータベースのパス名を指定します。
|
10622
|
-
.sp
|
10623
|
-
クライアントモードの場合は接続先のホスト名とポート番号を指定します(デフォルト値は\(aqlocalhost:10041\(aq)。ポート番号を指定しない場合には、10041が指定されたものとします。
|
10624
10600
|
.UNINDENT
|
10625
10601
|
.INDENT 0.0
|
10626
10602
|
.TP
|
10627
|
-
.B
|
10628
|
-
|
10603
|
+
.B test_local コマンドファイル 入力ファイル名
|
10604
|
+
コマンドファイルをgroonga\-benchmark単体で実行し、各コマンドの実行結果を入力ファイルと比較します。処理時間など本質的要素以外に差分があった場合、差分を、入力ファイル.diffというファイルに書きだします。
|
10629
10605
|
.UNINDENT
|
10630
|
-
.SS コマンド
|
10631
|
-
.sp
|
10632
|
-
groongaコマンドを通してデータベースを操作する命令をコマンドと呼びます。コマンドは主にC言語で記述され、groongaプロセスにロードすることによって使用できるようになります。
|
10633
|
-
それぞれのコマンドは一意な名前と、0個以上の引数を持ちます。
|
10634
|
-
.sp
|
10635
|
-
引数は以下の2種類の方法のいずれかで指定することができます。:
|
10636
|
-
.INDENT 0.0
|
10637
|
-
.INDENT 3.5
|
10638
|
-
.sp
|
10639
|
-
.nf
|
10640
|
-
.ft C
|
10641
|
-
形式1: コマンド名 値1 値2,..
|
10642
|
-
|
10643
|
-
形式2: コマンド名 \-\-引数名1 値1 \-\-引数名2 値2,..
|
10644
|
-
.ft P
|
10645
|
-
.fi
|
10646
10606
|
.UNINDENT
|
10647
10607
|
.UNINDENT
|
10608
|
+
.SS コマンドファイル
|
10648
10609
|
.sp
|
10649
|
-
|
10650
|
-
.
|
10651
|
-
標準入力からコマンド文字列を与える場合は、コマンド名と引数名と値は、空白( )で区切ります。空白や、記号「"\(aq()」のうちいずれかを含む値を指定したい場合は、シングルクォート(\(aq)かダブルクォート(")で値を囲みます。値として指定する文字列の中では、改行文字は\(aqn\(aqに置き換えて指定します。また、引用符に使用した文字を値の中で指定する場合には、その文字の前にバックスラッシュ(\(aq\(aq) を指定します。バックスラッシュ文字自身を値として指定する場合には、その前にバックスラッシュを指定します。
|
10610
|
+
コマンドファイルは、groonga組み込みコマンドを1行に1つずつ記述したテキストファイルです。拡張子に制限はありません。groonga組み込みコマンドに関しては \fB/reference/commands\fP を参照してください。
|
10611
|
+
.SS サンプル
|
10652
10612
|
.sp
|
10653
|
-
|
10613
|
+
スクリプトファイルのサンプルです。:
|
10654
10614
|
.INDENT 0.0
|
10655
10615
|
.INDENT 3.5
|
10656
10616
|
.sp
|
10657
10617
|
.nf
|
10658
10618
|
.ft C
|
10659
|
-
|
10660
|
-
|
10661
|
-
|
10662
|
-
|
10619
|
+
# sample script
|
10620
|
+
rep_local test.ddl
|
10621
|
+
do_local test.load;
|
10622
|
+
do_gqtp test.select 10 10; do_local test.status 10
|
10663
10623
|
.ft P
|
10664
10624
|
.fi
|
10665
10625
|
.UNINDENT
|
10666
10626
|
.UNINDENT
|
10667
|
-
.SS 組み込みコマンド
|
10668
10627
|
.sp
|
10669
|
-
|
10628
|
+
上記の意味は以下のとおりです。
|
10670
10629
|
.INDENT 0.0
|
10671
10630
|
.INDENT 3.5
|
10672
10631
|
.INDENT 0.0
|
10673
10632
|
.TP
|
10674
|
-
.B
|
10675
|
-
|
10676
|
-
.TP
|
10677
|
-
.B \fBtable_list\fP
|
10678
|
-
DBに定義されているテーブルのリストを表示します。
|
10679
|
-
.TP
|
10680
|
-
.B \fBcolumn_list\fP
|
10681
|
-
テーブルに定義されているカラムのリストを表示します。
|
10682
|
-
.TP
|
10683
|
-
.B \fBtable_create\fP
|
10684
|
-
DBにテーブルを追加します。
|
10685
|
-
.TP
|
10686
|
-
.B \fBcolumn_create\fP
|
10687
|
-
テーブルにカラムを追加します。
|
10688
|
-
.TP
|
10689
|
-
.B \fBtable_remove\fP
|
10690
|
-
DBに定義されているテーブルを削除します。
|
10691
|
-
.TP
|
10692
|
-
.B \fBcolumn_remove\fP
|
10693
|
-
テーブルに定義されているカラムを削除します。
|
10694
|
-
.TP
|
10695
|
-
.B \fBload\fP
|
10696
|
-
テーブルにレコードを挿入します。
|
10697
|
-
.TP
|
10698
|
-
.B \fBselect\fP
|
10699
|
-
テーブルに含まれるレコードを検索して表示します。
|
10700
|
-
.TP
|
10701
|
-
.B \fBdefine_selector\fP
|
10702
|
-
検索条件をカスタマイズした新たな検索コマンドを定義します。
|
10703
|
-
.TP
|
10704
|
-
.B \fBquit\fP
|
10705
|
-
データベースとのセッションを終了します。
|
10706
|
-
.TP
|
10707
|
-
.B \fBshutdown\fP
|
10708
|
-
サーバ(デーモン)プロセスを停止します。
|
10633
|
+
.B 1行目
|
10634
|
+
コメント行。
|
10709
10635
|
.TP
|
10710
|
-
.B
|
10711
|
-
|
10636
|
+
.B 2行目
|
10637
|
+
test.dll というコマンドファイルをgroonga単体で実行し、詳細に報告する。
|
10712
10638
|
.TP
|
10713
|
-
.B
|
10714
|
-
|
10639
|
+
.B 3行目
|
10640
|
+
test.load というコマンドファイルをgroonga単体で実行する。(最後の";"セミコロンは複数のgroonga\-benchmark命令を記述する場合に必要ですが、この例のように1つのgroonga\-benchmark命令を実行する場合に付与しても問題ありません。)
|
10715
10641
|
.TP
|
10716
|
-
.B
|
10717
|
-
|
10642
|
+
.B 4行目
|
10643
|
+
test.select というコマンドファイルをgroongaサーバで10個のスレッドで同時に実行する。各スレッドはtest.selectの中身を10回繰り返す。また同時に、groonga単体でtest.statusというコマンドファイルを10個のスレッドで実行する。
|
10718
10644
|
.UNINDENT
|
10719
10645
|
.UNINDENT
|
10720
10646
|
.UNINDENT
|
10721
|
-
.SS
|
10647
|
+
.SS 特殊命令
|
10722
10648
|
.sp
|
10723
|
-
|
10649
|
+
スクリプトファイルのコメント行には特殊コマンドを埋め込むことが可能です。現在サポートされている特殊命令は以下の二つです。
|
10724
10650
|
.INDENT 0.0
|
10725
10651
|
.INDENT 3.5
|
10726
|
-
.
|
10727
|
-
.
|
10728
|
-
.
|
10729
|
-
|
10730
|
-
|
10731
|
-
.
|
10732
|
-
|
10652
|
+
.INDENT 0.0
|
10653
|
+
.TP
|
10654
|
+
.B #SET_HOST <ip/hostname>
|
10655
|
+
\-i, \-\-hostオプションと同等の機能です。コマンドラインオプションに指定したIPアドレス/ホスト名と、SET_HOSTで指定したIPアドレス/ホスト名が異なる場合、またコマンドラインオプションを指定しなかった場合にもSET_HOSTが優先されます。SET_HOSTを利用した場合、サーバが自動的には起動されないのもコマンドラインオプションで指定した場合と同様です。
|
10656
|
+
.TP
|
10657
|
+
.B #SET_PORT <port number>
|
10658
|
+
\-p, \-\-port オプションと同等の機能です。コマンドラインオプションに指定したポート番号とSET_PORTで指定したポート番号が異なる場合、またコマンドラインオプションを指定しなかった場合にもSET_PORTが優先されます。
|
10659
|
+
.UNINDENT
|
10733
10660
|
.UNINDENT
|
10734
10661
|
.UNINDENT
|
10735
10662
|
.sp
|
10736
|
-
|
10663
|
+
特殊命令はスクリプトファイルの任意の場所に書き込むことができます。同一ファイル内に複数回特殊命令を記述した場合、「最後の」特殊命令が有効となります。
|
10664
|
+
.sp
|
10665
|
+
例えば、
|
10737
10666
|
.INDENT 0.0
|
10738
10667
|
.INDENT 3.5
|
10739
10668
|
.sp
|
10740
10669
|
.nf
|
10741
10670
|
.ft C
|
10742
|
-
|
10743
|
-
[[0]]
|
10744
|
-
%
|
10671
|
+
$ ./groonga\-benchmark \-\-port 20010 test.scr testdb
|
10745
10672
|
.ft P
|
10746
10673
|
.fi
|
10747
10674
|
.UNINDENT
|
10748
10675
|
.UNINDENT
|
10749
10676
|
.sp
|
10750
|
-
|
10677
|
+
とコマンド上でポートを指定した場合でも、もしtest.scrの中身が
|
10751
10678
|
.INDENT 0.0
|
10752
10679
|
.INDENT 3.5
|
10753
10680
|
.sp
|
10754
10681
|
.nf
|
10755
10682
|
.ft C
|
10756
|
-
|
10757
|
-
|
10683
|
+
#SET_PORT 10900
|
10684
|
+
rep_local test.ddl
|
10685
|
+
do_local test.load;
|
10686
|
+
rep_gqtp test.select 10 10; rep_local test.status 10
|
10687
|
+
#SET_PORT 10400
|
10758
10688
|
.ft P
|
10759
10689
|
.fi
|
10760
10690
|
.UNINDENT
|
10761
10691
|
.UNINDENT
|
10762
10692
|
.sp
|
10763
|
-
|
10693
|
+
であれば、自動的に起動されるgroongaサーバはポート番号10400を利用します。
|
10694
|
+
.SS groonga\-benchmark実行結果
|
10695
|
+
.sp
|
10696
|
+
groonga\-benchmarkが正常に終了すると、(拡張子を除いた)スクリプト名\-ユーザ名\-実行開始時刻.logという形式のログファイルがカレントディレクトリに作られます。ログファイルは自動的にftp.groonga.org
|
10697
|
+
に送信されます。ログファイルは以下のようなjson形式のテキストです。
|
10764
10698
|
.INDENT 0.0
|
10765
10699
|
.INDENT 3.5
|
10766
10700
|
.sp
|
10767
10701
|
.nf
|
10768
10702
|
.ft C
|
10769
|
-
|
10770
|
-
|
10703
|
+
[{"script": "test.scr",
|
10704
|
+
"user": "homepage",
|
10705
|
+
"date": "2010\-04\-14 22:47:04",
|
10706
|
+
"CPU": Intel(R) Pentium(R) 4 CPU 2.80GHz",
|
10707
|
+
"BIT": 32,
|
10708
|
+
"CORE": 1,
|
10709
|
+
"RAM": "975MBytes",
|
10710
|
+
"HDD": "257662232KBytes",
|
10711
|
+
"OS": "Linux 2.4.20\-24.7\-i686",
|
10712
|
+
"HOST": "localhost",
|
10713
|
+
"PORT": "10041",
|
10714
|
+
"VERSION": "0.1.8\-100\-ga54c5f8"
|
10715
|
+
},
|
10716
|
+
{"jobs": "rep_local test.ddl",
|
10717
|
+
"detail": [
|
10718
|
+
[0, "table_create res_table \-\-key_type ShortText", 1490, 3086, [0,1271252824.25846,0.00144
|
10719
|
+
7]],
|
10720
|
+
[0, "column_create res_table res_column \-\-type Text", 3137, 5956, [0,1271252824.2601,0.002
|
10721
|
+
741]],
|
10722
|
+
[0, "column_create res_table user_column \-\-type Text", 6020, 8935, [0,1271252824.26298,0.0
|
10723
|
+
02841]],
|
10724
|
+
[0, "column_create res_table mail_column \-\-type Text", 8990, 11925, [0,1271252824.26595,0.
|
10725
|
+
002861]],
|
10726
|
+
[0, "column_create res_table time_column \-\-type Time", 12008, 13192, [0,1271252824.26897,0
|
10727
|
+
\&.001147]],
|
10728
|
+
[0, "status", 13214, 13277, [0,1271252824.27018,3.0e\-05]],
|
10729
|
+
[0, "table_create thread_table \-\-key_type ShortText", 13289, 14541, [0,1271252824.27025,0.
|
10730
|
+
001213]],
|
10731
|
+
[0, "column_create thread_table thread_title_column \-\-type ShortText", 14570, 17380, [0,12
|
10732
|
+
71252824.27153,0.002741]],
|
10733
|
+
[0, "status", 17435, 17480, [0,1271252824.2744,2.7e\-05]],
|
10734
|
+
[0, "table_create lexicon_table \-\-flags 129 \-\-key_type ShortText \-\-default_tokenizer Token
|
10735
|
+
Bigram", 17491, 18970, [0,1271252824.27446,0.001431]],
|
10736
|
+
[0, "column_create lexicon_table inv_res_column 514 res_table res_column ", 18998, 33248,
|
10737
|
+
[0,1271252824.27596,0.01418]],
|
10738
|
+
[0, "column_create lexicon_table inv_thread_column 514 thread_table thread_title_column ",
|
10739
|
+
33285, 48472, [0,1271252824.29025,0.015119]],
|
10740
|
+
[0, "status", 48509, 48554, [0,1271252824.30547,2.7e\-05]]],
|
10741
|
+
"summary" :[{"job": "rep_local test.ddl", "latency": 48607, "self": 47719, "qps": 272.4281
|
10742
|
+
73, "min": 45, "max": 15187, "queries": 13}]},
|
10743
|
+
{"jobs": "do_local test.load; ",
|
10744
|
+
"summary" :[{"job": "do_local test.load", "latency": 68693, "self": 19801, "qps": 1010.049
|
10745
|
+
997, "min": 202, "max": 5453, "queries": 20}]},
|
10746
|
+
{"jobs": "do_gqtp test.select 10 10; do_local test.status 10",
|
10747
|
+
"summary" :[{"job": " do_local test.status 10", "latency": 805990, "self": 737014, "qps":
|
10748
|
+
54.273053, "min": 24, "max": 218, "queries": 40},{"job": "do_gqtp test.select 10 10", "lat
|
10749
|
+
ency": 831495, "self": 762519, "qps": 1967.164097, "min": 73, "max": 135631, "queries": 15
|
10750
|
+
00}]},
|
10751
|
+
{"total": 915408, "qps": 1718.359464, "queries": 1573}]
|
10771
10752
|
.ft P
|
10772
10753
|
.fi
|
10773
10754
|
.UNINDENT
|
10774
10755
|
.UNINDENT
|
10775
|
-
.
|
10776
|
-
サーバに接続し、テーブル一覧を表示します。:
|
10756
|
+
.SS 制限事項
|
10777
10757
|
.INDENT 0.0
|
10778
|
-
.
|
10779
|
-
|
10780
|
-
.
|
10781
|
-
|
10782
|
-
% groonga \-c localhost table_list
|
10783
|
-
[[0],[["id","name","path","flags","domain"],[256,"Table","/tmp/hoge.db.0000100",49152,14]]]
|
10784
|
-
%
|
10785
|
-
.ft P
|
10786
|
-
.fi
|
10758
|
+
.IP \(bu 2
|
10759
|
+
スクリプトファイルの一行には複数のgroonga\-benchmark命令を記述できますが、すべてのスレッド数の合計は最大64までに制限されます。
|
10760
|
+
.IP \(bu 2
|
10761
|
+
コマンドファイル中のgroongaコマンドの長さは最長5000000byteです。
|
10787
10762
|
.UNINDENT
|
10763
|
+
.SS トラブルシューティング
|
10764
|
+
.sp
|
10765
|
+
もし、groonga\-benchmarkが正常に動作しない場合、まず以下を確認してください。
|
10766
|
+
.INDENT 0.0
|
10767
|
+
.IP \(bu 2
|
10768
|
+
インターネットに接続しているか? \fI\-\-ftp\fP オプションを指定すると、groonga\-benchmarkは動作のたびにftp.groonga.orgと通信します。ftp.groonga.orgと通信可能でない場合、groonga\-benchmarkは正常に動作しません。
|
10769
|
+
.IP \(bu 2
|
10770
|
+
groonga サーバが動作していないか? groonga\-benchmarkは、\-i, \-\-host オプションで明示的にサーバを指定しないかぎり、自動的にlocalhostのgroongaサーバを立ち上げます。すでにgroongaサーバが動作している場合、groonga\-benchmarkは正常に動作しない可能性があります。
|
10771
|
+
.IP \(bu 2
|
10772
|
+
指定したDBが適切か? groonga\-benchmarkは、引数で指定したDBの中身はチェックしません。もし指定されたDBが存在しなければ自動的にDBを作成しますが、もしファイルとして存在する場合は中身に関わらず動作を続けてしまい、結果が異常になる可能性があります。
|
10788
10773
|
.UNINDENT
|
10774
|
+
.sp
|
10775
|
+
以上の原因でなければ、問題はgroonga\-benchmarkかgroongaにあります。ご報告をお願いします。
|
10789
10776
|
.SS groonga\-httpd
|
10790
10777
|
.SS Summary
|
10791
10778
|
.sp
|
@@ -10870,14 +10857,14 @@ Execution example:
|
|
10870
10857
|
0.000355720520019531
|
10871
10858
|
],
|
10872
10859
|
{
|
10873
|
-
"uptime":
|
10860
|
+
"uptime": 1,
|
10874
10861
|
"max_command_version": 2,
|
10875
10862
|
"n_queries": 0,
|
10876
10863
|
"cache_hit_rate": 0.0,
|
10877
|
-
"version": "3.0
|
10878
|
-
"alloc_count":
|
10864
|
+
"version": "3.1.0",
|
10865
|
+
"alloc_count": 159,
|
10879
10866
|
"command_version": 1,
|
10880
|
-
"starttime":
|
10867
|
+
"starttime": 1385359876,
|
10881
10868
|
"default_command_version": 1
|
10882
10869
|
}
|
10883
10870
|
]
|
@@ -14795,6 +14782,21 @@ You can load any script file which mruby supports by calling \fBruby_load\fP.
|
|
14795
14782
|
.sp
|
14796
14783
|
Here is an example that just load \fBexpression.rb\fP as Ruby script.
|
14797
14784
|
.sp
|
14785
|
+
Execution example:
|
14786
|
+
.INDENT 0.0
|
14787
|
+
.INDENT 3.5
|
14788
|
+
.sp
|
14789
|
+
.nf
|
14790
|
+
.ft C
|
14791
|
+
register ruby/load
|
14792
|
+
# [[0, 1337566253.89858, 0.000355720520019531], true]
|
14793
|
+
ruby_load "expression.rb"
|
14794
|
+
# [[0, 1337566253.89858, 0.000355720520019531], {"value": null}]
|
14795
|
+
.ft P
|
14796
|
+
.fi
|
14797
|
+
.UNINDENT
|
14798
|
+
.UNINDENT
|
14799
|
+
.sp
|
14798
14800
|
Register \fBruby/load\fP plugin to use \fBruby_load\fP command in advance.
|
14799
14801
|
.sp
|
14800
14802
|
Note that \fBruby_load\fP is implemented as an experimental plugin,
|
@@ -17529,14 +17531,14 @@ status
|
|
17529
17531
|
# 0.000355720520019531
|
17530
17532
|
# ],
|
17531
17533
|
# {
|
17532
|
-
# "uptime":
|
17534
|
+
# "uptime": 0,
|
17533
17535
|
# "max_command_version": 2,
|
17534
|
-
# "n_queries":
|
17536
|
+
# "n_queries": 0,
|
17535
17537
|
# "cache_hit_rate": 0.0,
|
17536
|
-
# "version": "3.0
|
17537
|
-
# "alloc_count":
|
17538
|
+
# "version": "3.1.0",
|
17539
|
+
# "alloc_count": 290,
|
17538
17540
|
# "command_version": 1,
|
17539
|
-
# "starttime":
|
17541
|
+
# "starttime": 1385359891,
|
17540
17542
|
# "default_command_version": 1
|
17541
17543
|
# }
|
17542
17544
|
# ]
|
@@ -32794,7 +32796,7 @@ as \(aqja\(aq.
|
|
32794
32796
|
\fIsearch\fP
|
32795
32797
|
.UNINDENT
|
32796
32798
|
.SH AUTHOR
|
32797
|
-
|
32799
|
+
Groonga Project
|
32798
32800
|
.SH COPYRIGHT
|
32799
32801
|
2009-2013, Brazil, Inc
|
32800
32802
|
.\" Generated by docutils manpage writer.
|