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>4.1. 基本的な操作 — groonga v1.2.
|
12
|
+
<title>4.1. 基本的な操作 — 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,7 +28,7 @@
|
|
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.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
32
|
<link rel="up" title="4. チュートリアル" href="../tutorial.html" />
|
33
33
|
<link rel="next" title="4.2. ネットワークを通じた利用" href="network.html" />
|
34
34
|
<link rel="prev" title="4. チュートリアル" href="../tutorial.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="../tutorial.html" title="4. チュートリアル"
|
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="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -73,78 +73,67 @@
|
|
73
73
|
<div class="bodywrapper">
|
74
74
|
<div class="body">
|
75
75
|
|
76
|
-
<div class="section" id="
|
77
|
-
<h1>4.1. 基本的な操作<a class="headerlink" href="#
|
78
|
-
<p>groonga
|
79
|
-
<div class="section" id="create-database">
|
80
|
-
<h2>4.1.1.
|
76
|
+
<div class="section" id="basic-operations">
|
77
|
+
<h1>4.1. 基本的な操作<a class="headerlink" href="#basic-operations" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
78
|
+
<p>groongaには、Cのライブラリとして使用する方法と、groonga実行ファイルを通して使用する方法があります。本チュートリアルでは、groonga実行ファイルを使用する方法について説明します。groonga実行ファイルを使って、データベースの作成・操作・サーバの起動・サーバへの接続などの操作が行えます。</p>
|
79
|
+
<div class="section" id="create-a-database">
|
80
|
+
<h2>4.1.1. データベースの作成<a class="headerlink" href="#create-a-database" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
81
81
|
<p>以下のようなコマンドを実行すると、データベースを新規に作成することができます。</p>
|
82
82
|
<p>書式:</p>
|
83
83
|
<div class="highlight-none"><div class="highlight"><pre>groonga -n DB_PATH_NAME
|
84
84
|
</pre></div>
|
85
85
|
</div>
|
86
|
-
<p>-n
|
87
|
-
<p
|
86
|
+
<p>-nオプションは、データベースを作ることを指示します。DB_PATH_NAMEには、新しく作成するデータベースのパスを指定します。指定されたパスが既に存在するときはコマンドが失敗するので注意してください。</p>
|
87
|
+
<p>上記コマンドは、データベースを作成してから、コマンドの入力を受け付ける対話モードに入ります。Ctrlキーを押しながらdキーを押すと、対話モードから抜けることができます。</p>
|
88
88
|
<p>実行例:</p>
|
89
89
|
<div class="highlight-none"><div class="highlight"><pre>% groonga -n /tmp/tutorial.db
|
90
|
-
>
|
90
|
+
> Ctrl-d
|
91
91
|
%
|
92
92
|
</pre></div>
|
93
93
|
</div>
|
94
94
|
</div>
|
95
|
-
<div class="section" id="operate-database">
|
96
|
-
<h2>4.1.2.
|
95
|
+
<div class="section" id="operate-a-database">
|
96
|
+
<h2>4.1.2. データベースの操作<a class="headerlink" href="#operate-a-database" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
97
97
|
<p>書式:</p>
|
98
98
|
<div class="highlight-none"><div class="highlight"><pre>groonga DB_PATH_NAME [COMMAND]
|
99
99
|
</pre></div>
|
100
100
|
</div>
|
101
|
-
<p
|
102
|
-
<p
|
103
|
-
<p
|
101
|
+
<p>操作対象のデータベースのパスをDB_PATH_NAMEに指定します。</p>
|
102
|
+
<p>COMMAND が指定された場合、COMMAND を実行した後、実行結果を返します。指定されなかった場合には、対話モードに入ります。対話モードでは、標準入力からコマンドを読み込み、順次実行します。本チュートリアルでは、対話モードを主に使用します。</p>
|
103
|
+
<p>それでは、statusというコマンドを実行してみましょう。statusコマンドは、groongaの実行状態を返すコマンドです。</p>
|
104
104
|
<p>実行例:</p>
|
105
|
-
<div class="highlight-none"><div class="highlight"><pre
|
106
|
-
|
107
|
-
&
|
108
|
-
[[0,1317212791.26314,0.124383285],true]
|
109
|
-
> column_create --table Type --name float --type Float
|
110
|
-
[[0,1317212791.58803,0.027924039],true]
|
111
|
-
> column_create --table Type --name string --type ShortText
|
112
|
-
[[0,1317212791.81654,0.040399047],true]
|
113
|
-
> column_create --table Type --name time --type Time
|
114
|
-
[[0,1317212792.05751,0.027354067],true]
|
115
|
-
> load --table Type
|
116
|
-
> [{"_key":"sample","number":12345,"float":42.195,"string":"GROONGA","time":1234567890.12}]
|
117
|
-
[[0,1317212792.28516,0.200775839],1]
|
118
|
-
> select --table Type
|
119
|
-
[[0,1317212792.68655,0.000199477],[[[1],[["_id","UInt32"],["_key","ShortText"],["time","Time"],["string","ShortText"],["number","Int32"],["float","Float"]],[1,"sample",1234567890.12,"GROONGA",12345,42.195]]]]
|
105
|
+
<div class="highlight-none"><div class="highlight"><pre>% groonga -n /tmp/groonga-databases/introduction.db
|
106
|
+
> status
|
107
|
+
[[0,1322616280.40348,0.000158121],{"alloc_count":127,"starttime":1322616279,"uptime":1,"version":"1.2.8-9-gbf05b82","n_queries":0,"cache_hit_rate":0.0,"command_version":1,"default_command_version":1,"max_command_version":2}]
|
120
108
|
</pre></div>
|
121
109
|
</div>
|
122
|
-
<p>以上のように、コマンドの実行結果は基本的にjson
|
110
|
+
<p>以上のように、コマンドの実行結果は基本的にjson形式の配列として返却されます。配列の先頭には、エラーコードや実行時間などの情報が入ります。2番目の要素には、コマンドによって指定された操作の実行結果が入ります。</p>
|
123
111
|
</div>
|
124
|
-
<div class="section" id="
|
125
|
-
<h2>4.1.3.
|
126
|
-
<p
|
127
|
-
<div class="highlight-none"><div class="highlight"><pre>
|
112
|
+
<div class="section" id="command-format">
|
113
|
+
<h2>4.1.3. コマンドの書式<a class="headerlink" href="#command-format" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
114
|
+
<p>データベースを操作するコマンドには、以下の書式で引数を与えます。:</p>
|
115
|
+
<div class="highlight-none"><div class="highlight"><pre>Form_1: COMMAND VALUE_1 VALUE_2 ..
|
128
116
|
|
129
|
-
|
117
|
+
Form_2: COMMAND --NAME_1 VALUE_1 --NAME_2 VALUE_2 ..
|
130
118
|
</pre></div>
|
131
119
|
</div>
|
132
|
-
<p>書式1
|
133
|
-
<p>書式2
|
120
|
+
<p>書式1では値を適切な順番で渡す必要があります。このような引数は、位置によって値の意味が決まるため、位置固定引数などと呼ばれることもあります。</p>
|
121
|
+
<p>書式2では値を名前と一緒に渡します。そのため、任意の順序で引数を指定することができます。このような引数は、名前付き引数やキーワード引数と呼ばれることもあります。</p>
|
122
|
+
<p>空白や特殊な記号「"'()」を含む値を指定したいときは、シングルクォート(')かダブルクォート(")で値を囲むようにしてください。</p>
|
134
123
|
<p>詳しくは、 <a class="reference internal" href="../executables/groonga.html"><em>groonga実行ファイル</em></a> のコマンドの項を参考にしてください。</p>
|
135
124
|
</div>
|
136
|
-
<div class="section" id="
|
137
|
-
<h2>4.1.4. 主なコマンド<a class="headerlink" href="#
|
125
|
+
<div class="section" id="basic-commands">
|
126
|
+
<h2>4.1.4. 主なコマンド<a class="headerlink" href="#basic-commands" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
138
127
|
<blockquote>
|
139
128
|
<div><dl class="docutils">
|
140
129
|
<dt><a class="reference internal" href="../commands/status.html"><em>status</em></a></dt>
|
141
130
|
<dd>groongaプロセスの状態を表示します。</dd>
|
142
131
|
<dt><a class="reference internal" href="../commands/table_list.html"><em>table_list</em></a></dt>
|
143
|
-
<dd
|
132
|
+
<dd>データベースに定義されているテーブルのリストを表示します。</dd>
|
144
133
|
<dt><a class="reference internal" href="../commands/column_list.html"><em>column_list</em></a></dt>
|
145
134
|
<dd>テーブルに定義されているカラムのリストを表示します。</dd>
|
146
135
|
<dt><a class="reference internal" href="../commands/table_create.html"><em>table_create</em></a></dt>
|
147
|
-
<dd
|
136
|
+
<dd>データベースにテーブルを追加します。</dd>
|
148
137
|
<dt><a class="reference internal" href="../commands/column_create.html"><em>column_create</em></a></dt>
|
149
138
|
<dd>テーブルにカラムを追加します。</dd>
|
150
139
|
<dt><a class="reference internal" href="../commands/select.html"><em>select</em></a></dt>
|
@@ -154,43 +143,33 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
154
143
|
</dl>
|
155
144
|
</div></blockquote>
|
156
145
|
</div>
|
157
|
-
<div class="section" id="create-table">
|
158
|
-
<h2>4.1.5. テーブルの作成<a class="headerlink" href="#create-table" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
146
|
+
<div class="section" id="create-a-table">
|
147
|
+
<h2>4.1.5. テーブルの作成<a class="headerlink" href="#create-a-table" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
159
148
|
<p><a class="reference internal" href="../commands/table_create.html"><em>table_create</em></a> コマンドを使用してテーブルを作成します。</p>
|
160
|
-
<p>groonga
|
161
|
-
<p
|
162
|
-
<p
|
149
|
+
<p>groongaのテーブルには基本的に主キーが必要であり、テーブルを作成する際には型と格納方法も併せて指定する必要があります。</p>
|
150
|
+
<p>型については後で説明するので、ここではデータの種類を表しているものという程度に考えてください。主キーの格納方法は、主キーを条件とする検索にかかる時間や、前方一致検索の可否などを左右します。こちらも後で説明します。</p>
|
151
|
+
<p>それでは、'Site'という名前のテーブルを作成してみましょう。主キーについては、型がShortTextで格納方法はHASHとしています。</p>
|
163
152
|
<p>実行例:</p>
|
164
|
-
<div class="highlight-none"><div class="highlight"><pre>>
|
165
|
-
[[0,
|
166
|
-
> load --table Site
|
167
|
-
> [{"_key":"http://example.org/","link":"http://example.net/"}]
|
168
|
-
[[0,1317212793.14984,0.200481934],1]
|
169
|
-
> select --table Site --output_columns _key,title,link._key,link.title --query title:@this
|
170
|
-
[[0,1317212793.55084,0.000485897],[[[1],[["_key","ShortText"],["title","ShortText"],["link._key","ShortText"],["link.title","ShortText"]],["http://example.org/","This is test record 1!","http://example.net/","test record 2."]]]]
|
153
|
+
<div class="highlight-none"><div class="highlight"><pre>> table_create --name Site --flags TABLE_HASH_KEY --key_type ShortText
|
154
|
+
[[0,1322616280.60791,0.01234375],true]
|
171
155
|
</pre></div>
|
172
156
|
</div>
|
173
157
|
</div>
|
174
|
-
<div class="section" id="
|
175
|
-
<h2>4.1.6.
|
158
|
+
<div class="section" id="view-a-table">
|
159
|
+
<h2>4.1.6. テーブルの表示<a class="headerlink" href="#view-a-table" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
176
160
|
<p><a class="reference internal" href="../commands/select.html"><em>select</em></a> コマンドを用いて、テーブルの中身を表示することができます。</p>
|
177
161
|
<p>実行例:</p>
|
178
|
-
<div class="highlight-none"><div class="highlight"><pre>>
|
179
|
-
[[0,
|
180
|
-
> load --table Site
|
181
|
-
> [{"_key":"http://example.org/","links":["http://example.net/","http://example.org/","http://example.com/"]}]
|
182
|
-
[[0,1317212794.00274,0.200473621],1]
|
183
|
-
> select --table Site --output_columns _key,title,links._key,links.title --query title:@this
|
184
|
-
[[0,1317212794.40349,0.000384272],[[[1],[["_key","ShortText"],["title","ShortText"],["links._key","ShortText"],["links.title","ShortText"]],["http://example.org/","This is test record 1!",["http://example.net/","http://example.org/","http://example.com/"],["test record 2.","This is test record 1!","test test record three."]]]]]
|
162
|
+
<div class="highlight-none"><div class="highlight"><pre>> select --table Site
|
163
|
+
[[0,1322616280.82196,0.000451873],[[[0],[["_id","UInt32"],["_key","ShortText"]]]]]
|
185
164
|
</pre></div>
|
186
165
|
</div>
|
187
|
-
<p>select
|
188
|
-
<p>table_createコマンドで作成したテーブルには、最初から'_id'
|
166
|
+
<p>selectにテーブル名のみを指定すると、指定したテーブルの中身を10件まで表示します。実行結果の[0]はテーブルに含まれるレコードの数を示しています。今回は何も登録されていないため0件です。レコード数の次に表示されている配列はテーブルの構成を示しています。["_id","Uint32"]はUInt32型の値を持つ'_id'という名前のカラム、["_key","ShortText"]はShortText型の値を持つ'_key'という名前のカラムをそれぞれ表しています。</p>
|
167
|
+
<p>table_createコマンドで作成したテーブルには、最初から'_id', '_key'という2つのカラムがあります。'_id'はgroongaが自動的に付与するID番号が格納されるカラムです。'_key'は主キーが格納されるカラムです。これらのカラム名を変更することはできません。</p>
|
189
168
|
</div>
|
190
|
-
<div class="section" id="create-
|
191
|
-
<h2>4.1.7. カラムの作成<a class="headerlink" href="#create-
|
169
|
+
<div class="section" id="create-a-column">
|
170
|
+
<h2>4.1.7. カラムの作成<a class="headerlink" href="#create-a-column" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
192
171
|
<p><a class="reference internal" href="../commands/column_create.html"><em>column_create</em></a> コマンドを用いて、カラムを作成することができます。</p>
|
193
|
-
<p
|
172
|
+
<p>ここでは、ShortText型の値を持つ'title'という名前のカラムを'Site'テーブルに追加してみましょう。</p>
|
194
173
|
<p>実行例:</p>
|
195
174
|
<div class="highlight-none"><div class="highlight"><pre>> column_create --table Site --name title --flags COLUMN_SCALAR --type ShortText
|
196
175
|
[[0,1317212712.91734,0.077833747],true]
|
@@ -198,33 +177,36 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
198
177
|
[[0,1317212713.19572,0.000121119],[[[0],[["_id","UInt32"],["_key","ShortText"],["title","ShortText"]]]]]
|
199
178
|
</pre></div>
|
200
179
|
</div>
|
201
|
-
<p>COLUMN_SCALAR
|
180
|
+
<p>COLUMN_SCALAR は'comment'を通常のカラムとして作成することを指示しています。</p>
|
202
181
|
</div>
|
203
|
-
<div class="section" id="create-
|
204
|
-
<h2>4.1.8. 全文検索用の語彙表の作成<a class="headerlink" href="#create-
|
205
|
-
<p
|
206
|
-
<p
|
182
|
+
<div class="section" id="create-a-lexicon-table-for-full-text-searches">
|
183
|
+
<h2>4.1.8. 全文検索用の語彙表の作成<a class="headerlink" href="#create-a-lexicon-table-for-full-text-searches" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
184
|
+
<p>そろそろ全文検索の使い方について見ていきましょう。</p>
|
185
|
+
<p>groongaでは転置インデックスを使って高速な全文検索を実現しています。そのため、まずは転置インデックスとして用いるテーブルを作成する必要があります。テーブルの内容は、文書に含まれる単語やN-gramなどの索引語を主キーとして、各カラムに索引語の位置情報を格納するという構成になります。結果として、主キーのカラムは全文検索における語彙表の役割を果たします。</p>
|
186
|
+
<p>以下の例では、'Terms'という名前のテーブルを転置インデックスとして作成しています。索引語を格納するため、主キーの型はShortTextです。</p>
|
207
187
|
<p>実行例:</p>
|
208
188
|
<div class="highlight-none"><div class="highlight"><pre>> table_create --name Terms --flags TABLE_PAT_KEY|KEY_NORMALIZE --key_type ShortText --default_tokenizer TokenBigram
|
209
189
|
[[0,1317212713.39679,0.092312046],true]
|
210
190
|
</pre></div>
|
211
191
|
</div>
|
212
192
|
<p>この実行例には、多くのパラメータが指定されています。本チュートリアルでは、これらをすべて理解する必要はありません。以下に簡単な説明を記しますが、読み飛ばしてもらってかまいません。</p>
|
213
|
-
<p
|
193
|
+
<p>実行例にあるTABLE_PAT_KEY|KEY_NORMALIZEという値は、主キー値をパトリシア木に格納することと、各索引語を正規化して登録することを示しています。また、default_tokenizerというパラメータには、検索の対象となる文書をトークナイズする方式を与えるようになっています。この例では、一般的にN-gramと呼ばれるインデックス方式に対応するTokenBigramを指定しています。</p>
|
214
194
|
</div>
|
215
|
-
<div class="section" id="create-index-column-
|
216
|
-
<h2>4.1.9. 全文検索用のインデックスカラムの作成<a class="headerlink" href="#create-index-column-
|
217
|
-
<p
|
195
|
+
<div class="section" id="create-an-index-column-for-full-text-search">
|
196
|
+
<h2>4.1.9. 全文検索用のインデックスカラムの作成<a class="headerlink" href="#create-an-index-column-for-full-text-search" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
197
|
+
<p>次に必要なのは、インデックス型のカラムを作成することです。このカラムは、関連付けられたカラムに対する全文検索に利用されます。つまり、全文検索を行いたいカラムに対してインデックスを作成することに相当します。</p>
|
198
|
+
<p>それでは、Siteテーブルのtitleカラムを全文検索の対象とするべく、インデックス型のカラムを作成してみましょう。</p>
|
218
199
|
<p>実行例:</p>
|
219
200
|
<div class="highlight-none"><div class="highlight"><pre>> column_create --table Terms --name blog_title --flags COLUMN_INDEX|WITH_POSITION --type Site --source title
|
220
201
|
[[0,1317212713.68994,0.19739078],true]
|
221
202
|
</pre></div>
|
222
203
|
</div>
|
223
|
-
<p>Siteテーブルのtitleカラムを検索対象とする、'blog_title'という名前のインデックス型カラムをTermsテーブルに作成しました。インデックス対象となるテーブルをtypeに、インデックス対象となるカラムをsourceに指定します。実行例のflagsのCOLUMN_INDEX|WITH_POSITION
|
204
|
+
<p>Siteテーブルのtitleカラムを検索対象とする、'blog_title'という名前のインデックス型カラムをTermsテーブルに作成しました。インデックス対象となるテーブルをtypeに、インデックス対象となるカラムをsourceに指定します。実行例のflagsのCOLUMN_INDEX|WITH_POSITIONという値は、索引語の位置情報を格納するインデックス型のカラムであることを示しています。通常の全文検索インデックスでは、COLUMN_INDEX|WITH_POSITIONを指定してください。索引語の位置情報を格納する意味については、本チュートリアルでは触れません。</p>
|
224
205
|
</div>
|
225
206
|
<div class="section" id="load-data">
|
226
207
|
<h2>4.1.10. データのロード<a class="headerlink" href="#load-data" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
227
|
-
<p><a class="reference internal" href="../commands/load.html"><em>load</em></a> コマンドを使用します。loadコマンドでは、json
|
208
|
+
<p><a class="reference internal" href="../commands/load.html"><em>load</em></a> コマンドを使用します。loadコマンドでは、json形式で受け取ったデータをテーブルに格納します。</p>
|
209
|
+
<p>以下の例では9つのレコードをSiteテーブルに格納します。</p>
|
228
210
|
<p>実行例:</p>
|
229
211
|
<div class="highlight-none"><div class="highlight"><pre>> load --table Site
|
230
212
|
> [
|
@@ -250,7 +232,7 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
250
232
|
</div>
|
251
233
|
<div class="section" id="search-data">
|
252
234
|
<h2>4.1.11. データの検索<a class="headerlink" href="#search-data" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
253
|
-
<p
|
235
|
+
<p>データの準備もできたので全文検索を試してみたいところですが、その前に、'_id'カラムと'_key'カラムを用いた検索を行ってみましょう。これらのカラムは値を指定すればレコードが一意に決まります。</p>
|
254
236
|
<p>selectコマンドにおいて、queryパラメータを用いるとデータの検索を行うことができます。</p>
|
255
237
|
<p>実行例:</p>
|
256
238
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --query _id:1
|
@@ -266,18 +248,16 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
266
248
|
</div>
|
267
249
|
<p>queryパラメータに与えた「_key:"<a class="reference external" href="http://example.org/">http://example.org/</a>"」というのは、'_key'という名前のカラムに'"<a class="reference external" href="http://example.org/">http://example.org/</a>"'という値が入っているレコードを検索する、という意味です。</p>
|
268
250
|
</div>
|
269
|
-
<div class="section" id="
|
270
|
-
<h2>4.1.12. 全文検索<a class="headerlink" href="#
|
251
|
+
<div class="section" id="full-text-search">
|
252
|
+
<h2>4.1.12. 全文検索<a class="headerlink" href="#full-text-search" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
271
253
|
<p>queryパラメータでは、インデックスを用いた全文検索を行うこともできます。</p>
|
272
254
|
<p>実行例:</p>
|
273
255
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --query title:@this
|
274
256
|
[[0,1317212717.10303,0.000581287],[[[1],[["_id","UInt32"],["_key","ShortText"],["title","ShortText"]],[1,"http://example.org/","This is test record 1!"]]]]
|
275
257
|
</pre></div>
|
276
258
|
</div>
|
277
|
-
<p>title
|
278
|
-
<p>
|
279
|
-
<p>selectコマンドには、match_columnsというパラメータが存在します。</p>
|
280
|
-
<p>これを指定すると、query内にカラム名を指定しない条件があった場合、match_columnsで指定されたカラムに対しての検索であることを示します。[1]_</p>
|
259
|
+
<p>queryパラメータに与えた「title:@this」は、'title'という名前のカラムに'this'という文字列が含まれているレコードを検索する、という意味を持ちます。この例では1つのレコードが検索条件に該当しています。転置インデックスを作成するときにKEY_NORMALIZEという値を指定したため、大文字と小文字の違いが吸収されていることに注意してください。</p>
|
260
|
+
<p>selectコマンドには、match_columnsというパラメータが存在します。このパラメータはデフォルトで検索対象にするカラムを指定するもので、カラム名を指定しない検索条件にのみ適用されます。[1]_</p>
|
281
261
|
<p>match_columnsパラメータに'title'、queryパラメータに'this'という文字列を指定すると、上記のクエリと同じ結果を得ることができます。</p>
|
282
262
|
<p>実行例:</p>
|
283
263
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --match_columns title --query this
|
@@ -285,22 +265,20 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
285
265
|
</pre></div>
|
286
266
|
</div>
|
287
267
|
</div>
|
288
|
-
<div class="section" id="specify-output-
|
289
|
-
<h2>4.1.13. 出力カラムの指定<a class="headerlink" href="#specify-output-
|
290
|
-
<p>selectコマンドにおいて、output_columns
|
291
|
-
<p>複数のカラムを指定する場合は、カンマ(,)区切りで指定します。</p>
|
268
|
+
<div class="section" id="specify-output-columns">
|
269
|
+
<h2>4.1.13. 出力カラムの指定<a class="headerlink" href="#specify-output-columns" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
270
|
+
<p>selectコマンドにおいて、output_columnsパラメータを用いることで、検索結果に含めるカラムを指定することができます。複数のカラムを指定する場合は、カンマ(,)区切りで指定します。</p>
|
292
271
|
<p>実行例:</p>
|
293
272
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --output_columns _key,title,_score --query title:@test
|
294
273
|
[[0,1317212717.50916,0.00060758],[[[9],[["_key","ShortText"],["title","ShortText"],["_score","Int32"]],["http://example.org/","This is test record 1!",1],["http://example.net/","test record 2.",1],["http://example.com/","test test record three.",2],["http://example.net/afr","test record four.",1],["http://example.org/aba","test test test record five.",3],["http://example.com/rab","test test test test record six.",4],["http://example.net/atv","test test test record seven.",3],["http://example.org/gat","test test record eight.",2],["http://example.com/vdw","test test record nine.",2]]]]
|
295
274
|
</pre></div>
|
296
275
|
</div>
|
297
|
-
<p
|
276
|
+
<p>この例では、「_score」という名前のカラムを含む3つのカラムを指定しています。「_score」という名前のカラムはgroongaの検索結果に含まれるカラムです。このカラムには、全文検索の条件に合致する文書ほど高い数値が入ります。</p>
|
298
277
|
</div>
|
299
|
-
<div class="section" id="
|
300
|
-
<h2>4.1.14. 表示範囲指定<a class="headerlink" href="#
|
301
|
-
<p>selectコマンドにおいて、offset,limit
|
302
|
-
<p>offsetパラメータには、検索結果を返す始点を指定します。1件目から結果を返す場合には、0
|
303
|
-
<p>limitパラメータには、検索結果を何件表示するのかを指定します。</p>
|
278
|
+
<div class="section" id="specify-output-ranges">
|
279
|
+
<h2>4.1.14. 表示範囲指定<a class="headerlink" href="#specify-output-ranges" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
280
|
+
<p>selectコマンドにおいて、offset,limitパラメータを用いることで、検索結果から指定された範囲のみを表示することができます。大量の検索結果をページで分けて、1ページ分のみを表示したい場合に有用です。</p>
|
281
|
+
<p>offsetパラメータには、検索結果を返す始点を指定します。1件目から結果を返す場合には、0を指定します。limitパラメータには、検索結果の表示件数を指定します。</p>
|
304
282
|
<p>実行例:</p>
|
305
283
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --offset 0 --limit 3
|
306
284
|
[[0,1317212717.71574,0.000238544],[[[9],[["_id","UInt32"],["_key","ShortText"],["title","ShortText"]],[1,"http://example.org/","This is test record 1!"],[2,"http://example.net/","test record 2."],[3,"http://example.com/","test test record three."]]]]
|
@@ -313,8 +291,8 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
313
291
|
</div>
|
314
292
|
<div class="section" id="sort">
|
315
293
|
<h2>4.1.15. 並び替え<a class="headerlink" href="#sort" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
316
|
-
<p>selectコマンドにおいて、sortby
|
317
|
-
<p>sortby
|
294
|
+
<p>selectコマンドにおいて、sortbyパラメータを用いることで、検索結果を並び替えることができます。</p>
|
295
|
+
<p>sortbyパラメータにカラム名を指定することで、そのカラムの値で昇順にソートします。また、カラム名の前にハイフン(-)を付けることで、降順にソートすることもできます。</p>
|
318
296
|
<p>実行例:</p>
|
319
297
|
<div class="highlight-none"><div class="highlight"><pre>> select --table Site --sortby -_id
|
320
298
|
[[0,1317212718.32565,0.000385755],[[[9],[["_id","UInt32"],["_key","ShortText"],["title","ShortText"]],[9,"http://example.com/vdw","test test record nine."],[8,"http://example.org/gat","test test record eight."],[7,"http://example.net/atv","test test test record seven."],[6,"http://example.com/rab","test test test test record six."],[5,"http://example.org/aba","test test test record five."],[4,"http://example.net/afr","test record four."],[3,"http://example.com/","test test record three."],[2,"http://example.net/","test record 2."],[1,"http://example.org/","This is test record 1!"]]]]
|
@@ -351,20 +329,20 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
351
329
|
<h3><a href="../index.html">目次</a></h3>
|
352
330
|
<ul>
|
353
331
|
<li><a class="reference internal" href="#">4.1. 基本的な操作</a><ul>
|
354
|
-
<li><a class="reference internal" href="#create-database">4.1.1.
|
355
|
-
<li><a class="reference internal" href="#operate-database">4.1.2.
|
356
|
-
<li><a class="reference internal" href="#
|
357
|
-
<li><a class="reference internal" href="#
|
358
|
-
<li><a class="reference internal" href="#create-table">4.1.5. テーブルの作成</a></li>
|
359
|
-
<li><a class="reference internal" href="#
|
360
|
-
<li><a class="reference internal" href="#create-
|
361
|
-
<li><a class="reference internal" href="#create-
|
362
|
-
<li><a class="reference internal" href="#create-index-column-
|
332
|
+
<li><a class="reference internal" href="#create-a-database">4.1.1. データベースの作成</a></li>
|
333
|
+
<li><a class="reference internal" href="#operate-a-database">4.1.2. データベースの操作</a></li>
|
334
|
+
<li><a class="reference internal" href="#command-format">4.1.3. コマンドの書式</a></li>
|
335
|
+
<li><a class="reference internal" href="#basic-commands">4.1.4. 主なコマンド</a></li>
|
336
|
+
<li><a class="reference internal" href="#create-a-table">4.1.5. テーブルの作成</a></li>
|
337
|
+
<li><a class="reference internal" href="#view-a-table">4.1.6. テーブルの表示</a></li>
|
338
|
+
<li><a class="reference internal" href="#create-a-column">4.1.7. カラムの作成</a></li>
|
339
|
+
<li><a class="reference internal" href="#create-a-lexicon-table-for-full-text-searches">4.1.8. 全文検索用の語彙表の作成</a></li>
|
340
|
+
<li><a class="reference internal" href="#create-an-index-column-for-full-text-search">4.1.9. 全文検索用のインデックスカラムの作成</a></li>
|
363
341
|
<li><a class="reference internal" href="#load-data">4.1.10. データのロード</a></li>
|
364
342
|
<li><a class="reference internal" href="#search-data">4.1.11. データの検索</a></li>
|
365
|
-
<li><a class="reference internal" href="#
|
366
|
-
<li><a class="reference internal" href="#specify-output-
|
367
|
-
<li><a class="reference internal" href="#
|
343
|
+
<li><a class="reference internal" href="#full-text-search">4.1.12. 全文検索</a></li>
|
344
|
+
<li><a class="reference internal" href="#specify-output-columns">4.1.13. 出力カラムの指定</a></li>
|
345
|
+
<li><a class="reference internal" href="#specify-output-ranges">4.1.14. 表示範囲指定</a></li>
|
368
346
|
<li><a class="reference internal" href="#sort">4.1.15. 並び替え</a></li>
|
369
347
|
</ul>
|
370
348
|
</li>
|
@@ -384,7 +362,7 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
384
362
|
<div id="searchbox" style="display: none">
|
385
363
|
<h3>クイック検索</h3>
|
386
364
|
<form class="search" action="../search.html" method="get">
|
387
|
-
<input type="text" name="q"
|
365
|
+
<input type="text" name="q" />
|
388
366
|
<input type="submit" value="検索" />
|
389
367
|
<input type="hidden" name="check_keywords" value="yes" />
|
390
368
|
<input type="hidden" name="area" value="default" />
|
@@ -410,12 +388,12 @@ Form2: COMMAND --ARAGUMENT1 VALUE1 --ARGUMENT2 VALUE2 ..
|
|
410
388
|
<li class="right" >
|
411
389
|
<a href="../tutorial.html" title="4. チュートリアル"
|
412
390
|
>前へ</a> |</li>
|
413
|
-
<li><a href="../index.html">groonga v1.2.
|
391
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
414
392
|
<li><a href="../tutorial.html" >4. チュートリアル</a> »</li>
|
415
393
|
</ul>
|
416
394
|
</div>
|
417
395
|
<div class="footer">
|
418
|
-
© Copyright 2009-
|
396
|
+
© Copyright 2009-2012, Brazil, Inc.
|
419
397
|
</div>
|
420
398
|
</body>
|
421
399
|
</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>4.9. 全文検索の語彙表に対する追加情報 — groonga v1.2.
|
12
|
+
<title>4.9. 全文検索の語彙表に対する追加情報 — 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,7 +28,7 @@
|
|
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.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
32
|
<link rel="up" title="4. チュートリアル" href="../tutorial.html" />
|
33
33
|
<link rel="next" title="4.10. マイクロブログ検索システムの作成" href="micro_blog.html" />
|
34
34
|
<link rel="prev" title="4.8. パトリシア木による前方一致検索" href="patricia_trie.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="patricia_trie.html" title="4.8. パトリシア木による前方一致検索"
|
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="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -99,7 +99,7 @@
|
|
99
99
|
<div id="searchbox" style="display: none">
|
100
100
|
<h3>クイック検索</h3>
|
101
101
|
<form class="search" action="../search.html" method="get">
|
102
|
-
<input type="text" name="q"
|
102
|
+
<input type="text" name="q" />
|
103
103
|
<input type="submit" value="検索" />
|
104
104
|
<input type="hidden" name="check_keywords" value="yes" />
|
105
105
|
<input type="hidden" name="area" value="default" />
|
@@ -125,12 +125,12 @@
|
|
125
125
|
<li class="right" >
|
126
126
|
<a href="patricia_trie.html" title="4.8. パトリシア木による前方一致検索"
|
127
127
|
>前へ</a> |</li>
|
128
|
-
<li><a href="../index.html">groonga v1.2.
|
128
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
129
129
|
<li><a href="../tutorial.html" >4. チュートリアル</a> »</li>
|
130
130
|
</ul>
|
131
131
|
</div>
|
132
132
|
<div class="footer">
|
133
|
-
© Copyright 2009-
|
133
|
+
© Copyright 2009-2012, Brazil, Inc.
|
134
134
|
</div>
|
135
135
|
</body>
|
136
136
|
</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>4.7. match_columnsパラメータ — groonga v1.2.
|
12
|
+
<title>4.7. match_columnsパラメータ — 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,7 +28,7 @@
|
|
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.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
32
|
<link rel="up" title="4. チュートリアル" href="../tutorial.html" />
|
33
33
|
<link rel="next" title="4.8. パトリシア木による前方一致検索" href="patricia_trie.html" />
|
34
34
|
<link rel="prev" title="4.6. タグ検索・参照関係の逆引き" href="index.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="index.html" title="4.6. タグ検索・参照関係の逆引き"
|
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="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -197,7 +197,7 @@
|
|
197
197
|
<div id="searchbox" style="display: none">
|
198
198
|
<h3>クイック検索</h3>
|
199
199
|
<form class="search" action="../search.html" method="get">
|
200
|
-
<input type="text" name="q"
|
200
|
+
<input type="text" name="q" />
|
201
201
|
<input type="submit" value="検索" />
|
202
202
|
<input type="hidden" name="check_keywords" value="yes" />
|
203
203
|
<input type="hidden" name="area" value="default" />
|
@@ -223,12 +223,12 @@
|
|
223
223
|
<li class="right" >
|
224
224
|
<a href="index.html" title="4.6. タグ検索・参照関係の逆引き"
|
225
225
|
>前へ</a> |</li>
|
226
|
-
<li><a href="../index.html">groonga v1.2.
|
226
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
227
227
|
<li><a href="../tutorial.html" >4. チュートリアル</a> »</li>
|
228
228
|
</ul>
|
229
229
|
</div>
|
230
230
|
<div class="footer">
|
231
|
-
© Copyright 2009-
|
231
|
+
© Copyright 2009-2012, Brazil, Inc.
|
232
232
|
</div>
|
233
233
|
</body>
|
234
234
|
</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>4.10. マイクロブログ検索システムの作成 — groonga v1.2.
|
12
|
+
<title>4.10. マイクロブログ検索システムの作成 — 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,7 +28,7 @@
|
|
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.
|
31
|
+
<link rel="top" title="groonga v1.2.9ドキュメント" href="../index.html" />
|
32
32
|
<link rel="up" title="4. チュートリアル" href="../tutorial.html" />
|
33
33
|
<link rel="next" title="4.11. クエリ拡張" href="query_expansion.html" />
|
34
34
|
<link rel="prev" title="4.9. 全文検索の語彙表に対する追加情報" href="lexicon.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="lexicon.html" title="4.9. 全文検索の語彙表に対する追加情報"
|
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="../tutorial.html" accesskey="U">4. チュートリアル</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -443,7 +443,7 @@ load --table Comments
|
|
443
443
|
<div id="searchbox" style="display: none">
|
444
444
|
<h3>クイック検索</h3>
|
445
445
|
<form class="search" action="../search.html" method="get">
|
446
|
-
<input type="text" name="q"
|
446
|
+
<input type="text" name="q" />
|
447
447
|
<input type="submit" value="検索" />
|
448
448
|
<input type="hidden" name="check_keywords" value="yes" />
|
449
449
|
<input type="hidden" name="area" value="default" />
|
@@ -469,12 +469,12 @@ load --table Comments
|
|
469
469
|
<li class="right" >
|
470
470
|
<a href="lexicon.html" title="4.9. 全文検索の語彙表に対する追加情報"
|
471
471
|
>前へ</a> |</li>
|
472
|
-
<li><a href="../index.html">groonga v1.2.
|
472
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
473
473
|
<li><a href="../tutorial.html" >4. チュートリアル</a> »</li>
|
474
474
|
</ul>
|
475
475
|
</div>
|
476
476
|
<div class="footer">
|
477
|
-
© Copyright 2009-
|
477
|
+
© Copyright 2009-2012, Brazil, Inc.
|
478
478
|
</div>
|
479
479
|
</body>
|
480
480
|
</html>
|