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>News — groonga v1.2.
|
12
|
+
<title>News — groonga v1.2.9 documentation</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
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
28
28
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
29
29
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
30
|
-
<link rel="top" title="groonga v1.2.
|
30
|
+
<link rel="top" title="groonga v1.2.9 documentation" href="index.html" />
|
31
31
|
</head>
|
32
32
|
<body>
|
33
33
|
<div class="header">
|
@@ -53,7 +53,7 @@
|
|
53
53
|
<li class="right" style="margin-right: 10px">
|
54
54
|
<a href="genindex.html" title="General Index"
|
55
55
|
accesskey="I">index</a></li>
|
56
|
-
<li><a href="index.html">groonga v1.2.
|
56
|
+
<li><a href="index.html">groonga v1.2.9 documentation</a> »</li>
|
57
57
|
</ul>
|
58
58
|
</div>
|
59
59
|
|
@@ -64,56 +64,166 @@
|
|
64
64
|
|
65
65
|
<div class="section" id="news">
|
66
66
|
<h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
|
67
|
-
<div class="section" id="release-1-
|
68
|
-
<span id="release-1-
|
67
|
+
<div class="section" id="release-1-3-0-2012-01-29">
|
68
|
+
<span id="release-1-3-0"></span><h2>Release 1.3.0 - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="Permalink to this headline">¶</a></h2>
|
69
69
|
<div class="section" id="improvements">
|
70
70
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
71
71
|
<ul class="simple">
|
72
|
-
<li>
|
73
|
-
|
74
|
-
<li>
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
<li>
|
72
|
+
<li>Supported dynamic DB key table change by
|
73
|
+
GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
|
74
|
+
<li>Added <tt class="docutils literal"><span class="pre">--with-default-db-key</span></tt> configure option that
|
75
|
+
specifies the default DB key table.</li>
|
76
|
+
<li>Supported "" value for geo point data types. It's interpreted as "0x0".</li>
|
77
|
+
<li>Added column name to cast error message.</li>
|
78
|
+
<li>Inhibit file information for stdin on load error.</li>
|
79
|
+
<li>Enabled write-strings warnings and suppress those
|
80
|
+
warnings. [Suggested by montywi]</li>
|
81
|
+
<li>Marked MessagePack output format as supported. [#1215]</li>
|
82
|
+
<li>Added <tt class="docutils literal"><span class="pre">const</span></tt> to <tt class="docutils literal"><span class="pre">void</span> <span class="pre">*</span></tt> of <tt class="docutils literal"><span class="pre">*_set_value()</span></tt>.</li>
|
83
|
+
<li>Enabled warning flags on C and C++.</li>
|
84
|
+
<li>Supported <tt class="docutils literal"><span class="pre">--with-libevent</span></tt> without value configure option.</li>
|
85
|
+
<li><tt class="docutils literal"><span class="pre">grn_table_get()</span></tt> supported grn_db. [#1242]</li>
|
86
|
+
<li>[rpm] Removed needless groogna-munin-plugins dependency
|
87
|
+
from groonga-server. [#1251] [Suggested by Masaharu IWAI]</li>
|
88
|
+
<li>[rpm] Removed needless groogna-doc dependency
|
89
|
+
from groonga. [#1251] [Suggested by Masaharu IWAI]</li>
|
90
|
+
<li>[dat] Supported repair by <tt class="docutils literal"><span class="pre">grn_dat_repair()</span></tt>.</li>
|
91
|
+
<li><tt class="docutils literal"><span class="pre">grn_table_at()</span></tt> supported grn_db.</li>
|
92
|
+
<li>[suggest] Removed unstable mark.</li>
|
93
|
+
<li>[suggest][complete] Supported normalized value search in prefix-search.</li>
|
94
|
+
<li>Added experimental offline index build. It's disabled by
|
95
|
+
default for now. You can enable it by
|
96
|
+
USE_OFFLINE_INDEXER=yes environment variable.</li>
|
97
|
+
<li>Added internal API <tt class="docutils literal"><span class="pre">grn_obj_path_by_id()</span></tt> for mroonga.</li>
|
98
|
+
<li>[suggest][httpd] Passed unknown parameters to groonga.</li>
|
99
|
+
<li>[output][xml] Added a newline before <tt class="docutils literal"><span class="pre"></RESULT></span></tt> for readability.</li>
|
100
|
+
<li>[doc][output] Added documentation about output format type.</li>
|
101
|
+
<li>Added <tt class="docutils literal"><span class="pre">table_rename</span></tt>. [#1234]</li>
|
102
|
+
<li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
|
103
|
+
</ul>
|
104
|
+
</div>
|
105
|
+
<div class="section" id="thanks">
|
106
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
107
|
+
<ul class="simple">
|
108
|
+
<li>montywi</li>
|
109
|
+
<li>Masaharu IWAI</li>
|
110
|
+
</ul>
|
111
|
+
</div>
|
112
|
+
</div>
|
113
|
+
<div class="section" id="release-1-2-9-2011-12-29">
|
114
|
+
<span id="release-1-2-9"></span><h2>Release 1.2.9 - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="Permalink to this headline">¶</a></h2>
|
115
|
+
<div class="section" id="id1">
|
116
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
117
|
+
<ul class="simple">
|
118
|
+
<li>Supported Fedora 16.</li>
|
119
|
+
<li>Dropped Fedora 15 support.</li>
|
120
|
+
<li>[groonga] Improved the default server ID address to work
|
121
|
+
on unresolved host name environment. [Reported by @uzulla]</li>
|
122
|
+
<li>Supported MAP_HUGETLB.</li>
|
123
|
+
<li>[admin] Supported throughput chart.</li>
|
124
|
+
<li>Stopped adding nul character in <tt class="docutils literal"><span class="pre">grn_itoh()</span></tt>. [#1194]
|
125
|
+
[Reported by SHIDARA Yoji]</li>
|
126
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt>.</li>
|
127
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt>.</li>
|
128
|
+
<li>Supported string vector column for query expansion. [#1216]</li>
|
129
|
+
<li>Added <tt class="docutils literal"><span class="pre">--filter</span></tt> option to <a class="reference internal" href="commands/delete.html"><em>delete</em></a> to delete
|
130
|
+
many record at once. [#1225]</li>
|
131
|
+
<li>Supported approximate type customization for
|
132
|
+
<a class="reference internal" href="functions/geo_in_circle.html"><em>geo_in_circle</em></a> and <a class="reference internal" href="functions/geo_distance.html"><em>geo_distance</em></a>. [#1226]</li>
|
133
|
+
<li>Made <tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> and <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> are deprecated.</li>
|
134
|
+
<li>Changed to use <tt class="docutils literal"><span class="pre">null</span></tt> instead of <tt class="docutils literal"><span class="pre">""</span></tt> for empty geo
|
135
|
+
point value in JSON output.</li>
|
136
|
+
<li>Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]</li>
|
137
|
+
<li>Added missing newlines after drilldown result tags in XML output.</li>
|
138
|
+
<li>Supported truncate for grn_dat.</li>
|
139
|
+
<li>Supported longest common prefix search by grn_dat.</li>
|
140
|
+
</ul>
|
141
|
+
</div>
|
142
|
+
<div class="section" id="fixes">
|
143
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
144
|
+
<ul class="simple">
|
145
|
+
<li>[windows] Fixed inverted map type.</li>
|
146
|
+
<li>Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]</li>
|
147
|
+
<li>Fixed a problem that <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> reports wrongly
|
148
|
+
about MeCab. [#1209] [Patch by SHIDARA Yoji]</li>
|
149
|
+
<li>Added missing lock into <tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt>.</li>
|
150
|
+
<li>Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]</li>
|
151
|
+
<li>Fixed a problem that deleting SIS (Semi Infinite String)
|
152
|
+
may keep a garbage.</li>
|
153
|
+
</ul>
|
154
|
+
</div>
|
155
|
+
<div class="section" id="id2">
|
156
|
+
<h3>Thanks<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
157
|
+
<ul class="simple">
|
158
|
+
<li>@uzulla</li>
|
159
|
+
<li>Arnaud Fontaine</li>
|
160
|
+
<li>SHIDARA Yoji</li>
|
161
|
+
</ul>
|
162
|
+
</div>
|
163
|
+
</div>
|
164
|
+
<div class="section" id="release-1-2-8-2011-11-29">
|
165
|
+
<span id="release-1-2-8"></span><h2>Release 1.2.8 - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="Permalink to this headline">¶</a></h2>
|
166
|
+
<p>Object, table and column renamings are supported! These
|
167
|
+
features require database re-creation. You can re-create your
|
168
|
+
database by the following command:</p>
|
169
|
+
<div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump > db.dump
|
170
|
+
% groonga -n YOUR_NEW_DB < db.dump
|
171
|
+
</pre></div>
|
172
|
+
</div>
|
173
|
+
<div class="admonition note">
|
174
|
+
<p class="first admonition-title">Note</p>
|
175
|
+
<p class="last">Groonga 1.2.8 can open databases created by groonga 1.2.7
|
176
|
+
or earlier. But groonga 1.2.7 or earlier can't open
|
177
|
+
databases created by groonga 1.2.8 or later.</p>
|
178
|
+
</div>
|
179
|
+
<div class="section" id="id3">
|
180
|
+
<h3>Improvements<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
181
|
+
<ul class="simple">
|
182
|
+
<li>[grntest] Removed the upper limit to the number of bytes in one line.</li>
|
183
|
+
<li>[grntest] Added <tt class="docutils literal"><span class="pre">--pid-path</span></tt> option.</li>
|
79
184
|
<li>[deb] Enabled experimental zlib and lzo support.</li>
|
80
185
|
<li>[rpm] Enabled experimental zlib and lzo support.</li>
|
81
|
-
<li>
|
186
|
+
<li>Supports truncation. [#892]</li>
|
82
187
|
<li>Enabled grn_dat that is a read lock free double array implementation.</li>
|
83
188
|
<li>[pkg-config] Added groonga_version variable to groonga.pc.</li>
|
84
|
-
<li>Re-supported <
|
189
|
+
<li>Re-supported <tt class="docutils literal"><span class="pre">--disable-static</span></tt>. [groonga-dev,00612]
|
85
190
|
[Suggested by Kenichi Aramaki]</li>
|
86
191
|
<li>[munin] Stopped to install Munin plugins by default.</li>
|
87
192
|
<li>Stopped to install RedHat platform related files by default.</li>
|
88
|
-
<li>
|
193
|
+
<li>Supports object renaming. This requires DB re-creation. [#1167]</li>
|
89
194
|
<li>[munin] Added a Munin plugin that measures throughput. [#1171]</li>
|
90
195
|
<li>[geo] Improved geo_in_rectangle performance. The new
|
91
196
|
implementation will be 2x faster than the old
|
92
197
|
implementation in many cases. [#1173]</li>
|
93
198
|
<li>[macports] Moved groonga's MacPorts to the official
|
94
199
|
repository. [Imported by Hiroshi Umemoto]</li>
|
95
|
-
<li>[geo] Changed geo literal
|
96
|
-
|
97
|
-
<li>
|
98
|
-
|
200
|
+
<li>[geo] Changed the geo literal degree-to-msec conversion algorithm
|
201
|
+
to round-off from truncation.</li>
|
202
|
+
<li>Supports a table defrag. It defrags variable size value columns in
|
203
|
+
the table. [#1175]</li>
|
99
204
|
<li>Removed associated path on remove. [#1180]</li>
|
100
|
-
<li>[deb]
|
101
|
-
<li>[rpm]
|
102
|
-
<li>[windows]
|
205
|
+
<li>[deb] Supports i386.</li>
|
206
|
+
<li>[rpm] Supports i386.</li>
|
207
|
+
<li>[windows] Supports x86.</li>
|
103
208
|
</ul>
|
104
209
|
</div>
|
105
|
-
<div class="section" id="
|
106
|
-
<h3>Fixes<a class="headerlink" href="#
|
210
|
+
<div class="section" id="id4">
|
211
|
+
<h3>Fixes<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
107
212
|
<ul class="simple">
|
108
|
-
<li>Fixed a bug that
|
213
|
+
<li>Fixed a bug that groonga crashes when accessing a zlib/lzo compressed
|
214
|
+
column. Note that a compressed column access causes a memory leak. To
|
215
|
+
resolve this, we need to improve API. We will do it in the future.
|
216
|
+
[GtiHub#5][GtiHub#6] [Reported by Takayuki Yamaguchi]</li>
|
217
|
+
<li>Fixed a bug that unrelated column values are cleared in deletion.</li>
|
218
|
+
<li>Fixed a bug that a wrong index is used in sorting. [#766]
|
109
219
|
[Reported by Horikoshi Yuki]</li>
|
110
|
-
<li>[libedit] Fixed a bug that
|
220
|
+
<li>[libedit] Fixed a bug that necessary initialization is
|
111
221
|
omitted. [GitHub#7] [Patch by SHIDARA Yoji]</li>
|
112
222
|
<li>[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]</li>
|
113
223
|
</ul>
|
114
224
|
</div>
|
115
|
-
<div class="section" id="
|
116
|
-
<h3>Thanks<a class="headerlink" href="#
|
225
|
+
<div class="section" id="id5">
|
226
|
+
<h3>Thanks<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
117
227
|
<ul class="simple">
|
118
228
|
<li>Takayuki Yamaguchi</li>
|
119
229
|
<li>SHIDARA Yoji</li>
|
@@ -125,8 +235,8 @@ omitted. [GitHub#7] [Patch by SHIDARA Yoji]</li>
|
|
125
235
|
</div>
|
126
236
|
<div class="section" id="release-1-2-7-2011-10-29">
|
127
237
|
<span id="release-1-2-7"></span><h2>Release 1.2.7 - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="Permalink to this headline">¶</a></h2>
|
128
|
-
<div class="section" id="
|
129
|
-
<h3>Improvements<a class="headerlink" href="#
|
238
|
+
<div class="section" id="id6">
|
239
|
+
<h3>Improvements<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
130
240
|
<ul class="simple">
|
131
241
|
<li>[libedit] Added error check for wide character to
|
132
242
|
multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
@@ -137,14 +247,14 @@ multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
|
137
247
|
<li>[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system gcc.)</li>
|
138
248
|
</ul>
|
139
249
|
</div>
|
140
|
-
<div class="section" id="
|
141
|
-
<h3>Fixes<a class="headerlink" href="#
|
250
|
+
<div class="section" id="id7">
|
251
|
+
<h3>Fixes<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
142
252
|
<ul class="simple">
|
143
253
|
<li>Fixed a typo in document. [Reported by @soundkitchen]</li>
|
144
254
|
</ul>
|
145
255
|
</div>
|
146
|
-
<div class="section" id="
|
147
|
-
<h3>Thanks<a class="headerlink" href="#
|
256
|
+
<div class="section" id="id8">
|
257
|
+
<h3>Thanks<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
148
258
|
<ul class="simple">
|
149
259
|
<li>SHIDARA Yoji</li>
|
150
260
|
<li>@soundkitchen</li>
|
@@ -153,8 +263,8 @@ multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
|
153
263
|
</div>
|
154
264
|
<div class="section" id="release-1-2-6-2011-09-29">
|
155
265
|
<span id="release-1-2-6"></span><h2>Release 1.2.6 - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="Permalink to this headline">¶</a></h2>
|
156
|
-
<div class="section" id="
|
157
|
-
<h3>Improvements<a class="headerlink" href="#
|
266
|
+
<div class="section" id="id9">
|
267
|
+
<h3>Improvements<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
158
268
|
<ul class="simple">
|
159
269
|
<li>Improved error message on type cast.</li>
|
160
270
|
<li>Added geo point value validation on type cast.</li>
|
@@ -171,14 +281,14 @@ multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
|
171
281
|
Patch by SATOH Fumiyasu. GitHub#3</li>
|
172
282
|
</ul>
|
173
283
|
</div>
|
174
|
-
<div class="section" id="
|
175
|
-
<h3>Fixes<a class="headerlink" href="#
|
284
|
+
<div class="section" id="id10">
|
285
|
+
<h3>Fixes<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
176
286
|
<ul class="simple">
|
177
287
|
<li>Fixed a bug that geo point is loaded as broken value.</li>
|
178
288
|
</ul>
|
179
289
|
</div>
|
180
|
-
<div class="section" id="
|
181
|
-
<h3>Thanks<a class="headerlink" href="#
|
290
|
+
<div class="section" id="id11">
|
291
|
+
<h3>Thanks<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
182
292
|
<ul class="simple">
|
183
293
|
<li>SATOH Fumiyasu</li>
|
184
294
|
</ul>
|
@@ -186,8 +296,8 @@ Patch by SATOH Fumiyasu. GitHub#3</li>
|
|
186
296
|
</div>
|
187
297
|
<div class="section" id="release-1-2-5-2011-08-29">
|
188
298
|
<span id="release-1-2-5"></span><h2>Release 1.2.5 - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="Permalink to this headline">¶</a></h2>
|
189
|
-
<div class="section" id="
|
190
|
-
<h3>Improvements<a class="headerlink" href="#
|
299
|
+
<div class="section" id="id12">
|
300
|
+
<h3>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
191
301
|
<ul class="simple">
|
192
302
|
<li>Added experimental Windows installer support.</li>
|
193
303
|
<li>Accepted "#" and "-" as a valid name characters. #1043</li>
|
@@ -207,8 +317,8 @@ option that changes log line limitation for a file.</li>
|
|
207
317
|
<li>Exported grn_ctx_close(). #1035</li>
|
208
318
|
</ul>
|
209
319
|
</div>
|
210
|
-
<div class="section" id="
|
211
|
-
<h3>Fixes<a class="headerlink" href="#
|
320
|
+
<div class="section" id="id13">
|
321
|
+
<h3>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
212
322
|
<ul class="simple">
|
213
323
|
<li>Fixed a crash bug that invalid value is passed as match expression
|
214
324
|
argument in <a class="reference internal" href="commands/select.html"><em>select</em></a>. #1047</li>
|
@@ -218,10 +328,10 @@ argument in <a class="reference internal" href="commands/select.html"><em>select
|
|
218
328
|
</div>
|
219
329
|
<div class="section" id="release-1-2-4-2011-07-29">
|
220
330
|
<span id="release-1-2-4"></span><h2>Release 1.2.4 - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="Permalink to this headline">¶</a></h2>
|
221
|
-
<div class="section" id="
|
222
|
-
<h3>Improvements<a class="headerlink" href="#
|
331
|
+
<div class="section" id="id14">
|
332
|
+
<h3>Improvements<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
223
333
|
<ul class="simple">
|
224
|
-
<li>Re-supported <
|
334
|
+
<li>Re-supported <tt class="docutils literal"><span class="pre">*BSD</span></tt>. (Reported by OBATA Akio)</li>
|
225
335
|
<li>Improved sed related portability. (Suggested by OBATA Akio)</li>
|
226
336
|
<li>Re-supported Visual C++ 2008.</li>
|
227
337
|
<li>Supported <a class="reference internal" href="commands/check.html"><em>check</em></a> for hash table.</li>
|
@@ -232,11 +342,11 @@ for convenience. #1030</li>
|
|
232
342
|
<li>Supported ~/.groonga-history.</li>
|
233
343
|
</ul>
|
234
344
|
</div>
|
235
|
-
<div class="section" id="
|
236
|
-
<h3>Fixes<a class="headerlink" href="#
|
345
|
+
<div class="section" id="id15">
|
346
|
+
<h3>Fixes<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
237
347
|
<ul class="simple">
|
238
348
|
<li>Fixed broken libedit support. (Reported by Daiki Ueno)</li>
|
239
|
-
<li>Fixed source URL in <
|
349
|
+
<li>Fixed source URL in <tt class="docutils literal"><span class="pre">*.spec</span></tt> (Reported by Daiki Ueno)</li>
|
240
350
|
<li>Fixed patricia trie cursor returns wrong records.</li>
|
241
351
|
<li>Added missing database lock clear for grn_obj_clear_lock()
|
242
352
|
for database.</li>
|
@@ -244,8 +354,8 @@ for database.</li>
|
|
244
354
|
record deletion.</li>
|
245
355
|
</ul>
|
246
356
|
</div>
|
247
|
-
<div class="section" id="
|
248
|
-
<h3>Thanks<a class="headerlink" href="#
|
357
|
+
<div class="section" id="id16">
|
358
|
+
<h3>Thanks<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
249
359
|
<ul class="simple">
|
250
360
|
<li>OBATA Akio</li>
|
251
361
|
<li>Daiki Ueno</li>
|
@@ -254,8 +364,8 @@ record deletion.</li>
|
|
254
364
|
</div>
|
255
365
|
<div class="section" id="release-1-2-3-2011-06-29">
|
256
366
|
<span id="release-1-2-3"></span><h2>Release 1.2.3 - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="Permalink to this headline">¶</a></h2>
|
257
|
-
<div class="section" id="
|
258
|
-
<h3>Improvements<a class="headerlink" href="#
|
367
|
+
<div class="section" id="id17">
|
368
|
+
<h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
259
369
|
<ul class="simple">
|
260
370
|
<li>Added invalid table name check. #912</li>
|
261
371
|
<li>Added groonga-query-log-analyzer that analyze query log.</li>
|
@@ -265,15 +375,15 @@ record deletion.</li>
|
|
265
375
|
<li>Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)</li>
|
266
376
|
</ul>
|
267
377
|
</div>
|
268
|
-
<div class="section" id="
|
269
|
-
<h3>Fixes<a class="headerlink" href="#
|
378
|
+
<div class="section" id="id18">
|
379
|
+
<h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
270
380
|
<ul class="simple">
|
271
381
|
<li>fix get command crash. (Reported by OBATA Akio)</li>
|
272
382
|
<li>fix elapsed time overflow in query log. #944</li>
|
273
383
|
</ul>
|
274
384
|
</div>
|
275
|
-
<div class="section" id="
|
276
|
-
<h3>Thanks<a class="headerlink" href="#
|
385
|
+
<div class="section" id="id19">
|
386
|
+
<h3>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
277
387
|
<ul class="simple">
|
278
388
|
<li>OBATA Akio</li>
|
279
389
|
</ul>
|
@@ -281,8 +391,8 @@ record deletion.</li>
|
|
281
391
|
</div>
|
282
392
|
<div class="section" id="release-1-2-2-2011-05-29">
|
283
393
|
<span id="release-1-2-2"></span><h2>Release 1.2.2 - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="Permalink to this headline">¶</a></h2>
|
284
|
-
<div class="section" id="
|
285
|
-
<h3>Improvements<a class="headerlink" href="#
|
394
|
+
<div class="section" id="id20">
|
395
|
+
<h3>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
286
396
|
<ul class="simple">
|
287
397
|
<li>Added packages for Ubuntu 11.04 Natty Narwhal.</li>
|
288
398
|
<li>Removed packages for Ubuntu 10.10 Maverick Meerkat.</li>
|
@@ -309,25 +419,25 @@ grn_plugin_get_suffix() API.</li>
|
|
309
419
|
<li>Showed invalid name context in error message. #935</li>
|
310
420
|
</ul>
|
311
421
|
</div>
|
312
|
-
<div class="section" id="
|
313
|
-
<h3>Fixes<a class="headerlink" href="#
|
422
|
+
<div class="section" id="id21">
|
423
|
+
<h3>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
314
424
|
<ul class="simple">
|
315
425
|
<li>Fixed a data breaking bug on multi process update. #890</li>
|
316
426
|
</ul>
|
317
427
|
</div>
|
318
428
|
</div>
|
319
|
-
<div class="section" id="id21">
|
320
|
-
<h2>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h2>
|
321
429
|
<div class="section" id="id22">
|
322
|
-
<
|
430
|
+
<h2>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
|
431
|
+
<div class="section" id="id23">
|
432
|
+
<h3>改良<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
323
433
|
<ul class="simple">
|
324
434
|
<li>suggestコマンドにthresholdパラメーターを追加。#895</li>
|
325
435
|
<li>suggestのHTTPサーバにlimitパラメーターを追加。#899</li>
|
326
436
|
<li>grntest: SIGINTでの中断に対応。</li>
|
327
437
|
</ul>
|
328
438
|
</div>
|
329
|
-
<div class="section" id="
|
330
|
-
<h3>修正<a class="headerlink" href="#
|
439
|
+
<div class="section" id="id24">
|
440
|
+
<h3>修正<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
331
441
|
<ul class="simple">
|
332
442
|
<li>同時に複数のデータベースを開いているとき、1つでもデータベー
|
333
443
|
スを閉じると関連するプラグインも閉じられてしまう問題を修正。 #894</li>
|
@@ -336,18 +446,18 @@ grn_plugin_get_suffix() API.</li>
|
|
336
446
|
<li>チュートリアル中のtypoを修正。(moozさんが修正)</li>
|
337
447
|
</ul>
|
338
448
|
</div>
|
339
|
-
<div class="section" id="
|
340
|
-
<h3>感謝<a class="headerlink" href="#
|
449
|
+
<div class="section" id="id25">
|
450
|
+
<h3>感謝<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
341
451
|
<ul class="simple">
|
342
452
|
<li>ICHII Takashiさん</li>
|
343
453
|
<li>moozさん</li>
|
344
454
|
</ul>
|
345
455
|
</div>
|
346
456
|
</div>
|
347
|
-
<div class="section" id="id25">
|
348
|
-
<h2>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h2>
|
349
457
|
<div class="section" id="id26">
|
350
|
-
<
|
458
|
+
<h2>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h2>
|
459
|
+
<div class="section" id="id27">
|
460
|
+
<h3>改良<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
351
461
|
<ul class="simple">
|
352
462
|
<li>MacPortsでのインストールドキュメントを追加。</li>
|
353
463
|
<li>Homebrewでのインストールドキュメントを追加。</li>
|
@@ -363,8 +473,8 @@ grn_plugin_get_suffix() API.</li>
|
|
363
473
|
だし、ログには残る。 #893</li>
|
364
474
|
</ul>
|
365
475
|
</div>
|
366
|
-
<div class="section" id="
|
367
|
-
<h3>修正<a class="headerlink" href="#
|
476
|
+
<div class="section" id="id28">
|
477
|
+
<h3>修正<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
368
478
|
<ul class="simple">
|
369
479
|
<li>autoconf 2.59環境において、ファイルシステムのルート直下に
|
370
480
|
groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
@@ -382,22 +492,22 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
382
492
|
<li><a class="reference internal" href="commands/load.html"><em>load</em></a> でクラッシュする問題を修正。 #661</li>
|
383
493
|
</ul>
|
384
494
|
</div>
|
385
|
-
<div class="section" id="
|
386
|
-
<h3>実験的<a class="headerlink" href="#
|
495
|
+
<div class="section" id="id29">
|
496
|
+
<h3>実験的<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
387
497
|
<ul class="simple">
|
388
498
|
<li>grn_table_truncate()を追加。(実験的。問題あり)</li>
|
389
499
|
<li>truncateコマンドを追加。(実験的。問題あり) #888</li>
|
390
500
|
</ul>
|
391
501
|
</div>
|
392
|
-
<div class="section" id="
|
393
|
-
<h3>感謝<a class="headerlink" href="#
|
502
|
+
<div class="section" id="id30">
|
503
|
+
<h3>感謝<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
394
504
|
<ul class="simple">
|
395
505
|
<li>@tomotaka_itoさん</li>
|
396
506
|
</ul>
|
397
507
|
</div>
|
398
508
|
</div>
|
399
|
-
<div class="section" id="
|
400
|
-
<h2>過去のリリース<a class="headerlink" href="#
|
509
|
+
<div class="section" id="id31">
|
510
|
+
<h2>過去のリリース<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h2>
|
401
511
|
<div class="toctree-wrapper compound">
|
402
512
|
<ul>
|
403
513
|
<li class="toctree-l1"><a class="reference internal" href="news/1.1.x.html">バージョン1.1.xのお知らせ</a><ul>
|
@@ -451,60 +561,71 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
451
561
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
452
562
|
<ul>
|
453
563
|
<li><a class="reference internal" href="#">News</a><ul>
|
454
|
-
<li><a class="reference internal" href="#release-1-
|
564
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
|
455
565
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
456
|
-
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
457
566
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
458
567
|
</ul>
|
459
568
|
</li>
|
460
|
-
<li><a class="reference internal" href="#release-1-2-
|
569
|
+
<li><a class="reference internal" href="#release-1-2-9-2011-12-29">Release 1.2.9 - 2011/12/29</a><ul>
|
461
570
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
462
|
-
<li><a class="reference internal" href="#
|
463
|
-
<li><a class="reference internal" href="#
|
571
|
+
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
572
|
+
<li><a class="reference internal" href="#id2">Thanks</a></li>
|
573
|
+
</ul>
|
574
|
+
</li>
|
575
|
+
<li><a class="reference internal" href="#release-1-2-8-2011-11-29">Release 1.2.8 - 2011/11/29</a><ul>
|
576
|
+
<li><a class="reference internal" href="#id3">Improvements</a></li>
|
577
|
+
<li><a class="reference internal" href="#id4">Fixes</a></li>
|
578
|
+
<li><a class="reference internal" href="#id5">Thanks</a></li>
|
579
|
+
</ul>
|
580
|
+
</li>
|
581
|
+
<li><a class="reference internal" href="#release-1-2-7-2011-10-29">Release 1.2.7 - 2011/10/29</a><ul>
|
582
|
+
<li><a class="reference internal" href="#id6">Improvements</a></li>
|
583
|
+
<li><a class="reference internal" href="#id7">Fixes</a></li>
|
584
|
+
<li><a class="reference internal" href="#id8">Thanks</a></li>
|
464
585
|
</ul>
|
465
586
|
</li>
|
466
587
|
<li><a class="reference internal" href="#release-1-2-6-2011-09-29">Release 1.2.6 - 2011/09/29</a><ul>
|
467
|
-
<li><a class="reference internal" href="#
|
468
|
-
<li><a class="reference internal" href="#
|
469
|
-
<li><a class="reference internal" href="#
|
588
|
+
<li><a class="reference internal" href="#id9">Improvements</a></li>
|
589
|
+
<li><a class="reference internal" href="#id10">Fixes</a></li>
|
590
|
+
<li><a class="reference internal" href="#id11">Thanks</a></li>
|
470
591
|
</ul>
|
471
592
|
</li>
|
472
593
|
<li><a class="reference internal" href="#release-1-2-5-2011-08-29">Release 1.2.5 - 2011/08/29</a><ul>
|
473
|
-
<li><a class="reference internal" href="#
|
474
|
-
<li><a class="reference internal" href="#
|
594
|
+
<li><a class="reference internal" href="#id12">Improvements</a></li>
|
595
|
+
<li><a class="reference internal" href="#id13">Fixes</a></li>
|
475
596
|
</ul>
|
476
597
|
</li>
|
477
598
|
<li><a class="reference internal" href="#release-1-2-4-2011-07-29">Release 1.2.4 - 2011/07/29</a><ul>
|
478
|
-
<li><a class="reference internal" href="#
|
479
|
-
<li><a class="reference internal" href="#
|
480
|
-
<li><a class="reference internal" href="#
|
599
|
+
<li><a class="reference internal" href="#id14">Improvements</a></li>
|
600
|
+
<li><a class="reference internal" href="#id15">Fixes</a></li>
|
601
|
+
<li><a class="reference internal" href="#id16">Thanks</a></li>
|
481
602
|
</ul>
|
482
603
|
</li>
|
483
604
|
<li><a class="reference internal" href="#release-1-2-3-2011-06-29">Release 1.2.3 - 2011/06/29</a><ul>
|
484
|
-
<li><a class="reference internal" href="#
|
485
|
-
<li><a class="reference internal" href="#
|
486
|
-
<li><a class="reference internal" href="#
|
605
|
+
<li><a class="reference internal" href="#id17">Improvements</a></li>
|
606
|
+
<li><a class="reference internal" href="#id18">Fixes</a></li>
|
607
|
+
<li><a class="reference internal" href="#id19">Thanks</a></li>
|
487
608
|
</ul>
|
488
609
|
</li>
|
489
610
|
<li><a class="reference internal" href="#release-1-2-2-2011-05-29">Release 1.2.2 - 2011/05/29</a><ul>
|
490
|
-
<li><a class="reference internal" href="#
|
491
|
-
<li><a class="reference internal" href="#
|
611
|
+
<li><a class="reference internal" href="#id20">Improvements</a></li>
|
612
|
+
<li><a class="reference internal" href="#id21">Fixes</a></li>
|
492
613
|
</ul>
|
493
614
|
</li>
|
494
|
-
<li><a class="reference internal" href="#
|
495
|
-
<li><a class="reference internal" href="#
|
496
|
-
<li><a class="reference internal" href="#
|
497
|
-
<li><a class="reference internal" href="#
|
615
|
+
<li><a class="reference internal" href="#id22">1.2.1リリース - 2011/04/29</a><ul>
|
616
|
+
<li><a class="reference internal" href="#id23">改良</a></li>
|
617
|
+
<li><a class="reference internal" href="#id24">修正</a></li>
|
618
|
+
<li><a class="reference internal" href="#id25">感謝</a></li>
|
498
619
|
</ul>
|
499
620
|
</li>
|
500
|
-
<li><a class="reference internal" href="#
|
501
|
-
<li><a class="reference internal" href="#
|
502
|
-
<li><a class="reference internal" href="#
|
503
|
-
<li><a class="reference internal" href="#
|
504
|
-
<li><a class="reference internal" href="#
|
621
|
+
<li><a class="reference internal" href="#id26">1.2.0リリース - 2011/03/29</a><ul>
|
622
|
+
<li><a class="reference internal" href="#id27">改良</a></li>
|
623
|
+
<li><a class="reference internal" href="#id28">修正</a></li>
|
624
|
+
<li><a class="reference internal" href="#id29">実験的</a></li>
|
625
|
+
<li><a class="reference internal" href="#id30">感謝</a></li>
|
505
626
|
</ul>
|
506
627
|
</li>
|
507
|
-
<li><a class="reference internal" href="#
|
628
|
+
<li><a class="reference internal" href="#id31">過去のリリース</a><ul>
|
508
629
|
</ul>
|
509
630
|
</li>
|
510
631
|
</ul>
|
@@ -519,7 +640,7 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
519
640
|
<div id="searchbox" style="display: none">
|
520
641
|
<h3>Quick search</h3>
|
521
642
|
<form class="search" action="search.html" method="get">
|
522
|
-
<input type="text" name="q"
|
643
|
+
<input type="text" name="q" />
|
523
644
|
<input type="submit" value="Go" />
|
524
645
|
<input type="hidden" name="check_keywords" value="yes" />
|
525
646
|
<input type="hidden" name="area" value="default" />
|
@@ -539,11 +660,11 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
539
660
|
<li class="right" style="margin-right: 10px">
|
540
661
|
<a href="genindex.html" title="General Index"
|
541
662
|
>index</a></li>
|
542
|
-
<li><a href="index.html">groonga v1.2.
|
663
|
+
<li><a href="index.html">groonga v1.2.9 documentation</a> »</li>
|
543
664
|
</ul>
|
544
665
|
</div>
|
545
666
|
<div class="footer">
|
546
|
-
© Copyright 2009-
|
667
|
+
© Copyright 2009-2012, Brazil, Inc.
|
547
668
|
</div>
|
548
669
|
</body>
|
549
670
|
</html>
|
Binary file
|