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>8.1. 検索 — groonga v1.2.
|
12
|
+
<title>8.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="8. 仕様" href="../spec.html" />
|
33
33
|
<link rel="next" title="9. 制限事項" href="../limitations.html" />
|
34
34
|
<link rel="prev" title="8. 仕様" href="../spec.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="../spec.html" title="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="../spec.html" accesskey="U">8. 仕様</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -188,7 +188,7 @@
|
|
188
188
|
<div id="searchbox" style="display: none">
|
189
189
|
<h3>クイック検索</h3>
|
190
190
|
<form class="search" action="../search.html" method="get">
|
191
|
-
<input type="text" name="q"
|
191
|
+
<input type="text" name="q" />
|
192
192
|
<input type="submit" value="検索" />
|
193
193
|
<input type="hidden" name="check_keywords" value="yes" />
|
194
194
|
<input type="hidden" name="area" value="default" />
|
@@ -214,12 +214,12 @@
|
|
214
214
|
<li class="right" >
|
215
215
|
<a href="../spec.html" title="8. 仕様"
|
216
216
|
>前へ</a> |</li>
|
217
|
-
<li><a href="../index.html">groonga v1.2.
|
217
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
218
218
|
<li><a href="../spec.html" >8. 仕様</a> »</li>
|
219
219
|
</ul>
|
220
220
|
</div>
|
221
221
|
<div class="footer">
|
222
|
-
© Copyright 2009-
|
222
|
+
© Copyright 2009-2012, Brazil, Inc.
|
223
223
|
</div>
|
224
224
|
</body>
|
225
225
|
</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>8. 仕様 — groonga v1.2.
|
12
|
+
<title>8. 仕様 — 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,9 +28,9 @@
|
|
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="next" title="8.1. 検索" href="spec/search.html" />
|
33
|
-
<link rel="prev" title="7.
|
33
|
+
<link rel="prev" title="7.8. Log" href="log.html" />
|
34
34
|
</head>
|
35
35
|
<body>
|
36
36
|
<div class="header">
|
@@ -60,9 +60,9 @@
|
|
60
60
|
<a href="spec/search.html" title="8.1. 検索"
|
61
61
|
accesskey="N">次へ</a> |</li>
|
62
62
|
<li class="right" >
|
63
|
-
<a href="log.html" title="7.
|
63
|
+
<a href="log.html" title="7.8. Log"
|
64
64
|
accesskey="P">前へ</a> |</li>
|
65
|
-
<li><a href="index.html">groonga v1.2.
|
65
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
66
66
|
</ul>
|
67
67
|
</div>
|
68
68
|
|
@@ -88,7 +88,7 @@
|
|
88
88
|
<div class="sphinxsidebarwrapper">
|
89
89
|
<h4>前のトピックへ</h4>
|
90
90
|
<p class="topless"><a href="log.html"
|
91
|
-
title="前の章へ">7.
|
91
|
+
title="前の章へ">7.8. Log</a></p>
|
92
92
|
<h4>次のトピックへ</h4>
|
93
93
|
<p class="topless"><a href="spec/search.html"
|
94
94
|
title="次の章へ">8.1. 検索</a></p>
|
@@ -100,7 +100,7 @@
|
|
100
100
|
<div id="searchbox" style="display: none">
|
101
101
|
<h3>クイック検索</h3>
|
102
102
|
<form class="search" action="search.html" method="get">
|
103
|
-
<input type="text" name="q"
|
103
|
+
<input type="text" name="q" />
|
104
104
|
<input type="submit" value="検索" />
|
105
105
|
<input type="hidden" name="check_keywords" value="yes" />
|
106
106
|
<input type="hidden" name="area" value="default" />
|
@@ -124,13 +124,13 @@
|
|
124
124
|
<a href="spec/search.html" title="8.1. 検索"
|
125
125
|
>次へ</a> |</li>
|
126
126
|
<li class="right" >
|
127
|
-
<a href="log.html" title="7.
|
127
|
+
<a href="log.html" title="7.8. Log"
|
128
128
|
>前へ</a> |</li>
|
129
|
-
<li><a href="index.html">groonga v1.2.
|
129
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</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>5.3. 補完 — groonga v1.2.
|
12
|
+
<title>5.3. 補完 — 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="5. サジェスト" href="../suggest.html" />
|
33
33
|
<link rel="next" title="5.4. 補正" href="correction.html" />
|
34
34
|
<link rel="prev" title="5.2. チュートリアル" href="tutorial.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="tutorial.html" title="5.2. チュートリアル"
|
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="../suggest.html" accesskey="U">5. サジェスト</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -290,7 +290,7 @@
|
|
290
290
|
<div id="searchbox" style="display: none">
|
291
291
|
<h3>クイック検索</h3>
|
292
292
|
<form class="search" action="../search.html" method="get">
|
293
|
-
<input type="text" name="q"
|
293
|
+
<input type="text" name="q" />
|
294
294
|
<input type="submit" value="検索" />
|
295
295
|
<input type="hidden" name="check_keywords" value="yes" />
|
296
296
|
<input type="hidden" name="area" value="default" />
|
@@ -316,12 +316,12 @@
|
|
316
316
|
<li class="right" >
|
317
317
|
<a href="tutorial.html" title="5.2. チュートリアル"
|
318
318
|
>前へ</a> |</li>
|
319
|
-
<li><a href="../index.html">groonga v1.2.
|
319
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
320
320
|
<li><a href="../suggest.html" >5. サジェスト</a> »</li>
|
321
321
|
</ul>
|
322
322
|
</div>
|
323
323
|
<div class="footer">
|
324
|
-
© Copyright 2009-
|
324
|
+
© Copyright 2009-2012, Brazil, Inc.
|
325
325
|
</div>
|
326
326
|
</body>
|
327
327
|
</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>5.4. 補正 — groonga v1.2.
|
12
|
+
<title>5.4. 補正 — 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="5. サジェスト" href="../suggest.html" />
|
33
33
|
<link rel="next" title="5.5. 提案" href="suggestion.html" />
|
34
34
|
<link rel="prev" title="5.3. 補完" href="completion.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="completion.html" title="5.3. 補完"
|
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="../suggest.html" accesskey="U">5. サジェスト</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -217,7 +217,7 @@
|
|
217
217
|
<div id="searchbox" style="display: none">
|
218
218
|
<h3>クイック検索</h3>
|
219
219
|
<form class="search" action="../search.html" method="get">
|
220
|
-
<input type="text" name="q"
|
220
|
+
<input type="text" name="q" />
|
221
221
|
<input type="submit" value="検索" />
|
222
222
|
<input type="hidden" name="check_keywords" value="yes" />
|
223
223
|
<input type="hidden" name="area" value="default" />
|
@@ -243,12 +243,12 @@
|
|
243
243
|
<li class="right" >
|
244
244
|
<a href="completion.html" title="5.3. 補完"
|
245
245
|
>前へ</a> |</li>
|
246
|
-
<li><a href="../index.html">groonga v1.2.
|
246
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
247
247
|
<li><a href="../suggest.html" >5. サジェスト</a> »</li>
|
248
248
|
</ul>
|
249
249
|
</div>
|
250
250
|
<div class="footer">
|
251
|
-
© Copyright 2009-
|
251
|
+
© Copyright 2009-2012, Brazil, Inc.
|
252
252
|
</div>
|
253
253
|
</body>
|
254
254
|
</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>5.1. はじめに — groonga v1.2.
|
12
|
+
<title>5.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="5. サジェスト" href="../suggest.html" />
|
33
33
|
<link rel="next" title="5.2. チュートリアル" href="tutorial.html" />
|
34
34
|
<link rel="prev" title="5. サジェスト" href="../suggest.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="../suggest.html" title="5. サジェスト"
|
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="../suggest.html" accesskey="U">5. サジェスト</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -188,7 +188,7 @@ groonga</td>
|
|
188
188
|
<div id="searchbox" style="display: none">
|
189
189
|
<h3>クイック検索</h3>
|
190
190
|
<form class="search" action="../search.html" method="get">
|
191
|
-
<input type="text" name="q"
|
191
|
+
<input type="text" name="q" />
|
192
192
|
<input type="submit" value="検索" />
|
193
193
|
<input type="hidden" name="check_keywords" value="yes" />
|
194
194
|
<input type="hidden" name="area" value="default" />
|
@@ -214,12 +214,12 @@ groonga</td>
|
|
214
214
|
<li class="right" >
|
215
215
|
<a href="../suggest.html" title="5. サジェスト"
|
216
216
|
>前へ</a> |</li>
|
217
|
-
<li><a href="../index.html">groonga v1.2.
|
217
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
218
218
|
<li><a href="../suggest.html" >5. サジェスト</a> »</li>
|
219
219
|
</ul>
|
220
220
|
</div>
|
221
221
|
<div class="footer">
|
222
|
-
© Copyright 2009-
|
222
|
+
© Copyright 2009-2012, Brazil, Inc.
|
223
223
|
</div>
|
224
224
|
</body>
|
225
225
|
</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>5.5. 提案 — groonga v1.2.
|
12
|
+
<title>5.5. 提案 — 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="5. サジェスト" href="../suggest.html" />
|
33
33
|
<link rel="next" title="6. 位置情報検索" href="../geolocation_search.html" />
|
34
34
|
<link rel="prev" title="5.4. 補正" href="correction.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="correction.html" title="5.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="../suggest.html" accesskey="U">5. サジェスト</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -211,7 +211,7 @@
|
|
211
211
|
<div id="searchbox" style="display: none">
|
212
212
|
<h3>クイック検索</h3>
|
213
213
|
<form class="search" action="../search.html" method="get">
|
214
|
-
<input type="text" name="q"
|
214
|
+
<input type="text" name="q" />
|
215
215
|
<input type="submit" value="検索" />
|
216
216
|
<input type="hidden" name="check_keywords" value="yes" />
|
217
217
|
<input type="hidden" name="area" value="default" />
|
@@ -237,12 +237,12 @@
|
|
237
237
|
<li class="right" >
|
238
238
|
<a href="correction.html" title="5.4. 補正"
|
239
239
|
>前へ</a> |</li>
|
240
|
-
<li><a href="../index.html">groonga v1.2.
|
240
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
241
241
|
<li><a href="../suggest.html" >5. サジェスト</a> »</li>
|
242
242
|
</ul>
|
243
243
|
</div>
|
244
244
|
<div class="footer">
|
245
|
-
© Copyright 2009-
|
245
|
+
© Copyright 2009-2012, Brazil, Inc.
|
246
246
|
</div>
|
247
247
|
</body>
|
248
248
|
</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>5.2. チュートリアル — groonga v1.2.
|
12
|
+
<title>5.2. チュートリアル — 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="5. サジェスト" href="../suggest.html" />
|
33
33
|
<link rel="next" title="5.3. 補完" href="completion.html" />
|
34
34
|
<link rel="prev" title="5.1. はじめに" href="introduction.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="introduction.html" title="5.1. はじめに"
|
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="../suggest.html" accesskey="U">5. サジェスト</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -98,7 +98,7 @@
|
|
98
98
|
<div id="searchbox" style="display: none">
|
99
99
|
<h3>クイック検索</h3>
|
100
100
|
<form class="search" action="../search.html" method="get">
|
101
|
-
<input type="text" name="q"
|
101
|
+
<input type="text" name="q" />
|
102
102
|
<input type="submit" value="検索" />
|
103
103
|
<input type="hidden" name="check_keywords" value="yes" />
|
104
104
|
<input type="hidden" name="area" value="default" />
|
@@ -124,12 +124,12 @@
|
|
124
124
|
<li class="right" >
|
125
125
|
<a href="introduction.html" title="5.1. はじめに"
|
126
126
|
>前へ</a> |</li>
|
127
|
-
<li><a href="../index.html">groonga v1.2.
|
127
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
128
128
|
<li><a href="../suggest.html" >5. サジェスト</a> »</li>
|
129
129
|
</ul>
|
130
130
|
</div>
|
131
131
|
<div class="footer">
|
132
|
-
© Copyright 2009-
|
132
|
+
© Copyright 2009-2012, Brazil, Inc.
|
133
133
|
</div>
|
134
134
|
</body>
|
135
135
|
</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>5. サジェスト — groonga v1.2.
|
12
|
+
<title>5. サジェスト — 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="next" title="5.1. はじめに" href="suggest/introduction.html" />
|
33
33
|
<link rel="prev" title="4.11. クエリ拡張" href="tutorial/query_expansion.html" />
|
34
34
|
</head>
|
@@ -62,7 +62,7 @@
|
|
62
62
|
<li class="right" >
|
63
63
|
<a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
|
64
64
|
accesskey="P">前へ</a> |</li>
|
65
|
-
<li><a href="index.html">groonga v1.2.
|
65
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
66
66
|
</ul>
|
67
67
|
</div>
|
68
68
|
|
@@ -73,10 +73,6 @@
|
|
73
73
|
|
74
74
|
<div class="section" id="suggest">
|
75
75
|
<h1>5. サジェスト<a class="headerlink" href="#suggest" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
76
|
-
<div class="admonition note">
|
77
|
-
<p class="first admonition-title">ノート</p>
|
78
|
-
<p class="last">サジェスト機能の仕様はまだ確定していません。仕様は変更される可能性があります。</p>
|
79
|
-
</div>
|
80
76
|
<p>groongaにはサジェスト機能があります。このセクションではこの機能の使い方とどのように動作しているかを説明します。</p>
|
81
77
|
<div class="toctree-wrapper compound">
|
82
78
|
<ul>
|
@@ -130,7 +126,7 @@
|
|
130
126
|
<div id="searchbox" style="display: none">
|
131
127
|
<h3>クイック検索</h3>
|
132
128
|
<form class="search" action="search.html" method="get">
|
133
|
-
<input type="text" name="q"
|
129
|
+
<input type="text" name="q" />
|
134
130
|
<input type="submit" value="検索" />
|
135
131
|
<input type="hidden" name="check_keywords" value="yes" />
|
136
132
|
<input type="hidden" name="area" value="default" />
|
@@ -156,11 +152,11 @@
|
|
156
152
|
<li class="right" >
|
157
153
|
<a href="tutorial/query_expansion.html" title="4.11. クエリ拡張"
|
158
154
|
>前へ</a> |</li>
|
159
|
-
<li><a href="index.html">groonga v1.2.
|
155
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
160
156
|
</ul>
|
161
157
|
</div>
|
162
158
|
<div class="footer">
|
163
|
-
© Copyright 2009-
|
159
|
+
© Copyright 2009-2012, Brazil, Inc.
|
164
160
|
</div>
|
165
161
|
</body>
|
166
162
|
</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>10.1. 同じ検索キーワードなのに全文検索結果が異なる — groonga v1.2.
|
12
|
+
<title>10.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="10. トラブルシューティング" href="../troubleshooting.html" />
|
33
33
|
<link rel="next" title="11. groongaへのコントリビュート方法" href="../contribution.html" />
|
34
34
|
<link rel="prev" title="10. トラブルシューティング" href="../troubleshooting.html" />
|
@@ -63,7 +63,7 @@
|
|
63
63
|
<li class="right" >
|
64
64
|
<a href="../troubleshooting.html" title="10. トラブルシューティング"
|
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="../troubleshooting.html" accesskey="U">10. トラブルシューティング</a> »</li>
|
68
68
|
</ul>
|
69
69
|
</div>
|
@@ -218,7 +218,7 @@ column_create Bigram blog_body COLUMN_INDEX|WITH_POSITION Blogs body
|
|
218
218
|
<div id="searchbox" style="display: none">
|
219
219
|
<h3>クイック検索</h3>
|
220
220
|
<form class="search" action="../search.html" method="get">
|
221
|
-
<input type="text" name="q"
|
221
|
+
<input type="text" name="q" />
|
222
222
|
<input type="submit" value="検索" />
|
223
223
|
<input type="hidden" name="check_keywords" value="yes" />
|
224
224
|
<input type="hidden" name="area" value="default" />
|
@@ -244,12 +244,12 @@ column_create Bigram blog_body COLUMN_INDEX|WITH_POSITION Blogs body
|
|
244
244
|
<li class="right" >
|
245
245
|
<a href="../troubleshooting.html" title="10. トラブルシューティング"
|
246
246
|
>前へ</a> |</li>
|
247
|
-
<li><a href="../index.html">groonga v1.2.
|
247
|
+
<li><a href="../index.html">groonga v1.2.9ドキュメント</a> »</li>
|
248
248
|
<li><a href="../troubleshooting.html" >10. トラブルシューティング</a> »</li>
|
249
249
|
</ul>
|
250
250
|
</div>
|
251
251
|
<div class="footer">
|
252
|
-
© Copyright 2009-
|
252
|
+
© Copyright 2009-2012, Brazil, Inc.
|
253
253
|
</div>
|
254
254
|
</body>
|
255
255
|
</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>10. トラブルシューティング — groonga v1.2.
|
12
|
+
<title>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="next" title="10.1. 同じ検索キーワードなのに全文検索結果が異なる" href="troubleshooting/different_results_with_the_same_keyword.html" />
|
33
33
|
<link rel="prev" title="9. 制限事項" href="limitations.html" />
|
34
34
|
</head>
|
@@ -62,7 +62,7 @@
|
|
62
62
|
<li class="right" >
|
63
63
|
<a href="limitations.html" title="9. 制限事項"
|
64
64
|
accesskey="P">前へ</a> |</li>
|
65
|
-
<li><a href="index.html">groonga v1.2.
|
65
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
66
66
|
</ul>
|
67
67
|
</div>
|
68
68
|
|
@@ -106,7 +106,7 @@
|
|
106
106
|
<div id="searchbox" style="display: none">
|
107
107
|
<h3>クイック検索</h3>
|
108
108
|
<form class="search" action="search.html" method="get">
|
109
|
-
<input type="text" name="q"
|
109
|
+
<input type="text" name="q" />
|
110
110
|
<input type="submit" value="検索" />
|
111
111
|
<input type="hidden" name="check_keywords" value="yes" />
|
112
112
|
<input type="hidden" name="area" value="default" />
|
@@ -132,11 +132,11 @@
|
|
132
132
|
<li class="right" >
|
133
133
|
<a href="limitations.html" title="9. 制限事項"
|
134
134
|
>前へ</a> |</li>
|
135
|
-
<li><a href="index.html">groonga v1.2.
|
135
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
136
136
|
</ul>
|
137
137
|
</div>
|
138
138
|
<div class="footer">
|
139
|
-
© Copyright 2009-
|
139
|
+
© Copyright 2009-2012, Brazil, Inc.
|
140
140
|
</div>
|
141
141
|
</body>
|
142
142
|
</html>
|