rroonga 1.3.0-x86-mingw32 → 1.3.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +33 -2
- data/benchmark/common.rb +2 -2
- data/benchmark/read-write-many-small-items.rb +71 -62
- data/benchmark/write-many-small-items.rb +61 -53
- data/ext/groonga/rb-grn-context.c +23 -5
- data/ext/groonga/rb-grn-index-column.c +2 -6
- data/ext/groonga/rb-grn-operator.c +31 -1
- data/ext/groonga/rb-grn-variable-size-column.c +77 -1
- data/ext/groonga/rb-grn.h +2 -11
- data/ext/groonga/rb-groonga.c +1 -2
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/command.rb +169 -0
- data/lib/groonga/context.rb +4 -124
- data/lib/groonga/dumper.rb +10 -8
- data/lib/groonga/record.rb +7 -0
- data/lib/groonga/schema.rb +98 -7
- data/rroonga-build.rb +3 -3
- data/test/{test-context-select.rb → test-command-select.rb} +3 -3
- data/test/test-record.rb +18 -1
- data/test/test-schema-dumper.rb +48 -0
- data/test/test-schema-type.rb +35 -0
- data/test/test-schema.rb +81 -11
- data/test/test-table-select.rb +49 -38
- data/test/test-variable-size-column.rb +30 -0
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga/plugin.h +3 -2
- data/vendor/local/include/groonga/groonga.h +106 -78
- 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/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +5 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +42 -32
- data/vendor/local/share/doc/groonga/en/html/_sources/commands/delete.txt +5 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/commands/table_create.txt +5 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/community.txt +4 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution.txt +8 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/functions/geo_distance.txt +42 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/functions/geo_in_circle.txt +26 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/index.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/install.txt +102 -27
- data/vendor/local/share/doc/groonga/en/html/_sources/limitations.txt +10 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +130 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/output.txt +164 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/suggest.txt +0 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +1 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +95 -116
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +1 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +1 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +1 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +5 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/type.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +13 -1
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +5 -5
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +11 -7
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +60 -52
- data/vendor/local/share/doc/groonga/en/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/delete.html +38 -35
- data/vendor/local/share/doc/groonga/en/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/select.html +38 -38
- data/vendor/local/share/doc/groonga/en/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/suggest.html +36 -36
- data/vendor/local/share/doc/groonga/en/html/commands/table_create.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/en/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/en/html/community.html +14 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/contribution.html +15 -13
- data/vendor/local/share/doc/groonga/en/html/executables/grnslap.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/executables/grntest.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-http.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/executables/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/executables.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/expr.html +25 -25
- data/vendor/local/share/doc/groonga/en/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +71 -36
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html +53 -33
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/en/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/en/html/functions.html +22 -22
- data/vendor/local/share/doc/groonga/en/html/genindex.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/index.html +92 -87
- data/vendor/local/share/doc/groonga/en/html/install.html +109 -40
- data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -19
- data/vendor/local/share/doc/groonga/en/html/log.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/news.html +233 -112
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/output.html +302 -0
- data/vendor/local/share/doc/groonga/en/html/pseudo_column.html +21 -21
- data/vendor/local/share/doc/groonga/en/html/reference.html +59 -55
- 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/spec/search.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/spec.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/suggest.html +7 -12
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +23 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +124 -164
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/type.html +31 -31
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +42 -32
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/delete.txt +5 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/table_create.txt +5 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/community.txt +4 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution.txt +8 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_distance.txt +42 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/functions/geo_in_circle.txt +26 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/index.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/install.txt +102 -27
- data/vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt +10 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +130 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/output.txt +164 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/suggest.txt +0 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +1 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +95 -116
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +1 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +1 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +1 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +5 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/type.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +13 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +11 -7
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +55 -47
- data/vendor/local/share/doc/groonga/ja/html/command_version.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/check.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/clearlock.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_create.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/column_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/define_selector.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/defrag.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/delete.html +38 -35
- data/vendor/local/share/doc/groonga/ja/html/commands/dump.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/load.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_level.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_put.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/commands/quit.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/select.html +38 -38
- data/vendor/local/share/doc/groonga/ja/html/commands/shutdown.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/commands/status.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/suggest.html +36 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/table_create.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/commands/table_list.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/table_remove.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands/view_add.html +34 -34
- data/vendor/local/share/doc/groonga/ja/html/commands.html +41 -41
- data/vendor/local/share/doc/groonga/ja/html/community.html +10 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/executables/grnslap.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/executables/grntest.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/executables.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/expr.html +25 -25
- data/vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +71 -36
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html +53 -33
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions/now.html +30 -30
- data/vendor/local/share/doc/groonga/ja/html/functions/rand.html +32 -32
- data/vendor/local/share/doc/groonga/ja/html/functions.html +22 -22
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/index.html +84 -79
- data/vendor/local/share/doc/groonga/ja/html/install.html +92 -16
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +13 -13
- data/vendor/local/share/doc/groonga/ja/html/log.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/news.html +202 -99
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/output.html +287 -0
- data/vendor/local/share/doc/groonga/ja/html/pseudo_column.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/reference.html +59 -55
- 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/spec/search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/spec.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +7 -11
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +20 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +93 -115
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +8 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +7 -7
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -21
- data/vendor/local/share/doc/groonga/ja/html/type.html +31 -31
- data/vendor/local/share/doc/groonga/source/characteristic.txt +42 -32
- data/vendor/local/share/doc/groonga/source/commands/delete.txt +5 -1
- data/vendor/local/share/doc/groonga/source/commands/table_create.txt +5 -2
- data/vendor/local/share/doc/groonga/source/community.txt +4 -3
- data/vendor/local/share/doc/groonga/source/contribution.txt +8 -6
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-1.log +8 -8
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-2.log +4 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/data-3.log +4 -4
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-1.log +3 -15
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-2.log +2 -7
- data/vendor/local/share/doc/groonga/source/example/tutorial/introduction-3.log +2 -7
- data/vendor/local/share/doc/groonga/source/functions/geo_distance.txt +42 -3
- data/vendor/local/share/doc/groonga/source/functions/geo_in_circle.txt +26 -1
- data/vendor/local/share/doc/groonga/source/index.txt +2 -2
- data/vendor/local/share/doc/groonga/source/install.txt +102 -27
- data/vendor/local/share/doc/groonga/source/limitations.txt +10 -10
- data/vendor/local/share/doc/groonga/source/news.txt +130 -21
- data/vendor/local/share/doc/groonga/source/output.txt +164 -0
- data/vendor/local/share/doc/groonga/source/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/source/suggest.txt +0 -5
- data/vendor/local/share/doc/groonga/source/tutorial/data.txt +6 -4
- data/vendor/local/share/doc/groonga/source/tutorial/drilldown.txt +1 -3
- data/vendor/local/share/doc/groonga/source/tutorial/index.txt +2 -1
- data/vendor/local/share/doc/groonga/source/tutorial/introduction.txt +95 -116
- data/vendor/local/share/doc/groonga/source/tutorial/match_columns.txt +1 -4
- data/vendor/local/share/doc/groonga/source/tutorial/micro_blog.txt +1 -4
- data/vendor/local/share/doc/groonga/source/tutorial/network.txt +3 -0
- data/vendor/local/share/doc/groonga/source/tutorial/patricia_trie.txt +1 -2
- data/vendor/local/share/doc/groonga/source/tutorial/query_expansion.txt +5 -0
- data/vendor/local/share/doc/groonga/source/tutorial/search.txt +3 -0
- data/vendor/local/share/doc/groonga/source/tutorial.txt +2 -2
- data/vendor/local/share/doc/groonga/source/type.txt +3 -3
- data/vendor/local/share/groonga/examples/dictionary/html/js/dictionary.js +1 -0
- data/vendor/local/share/groonga/html/admin/index.html +40 -0
- data/vendor/local/share/groonga/html/admin/js/jquery.flot-0.7.min.js +6 -0
- data/vendor/local/share/groonga/html/admin/js/jquery.flot.license.txt +22 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +560 -138
- data/vendor/local/share/man/man1/groonga.1 +637 -223
- metadata +887 -898
- data/ext/groonga/Makefile +0 -184
- data/ext/groonga/rb-grn-query.c +0 -260
- data/test/test-query.rb +0 -22
@@ -9,7 +9,7 @@
|
|
9
9
|
<head>
|
10
10
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
11
|
|
12
|
-
<title>7.
|
12
|
+
<title>7.3.15. log_reopen — groonga v1.2.9ドキュメント</title>
|
13
13
|
|
14
14
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
15
15
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<script type="text/javascript">
|
18
18
|
var DOCUMENTATION_OPTIONS = {
|
19
19
|
URL_ROOT: '../',
|
20
|
-
VERSION: '1.2.
|
20
|
+
VERSION: '1.2.9',
|
21
21
|
COLLAPSE_INDEX: false,
|
22
22
|
FILE_SUFFIX: '.html',
|
23
23
|
HAS_SOURCE: true
|
@@ -28,10 +28,10 @@
|
|
28
28
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
29
29
|
<script type="text/javascript" src="../_static/translations.js"></script>
|
30
30
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
31
|
-
<link rel="top" title="groonga v1.2.
|
32
|
-
<link rel="up" title="7.
|
33
|
-
<link rel="next" title="7.
|
34
|
-
<link rel="prev" title="7.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
|
+
<link rel="up" title="7.3. コマンド" href="../commands.html" />
|
33
|
+
<link rel="next" title="7.3.16. quit" href="quit.html" />
|
34
|
+
<link rel="prev" title="7.3.14. log_put" href="log_put.html" />
|
35
35
|
</head>
|
36
36
|
<body>
|
37
37
|
<div class="header">
|
@@ -58,14 +58,14 @@
|
|
58
58
|
<a href="../genindex.html" title="総合索引"
|
59
59
|
accesskey="I">索引</a></li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="quit.html" title="7.
|
61
|
+
<a href="quit.html" title="7.3.16. quit"
|
62
62
|
accesskey="N">次へ</a> |</li>
|
63
63
|
<li class="right" >
|
64
|
-
<a href="log_put.html" title="7.
|
64
|
+
<a href="log_put.html" title="7.3.14. log_put"
|
65
65
|
accesskey="P">前へ</a> |</li>
|
66
|
-
<li><a href="../index.html">groonga v1.2.
|
66
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
67
67
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
68
|
-
<li><a href="../commands.html" accesskey="U">7.
|
68
|
+
<li><a href="../commands.html" accesskey="U">7.3. コマンド</a> »</li>
|
69
69
|
</ul>
|
70
70
|
</div>
|
71
71
|
|
@@ -75,31 +75,31 @@
|
|
75
75
|
<div class="body">
|
76
76
|
|
77
77
|
<div class="section" id="log-reopen">
|
78
|
-
<h1>7.
|
78
|
+
<h1>7.3.15. log_reopen<a class="headerlink" href="#log-reopen" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
79
79
|
<div class="section" id="id1">
|
80
|
-
<h2>7.
|
80
|
+
<h2>7.3.15.1. 名前<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
81
81
|
<p>log_reopen - ログファイルの再読み込み</p>
|
82
82
|
</div>
|
83
83
|
<div class="section" id="id2">
|
84
|
-
<h2>7.
|
84
|
+
<h2>7.3.15.2. 書式<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
85
85
|
<div class="highlight-none"><div class="highlight"><pre>log_reopen
|
86
86
|
</pre></div>
|
87
87
|
</div>
|
88
88
|
</div>
|
89
89
|
<div class="section" id="id3">
|
90
|
-
<h2>7.
|
90
|
+
<h2>7.3.15.3. 説明<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
91
91
|
<p>groonga組込コマンドの一つであるlog_reopenについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。</p>
|
92
92
|
<p>log_reopenは、ログファイルを再読み込みします。</p>
|
93
93
|
<p>現在、デフォルトのログ関数を用いている場合のみに対応しています。</p>
|
94
94
|
</div>
|
95
95
|
<div class="section" id="id4">
|
96
|
-
<h2>7.
|
96
|
+
<h2>7.3.15.4. 引数<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
97
97
|
<p>ありません。</p>
|
98
98
|
</div>
|
99
99
|
<div class="section" id="id5">
|
100
|
-
<h2>7.
|
100
|
+
<h2>7.3.15.5. 返値<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
101
101
|
<div class="section" id="json">
|
102
|
-
<h3>7.
|
102
|
+
<h3>7.3.15.5.1. json形式<a class="headerlink" href="#json" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
103
103
|
<div class="highlight-none"><div class="highlight"><pre>[成功かどうかのフラグ]
|
104
104
|
|
105
105
|
``成功かどうかのフラグ``
|
@@ -110,7 +110,7 @@
|
|
110
110
|
</div>
|
111
111
|
</div>
|
112
112
|
<div class="section" id="id6">
|
113
|
-
<h2>7.
|
113
|
+
<h2>7.3.15.6. 例<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
114
114
|
<div class="highlight-none"><div class="highlight"><pre>log_reopen
|
115
115
|
|
116
116
|
[true]
|
@@ -118,7 +118,7 @@
|
|
118
118
|
</div>
|
119
119
|
</div>
|
120
120
|
<div class="section" id="id7">
|
121
|
-
<h2>7.
|
121
|
+
<h2>7.3.15.7. log_reopenを用いたログのローテーション<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
122
122
|
<ol class="arabic simple">
|
123
123
|
<li>ログファイルをmvなどで移動する。
|
124
124
|
ログはmvで移動された先のファイルに書き込まれる。</li>
|
@@ -128,7 +128,7 @@
|
|
128
128
|
</ol>
|
129
129
|
</div>
|
130
130
|
<div class="section" id="id8">
|
131
|
-
<h2>7.
|
131
|
+
<h2>7.3.15.8. 関連項目<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
132
132
|
<p><a class="reference internal" href="log_level.html"><em>log_level</em></a>
|
133
133
|
<a class="reference internal" href="log_put.html"><em>log_put</em></a></p>
|
134
134
|
</div>
|
@@ -142,28 +142,28 @@
|
|
142
142
|
<div class="sphinxsidebarwrapper">
|
143
143
|
<h3><a href="../index.html">目次</a></h3>
|
144
144
|
<ul>
|
145
|
-
<li><a class="reference internal" href="#">7.
|
146
|
-
<li><a class="reference internal" href="#id1">7.
|
147
|
-
<li><a class="reference internal" href="#id2">7.
|
148
|
-
<li><a class="reference internal" href="#id3">7.
|
149
|
-
<li><a class="reference internal" href="#id4">7.
|
150
|
-
<li><a class="reference internal" href="#id5">7.
|
151
|
-
<li><a class="reference internal" href="#json">7.
|
145
|
+
<li><a class="reference internal" href="#">7.3.15. log_reopen</a><ul>
|
146
|
+
<li><a class="reference internal" href="#id1">7.3.15.1. 名前</a></li>
|
147
|
+
<li><a class="reference internal" href="#id2">7.3.15.2. 書式</a></li>
|
148
|
+
<li><a class="reference internal" href="#id3">7.3.15.3. 説明</a></li>
|
149
|
+
<li><a class="reference internal" href="#id4">7.3.15.4. 引数</a></li>
|
150
|
+
<li><a class="reference internal" href="#id5">7.3.15.5. 返値</a><ul>
|
151
|
+
<li><a class="reference internal" href="#json">7.3.15.5.1. json形式</a></li>
|
152
152
|
</ul>
|
153
153
|
</li>
|
154
|
-
<li><a class="reference internal" href="#id6">7.
|
155
|
-
<li><a class="reference internal" href="#id7">7.
|
156
|
-
<li><a class="reference internal" href="#id8">7.
|
154
|
+
<li><a class="reference internal" href="#id6">7.3.15.6. 例</a></li>
|
155
|
+
<li><a class="reference internal" href="#id7">7.3.15.7. log_reopenを用いたログのローテーション</a></li>
|
156
|
+
<li><a class="reference internal" href="#id8">7.3.15.8. 関連項目</a></li>
|
157
157
|
</ul>
|
158
158
|
</li>
|
159
159
|
</ul>
|
160
160
|
|
161
161
|
<h4>前のトピックへ</h4>
|
162
162
|
<p class="topless"><a href="log_put.html"
|
163
|
-
title="前の章へ">7.
|
163
|
+
title="前の章へ">7.3.14. log_put</a></p>
|
164
164
|
<h4>次のトピックへ</h4>
|
165
165
|
<p class="topless"><a href="quit.html"
|
166
|
-
title="次の章へ">7.
|
166
|
+
title="次の章へ">7.3.16. quit</a></p>
|
167
167
|
<h3>このページ</h3>
|
168
168
|
<ul class="this-page-menu">
|
169
169
|
<li><a href="../_sources/commands/log_reopen.txt"
|
@@ -172,7 +172,7 @@
|
|
172
172
|
<div id="searchbox" style="display: none">
|
173
173
|
<h3>クイック検索</h3>
|
174
174
|
<form class="search" action="../search.html" method="get">
|
175
|
-
<input type="text" name="q"
|
175
|
+
<input type="text" name="q" />
|
176
176
|
<input type="submit" value="検索" />
|
177
177
|
<input type="hidden" name="check_keywords" value="yes" />
|
178
178
|
<input type="hidden" name="area" value="default" />
|
@@ -193,18 +193,18 @@
|
|
193
193
|
<a href="../genindex.html" title="総合索引"
|
194
194
|
>索引</a></li>
|
195
195
|
<li class="right" >
|
196
|
-
<a href="quit.html" title="7.
|
196
|
+
<a href="quit.html" title="7.3.16. quit"
|
197
197
|
>次へ</a> |</li>
|
198
198
|
<li class="right" >
|
199
|
-
<a href="log_put.html" title="7.
|
199
|
+
<a href="log_put.html" title="7.3.14. log_put"
|
200
200
|
>前へ</a> |</li>
|
201
|
-
<li><a href="../index.html">groonga v1.2.
|
201
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
202
202
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
203
|
-
<li><a href="../commands.html" >7.
|
203
|
+
<li><a href="../commands.html" >7.3. コマンド</a> »</li>
|
204
204
|
</ul>
|
205
205
|
</div>
|
206
206
|
<div class="footer">
|
207
|
-
© Copyright 2009-
|
207
|
+
© Copyright 2009-2012, Brazil, Inc.
|
208
208
|
</div>
|
209
209
|
</body>
|
210
210
|
</html>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<head>
|
10
10
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
11
|
|
12
|
-
<title>7.
|
12
|
+
<title>7.3.16. quit — groonga v1.2.9ドキュメント</title>
|
13
13
|
|
14
14
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
15
15
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<script type="text/javascript">
|
18
18
|
var DOCUMENTATION_OPTIONS = {
|
19
19
|
URL_ROOT: '../',
|
20
|
-
VERSION: '1.2.
|
20
|
+
VERSION: '1.2.9',
|
21
21
|
COLLAPSE_INDEX: false,
|
22
22
|
FILE_SUFFIX: '.html',
|
23
23
|
HAS_SOURCE: true
|
@@ -28,10 +28,10 @@
|
|
28
28
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
29
29
|
<script type="text/javascript" src="../_static/translations.js"></script>
|
30
30
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
31
|
-
<link rel="top" title="groonga v1.2.
|
32
|
-
<link rel="up" title="7.
|
33
|
-
<link rel="next" title="7.
|
34
|
-
<link rel="prev" title="7.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
|
+
<link rel="up" title="7.3. コマンド" href="../commands.html" />
|
33
|
+
<link rel="next" title="7.3.17. select" href="select.html" />
|
34
|
+
<link rel="prev" title="7.3.15. log_reopen" href="log_reopen.html" />
|
35
35
|
</head>
|
36
36
|
<body>
|
37
37
|
<div class="header">
|
@@ -58,14 +58,14 @@
|
|
58
58
|
<a href="../genindex.html" title="総合索引"
|
59
59
|
accesskey="I">索引</a></li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="select.html" title="7.
|
61
|
+
<a href="select.html" title="7.3.17. select"
|
62
62
|
accesskey="N">次へ</a> |</li>
|
63
63
|
<li class="right" >
|
64
|
-
<a href="log_reopen.html" title="7.
|
64
|
+
<a href="log_reopen.html" title="7.3.15. log_reopen"
|
65
65
|
accesskey="P">前へ</a> |</li>
|
66
|
-
<li><a href="../index.html">groonga v1.2.
|
66
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
67
67
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
68
|
-
<li><a href="../commands.html" accesskey="U">7.
|
68
|
+
<li><a href="../commands.html" accesskey="U">7.3. コマンド</a> »</li>
|
69
69
|
</ul>
|
70
70
|
</div>
|
71
71
|
|
@@ -75,32 +75,32 @@
|
|
75
75
|
<div class="body">
|
76
76
|
|
77
77
|
<div class="section" id="quit">
|
78
|
-
<h1>7.
|
78
|
+
<h1>7.3.16. quit<a class="headerlink" href="#quit" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
79
79
|
<div class="section" id="id1">
|
80
|
-
<h2>7.
|
80
|
+
<h2>7.3.16.1. 名前<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
81
81
|
<p>quit - セッション終了</p>
|
82
82
|
</div>
|
83
83
|
<div class="section" id="id2">
|
84
|
-
<h2>7.
|
84
|
+
<h2>7.3.16.2. 書式<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
85
85
|
<div class="highlight-none"><div class="highlight"><pre>quit
|
86
86
|
</pre></div>
|
87
87
|
</div>
|
88
88
|
</div>
|
89
89
|
<div class="section" id="id3">
|
90
|
-
<h2>7.
|
90
|
+
<h2>7.3.16.3. 説明<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
91
91
|
<p>groonga組込コマンドの一つであるquitについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。</p>
|
92
92
|
<p>quitは、groongaプロセスとのセッションを終了します。クライアントプロセスならばgroongaプロセスとの接続を切ります。</p>
|
93
93
|
</div>
|
94
94
|
<div class="section" id="id4">
|
95
|
-
<h2>7.
|
95
|
+
<h2>7.3.16.4. 引数<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
96
96
|
<p>ありません。</p>
|
97
97
|
</div>
|
98
98
|
<div class="section" id="id5">
|
99
|
-
<h2>7.
|
99
|
+
<h2>7.3.16.5. 返値<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
100
100
|
<p>ありません。</p>
|
101
101
|
</div>
|
102
102
|
<div class="section" id="id6">
|
103
|
-
<h2>7.
|
103
|
+
<h2>7.3.16.6. 例<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
104
104
|
<div class="highlight-none"><div class="highlight"><pre>quit
|
105
105
|
</pre></div>
|
106
106
|
</div>
|
@@ -115,23 +115,23 @@
|
|
115
115
|
<div class="sphinxsidebarwrapper">
|
116
116
|
<h3><a href="../index.html">目次</a></h3>
|
117
117
|
<ul>
|
118
|
-
<li><a class="reference internal" href="#">7.
|
119
|
-
<li><a class="reference internal" href="#id1">7.
|
120
|
-
<li><a class="reference internal" href="#id2">7.
|
121
|
-
<li><a class="reference internal" href="#id3">7.
|
122
|
-
<li><a class="reference internal" href="#id4">7.
|
123
|
-
<li><a class="reference internal" href="#id5">7.
|
124
|
-
<li><a class="reference internal" href="#id6">7.
|
118
|
+
<li><a class="reference internal" href="#">7.3.16. quit</a><ul>
|
119
|
+
<li><a class="reference internal" href="#id1">7.3.16.1. 名前</a></li>
|
120
|
+
<li><a class="reference internal" href="#id2">7.3.16.2. 書式</a></li>
|
121
|
+
<li><a class="reference internal" href="#id3">7.3.16.3. 説明</a></li>
|
122
|
+
<li><a class="reference internal" href="#id4">7.3.16.4. 引数</a></li>
|
123
|
+
<li><a class="reference internal" href="#id5">7.3.16.5. 返値</a></li>
|
124
|
+
<li><a class="reference internal" href="#id6">7.3.16.6. 例</a></li>
|
125
125
|
</ul>
|
126
126
|
</li>
|
127
127
|
</ul>
|
128
128
|
|
129
129
|
<h4>前のトピックへ</h4>
|
130
130
|
<p class="topless"><a href="log_reopen.html"
|
131
|
-
title="前の章へ">7.
|
131
|
+
title="前の章へ">7.3.15. log_reopen</a></p>
|
132
132
|
<h4>次のトピックへ</h4>
|
133
133
|
<p class="topless"><a href="select.html"
|
134
|
-
title="次の章へ">7.
|
134
|
+
title="次の章へ">7.3.17. select</a></p>
|
135
135
|
<h3>このページ</h3>
|
136
136
|
<ul class="this-page-menu">
|
137
137
|
<li><a href="../_sources/commands/quit.txt"
|
@@ -140,7 +140,7 @@
|
|
140
140
|
<div id="searchbox" style="display: none">
|
141
141
|
<h3>クイック検索</h3>
|
142
142
|
<form class="search" action="../search.html" method="get">
|
143
|
-
<input type="text" name="q"
|
143
|
+
<input type="text" name="q" />
|
144
144
|
<input type="submit" value="検索" />
|
145
145
|
<input type="hidden" name="check_keywords" value="yes" />
|
146
146
|
<input type="hidden" name="area" value="default" />
|
@@ -161,18 +161,18 @@
|
|
161
161
|
<a href="../genindex.html" title="総合索引"
|
162
162
|
>索引</a></li>
|
163
163
|
<li class="right" >
|
164
|
-
<a href="select.html" title="7.
|
164
|
+
<a href="select.html" title="7.3.17. select"
|
165
165
|
>次へ</a> |</li>
|
166
166
|
<li class="right" >
|
167
|
-
<a href="log_reopen.html" title="7.
|
167
|
+
<a href="log_reopen.html" title="7.3.15. log_reopen"
|
168
168
|
>前へ</a> |</li>
|
169
|
-
<li><a href="../index.html">groonga v1.2.
|
169
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
170
170
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
171
|
-
<li><a href="../commands.html" >7.
|
171
|
+
<li><a href="../commands.html" >7.3. コマンド</a> »</li>
|
172
172
|
</ul>
|
173
173
|
</div>
|
174
174
|
<div class="footer">
|
175
|
-
© Copyright 2009-
|
175
|
+
© Copyright 2009-2012, Brazil, Inc.
|
176
176
|
</div>
|
177
177
|
</body>
|
178
178
|
</html>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<head>
|
10
10
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
11
|
|
12
|
-
<title>7.
|
12
|
+
<title>7.3.17. select — groonga v1.2.9ドキュメント</title>
|
13
13
|
|
14
14
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
15
15
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<script type="text/javascript">
|
18
18
|
var DOCUMENTATION_OPTIONS = {
|
19
19
|
URL_ROOT: '../',
|
20
|
-
VERSION: '1.2.
|
20
|
+
VERSION: '1.2.9',
|
21
21
|
COLLAPSE_INDEX: false,
|
22
22
|
FILE_SUFFIX: '.html',
|
23
23
|
HAS_SOURCE: true
|
@@ -28,10 +28,10 @@
|
|
28
28
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
29
29
|
<script type="text/javascript" src="../_static/translations.js"></script>
|
30
30
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
31
|
-
<link rel="top" title="groonga v1.2.
|
32
|
-
<link rel="up" title="7.
|
33
|
-
<link rel="next" title="7.
|
34
|
-
<link rel="prev" title="7.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
|
+
<link rel="up" title="7.3. コマンド" href="../commands.html" />
|
33
|
+
<link rel="next" title="7.3.18. shutdown" href="shutdown.html" />
|
34
|
+
<link rel="prev" title="7.3.16. quit" href="quit.html" />
|
35
35
|
</head>
|
36
36
|
<body>
|
37
37
|
<div class="header">
|
@@ -58,14 +58,14 @@
|
|
58
58
|
<a href="../genindex.html" title="総合索引"
|
59
59
|
accesskey="I">索引</a></li>
|
60
60
|
<li class="right" >
|
61
|
-
<a href="shutdown.html" title="7.
|
61
|
+
<a href="shutdown.html" title="7.3.18. shutdown"
|
62
62
|
accesskey="N">次へ</a> |</li>
|
63
63
|
<li class="right" >
|
64
|
-
<a href="quit.html" title="7.
|
64
|
+
<a href="quit.html" title="7.3.16. quit"
|
65
65
|
accesskey="P">前へ</a> |</li>
|
66
|
-
<li><a href="../index.html">groonga v1.2.
|
66
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
67
67
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
68
|
-
<li><a href="../commands.html" accesskey="U">7.
|
68
|
+
<li><a href="../commands.html" accesskey="U">7.3. コマンド</a> »</li>
|
69
69
|
</ul>
|
70
70
|
</div>
|
71
71
|
|
@@ -75,13 +75,13 @@
|
|
75
75
|
<div class="body">
|
76
76
|
|
77
77
|
<div class="section" id="select">
|
78
|
-
<h1>7.
|
78
|
+
<h1>7.3.17. select<a class="headerlink" href="#select" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
79
79
|
<div class="section" id="id1">
|
80
|
-
<h2>7.
|
80
|
+
<h2>7.3.17.1. 名前<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
81
81
|
<p>select - テーブルの中から条件にマッチするレコードを検索して出力する</p>
|
82
82
|
</div>
|
83
83
|
<div class="section" id="id2">
|
84
|
-
<h2>7.
|
84
|
+
<h2>7.3.17.2. 書式<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
85
85
|
<div class="highlight-none"><div class="highlight"><pre>select table [match_columns [query [filter [scorer [sortby [output_columns
|
86
86
|
[offset [limit [drilldown [drilldown_sortby [drilldown_output_columns
|
87
87
|
[drilldown_offset [drilldown_limit [cache
|
@@ -90,12 +90,12 @@
|
|
90
90
|
</div>
|
91
91
|
</div>
|
92
92
|
<div class="section" id="id3">
|
93
|
-
<h2>7.
|
93
|
+
<h2>7.3.17.3. 説明<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
94
94
|
<p>groonga組込コマンドの一つであるselectについて説明します。組込コマンドは、groonga実行ファイルの引数、標準入力、またはソケット経由でgroongaサーバにリクエストを送信することによって実行します。</p>
|
95
95
|
<p>selectは、使用しているデータベースのテーブルの中から条件にマッチするレコードを検索して出力します。</p>
|
96
96
|
</div>
|
97
97
|
<div class="section" id="id4">
|
98
|
-
<h2>7.
|
98
|
+
<h2>7.3.17.4. 引数<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
99
99
|
<p><tt class="docutils literal"><span class="pre">table</span></tt></p>
|
100
100
|
<blockquote>
|
101
101
|
<div>検索対象のテーブルを指定します。存在しないテーブルを指定した場合はエラーになります。</div></blockquote>
|
@@ -116,7 +116,7 @@
|
|
116
116
|
<blockquote>
|
117
117
|
<div>以下の形式の文字列によって検索条件を指定します。</div></blockquote>
|
118
118
|
<div class="section" id="id5">
|
119
|
-
<h3>7.
|
119
|
+
<h3>7.3.17.4.1. 条件式<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
120
120
|
<p>以下の条件式が使用できます。</p>
|
121
121
|
<dl class="docutils">
|
122
122
|
<dt>文字列</dt>
|
@@ -140,7 +140,7 @@
|
|
140
140
|
</dl>
|
141
141
|
</div>
|
142
142
|
<div class="section" id="id6">
|
143
|
-
<h3>7.
|
143
|
+
<h3>7.3.17.4.2. 結合演算子<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
144
144
|
<p>複数の条件式を結合するために以下の演算子が使用できます。</p>
|
145
145
|
<dl class="docutils">
|
146
146
|
<dt>a OR b</dt>
|
@@ -226,7 +226,7 @@
|
|
226
226
|
</div>
|
227
227
|
</div>
|
228
228
|
<div class="section" id="id7">
|
229
|
-
<h2>7.
|
229
|
+
<h2>7.3.17.5. 返値<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
230
230
|
<p>以下のようなjson形式で値が返却されます。</p>
|
231
231
|
<div class="highlight-none"><div class="highlight"><pre>[[リターンコード, 処理開始時間, 処理時間], [検索結果, ドリルダウン結果]]
|
232
232
|
</pre></div>
|
@@ -281,7 +281,7 @@
|
|
281
281
|
</div></blockquote>
|
282
282
|
</div>
|
283
283
|
<div class="section" id="id8">
|
284
|
-
<h2>7.
|
284
|
+
<h2>7.3.17.6. 例<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
285
285
|
<p>テーブルEntryの全レコード・全カラムの値を出力します。:</p>
|
286
286
|
<div class="highlight-none"><div class="highlight"><pre>select Entry
|
287
287
|
|
@@ -290,7 +290,7 @@
|
|
290
290
|
</div>
|
291
291
|
</div>
|
292
292
|
<div class="section" id="id9">
|
293
|
-
<h2>7.
|
293
|
+
<h2>7.3.17.7. 関連項目<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
294
294
|
<p><a class="reference internal" href="../expr.html"><em>grn_expr</em></a></p>
|
295
295
|
</div>
|
296
296
|
</div>
|
@@ -303,28 +303,28 @@
|
|
303
303
|
<div class="sphinxsidebarwrapper">
|
304
304
|
<h3><a href="../index.html">目次</a></h3>
|
305
305
|
<ul>
|
306
|
-
<li><a class="reference internal" href="#">7.
|
307
|
-
<li><a class="reference internal" href="#id1">7.
|
308
|
-
<li><a class="reference internal" href="#id2">7.
|
309
|
-
<li><a class="reference internal" href="#id3">7.
|
310
|
-
<li><a class="reference internal" href="#id4">7.
|
311
|
-
<li><a class="reference internal" href="#id5">7.
|
312
|
-
<li><a class="reference internal" href="#id6">7.
|
306
|
+
<li><a class="reference internal" href="#">7.3.17. select</a><ul>
|
307
|
+
<li><a class="reference internal" href="#id1">7.3.17.1. 名前</a></li>
|
308
|
+
<li><a class="reference internal" href="#id2">7.3.17.2. 書式</a></li>
|
309
|
+
<li><a class="reference internal" href="#id3">7.3.17.3. 説明</a></li>
|
310
|
+
<li><a class="reference internal" href="#id4">7.3.17.4. 引数</a><ul>
|
311
|
+
<li><a class="reference internal" href="#id5">7.3.17.4.1. 条件式</a></li>
|
312
|
+
<li><a class="reference internal" href="#id6">7.3.17.4.2. 結合演算子</a></li>
|
313
313
|
</ul>
|
314
314
|
</li>
|
315
|
-
<li><a class="reference internal" href="#id7">7.
|
316
|
-
<li><a class="reference internal" href="#id8">7.
|
317
|
-
<li><a class="reference internal" href="#id9">7.
|
315
|
+
<li><a class="reference internal" href="#id7">7.3.17.5. 返値</a></li>
|
316
|
+
<li><a class="reference internal" href="#id8">7.3.17.6. 例</a></li>
|
317
|
+
<li><a class="reference internal" href="#id9">7.3.17.7. 関連項目</a></li>
|
318
318
|
</ul>
|
319
319
|
</li>
|
320
320
|
</ul>
|
321
321
|
|
322
322
|
<h4>前のトピックへ</h4>
|
323
323
|
<p class="topless"><a href="quit.html"
|
324
|
-
title="前の章へ">7.
|
324
|
+
title="前の章へ">7.3.16. quit</a></p>
|
325
325
|
<h4>次のトピックへ</h4>
|
326
326
|
<p class="topless"><a href="shutdown.html"
|
327
|
-
title="次の章へ">7.
|
327
|
+
title="次の章へ">7.3.18. shutdown</a></p>
|
328
328
|
<h3>このページ</h3>
|
329
329
|
<ul class="this-page-menu">
|
330
330
|
<li><a href="../_sources/commands/select.txt"
|
@@ -333,7 +333,7 @@
|
|
333
333
|
<div id="searchbox" style="display: none">
|
334
334
|
<h3>クイック検索</h3>
|
335
335
|
<form class="search" action="../search.html" method="get">
|
336
|
-
<input type="text" name="q"
|
336
|
+
<input type="text" name="q" />
|
337
337
|
<input type="submit" value="検索" />
|
338
338
|
<input type="hidden" name="check_keywords" value="yes" />
|
339
339
|
<input type="hidden" name="area" value="default" />
|
@@ -354,18 +354,18 @@
|
|
354
354
|
<a href="../genindex.html" title="総合索引"
|
355
355
|
>索引</a></li>
|
356
356
|
<li class="right" >
|
357
|
-
<a href="shutdown.html" title="7.
|
357
|
+
<a href="shutdown.html" title="7.3.18. shutdown"
|
358
358
|
>次へ</a> |</li>
|
359
359
|
<li class="right" >
|
360
|
-
<a href="quit.html" title="7.
|
360
|
+
<a href="quit.html" title="7.3.16. quit"
|
361
361
|
>前へ</a> |</li>
|
362
|
-
<li><a href="../index.html">groonga v1.2.
|
362
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
363
363
|
<li><a href="../reference.html" >7. リファレンスマニュアル</a> »</li>
|
364
|
-
<li><a href="../commands.html" >7.
|
364
|
+
<li><a href="../commands.html" >7.3. コマンド</a> »</li>
|
365
365
|
</ul>
|
366
366
|
</div>
|
367
367
|
<div class="footer">
|
368
|
-
© Copyright 2009-
|
368
|
+
© Copyright 2009-2012, Brazil, Inc.
|
369
369
|
</div>
|
370
370
|
</body>
|
371
371
|
</html>
|