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>お知らせ — groonga v1.2.
|
12
|
+
<title>お知らせ — 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
|
</head>
|
33
33
|
<body>
|
34
34
|
<div class="header">
|
@@ -54,7 +54,7 @@
|
|
54
54
|
<li class="right" style="margin-right: 10px">
|
55
55
|
<a href="genindex.html" title="総合索引"
|
56
56
|
accesskey="I">索引</a></li>
|
57
|
-
<li><a href="index.html">groonga v1.2.
|
57
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
58
58
|
</ul>
|
59
59
|
</div>
|
60
60
|
|
@@ -65,45 +65,137 @@
|
|
65
65
|
|
66
66
|
<div class="section" id="news">
|
67
67
|
<h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
68
|
-
<div class="section" id="release-1-
|
69
|
-
<span id="release-1-
|
68
|
+
<div class="section" id="release-1-3-0-2012-01-29">
|
69
|
+
<span id="release-1-3-0"></span><h2>1.3.0リリース - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
70
70
|
<div class="section" id="improvements">
|
71
71
|
<h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
72
72
|
<ul class="simple">
|
73
|
+
<li>GRN_DB_KEY=patまたはGRN_DB_KEY=dat環境変数値による動的なDBのキー管理テーブルの変更をサポート。</li>
|
74
|
+
<li>デフォルトのDBのキー管理テーブルを指定する <tt class="docutils literal"><span class="pre">--with-default-db-key</span></tt> configureオプションを追加。</li>
|
75
|
+
<li>geo pointデータ型の値として""をサポート。この値は"0x0"として扱う。</li>
|
76
|
+
<li>キャスト時のエラーメッセージにカラム名も含めるようにした。</li>
|
77
|
+
<li>loadエラー時に標準入力のファイル情報を表示しないようにした。</li>
|
78
|
+
<li>write-strings関連の警告を有効にし、警告がでないようにした。 [montywiさんが提案]</li>
|
79
|
+
<li>MessagePack形式の出力機能をサポート対象の機能とした。 [#1215]</li>
|
80
|
+
<li><tt class="docutils literal"><span class="pre">*_set_value()</span></tt> 関数の <tt class="docutils literal"><span class="pre">void</span> <span class="pre">*</span></tt> に <tt class="docutils literal"><span class="pre">const</span></tt> を追加した。</li>
|
81
|
+
<li>CとC++でコンパイル時の警告フラグを有効にした。</li>
|
82
|
+
<li>値なしの <tt class="docutils literal"><span class="pre">--with-libevent</span></tt> configureオプションをサポート。</li>
|
83
|
+
<li><tt class="docutils literal"><span class="pre">grn_table_get()</span></tt> がgrn_dbに対応した。 [#1242]</li>
|
84
|
+
<li>[rpm] groonga-serverから必要のないgroogna-munin-pluginsへの依存関係を削除。 [#1251] [Masaharu IWAIさんが提案]</li>
|
85
|
+
<li>[rpm] groongaから必要のないgroogna-docへの依存関係を削除。 [#1251] [Masaharu IWAIさんが提案]</li>
|
86
|
+
<li>[dat] <tt class="docutils literal"><span class="pre">grn_dat_repair()</span></tt> によるデータ復旧対応。</li>
|
87
|
+
<li><tt class="docutils literal"><span class="pre">grn_table_at()</span></tt> がgrn_dbに対応。</li>
|
88
|
+
<li>[suggest] 「安定している」仕様とした。</li>
|
89
|
+
<li>[suggest][complete] 前方一致検索で正規化した値を使って検索するようにした。</li>
|
90
|
+
<li>実験的な機能としてオフラインインデックス作成機能を追加。いまのところデフォルトでは無効になっているが、USE_OFFLINE_INDEXER=yes環境変数を指定することで有効にできる。</li>
|
91
|
+
<li>mroonga用に内部API <tt class="docutils literal"><span class="pre">grn_obj_path_by_id()</span></tt> を追加した。</li>
|
92
|
+
<li>[suggest][httpd] 未知のパラメーターをgroongaに渡すようにした。</li>
|
93
|
+
<li>[output][xml] 読みやすいように <tt class="docutils literal"><span class="pre"></RESULT></span></tt> の前に改行を追加。</li>
|
94
|
+
<li>[doc][output] 出力形式に関するドキュメントを追加。</li>
|
95
|
+
<li><tt class="docutils literal"><span class="pre">table_rename</span></tt> コマンドを追加。 [#1234]</li>
|
96
|
+
<li><tt class="docutils literal"><span class="pre">column_rename</span></tt> コマンドを追加。 [#1234]</li>
|
97
|
+
</ul>
|
98
|
+
</div>
|
99
|
+
<div class="section" id="thanks">
|
100
|
+
<h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
101
|
+
<ul class="simple">
|
102
|
+
<li>montywiさん</li>
|
103
|
+
<li>Masaharu IWAIさん</li>
|
104
|
+
</ul>
|
105
|
+
</div>
|
106
|
+
</div>
|
107
|
+
<div class="section" id="release-1-2-9-2011-12-29">
|
108
|
+
<span id="release-1-2-9"></span><h2>1.2.9リリース - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
109
|
+
<div class="section" id="id1">
|
110
|
+
<h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
111
|
+
<ul class="simple">
|
112
|
+
<li>Fedora 16をサポート。</li>
|
113
|
+
<li>Fedora 15サポートを削除。</li>
|
114
|
+
<li>[groonga] ホスト名を解決できない環境でも動作するようにサーバーIDのアドレスをデフォルト値をlocalhostにした。 [@uzullaさんが報告]</li>
|
115
|
+
<li>MAP_HUGETLB対応。</li>
|
116
|
+
<li>[admin] スループットチャート対応。</li>
|
117
|
+
<li><tt class="docutils literal"><span class="pre">grn_itoh()</span></tt> 内でnul文字を使いするのをやめた。 [#1194] [設樂洋爾さんが報告]</li>
|
118
|
+
<li><tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt> を追加。</li>
|
119
|
+
<li><tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt> を追加。</li>
|
120
|
+
<li>クエリ展開で文字列のベクター型のカラムをサポート。 [#1216]</li>
|
121
|
+
<li>一度にたくさんのレコードを削除できるように <a class="reference internal" href="commands/delete.html"><em>delete</em></a> に <tt class="docutils literal"><span class="pre">--filter</span></tt> オプションを追加。 [#1225]</li>
|
122
|
+
<li><a class="reference internal" href="functions/geo_in_circle.html"><em>geo_in_circle</em></a> と <a class="reference internal" href="functions/geo_distance.html"><em>geo_distance</em></a> で近似方法指定をサポート。 [#1226]</li>
|
123
|
+
<li><tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> と <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> を非推奨にした。</li>
|
124
|
+
<li>JSON出力内で、値のない位置情報データは <tt class="docutils literal"><span class="pre">""</span></tt> ではなく <tt class="docutils literal"><span class="pre">null</span></tt> と出力するようにした。</li>
|
125
|
+
<li>MessagePack出力をだいたいサポート。 [#1215] [設樂洋爾さんが実装]</li>
|
126
|
+
<li>XML出力内のドリルダウン結果タグの後に改行を追加。</li>
|
127
|
+
<li>grn_datのtruncation対応。 [#892]</li>
|
128
|
+
<li>grn_datが最長共通接頭辞検索(longest common prefix search)をサポート。</li>
|
129
|
+
</ul>
|
130
|
+
</div>
|
131
|
+
<div class="section" id="fixes">
|
132
|
+
<h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
133
|
+
<ul class="simple">
|
134
|
+
<li>[windows] mapの種類を間違っていた問題を修正。</li>
|
135
|
+
<li>コンパイラの-Wno-というフラグの検出に失敗していた問題を修正。 [Arnaud Fontaineさんがパッチを作成]</li>
|
136
|
+
<li><tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> がMeCabについて間違って報告していた問題を修正。 [#1209] [設樂洋爾さんがパッチ作成]</li>
|
137
|
+
<li><tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt> 内でロックが足りない問題を修正。</li>
|
138
|
+
<li>エラー時のContent-Typeを修正。 [#1220] [設樂洋爾さんがパッチ作成]</li>
|
139
|
+
<li>SIS(半無限文字列)削除時にゴミが残る問題を修正。</li>
|
140
|
+
</ul>
|
141
|
+
</div>
|
142
|
+
<div class="section" id="id2">
|
143
|
+
<h3>感謝<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
144
|
+
<ul class="simple">
|
145
|
+
<li>@uzullaさん</li>
|
146
|
+
<li>Arnaud Fontaineさん</li>
|
147
|
+
<li>設樂洋爾さん</li>
|
148
|
+
</ul>
|
149
|
+
</div>
|
150
|
+
</div>
|
151
|
+
<div class="section" id="release-1-2-8-2011-11-29">
|
152
|
+
<span id="release-1-2-8"></span><h2>1.2.8リリース - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
153
|
+
<p>オブジェクト(テーブルまたはカラム)のリネームがサポートされました!この機能を使うためにはデータベースを再構築する必要があります。以下のコマンドでデータベースを再構築することができます。:</p>
|
154
|
+
<div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump > db.dump
|
155
|
+
% groonga -n YOUR_NEW_DB < db.dump
|
156
|
+
</pre></div>
|
157
|
+
</div>
|
158
|
+
<div class="admonition note">
|
159
|
+
<p class="first admonition-title">ノート</p>
|
160
|
+
<p class="last">groonga 1.2.8はgroonga 1.2.7以前のバージョンで作ったデータベースを開くことができます。しかし、groonga 1.2.7以前のバージョンではgroonga 1.2.8以降で作ったデータベースを開くことはできません。</p>
|
161
|
+
</div>
|
162
|
+
<div class="section" id="id3">
|
163
|
+
<h3>改良<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
164
|
+
<ul class="simple">
|
73
165
|
<li>[grntest] 1行あたりの最大バイト数の制限を撤去。</li>
|
74
|
-
<li>[grntest] <
|
75
|
-
<li>zlib/lzo圧縮カラムにアクセスするとクラッシュするバグを修正。圧縮カラムにアクセスするとメモリリークするので注意。これを修正するためにはAPIを改良する必要があるため、今後修正予定。 [GtiHub#5][GtiHub#6] [Takayuki Yamaguchiさんが報告]</li>
|
76
|
-
<li>レコード削除時に必要のないカラムの値もクリアしてしまうバグを修正。</li>
|
166
|
+
<li>[grntest] <tt class="docutils literal"><span class="pre">--pid-path</span></tt> オプションを追加。</li>
|
77
167
|
<li>[deb] 実験的にzlibとlzoを有効化。</li>
|
78
168
|
<li>[rpm] 実験的にzlibとlzoを有効化。</li>
|
79
169
|
<li>truncation対応。 [#892]</li>
|
80
170
|
<li>参照ロックフリーのダブル配列実装であるgrn_datを有効化。</li>
|
81
171
|
<li>[pkg-config] groonga.pcにgroonga_version変数を追加。</li>
|
82
|
-
<li><
|
172
|
+
<li><tt class="docutils literal"><span class="pre">--disable-static</span></tt> を再サポート。 [groonga-dev,00612] [Kenichi Aramakiさんが提案]</li>
|
83
173
|
<li>[munin] デフォルトではMuninプラグインをインストールしないようにした。</li>
|
84
174
|
<li>RedHatプラットフォーム関連のファイルはデフォルトではインストールしないようにした。</li>
|
85
|
-
<li>オブジェクトのリネームに対応。 [#1167]</li>
|
175
|
+
<li>オブジェクトのリネームに対応。DBの再構築が必要です。 [#1167]</li>
|
86
176
|
<li>[munin] スループットを計測するMuninプラグインを追加。 [#1171]</li>
|
87
177
|
<li>[geo] geo_in_rectangleの高速化。新しい実装では、多くの場合、以前の実装よりも2倍程度高速になります。 [#1173]</li>
|
88
178
|
<li>[macports] groongaのMacPortsが公式リポジトリに移動しました。 [Hiroshi Umemotoさんが取り込み]</li>
|
89
179
|
<li>[geo] 位置情報の値のリテラルを度数からミリ秒へ変換するときに切り捨てではなく四捨五入するようにした。</li>
|
90
180
|
<li>デフラグ対象としてテーブルをサポート。テーブルを指定した場合はテーブルが持つカラムのうち可変長サイズ値用のカラムをデフラグ対象とする。 [#1175]</li>
|
91
|
-
<li
|
181
|
+
<li>削除時に関連するパスも削除するようにした。 [#1180]</li>
|
92
182
|
<li>[deb] i386対応。</li>
|
93
183
|
<li>[rpm] i386対応。</li>
|
94
184
|
<li>[windows] x86対応。</li>
|
95
185
|
</ul>
|
96
186
|
</div>
|
97
|
-
<div class="section" id="
|
98
|
-
<h3>修正<a class="headerlink" href="#
|
187
|
+
<div class="section" id="id4">
|
188
|
+
<h3>修正<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
99
189
|
<ul class="simple">
|
190
|
+
<li>zlib/lzo圧縮カラムにアクセスするとクラッシュするバグを修正。圧縮カラムにアクセスするとメモリリークするので注意。これを修正するためにはAPIを改良する必要があるため、今後修正予定。 [GtiHub#5][GtiHub#6] [Takayuki Yamaguchiさんが報告]</li>
|
191
|
+
<li>レコード削除時に必要のないカラムの値もクリアしてしまうバグを修正。</li>
|
100
192
|
<li>ソート時に間違ったインデックスを使うバグを修正。 [#766] [Horikoshi Yukiさんが報告]</li>
|
101
193
|
<li>[libedit] 必要な初期化処理が抜けていたバグを修正。 [GitHub#7] [SHIDARA Yojiさんがパッチを提供]</li>
|
102
194
|
<li>[doc] ドキュメントの誤字を修正。 [GitHub#8] [zundaさんがパッチを提供]</li>
|
103
195
|
</ul>
|
104
196
|
</div>
|
105
|
-
<div class="section" id="
|
106
|
-
<h3>感謝<a class="headerlink" href="#
|
197
|
+
<div class="section" id="id5">
|
198
|
+
<h3>感謝<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
107
199
|
<ul class="simple">
|
108
200
|
<li>Takayuki Yamaguchiさん</li>
|
109
201
|
<li>設樂洋爾さん</li>
|
@@ -115,8 +207,8 @@
|
|
115
207
|
</div>
|
116
208
|
<div class="section" id="release-1-2-7-2011-10-29">
|
117
209
|
<span id="release-1-2-7"></span><h2>1.2.7リリース - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
118
|
-
<div class="section" id="
|
119
|
-
<h3>改良<a class="headerlink" href="#
|
210
|
+
<div class="section" id="id6">
|
211
|
+
<h3>改良<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
120
212
|
<ul class="simple">
|
121
213
|
<li>[libedit] ワイド文字からマルチバイト列への変換時のエラーチェックを追加。 [設樂洋爾さんが報告]</li>
|
122
214
|
<li>grn_geo_estimate_in_rectangle()を追加。</li>
|
@@ -126,14 +218,14 @@
|
|
126
218
|
<li>[実験的] Oracle Solaris 10 8/11をサポート。(まだシステムにインストール済みのgccでビルドできるだけ。)</li>
|
127
219
|
</ul>
|
128
220
|
</div>
|
129
|
-
<div class="section" id="
|
130
|
-
<h3>修正<a class="headerlink" href="#
|
221
|
+
<div class="section" id="id7">
|
222
|
+
<h3>修正<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
131
223
|
<ul class="simple">
|
132
224
|
<li>ドキュメントの誤字を修正。 [@soundkitchenさんが報告]</li>
|
133
225
|
</ul>
|
134
226
|
</div>
|
135
|
-
<div class="section" id="
|
136
|
-
<h3>感謝<a class="headerlink" href="#
|
227
|
+
<div class="section" id="id8">
|
228
|
+
<h3>感謝<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
137
229
|
<ul class="simple">
|
138
230
|
<li>設樂洋爾さん</li>
|
139
231
|
<li>@soundkitchenさん</li>
|
@@ -142,8 +234,8 @@
|
|
142
234
|
</div>
|
143
235
|
<div class="section" id="release-1-2-6-2011-09-29">
|
144
236
|
<span id="release-1-2-6"></span><h2>1.2.6リリース - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
145
|
-
<div class="section" id="
|
146
|
-
<h3>改良<a class="headerlink" href="#
|
237
|
+
<div class="section" id="id9">
|
238
|
+
<h3>改良<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
147
239
|
<ul class="simple">
|
148
240
|
<li>型変換時のエラーメッセージを改善。</li>
|
149
241
|
<li>型変換時の座標の値チェックを追加。</li>
|
@@ -158,14 +250,14 @@
|
|
158
250
|
<li>最新のDebian GNU/Linux sidをサポート。SATOH Fumiyasuさんによるパッチ。 GitHub#3</li>
|
159
251
|
</ul>
|
160
252
|
</div>
|
161
|
-
<div class="section" id="
|
162
|
-
<h3>修正<a class="headerlink" href="#
|
253
|
+
<div class="section" id="id10">
|
254
|
+
<h3>修正<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
163
255
|
<ul class="simple">
|
164
256
|
<li>座標値がロード時に壊れてしまう問題を修正。</li>
|
165
257
|
</ul>
|
166
258
|
</div>
|
167
|
-
<div class="section" id="
|
168
|
-
<h3>感謝<a class="headerlink" href="#
|
259
|
+
<div class="section" id="id11">
|
260
|
+
<h3>感謝<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
169
261
|
<ul class="simple">
|
170
262
|
<li>SATOH Fumiyasuさん</li>
|
171
263
|
</ul>
|
@@ -173,8 +265,8 @@
|
|
173
265
|
</div>
|
174
266
|
<div class="section" id="release-1-2-5-2011-08-29">
|
175
267
|
<span id="release-1-2-5"></span><h2>1.2.5リリース - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
176
|
-
<div class="section" id="
|
177
|
-
<h3>改良<a class="headerlink" href="#
|
268
|
+
<div class="section" id="id12">
|
269
|
+
<h3>改良<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
178
270
|
<ul class="simple">
|
179
271
|
<li>実験的にWindowsインストーラの提供を開始。</li>
|
180
272
|
<li>名前に使える文字に"#"と"-"を追加。#1043</li>
|
@@ -190,8 +282,8 @@
|
|
190
282
|
<li>grn_ctx_close()を公開。 #1035</li>
|
191
283
|
</ul>
|
192
284
|
</div>
|
193
|
-
<div class="section" id="
|
194
|
-
<h3>修正<a class="headerlink" href="#
|
285
|
+
<div class="section" id="id13">
|
286
|
+
<h3>修正<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
195
287
|
<ul class="simple">
|
196
288
|
<li><a class="reference internal" href="commands/select.html"><em>select</em></a> でマッチ式の右辺に不正な値を指定するとクラッシュする問題を修正。 #1047</li>
|
197
289
|
<li>ハッシュテーブルのカーソルが間違ったレコードを返す問題を修正。</li>
|
@@ -200,10 +292,10 @@
|
|
200
292
|
</div>
|
201
293
|
<div class="section" id="release-1-2-4-2011-07-29">
|
202
294
|
<span id="release-1-2-4"></span><h2>1.2.4リリース - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
203
|
-
<div class="section" id="
|
204
|
-
<h3>改良<a class="headerlink" href="#
|
295
|
+
<div class="section" id="id14">
|
296
|
+
<h3>改良<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
205
297
|
<ul class="simple">
|
206
|
-
<li><
|
298
|
+
<li><tt class="docutils literal"><span class="pre">*BSD</span></tt> をサポートを再サポート。(おばたさんが報告)</li>
|
207
299
|
<li>sed関連のポータビリティを改善。(おばたさんが提案)</li>
|
208
300
|
<li>Visual C++ 2008を再サポート。</li>
|
209
301
|
<li><a class="reference internal" href="commands/check.html"><em>check</em></a> がハッシュテーブルをサポート。</li>
|
@@ -213,18 +305,18 @@
|
|
213
305
|
<li>~/.groonga-historyをサポート。</li>
|
214
306
|
</ul>
|
215
307
|
</div>
|
216
|
-
<div class="section" id="
|
217
|
-
<h3>修正<a class="headerlink" href="#
|
308
|
+
<div class="section" id="id15">
|
309
|
+
<h3>修正<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
218
310
|
<ul class="simple">
|
219
311
|
<li>libeditサポートが壊れていた問題を修正。(うえのさんが報告)</li>
|
220
|
-
<li><
|
312
|
+
<li><tt class="docutils literal"><span class="pre">*.spec</span></tt> のソースURLを修正。(うえのさんが報告)</li>
|
221
313
|
<li>パトリシアトライのカーソルが間違ったレコードを返す問題を修正。</li>
|
222
314
|
<li>データベースに対するgrn_obj_clear_lock()がデータベース自身のロックをクリアし忘れていたのでクリアするようにした。</li>
|
223
315
|
<li>レコード削除時に他のレコードのデータを削除してしまう可能性があるという問題を修正。</li>
|
224
316
|
</ul>
|
225
317
|
</div>
|
226
|
-
<div class="section" id="
|
227
|
-
<h3>感謝<a class="headerlink" href="#
|
318
|
+
<div class="section" id="id16">
|
319
|
+
<h3>感謝<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
228
320
|
<ul class="simple">
|
229
321
|
<li>おばたさん</li>
|
230
322
|
<li>うえのさん</li>
|
@@ -233,8 +325,8 @@
|
|
233
325
|
</div>
|
234
326
|
<div class="section" id="release-1-2-3-2011-06-29">
|
235
327
|
<span id="release-1-2-3"></span><h2>1.2.3リリース - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
236
|
-
<div class="section" id="
|
237
|
-
<h3>改良<a class="headerlink" href="#
|
328
|
+
<div class="section" id="id17">
|
329
|
+
<h3>改良<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
238
330
|
<ul class="simple">
|
239
331
|
<li>不正なテーブル名チェックを追加。#912</li>
|
240
332
|
<li>クエリログを解析するgroonga-query-log-analyzerを追加。</li>
|
@@ -244,15 +336,15 @@
|
|
244
336
|
<li>GRN_OBJ_TABLE_DAT_KEY(ダブル配列トライ)テーブルを追加。(実験的)</li>
|
245
337
|
</ul>
|
246
338
|
</div>
|
247
|
-
<div class="section" id="
|
248
|
-
<h3>修正<a class="headerlink" href="#
|
339
|
+
<div class="section" id="id18">
|
340
|
+
<h3>修正<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
249
341
|
<ul class="simple">
|
250
342
|
<li>getコマンドでクラッシュする問題を修正。(おばたさんが報告)</li>
|
251
343
|
<li>クエリログで経過時間がオーバーフローする問題を修正。#944</li>
|
252
344
|
</ul>
|
253
345
|
</div>
|
254
|
-
<div class="section" id="
|
255
|
-
<h3>感謝<a class="headerlink" href="#
|
346
|
+
<div class="section" id="id19">
|
347
|
+
<h3>感謝<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
256
348
|
<ul class="simple">
|
257
349
|
<li>おばたさん</li>
|
258
350
|
</ul>
|
@@ -260,8 +352,8 @@
|
|
260
352
|
</div>
|
261
353
|
<div class="section" id="release-1-2-2-2011-05-29">
|
262
354
|
<span id="release-1-2-2"></span><h2>1.2.2リリース - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
263
|
-
<div class="section" id="
|
264
|
-
<h3>改良<a class="headerlink" href="#
|
355
|
+
<div class="section" id="id20">
|
356
|
+
<h3>改良<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
265
357
|
<ul class="simple">
|
266
358
|
<li>Ubuntu 11.04 Natty Narwhalのパッケージを追加。</li>
|
267
359
|
<li>Ubuntu 10.10 Maverick Meerkatのパッケージを削除。</li>
|
@@ -282,25 +374,25 @@
|
|
282
374
|
<li>不正な名前が指定された時のエラーメッセージにどこで指定されたかの情報を含めるようにした。 #935</li>
|
283
375
|
</ul>
|
284
376
|
</div>
|
285
|
-
<div class="section" id="
|
286
|
-
<h3>修正<a class="headerlink" href="#
|
377
|
+
<div class="section" id="id21">
|
378
|
+
<h3>修正<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
287
379
|
<ul class="simple">
|
288
380
|
<li>マルチプロセスでデータを更新した場合にShortText型などの可変長データが壊れる問題を修正。 #890</li>
|
289
381
|
</ul>
|
290
382
|
</div>
|
291
383
|
</div>
|
292
|
-
<div class="section" id="id21">
|
293
|
-
<h2>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
294
384
|
<div class="section" id="id22">
|
295
|
-
<
|
385
|
+
<h2>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
386
|
+
<div class="section" id="id23">
|
387
|
+
<h3>改良<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
296
388
|
<ul class="simple">
|
297
389
|
<li>suggestコマンドにthresholdパラメーターを追加。#895</li>
|
298
390
|
<li>suggestのHTTPサーバにlimitパラメーターを追加。#899</li>
|
299
391
|
<li>grntest: SIGINTでの中断に対応。</li>
|
300
392
|
</ul>
|
301
393
|
</div>
|
302
|
-
<div class="section" id="
|
303
|
-
<h3>修正<a class="headerlink" href="#
|
394
|
+
<div class="section" id="id24">
|
395
|
+
<h3>修正<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
304
396
|
<ul class="simple">
|
305
397
|
<li>同時に複数のデータベースを開いているとき、1つでもデータベー
|
306
398
|
スを閉じると関連するプラグインも閉じられてしまう問題を修正。 #894</li>
|
@@ -309,18 +401,18 @@
|
|
309
401
|
<li>チュートリアル中のtypoを修正。(moozさんが修正)</li>
|
310
402
|
</ul>
|
311
403
|
</div>
|
312
|
-
<div class="section" id="
|
313
|
-
<h3>感謝<a class="headerlink" href="#
|
404
|
+
<div class="section" id="id25">
|
405
|
+
<h3>感謝<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
314
406
|
<ul class="simple">
|
315
407
|
<li>ICHII Takashiさん</li>
|
316
408
|
<li>moozさん</li>
|
317
409
|
</ul>
|
318
410
|
</div>
|
319
411
|
</div>
|
320
|
-
<div class="section" id="id25">
|
321
|
-
<h2>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
322
412
|
<div class="section" id="id26">
|
323
|
-
<
|
413
|
+
<h2>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
414
|
+
<div class="section" id="id27">
|
415
|
+
<h3>改良<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
324
416
|
<ul class="simple">
|
325
417
|
<li>MacPortsでのインストールドキュメントを追加。</li>
|
326
418
|
<li>Homebrewでのインストールドキュメントを追加。</li>
|
@@ -336,8 +428,8 @@
|
|
336
428
|
だし、ログには残る。 #893</li>
|
337
429
|
</ul>
|
338
430
|
</div>
|
339
|
-
<div class="section" id="
|
340
|
-
<h3>修正<a class="headerlink" href="#
|
431
|
+
<div class="section" id="id28">
|
432
|
+
<h3>修正<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
341
433
|
<ul class="simple">
|
342
434
|
<li>autoconf 2.59環境において、ファイルシステムのルート直下に
|
343
435
|
groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
@@ -355,22 +447,22 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
355
447
|
<li><a class="reference internal" href="commands/load.html"><em>load</em></a> でクラッシュする問題を修正。 #661</li>
|
356
448
|
</ul>
|
357
449
|
</div>
|
358
|
-
<div class="section" id="
|
359
|
-
<h3>実験的<a class="headerlink" href="#
|
450
|
+
<div class="section" id="id29">
|
451
|
+
<h3>実験的<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
360
452
|
<ul class="simple">
|
361
453
|
<li>grn_table_truncate()を追加。(実験的。問題あり)</li>
|
362
454
|
<li>truncateコマンドを追加。(実験的。問題あり) #888</li>
|
363
455
|
</ul>
|
364
456
|
</div>
|
365
|
-
<div class="section" id="
|
366
|
-
<h3>感謝<a class="headerlink" href="#
|
457
|
+
<div class="section" id="id30">
|
458
|
+
<h3>感謝<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
367
459
|
<ul class="simple">
|
368
460
|
<li>@tomotaka_itoさん</li>
|
369
461
|
</ul>
|
370
462
|
</div>
|
371
463
|
</div>
|
372
|
-
<div class="section" id="
|
373
|
-
<h2>過去のリリース<a class="headerlink" href="#
|
464
|
+
<div class="section" id="id31">
|
465
|
+
<h2>過去のリリース<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
374
466
|
<div class="toctree-wrapper compound">
|
375
467
|
<ul>
|
376
468
|
<li class="toctree-l1"><a class="reference internal" href="news/1.1.x.html">バージョン1.1.xのお知らせ</a><ul>
|
@@ -424,60 +516,71 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
424
516
|
<h3><a href="index.html">目次</a></h3>
|
425
517
|
<ul>
|
426
518
|
<li><a class="reference internal" href="#">お知らせ</a><ul>
|
427
|
-
<li><a class="reference internal" href="#release-1-
|
519
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">1.3.0リリース - 2012/01/29</a><ul>
|
428
520
|
<li><a class="reference internal" href="#improvements">改良</a></li>
|
429
|
-
<li><a class="reference internal" href="#fixes">修正</a></li>
|
430
521
|
<li><a class="reference internal" href="#thanks">感謝</a></li>
|
431
522
|
</ul>
|
432
523
|
</li>
|
433
|
-
<li><a class="reference internal" href="#release-1-2-
|
524
|
+
<li><a class="reference internal" href="#release-1-2-9-2011-12-29">1.2.9リリース - 2011/12/29</a><ul>
|
434
525
|
<li><a class="reference internal" href="#id1">改良</a></li>
|
435
|
-
<li><a class="reference internal" href="#
|
436
|
-
<li><a class="reference internal" href="#
|
526
|
+
<li><a class="reference internal" href="#fixes">修正</a></li>
|
527
|
+
<li><a class="reference internal" href="#id2">感謝</a></li>
|
528
|
+
</ul>
|
529
|
+
</li>
|
530
|
+
<li><a class="reference internal" href="#release-1-2-8-2011-11-29">1.2.8リリース - 2011/11/29</a><ul>
|
531
|
+
<li><a class="reference internal" href="#id3">改良</a></li>
|
532
|
+
<li><a class="reference internal" href="#id4">修正</a></li>
|
533
|
+
<li><a class="reference internal" href="#id5">感謝</a></li>
|
534
|
+
</ul>
|
535
|
+
</li>
|
536
|
+
<li><a class="reference internal" href="#release-1-2-7-2011-10-29">1.2.7リリース - 2011/10/29</a><ul>
|
537
|
+
<li><a class="reference internal" href="#id6">改良</a></li>
|
538
|
+
<li><a class="reference internal" href="#id7">修正</a></li>
|
539
|
+
<li><a class="reference internal" href="#id8">感謝</a></li>
|
437
540
|
</ul>
|
438
541
|
</li>
|
439
542
|
<li><a class="reference internal" href="#release-1-2-6-2011-09-29">1.2.6リリース - 2011/09/29</a><ul>
|
440
|
-
<li><a class="reference internal" href="#
|
441
|
-
<li><a class="reference internal" href="#
|
442
|
-
<li><a class="reference internal" href="#
|
543
|
+
<li><a class="reference internal" href="#id9">改良</a></li>
|
544
|
+
<li><a class="reference internal" href="#id10">修正</a></li>
|
545
|
+
<li><a class="reference internal" href="#id11">感謝</a></li>
|
443
546
|
</ul>
|
444
547
|
</li>
|
445
548
|
<li><a class="reference internal" href="#release-1-2-5-2011-08-29">1.2.5リリース - 2011/08/29</a><ul>
|
446
|
-
<li><a class="reference internal" href="#
|
447
|
-
<li><a class="reference internal" href="#
|
549
|
+
<li><a class="reference internal" href="#id12">改良</a></li>
|
550
|
+
<li><a class="reference internal" href="#id13">修正</a></li>
|
448
551
|
</ul>
|
449
552
|
</li>
|
450
553
|
<li><a class="reference internal" href="#release-1-2-4-2011-07-29">1.2.4リリース - 2011/07/29</a><ul>
|
451
|
-
<li><a class="reference internal" href="#
|
452
|
-
<li><a class="reference internal" href="#
|
453
|
-
<li><a class="reference internal" href="#
|
554
|
+
<li><a class="reference internal" href="#id14">改良</a></li>
|
555
|
+
<li><a class="reference internal" href="#id15">修正</a></li>
|
556
|
+
<li><a class="reference internal" href="#id16">感謝</a></li>
|
454
557
|
</ul>
|
455
558
|
</li>
|
456
559
|
<li><a class="reference internal" href="#release-1-2-3-2011-06-29">1.2.3リリース - 2011/06/29</a><ul>
|
457
|
-
<li><a class="reference internal" href="#
|
458
|
-
<li><a class="reference internal" href="#
|
459
|
-
<li><a class="reference internal" href="#
|
560
|
+
<li><a class="reference internal" href="#id17">改良</a></li>
|
561
|
+
<li><a class="reference internal" href="#id18">修正</a></li>
|
562
|
+
<li><a class="reference internal" href="#id19">感謝</a></li>
|
460
563
|
</ul>
|
461
564
|
</li>
|
462
565
|
<li><a class="reference internal" href="#release-1-2-2-2011-05-29">1.2.2リリース - 2011/05/29</a><ul>
|
463
|
-
<li><a class="reference internal" href="#
|
464
|
-
<li><a class="reference internal" href="#
|
566
|
+
<li><a class="reference internal" href="#id20">改良</a></li>
|
567
|
+
<li><a class="reference internal" href="#id21">修正</a></li>
|
465
568
|
</ul>
|
466
569
|
</li>
|
467
|
-
<li><a class="reference internal" href="#
|
468
|
-
<li><a class="reference internal" href="#
|
469
|
-
<li><a class="reference internal" href="#
|
470
|
-
<li><a class="reference internal" href="#
|
570
|
+
<li><a class="reference internal" href="#id22">1.2.1リリース - 2011/04/29</a><ul>
|
571
|
+
<li><a class="reference internal" href="#id23">改良</a></li>
|
572
|
+
<li><a class="reference internal" href="#id24">修正</a></li>
|
573
|
+
<li><a class="reference internal" href="#id25">感謝</a></li>
|
471
574
|
</ul>
|
472
575
|
</li>
|
473
|
-
<li><a class="reference internal" href="#
|
474
|
-
<li><a class="reference internal" href="#
|
475
|
-
<li><a class="reference internal" href="#
|
476
|
-
<li><a class="reference internal" href="#
|
477
|
-
<li><a class="reference internal" href="#
|
576
|
+
<li><a class="reference internal" href="#id26">1.2.0リリース - 2011/03/29</a><ul>
|
577
|
+
<li><a class="reference internal" href="#id27">改良</a></li>
|
578
|
+
<li><a class="reference internal" href="#id28">修正</a></li>
|
579
|
+
<li><a class="reference internal" href="#id29">実験的</a></li>
|
580
|
+
<li><a class="reference internal" href="#id30">感謝</a></li>
|
478
581
|
</ul>
|
479
582
|
</li>
|
480
|
-
<li><a class="reference internal" href="#
|
583
|
+
<li><a class="reference internal" href="#id31">過去のリリース</a><ul>
|
481
584
|
</ul>
|
482
585
|
</li>
|
483
586
|
</ul>
|
@@ -492,7 +595,7 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
492
595
|
<div id="searchbox" style="display: none">
|
493
596
|
<h3>クイック検索</h3>
|
494
597
|
<form class="search" action="search.html" method="get">
|
495
|
-
<input type="text" name="q"
|
598
|
+
<input type="text" name="q" />
|
496
599
|
<input type="submit" value="検索" />
|
497
600
|
<input type="hidden" name="check_keywords" value="yes" />
|
498
601
|
<input type="hidden" name="area" value="default" />
|
@@ -512,11 +615,11 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
512
615
|
<li class="right" style="margin-right: 10px">
|
513
616
|
<a href="genindex.html" title="総合索引"
|
514
617
|
>索引</a></li>
|
515
|
-
<li><a href="index.html">groonga v1.2.
|
618
|
+
<li><a href="index.html">groonga v1.2.9ドキュメント</a> »</li>
|
516
619
|
</ul>
|
517
620
|
</div>
|
518
621
|
<div class="footer">
|
519
|
-
© Copyright 2009-
|
622
|
+
© Copyright 2009-2012, Brazil, Inc.
|
520
623
|
</div>
|
521
624
|
</body>
|
522
625
|
</html>
|
Binary file
|