rroonga 5.0.0-x86-mingw32 → 5.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.yardopts +1 -0
- data/Rakefile +1 -16
- data/example/bookmark.rb +1 -6
- data/example/index-html.rb +0 -1
- data/ext/groonga/extconf.rb +4 -7
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-column.c +33 -67
- data/ext/groonga/rb-grn-context.c +5 -5
- data/ext/groonga/rb-grn-database.c +2 -2
- data/ext/groonga/rb-grn-double-array-trie.c +4 -2
- data/ext/groonga/rb-grn-encoding-support.c +7 -1
- data/ext/groonga/rb-grn-equal-operator.c +85 -0
- data/ext/groonga/rb-grn-exception.c +17 -0
- data/ext/groonga/rb-grn-expression.c +85 -43
- data/ext/groonga/rb-grn-greater-equal-operator.c +88 -0
- data/ext/groonga/rb-grn-greater-operator.c +85 -0
- data/ext/groonga/rb-grn-hash.c +1 -1
- data/ext/groonga/rb-grn-index-column.c +150 -11
- data/ext/groonga/rb-grn-less-equal-operator.c +88 -0
- data/ext/groonga/rb-grn-less-operator.c +85 -0
- data/ext/groonga/rb-grn-logger.c +5 -5
- data/ext/groonga/rb-grn-match-operator.c +86 -0
- data/ext/groonga/rb-grn-normalizer.c +8 -1
- data/ext/groonga/rb-grn-not-equal-operator.c +85 -0
- data/ext/groonga/rb-grn-object.c +170 -36
- data/ext/groonga/rb-grn-operator.c +395 -172
- data/ext/groonga/rb-grn-patricia-trie.c +10 -8
- data/ext/groonga/rb-grn-plugin.c +51 -3
- data/ext/groonga/rb-grn-prefix-operator.c +86 -0
- data/ext/groonga/rb-grn-procedure-type.c +4 -0
- data/ext/groonga/rb-grn-query-logger.c +4 -4
- data/ext/groonga/rb-grn-regexp-operator.c +85 -0
- data/ext/groonga/rb-grn-snippet.c +1 -1
- data/ext/groonga/rb-grn-table-key-support.c +9 -5
- data/ext/groonga/rb-grn-table.c +52 -66
- data/ext/groonga/rb-grn-type.c +1 -1
- data/ext/groonga/rb-grn-utils.c +22 -3
- data/ext/groonga/rb-grn.h +31 -4
- data/ext/groonga/rb-groonga.c +9 -9
- 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/2.2/groonga.so +0 -0
- data/lib/groonga/context.rb +31 -0
- data/lib/groonga/expression-builder.rb +14 -1
- data/lib/groonga/record.rb +10 -8
- data/lib/groonga/schema.rb +3 -1
- data/rroonga-build.rb +2 -2
- data/rroonga.gemspec +3 -3
- data/test/groonga-test-utils.rb +4 -0
- data/test/test-column.rb +28 -26
- data/test/test-exception.rb +1 -0
- data/test/test-expression-builder.rb +83 -1
- data/test/test-expression.rb +80 -48
- data/test/test-index-column.rb +102 -29
- data/test/test-normalizer.rb +35 -29
- data/test/test-operator.rb +214 -0
- data/test/test-plugin.rb +24 -6
- data/test/test-procedure.rb +29 -0
- data/test/test-schema-type.rb +14 -0
- data/test/test-table-select-mecab.rb +1 -4
- data/test/test-table.rb +7 -0
- data/test/test-token-regexp.rb +30 -0
- data/test/test-type.rb +24 -0
- data/vendor/local/bin/grndb.exe +0 -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/libonig-5.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/groonga.conf +1 -1
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +1 -0
- data/vendor/local/include/groonga/groonga/expr.h +2 -0
- data/vendor/local/include/groonga/groonga/groonga.h +32 -5
- data/vendor/local/include/groonga/groonga/ii.h +7 -0
- data/vendor/local/include/groonga/groonga/obj.h +37 -0
- data/vendor/local/include/groonga/groonga/scorer.h +95 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +6 -3
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +6 -5
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +421 -17
- 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 +2 -2
- 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 +2 -2
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
- 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 +2 -2
- data/vendor/local/lib/groonga/scripts/ruby/backtrace_entry.rb +12 -4
- data/vendor/local/lib/groonga/scripts/ruby/database.rb +11 -3
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +23 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +158 -0
- data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +39 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +4 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +11 -7
- data/vendor/local/lib/groonga/scripts/ruby/object.rb +11 -0
- data/vendor/local/lib/groonga/scripts/ruby/operator.rb +22 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +7 -2
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -11
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +137 -34
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb +9 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- 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/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +2 -2
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -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/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +32 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -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 +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +194 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +42 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt +54 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +173 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +112 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +7 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +64 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +63 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +11 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +3 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
- 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/commands/select.txt +17 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +12 -12
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +7 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +47 -26
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/in_values.txt +54 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +403 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +217 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +13 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +8 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +530 -16
- data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +15 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +66 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +0 -81
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +6 -68
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -26
- data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -4
- data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/client.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +51 -38
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/genindex.html +26 -14
- data/vendor/local/share/doc/groonga/en/html/index.html +150 -130
- data/vendor/local/share/doc/groonga/en/html/install.html +32 -34
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +28 -30
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -30
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/install/others.html +87 -89
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +25 -27
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news.html +256 -27
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +32 -34
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +27 -29
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +98 -100
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +102 -104
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +139 -118
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +51 -52
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +49 -51
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +60 -62
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +80 -82
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +130 -80
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +48 -50
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -81
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +41 -43
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +41 -43
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +89 -91
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +75 -77
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +64 -66
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +202 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +58 -60
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +58 -60
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +56 -54
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +53 -55
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +94 -96
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +43 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +71 -73
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +35 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -45
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +49 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +23 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +24 -26
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +26 -28
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +314 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +252 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +87 -89
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +46 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +195 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +193 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +38 -40
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +61 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +54 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +54 -56
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +590 -592
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +37 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +92 -94
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +152 -154
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +49 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +103 -105
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +45 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +52 -54
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -21
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +35 -37
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +26 -28
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +73 -75
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +34 -36
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +124 -90
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +66 -68
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +113 -115
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +55 -57
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +45 -47
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +81 -83
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +65 -67
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +54 -56
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +135 -44
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +81 -83
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +43 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +67 -69
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +66 -70
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +39 -41
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +349 -286
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +483 -417
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -37
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +38 -40
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +44 -46
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +30 -31
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +32 -34
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +32 -34
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +60 -62
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +931 -0
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +442 -0
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +153 -0
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +287 -0
- data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +114 -0
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +45 -47
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +51 -53
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +38 -40
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +40 -42
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +52 -54
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +36 -38
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +1394 -34
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +57 -59
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -40
- data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +23 -24
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +28 -30
- data/vendor/local/share/doc/groonga/en/html/server/http.html +42 -44
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +30 -32
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +29 -31
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +137 -0
- data/vendor/local/share/doc/groonga/en/html/server/package.html +36 -38
- data/vendor/local/share/doc/groonga/en/html/spec.html +22 -24
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +208 -129
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -25
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +31 -33
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +17 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +21 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +50 -52
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +27 -125
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +18 -20
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +20 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +32 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -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 +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +194 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +42 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt +54 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +173 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +112 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +7 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +64 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +63 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +11 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +3 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
- 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/commands/select.txt +17 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +12 -12
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +7 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +47 -26
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt +54 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +403 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +217 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +13 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +8 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +530 -16
- data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +15 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +66 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +0 -81
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +6 -68
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -26
- data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -4
- data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
- data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/client.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +51 -38
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +26 -14
- data/vendor/local/share/doc/groonga/ja/html/index.html +150 -130
- data/vendor/local/share/doc/groonga/ja/html/install.html +32 -34
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +31 -33
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -27
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +78 -80
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +26 -28
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news.html +210 -27
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +32 -34
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +27 -29
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +91 -93
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +59 -61
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +89 -91
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +139 -118
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +51 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +49 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +55 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +80 -82
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +126 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +48 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +44 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +74 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +44 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +41 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +41 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +89 -91
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +44 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +75 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +64 -66
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +197 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +58 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +48 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +43 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +93 -95
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +35 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +43 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +23 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +62 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +33 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +23 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +24 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +26 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +314 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +250 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +80 -81
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +46 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +188 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +190 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +57 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +71 -73
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +53 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +53 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +394 -396
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +78 -80
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +123 -125
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +61 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +89 -91
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +46 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +51 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +21 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +26 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +61 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +34 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +126 -90
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +63 -65
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +44 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +94 -96
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +55 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +45 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +66 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +55 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +53 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +135 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +70 -72
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +43 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +53 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +56 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +36 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +229 -171
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +381 -322
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +28 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +32 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +28 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +39 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +878 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +442 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +154 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +287 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +115 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +45 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +48 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +40 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +37 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +1300 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +57 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -40
- data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +23 -24
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +28 -30
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +42 -44
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +62 -64
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +29 -31
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +138 -0
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -37
- data/vendor/local/share/doc/groonga/ja/html/spec.html +22 -24
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +207 -128
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -25
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +30 -32
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +23 -25
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +47 -49
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +27 -125
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +20 -22
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +31 -33
- data/vendor/local/share/license/mruby/README.md +2 -2
- data/vendor/local/share/man/ja/man1/groonga.1 +6205 -2251
- data/vendor/local/share/man/man1/groonga.1 +7210 -3029
- metadata +75 -11
- data/doc/text/news.textile +0 -1217
- data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +0 -10308
- data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +0 -999
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +0 -10308
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +0 -999
data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.1.9. groonga-suggest-learner — Groonga v5.0.
|
10
|
+
<title>7.1.9. groonga-suggest-learner — Groonga v5.0.1-42-g4d10df1 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '5.0.
|
18
|
+
VERSION: '5.0.1-42-g4d10df1',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,12 +25,12 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="7.1. Executables" href="../executables.html" />
|
30
30
|
<link rel="next" title="7.2. Output" href="../output.html" />
|
31
31
|
<link rel="prev" title="7.1.8. groonga-suggest-httpd" href="groonga-suggest-httpd.html" />
|
32
32
|
</head>
|
33
|
-
<body
|
33
|
+
<body>
|
34
34
|
<div class="header">
|
35
35
|
<h1 class="title">
|
36
36
|
<a id="top-link" href="../../index.html">
|
@@ -48,7 +48,7 @@
|
|
48
48
|
</div>
|
49
49
|
|
50
50
|
|
51
|
-
<div class="related"
|
51
|
+
<div class="related">
|
52
52
|
<h3>Navigation</h3>
|
53
53
|
<ul>
|
54
54
|
<li class="right" style="margin-right: 10px">
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="groonga-suggest-httpd.html" title="7.1.8. groonga-suggest-httpd"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">Groonga v5.0.
|
63
|
+
<li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >7. Reference manual</a> »</li>
|
65
65
|
<li><a href="../executables.html" accesskey="U">7.1. Executables</a> »</li>
|
66
66
|
</ul>
|
@@ -69,7 +69,7 @@
|
|
69
69
|
<div class="document">
|
70
70
|
<div class="documentwrapper">
|
71
71
|
<div class="bodywrapper">
|
72
|
-
<div class="body"
|
72
|
+
<div class="body">
|
73
73
|
|
74
74
|
<div class="section" id="groonga-suggest-learner">
|
75
75
|
<h1>7.1.9. groonga-suggest-learner<a class="headerlink" href="#groonga-suggest-learner" title="Permalink to this headline">¶</a></h1>
|
@@ -99,8 +99,8 @@ learning data from already existing log files.</p>
|
|
99
99
|
</div>
|
100
100
|
<div class="section" id="learning-data-from-log-files">
|
101
101
|
<h3>7.1.9.3.2. Learning data from log files<a class="headerlink" href="#learning-data-from-log-files" title="Permalink to this headline">¶</a></h3>
|
102
|
-
<p>Execute groonga-suggest-learner with <
|
103
|
-
<p>Here is the sample to load log data under <
|
102
|
+
<p>Execute groonga-suggest-learner with <tt class="docutils literal"><span class="pre">-l</span></tt> option.</p>
|
103
|
+
<p>Here is the sample to load log data under <tt class="docutils literal"><span class="pre">logs</span></tt> directory:</p>
|
104
104
|
<div class="highlight-none"><div class="highlight"><pre>groonga-suggest-learner -l logs testdb/db
|
105
105
|
</pre></div>
|
106
106
|
</div>
|
@@ -110,53 +110,53 @@ learning data from already existing log files.</p>
|
|
110
110
|
<h2>7.1.9.4. Options<a class="headerlink" href="#options" title="Permalink to this headline">¶</a></h2>
|
111
111
|
<dl class="cmdoption">
|
112
112
|
<dt id="cmdoption-r">
|
113
|
-
<span id="cmdoption--receive-endpoint"></span><
|
114
|
-
<dd><p>Uses <
|
113
|
+
<span id="cmdoption--receive-endpoint"></span><tt class="descname">-r</tt><tt class="descclassname"> <endpoint></tt><tt class="descclassname">, </tt><tt class="descname">--receive-endpoint</tt><tt class="descclassname"> <endpoint></tt><a class="headerlink" href="#cmdoption-r" title="Permalink to this definition">¶</a></dt>
|
114
|
+
<dd><p>Uses <tt class="docutils literal"><span class="pre"><endpoint></span></tt> as the receiver endpoint.</p>
|
115
115
|
</dd></dl>
|
116
116
|
|
117
117
|
<dl class="cmdoption">
|
118
118
|
<dt id="cmdoption-s">
|
119
|
-
<span id="cmdoption--send-endpoint"></span><
|
120
|
-
<dd><p>Uses <
|
119
|
+
<span id="cmdoption--send-endpoint"></span><tt class="descname">-s</tt><tt class="descclassname"> <endpoint></tt><tt class="descclassname">, </tt><tt class="descname">--send-endpoint</tt><tt class="descclassname"> <endpoint></tt><a class="headerlink" href="#cmdoption-s" title="Permalink to this definition">¶</a></dt>
|
120
|
+
<dd><p>Uses <tt class="docutils literal"><span class="pre"><endpoint></span></tt> as the sender endpoint.</p>
|
121
121
|
</dd></dl>
|
122
122
|
|
123
123
|
<dl class="cmdoption">
|
124
124
|
<dt id="cmdoption-d">
|
125
|
-
<span id="cmdoption--daemon"></span><
|
125
|
+
<span id="cmdoption--daemon"></span><tt class="descname">-d</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--daemon</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-d" title="Permalink to this definition">¶</a></dt>
|
126
126
|
<dd><p>Runs as a daemon.</p>
|
127
127
|
</dd></dl>
|
128
128
|
|
129
129
|
<dl class="cmdoption">
|
130
130
|
<dt id="cmdoption-l">
|
131
|
-
<span id="cmdoption--log-base-path"></span><
|
132
|
-
<dd><p>Reads logs from <
|
131
|
+
<span id="cmdoption--log-base-path"></span><tt class="descname">-l</tt><tt class="descclassname"> <directory></tt><tt class="descclassname">, </tt><tt class="descname">--log-base-path</tt><tt class="descclassname"> <directory></tt><a class="headerlink" href="#cmdoption-l" title="Permalink to this definition">¶</a></dt>
|
132
|
+
<dd><p>Reads logs from <tt class="docutils literal"><span class="pre"><directory></span></tt>.</p>
|
133
133
|
</dd></dl>
|
134
134
|
|
135
135
|
<dl class="cmdoption">
|
136
136
|
<dt id="cmdoption--log-path">
|
137
|
-
<
|
138
|
-
<dd><p>Outputs log to <
|
137
|
+
<tt class="descname">--log-path</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--log-path" title="Permalink to this definition">¶</a></dt>
|
138
|
+
<dd><p>Outputs log to <tt class="docutils literal"><span class="pre"><path></span></tt>.</p>
|
139
139
|
</dd></dl>
|
140
140
|
|
141
141
|
<dl class="cmdoption">
|
142
142
|
<dt id="cmdoption--log-level">
|
143
|
-
<
|
144
|
-
<dd><p>Uses <
|
143
|
+
<tt class="descname">--log-level</tt><tt class="descclassname"> <level></tt><a class="headerlink" href="#cmdoption--log-level" title="Permalink to this definition">¶</a></dt>
|
144
|
+
<dd><p>Uses <tt class="docutils literal"><span class="pre"><level></span></tt> for log level. <tt class="docutils literal"><span class="pre"><level></span></tt> must be between 1 and 9.
|
145
145
|
Larger level outputs more logs.</p>
|
146
146
|
</dd></dl>
|
147
147
|
|
148
148
|
</div>
|
149
149
|
<div class="section" id="parameters">
|
150
150
|
<h2>7.1.9.5. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
|
151
|
-
<p>There is one required parameter - <
|
151
|
+
<p>There is one required parameter - <tt class="docutils literal"><span class="pre">database_path</span></tt>.</p>
|
152
152
|
<div class="section" id="database-path">
|
153
|
-
<h3>7.1.9.5.1. <
|
153
|
+
<h3>7.1.9.5.1. <tt class="docutils literal"><span class="pre">database_path</span></tt><a class="headerlink" href="#database-path" title="Permalink to this headline">¶</a></h3>
|
154
154
|
<p>Specifies the path to a groonga database.</p>
|
155
155
|
</div>
|
156
156
|
</div>
|
157
157
|
<div class="section" id="related-tables">
|
158
158
|
<h2>7.1.9.6. Related tables<a class="headerlink" href="#related-tables" title="Permalink to this headline">¶</a></h2>
|
159
|
-
<p>Here is the list of table which learned data is stored. If you specify <
|
159
|
+
<p>Here is the list of table which learned data is stored. If you specify <tt class="docutils literal"><span class="pre">query</span></tt> as dataset name, following <tt class="docutils literal"><span class="pre">_DATASET</span></tt> suffix are replaced. Thus, <tt class="docutils literal"><span class="pre">event_query</span></tt> table is used.</p>
|
160
160
|
<ul class="simple">
|
161
161
|
<li>event_DATASET</li>
|
162
162
|
</ul>
|
@@ -167,7 +167,7 @@ Larger level outputs more logs.</p>
|
|
167
167
|
</div>
|
168
168
|
</div>
|
169
169
|
</div>
|
170
|
-
<div class="sphinxsidebar"
|
170
|
+
<div class="sphinxsidebar">
|
171
171
|
<div class="sphinxsidebarwrapper">
|
172
172
|
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
173
173
|
<ul>
|
@@ -181,7 +181,7 @@ Larger level outputs more logs.</p>
|
|
181
181
|
</li>
|
182
182
|
<li><a class="reference internal" href="#options">7.1.9.4. Options</a></li>
|
183
183
|
<li><a class="reference internal" href="#parameters">7.1.9.5. Parameters</a><ul>
|
184
|
-
<li><a class="reference internal" href="#database-path">7.1.9.5.1. <
|
184
|
+
<li><a class="reference internal" href="#database-path">7.1.9.5.1. <tt class="docutils literal"><span class="pre">database_path</span></tt></a></li>
|
185
185
|
</ul>
|
186
186
|
</li>
|
187
187
|
<li><a class="reference internal" href="#related-tables">7.1.9.6. Related tables</a></li>
|
@@ -195,14 +195,12 @@ Larger level outputs more logs.</p>
|
|
195
195
|
<h4>Next topic</h4>
|
196
196
|
<p class="topless"><a href="../output.html"
|
197
197
|
title="next chapter">7.2. Output</a></p>
|
198
|
-
<
|
199
|
-
|
200
|
-
<
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
</div>
|
205
|
-
<div id="searchbox" style="display: none" role="search">
|
198
|
+
<h3>This Page</h3>
|
199
|
+
<ul class="this-page-menu">
|
200
|
+
<li><a href="../../_sources/reference/executables/groonga-suggest-learner.txt"
|
201
|
+
rel="nofollow">Show Source</a></li>
|
202
|
+
</ul>
|
203
|
+
<div id="searchbox" style="display: none">
|
206
204
|
<h3>Quick search</h3>
|
207
205
|
<form class="search" action="../../search.html" method="get">
|
208
206
|
<input type="text" name="q" />
|
@@ -219,7 +217,7 @@ Larger level outputs more logs.</p>
|
|
219
217
|
</div>
|
220
218
|
<div class="clearer"></div>
|
221
219
|
</div>
|
222
|
-
<div class="related"
|
220
|
+
<div class="related">
|
223
221
|
<h3>Navigation</h3>
|
224
222
|
<ul>
|
225
223
|
<li class="right" style="margin-right: 10px">
|
@@ -231,12 +229,12 @@ Larger level outputs more logs.</p>
|
|
231
229
|
<li class="right" >
|
232
230
|
<a href="groonga-suggest-httpd.html" title="7.1.8. groonga-suggest-httpd"
|
233
231
|
>previous</a> |</li>
|
234
|
-
<li><a href="../../index.html">Groonga v5.0.
|
232
|
+
<li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> »</li>
|
235
233
|
<li><a href="../../reference.html" >7. Reference manual</a> »</li>
|
236
234
|
<li><a href="../executables.html" >7.1. Executables</a> »</li>
|
237
235
|
</ul>
|
238
236
|
</div>
|
239
|
-
<div class="footer"
|
237
|
+
<div class="footer">
|
240
238
|
© Copyright 2009-2015, Brazil, Inc.
|
241
239
|
</div>
|
242
240
|
</body>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.1.3. groonga command — Groonga v5.0.
|
10
|
+
<title>7.1.3. groonga command — Groonga v5.0.1-42-g4d10df1 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../../',
|
18
|
-
VERSION: '5.0.
|
18
|
+
VERSION: '5.0.1-42-g4d10df1',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,12 +25,12 @@
|
|
25
25
|
<script type="text/javascript" src="../../_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.1-42-g4d10df1 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="7.1. Executables" href="../executables.html" />
|
30
30
|
<link rel="next" title="7.1.4. groonga-benchmark" href="groonga-benchmark.html" />
|
31
31
|
<link rel="prev" title="7.1.2. grnslap" href="grnslap.html" />
|
32
32
|
</head>
|
33
|
-
<body
|
33
|
+
<body>
|
34
34
|
<div class="header">
|
35
35
|
<h1 class="title">
|
36
36
|
<a id="top-link" href="../../index.html">
|
@@ -48,7 +48,7 @@
|
|
48
48
|
</div>
|
49
49
|
|
50
50
|
|
51
|
-
<div class="related"
|
51
|
+
<div class="related">
|
52
52
|
<h3>Navigation</h3>
|
53
53
|
<ul>
|
54
54
|
<li class="right" style="margin-right: 10px">
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="grnslap.html" title="7.1.2. grnslap"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li><a href="../../index.html">Groonga v5.0.
|
63
|
+
<li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> »</li>
|
64
64
|
<li><a href="../../reference.html" >7. Reference manual</a> »</li>
|
65
65
|
<li><a href="../executables.html" accesskey="U">7.1. Executables</a> »</li>
|
66
66
|
</ul>
|
@@ -69,74 +69,111 @@
|
|
69
69
|
<div class="document">
|
70
70
|
<div class="documentwrapper">
|
71
71
|
<div class="bodywrapper">
|
72
|
-
<div class="body"
|
72
|
+
<div class="body">
|
73
73
|
|
74
74
|
<div class="section" id="groonga-command">
|
75
75
|
<h1>7.1.3. groonga command<a class="headerlink" href="#groonga-command" title="Permalink to this headline">¶</a></h1>
|
76
|
-
<div class="section" id="
|
77
|
-
<h2>7.1.3.1.
|
76
|
+
<div class="section" id="summary">
|
77
|
+
<h2>7.1.3.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
|
78
78
|
<p>groonga - 列指向データベース機能を持つ全文検索エンジンソフトウェア</p>
|
79
|
+
<p>Groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンです。
|
80
|
+
Groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通して操作することができます。このマニュアルページでは、groongaコマンドの使い方について説明します。</p>
|
79
81
|
</div>
|
80
|
-
<div class="section" id="
|
81
|
-
<h2>7.1.3.2.
|
82
|
+
<div class="section" id="syntax">
|
83
|
+
<h2>7.1.3.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
|
82
84
|
<div class="highlight-none"><div class="highlight"><pre>groonga [options] [dest] [command [args]]
|
83
85
|
</pre></div>
|
84
86
|
</div>
|
85
87
|
</div>
|
86
|
-
<div class="section" id="
|
87
|
-
<h2>7.1.3.3.
|
88
|
-
<p>Groongaは列指向のデータベース機能を持つ高速でスケーラブルな全文検索エンジンです。
|
89
|
-
Groongaのデータベースは、groongaコマンドかCライブラリインタフェースを通して操作することができます。このマニュアルページでは、groongaコマンドの使い方について説明します。</p>
|
90
|
-
</div>
|
91
|
-
<div class="section" id="id4">
|
92
|
-
<h2>7.1.3.4. オプション<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
|
88
|
+
<div class="section" id="options">
|
89
|
+
<h2>7.1.3.3. Options<a class="headerlink" href="#options" title="Permalink to this headline">¶</a></h2>
|
93
90
|
<dl class="cmdoption">
|
94
91
|
<dt id="cmdoption-n">
|
95
|
-
<
|
96
|
-
<dd><p
|
92
|
+
<tt class="descname">-n</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-n" title="Permalink to this definition">¶</a></dt>
|
93
|
+
<dd><p>Creates new database.</p>
|
97
94
|
</dd></dl>
|
98
95
|
|
99
96
|
<dl class="cmdoption">
|
100
97
|
<dt id="cmdoption-c">
|
101
|
-
<
|
102
|
-
<dd><p
|
98
|
+
<tt class="descname">-c</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-c" title="Permalink to this definition">¶</a></dt>
|
99
|
+
<dd><p>Executes <tt class="docutils literal"><span class="pre">groonga</span></tt> command in client mode.</p>
|
103
100
|
</dd></dl>
|
104
101
|
|
105
102
|
<dl class="cmdoption">
|
106
103
|
<dt id="cmdoption-s">
|
107
|
-
<
|
108
|
-
<dd><p
|
104
|
+
<tt class="descname">-s</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-s" title="Permalink to this definition">¶</a></dt>
|
105
|
+
<dd><p>Executes <tt class="docutils literal"><span class="pre">groonga</span></tt> command in server mode. Use "Ctrl+C" to stop the <tt class="docutils literal"><span class="pre">groonga</span></tt> process.</p>
|
109
106
|
</dd></dl>
|
110
107
|
|
111
108
|
<dl class="cmdoption">
|
112
109
|
<dt id="cmdoption-d">
|
113
|
-
<
|
114
|
-
<dd><p
|
110
|
+
<tt class="descname">-d</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-d" title="Permalink to this definition">¶</a></dt>
|
111
|
+
<dd><p>Executes <tt class="docutils literal"><span class="pre">groonga</span></tt> command in daemon mode. In contrast to server mode, <tt class="docutils literal"><span class="pre">groonga</span></tt> command forks in daemon mode. For example, to stop local daemon process, use "curl <a class="reference external" href="http://127.0.0.1:10041/d/shutdown">http://127.0.0.1:10041/d/shutdown</a>".</p>
|
115
112
|
</dd></dl>
|
116
113
|
|
117
114
|
<dl class="cmdoption">
|
118
115
|
<dt id="cmdoption-e">
|
119
|
-
<span id="cmdoption--encoding"></span><
|
120
|
-
<dd><p
|
116
|
+
<span id="cmdoption--encoding"></span><tt class="descname">-e</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--encoding</tt><tt class="descclassname"> <encoding></tt><a class="headerlink" href="#cmdoption-e" title="Permalink to this definition">¶</a></dt>
|
117
|
+
<dd><p>Specifies encoding which is used for Groonga database. This option is effective when you create new Groonga database. This parameter specifies one of the following values: <tt class="docutils literal"><span class="pre">none</span></tt>, <tt class="docutils literal"><span class="pre">euc</span></tt>, <tt class="docutils literal"><span class="pre">utf8</span></tt>, <tt class="docutils literal"><span class="pre">sjis</span></tt>, <tt class="docutils literal"><span class="pre">latin</span></tt> or <tt class="docutils literal"><span class="pre">koi8r</span></tt>.</p>
|
121
118
|
</dd></dl>
|
122
119
|
|
123
120
|
<dl class="cmdoption">
|
124
121
|
<dt id="cmdoption-l">
|
125
|
-
<span id="cmdoption--log-level"></span><
|
126
|
-
<dd><p
|
122
|
+
<span id="cmdoption--log-level"></span><tt class="descname">-l</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--log-level</tt><tt class="descclassname"> <log level></tt><a class="headerlink" href="#cmdoption-l" title="Permalink to this definition">¶</a></dt>
|
123
|
+
<dd><p>Specifies log level. A integer value between 0 and 8. The meaning of value is:</p>
|
127
124
|
</dd></dl>
|
128
125
|
|
126
|
+
<table border="1" class="docutils">
|
127
|
+
<colgroup>
|
128
|
+
<col width="50%" />
|
129
|
+
<col width="50%" />
|
130
|
+
</colgroup>
|
131
|
+
<thead valign="bottom">
|
132
|
+
<tr class="row-odd"><th class="head">log level</th>
|
133
|
+
<th class="head">description</th>
|
134
|
+
</tr>
|
135
|
+
</thead>
|
136
|
+
<tbody valign="top">
|
137
|
+
<tr class="row-even"><td>0</td>
|
138
|
+
<td>Nothing</td>
|
139
|
+
</tr>
|
140
|
+
<tr class="row-odd"><td>1</td>
|
141
|
+
<td>Emergency</td>
|
142
|
+
</tr>
|
143
|
+
<tr class="row-even"><td>2</td>
|
144
|
+
<td>Alert</td>
|
145
|
+
</tr>
|
146
|
+
<tr class="row-odd"><td>3</td>
|
147
|
+
<td>Critical</td>
|
148
|
+
</tr>
|
149
|
+
<tr class="row-even"><td>4</td>
|
150
|
+
<td>Error</td>
|
151
|
+
</tr>
|
152
|
+
<tr class="row-odd"><td>5</td>
|
153
|
+
<td>Warning</td>
|
154
|
+
</tr>
|
155
|
+
<tr class="row-even"><td>6</td>
|
156
|
+
<td>Notice</td>
|
157
|
+
</tr>
|
158
|
+
<tr class="row-odd"><td>7</td>
|
159
|
+
<td>Info</td>
|
160
|
+
</tr>
|
161
|
+
<tr class="row-even"><td>8</td>
|
162
|
+
<td>Debug</td>
|
163
|
+
</tr>
|
164
|
+
</tbody>
|
165
|
+
</table>
|
129
166
|
<dl class="cmdoption">
|
130
167
|
<dt id="cmdoption-a">
|
131
|
-
<span id="cmdoption--address"></span><
|
168
|
+
<span id="cmdoption--address"></span><tt class="descname">-a</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--address</tt><tt class="descclassname"> <ip/hostname></tt><a class="headerlink" href="#cmdoption-a" title="Permalink to this definition">¶</a></dt>
|
132
169
|
<dd><div class="deprecated">
|
133
|
-
<p><span class="versionmodified">Deprecated since version 1.2.2: </span>Use <a class="reference internal" href="#cmdoption--bind-address"><
|
170
|
+
<p><span class="versionmodified">Deprecated since version 1.2.2: </span>Use <a class="reference internal" href="#cmdoption--bind-address"><em class="xref std std-option">--bind-address</em></a> instead.</p>
|
134
171
|
</div>
|
135
172
|
</dd></dl>
|
136
173
|
|
137
174
|
<dl class="cmdoption">
|
138
175
|
<dt id="cmdoption--bind-address">
|
139
|
-
<
|
176
|
+
<tt class="descname">--bind-address</tt><tt class="descclassname"> <ip/hostname></tt><a class="headerlink" href="#cmdoption--bind-address" title="Permalink to this definition">¶</a></dt>
|
140
177
|
<dd><div class="versionadded">
|
141
178
|
<p><span class="versionmodified">New in version 1.2.2.</span></p>
|
142
179
|
</div>
|
@@ -145,63 +182,63 @@ Groongaのデータベースは、groongaコマンドかCライブラリイン
|
|
145
182
|
|
146
183
|
<dl class="cmdoption">
|
147
184
|
<dt id="cmdoption-p">
|
148
|
-
<span id="cmdoption--port"></span><
|
185
|
+
<span id="cmdoption--port"></span><tt class="descname">-p</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--port</tt><tt class="descclassname"> <port number></tt><a class="headerlink" href="#cmdoption-p" title="Permalink to this definition">¶</a></dt>
|
149
186
|
<dd><p>クライアント、サーバ、またはデーモンモードで使用するTCPポート番号。
|
150
187
|
(クライアントモードのデフォルトは10043番、サーバ、またはデーモンモードのデフォルトは、HTTPの場合、10041番、GQTPの場合、10043番)</p>
|
151
188
|
</dd></dl>
|
152
189
|
|
153
190
|
<dl class="cmdoption">
|
154
191
|
<dt id="cmdoption-i">
|
155
|
-
<span id="cmdoption--server-id"></span><
|
192
|
+
<span id="cmdoption--server-id"></span><tt class="descname">-i</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--server-id</tt><tt class="descclassname"> <ip/hostname></tt><a class="headerlink" href="#cmdoption-i" title="Permalink to this definition">¶</a></dt>
|
156
193
|
<dd><p>サーバモードかデーモンモードで実行するとき、サーバのIDとなるアドレスを指定します。(デフォルトは`hostname`の返すホスト名)</p>
|
157
194
|
</dd></dl>
|
158
195
|
|
159
196
|
<dl class="cmdoption">
|
160
197
|
<dt id="cmdoption-h">
|
161
|
-
<span id="cmdoption--help"></span><
|
198
|
+
<span id="cmdoption--help"></span><tt class="descname">-h</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--help</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-h" title="Permalink to this definition">¶</a></dt>
|
162
199
|
<dd><p>ヘルプメッセージを出力します。</p>
|
163
200
|
</dd></dl>
|
164
201
|
|
165
202
|
<dl class="cmdoption">
|
166
203
|
<dt id="cmdoption--document-root">
|
167
|
-
<
|
204
|
+
<tt class="descname">--document-root</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--document-root" title="Permalink to this definition">¶</a></dt>
|
168
205
|
<dd><p>httpサーバとしてgroongaを使用する場合に静的ページを格納するディレクトリを指定します。</p>
|
169
206
|
<p>デフォルトでは、データベースを管理するための汎用的なページに対応するファイルが/usr/share/groonga/admin_html以下にインストールされます。このディレクトリをdocument-rootオプションの値に指定して起動した場合、ウェブブラウザでhttp://hostname:port/index.htmlにアクセスすると、ウェブベースのデータベース管理ツールを使用できます。</p>
|
170
207
|
</dd></dl>
|
171
208
|
|
172
209
|
<dl class="cmdoption">
|
173
210
|
<dt id="cmdoption--protocol">
|
174
|
-
<
|
211
|
+
<tt class="descname">--protocol</tt><tt class="descclassname"> <protocol></tt><a class="headerlink" href="#cmdoption--protocol" title="Permalink to this definition">¶</a></dt>
|
175
212
|
<dd><p>http,gqtpのいずれかを指定します。(デフォルトはgqtp)</p>
|
176
213
|
</dd></dl>
|
177
214
|
|
178
215
|
<dl class="cmdoption">
|
179
216
|
<dt id="cmdoption--log-path">
|
180
|
-
<
|
217
|
+
<tt class="descname">--log-path</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--log-path" title="Permalink to this definition">¶</a></dt>
|
181
218
|
<dd><p>ログを出力するファイルのパスを指定します。(デフォルトは/var/log/groonga/groonga.logです)</p>
|
182
219
|
</dd></dl>
|
183
220
|
|
184
221
|
<dl class="cmdoption">
|
185
222
|
<dt id="cmdoption--query-log-path">
|
186
|
-
<
|
223
|
+
<tt class="descname">--query-log-path</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--query-log-path" title="Permalink to this definition">¶</a></dt>
|
187
224
|
<dd><p>クエリーログを出力するファイルのパスを指定します。(デフォルトでは出力されません)</p>
|
188
225
|
</dd></dl>
|
189
226
|
|
190
227
|
<dl class="cmdoption">
|
191
228
|
<dt id="cmdoption-t">
|
192
|
-
<span id="cmdoption--max-threads"></span><
|
229
|
+
<span id="cmdoption--max-threads"></span><tt class="descname">-t</tt><tt class="descclassname"></tt><tt class="descclassname">, </tt><tt class="descname">--max-threads</tt><tt class="descclassname"> <max threasd></tt><a class="headerlink" href="#cmdoption-t" title="Permalink to this definition">¶</a></dt>
|
193
230
|
<dd><p>最大で利用するスレッド数を指定します。(デフォルトはマシンのCPUコア数と同じ数です)</p>
|
194
231
|
</dd></dl>
|
195
232
|
|
196
233
|
<dl class="cmdoption">
|
197
234
|
<dt id="cmdoption--pid-path">
|
198
|
-
<
|
235
|
+
<tt class="descname">--pid-path</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--pid-path" title="Permalink to this definition">¶</a></dt>
|
199
236
|
<dd><p>PIDを保存するパスを指定します。(デフォルトでは保存しません)</p>
|
200
237
|
</dd></dl>
|
201
238
|
|
202
239
|
<dl class="cmdoption">
|
203
240
|
<dt id="cmdoption--config-path">
|
204
|
-
<
|
241
|
+
<tt class="descname">--config-path</tt><tt class="descclassname"> <path></tt><a class="headerlink" href="#cmdoption--config-path" title="Permalink to this definition">¶</a></dt>
|
205
242
|
<dd><p>設定ファイルのパスを指定します。設定ファイルは以下のようなフォーマットになります。:</p>
|
206
243
|
<div class="highlight-none"><div class="highlight"><pre># '#'以降はコメント。
|
207
244
|
; ';'以降もコメント。
|
@@ -221,35 +258,35 @@ pid-file=/var/run/groonga.pid
|
|
221
258
|
|
222
259
|
<dl class="cmdoption">
|
223
260
|
<dt id="cmdoption--cache-limit">
|
224
|
-
<
|
261
|
+
<tt class="descname">--cache-limit</tt><tt class="descclassname"> <limit></tt><a class="headerlink" href="#cmdoption--cache-limit" title="Permalink to this definition">¶</a></dt>
|
225
262
|
<dd><p>キャッシュ数の最大値を指定します。(デフォルトは100です)</p>
|
226
263
|
</dd></dl>
|
227
264
|
|
228
265
|
<dl class="cmdoption">
|
229
266
|
<dt id="cmdoption--default-match-escalation-threshold">
|
230
|
-
<
|
267
|
+
<tt class="descname">--default-match-escalation-threshold</tt><tt class="descclassname"> <threshold></tt><a class="headerlink" href="#cmdoption--default-match-escalation-threshold" title="Permalink to this definition">¶</a></dt>
|
231
268
|
<dd><p>検索の挙動をエスカレーションする閾値を指定します。(デフォルトは0です)</p>
|
232
269
|
</dd></dl>
|
233
270
|
|
234
271
|
</div>
|
235
|
-
<div class="section" id="
|
236
|
-
<h2>7.1.3.
|
272
|
+
<div class="section" id="command-line-parameters">
|
273
|
+
<h2>7.1.3.4. Command line parameters<a class="headerlink" href="#command-line-parameters" title="Permalink to this headline">¶</a></h2>
|
237
274
|
<dl class="cmdoption">
|
238
275
|
<dt id="cmdoption-arg-dest">
|
239
|
-
<
|
276
|
+
<tt class="descname">dest</tt><tt class="descclassname"></tt><a class="headerlink" href="#cmdoption-arg-dest" title="Permalink to this definition">¶</a></dt>
|
240
277
|
<dd><p>使用するデータベースのパス名を指定します。</p>
|
241
278
|
<p>クライアントモードの場合は接続先のホスト名とポート番号を指定します(デフォルト値は'localhost:10043')。ポート番号を指定しない場合には、10043が指定されたものとします。</p>
|
242
279
|
</dd></dl>
|
243
280
|
|
244
281
|
<dl class="cmdoption">
|
245
282
|
<dt id="cmdoption-arg-command">
|
246
|
-
<
|
283
|
+
<tt class="descname">command</tt><tt class="descclassname"> [args]</tt><a class="headerlink" href="#cmdoption-arg-command" title="Permalink to this definition">¶</a></dt>
|
247
284
|
<dd><p>スタンドアロンおよびクライアントモードの場合は、実行するコマンドとその引数をコマンドライン引数に指定できます。コマンドライン引数にcommandを与えなかった場合は、標準入力から一行ずつEOFに達するまでコマンド文字列を読み取り、順次実行します。</p>
|
248
285
|
</dd></dl>
|
249
286
|
|
250
287
|
</div>
|
251
|
-
<div class="section" id="command
|
252
|
-
<span id="
|
288
|
+
<div class="section" id="command">
|
289
|
+
<span id="command-list-with-continuous-line"></span><h2>7.1.3.5. Command<a class="headerlink" href="#command" title="Permalink to this headline">¶</a></h2>
|
253
290
|
<p>groongaコマンドを通してデータベースを操作する命令をコマンドと呼びます。コマンドは主にC言語で記述され、groongaプロセスにロードすることによって使用できるようになります。
|
254
291
|
それぞれのコマンドは一意な名前と、0個以上の引数を持ちます。</p>
|
255
292
|
<p>引数は以下の2種類の方法のいずれかで指定することができます。:</p>
|
@@ -268,46 +305,46 @@ pid-file=/var/run/groonga.pid
|
|
268
305
|
</pre></div>
|
269
306
|
</div>
|
270
307
|
</div>
|
271
|
-
<div class="section" id="
|
272
|
-
<h2>7.1.3.
|
308
|
+
<div class="section" id="builtin-command">
|
309
|
+
<h2>7.1.3.6. Builtin command<a class="headerlink" href="#builtin-command" title="Permalink to this headline">¶</a></h2>
|
273
310
|
<p>以下のコマンドは組み込みコマンドとして予め定義されています。</p>
|
274
311
|
<blockquote>
|
275
312
|
<div><dl class="docutils">
|
276
|
-
<dt><
|
313
|
+
<dt><tt class="docutils literal"><span class="pre">status</span></tt></dt>
|
277
314
|
<dd>groongaプロセスの状態を表示します。</dd>
|
278
|
-
<dt><
|
315
|
+
<dt><tt class="docutils literal"><span class="pre">table_list</span></tt></dt>
|
279
316
|
<dd>DBに定義されているテーブルのリストを表示します。</dd>
|
280
|
-
<dt><
|
317
|
+
<dt><tt class="docutils literal"><span class="pre">column_list</span></tt></dt>
|
281
318
|
<dd>テーブルに定義されているカラムのリストを表示します。</dd>
|
282
|
-
<dt><
|
319
|
+
<dt><tt class="docutils literal"><span class="pre">table_create</span></tt></dt>
|
283
320
|
<dd>DBにテーブルを追加します。</dd>
|
284
|
-
<dt><
|
321
|
+
<dt><tt class="docutils literal"><span class="pre">column_create</span></tt></dt>
|
285
322
|
<dd>テーブルにカラムを追加します。</dd>
|
286
|
-
<dt><
|
323
|
+
<dt><tt class="docutils literal"><span class="pre">table_remove</span></tt></dt>
|
287
324
|
<dd>DBに定義されているテーブルを削除します。</dd>
|
288
|
-
<dt><
|
325
|
+
<dt><tt class="docutils literal"><span class="pre">column_remove</span></tt></dt>
|
289
326
|
<dd>テーブルに定義されているカラムを削除します。</dd>
|
290
|
-
<dt><
|
327
|
+
<dt><tt class="docutils literal"><span class="pre">load</span></tt></dt>
|
291
328
|
<dd>テーブルにレコードを挿入します。</dd>
|
292
|
-
<dt><
|
329
|
+
<dt><tt class="docutils literal"><span class="pre">select</span></tt></dt>
|
293
330
|
<dd>テーブルに含まれるレコードを検索して表示します。</dd>
|
294
|
-
<dt><
|
331
|
+
<dt><tt class="docutils literal"><span class="pre">define_selector</span></tt></dt>
|
295
332
|
<dd>検索条件をカスタマイズした新たな検索コマンドを定義します。</dd>
|
296
|
-
<dt><
|
333
|
+
<dt><tt class="docutils literal"><span class="pre">quit</span></tt></dt>
|
297
334
|
<dd>データベースとのセッションを終了します。</dd>
|
298
|
-
<dt><
|
335
|
+
<dt><tt class="docutils literal"><span class="pre">shutdown</span></tt></dt>
|
299
336
|
<dd>サーバ(デーモン)プロセスを停止します。</dd>
|
300
|
-
<dt><
|
337
|
+
<dt><tt class="docutils literal"><span class="pre">log_level</span></tt></dt>
|
301
338
|
<dd>ログ出力レベルを設定します。</dd>
|
302
|
-
<dt><
|
339
|
+
<dt><tt class="docutils literal"><span class="pre">log_put</span></tt></dt>
|
303
340
|
<dd>ログ出力を行います。</dd>
|
304
|
-
<dt><
|
341
|
+
<dt><tt class="docutils literal"><span class="pre">clearlock</span></tt></dt>
|
305
342
|
<dd>ロックを解除します。</dd>
|
306
343
|
</dl>
|
307
344
|
</div></blockquote>
|
308
345
|
</div>
|
309
|
-
<div class="section" id="
|
310
|
-
<h2>7.1.3.
|
346
|
+
<div class="section" id="usage">
|
347
|
+
<h2>7.1.3.7. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
311
348
|
<p>新しいデータベースを作成します。:</p>
|
312
349
|
<div class="highlight-none"><div class="highlight"><pre>% groonga -n /tmp/hoge.db quit
|
313
350
|
%
|
@@ -342,19 +379,18 @@ pid-file=/var/run/groonga.pid
|
|
342
379
|
</div>
|
343
380
|
</div>
|
344
381
|
</div>
|
345
|
-
<div class="sphinxsidebar"
|
382
|
+
<div class="sphinxsidebar">
|
346
383
|
<div class="sphinxsidebarwrapper">
|
347
384
|
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
348
385
|
<ul>
|
349
386
|
<li><a class="reference internal" href="#">7.1.3. groonga command</a><ul>
|
350
|
-
<li><a class="reference internal" href="#
|
351
|
-
<li><a class="reference internal" href="#
|
352
|
-
<li><a class="reference internal" href="#
|
353
|
-
<li><a class="reference internal" href="#
|
354
|
-
<li><a class="reference internal" href="#
|
355
|
-
<li><a class="reference internal" href="#command
|
356
|
-
<li><a class="reference internal" href="#
|
357
|
-
<li><a class="reference internal" href="#id8">7.1.3.8. 例</a></li>
|
387
|
+
<li><a class="reference internal" href="#summary">7.1.3.1. Summary</a></li>
|
388
|
+
<li><a class="reference internal" href="#syntax">7.1.3.2. Syntax</a></li>
|
389
|
+
<li><a class="reference internal" href="#options">7.1.3.3. Options</a></li>
|
390
|
+
<li><a class="reference internal" href="#command-line-parameters">7.1.3.4. Command line parameters</a></li>
|
391
|
+
<li><a class="reference internal" href="#command">7.1.3.5. Command</a></li>
|
392
|
+
<li><a class="reference internal" href="#builtin-command">7.1.3.6. Builtin command</a></li>
|
393
|
+
<li><a class="reference internal" href="#usage">7.1.3.7. Usage</a></li>
|
358
394
|
</ul>
|
359
395
|
</li>
|
360
396
|
</ul>
|
@@ -365,14 +401,12 @@ pid-file=/var/run/groonga.pid
|
|
365
401
|
<h4>Next topic</h4>
|
366
402
|
<p class="topless"><a href="groonga-benchmark.html"
|
367
403
|
title="next chapter">7.1.4. groonga-benchmark</a></p>
|
368
|
-
<
|
369
|
-
|
370
|
-
<
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
</div>
|
375
|
-
<div id="searchbox" style="display: none" role="search">
|
404
|
+
<h3>This Page</h3>
|
405
|
+
<ul class="this-page-menu">
|
406
|
+
<li><a href="../../_sources/reference/executables/groonga.txt"
|
407
|
+
rel="nofollow">Show Source</a></li>
|
408
|
+
</ul>
|
409
|
+
<div id="searchbox" style="display: none">
|
376
410
|
<h3>Quick search</h3>
|
377
411
|
<form class="search" action="../../search.html" method="get">
|
378
412
|
<input type="text" name="q" />
|
@@ -389,7 +423,7 @@ pid-file=/var/run/groonga.pid
|
|
389
423
|
</div>
|
390
424
|
<div class="clearer"></div>
|
391
425
|
</div>
|
392
|
-
<div class="related"
|
426
|
+
<div class="related">
|
393
427
|
<h3>Navigation</h3>
|
394
428
|
<ul>
|
395
429
|
<li class="right" style="margin-right: 10px">
|
@@ -401,12 +435,12 @@ pid-file=/var/run/groonga.pid
|
|
401
435
|
<li class="right" >
|
402
436
|
<a href="grnslap.html" title="7.1.2. grnslap"
|
403
437
|
>previous</a> |</li>
|
404
|
-
<li><a href="../../index.html">Groonga v5.0.
|
438
|
+
<li><a href="../../index.html">Groonga v5.0.1-42-g4d10df1 documentation</a> »</li>
|
405
439
|
<li><a href="../../reference.html" >7. Reference manual</a> »</li>
|
406
440
|
<li><a href="../executables.html" >7.1. Executables</a> »</li>
|
407
441
|
</ul>
|
408
442
|
</div>
|
409
|
-
<div class="footer"
|
443
|
+
<div class="footer">
|
410
444
|
© Copyright 2009-2015, Brazil, Inc.
|
411
445
|
</div>
|
412
446
|
</body>
|