rroonga 6.0.0-x64-mingw32 → 6.0.2-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +38 -1
- data/ext/groonga/extconf.rb +14 -1
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +18 -1
- data/ext/groonga/rb-grn-expression.c +0 -8
- data/ext/groonga/rb-grn-hash.c +15 -3
- data/ext/groonga/rb-grn-logger.c +22 -22
- data/ext/groonga/rb-grn-object.c +28 -6
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-request-canceler.c +164 -0
- data/ext/groonga/rb-grn-request-timer-id.c +64 -0
- data/ext/groonga/rb-grn-request-timer.c +155 -0
- data/ext/groonga/rb-grn-type.c +43 -1
- data/ext/groonga/rb-grn.h +17 -5
- data/ext/groonga/rb-groonga.c +3 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga/expression-builder.rb +4 -13
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -2
- data/test/run-test.rb +2 -2
- data/test/test-expression-builder.rb +13 -1
- data/test/test-hash.rb +22 -3
- data/test/test-request-canceler.rb +46 -0
- data/test/test-request-timer.rb +40 -0
- data/test/test-table.rb +43 -7
- data/test/test-type.rb +104 -2
- 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/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpack-4.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/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +8 -0
- data/vendor/local/include/groonga/groonga.h +1 -0
- data/vendor/local/include/groonga/groonga/dump.h +1 -1
- data/vendor/local/include/groonga/groonga/expr.h +1 -2
- data/vendor/local/include/groonga/groonga/groonga.h +18 -5
- data/vendor/local/include/groonga/groonga/obj.h +1 -0
- data/vendor/local/include/groonga/groonga/plugin.h +9 -0
- data/vendor/local/include/groonga/groonga/portability.h +8 -0
- data/vendor/local/include/groonga/groonga/request_canceler.h +1 -0
- data/vendor/local/include/groonga/groonga/request_timer.h +53 -0
- data/vendor/local/include/groonga/groonga/type.h +9 -0
- data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +131 -22
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +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/ruby/eval.rb +36 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +8 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +43 -8
- 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/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/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/scripts/ruby/command_line/grndb.rb +14 -0
- data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +4 -0
- data/vendor/local/lib/groonga/scripts/ruby/eval_context.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +11 -25
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +67 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +22 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +50 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +33 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +92 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +35 -6
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- 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/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/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.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/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/_sources/contribution/development/release.txt +10 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +17 -51
- 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 +13 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +9 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +2 -2
- 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/prefix_rk_search.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +40 -37
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +15 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/en/html/index.html +74 -77
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +28 -72
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/en/html/install/others.html +25 -26
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/limitations.html +10 -12
- data/vendor/local/share/doc/groonga/en/html/news.html +510 -303
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +81 -84
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +20 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +208 -0
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +45 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +57 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +155 -162
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +465 -67
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +119 -122
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +40 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +93 -96
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +184 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +114 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +46 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +101 -79
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +126 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +16 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +421 -121
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +67 -39
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +23 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +19 -26
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +15 -18
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +10 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +17 -51
- 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 +13 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +9 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +2 -2
- 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/prefix_rk_search.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +20 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +41 -37
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -32
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/ja/html/index.html +76 -79
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -67
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news.html +479 -282
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +71 -74
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -71
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +20 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +15 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +193 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +48 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +55 -58
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +137 -144
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +419 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +117 -120
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +39 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +91 -94
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +172 -175
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +104 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +95 -79
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +116 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +397 -127
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +97 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +19 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +22 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +16 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +16 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +10 -13
- metadata +72 -76
- 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 +0 -41
- 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 +0 -41
- data/vendor/local/share/man/ja/man1/groonga.1 +0 -52774
- data/vendor/local/share/man/man1/groonga.1 +0 -55612
@@ -3,11 +3,11 @@
|
|
3
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
4
|
|
5
5
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.3.
|
10
|
+
<title>7.3.52. select — Groonga v6.0.2 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: '
|
18
|
+
VERSION: '6.0.2',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,10 +25,10 @@
|
|
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
|
28
|
+
<link rel="top" title="Groonga v6.0.2 documentation" href="../../index.html" />
|
29
29
|
<link rel="up" title="7.3. Command" href="../command.html" />
|
30
|
-
<link rel="next" title="7.3.
|
31
|
-
<link rel="prev" title="7.3.
|
30
|
+
<link rel="next" title="7.3.53. shutdown" href="shutdown.html" />
|
31
|
+
<link rel="prev" title="7.3.51. schema" href="schema.html" />
|
32
32
|
</head>
|
33
33
|
<body role="document">
|
34
34
|
<div class="header">
|
@@ -55,12 +55,12 @@
|
|
55
55
|
<a href="../../genindex.html" title="General Index"
|
56
56
|
accesskey="I">index</a></li>
|
57
57
|
<li class="right" >
|
58
|
-
<a href="shutdown.html" title="7.3.
|
58
|
+
<a href="shutdown.html" title="7.3.53. shutdown"
|
59
59
|
accesskey="N">next</a> |</li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="schema.html" title="7.3.
|
61
|
+
<a href="schema.html" title="7.3.51. schema"
|
62
62
|
accesskey="P">previous</a> |</li>
|
63
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
63
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
64
64
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
65
65
|
<li class="nav-item nav-item-2"><a href="../command.html" accesskey="U">7.3. Command</a> »</li>
|
66
66
|
</ul>
|
@@ -72,16 +72,16 @@
|
|
72
72
|
<div class="body" role="main">
|
73
73
|
|
74
74
|
<div class="section" id="select">
|
75
|
-
<h1>7.3.
|
75
|
+
<h1>7.3.52. <code class="docutils literal"><span class="pre">select</span></code><a class="headerlink" href="#select" title="Permalink to this headline">¶</a></h1>
|
76
76
|
<div class="section" id="summary">
|
77
|
-
<h2>7.3.
|
77
|
+
<h2>7.3.52.1. Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
|
78
78
|
<p><code class="docutils literal"><span class="pre">select</span></code> searches records that are matched to specified conditions
|
79
79
|
from a table and then outputs them.</p>
|
80
80
|
<p><code class="docutils literal"><span class="pre">select</span></code> is the most important command in groonga. You need to
|
81
81
|
understand <code class="docutils literal"><span class="pre">select</span></code> to use the full power of Groonga.</p>
|
82
82
|
</div>
|
83
83
|
<div class="section" id="syntax">
|
84
|
-
<h2>7.3.
|
84
|
+
<h2>7.3.52.2. Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
|
85
85
|
<p>This command takes many parameters.</p>
|
86
86
|
<p>The required parameter is only <code class="docutils literal"><span class="pre">table</span></code>. Other parameters are
|
87
87
|
optional:</p>
|
@@ -142,7 +142,7 @@ optional:</p>
|
|
142
142
|
</div></blockquote>
|
143
143
|
</div>
|
144
144
|
<div class="section" id="usage">
|
145
|
-
<h2>7.3.
|
145
|
+
<h2>7.3.52.3. Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
|
146
146
|
<p>Let's learn about <code class="docutils literal"><span class="pre">select</span></code> usage with examples. This section shows
|
147
147
|
many popular usages.</p>
|
148
148
|
<p>Here are a schema definition and sample data to show usage.</p>
|
@@ -197,7 +197,7 @@ using <code class="docutils literal"><span class="pre">TokenBigram</span></code>
|
|
197
197
|
<code class="docutils literal"><span class="pre">Entries.content</span></code> are fulltext search ready.</p>
|
198
198
|
<p>OK. The schema and data for examples are ready.</p>
|
199
199
|
<div class="section" id="simple-usage">
|
200
|
-
<span id="select-simple-usage"></span><h3>7.3.
|
200
|
+
<span id="select-simple-usage"></span><h3>7.3.52.3.1. Simple usage<a class="headerlink" href="#simple-usage" title="Permalink to this headline">¶</a></h3>
|
201
201
|
<p>Here is the most simple usage with the above schema and data. It outputs
|
202
202
|
all records in <code class="docutils literal"><span class="pre">Entries</span></code> table.</p>
|
203
203
|
<p>Execution example:</p>
|
@@ -283,12 +283,12 @@ command outputs 10 records at a maximum by default. There are only 5
|
|
283
283
|
records. It is less than 10. So the command outputs all records.</p>
|
284
284
|
</div>
|
285
285
|
<div class="section" id="search-conditions">
|
286
|
-
<h3>7.3.
|
286
|
+
<h3>7.3.52.3.2. Search conditions<a class="headerlink" href="#search-conditions" title="Permalink to this headline">¶</a></h3>
|
287
287
|
<p>Search conditions are specified by <code class="docutils literal"><span class="pre">query</span></code> or <code class="docutils literal"><span class="pre">filter</span></code>. You can
|
288
288
|
also specify both <code class="docutils literal"><span class="pre">query</span></code> and <code class="docutils literal"><span class="pre">filter</span></code>. It means that selected
|
289
289
|
records must be matched against both <code class="docutils literal"><span class="pre">query</span></code> and <code class="docutils literal"><span class="pre">filter</span></code>.</p>
|
290
290
|
<div class="section" id="search-condition-query">
|
291
|
-
<h4>7.3.
|
291
|
+
<h4>7.3.52.3.2.1. Search condition: <code class="docutils literal"><span class="pre">query</span></code><a class="headerlink" href="#search-condition-query" title="Permalink to this headline">¶</a></h4>
|
292
292
|
<p><code class="docutils literal"><span class="pre">query</span></code> is designed for search box in Web page. Imagine a search box
|
293
293
|
in google.com. You specify search conditions for <code class="docutils literal"><span class="pre">query</span></code> as space
|
294
294
|
separated keywords. For example, <code class="docutils literal"><span class="pre">search</span> <span class="pre">engine</span></code> means a matched
|
@@ -358,10 +358,10 @@ matched against <code class="docutils literal"><span class="pre">query</span></c
|
|
358
358
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command searches records that contain a word <code class="docutils literal"><span class="pre">fast</span></code>
|
359
359
|
in <code class="docutils literal"><span class="pre">content</span></code> column value from <code class="docutils literal"><span class="pre">Entries</span></code> table.</p>
|
360
360
|
<p><code class="docutils literal"><span class="pre">query</span></code> has query syntax but its deatils aren't described here. See
|
361
|
-
<a class="reference internal" href="../grn_expr/query_syntax.html"><
|
361
|
+
<a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a> for datails.</p>
|
362
362
|
</div>
|
363
363
|
<div class="section" id="search-condition-filter">
|
364
|
-
<h4>7.3.
|
364
|
+
<h4>7.3.52.3.2.2. Search condition: <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#search-condition-filter" title="Permalink to this headline">¶</a></h4>
|
365
365
|
<p><code class="docutils literal"><span class="pre">filter</span></code> is designed for complex search conditions. You specify
|
366
366
|
search conditions for <code class="docutils literal"><span class="pre">filter</span></code> as ECMAScript like syntax.</p>
|
367
367
|
<p>Here is a simple <code class="docutils literal"><span class="pre">filter</span></code> usage example.</p>
|
@@ -420,11 +420,11 @@ in <code class="docutils literal"><span class="pre">content</span></code> column
|
|
420
420
|
<code class="docutils literal"><span class="pre">==</span></code> is equality operator.</p>
|
421
421
|
<p><code class="docutils literal"><span class="pre">filter</span></code> has more operators and syntax like grouping by <code class="docutils literal"><span class="pre">(...)</span></code>
|
422
422
|
its details aren't described here. See
|
423
|
-
<a class="reference internal" href="../grn_expr/script_syntax.html"><
|
423
|
+
<a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a> for datails.</p>
|
424
424
|
</div>
|
425
425
|
</div>
|
426
426
|
<div class="section" id="paging">
|
427
|
-
<h3>7.3.
|
427
|
+
<h3>7.3.52.3.3. Paging<a class="headerlink" href="#paging" title="Permalink to this headline">¶</a></h3>
|
428
428
|
<p>You can specify range of outputted records by <code class="docutils literal"><span class="pre">offset</span></code> and <code class="docutils literal"><span class="pre">limit</span></code>.
|
429
429
|
Here is an example to output only the 2nd record.</p>
|
430
430
|
<p>Execution example:</p>
|
@@ -481,7 +481,7 @@ means the number of output records is 1 at a maximium. If no records
|
|
481
481
|
are matched, <code class="docutils literal"><span class="pre">select</span></code> command outputs no records.</p>
|
482
482
|
</div>
|
483
483
|
<div class="section" id="the-total-number-of-records">
|
484
|
-
<h3>7.3.
|
484
|
+
<h3>7.3.52.3.4. The total number of records<a class="headerlink" href="#the-total-number-of-records" title="Permalink to this headline">¶</a></h3>
|
485
485
|
<p>You can use <code class="docutils literal"><span class="pre">--limit</span> <span class="pre">0</span></code> to retrieve the total number of recrods
|
486
486
|
without any contents of records.</p>
|
487
487
|
<p>Execution example:</p>
|
@@ -528,7 +528,7 @@ without any contents of records.</p>
|
|
528
528
|
records.</p>
|
529
529
|
</div>
|
530
530
|
<div class="section" id="drilldown">
|
531
|
-
<h3>7.3.
|
531
|
+
<h3>7.3.52.3.5. Drilldown<a class="headerlink" href="#drilldown" title="Permalink to this headline">¶</a></h3>
|
532
532
|
<p>You can get additional grouped results against the search result in
|
533
533
|
one <code class="docutils literal"><span class="pre">select</span></code>. You need to use two or more <code class="docutils literal"><span class="pre">SELECT``s</span> <span class="pre">in</span> <span class="pre">SQL</span> <span class="pre">but</span>
|
534
534
|
<span class="pre">``select</span></code> in Groonga can do it in one <code class="docutils literal"><span class="pre">select</span></code>.</p>
|
@@ -685,17 +685,17 @@ search query by their keyboard. They just click a link.)</li>
|
|
685
685
|
<p>Groonga supports not only counting grouped records but also finding
|
686
686
|
the maximum and/or minimum value from grouped records, summing values
|
687
687
|
in grouped records and so on. See
|
688
|
-
<a class="reference internal" href="#select-drilldown-related-parameters"><span>Drilldown related parameters</span></a> for details.</p>
|
688
|
+
<a class="reference internal" href="#select-drilldown-related-parameters"><span class="std std-ref">Drilldown related parameters</span></a> for details.</p>
|
689
689
|
</div>
|
690
690
|
</div>
|
691
691
|
<div class="section" id="parameters">
|
692
|
-
<h2>7.3.
|
692
|
+
<h2>7.3.52.4. Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
|
693
693
|
<p>This section describes all parameters. Parameters are categorized.</p>
|
694
|
-
<div class="section" id="required-
|
695
|
-
<h3>7.3.
|
694
|
+
<div class="section" id="required-parameters">
|
695
|
+
<h3>7.3.52.4.1. Required parameters<a class="headerlink" href="#required-parameters" title="Permalink to this headline">¶</a></h3>
|
696
696
|
<p>There is a required parameter, <code class="docutils literal"><span class="pre">table</span></code>.</p>
|
697
697
|
<div class="section" id="table">
|
698
|
-
<span id="select-table"></span><h4>7.3.
|
698
|
+
<span id="select-table"></span><h4>7.3.52.4.1.1. <code class="docutils literal"><span class="pre">table</span></code><a class="headerlink" href="#table" title="Permalink to this headline">¶</a></h4>
|
699
699
|
<p>Specifies a table to be searched. <code class="docutils literal"><span class="pre">table</span></code> must be specified.</p>
|
700
700
|
<p>If nonexistent table is specified, an error is returned.</p>
|
701
701
|
<p>Execution example:</p>
|
@@ -720,7 +720,7 @@ in grouped records and so on. See
|
|
720
720
|
</div>
|
721
721
|
</div>
|
722
722
|
<div class="section" id="search-related-parameters">
|
723
|
-
<span id="select-search-related-parameters"></span><h3>7.3.
|
723
|
+
<span id="select-search-related-parameters"></span><h3>7.3.52.4.2. Search related parameters<a class="headerlink" href="#search-related-parameters" title="Permalink to this headline">¶</a></h3>
|
724
724
|
<p>There are search related parameters. Typically, <code class="docutils literal"><span class="pre">match_columns</span></code> and
|
725
725
|
<code class="docutils literal"><span class="pre">query</span></code> parameters are used for implementing a search
|
726
726
|
box. <code class="docutils literal"><span class="pre">filter</span></code> parameters is used for implementing complex search
|
@@ -729,7 +729,7 @@ feature.</p>
|
|
729
729
|
be matched against both <code class="docutils literal"><span class="pre">query</span></code> and <code class="docutils literal"><span class="pre">filter</span></code>. If both <code class="docutils literal"><span class="pre">query</span></code>
|
730
730
|
and <code class="docutils literal"><span class="pre">filter</span></code> aren't specified, all records are selected.</p>
|
731
731
|
<div class="section" id="match-columns">
|
732
|
-
<span id="select-match-columns"></span><h4>7.3.
|
732
|
+
<span id="select-match-columns"></span><h4>7.3.52.4.2.1. <code class="docutils literal"><span class="pre">match_columns</span></code><a class="headerlink" href="#match-columns" title="Permalink to this headline">¶</a></h4>
|
733
733
|
<p>Specifies the default target column for fulltext search by <code class="docutils literal"><span class="pre">query</span></code>
|
734
734
|
parameter value. A target column for fulltext search can be specified
|
735
735
|
in <code class="docutils literal"><span class="pre">query</span></code> parameter. The difference between <code class="docutils literal"><span class="pre">match_columns</span></code> and
|
@@ -875,17 +875,17 @@ columns for fulltext search are <code class="docutils literal"><span class="pre"
|
|
875
875
|
is 1. This weight allocation means <code class="docutils literal"><span class="pre">_key</span></code> column value is more
|
876
876
|
important rather than <code class="docutils literal"><span class="pre">content</span></code> column value. In this example, title
|
877
877
|
of blog entry is more important rather thatn content of blog entry.</p>
|
878
|
-
<p>You can also specify score function. See <a class="reference internal" href="../scorer.html"><
|
878
|
+
<p>You can also specify score function. See <a class="reference internal" href="../scorer.html"><span class="doc">Scorer</span></a> for
|
879
879
|
details.</p>
|
880
|
-
<p>Note that score function isn't related to <a class="reference internal" href="#select-scorer"><span>scorer</span></a>
|
880
|
+
<p>Note that score function isn't related to <a class="reference internal" href="#select-scorer"><span class="std std-ref">scorer</span></a>
|
881
881
|
parameter.</p>
|
882
882
|
</div>
|
883
883
|
<div class="section" id="query">
|
884
|
-
<span id="select-query"></span><h4>7.3.
|
884
|
+
<span id="select-query"></span><h4>7.3.52.4.2.2. <code class="docutils literal"><span class="pre">query</span></code><a class="headerlink" href="#query" title="Permalink to this headline">¶</a></h4>
|
885
885
|
<p>Specifies the query text. Normally, it is used for fulltext search
|
886
886
|
with <code class="docutils literal"><span class="pre">match_columns</span></code> parameter. <code class="docutils literal"><span class="pre">query</span></code> parameter is designed for
|
887
887
|
a fulltext search form in a Web page. A query text should be formatted
|
888
|
-
in <a class="reference internal" href="../grn_expr/query_syntax.html"><
|
888
|
+
in <a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a>. The syntax is similar to common search
|
889
889
|
form like Google's search form. For example, <code class="docutils literal"><span class="pre">word1</span> <span class="pre">word2</span></code> means
|
890
890
|
that groonga searches records that contain both <code class="docutils literal"><span class="pre">word1</span></code> and
|
891
891
|
<code class="docutils literal"><span class="pre">word2</span></code>. <code class="docutils literal"><span class="pre">word1</span> <span class="pre">OR</span> <span class="pre">word2</span></code> means that groogna searches records that
|
@@ -999,7 +999,7 @@ table.</p>
|
|
999
999
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command searches records that contain one of two words
|
1000
1000
|
<code class="docutils literal"><span class="pre">groonga</span></code> or <code class="docutils literal"><span class="pre">mroonga</span></code> in <code class="docutils literal"><span class="pre">content</span></code> column value from
|
1001
1001
|
<code class="docutils literal"><span class="pre">Entries</span></code> table.</p>
|
1002
|
-
<p>See <a class="reference internal" href="../grn_expr/query_syntax.html"><
|
1002
|
+
<p>See <a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a> for other syntax.</p>
|
1003
1003
|
<p>It can be used for not only fulltext search but also other
|
1004
1004
|
conditions. For example, <code class="docutils literal"><span class="pre">column:value</span></code> means the value of
|
1005
1005
|
<code class="docutils literal"><span class="pre">column</span></code> column is equal to <code class="docutils literal"><span class="pre">value</span></code>. <code class="docutils literal"><span class="pre">column:<value</span></code> means the
|
@@ -1125,17 +1125,17 @@ value of <code class="docutils literal"><span class="pre">column</span></code> c
|
|
1125
1125
|
</div>
|
1126
1126
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command searches records that <code class="docutils literal"><span class="pre">n_likes</span></code> column value
|
1127
1127
|
is less than <code class="docutils literal"><span class="pre">11</span></code> from <code class="docutils literal"><span class="pre">Entries</span></code> table.</p>
|
1128
|
-
<p>See <a class="reference internal" href="../grn_expr/query_syntax.html"><
|
1128
|
+
<p>See <a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a> for other operations.</p>
|
1129
1129
|
</div>
|
1130
1130
|
<div class="section" id="filter">
|
1131
|
-
<span id="select-filter"></span><h4>7.3.
|
1131
|
+
<span id="select-filter"></span><h4>7.3.52.4.2.3. <code class="docutils literal"><span class="pre">filter</span></code><a class="headerlink" href="#filter" title="Permalink to this headline">¶</a></h4>
|
1132
1132
|
<p>Specifies the filter text. Normally, it is used for complex search
|
1133
1133
|
conditions. <code class="docutils literal"><span class="pre">filter</span></code> can be used with <code class="docutils literal"><span class="pre">query</span></code> parameter. If both
|
1134
1134
|
<code class="docutils literal"><span class="pre">filter</span></code> and <code class="docutils literal"><span class="pre">query</span></code> are specified, there are conbined with
|
1135
1135
|
logical and. It means that matched records should be matched against
|
1136
1136
|
both <code class="docutils literal"><span class="pre">filter</span></code> and <code class="docutils literal"><span class="pre">query</span></code>.</p>
|
1137
1137
|
<p><code class="docutils literal"><span class="pre">filter</span></code> parameter is designed for complex conditions. A filter text
|
1138
|
-
should be
|
1138
|
+
should be formatted in <a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>. The syntax is
|
1139
1139
|
similar to ECMAScript. For example, <code class="docutils literal"><span class="pre">column</span> <span class="pre">==</span> <span class="pre">"value"</span></code> means that
|
1140
1140
|
the value of <code class="docutils literal"><span class="pre">column</span></code> column is equal to <code class="docutils literal"><span class="pre">"value"</span></code>. <code class="docutils literal"><span class="pre">column</span> <span class="pre"><</span>
|
1141
1141
|
<span class="pre">value</span></code> means that the value of <code class="docutils literal"><span class="pre">column</span></code> column is less than
|
@@ -1261,18 +1261,18 @@ the value of <code class="docutils literal"><span class="pre">column</span></cod
|
|
1261
1261
|
</div>
|
1262
1262
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command searches records that <code class="docutils literal"><span class="pre">n_likes</span></code> column value
|
1263
1263
|
is less than <code class="docutils literal"><span class="pre">11</span></code> from <code class="docutils literal"><span class="pre">Entries</span></code> table.</p>
|
1264
|
-
<p>See <a class="reference internal" href="../grn_expr/script_syntax.html"><
|
1264
|
+
<p>See <a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a> for other operators.</p>
|
1265
1265
|
</div>
|
1266
1266
|
</div>
|
1267
1267
|
<div class="section" id="advanced-search-parameters">
|
1268
|
-
<span id="select-advanced-search-parameters"></span><h3>7.3.
|
1268
|
+
<span id="select-advanced-search-parameters"></span><h3>7.3.52.4.3. Advanced search parameters<a class="headerlink" href="#advanced-search-parameters" title="Permalink to this headline">¶</a></h3>
|
1269
1269
|
<div class="section" id="match-escalation-threshold">
|
1270
|
-
<span id="select-match-escalation-threshold"></span><h4>7.3.
|
1270
|
+
<span id="select-match-escalation-threshold"></span><h4>7.3.52.4.3.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code><a class="headerlink" href="#match-escalation-threshold" title="Permalink to this headline">¶</a></h4>
|
1271
1271
|
<p>Specifies threshold to determine whether search storategy
|
1272
1272
|
escalation is used or not. The threshold is compared against the
|
1273
1273
|
number of matched records. If the number of matched records is equal
|
1274
1274
|
to or less than the threshold, the search storategy escalation is
|
1275
|
-
used. See <a class="reference internal" href="../../spec/search.html"><
|
1275
|
+
used. See <a class="reference internal" href="../../spec/search.html"><span class="doc">検索</span></a> about the search storategy escalation.</p>
|
1276
1276
|
<p>The default threshold is 0. It means that search storategy escalation
|
1277
1277
|
is used only when no records are matched.</p>
|
1278
1278
|
<p>The default threshold can be customized by one of the followings.</p>
|
@@ -1377,7 +1377,7 @@ select Entries --match_columns content --query groo --match_escalation_threshold
|
|
1377
1377
|
records are matched because the <code class="docutils literal"><span class="pre">TokenBigram</span></code> tokenizer tokenizes
|
1378
1378
|
<code class="docutils literal"><span class="pre">groonga</span></code> to <code class="docutils literal"><span class="pre">groonga</span></code> not <code class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></code>. (The
|
1379
1379
|
<code class="docutils literal"><span class="pre">TokenBigramSplitSymbolAlpha</span></code> tokenizer tokenizes <code class="docutils literal"><span class="pre">groonga</span></code> to
|
1380
|
-
<code class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></code>. See <a class="reference internal" href="../tokenizers.html"><
|
1380
|
+
<code class="docutils literal"><span class="pre">gr|ro|oo|on|ng|ga</span></code>. See <a class="reference internal" href="../tokenizers.html"><span class="doc">Tokenizers</span></a> for details.)
|
1381
1381
|
It means that <code class="docutils literal"><span class="pre">groonga</span></code> is indexed but <code class="docutils literal"><span class="pre">groo</span></code> isn't indexed. So no
|
1382
1382
|
records are matched against <code class="docutils literal"><span class="pre">groo</span></code> by exact match. In the case, the
|
1383
1383
|
search storategy escalation is used because the number of matched
|
@@ -1391,11 +1391,11 @@ records (0) is larger than <code class="docutils literal"><span class="pre">matc
|
|
1391
1391
|
more searches aren't executed. And no records are matched.</p>
|
1392
1392
|
</div>
|
1393
1393
|
<div class="section" id="query-expansion">
|
1394
|
-
<span id="select-query-expansion"></span><h4>7.3.
|
1395
|
-
<p>Deprecated. Use <a class="reference internal" href="#select-query-expander"><span>query_expander</span></a> instead.</p>
|
1394
|
+
<span id="select-query-expansion"></span><h4>7.3.52.4.3.2. <code class="docutils literal"><span class="pre">query_expansion</span></code><a class="headerlink" href="#query-expansion" title="Permalink to this headline">¶</a></h4>
|
1395
|
+
<p>Deprecated. Use <a class="reference internal" href="#select-query-expander"><span class="std std-ref">query_expander</span></a> instead.</p>
|
1396
1396
|
</div>
|
1397
1397
|
<div class="section" id="query-flags">
|
1398
|
-
<span id="select-query-flags"></span><h4>7.3.
|
1398
|
+
<span id="select-query-flags"></span><h4>7.3.52.4.3.3. <code class="docutils literal"><span class="pre">query_flags</span></code><a class="headerlink" href="#query-flags" title="Permalink to this headline">¶</a></h4>
|
1399
1399
|
<p>It customs <code class="docutils literal"><span class="pre">query</span></code> parameter syntax. You cannot update column value
|
1400
1400
|
by <code class="docutils literal"><span class="pre">query</span></code> parameter by default. But if you specify
|
1401
1401
|
<code class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></code> as <code class="docutils literal"><span class="pre">query_flags</span></code>, you can update
|
@@ -1694,10 +1694,10 @@ in <code class="docutils literal"><span class="pre">content</span></code> column
|
|
1694
1694
|
Note that <code class="docutils literal"><span class="pre">_key:Groonga</span></code> doesn't mean that the value of <code class="docutils literal"><span class="pre">_key</span></code>
|
1695
1695
|
column is equal to <code class="docutils literal"><span class="pre">Groonga</span></code>. Because <code class="docutils literal"><span class="pre">ALLOW_COLUMN</span></code> flag is not
|
1696
1696
|
specified.</p>
|
1697
|
-
<p>See also <a class="reference internal" href="../grn_expr/query_syntax.html"><
|
1697
|
+
<p>See also <a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a>.</p>
|
1698
1698
|
</div>
|
1699
1699
|
<div class="section" id="query-expander">
|
1700
|
-
<span id="select-query-expander"></span><h4>7.3.
|
1700
|
+
<span id="select-query-expander"></span><h4>7.3.52.4.3.4. <code class="docutils literal"><span class="pre">query_expander</span></code><a class="headerlink" href="#query-expander" title="Permalink to this headline">¶</a></h4>
|
1701
1701
|
<p>It's for query expansion. Query expansion substitutes specific words
|
1702
1702
|
to another words in query. Nomally, it's used for synonym search.</p>
|
1703
1703
|
<p>It specifies a column that is used to substitute <code class="docutils literal"><span class="pre">query</span></code> parameter
|
@@ -1740,7 +1740,7 @@ user searches with <code class="docutils literal"><span class="pre">"groong
|
|
1740
1740
|
<p>Normally, it's good idea that substitution table uses a
|
1741
1741
|
normalizer. For example, if normalizer is used, substitute target word
|
1742
1742
|
is matched in case insensitive manner. See
|
1743
|
-
<a class="reference internal" href="../normalizers.html"><
|
1743
|
+
<a class="reference internal" href="../normalizers.html"><span class="doc">Normalizers</span></a> for available normalizers.</p>
|
1744
1744
|
<p>Note that those synonym values include the key value such as
|
1745
1745
|
<code class="docutils literal"><span class="pre">"mroonga"</span></code> and <code class="docutils literal"><span class="pre">"groonga"</span></code>. It's recommended that you include the
|
1746
1746
|
key value. If you don't include key value, substituted value doesn't
|
@@ -1904,7 +1904,7 @@ that has <code class="docutils literal"><span class="pre">"tritonn"</s
|
|
1904
1904
|
query expansion. So a record that has <code class="docutils literal"><span class="pre">"tritonn"</span></code> is found. The
|
1905
1905
|
third <code class="docutils literal"><span class="pre">select</span></code> command doesn't use query expansion but it is same as
|
1906
1906
|
the second <code class="docutils literal"><span class="pre">select</span></code> command. The third one uses expanded query.</p>
|
1907
|
-
<p>Each substitute value can contain any <a class="reference internal" href="../grn_expr/query_syntax.html"><
|
1907
|
+
<p>Each substitute value can contain any <a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a> syntax
|
1908
1908
|
such as <code class="docutils literal"><span class="pre">(...)</span></code> and <code class="docutils literal"><span class="pre">OR</span></code>. You can use complex substitution by
|
1909
1909
|
using those syntax.</p>
|
1910
1910
|
<p>Here is a complex substitution usage example that uses query syntax.</p>
|
@@ -1976,9 +1976,9 @@ is equal to or more than <code class="docutils literal"><span class="pre">10</sp
|
|
1976
1976
|
</div>
|
1977
1977
|
</div>
|
1978
1978
|
<div class="section" id="output-related-parameters">
|
1979
|
-
<h3>7.3.
|
1979
|
+
<h3>7.3.52.4.4. Output related parameters<a class="headerlink" href="#output-related-parameters" title="Permalink to this headline">¶</a></h3>
|
1980
1980
|
<div class="section" id="output-columns">
|
1981
|
-
<span id="select-output-columns"></span><h4>7.3.
|
1981
|
+
<span id="select-output-columns"></span><h4>7.3.52.4.4.1. <code class="docutils literal"><span class="pre">output_columns</span></code><a class="headerlink" href="#output-columns" title="Permalink to this headline">¶</a></h4>
|
1982
1982
|
<p>Specifies output columns separated by <code class="docutils literal"><span class="pre">,</span></code>.</p>
|
1983
1983
|
<p>Here is a simple <code class="docutils literal"><span class="pre">output_columns</span></code> usage example.</p>
|
1984
1984
|
<p>Execution example:</p>
|
@@ -2016,7 +2016,7 @@ is equal to or more than <code class="docutils literal"><span class="pre">10</sp
|
|
2016
2016
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command just outputs <code class="docutils literal"><span class="pre">_id</span></code> and <code class="docutils literal"><span class="pre">_key</span></code> column
|
2017
2017
|
values.</p>
|
2018
2018
|
<p><code class="docutils literal"><span class="pre">*</span></code> is a special value. It means that all columns that are not
|
2019
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
2019
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a>.</p>
|
2020
2020
|
<p>Here is a <code class="docutils literal"><span class="pre">*</span></code> usage example.</p>
|
2021
2021
|
<p>Execution example:</p>
|
2022
2022
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --output_columns '_key, *' --limit 1
|
@@ -2067,7 +2067,7 @@ column value.</p>
|
|
2067
2067
|
values except <code class="docutils literal"><span class="pre">_score</span></code> are outputted.</p>
|
2068
2068
|
</div>
|
2069
2069
|
<div class="section" id="sortby">
|
2070
|
-
<span id="select-sortby"></span><h4>7.3.
|
2070
|
+
<span id="select-sortby"></span><h4>7.3.52.4.4.2. <code class="docutils literal"><span class="pre">sortby</span></code><a class="headerlink" href="#sortby" title="Permalink to this headline">¶</a></h4>
|
2071
2071
|
<p>Specifies sort keys separated by <code class="docutils literal"><span class="pre">,</span></code>. Each sort key is column
|
2072
2072
|
name.</p>
|
2073
2073
|
<p>Here is a simple <code class="docutils literal"><span class="pre">sortby</span></code> usage example.</p>
|
@@ -2273,7 +2273,7 @@ descending order and outputs record key and hit score.</p>
|
|
2273
2273
|
it's just ignored but get a warning in log file.</p>
|
2274
2274
|
</div>
|
2275
2275
|
<div class="section" id="offset">
|
2276
|
-
<span id="select-offset"></span><h4>7.3.
|
2276
|
+
<span id="select-offset"></span><h4>7.3.52.4.4.3. <code class="docutils literal"><span class="pre">offset</span></code><a class="headerlink" href="#offset" title="Permalink to this headline">¶</a></h4>
|
2277
2277
|
<p>Specifies offset to determine output records range. Offset is
|
2278
2278
|
zero-based. <code class="docutils literal"><span class="pre">--offset</span> <span class="pre">1</span></code> means output range is started from the 2nd
|
2279
2279
|
record.</p>
|
@@ -2348,7 +2348,7 @@ number of records is <code class="docutils literal"><span class="pre">5</span></
|
|
2348
2348
|
<p>The default value is <code class="docutils literal"><span class="pre">0</span></code>.</p>
|
2349
2349
|
</div>
|
2350
2350
|
<div class="section" id="limit">
|
2351
|
-
<span id="select-limit"></span><h4>7.3.
|
2351
|
+
<span id="select-limit"></span><h4>7.3.52.4.4.4. <code class="docutils literal"><span class="pre">limit</span></code><a class="headerlink" href="#limit" title="Permalink to this headline">¶</a></h4>
|
2352
2352
|
<p>Specifies the max number of output records. If the number of
|
2353
2353
|
matched records is less than <code class="docutils literal"><span class="pre">limit</span></code>, all records are outputted.</p>
|
2354
2354
|
<p>Here is a simple <code class="docutils literal"><span class="pre">limit</span></code> usage example.</p>
|
@@ -2469,18 +2469,18 @@ records. It's very useful value to show all records.</p>
|
|
2469
2469
|
<p>The default value is <code class="docutils literal"><span class="pre">10</span></code>.</p>
|
2470
2470
|
</div>
|
2471
2471
|
<div class="section" id="scorer">
|
2472
|
-
<span id="select-scorer"></span><h4>7.3.
|
2472
|
+
<span id="select-scorer"></span><h4>7.3.52.4.4.5. <code class="docutils literal"><span class="pre">scorer</span></code><a class="headerlink" href="#scorer" title="Permalink to this headline">¶</a></h4>
|
2473
2473
|
<p>TODO: write in English and add example.</p>
|
2474
2474
|
<p>検索条件にマッチする全てのレコードに対して適用するgrn_exprをscript形式で指定します。</p>
|
2475
2475
|
<p>scorerは、検索処理が完了し、ソート処理が実行される前に呼び出されます。従って、各レコードのスコアを操作する式を指定しておけば、検索結果のソート順序をカスタマイズできるようになります。</p>
|
2476
2476
|
</div>
|
2477
2477
|
</div>
|
2478
2478
|
<div class="section" id="drilldown-related-parameters">
|
2479
|
-
<span id="select-drilldown-related-parameters"></span><h3>7.3.
|
2479
|
+
<span id="select-drilldown-related-parameters"></span><h3>7.3.52.4.5. Drilldown related parameters<a class="headerlink" href="#drilldown-related-parameters" title="Permalink to this headline">¶</a></h3>
|
2480
2480
|
<p>This section describes basic drilldown related parameters. Advanced
|
2481
2481
|
drilldown related parameters are described in another section.</p>
|
2482
2482
|
<div class="section" id="select-drilldown">
|
2483
|
-
<span id="id2"></span><h4>7.3.
|
2483
|
+
<span id="id2"></span><h4>7.3.52.4.5.1. <code class="docutils literal"><span class="pre">drilldown</span></code><a class="headerlink" href="#select-drilldown" title="Permalink to this headline">¶</a></h4>
|
2484
2484
|
<p>Specifies keys for grouping separated by <code class="docutils literal"><span class="pre">,</span></code>.</p>
|
2485
2485
|
<p>Matched records by specified search conditions are grouped by each
|
2486
2486
|
key. If you specify no search condition, all records are grouped by
|
@@ -2769,11 +2769,11 @@ each key.</p>
|
|
2769
2769
|
</div></blockquote>
|
2770
2770
|
</div>
|
2771
2771
|
<div class="section" id="drilldown-sortby">
|
2772
|
-
<span id="select-drilldown-sortby"></span><h4>7.3.
|
2772
|
+
<span id="select-drilldown-sortby"></span><h4>7.3.52.4.5.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code><a class="headerlink" href="#drilldown-sortby" title="Permalink to this headline">¶</a></h4>
|
2773
2773
|
<p>Specifies sort keys for drilldown outputs separated by <code class="docutils literal"><span class="pre">,</span></code>. Each
|
2774
2774
|
sort key is column name.</p>
|
2775
2775
|
<p>You can refer the number of grouped records by <code class="docutils literal"><span class="pre">_nsubrecs</span></code>
|
2776
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
2776
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a>.</p>
|
2777
2777
|
<p>Here is a simple <code class="docutils literal"><span class="pre">drilldown_sortby</span></code> example:</p>
|
2778
2778
|
<p>Execution example:</p>
|
2779
2779
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries \
|
@@ -2987,10 +2987,10 @@ are sorted by grouped key (= <code class="docutils literal"><span class="pre">_k
|
|
2987
2987
|
<p>The same sort keys are used in <code class="docutils literal"><span class="pre">tag</span></code> drilldown and <code class="docutils literal"><span class="pre">n_likes</span></code>
|
2988
2988
|
drilldown.</p>
|
2989
2989
|
<p>If you want to use different sort keys for each drilldown, use
|
2990
|
-
<a class="reference internal" href="#select-advanced-drilldown-related-parameters"><span>Advanced drilldown related parameters</span></a>.</p>
|
2990
|
+
<a class="reference internal" href="#select-advanced-drilldown-related-parameters"><span class="std std-ref">Advanced drilldown related parameters</span></a>.</p>
|
2991
2991
|
</div>
|
2992
2992
|
<div class="section" id="drilldown-output-columns">
|
2993
|
-
<span id="select-drilldown-output-columns"></span><h4>7.3.
|
2993
|
+
<span id="select-drilldown-output-columns"></span><h4>7.3.52.4.5.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code><a class="headerlink" href="#drilldown-output-columns" title="Permalink to this headline">¶</a></h4>
|
2994
2994
|
<p>Specifies output columns for drilldown separated by <code class="docutils literal"><span class="pre">,</span></code>.</p>
|
2995
2995
|
<p>Here is a <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> example:</p>
|
2996
2996
|
<p>Execution example:</p>
|
@@ -3222,13 +3222,13 @@ type column.</p>
|
|
3222
3222
|
<p>The default value of <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> is <code class="docutils literal"><span class="pre">_key,</span>
|
3223
3223
|
<span class="pre">_nsubrecs</span></code>. It means that grouped key and the number of records in
|
3224
3224
|
the group are output.</p>
|
3225
|
-
<p>You can use more <a class="reference internal" href="../columns/pseudo.html"><
|
3225
|
+
<p>You can use more <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> in
|
3226
3226
|
<code class="docutils literal"><span class="pre">drilldown_output_columns</span></code> such as <code class="docutils literal"><span class="pre">_max</span></code>, <code class="docutils literal"><span class="pre">_min</span></code>, <code class="docutils literal"><span class="pre">_sum</span></code> and
|
3227
|
-
<code class="docutils literal"><span class="pre">_avg</span></code> when you use <a class="reference internal" href="#select-drilldown-calc-types"><span>drilldown_calc_types</span></a>. See
|
3227
|
+
<code class="docutils literal"><span class="pre">_avg</span></code> when you use <a class="reference internal" href="#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a>. See
|
3228
3228
|
<code class="docutils literal"><span class="pre">drilldown_calc_types</span></code> document for details.</p>
|
3229
3229
|
</div>
|
3230
3230
|
<div class="section" id="drilldown-offset">
|
3231
|
-
<span id="select-drilldown-offset"></span><h4>7.3.
|
3231
|
+
<span id="select-drilldown-offset"></span><h4>7.3.52.4.5.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code><a class="headerlink" href="#drilldown-offset" title="Permalink to this headline">¶</a></h4>
|
3232
3232
|
<p>Specifies offset to determine range of drilldown output
|
3233
3233
|
records. Offset is zero-based. <code class="docutils literal"><span class="pre">--drilldown_offset</span> <span class="pre">1</span></code> means output
|
3234
3234
|
range is started from the 2nd record.</p>
|
@@ -3380,7 +3380,7 @@ total number of grouped results is <code class="docutils literal"><span class="p
|
|
3380
3380
|
<p>The default value of <code class="docutils literal"><span class="pre">drilldown_offset</span></code> is <code class="docutils literal"><span class="pre">0</span></code>.</p>
|
3381
3381
|
</div>
|
3382
3382
|
<div class="section" id="drilldown-limit">
|
3383
|
-
<span id="select-drilldown-limit"></span><h4>7.3.
|
3383
|
+
<span id="select-drilldown-limit"></span><h4>7.3.52.4.5.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code><a class="headerlink" href="#drilldown-limit" title="Permalink to this headline">¶</a></h4>
|
3384
3384
|
<p>Specifies the max number of groups in a drilldown. If the number of
|
3385
3385
|
groups is less than <code class="docutils literal"><span class="pre">drilldown_limit</span></code>, all groups are outputted.</p>
|
3386
3386
|
<p>Here is a <code class="docutils literal"><span class="pre">drilldown_limit</span></code> example:</p>
|
@@ -3534,15 +3534,15 @@ all groups. It's very useful value to show all groups.</p>
|
|
3534
3534
|
<p>The default value of <code class="docutils literal"><span class="pre">drilldown_limit</span></code> is <code class="docutils literal"><span class="pre">10</span></code>.</p>
|
3535
3535
|
</div>
|
3536
3536
|
<div class="section" id="drilldown-calc-types">
|
3537
|
-
<span id="select-drilldown-calc-types"></span><h4>7.3.
|
3537
|
+
<span id="select-drilldown-calc-types"></span><h4>7.3.52.4.5.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code><a class="headerlink" href="#drilldown-calc-types" title="Permalink to this headline">¶</a></h4>
|
3538
3538
|
<p>Specifies how to calculate (aggregate) values in grouped records by
|
3539
3539
|
a drilldown. You can specify multiple calculation types separated by
|
3540
3540
|
"<code class="docutils literal"><span class="pre">,</span></code>". For example, <code class="docutils literal"><span class="pre">MAX,MIN</span></code>.</p>
|
3541
3541
|
<p>Calculation target values are read from a column of grouped
|
3542
3542
|
records. The column is specified by
|
3543
|
-
<a class="reference internal" href="#select-drilldown-calc-target"><span>drilldown_calc_target</span></a>.</p>
|
3544
|
-
<p>You can read calculated value by <a class="reference internal" href="../columns/pseudo.html"><
|
3545
|
-
as <code class="docutils literal"><span class="pre">_max</span></code> and <code class="docutils literal"><span class="pre">_min</span></code> in <a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a>.</p>
|
3543
|
+
<a class="reference internal" href="#select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a>.</p>
|
3544
|
+
<p>You can read calculated value by <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> such
|
3545
|
+
as <code class="docutils literal"><span class="pre">_max</span></code> and <code class="docutils literal"><span class="pre">_min</span></code> in <a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a>.</p>
|
3546
3546
|
<p>You can use the following calculation types:</p>
|
3547
3547
|
<table border="1" class="docutils">
|
3548
3548
|
<colgroup>
|
@@ -3553,8 +3553,8 @@ as <code class="docutils literal"><span class="pre">_max</span></code> and <code
|
|
3553
3553
|
</colgroup>
|
3554
3554
|
<thead valign="bottom">
|
3555
3555
|
<tr class="row-odd"><th class="head">Type name</th>
|
3556
|
-
<th class="head"><a class="reference internal" href="../columns/pseudo.html"><
|
3557
|
-
<th class="head">Need <a class="reference internal" href="#select-drilldown-calc-target"><span>drilldown_calc_target</span></a></th>
|
3556
|
+
<th class="head"><a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> name</th>
|
3557
|
+
<th class="head">Need <a class="reference internal" href="#select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a></th>
|
3558
3558
|
<th class="head">Description</th>
|
3559
3559
|
</tr>
|
3560
3560
|
</thead>
|
@@ -3706,7 +3706,7 @@ grouped records.</td>
|
|
3706
3706
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command groups all records by <code class="docutils literal"><span class="pre">tag</span></code> column value,
|
3707
3707
|
finding the maximum <code class="docutils literal"><span class="pre">n_likes</span></code> column value for each group and
|
3708
3708
|
outputs pairs of grouped key and the maximum <code class="docutils literal"><span class="pre">n_likes</span></code> column value
|
3709
|
-
for the group. It uses <code class="docutils literal"><span class="pre">_max</span></code> <a class="reference internal" href="../columns/pseudo.html"><
|
3709
|
+
for the group. It uses <code class="docutils literal"><span class="pre">_max</span></code> <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to
|
3710
3710
|
read the maximum <code class="docutils literal"><span class="pre">n_likes</span></code> column value.</p>
|
3711
3711
|
<p>Here is a <code class="docutils literal"><span class="pre">MIN</span></code> example:</p>
|
3712
3712
|
<p>Execution example:</p>
|
@@ -3820,7 +3820,7 @@ read the maximum <code class="docutils literal"><span class="pre">n_likes</span>
|
|
3820
3820
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command groups all records by <code class="docutils literal"><span class="pre">tag</span></code> column value,
|
3821
3821
|
finding the minimum <code class="docutils literal"><span class="pre">n_likes</span></code> column value for each group and
|
3822
3822
|
outputs pairs of grouped key and the minimum <code class="docutils literal"><span class="pre">n_likes</span></code> column value
|
3823
|
-
for the group. It uses <code class="docutils literal"><span class="pre">_min</span></code> <a class="reference internal" href="../columns/pseudo.html"><
|
3823
|
+
for the group. It uses <code class="docutils literal"><span class="pre">_min</span></code> <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to
|
3824
3824
|
read the minimum <code class="docutils literal"><span class="pre">n_likes</span></code> column value.</p>
|
3825
3825
|
<p>Here is a <code class="docutils literal"><span class="pre">SUM</span></code> example:</p>
|
3826
3826
|
<p>Execution example:</p>
|
@@ -3934,7 +3934,7 @@ read the minimum <code class="docutils literal"><span class="pre">n_likes</span>
|
|
3934
3934
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command groups all records by <code class="docutils literal"><span class="pre">tag</span></code> column value,
|
3935
3935
|
sums all <code class="docutils literal"><span class="pre">n_likes</span></code> column values for each group and outputs pairs
|
3936
3936
|
of grouped key and the summed <code class="docutils literal"><span class="pre">n_likes</span></code> column values for the
|
3937
|
-
group. It uses <code class="docutils literal"><span class="pre">_sum</span></code> <a class="reference internal" href="../columns/pseudo.html"><
|
3937
|
+
group. It uses <code class="docutils literal"><span class="pre">_sum</span></code> <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to read the
|
3938
3938
|
summed <code class="docutils literal"><span class="pre">n_likes</span></code> column values.</p>
|
3939
3939
|
<p>Here is a <code class="docutils literal"><span class="pre">AVG</span></code> example:</p>
|
3940
3940
|
<p>Execution example:</p>
|
@@ -4048,7 +4048,7 @@ summed <code class="docutils literal"><span class="pre">n_likes</span></code> co
|
|
4048
4048
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command groups all records by <code class="docutils literal"><span class="pre">tag</span></code> column value,
|
4049
4049
|
averages all <code class="docutils literal"><span class="pre">n_likes</span></code> column values for each group and outputs
|
4050
4050
|
pairs of grouped key and the averaged <code class="docutils literal"><span class="pre">n_likes</span></code> column values for
|
4051
|
-
the group. It uses <code class="docutils literal"><span class="pre">_avg</span></code> <a class="reference internal" href="../columns/pseudo.html"><
|
4051
|
+
the group. It uses <code class="docutils literal"><span class="pre">_avg</span></code> <a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to read
|
4052
4052
|
the averaged <code class="docutils literal"><span class="pre">n_likes</span></code> column values.</p>
|
4053
4053
|
<p>Here is an example that uses all calculation types:</p>
|
4054
4054
|
<p>Execution example:</p>
|
@@ -4189,18 +4189,18 @@ the averaged <code class="docutils literal"><span class="pre">n_likes</span></co
|
|
4189
4189
|
</div>
|
4190
4190
|
<p>The <code class="docutils literal"><span class="pre">select</span></code> command specifies multiple calculation types separated
|
4191
4191
|
by "<code class="docutils literal"><span class="pre">,</span></code>" like <code class="docutils literal"><span class="pre">MAX,MIN,SUM,AVG</span></code>. You can use <code class="docutils literal"><span class="pre">_nsubrecs</span></code>
|
4192
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
4193
|
-
<a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a> without specifying <code class="docutils literal"><span class="pre">COUNT</span></code> in
|
4192
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> in
|
4193
|
+
<a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> without specifying <code class="docutils literal"><span class="pre">COUNT</span></code> in
|
4194
4194
|
<code class="docutils literal"><span class="pre">drilldown_calc_types</span></code>. Because <code class="docutils literal"><span class="pre">COUNT</span></code> is always enabled.</p>
|
4195
4195
|
<p>The default value of <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code> is <code class="docutils literal"><span class="pre">NONE</span></code>. It means
|
4196
4196
|
that only <code class="docutils literal"><span class="pre">COUNT</span></code> is enabled. Because <code class="docutils literal"><span class="pre">NONE</span></code> is just ignored and
|
4197
4197
|
<code class="docutils literal"><span class="pre">COUNT</span></code> is always enabled.</p>
|
4198
4198
|
</div>
|
4199
4199
|
<div class="section" id="drilldown-calc-target">
|
4200
|
-
<span id="select-drilldown-calc-target"></span><h4>7.3.
|
4201
|
-
<p>Specifies the target column for <a class="reference internal" href="#select-drilldown-calc-types"><span>drilldown_calc_types</span></a>.</p>
|
4200
|
+
<span id="select-drilldown-calc-target"></span><h4>7.3.52.4.5.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code><a class="headerlink" href="#drilldown-calc-target" title="Permalink to this headline">¶</a></h4>
|
4201
|
+
<p>Specifies the target column for <a class="reference internal" href="#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a>.</p>
|
4202
4202
|
<p>If you specify a calculation type that needs a target column such as
|
4203
|
-
<code class="docutils literal"><span class="pre">MAX</span></code> in <a class="reference internal" href="#select-drilldown-calc-types"><span>drilldown_calc_types</span></a> but you omit
|
4203
|
+
<code class="docutils literal"><span class="pre">MAX</span></code> in <a class="reference internal" href="#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> but you omit
|
4204
4204
|
<code class="docutils literal"><span class="pre">drilldown_calc_target</span></code>, the calculation result is always <code class="docutils literal"><span class="pre">0</span></code>.</p>
|
4205
4205
|
<p>You can specify only one column name like <code class="docutils literal"><span class="pre">--drilldown_calc_target</span>
|
4206
4206
|
<span class="pre">n_likes</span></code>. You can't specify multiple column name like
|
@@ -4208,18 +4208,18 @@ that only <code class="docutils literal"><span class="pre">COUNT</span></code> i
|
|
4208
4208
|
<p>You can use referenced value from the target record by combining
|
4209
4209
|
"<code class="docutils literal"><span class="pre">.</span></code>" like <code class="docutils literal"><span class="pre">--drilldown_calc_target</span>
|
4210
4210
|
<span class="pre">reference_column.nested_reference_column.value</span></code>.</p>
|
4211
|
-
<p>See <a class="reference internal" href="#select-drilldown-calc-types"><span>drilldown_calc_types</span></a> to know how to use
|
4211
|
+
<p>See <a class="reference internal" href="#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a> to know how to use
|
4212
4212
|
<code class="docutils literal"><span class="pre">drilldown_calc_target</span></code>.</p>
|
4213
4213
|
<p>The default value of <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code> is <code class="docutils literal"><span class="pre">null</span></code>. It means
|
4214
4214
|
that no calculation target column is specified.</p>
|
4215
4215
|
</div>
|
4216
4216
|
</div>
|
4217
4217
|
<div class="section" id="advanced-drilldown-related-parameters">
|
4218
|
-
<span id="select-advanced-drilldown-related-parameters"></span><h3>7.3.
|
4218
|
+
<span id="select-advanced-drilldown-related-parameters"></span><h3>7.3.52.4.6. Advanced drilldown related parameters<a class="headerlink" href="#advanced-drilldown-related-parameters" title="Permalink to this headline">¶</a></h3>
|
4219
4219
|
<p>You can get multiple drilldown results by specifying multiple group
|
4220
|
-
keys by <a class="reference internal" href="#select-drilldown"><span>drilldown</span></a>. But you need to use the same
|
4220
|
+
keys by <a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a>. But you need to use the same
|
4221
4221
|
configuration for all drilldowns. For example,
|
4222
|
-
<a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a> is used by all drilldowns.</p>
|
4222
|
+
<a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> is used by all drilldowns.</p>
|
4223
4223
|
<p>You can use a configuration for each drilldown by the following
|
4224
4224
|
parameters:</p>
|
4225
4225
|
<blockquote>
|
@@ -4270,11 +4270,11 @@ is used for output columns.</p>
|
|
4270
4270
|
to use it for the following parameters:</p>
|
4271
4271
|
<blockquote>
|
4272
4272
|
<div><ul class="simple">
|
4273
|
-
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code>: <a class="reference internal" href="#select-drilldown-sortby"><span>drilldown_sortby</span></a></li>
|
4274
|
-
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code>: <a class="reference internal" href="#select-drilldown-offset"><span>drilldown_offset</span></a></li>
|
4275
|
-
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code>: <a class="reference internal" href="#select-drilldown-limit"><span>drilldown_limit</span></a></li>
|
4276
|
-
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code>: <a class="reference internal" href="#select-drilldown-calc-types"><span>drilldown_calc_types</span></a></li>
|
4277
|
-
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code>: <a class="reference internal" href="#select-drilldown-calc-target"><span>drilldown_calc_target</span></a></li>
|
4273
|
+
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].sortby</span></code>: <a class="reference internal" href="#select-drilldown-sortby"><span class="std std-ref">drilldown_sortby</span></a></li>
|
4274
|
+
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].offset</span></code>: <a class="reference internal" href="#select-drilldown-offset"><span class="std std-ref">drilldown_offset</span></a></li>
|
4275
|
+
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].limit</span></code>: <a class="reference internal" href="#select-drilldown-limit"><span class="std std-ref">drilldown_limit</span></a></li>
|
4276
|
+
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_types</span></code>: <a class="reference internal" href="#select-drilldown-calc-types"><span class="std std-ref">drilldown_calc_types</span></a></li>
|
4277
|
+
<li><code class="docutils literal"><span class="pre">drilldown[${LABEL}].calc_target</span></code>: <a class="reference internal" href="#select-drilldown-calc-target"><span class="std std-ref">drilldown_calc_target</span></a></li>
|
4278
4278
|
</ul>
|
4279
4279
|
</div></blockquote>
|
4280
4280
|
<p>The following parameters are needed more description:</p>
|
@@ -4286,8 +4286,8 @@ to use it for the following parameters:</p>
|
|
4286
4286
|
</div></blockquote>
|
4287
4287
|
<p>Output format is different a bit. It's also needed more description.</p>
|
4288
4288
|
<div class="section" id="drilldown-label-keys">
|
4289
|
-
<span id="select-drilldown-label-keys"></span><h4>7.3.
|
4290
|
-
<p><a class="reference internal" href="#select-drilldown"><span>drilldown</span></a> can specify multiple keys for multiple
|
4289
|
+
<span id="select-drilldown-label-keys"></span><h4>7.3.52.4.6.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code><a class="headerlink" href="#drilldown-label-keys" title="Permalink to this headline">¶</a></h4>
|
4290
|
+
<p><a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a> can specify multiple keys for multiple
|
4291
4291
|
drilldowns. But it can't specify multiple keys for one drilldown.</p>
|
4292
4292
|
<p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> can't specify multiple keys for multiple
|
4293
4293
|
drilldowns. But it can specify multiple keys for one drilldown.</p>
|
@@ -4416,26 +4416,26 @@ column values:</p>
|
|
4416
4416
|
</div>
|
4417
4417
|
<p><code class="docutils literal"><span class="pre">tag.n_likes</span></code> is used as the label for the drilldown parameters
|
4418
4418
|
group. You can refer grouped keys by <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax in
|
4419
|
-
<a class="reference internal" href="#select-drilldown-label-output-columns"><span>drilldown[${LABEL}].output_columns</span></a>. <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> is a
|
4419
|
+
<a class="reference internal" href="#select-drilldown-label-output-columns"><span class="std std-ref">drilldown[${LABEL}].output_columns</span></a>. <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> is a
|
4420
4420
|
column name to be used by group key. <code class="docutils literal"><span class="pre">tag</span></code> and <code class="docutils literal"><span class="pre">n_likes</span></code> are
|
4421
4421
|
<code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> in this case.</p>
|
4422
4422
|
<p>Note that you can't use <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax when you just
|
4423
4423
|
specify one key as <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> like <code class="docutils literal"><span class="pre">--drilldown[tag].keys</span>
|
4424
4424
|
<span class="pre">tag</span></code>. You should use <code class="docutils literal"><span class="pre">_key</span></code> for the case. It's the same rule in
|
4425
|
-
<a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a>.</p>
|
4425
|
+
<a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a>.</p>
|
4426
4426
|
</div>
|
4427
4427
|
<div class="section" id="drilldown-label-output-columns">
|
4428
|
-
<span id="select-drilldown-label-output-columns"></span><h4>7.3.
|
4429
|
-
<p>It's almost same as <a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a>. The
|
4430
|
-
difference between <a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a> and
|
4428
|
+
<span id="select-drilldown-label-output-columns"></span><h4>7.3.52.4.6.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code><a class="headerlink" href="#drilldown-label-output-columns" title="Permalink to this headline">¶</a></h4>
|
4429
|
+
<p>It's almost same as <a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a>. The
|
4430
|
+
difference between <a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> and
|
4431
4431
|
<code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> is how to refer group keys.</p>
|
4432
|
-
<p><a class="reference internal" href="#select-drilldown-output-columns"><span>drilldown_output_columns</span></a> uses <code class="docutils literal"><span class="pre">_key</span></code>
|
4433
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
4432
|
+
<p><a class="reference internal" href="#select-drilldown-output-columns"><span class="std std-ref">drilldown_output_columns</span></a> uses <code class="docutils literal"><span class="pre">_key</span></code>
|
4433
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to refer group
|
4434
4434
|
key. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code> also uses <code class="docutils literal"><span class="pre">_key</span></code>
|
4435
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
4436
|
-
only one group key by <a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a>.</p>
|
4435
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> to refer group key when you specify
|
4436
|
+
only one group key by <a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a>.</p>
|
4437
4437
|
<p>Here is an example to refer single group key by <code class="docutils literal"><span class="pre">_key</span></code>
|
4438
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
4438
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a>:</p>
|
4439
4439
|
<p>Execution example:</p>
|
4440
4440
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries \
|
4441
4441
|
--limit 0 \
|
@@ -4514,10 +4514,10 @@ only one group key by <a class="reference internal" href="#select-drilldown-labe
|
|
4514
4514
|
</pre></div>
|
4515
4515
|
</div>
|
4516
4516
|
<p>But you can't refer each group key by <code class="docutils literal"><span class="pre">_key</span></code>
|
4517
|
-
<a class="reference internal" href="../columns/pseudo.html"><
|
4517
|
+
<a class="reference internal" href="../columns/pseudo.html"><span class="doc">Pseudo column</span></a> in
|
4518
4518
|
<code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code>. You need to use
|
4519
4519
|
<code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax. <code class="docutils literal"><span class="pre">${KEY_NAME}</span></code> is a column name that is
|
4520
|
-
used for group key in <a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a>.</p>
|
4520
|
+
used for group key in <a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a>.</p>
|
4521
4521
|
<p>Here is an example to refer each group key in multiple group keys by
|
4522
4522
|
<code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax:</p>
|
4523
4523
|
<p>Execution example:</p>
|
@@ -4606,22 +4606,22 @@ group keys. You can see byte sequence of the vector value by
|
|
4606
4606
|
referring <code class="docutils literal"><span class="pre">_key</span></code> in <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code>.</p>
|
4607
4607
|
<p>There is one grouped record in <code class="docutils literal"><span class="pre">_value</span></code> to refer each grouped
|
4608
4608
|
values when you specify multiple group keys to
|
4609
|
-
<a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a>. So you can refer each group key
|
4609
|
+
<a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a>. So you can refer each group key
|
4610
4610
|
by <code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax.</p>
|
4611
4611
|
<p class="last">On the other hand, there is no grouped record in <code class="docutils literal"><span class="pre">_value</span></code> when
|
4612
4612
|
you specify only one group key to
|
4613
|
-
<a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a>. So you can't refer group key by
|
4613
|
+
<a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a>. So you can't refer group key by
|
4614
4614
|
<code class="docutils literal"><span class="pre">_value.${KEY_NAME}</span></code> syntax.</p>
|
4615
4615
|
</div>
|
4616
4616
|
</div>
|
4617
4617
|
<div class="section" id="output-format-for-drilldown-label-style">
|
4618
|
-
<span id="select-drilldown-label-output-format"></span><h4>7.3.
|
4619
|
-
<p>There is a difference in output format between <a class="reference internal" href="#select-drilldown"><span>drilldown</span></a>
|
4620
|
-
and <a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a>. <a class="reference internal" href="#select-drilldown"><span>drilldown</span></a> uses
|
4618
|
+
<span id="select-drilldown-label-output-format"></span><h4>7.3.52.4.6.3. Output format for <code class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></code> style<a class="headerlink" href="#output-format-for-drilldown-label-style" title="Permalink to this headline">¶</a></h4>
|
4619
|
+
<p>There is a difference in output format between <a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a>
|
4620
|
+
and <a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a>. <a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a> uses
|
4621
4621
|
array to output multiple drilldown results.
|
4622
|
-
<a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a> uses pairs of label and drilldown
|
4622
|
+
<a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a> uses pairs of label and drilldown
|
4623
4623
|
result.</p>
|
4624
|
-
<p><a class="reference internal" href="#select-drilldown"><span>drilldown</span></a> uses the following output format:</p>
|
4624
|
+
<p><a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a> uses the following output format:</p>
|
4625
4625
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
4626
4626
|
HEADER,
|
4627
4627
|
[
|
@@ -4633,7 +4633,7 @@ result.</p>
|
|
4633
4633
|
]
|
4634
4634
|
</pre></div>
|
4635
4635
|
</div>
|
4636
|
-
<p><a class="reference internal" href="#select-drilldown-label-keys"><span>drilldown[${LABEL}].keys</span></a> uses the following output format:</p>
|
4636
|
+
<p><a class="reference internal" href="#select-drilldown-label-keys"><span class="std std-ref">drilldown[${LABEL}].keys</span></a> uses the following output format:</p>
|
4637
4637
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
4638
4638
|
HEADER,
|
4639
4639
|
[
|
@@ -4650,9 +4650,9 @@ result.</p>
|
|
4650
4650
|
</div>
|
4651
4651
|
</div>
|
4652
4652
|
<div class="section" id="cache-related-parameter">
|
4653
|
-
<h3>7.3.
|
4653
|
+
<h3>7.3.52.4.7. Cache related parameter<a class="headerlink" href="#cache-related-parameter" title="Permalink to this headline">¶</a></h3>
|
4654
4654
|
<div class="section" id="cache">
|
4655
|
-
<span id="select-cache"></span><h4>7.3.
|
4655
|
+
<span id="select-cache"></span><h4>7.3.52.4.7.1. <code class="docutils literal"><span class="pre">cache</span></code><a class="headerlink" href="#cache" title="Permalink to this headline">¶</a></h4>
|
4656
4656
|
<p>Specifies whether caching the result of this query or not.</p>
|
4657
4657
|
<p>If the result of this query is cached, the next same query returns
|
4658
4658
|
response quickly by using the cache.</p>
|
@@ -4758,10 +4758,10 @@ It's the default value.</td>
|
|
4758
4758
|
</div>
|
4759
4759
|
</div>
|
4760
4760
|
<div class="section" id="score-related-parameters">
|
4761
|
-
<h3>7.3.
|
4761
|
+
<h3>7.3.52.4.8. Score related parameters<a class="headerlink" href="#score-related-parameters" title="Permalink to this headline">¶</a></h3>
|
4762
4762
|
<p>There is a score related parameter, <code class="docutils literal"><span class="pre">adjuster</span></code>.</p>
|
4763
4763
|
<div class="section" id="adjuster">
|
4764
|
-
<span id="select-adjuster"></span><h4>7.3.
|
4764
|
+
<span id="select-adjuster"></span><h4>7.3.52.4.8.1. <code class="docutils literal"><span class="pre">adjuster</span></code><a class="headerlink" href="#adjuster" title="Permalink to this headline">¶</a></h4>
|
4765
4765
|
<p>Specifies one or more score adjust expressions. You need to use
|
4766
4766
|
<code class="docutils literal"><span class="pre">adjuster</span></code> with <code class="docutils literal"><span class="pre">query</span></code> or <code class="docutils literal"><span class="pre">filter</span></code>. <code class="docutils literal"><span class="pre">adjuster</span></code> doesn't work
|
4767
4767
|
with not searched request.</p>
|
@@ -4995,12 +4995,12 @@ It increases score by 3.</p>
|
|
4995
4995
|
means that increased scores of all records that has <code class="docutils literal"><span class="pre">"KEYWORD"</span></code> are
|
4996
4996
|
the same value. You can change increase score for each record that has
|
4997
4997
|
the same <code class="docutils literal"><span class="pre">"KEYWORD"</span></code>. It is useful to tune search score. See
|
4998
|
-
<a class="reference internal" href="../columns/vector.html#weight-vector-column"><span>Weight vector column</span></a> for details.</p>
|
4998
|
+
<a class="reference internal" href="../columns/vector.html#weight-vector-column"><span class="std std-ref">Weight vector column</span></a> for details.</p>
|
4999
4999
|
</div>
|
5000
5000
|
</div>
|
5001
5001
|
</div>
|
5002
5002
|
<div class="section" id="return-value">
|
5003
|
-
<span id="select-return-value"></span><h2>7.3.
|
5003
|
+
<span id="select-return-value"></span><h2>7.3.52.5. Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2>
|
5004
5004
|
<p><code class="docutils literal"><span class="pre">select</span></code> returns response with the following format:</p>
|
5005
5005
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
5006
5006
|
HEADER,
|
@@ -5015,7 +5015,7 @@ the same <code class="docutils literal"><span class="pre">"KEYWORD"</s
|
|
5015
5015
|
</pre></div>
|
5016
5016
|
</div>
|
5017
5017
|
<p>If <code class="docutils literal"><span class="pre">select</span></code> fails, error details are in <code class="docutils literal"><span class="pre">HEADER</span></code>.</p>
|
5018
|
-
<p>See <a class="reference internal" href="../command/output_format.html"><
|
5018
|
+
<p>See <a class="reference internal" href="../command/output_format.html"><span class="doc">Output format</span></a> for <code class="docutils literal"><span class="pre">HEADER</span></code>.</p>
|
5019
5019
|
<p>There are zero or more <code class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></code>. If no <code class="docutils literal"><span class="pre">drilldown</span></code> and
|
5020
5020
|
<code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> are specified, they are omitted like the
|
5021
5021
|
following:</p>
|
@@ -5061,11 +5061,11 @@ exist:</p>
|
|
5061
5061
|
]
|
5062
5062
|
</pre></div>
|
5063
5063
|
</div>
|
5064
|
-
<p>See <a class="reference internal" href="#select-simple-usage"><span>Simple usage</span></a> for concrete example of the format.</p>
|
5065
|
-
<p><code class="docutils literal"><span class="pre">N_HITS</span></code> is the number of matched records before <a class="reference internal" href="#select-limit"><span>limit</span></a>
|
5064
|
+
<p>See <a class="reference internal" href="#select-simple-usage"><span class="std std-ref">Simple usage</span></a> for concrete example of the format.</p>
|
5065
|
+
<p><code class="docutils literal"><span class="pre">N_HITS</span></code> is the number of matched records before <a class="reference internal" href="#select-limit"><span class="std std-ref">limit</span></a>
|
5066
5066
|
is applied.</p>
|
5067
5067
|
<p><code class="docutils literal"><span class="pre">COLUMNS</span></code> describes about output columns specified by
|
5068
|
-
<a class="reference internal" href="#select-output-columns"><span>output_columns</span></a>. It uses the following format:</p>
|
5068
|
+
<a class="reference internal" href="#select-output-columns"><span class="std std-ref">output_columns</span></a>. It uses the following format:</p>
|
5069
5069
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
5070
5070
|
[COLUMN_NAME_1, COLUMN_TYPE_1],
|
5071
5071
|
[COLUMN_NAME_2, COLUMN_TYPE_2],
|
@@ -5083,13 +5083,13 @@ output column information includes the followings:</p>
|
|
5083
5083
|
</ul>
|
5084
5084
|
</div></blockquote>
|
5085
5085
|
<p>Column name is extracted from value specified as
|
5086
|
-
<a class="reference internal" href="#select-output-columns"><span>output_columns</span></a>.</p>
|
5086
|
+
<a class="reference internal" href="#select-output-columns"><span class="std std-ref">output_columns</span></a>.</p>
|
5087
5087
|
<p>Column type is Groonga's type name or <code class="docutils literal"><span class="pre">null</span></code>. It doesn't describe
|
5088
5088
|
whether the column value is vector or scalar. You need to determine it
|
5089
5089
|
by whether real column value is array or not.</p>
|
5090
|
-
<p>See <a class="reference internal" href="../types.html"><
|
5090
|
+
<p>See <a class="reference internal" href="../types.html"><span class="doc">Data types</span></a> for type details.</p>
|
5091
5091
|
<p><code class="docutils literal"><span class="pre">null</span></code> is used when column value type isn't determined. For example,
|
5092
|
-
function call in <a class="reference internal" href="#select-output-columns"><span>output_columns</span></a> such as
|
5092
|
+
function call in <a class="reference internal" href="#select-output-columns"><span class="std std-ref">output_columns</span></a> such as
|
5093
5093
|
<code class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">"snippet_html(content)"</span></code> uses <code class="docutils literal"><span class="pre">null</span></code>.</p>
|
5094
5094
|
<p>Here is an example of <code class="docutils literal"><span class="pre">COLUMNS</span></code>:</p>
|
5095
5095
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
@@ -5100,8 +5100,8 @@ function call in <a class="reference internal" href="#select-output-columns"><sp
|
|
5100
5100
|
</pre></div>
|
5101
5101
|
</div>
|
5102
5102
|
<p><code class="docutils literal"><span class="pre">RECORDS</span></code> includes column values for each matched record. Included
|
5103
|
-
records are selected by <a class="reference internal" href="#select-offset"><span>offset</span></a> and
|
5104
|
-
<a class="reference internal" href="#select-limit"><span>limit</span></a>. It uses the following format:</p>
|
5103
|
+
records are selected by <a class="reference internal" href="#select-offset"><span class="std std-ref">offset</span></a> and
|
5104
|
+
<a class="reference internal" href="#select-limit"><span class="std std-ref">limit</span></a>. It uses the following format:</p>
|
5105
5105
|
<div class="highlight-none"><div class="highlight"><pre><span></span>[
|
5106
5106
|
[
|
5107
5107
|
RECORD_1_COLUMN_1,
|
@@ -5156,7 +5156,7 @@ records are selected by <a class="reference internal" href="#select-offset"><spa
|
|
5156
5156
|
</pre></div>
|
5157
5157
|
</div>
|
5158
5158
|
<p>And <code class="docutils literal"><span class="pre">drilldown</span></code> generates one or more <code class="docutils literal"><span class="pre">DRILLDOWN_RESULT</span></code> when
|
5159
|
-
<a class="reference internal" href="#select-drilldown"><span>drilldown</span></a> has one ore more keys.</p>
|
5159
|
+
<a class="reference internal" href="#select-drilldown"><span class="std std-ref">drilldown</span></a> has one ore more keys.</p>
|
5160
5160
|
<p><code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> uses the following format. Multiple
|
5161
5161
|
<code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code> are mapped to one object (key-value
|
5162
5162
|
pairs):</p>
|
@@ -5196,15 +5196,15 @@ pairs):</p>
|
|
5196
5196
|
]
|
5197
5197
|
</pre></div>
|
5198
5198
|
</div>
|
5199
|
-
<p>See also <a class="reference internal" href="#select-drilldown-label-output-format"><span>Output format for drilldown[${LABEL}] style</span></a> for
|
5199
|
+
<p>See also <a class="reference internal" href="#select-drilldown-label-output-format"><span class="std std-ref">Output format for drilldown[${LABEL}] style</span></a> for
|
5200
5200
|
<code class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></code> style drilldown output format.</p>
|
5201
5201
|
</div>
|
5202
5202
|
<div class="section" id="see-also">
|
5203
|
-
<h2>7.3.
|
5203
|
+
<h2>7.3.52.6. See also<a class="headerlink" href="#see-also" title="Permalink to this headline">¶</a></h2>
|
5204
5204
|
<blockquote>
|
5205
5205
|
<div><ul class="simple">
|
5206
|
-
<li><a class="reference internal" href="../grn_expr/query_syntax.html"><
|
5207
|
-
<li><a class="reference internal" href="../grn_expr/script_syntax.html"><
|
5206
|
+
<li><a class="reference internal" href="../grn_expr/query_syntax.html"><span class="doc">Query syntax</span></a></li>
|
5207
|
+
<li><a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a></li>
|
5208
5208
|
</ul>
|
5209
5209
|
</div></blockquote>
|
5210
5210
|
</div>
|
@@ -5218,85 +5218,85 @@ pairs):</p>
|
|
5218
5218
|
<div class="sphinxsidebarwrapper">
|
5219
5219
|
<h3><a href="../../index.html">Table Of Contents</a></h3>
|
5220
5220
|
<ul>
|
5221
|
-
<li><a class="reference internal" href="#">7.3.
|
5222
|
-
<li><a class="reference internal" href="#summary">7.3.
|
5223
|
-
<li><a class="reference internal" href="#syntax">7.3.
|
5224
|
-
<li><a class="reference internal" href="#usage">7.3.
|
5225
|
-
<li><a class="reference internal" href="#simple-usage">7.3.
|
5226
|
-
<li><a class="reference internal" href="#search-conditions">7.3.
|
5227
|
-
<li><a class="reference internal" href="#search-condition-query">7.3.
|
5228
|
-
<li><a class="reference internal" href="#search-condition-filter">7.3.
|
5221
|
+
<li><a class="reference internal" href="#">7.3.52. <code class="docutils literal"><span class="pre">select</span></code></a><ul>
|
5222
|
+
<li><a class="reference internal" href="#summary">7.3.52.1. Summary</a></li>
|
5223
|
+
<li><a class="reference internal" href="#syntax">7.3.52.2. Syntax</a></li>
|
5224
|
+
<li><a class="reference internal" href="#usage">7.3.52.3. Usage</a><ul>
|
5225
|
+
<li><a class="reference internal" href="#simple-usage">7.3.52.3.1. Simple usage</a></li>
|
5226
|
+
<li><a class="reference internal" href="#search-conditions">7.3.52.3.2. Search conditions</a><ul>
|
5227
|
+
<li><a class="reference internal" href="#search-condition-query">7.3.52.3.2.1. Search condition: <code class="docutils literal"><span class="pre">query</span></code></a></li>
|
5228
|
+
<li><a class="reference internal" href="#search-condition-filter">7.3.52.3.2.2. Search condition: <code class="docutils literal"><span class="pre">filter</span></code></a></li>
|
5229
5229
|
</ul>
|
5230
5230
|
</li>
|
5231
|
-
<li><a class="reference internal" href="#paging">7.3.
|
5232
|
-
<li><a class="reference internal" href="#the-total-number-of-records">7.3.
|
5233
|
-
<li><a class="reference internal" href="#drilldown">7.3.
|
5231
|
+
<li><a class="reference internal" href="#paging">7.3.52.3.3. Paging</a></li>
|
5232
|
+
<li><a class="reference internal" href="#the-total-number-of-records">7.3.52.3.4. The total number of records</a></li>
|
5233
|
+
<li><a class="reference internal" href="#drilldown">7.3.52.3.5. Drilldown</a></li>
|
5234
5234
|
</ul>
|
5235
5235
|
</li>
|
5236
|
-
<li><a class="reference internal" href="#parameters">7.3.
|
5237
|
-
<li><a class="reference internal" href="#required-
|
5238
|
-
<li><a class="reference internal" href="#table">7.3.
|
5236
|
+
<li><a class="reference internal" href="#parameters">7.3.52.4. Parameters</a><ul>
|
5237
|
+
<li><a class="reference internal" href="#required-parameters">7.3.52.4.1. Required parameters</a><ul>
|
5238
|
+
<li><a class="reference internal" href="#table">7.3.52.4.1.1. <code class="docutils literal"><span class="pre">table</span></code></a></li>
|
5239
5239
|
</ul>
|
5240
5240
|
</li>
|
5241
|
-
<li><a class="reference internal" href="#search-related-parameters">7.3.
|
5242
|
-
<li><a class="reference internal" href="#match-columns">7.3.
|
5243
|
-
<li><a class="reference internal" href="#query">7.3.
|
5244
|
-
<li><a class="reference internal" href="#filter">7.3.
|
5241
|
+
<li><a class="reference internal" href="#search-related-parameters">7.3.52.4.2. Search related parameters</a><ul>
|
5242
|
+
<li><a class="reference internal" href="#match-columns">7.3.52.4.2.1. <code class="docutils literal"><span class="pre">match_columns</span></code></a></li>
|
5243
|
+
<li><a class="reference internal" href="#query">7.3.52.4.2.2. <code class="docutils literal"><span class="pre">query</span></code></a></li>
|
5244
|
+
<li><a class="reference internal" href="#filter">7.3.52.4.2.3. <code class="docutils literal"><span class="pre">filter</span></code></a></li>
|
5245
5245
|
</ul>
|
5246
5246
|
</li>
|
5247
|
-
<li><a class="reference internal" href="#advanced-search-parameters">7.3.
|
5248
|
-
<li><a class="reference internal" href="#match-escalation-threshold">7.3.
|
5249
|
-
<li><a class="reference internal" href="#query-expansion">7.3.
|
5250
|
-
<li><a class="reference internal" href="#query-flags">7.3.
|
5251
|
-
<li><a class="reference internal" href="#query-expander">7.3.
|
5247
|
+
<li><a class="reference internal" href="#advanced-search-parameters">7.3.52.4.3. Advanced search parameters</a><ul>
|
5248
|
+
<li><a class="reference internal" href="#match-escalation-threshold">7.3.52.4.3.1. <code class="docutils literal"><span class="pre">match_escalation_threshold</span></code></a></li>
|
5249
|
+
<li><a class="reference internal" href="#query-expansion">7.3.52.4.3.2. <code class="docutils literal"><span class="pre">query_expansion</span></code></a></li>
|
5250
|
+
<li><a class="reference internal" href="#query-flags">7.3.52.4.3.3. <code class="docutils literal"><span class="pre">query_flags</span></code></a></li>
|
5251
|
+
<li><a class="reference internal" href="#query-expander">7.3.52.4.3.4. <code class="docutils literal"><span class="pre">query_expander</span></code></a></li>
|
5252
5252
|
</ul>
|
5253
5253
|
</li>
|
5254
|
-
<li><a class="reference internal" href="#output-related-parameters">7.3.
|
5255
|
-
<li><a class="reference internal" href="#output-columns">7.3.
|
5256
|
-
<li><a class="reference internal" href="#sortby">7.3.
|
5257
|
-
<li><a class="reference internal" href="#offset">7.3.
|
5258
|
-
<li><a class="reference internal" href="#limit">7.3.
|
5259
|
-
<li><a class="reference internal" href="#scorer">7.3.
|
5254
|
+
<li><a class="reference internal" href="#output-related-parameters">7.3.52.4.4. Output related parameters</a><ul>
|
5255
|
+
<li><a class="reference internal" href="#output-columns">7.3.52.4.4.1. <code class="docutils literal"><span class="pre">output_columns</span></code></a></li>
|
5256
|
+
<li><a class="reference internal" href="#sortby">7.3.52.4.4.2. <code class="docutils literal"><span class="pre">sortby</span></code></a></li>
|
5257
|
+
<li><a class="reference internal" href="#offset">7.3.52.4.4.3. <code class="docutils literal"><span class="pre">offset</span></code></a></li>
|
5258
|
+
<li><a class="reference internal" href="#limit">7.3.52.4.4.4. <code class="docutils literal"><span class="pre">limit</span></code></a></li>
|
5259
|
+
<li><a class="reference internal" href="#scorer">7.3.52.4.4.5. <code class="docutils literal"><span class="pre">scorer</span></code></a></li>
|
5260
5260
|
</ul>
|
5261
5261
|
</li>
|
5262
|
-
<li><a class="reference internal" href="#drilldown-related-parameters">7.3.
|
5263
|
-
<li><a class="reference internal" href="#select-drilldown">7.3.
|
5264
|
-
<li><a class="reference internal" href="#drilldown-sortby">7.3.
|
5265
|
-
<li><a class="reference internal" href="#drilldown-output-columns">7.3.
|
5266
|
-
<li><a class="reference internal" href="#drilldown-offset">7.3.
|
5267
|
-
<li><a class="reference internal" href="#drilldown-limit">7.3.
|
5268
|
-
<li><a class="reference internal" href="#drilldown-calc-types">7.3.
|
5269
|
-
<li><a class="reference internal" href="#drilldown-calc-target">7.3.
|
5262
|
+
<li><a class="reference internal" href="#drilldown-related-parameters">7.3.52.4.5. Drilldown related parameters</a><ul>
|
5263
|
+
<li><a class="reference internal" href="#select-drilldown">7.3.52.4.5.1. <code class="docutils literal"><span class="pre">drilldown</span></code></a></li>
|
5264
|
+
<li><a class="reference internal" href="#drilldown-sortby">7.3.52.4.5.2. <code class="docutils literal"><span class="pre">drilldown_sortby</span></code></a></li>
|
5265
|
+
<li><a class="reference internal" href="#drilldown-output-columns">7.3.52.4.5.3. <code class="docutils literal"><span class="pre">drilldown_output_columns</span></code></a></li>
|
5266
|
+
<li><a class="reference internal" href="#drilldown-offset">7.3.52.4.5.4. <code class="docutils literal"><span class="pre">drilldown_offset</span></code></a></li>
|
5267
|
+
<li><a class="reference internal" href="#drilldown-limit">7.3.52.4.5.5. <code class="docutils literal"><span class="pre">drilldown_limit</span></code></a></li>
|
5268
|
+
<li><a class="reference internal" href="#drilldown-calc-types">7.3.52.4.5.6. <code class="docutils literal"><span class="pre">drilldown_calc_types</span></code></a></li>
|
5269
|
+
<li><a class="reference internal" href="#drilldown-calc-target">7.3.52.4.5.7. <code class="docutils literal"><span class="pre">drilldown_calc_target</span></code></a></li>
|
5270
5270
|
</ul>
|
5271
5271
|
</li>
|
5272
|
-
<li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.
|
5273
|
-
<li><a class="reference internal" href="#drilldown-label-keys">7.3.
|
5274
|
-
<li><a class="reference internal" href="#drilldown-label-output-columns">7.3.
|
5275
|
-
<li><a class="reference internal" href="#output-format-for-drilldown-label-style">7.3.
|
5272
|
+
<li><a class="reference internal" href="#advanced-drilldown-related-parameters">7.3.52.4.6. Advanced drilldown related parameters</a><ul>
|
5273
|
+
<li><a class="reference internal" href="#drilldown-label-keys">7.3.52.4.6.1. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].keys</span></code></a></li>
|
5274
|
+
<li><a class="reference internal" href="#drilldown-label-output-columns">7.3.52.4.6.2. <code class="docutils literal"><span class="pre">drilldown[${LABEL}].output_columns</span></code></a></li>
|
5275
|
+
<li><a class="reference internal" href="#output-format-for-drilldown-label-style">7.3.52.4.6.3. Output format for <code class="docutils literal"><span class="pre">drilldown[${LABEL}]</span></code> style</a></li>
|
5276
5276
|
</ul>
|
5277
5277
|
</li>
|
5278
|
-
<li><a class="reference internal" href="#cache-related-parameter">7.3.
|
5279
|
-
<li><a class="reference internal" href="#cache">7.3.
|
5278
|
+
<li><a class="reference internal" href="#cache-related-parameter">7.3.52.4.7. Cache related parameter</a><ul>
|
5279
|
+
<li><a class="reference internal" href="#cache">7.3.52.4.7.1. <code class="docutils literal"><span class="pre">cache</span></code></a></li>
|
5280
5280
|
</ul>
|
5281
5281
|
</li>
|
5282
|
-
<li><a class="reference internal" href="#score-related-parameters">7.3.
|
5283
|
-
<li><a class="reference internal" href="#adjuster">7.3.
|
5282
|
+
<li><a class="reference internal" href="#score-related-parameters">7.3.52.4.8. Score related parameters</a><ul>
|
5283
|
+
<li><a class="reference internal" href="#adjuster">7.3.52.4.8.1. <code class="docutils literal"><span class="pre">adjuster</span></code></a></li>
|
5284
5284
|
</ul>
|
5285
5285
|
</li>
|
5286
5286
|
</ul>
|
5287
5287
|
</li>
|
5288
|
-
<li><a class="reference internal" href="#return-value">7.3.
|
5289
|
-
<li><a class="reference internal" href="#see-also">7.3.
|
5288
|
+
<li><a class="reference internal" href="#return-value">7.3.52.5. Return value</a></li>
|
5289
|
+
<li><a class="reference internal" href="#see-also">7.3.52.6. See also</a></li>
|
5290
5290
|
</ul>
|
5291
5291
|
</li>
|
5292
5292
|
</ul>
|
5293
5293
|
|
5294
5294
|
<h4>Previous topic</h4>
|
5295
5295
|
<p class="topless"><a href="schema.html"
|
5296
|
-
title="previous chapter">7.3.
|
5296
|
+
title="previous chapter">7.3.51. <code class="docutils literal"><span class="pre">schema</span></code></a></p>
|
5297
5297
|
<h4>Next topic</h4>
|
5298
5298
|
<p class="topless"><a href="shutdown.html"
|
5299
|
-
title="next chapter">7.3.
|
5299
|
+
title="next chapter">7.3.53. <code class="docutils literal"><span class="pre">shutdown</span></code></a></p>
|
5300
5300
|
<div role="note" aria-label="source link">
|
5301
5301
|
<h3>This Page</h3>
|
5302
5302
|
<ul class="this-page-menu">
|
@@ -5312,9 +5312,6 @@ pairs):</p>
|
|
5312
5312
|
<input type="hidden" name="check_keywords" value="yes" />
|
5313
5313
|
<input type="hidden" name="area" value="default" />
|
5314
5314
|
</form>
|
5315
|
-
<p class="searchtip" style="font-size: 90%">
|
5316
|
-
Enter search terms or a module, class or function name.
|
5317
|
-
</p>
|
5318
5315
|
</div>
|
5319
5316
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
5320
5317
|
</div>
|
@@ -5328,12 +5325,12 @@ pairs):</p>
|
|
5328
5325
|
<a href="../../genindex.html" title="General Index"
|
5329
5326
|
>index</a></li>
|
5330
5327
|
<li class="right" >
|
5331
|
-
<a href="shutdown.html" title="7.3.
|
5328
|
+
<a href="shutdown.html" title="7.3.53. shutdown"
|
5332
5329
|
>next</a> |</li>
|
5333
5330
|
<li class="right" >
|
5334
|
-
<a href="schema.html" title="7.3.
|
5331
|
+
<a href="schema.html" title="7.3.51. schema"
|
5335
5332
|
>previous</a> |</li>
|
5336
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
5333
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2 documentation</a> »</li>
|
5337
5334
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. Reference manual</a> »</li>
|
5338
5335
|
<li class="nav-item nav-item-2"><a href="../command.html" >7.3. Command</a> »</li>
|
5339
5336
|
</ul>
|