rroonga 6.0.0-x86-mingw32 → 6.0.2-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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/include/groonga/groonga.h +1 -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/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.rb +5 -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/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/command.txt +1 -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/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/build.html +6 -9
- 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/development.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/documentation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -18
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/development.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/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/install.html +8 -12
- data/vendor/local/share/doc/groonga/en/html/limitations.html +10 -12
- 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/news.html +510 -303
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +20 -23
- 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/api.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/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/command.html +66 -68
- 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/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/executables.html +7 -10
- 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/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/grn_expr.html +18 -21
- 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/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/operations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/output.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/query_expanders.html +6 -9
- 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/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/suggest.html +6 -9
- 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/reference.html +68 -70
- 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/gqtp.html +12 -15
- 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/http.html +10 -13
- 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/server.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/spec.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/troubleshooting.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/en/html/tutorial.html +6 -9
- 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/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/command.txt +1 -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/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/build.html +6 -9
- 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/development.html +6 -9
- 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/documentation.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +20 -21
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/development.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/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/install.html +8 -12
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +9 -12
- 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/news.html +479 -282
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +17 -20
- 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/api.html +6 -9
- 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/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/command.html +66 -68
- 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/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/executables.html +8 -11
- 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/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/grn_expr.html +12 -15
- 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/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/operations.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/output.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/query_expanders.html +6 -9
- 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/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/suggest.html +6 -9
- 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/reference.html +69 -71
- 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/gqtp.html +12 -15
- 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/http.html +10 -13
- 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/server.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/spec.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/troubleshooting.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
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -9
- 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="ja">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.14.15. sub_filter — Groonga
|
10
|
+
<title>7.14.15. sub_filter — Groonga v6.0.2ドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga
|
29
|
+
<link rel="top" title="Groonga v6.0.2ドキュメント" href="../../index.html" />
|
30
30
|
<link rel="up" title="7.14. 関数" href="../function.html" />
|
31
31
|
<link rel="next" title="7.14.16. vector_size" href="vector_size.html" />
|
32
32
|
<link rel="prev" title="7.14.14. snippet_html" href="snippet_html.html" />
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<li class="right" >
|
62
62
|
<a href="snippet_html.html" title="7.14.14. snippet_html"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
64
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
65
65
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
66
66
|
<li class="nav-item nav-item-2"><a href="../function.html" accesskey="U">7.14. 関数</a> »</li>
|
67
67
|
</ul>
|
@@ -77,7 +77,7 @@
|
|
77
77
|
<div class="section" id="summary">
|
78
78
|
<h2>7.14.15.1. 概要<a class="headerlink" href="#summary" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
79
79
|
<p><code class="docutils literal"><span class="pre">sub_filter</span></code> は <code class="docutils literal"><span class="pre">filter_string</span></code> を <code class="docutils literal"><span class="pre">scope</span></code> のコンテキストで評価します。</p>
|
80
|
-
<p><code class="docutils literal"><span class="pre">sub_filter</span></code> は <a class="reference internal" href="../commands/select.html"><
|
80
|
+
<p><code class="docutils literal"><span class="pre">sub_filter</span></code> は <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> コマンドの <code class="docutils literal"><span class="pre">--filter</span></code> 内でのみ指定できます。</p>
|
81
81
|
</div>
|
82
82
|
<div class="section" id="syntax">
|
83
83
|
<h2>7.14.15.2. 構文<a class="headerlink" href="#syntax" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
@@ -217,11 +217,11 @@ load --table Blog
|
|
217
217
|
<p><code class="docutils literal"><span class="pre">select</span></code> コマンドの <code class="docutils literal"><span class="pre">table</span></code> パラメーターで指定したテーブルが持つカラムを指定します。このカラムには制限があります。制限については後述します。 <code class="docutils literal"><span class="pre">filter_string</span></code> はこのカラムの文脈で評価されます。これは、 <code class="docutils literal"><span class="pre">filter_string</span></code> は <code class="docutils literal"><span class="pre">select</span> <span class="pre">--table</span> <span class="pre">カラムの型</span> <span class="pre">--filter</span> <span class="pre">フィルター文字列</span></code> というように評価されるということです。</p>
|
218
218
|
<p>指定したカラムの型はテーブルでなければいけません。言いかえると、カラムの型は参照型でなければいけないということです。</p>
|
219
219
|
<p><code class="docutils literal"><span class="pre">カラム1.カラム2.カラム3...カラムN</span></code> という構文でカラムを数珠つなぎにできます。例えば、 <code class="docutils literal"><span class="pre">user.group.name</span></code> とできます。</p>
|
220
|
-
<p><code class="docutils literal"><span class="pre">select</span></code> コマンドの <code class="docutils literal"><span class="pre">table</span></code> 引数については <a class="reference internal" href="../commands/select.html#select-table"><span>table</span></a> を参照してください。</p>
|
220
|
+
<p><code class="docutils literal"><span class="pre">select</span></code> コマンドの <code class="docutils literal"><span class="pre">table</span></code> 引数については <a class="reference internal" href="../commands/select.html#select-table"><span class="std std-ref">table</span></a> を参照してください。</p>
|
221
221
|
</div>
|
222
222
|
<div class="section" id="filter-string">
|
223
223
|
<h3>7.14.15.4.2. <code class="docutils literal"><span class="pre">filter_string</span></code><a class="headerlink" href="#filter-string" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
224
|
-
<p><a class="reference internal" href="../grn_expr/script_syntax.html"><
|
224
|
+
<p><a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">スクリプト構文</span></a> の検索条件を指定します。これは <code class="docutils literal"><span class="pre">scope</span></code> のコンテキストで評価されます。</p>
|
225
225
|
</div>
|
226
226
|
</div>
|
227
227
|
<div class="section" id="return-value">
|
@@ -231,8 +231,8 @@ load --table Blog
|
|
231
231
|
<div class="section" id="see-also">
|
232
232
|
<h2>7.14.15.6. 参考<a class="headerlink" href="#see-also" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
233
233
|
<ul class="simple">
|
234
|
-
<li><a class="reference internal" href="../commands/select.html"><
|
235
|
-
<li><a class="reference internal" href="../grn_expr/script_syntax.html"><
|
234
|
+
<li><a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a></li>
|
235
|
+
<li><a class="reference internal" href="../grn_expr/script_syntax.html"><span class="doc">スクリプト構文</span></a></li>
|
236
236
|
</ul>
|
237
237
|
</div>
|
238
238
|
</div>
|
@@ -281,9 +281,6 @@ load --table Blog
|
|
281
281
|
<input type="hidden" name="check_keywords" value="yes" />
|
282
282
|
<input type="hidden" name="area" value="default" />
|
283
283
|
</form>
|
284
|
-
<p class="searchtip" style="font-size: 90%">
|
285
|
-
モジュール、クラス、または関数名を入力してください
|
286
|
-
</p>
|
287
284
|
</div>
|
288
285
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
289
286
|
</div>
|
@@ -302,7 +299,7 @@ load --table Blog
|
|
302
299
|
<li class="right" >
|
303
300
|
<a href="snippet_html.html" title="7.14.14. snippet_html"
|
304
301
|
>前へ</a> |</li>
|
305
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
302
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
306
303
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
307
304
|
<li class="nav-item nav-item-2"><a href="../function.html" >7.14. 関数</a> »</li>
|
308
305
|
</ul>
|
@@ -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="ja">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.14.16. vector_size — Groonga
|
10
|
+
<title>7.14.16. vector_size — Groonga v6.0.2ドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga
|
29
|
+
<link rel="top" title="Groonga v6.0.2ドキュメント" href="../../index.html" />
|
30
30
|
<link rel="up" title="7.14. 関数" href="../function.html" />
|
31
31
|
<link rel="next" title="7.15. 操作方法" href="../operations.html" />
|
32
32
|
<link rel="prev" title="7.14.15. sub_filter" href="sub_filter.html" />
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<li class="right" >
|
62
62
|
<a href="sub_filter.html" title="7.14.15. sub_filter"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
64
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
65
65
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
66
66
|
<li class="nav-item nav-item-2"><a href="../function.html" accesskey="U">7.14. 関数</a> »</li>
|
67
67
|
</ul>
|
@@ -218,9 +218,6 @@ column_create Memos tags COLUMN_VECTOR ShortText
|
|
218
218
|
<input type="hidden" name="check_keywords" value="yes" />
|
219
219
|
<input type="hidden" name="area" value="default" />
|
220
220
|
</form>
|
221
|
-
<p class="searchtip" style="font-size: 90%">
|
222
|
-
モジュール、クラス、または関数名を入力してください
|
223
|
-
</p>
|
224
221
|
</div>
|
225
222
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
226
223
|
</div>
|
@@ -239,7 +236,7 @@ column_create Memos tags COLUMN_VECTOR ShortText
|
|
239
236
|
<li class="right" >
|
240
237
|
<a href="sub_filter.html" title="7.14.15. sub_filter"
|
241
238
|
>前へ</a> |</li>
|
242
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
239
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
243
240
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
244
241
|
<li class="nav-item nav-item-2"><a href="../function.html" >7.14. 関数</a> »</li>
|
245
242
|
</ul>
|
@@ -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="ja">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.12.1. クエリー構文 — Groonga
|
10
|
+
<title>7.12.1. クエリー構文 — Groonga v6.0.2ドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga
|
29
|
+
<link rel="top" title="Groonga v6.0.2ドキュメント" href="../../index.html" />
|
30
30
|
<link rel="up" title="7.12. grn_expr" href="../grn_expr.html" />
|
31
31
|
<link rel="next" title="7.12.2. スクリプト構文" href="script_syntax.html" />
|
32
32
|
<link rel="prev" title="7.12. grn_expr" href="../grn_expr.html" />
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<li class="right" >
|
62
62
|
<a href="../grn_expr.html" title="7.12. grn_expr"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
64
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
65
65
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
66
66
|
<li class="nav-item nav-item-2"><a href="../grn_expr.html" accesskey="U">7.12. grn_expr</a> »</li>
|
67
67
|
</ul>
|
@@ -75,7 +75,7 @@
|
|
75
75
|
<div class="section" id="query-syntax">
|
76
76
|
<h1>7.12.1. クエリー構文<a class="headerlink" href="#query-syntax" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
77
77
|
<p>クエリー構文は一般的なWebの検索フォームで検索条件を指定するための構文です。Googleの検索フォームで使われている構文に似ています。例えば、 <code class="docutils literal"><span class="pre">word1</span> <span class="pre">word2</span></code> は <code class="docutils literal"><span class="pre">word1</span></code> と <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> は <code class="docutils literal"><span class="pre">word1</span></code> または <code class="docutils literal"><span class="pre">word2</span></code> のどちらかの単語を含んだレコードを検索します。</p>
|
78
|
-
<p>クエリー構文は <code class="docutils literal"><span class="pre">条件式</span></code> と <code class="docutils literal"><span class="pre">結合式</span></code> と <code class="docutils literal"><span class="pre">代入式</span></code> から成ります。通常、 <code class="docutils literal"><span class="pre">代入式</span></code> は考えなくてよいです。なぜなら、 <code class="docutils literal"><span class="pre">代入式</span></code> は <a class="reference internal" href="../commands/select.html"><
|
78
|
+
<p>クエリー構文は <code class="docutils literal"><span class="pre">条件式</span></code> と <code class="docutils literal"><span class="pre">結合式</span></code> と <code class="docutils literal"><span class="pre">代入式</span></code> から成ります。通常、 <code class="docutils literal"><span class="pre">代入式</span></code> は考えなくてよいです。なぜなら、 <code class="docutils literal"><span class="pre">代入式</span></code> は <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--query</span></code> オプションでは無効になっているからです。groongaをライブラリとして使ったときは、クエリー構文のパーサーのオプションをカスタマイズすることで <code class="docutils literal"><span class="pre">代入式</span></code> を有効にすることができます。</p>
|
79
79
|
<p><code class="docutils literal"><span class="pre">条件式</span></code> は条件を指定します。 <code class="docutils literal"><span class="pre">結合式</span></code> は1つ以上の <code class="docutils literal"><span class="pre">条件式</span></code> 、 <code class="docutils literal"><span class="pre">結合式</span></code> 、 <code class="docutils literal"><span class="pre">代入式</span></code> から成ります。 <code class="docutils literal"><span class="pre">代入式</span></code> はカラムに値を代入します。</p>
|
80
80
|
<div class="section" id="sample-data">
|
81
81
|
<h2>7.12.1.1. サンプルデータ<a class="headerlink" href="#sample-data" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
@@ -152,7 +152,7 @@ load --table Entries
|
|
152
152
|
<span id="id2"></span><h3>7.12.1.3.1. 全文検索条件<a class="headerlink" href="#full-text-search-condition" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
153
153
|
<p>構文は <code class="docutils literal"><span class="pre">keyword</span></code> です。</p>
|
154
154
|
<p><code class="docutils literal"><span class="pre">全文検索条件</span></code> はデフォルトのマッチカラムに対して全文検索するという条件を指定します。マッチカラムとは全文検索対象のカラムのことです。</p>
|
155
|
-
<p>全文検索に使うデフォルトのマッチカラムを指定する必要があります。マッチカラムは <a class="reference internal" href="../commands/select.html"><
|
155
|
+
<p>全文検索に使うデフォルトのマッチカラムを指定する必要があります。マッチカラムは <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションで指定します。デフォルトのマッチカラムを指定していない場合、この条件式は失敗します。</p>
|
156
156
|
<p>この条件式は <code class="docutils literal"><span class="pre">keyword</span></code> で全文検索をします。 <code class="docutils literal"><span class="pre">keyword</span></code> には空白を含めることはできません。 <code class="docutils literal"><span class="pre">search</span> <span class="pre">keyword</span></code> というように空白を含んでいる場合は、 <code class="docutils literal"><span class="pre">search</span></code> と <code class="docutils literal"><span class="pre">keyword</span></code> という2つの全文検索条件を指定したことになります。もし、キーワードに空白を含めたい場合は以下で説明する <code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> を使ってください。</p>
|
157
157
|
<p>以下は簡単な使用例です。</p>
|
158
158
|
<p>実行例:</p>
|
@@ -210,7 +210,7 @@ load --table Entries
|
|
210
210
|
<span id="id3"></span><h3>7.12.1.3.2. フレーズ検索条件<a class="headerlink" href="#phrase-search-condition" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
211
211
|
<p>構文は <code class="docutils literal"><span class="pre">"search</span> <span class="pre">keyword"</span></code> です。</p>
|
212
212
|
<p><code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> はデフォルトのマッチカラムに対してフレーズ検索するという条件を指定します。</p>
|
213
|
-
<p>全文検索に使うデフォルトのマッチカラムを指定する必要があります。マッチカラムは <a class="reference internal" href="../commands/select.html"><
|
213
|
+
<p>全文検索に使うデフォルトのマッチカラムを指定する必要があります。マッチカラムは <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションで指定します。デフォルトのマッチカラムを指定していない場合、この条件式は失敗します。</p>
|
214
214
|
<p>この条件式は <code class="docutils literal"><span class="pre">search</span> <span class="pre">keyword</span></code> でフレーズ検索をします。フレーズ検索は <code class="docutils literal"><span class="pre">search</span></code> と <code class="docutils literal"><span class="pre">keyword</span></code> がこの順番で隣接して含まれているレコードにマッチします。つまり、 <code class="docutils literal"><span class="pre">Put</span> <span class="pre">a</span> <span class="pre">search</span> <span class="pre">keyword</span> <span class="pre">in</span> <span class="pre">the</span> <span class="pre">form</span></code> にはマッチしますが、 <code class="docutils literal"><span class="pre">Search</span> <span class="pre">by</span> <span class="pre">the</span> <span class="pre">keyword</span></code> や <code class="docutils literal"><span class="pre">There</span> <span class="pre">is</span> <span class="pre">a</span> <span class="pre">keyword.</span> <span class="pre">Search</span> <span class="pre">by</span> <span class="pre">it!</span></code> にはマッチしません。</p>
|
215
215
|
<p>以下は簡単な使用例です。</p>
|
216
216
|
<p>実行例:</p>
|
@@ -261,7 +261,7 @@ load --table Entries
|
|
261
261
|
<div class="section" id="full-text-search-condition-with-explicit-match-column">
|
262
262
|
<h3>7.12.1.3.3. 全文検索条件(マッチカラム指定あり)<a class="headerlink" href="#full-text-search-condition-with-explicit-match-column" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
263
263
|
<p>構文は <code class="docutils literal"><span class="pre">column:@keyword</span></code> です。</p>
|
264
|
-
<p>これは <code class="docutils literal"><span class="pre">全文検索条件</span></code> と似ていますが、デフォルトのマッチカラムは必要ありません。全文検索用のマッチカラムは <a class="reference internal" href="../commands/select.html"><
|
264
|
+
<p>これは <code class="docutils literal"><span class="pre">全文検索条件</span></code> と似ていますが、デフォルトのマッチカラムは必要ありません。全文検索用のマッチカラムは <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションではなく <code class="docutils literal"><span class="pre">column:</span></code> で指定します。</p>
|
265
265
|
<p>この条件式は異なったカラムに対して複数の全文検索をしたい場合に便利です。 <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションで指定するデフォルトのマッチカラムは複数回指定することができません。2つめのマッチカラムを指定するためにはこの条件式を使う必要があります。</p>
|
266
266
|
<p><code class="docutils literal"><span class="pre">全文検索条件</span></code> と <code class="docutils literal"><span class="pre">全文検索条件(マッチカラム指定あり)</span></code> の違いは高度なマッチカラムをサポートしているかどうかです。 <code class="docutils literal"><span class="pre">全文検索条件</span></code> は高度なマッチカラムをサポートしていますが、 <code class="docutils literal"><span class="pre">全文検索条件(マッチカラム指定あり)</span></code> はサポートしていません。高度なマッチカラムには以下の機能があります:</p>
|
267
267
|
<blockquote>
|
@@ -274,7 +274,7 @@ load --table Entries
|
|
274
274
|
</li>
|
275
275
|
</ul>
|
276
276
|
</div></blockquote>
|
277
|
-
<p>これらについては <a class="reference internal" href="../commands/select.html"><
|
277
|
+
<p>これらについては <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションを参照してください。</p>
|
278
278
|
<p>以下は簡単な使用例です。</p>
|
279
279
|
<p>実行例:</p>
|
280
280
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --query content:@fast
|
@@ -329,7 +329,7 @@ load --table Entries
|
|
329
329
|
<div class="section" id="phrase-search-condition-with-explicit-match-column">
|
330
330
|
<h3>7.12.1.3.4. フレーズ検索条件(マッチカラム指定あり)<a class="headerlink" href="#phrase-search-condition-with-explicit-match-column" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
331
331
|
<p>構文は <code class="docutils literal"><span class="pre">column:@"search</span> <span class="pre">keyword"</span></code> です。</p>
|
332
|
-
<p>これは <code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> に似ていますが、デフォルトのマッチカラムは必要ありません。フレーズ検索用のマッチカラムは <a class="reference internal" href="../commands/select.html"><
|
332
|
+
<p>これは <code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> に似ていますが、デフォルトのマッチカラムは必要ありません。フレーズ検索用のマッチカラムは <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--match_columns</span></code> オプションではなく <code class="docutils literal"><span class="pre">column:</span></code> で指定します。</p>
|
333
333
|
<p><code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> と <code class="docutils literal"><span class="pre">フレーズ検索条件(マッチカラム指定あり)</span></code> は <code class="docutils literal"><span class="pre">全文検索条件</span></code> と <code class="docutils literal"><span class="pre">全文検索条件(マッチカラム指定あり)</span></code> の関係と似ています。 <code class="docutils literal"><span class="pre">フレーズ検索条件</span></code> は高度なマッチカラムをサポートしていますが、 <code class="docutils literal"><span class="pre">フレーズ検索条件(マッチカラム指定あり)</span></code> はサポートしていません。高度なマッチカラムについては <code class="docutils literal"><span class="pre">全文検索条件(マッチカラム指定あり)</span></code> を参照してください。</p>
|
334
334
|
<p>以下は簡単な使用例です。</p>
|
335
335
|
<p>実行例:</p>
|
@@ -864,7 +864,7 @@ select Titles --query 'content:$んが'
|
|
864
864
|
<p><span class="versionmodified">バージョン 5.0.1 で追加.</span></p>
|
865
865
|
</div>
|
866
866
|
<p>構文は <code class="docutils literal"><span class="pre">column:~pattern</span></code> です。</p>
|
867
|
-
<p><code class="docutils literal"><span class="pre">column</span></code> の値が <code class="docutils literal"><span class="pre">pattern</span></code> にマッチするレコードにマッチします。 <code class="docutils literal"><span class="pre">pattern</span></code> は正しい <a class="reference internal" href="../regular_expression.html"><
|
867
|
+
<p><code class="docutils literal"><span class="pre">column</span></code> の値が <code class="docutils literal"><span class="pre">pattern</span></code> にマッチするレコードにマッチします。 <code class="docutils literal"><span class="pre">pattern</span></code> は正しい <a class="reference internal" href="../regular_expression.html"><span class="doc">正規表現</span></a> でなければいけません。</p>
|
868
868
|
<p>以下の例はパターンとして <code class="docutils literal"><span class="pre">.roonga</span></code> を使っています。このパターンは <code class="docutils literal"><span class="pre">Groonga</span></code> 、 <code class="docutils literal"><span class="pre">Mroonga</span></code> といった文字列にマッチします。</p>
|
869
869
|
<p>実行例:</p>
|
870
870
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --query content:~.roonga
|
@@ -915,7 +915,7 @@ select Titles --query 'content:$んが'
|
|
915
915
|
</pre></div>
|
916
916
|
</div>
|
917
917
|
<p>多くの場合、各レコードに対して順に正規表現を評価します。そのため、多くのレコードがある場合は遅くなるかもしれません。</p>
|
918
|
-
<p>いくつかのケースでは、Groongaはインデックスを使って正規表現を評価します。これはとても高速です。詳細は <a class="reference internal" href="../regular_expression.html"><
|
918
|
+
<p>いくつかのケースでは、Groongaはインデックスを使って正規表現を評価します。これはとても高速です。詳細は <a class="reference internal" href="../regular_expression.html"><span class="doc">正規表現</span></a> を参照してください。</p>
|
919
919
|
</div>
|
920
920
|
</div>
|
921
921
|
<div class="section" id="combined-expression">
|
@@ -1183,11 +1183,11 @@ select Entries --query 'n_likes:<5 (content:@senna OR content:@fast)'
|
|
1183
1183
|
</div>
|
1184
1184
|
<div class="section" id="assignment-expression">
|
1185
1185
|
<h2>7.12.1.5. 代入式<a class="headerlink" href="#assignment-expression" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1186
|
-
<p>このセクションは高度なユーザー向けです。それは、代入式は <a class="reference internal" href="../commands/select.html"><
|
1187
|
-
<p>クエリー構文における代入式にはいくつか制限があります。代入にはクエリー構文の代りに <a class="reference internal" href="script_syntax.html"><
|
1186
|
+
<p>このセクションは高度なユーザー向けです。それは、代入式は <a class="reference internal" href="../commands/select.html"><span class="doc">select</span></a> の <code class="docutils literal"><span class="pre">--query</span></code> オプションではデフォルトでは無効になっているからです。代入式を有効にするには <code class="docutils literal"><span class="pre">--query_flags</span></code> オプションに <code class="docutils literal"><span class="pre">ALLOW_COLUMN|ALLOW_UPDATE</span></code> を指定してください。</p>
|
1187
|
+
<p>クエリー構文における代入式にはいくつか制限があります。代入にはクエリー構文の代りに <a class="reference internal" href="script_syntax.html"><span class="doc">スクリプト構文</span></a> を使ってください。</p>
|
1188
1188
|
<p>代入式の構文は1つだけです。 <code class="docutils literal"><span class="pre">column:=value</span></code> となります。</p>
|
1189
1189
|
<p><code class="docutils literal"><span class="pre">value</span></code> は <code class="docutils literal"><span class="pre">column</span></code> に代入されます。 <code class="docutils literal"><span class="pre">value</span></code> は常にクエリー構文では文字列として扱われます。 <code class="docutils literal"><span class="pre">value</span></code> は <code class="docutils literal"><span class="pre">column</span></code> の型へと自動的にキャストされます。 キャストにはいくつか制限があります。例えば <code class="docutils literal"><span class="pre">true</span></code> や <code class="docutils literal"><span class="pre">false</span></code> といった真偽値のリテラルを <code class="docutils literal"><span class="pre">Bool</span></code> 型のカラムに使用することができません。 <code class="docutils literal"><span class="pre">false</span></code> については空文字列を使う必要がありますが、クエリー構文は <code class="docutils literal"><span class="pre">column:=</span></code> 構文をサポートしていません。</p>
|
1190
|
-
<p>キャストについては <a class="reference internal" href="../cast.html"><
|
1190
|
+
<p>キャストについては <a class="reference internal" href="../cast.html"><span class="doc">Cast</span></a> を参照してください。</p>
|
1191
1191
|
</div>
|
1192
1192
|
</div>
|
1193
1193
|
|
@@ -1251,9 +1251,6 @@ select Entries --query 'n_likes:<5 (content:@senna OR content:@fast)'
|
|
1251
1251
|
<input type="hidden" name="check_keywords" value="yes" />
|
1252
1252
|
<input type="hidden" name="area" value="default" />
|
1253
1253
|
</form>
|
1254
|
-
<p class="searchtip" style="font-size: 90%">
|
1255
|
-
モジュール、クラス、または関数名を入力してください
|
1256
|
-
</p>
|
1257
1254
|
</div>
|
1258
1255
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
1259
1256
|
</div>
|
@@ -1272,7 +1269,7 @@ select Entries --query 'n_likes:<5 (content:@senna OR content:@fast)'
|
|
1272
1269
|
<li class="right" >
|
1273
1270
|
<a href="../grn_expr.html" title="7.12. grn_expr"
|
1274
1271
|
>前へ</a> |</li>
|
1275
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
1272
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
1276
1273
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
1277
1274
|
<li class="nav-item nav-item-2"><a href="../grn_expr.html" >7.12. grn_expr</a> »</li>
|
1278
1275
|
</ul>
|
@@ -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="ja">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>7.12.2. スクリプト構文 — Groonga
|
10
|
+
<title>7.12.2. スクリプト構文 — Groonga v6.0.2ドキュメント</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
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="../../_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="../../_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga
|
29
|
+
<link rel="top" title="Groonga v6.0.2ドキュメント" href="../../index.html" />
|
30
30
|
<link rel="up" title="7.12. grn_expr" href="../grn_expr.html" />
|
31
31
|
<link rel="next" title="7.13. 正規表現" href="../regular_expression.html" />
|
32
32
|
<link rel="prev" title="7.12.1. クエリー構文" href="query_syntax.html" />
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<li class="right" >
|
62
62
|
<a href="query_syntax.html" title="7.12.1. クエリー構文"
|
63
63
|
accesskey="P">前へ</a> |</li>
|
64
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
64
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
65
65
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
66
66
|
<li class="nav-item nav-item-2"><a href="../grn_expr.html" accesskey="U">7.12. grn_expr</a> »</li>
|
67
67
|
</ul>
|
@@ -74,7 +74,7 @@
|
|
74
74
|
|
75
75
|
<div class="section" id="script-syntax">
|
76
76
|
<h1>7.12.2. スクリプト構文<a class="headerlink" href="#script-syntax" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
77
|
-
<p>スクリプト構文は複雑な検索条件を指定するための構文です。この構文はECMAScriptに似ています。例えば、 <code class="docutils literal"><span class="pre">_key</span> <span class="pre">==</span> <span class="pre">"book"</span></code> は <code class="docutils literal"><span class="pre">_key</span></code> の値が <code class="docutils literal"><span class="pre">"book"</span></code> のレコードを検索するという意味です。 <a class="reference internal" href="query_syntax.html"><
|
77
|
+
<p>スクリプト構文は複雑な検索条件を指定するための構文です。この構文はECMAScriptに似ています。例えば、 <code class="docutils literal"><span class="pre">_key</span> <span class="pre">==</span> <span class="pre">"book"</span></code> は <code class="docutils literal"><span class="pre">_key</span></code> の値が <code class="docutils literal"><span class="pre">"book"</span></code> のレコードを検索するという意味です。 <a class="reference internal" href="query_syntax.html"><span class="doc">クエリー構文</span></a> ではすべての値は文字列でしたが、スクリプト構文では値に型があります。例えば、 <code class="docutils literal"><span class="pre">"book"</span></code> は文字列で <code class="docutils literal"><span class="pre">1</span></code> は整数で、 <code class="docutils literal"><span class="pre">TokenBigram</span></code> は <code class="docutils literal"><span class="pre">TokenBigram</span></code> という名前のオブジェクトです。</p>
|
78
78
|
<p>スクリプト構文はECMAScriptの構文と完全に互換性があるわけではありません。例えば、 <code class="docutils literal"><span class="pre">if</span></code> 制御文や <code class="docutils literal"><span class="pre">for</span></code> 繰り返し文や変数定義文といった文をサポートしていません。関数定義もサポートしていません。しかし、独自の演算子を追加しています。独自の演算子はECMAScriptの構文を説明した後に説明します。</p>
|
79
79
|
<div class="section" id="security">
|
80
80
|
<span id="script-syntax-security"></span><h2>7.12.2.1. セキュリティー<a class="headerlink" href="#security" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
@@ -89,11 +89,11 @@ select_options = {
|
|
89
89
|
groonga_client.select(select_options)
|
90
90
|
</pre></div>
|
91
91
|
</div>
|
92
|
-
<p><code class="docutils literal"><span class="pre">user_input</span></code> はユーザーからの入力です。入力が <code class="docutils literal"><span class="pre">query</span></code> だった場合は構築された <a class="reference internal" href="../commands/select.html#select-filter"><span>filter</span></a> 引数は次のようになります。:</p>
|
92
|
+
<p><code class="docutils literal"><span class="pre">user_input</span></code> はユーザーからの入力です。入力が <code class="docutils literal"><span class="pre">query</span></code> だった場合は構築された <a class="reference internal" href="../commands/select.html#select-filter"><span class="std std-ref">filter</span></a> 引数は次のようになります。:</p>
|
93
93
|
<div class="highlight-none"><div class="highlight"><pre><span></span>column @ "query"
|
94
94
|
</pre></div>
|
95
95
|
</div>
|
96
|
-
<p>もし、入力が <code class="docutils literal"><span class="pre">x"</span> <span class="pre">||</span> <span class="pre">true</span> <span class="pre">||</span> <span class="pre">"</span></code> だった場合は構築された <a class="reference internal" href="../commands/select.html#select-filter"><span>filter</span></a> 引数は次のようになります。:</p>
|
96
|
+
<p>もし、入力が <code class="docutils literal"><span class="pre">x"</span> <span class="pre">||</span> <span class="pre">true</span> <span class="pre">||</span> <span class="pre">"</span></code> だった場合は構築された <a class="reference internal" href="../commands/select.html#select-filter"><span class="std std-ref">filter</span></a> 引数は次のようになります。:</p>
|
97
97
|
<div class="highlight-none"><div class="highlight"><pre><span></span>column @ "x" || true || ""
|
98
98
|
</pre></div>
|
99
99
|
</div>
|
@@ -106,7 +106,7 @@ groonga_client.select(select_options)
|
|
106
106
|
</li>
|
107
107
|
<li><p class="first">負の値: <code class="docutils literal"><span class="pre">false</span></code> に変換してください。</p>
|
108
108
|
</li>
|
109
|
-
<li><p class="first">数値: <a class="reference internal" href="#script-syntax-literal-integer"><span>整数</span></a> または <a class="reference internal" href="#script-syntax-literal-float"><span>浮動小数点数</span></a> に変換してください。例えば、 <code class="docutils literal"><span class="pre">1.2</span></code> 、 <code class="docutils literal"><span class="pre">-10</span></code> 、 <code class="docutils literal"><span class="pre">314e-2</span></code> といった具合です。</p>
|
109
|
+
<li><p class="first">数値: <a class="reference internal" href="#script-syntax-literal-integer"><span class="std std-ref">整数</span></a> または <a class="reference internal" href="#script-syntax-literal-float"><span class="std std-ref">浮動小数点数</span></a> に変換してください。例えば、 <code class="docutils literal"><span class="pre">1.2</span></code> 、 <code class="docutils literal"><span class="pre">-10</span></code> 、 <code class="docutils literal"><span class="pre">314e-2</span></code> といった具合です。</p>
|
110
110
|
</li>
|
111
111
|
<li><p class="first">文字列:文字列中の <code class="docutils literal"><span class="pre">"</span></code> を <code class="docutils literal"><span class="pre">\"</span></code> で、 <code class="docutils literal"><span class="pre">\</span></code> を <code class="docutils literal"><span class="pre">\\</span></code> で置換してください。その後、置換した文字列を <code class="docutils literal"><span class="pre">"</span></code> で囲んでください。例えば、 <code class="docutils literal"><span class="pre">double</span> <span class="pre">"</span> <span class="pre">quote</span> <span class="pre">and</span> <span class="pre">back</span> <span class="pre">\</span> <span class="pre">slash</span></code> は <code class="docutils literal"><span class="pre">"double</span> <span class="pre">\"</span> <span class="pre">quote</span> <span class="pre">and</span> <span class="pre">back</span> <span class="pre">\\</span> <span class="pre">slash"</span></code> に変換します。</p>
|
112
112
|
</li>
|
@@ -168,7 +168,7 @@ load --table Entries
|
|
168
168
|
<div class="section" id="string">
|
169
169
|
<span id="script-syntax-literal-string"></span><h3>7.12.2.3.3. 文字列<a class="headerlink" href="#string" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
170
170
|
<p>文字列リテラルは <code class="docutils literal"><span class="pre">"..."</span></code> です。リテラル中の <code class="docutils literal"><span class="pre">"</span></code> は <code class="docutils literal"><span class="pre">\"</span></code> というように <code class="docutils literal"><span class="pre">\</span></code> を前につけてエスケープします。例えば、 <code class="docutils literal"><span class="pre">"Say</span> <span class="pre">\"Hello!\"."</span></code> は <code class="docutils literal"><span class="pre">Say</span> <span class="pre">"Hello!".</span></code> という文字列のリテラルです。</p>
|
171
|
-
<p>文字列エンコーディングはデータベースのエンコーディングと合わせなければいけません。デフォルトのエンコーディングはUTF-8です。これは configure の <code class="docutils literal"><span class="pre">--with-default-encoding</span></code> オプションや <a class="reference internal" href="../executables/groonga.html"><
|
171
|
+
<p>文字列エンコーディングはデータベースのエンコーディングと合わせなければいけません。デフォルトのエンコーディングはUTF-8です。これは configure の <code class="docutils literal"><span class="pre">--with-default-encoding</span></code> オプションや <a class="reference internal" href="../executables/groonga.html"><span class="doc">groonga 実行ファイル</span></a> の <code class="docutils literal"><span class="pre">--encodiong</span></code> などで変更できます。</p>
|
172
172
|
</div>
|
173
173
|
<div class="section" id="boolean">
|
174
174
|
<span id="script-syntax-literal-boolean"></span><h3>7.12.2.3.4. 真偽値<a class="headerlink" href="#boolean" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
@@ -386,7 +386,7 @@ select Entries --filter 'n_likes < 5 && (content @ "senna&qu
|
|
386
386
|
<h2>7.12.2.6. 関数呼び出し<a class="headerlink" href="#function-call" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
387
387
|
<p>構文は <code class="docutils literal"><span class="pre">name(arugment1,</span> <span class="pre">argument2,</span> <span class="pre">...)</span></code> です。</p>
|
388
388
|
<p><code class="docutils literal"><span class="pre">name(argument1,</span> <span class="pre">argument2,</span> <span class="pre">...)</span></code> は <code class="docutils literal"><span class="pre">name</span></code> という関数を引数 <code class="docutils literal"><span class="pre">argument1</span></code>, <code class="docutils literal"><span class="pre">argument2</span></code>, <code class="docutils literal"><span class="pre">...</span></code> で呼び出します。</p>
|
389
|
-
<p>利用可能な関数の一覧は <a class="reference internal" href="../function.html"><
|
389
|
+
<p>利用可能な関数の一覧は <a class="reference internal" href="../function.html"><span class="doc">関数</span></a> を参照してください。</p>
|
390
390
|
<p>以下は簡単な使用例です。</p>
|
391
391
|
<p>実行例:</p>
|
392
392
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --filter 'edit_distance(_key, "Groonga") <= 1'
|
@@ -436,7 +436,7 @@ select Entries --filter 'n_likes < 5 && (content @ "senna&qu
|
|
436
436
|
# ]
|
437
437
|
</pre></div>
|
438
438
|
</div>
|
439
|
-
<p>この式は <a class="reference internal" href="../functions/edit_distance.html"><
|
439
|
+
<p>この式は <a class="reference internal" href="../functions/edit_distance.html"><span class="doc">edit_distance</span></a> を使っています。この式は <code class="docutils literal"><span class="pre">_key</span></code> カラムの値が <code class="docutils literal"><span class="pre">"Groonga"</span></code> に似ているレコードにマッチします。 <code class="docutils literal"><span class="pre">"Groonga"</span></code> との類似度は編集距離で計算します。編集距離が1文字以下なら似ているとします。この場合は <code class="docutils literal"><span class="pre">"Groonga"</span></code> と <code class="docutils literal"><span class="pre">"Mroonga"</span></code> が似ている値です。</p>
|
440
440
|
</div>
|
441
441
|
<div class="section" id="basic-operators">
|
442
442
|
<h2>7.12.2.7. 基本的な演算子<a class="headerlink" href="#basic-operators" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
@@ -1961,7 +1961,7 @@ select Entries --filter 'n_likes < 5 && (content @ "senna&qu
|
|
1961
1961
|
<div class="section" id="bitwise-xor-assignment-operator">
|
1962
1962
|
<h3>7.12.2.8.11. ビット排他的論理和代入演算子<a class="headerlink" href="#bitwise-xor-assignment-operator" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1963
1963
|
<p>構文は <code class="docutils literal"><span class="pre">column1</span> <span class="pre">^=</span> <span class="pre">column2</span></code> です。</p>
|
1964
|
-
<p>この演算子は <code class="docutils literal"><span class="pre">column1</span></code> に <code class="docutils literal"><span class="pre">column2</span></code>
|
1964
|
+
<p>この演算子は <code class="docutils literal"><span class="pre">column1</span></code> に <code class="docutils literal"><span class="pre">column2</span></code> をビット論理和代入演算する。</p>
|
1965
1965
|
<p>実行例:</p>
|
1966
1966
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --output_columns _key,n_likes,_score --filter true --scorer '_score ^= n_likes'
|
1967
1967
|
# [
|
@@ -2031,7 +2031,7 @@ select Entries --filter 'n_likes < 5 && (content @ "senna&qu
|
|
2031
2031
|
<span id="script-syntax-match-operator"></span><h3>7.12.2.9.1. マッチ演算子<a class="headerlink" href="#match-operator" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
2032
2032
|
<p>構文は <code class="docutils literal"><span class="pre">column</span> <span class="pre">@</span> <span class="pre">value</span></code> です。</p>
|
2033
2033
|
<p>この演算子は <code class="docutils literal"><span class="pre">column</span></code> の転置インデックスを使って <code class="docutils literal"><span class="pre">value</span></code> を検索します。普通は全文検索をしますが、タグ検索もできます。これは、タグ検索も転置インデックスを使って実現しているからです。</p>
|
2034
|
-
<p><a class="reference internal" href="query_syntax.html"><
|
2034
|
+
<p><a class="reference internal" href="query_syntax.html"><span class="doc">クエリー構文</span></a> はデフォルトでこの演算子を使っています。</p>
|
2035
2035
|
<p>以下は簡単な使用例です。</p>
|
2036
2036
|
<p>実行例:</p>
|
2037
2037
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --filter 'content @ "fast"' --output_columns content
|
@@ -2326,7 +2326,7 @@ select Words --filter '_key *T "Groonga is the successor project to Sen
|
|
2326
2326
|
</div>
|
2327
2327
|
<p>構文は <code class="docutils literal"><span class="pre">column</span> <span class="pre">@~</span> <span class="pre">"pattern"</span></code> です。</p>
|
2328
2328
|
<p>この演算子は正規表現 <code class="docutils literal"><span class="pre">pattern</span></code> でレコードを検索します。もし、レコードの <code class="docutils literal"><span class="pre">column</span></code> の値が <code class="docutils literal"><span class="pre">pattern</span></code> にマッチしたら、そのレコードはマッチしたということです。</p>
|
2329
|
-
<p><code class="docutils literal"><span class="pre">pattern</span></code> は正規表現の構文になっていなければいけません。正規表現の構文の詳細は <a class="reference internal" href="../regular_expression.html"><
|
2329
|
+
<p><code class="docutils literal"><span class="pre">pattern</span></code> は正規表現の構文になっていなければいけません。正規表現の構文の詳細は <a class="reference internal" href="../regular_expression.html"><span class="doc">正規表現</span></a> を参照してください。</p>
|
2330
2330
|
<p>以下の例はパターンとして <code class="docutils literal"><span class="pre">.roonga</span></code> を使っています。このパターンは <code class="docutils literal"><span class="pre">Groonga</span></code> 、 <code class="docutils literal"><span class="pre">Mroonga</span></code> といった文字列にマッチします。</p>
|
2331
2331
|
<p>実行例:</p>
|
2332
2332
|
<div class="highlight-none"><div class="highlight"><pre><span></span>select Entries --filter 'content @~ ".roonga"'
|
@@ -2377,7 +2377,7 @@ select Words --filter '_key *T "Groonga is the successor project to Sen
|
|
2377
2377
|
</pre></div>
|
2378
2378
|
</div>
|
2379
2379
|
<p>多くの場合、各レコードに対して順に正規表現を評価します。そのため、多くのレコードがある場合は遅くなるかもしれません。</p>
|
2380
|
-
<p>いくつかのケースでは、Groongaはインデックスを使って正規表現を評価します。これはとても高速です。詳細は <a class="reference internal" href="../regular_expression.html"><
|
2380
|
+
<p>いくつかのケースでは、Groongaはインデックスを使って正規表現を評価します。これはとても高速です。詳細は <a class="reference internal" href="../regular_expression.html"><span class="doc">正規表現</span></a> を参照してください。</p>
|
2381
2381
|
</div>
|
2382
2382
|
</div>
|
2383
2383
|
</div>
|
@@ -2496,9 +2496,6 @@ select Words --filter '_key *T "Groonga is the successor project to Sen
|
|
2496
2496
|
<input type="hidden" name="check_keywords" value="yes" />
|
2497
2497
|
<input type="hidden" name="area" value="default" />
|
2498
2498
|
</form>
|
2499
|
-
<p class="searchtip" style="font-size: 90%">
|
2500
|
-
モジュール、クラス、または関数名を入力してください
|
2501
|
-
</p>
|
2502
2499
|
</div>
|
2503
2500
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
2504
2501
|
</div>
|
@@ -2517,7 +2514,7 @@ select Words --filter '_key *T "Groonga is the successor project to Sen
|
|
2517
2514
|
<li class="right" >
|
2518
2515
|
<a href="query_syntax.html" title="7.12.1. クエリー構文"
|
2519
2516
|
>前へ</a> |</li>
|
2520
|
-
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga
|
2517
|
+
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v6.0.2ドキュメント</a> »</li>
|
2521
2518
|
<li class="nav-item nav-item-1"><a href="../../reference.html" >7. リファレンスマニュアル</a> »</li>
|
2522
2519
|
<li class="nav-item nav-item-2"><a href="../grn_expr.html" >7.12. grn_expr</a> »</li>
|
2523
2520
|
</ul>
|