rroonga 3.0.2-x86-mingw32 → 3.0.4-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/text/news.textile +30 -1
- data/ext/groonga/extconf.rb +49 -26
- data/ext/groonga/rb-grn-array.c +56 -1
- data/ext/groonga/rb-grn-column.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +3 -3
- data/ext/groonga/rb-grn-expression.c +14 -9
- data/ext/groonga/rb-grn-index-column.c +1 -1
- data/ext/groonga/rb-grn-operator.c +10 -3
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-table.c +71 -25
- data/ext/groonga/rb-grn-utils.c +3 -1
- data/ext/groonga/rb-grn-variable.c +17 -4
- data/ext/groonga/rb-grn.h +2 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/groonga/record.rb +9 -2
- data/lib/groonga/sub-records.rb +62 -0
- data/rroonga-build.rb +2 -1
- data/rroonga.gemspec +1 -1
- data/test/test-array.rb +35 -0
- data/test/test-context.rb +2 -1
- data/test/test-database.rb +2 -1
- data/test/test-expression.rb +14 -4
- data/test/test-sub-records.rb +109 -0
- data/test/test-table.rb +104 -0
- data/vendor/local/bin/groonga-benchmark.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/libmsgpack-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga.h +20 -2
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- 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/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.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/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -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/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/others.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +187 -137
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +16 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +514 -7
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grntest.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -49
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +27 -27
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/server/package.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +10 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +8 -8
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +29 -11
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +17 -12
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +43 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +75 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +14 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +28 -17
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +5 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +5 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/document.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +25 -15
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/development.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +21 -13
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/index.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +38 -23
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +8 -8
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +14 -11
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +14 -14
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/news.html +885 -481
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +280 -146
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +12 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +43 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +558 -75
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +9 -7
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/add.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/get.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/commands_not_implemented/set.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +10 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +11 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +231 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +26 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +27 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +53 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +15 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +23 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +13 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +11 -8
- data/vendor/local/share/doc/groonga/ja/html/reference/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +15 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +83 -46
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +41 -23
- data/vendor/local/share/doc/groonga/ja/html/spec.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +71 -38
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +55 -30
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +33 -19
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +19 -12
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +27 -16
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +24 -16
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +31 -11
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +16 -12
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +5 -5
- data/vendor/local/share/man/ja/man1/groonga.1 +847 -160
- data/vendor/local/share/man/man1/groonga.1 +826 -97
- metadata +10 -2
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>10. 制限事項 — groonga v3.0.
|
10
|
+
<title>10. 制限事項 — groonga v3.0.5ドキュメント</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="groonga v3.0.
|
29
|
+
<link rel="top" title="groonga v3.0.5ドキュメント" href="index.html" />
|
30
30
|
<link rel="next" title="11. トラブルシューティング" href="troubleshooting.html" />
|
31
31
|
<link rel="prev" title="9.2. 検索" href="spec/search.html" />
|
32
32
|
</head>
|
@@ -60,7 +60,7 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="spec/search.html" title="9.2. 検索"
|
62
62
|
accesskey="P">前へ</a> |</li>
|
63
|
-
<li><a href="index.html">groonga v3.0.
|
63
|
+
<li><a href="index.html">groonga v3.0.5ドキュメント</a> »</li>
|
64
64
|
</ul>
|
65
65
|
</div>
|
66
66
|
|
@@ -76,8 +76,10 @@
|
|
76
76
|
<h2>10.1. テーブルの制限<a class="headerlink" href="#limitations-of-table" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
77
77
|
<p>テーブルには以下の制限があります。</p>
|
78
78
|
<ul class="simple">
|
79
|
-
<li>1つのキーの最大サイズ: 4096Bytes</
|
80
|
-
|
79
|
+
<li><p class="first">1つのキーの最大サイズ: 4096Bytes</p>
|
80
|
+
</li>
|
81
|
+
<li><p class="first">キーのサイズを合計した上限値: 4GByte</p>
|
82
|
+
</li>
|
81
83
|
</ul>
|
82
84
|
<p>実際には他の諸条件の制約により上記の値まで到達しない場合もあります。</p>
|
83
85
|
</div>
|
@@ -85,9 +87,12 @@
|
|
85
87
|
<h2>10.2. インデックス上限値<a class="headerlink" href="#limitations-of-indexing" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
86
88
|
<p>1つのインデックスにおける論理上の上限値は以下のとおりです。</p>
|
87
89
|
<ul class="simple">
|
88
|
-
<li>最大レコード数: 268,435,455 (約2億6千万)</
|
89
|
-
|
90
|
-
<li
|
90
|
+
<li><p class="first">最大レコード数: 268,435,455 (約2億6千万)</p>
|
91
|
+
</li>
|
92
|
+
<li><p class="first">最大語彙数: 268,435,455 (約2億6千万)</p>
|
93
|
+
</li>
|
94
|
+
<li><p class="first">最大インデックスサイズ: 256GByte</p>
|
95
|
+
</li>
|
91
96
|
</ul>
|
92
97
|
<p>実際には他の諸条件の制約により上記の値まで到達しない場合もあります。</p>
|
93
98
|
</div>
|
@@ -148,7 +153,7 @@
|
|
148
153
|
<li class="right" >
|
149
154
|
<a href="spec/search.html" title="9.2. 検索"
|
150
155
|
>前へ</a> |</li>
|
151
|
-
<li><a href="index.html">groonga v3.0.
|
156
|
+
<li><a href="index.html">groonga v3.0.5ドキュメント</a> »</li>
|
152
157
|
</ul>
|
153
158
|
</div>
|
154
159
|
<div class="footer">
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>お知らせ — groonga v3.0.
|
10
|
+
<title>お知らせ — groonga v3.0.5ドキュメント</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '3.0.
|
18
|
+
VERSION: '3.0.5',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -26,7 +26,7 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="groonga v3.0.
|
29
|
+
<link rel="top" title="groonga v3.0.5ドキュメント" href="index.html" />
|
30
30
|
</head>
|
31
31
|
<body>
|
32
32
|
<div class="header">
|
@@ -52,7 +52,7 @@
|
|
52
52
|
<li class="right" style="margin-right: 10px">
|
53
53
|
<a href="genindex.html" title="総合索引"
|
54
54
|
accesskey="I">索引</a></li>
|
55
|
-
<li><a href="index.html">groonga v3.0.
|
55
|
+
<li><a href="index.html">groonga v3.0.5ドキュメント</a> »</li>
|
56
56
|
</ul>
|
57
57
|
</div>
|
58
58
|
|
@@ -63,517 +63,816 @@
|
|
63
63
|
|
64
64
|
<div class="section" id="news">
|
65
65
|
<h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
66
|
-
<div class="section" id="release-3-0-
|
67
|
-
<span id="release-3-0-
|
66
|
+
<div class="section" id="release-3-0-5-2013-06-29">
|
67
|
+
<span id="release-3-0-5"></span><h2>3.0.5リリース - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
68
68
|
<div class="section" id="improvements">
|
69
69
|
<h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
70
70
|
<ul class="simple">
|
71
|
-
<li>[
|
72
|
-
|
73
|
-
<li>
|
74
|
-
|
75
|
-
<li><tt class="docutils literal"><span class="pre">
|
76
|
-
|
77
|
-
<li><
|
78
|
-
|
79
|
-
<li
|
80
|
-
|
81
|
-
<li>不要なログメッセージを何度も出さないようにしました。不要なログメッセージは"(N same messages are truncated)"として省略されるようになります。</li>
|
82
|
-
<li>[munin][groonga_n_records] <tt class="docutils literal"><span class="pre">exclude_tables</span></tt> オプションを追加しました。これによりモニタリング結果から特定のテーブルを除去することができます。</li>
|
83
|
-
<li>Debian 8.0 (jessie)をサポートしました。</li>
|
84
|
-
<li>プラグインのディレクトリパスを除去することでデータベースファイルのポータビリティを改善しました。</li>
|
71
|
+
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">match_column</span></tt> と <tt class="docutils literal"><span class="pre">query()</span></tt> の <tt class="docutils literal"><span class="pre">query_string</span></tt> 引数のサマリを追加しました。</p>
|
72
|
+
</li>
|
73
|
+
<li><p class="first">subrecordの情報をテーブルのインスペクション時に表示するようにしました。</p>
|
74
|
+
</li>
|
75
|
+
<li><p class="first">シングルクォートした文字列を <tt class="docutils literal"><span class="pre">output_columns</span></tt> でもサポートしました。これは "XXX, '...'" といった表現がサポートされたことを意味しています。</p>
|
76
|
+
</li>
|
77
|
+
<li><p class="first">[doc] groongaサーバーを起動する際のroot権限と使用ポートに関する注意を追加しました。 [浅見さんが報告]</p>
|
78
|
+
</li>
|
79
|
+
<li><p class="first">[実験的] <a class="reference internal" href="reference/functions/html_untag.html"><em>html_untag</em></a> 関数を追加しました。</p>
|
80
|
+
</li>
|
85
81
|
</ul>
|
86
82
|
</div>
|
87
83
|
<div class="section" id="fixes">
|
88
84
|
<h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
89
85
|
<ul class="simple">
|
90
|
-
<li
|
91
|
-
|
92
|
-
<li
|
93
|
-
|
94
|
-
<li
|
95
|
-
|
86
|
+
<li><p class="first">テーブル作成時に必要なロックをかけていないことでmroongaがクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
|
87
|
+
</li>
|
88
|
+
<li><p class="first">ClangやGCCによるコンパイル時の警告を抑制するように修正しました。</p>
|
89
|
+
</li>
|
90
|
+
<li><p class="first">"XXX && sub_filter(...)" という表現をすると <tt class="docutils literal"><span class="pre">sub_filter(...)</span></tt> が無視される不具合を修正しました。</p>
|
91
|
+
</li>
|
92
|
+
<li><p class="first">間違ったタグ名がXMLの出力で使われる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">output_columns</span></tt> で "REFERENCE_VECTOR_COLUMN._key" という表現をすると影響を受けます。 参照カラムがXMLの出力に含まれません。</p>
|
93
|
+
</li>
|
94
|
+
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">sub_filter()</span></tt> のドキュメントにおける引数の誤りを修正しました。</p>
|
95
|
+
</li>
|
96
|
+
<li><p class="first">[deb] サービス停止中のステータスとして正しくない終了コードを返す不具合を修正しました。</p>
|
97
|
+
</li>
|
98
|
+
<li><p class="first">算術演算の結果が壊れる不具合を修正しました。この不具合は例えば <tt class="docutils literal"><span class="pre">_score</span></tt> 疑似カラムへと計算結果を代入するような場合に影響します。</p>
|
99
|
+
</li>
|
96
100
|
</ul>
|
97
101
|
</div>
|
98
102
|
<div class="section" id="thanks">
|
99
103
|
<h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
100
104
|
<ul class="simple">
|
101
|
-
<li
|
102
|
-
|
103
|
-
<li>
|
104
|
-
<li
|
105
|
-
|
105
|
+
<li><p class="first">Y.Kentaroさん</p>
|
106
|
+
</li>
|
107
|
+
<li>Kosuke Asami</li>
|
108
|
+
<li><p class="first">@orangainさん</p>
|
109
|
+
</li>
|
106
110
|
</ul>
|
107
111
|
</div>
|
108
112
|
</div>
|
109
|
-
<div class="section" id="release-3-0-
|
110
|
-
<span id="release-3-0-
|
113
|
+
<div class="section" id="release-3-0-4-2013-05-29">
|
114
|
+
<span id="release-3-0-4"></span><h2>3.0.4リリース - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
111
115
|
<div class="section" id="id1">
|
112
116
|
<h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
113
117
|
<ul class="simple">
|
114
|
-
<li
|
115
|
-
|
116
|
-
<li>
|
117
|
-
|
118
|
-
<li
|
119
|
-
|
120
|
-
<li><
|
121
|
-
|
118
|
+
<li><p class="first">[tokenizer] ノーマライズした文字列が与えられないときにログメッセージを表示するようにしました。</p>
|
119
|
+
</li>
|
120
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_in_circle</span></tt> の引数に <tt class="docutils literal"><span class="pre">_key</span></tt> が使えるようにしました。[@ceekzさんが報告]</p>
|
121
|
+
</li>
|
122
|
+
<li><p class="first">groongaをライブラリとして使うときに、ベクタカラムのキャストをサポートしました。</p>
|
123
|
+
</li>
|
124
|
+
<li><p class="first">Ubuntu 11.10 (Oneiric Ocelot)のサポートをやめました。</p>
|
125
|
+
</li>
|
126
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">match_columns</span></tt> にてマルチセクション対応のインデックス指定をサポートしました。</p>
|
127
|
+
</li>
|
128
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドをサポートしました。</p>
|
129
|
+
</li>
|
130
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">mmap()</span></tt> が失敗したときのシステムエラーメッセージの表示をサポートしました。</p>
|
131
|
+
</li>
|
132
|
+
<li><p class="first">[doc][windows] ビルド手順を "cmake --build" でできるように簡略化しました。</p>
|
133
|
+
</li>
|
134
|
+
<li><p class="first">サービススクリプトが応答しなくならないように最大実行時間を制限するようにしました。[GitHub#61] [firewoodさんが報告]</p>
|
135
|
+
</li>
|
136
|
+
<li><p class="first">ベクタを真偽値として評価できるようにしました。この変更で空のベクタはtrueとして評価されるようになります。</p>
|
137
|
+
</li>
|
138
|
+
<li><p class="first">不要なログメッセージを何度も出さないようにしました。不要なログメッセージは"(N same messages are truncated)"として省略されるようになります。</p>
|
139
|
+
</li>
|
140
|
+
<li><p class="first">[munin][groonga_n_records] <tt class="docutils literal"><span class="pre">exclude_tables</span></tt> オプションを追加しました。これによりモニタリング結果から特定のテーブルを除去することができます。</p>
|
141
|
+
</li>
|
142
|
+
<li><p class="first">Debian 8.0 (jessie)をサポートしました。</p>
|
143
|
+
</li>
|
144
|
+
<li><p class="first">プラグインのディレクトリパスを除去することでデータベースファイルのポータビリティを改善しました。</p>
|
145
|
+
</li>
|
122
146
|
</ul>
|
123
147
|
</div>
|
124
|
-
</div>
|
125
|
-
<div class="section" id="release-3-0-2-2013-03-29">
|
126
|
-
<span id="release-3-0-2"></span><h2>3.0.2リリース - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
127
148
|
<div class="section" id="id2">
|
128
|
-
<h3
|
149
|
+
<h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
129
150
|
<ul class="simple">
|
130
|
-
<li>
|
131
|
-
|
132
|
-
<li><
|
133
|
-
|
134
|
-
<li><
|
135
|
-
|
136
|
-
<li
|
137
|
-
|
138
|
-
<li><
|
139
|
-
|
151
|
+
<li><p class="first">[tokenizer] エラー時のメモリリークを修正しました。</p>
|
152
|
+
</li>
|
153
|
+
<li><p class="first">空の文字列による類似検索がSEGVを引き起す不具合を修正しました。[groonga-dev,01346] [中井さんが報告]</p>
|
154
|
+
</li>
|
155
|
+
<li><p class="first">"VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx" といった式が使われたときにメモリリークする問題を修正しました。</p>
|
156
|
+
</li>
|
157
|
+
<li><p class="first">SIGSTOPとSIGCONTによりgroongaサーバが停止してしまう不具合を修正しました。</p>
|
158
|
+
</li>
|
159
|
+
<li><p class="first">ノーマライザーがノーマライズ済み文字列としてNULLを返したときにクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
|
160
|
+
</li>
|
161
|
+
<li><p class="first">デーモン化する課程が OS Xでは動作しない不具合を修正。[groonga-dev,01440] [小西さんが報告]</p>
|
162
|
+
</li>
|
163
|
+
<li><p class="first">[deb] HTTP/GQTPプロセスがroot権限で実行されてしまう不具合を修正しました。</p>
|
164
|
+
</li>
|
140
165
|
</ul>
|
141
166
|
</div>
|
142
167
|
<div class="section" id="id3">
|
143
|
-
<h3
|
168
|
+
<h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
144
169
|
<ul class="simple">
|
145
|
-
<li><
|
146
|
-
|
147
|
-
<li
|
148
|
-
|
149
|
-
<li><
|
170
|
+
<li><p class="first">@ceekzさん</p>
|
171
|
+
</li>
|
172
|
+
<li><p class="first">中井さん</p>
|
173
|
+
</li>
|
174
|
+
<li><p class="first">firewoodさん</p>
|
175
|
+
</li>
|
176
|
+
<li><p class="first">Y.Kentaroさん</p>
|
177
|
+
</li>
|
178
|
+
<li><p class="first">小西さん</p>
|
179
|
+
</li>
|
180
|
+
<li><p class="first">@orangainさん</p>
|
181
|
+
</li>
|
150
182
|
</ul>
|
151
183
|
</div>
|
184
|
+
</div>
|
185
|
+
<div class="section" id="release-3-0-3-2013-04-29">
|
186
|
+
<h2>3.0.3リリース - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
152
187
|
<div class="section" id="id4">
|
153
|
-
<h3
|
188
|
+
<h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
154
189
|
<ul class="simple">
|
155
|
-
<li>
|
156
|
-
|
157
|
-
<li>
|
190
|
+
<li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> を使って学習時の重みづけをカスタマイズできるようになりました。</p>
|
191
|
+
</li>
|
192
|
+
<li><p class="first">位置情報検索のパフォーマンスを改善しました。例えば、 <tt class="docutils literal"><span class="pre">geo_in_rectangle</span></tt> の実行速度が10%程度以前より高速化しています。</p>
|
193
|
+
</li>
|
194
|
+
<li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">additional_configure_options</span></tt> パラメータを追加しました。groongaをカスタマイズしてビルドするのにspecファイルを修正する必要はありません。</p>
|
195
|
+
</li>
|
196
|
+
<li><p class="first">KyTea 0.4.5をサポート。</p>
|
197
|
+
</li>
|
198
|
+
<li><p class="first">ベクターに対し "vector[N]" という構文でインデックスを指定してアクセスできるようにした。</p>
|
199
|
+
</li>
|
200
|
+
<li><p class="first"><a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html"><em>groonga-suggest-create-dataset</em></a> コマンドに <tt class="docutils literal"><span class="pre">--default-tokenizer</span></tt> オプションを追加した。</p>
|
201
|
+
</li>
|
202
|
+
<li><p class="first"><a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html"><em>groonga-suggest-create-dataset</em></a> コマンドに <tt class="docutils literal"><span class="pre">--help</span></tt> オプションを追加した。</p>
|
203
|
+
</li>
|
204
|
+
<li><p class="first">Ubuntu 13.04 Raring Ringtailをサポート。</p>
|
205
|
+
</li>
|
158
206
|
</ul>
|
159
207
|
</div>
|
160
208
|
</div>
|
161
|
-
<div class="section" id="release-3-0-
|
162
|
-
<
|
209
|
+
<div class="section" id="release-3-0-2-2013-03-29">
|
210
|
+
<h2>3.0.2リリース - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
163
211
|
<div class="section" id="id5">
|
164
212
|
<h3>改良<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
165
213
|
<ul class="simple">
|
166
|
-
<li>
|
167
|
-
|
168
|
-
<li
|
169
|
-
|
170
|
-
<li
|
171
|
-
|
214
|
+
<li><p class="first">2つ以上のインデックスをテーブルのキーに対して張れるようにしました。この変更はインデックスを張ったキーへ新たなキーをロードしたときにクラッシュしないようにします。</p>
|
215
|
+
</li>
|
216
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">X</span> <span class="pre">+</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">-</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">*</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">/</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">%</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>></span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre"><<</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">|</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">^</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">&</span> <span class="pre">Y</span></tt> や <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>></span> <span class="pre">Y</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
|
217
|
+
</li>
|
218
|
+
<li><p class="first"><a class="reference internal" href="reference/commands/load.html"><em>load</em></a> コマンドのドキュメントを追加。</p>
|
219
|
+
</li>
|
220
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">X</span> <span class="pre">+=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">-=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">*=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">/=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">%=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre"><<=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>>=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">&=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">|=</span> <span class="pre">Y</span></tt> や <tt class="docutils literal"><span class="pre">X</span> <span class="pre">^=</span> <span class="pre">Y</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
|
221
|
+
</li>
|
222
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">-X</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
|
223
|
+
</li>
|
224
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で複雑な文字列の連結をサポートしました。例えば <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'"<"</span> <span class="pre">+</span> <span class="pre">title</span> <span class="pre">+</span> <span class="pre">">"'</span></tt> といったクエリを書けるようになりました。</p>
|
225
|
+
</li>
|
226
|
+
<li><p class="first">開発ページにgroongaリポジトリの情報を追加しました。</p>
|
227
|
+
</li>
|
228
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">sub_filter()</span></tt> 関数を追加しました。</p>
|
229
|
+
</li>
|
230
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">query()</span></tt> 関数でクエリ展開をサポートしました。この変更で <tt class="docutils literal"><span class="pre">query("MATCH_COLUMNS",</span> <span class="pre">"QUERY","QueryExpanderTSV")</span></tt> といったクエリが書けるようになりました。</p>
|
231
|
+
</li>
|
232
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--query_expansion</span></tt> を <tt class="docutils literal"><span class="pre">--query_expander</span></tt> に変更しました。 <tt class="docutils literal"><span class="pre">--query_expansion</span></tt> は引き続き使えますが、非推奨となります。</p>
|
233
|
+
</li>
|
172
234
|
</ul>
|
173
235
|
</div>
|
174
236
|
<div class="section" id="id6">
|
175
237
|
<h3>修正<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
176
238
|
<ul class="simple">
|
177
|
-
<li><tt class="docutils literal"><span class="pre">
|
178
|
-
|
179
|
-
<li
|
239
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">snippet_html(XXX),</span> <span class="pre">XXX</span></tt> を実行すると "stack error"になる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'snippet_html(title),</span> <span class="pre">content'</span></tt> といったクエリに影響します。[Groonga-talk (no subject)] [Hendro Wibowoさんが報告]</p>
|
240
|
+
</li>
|
241
|
+
<li><p class="first">インストールのドキュメントの誤字を修正。 [hinoさんが報告]</p>
|
242
|
+
</li>
|
243
|
+
<li><p class="first">Travi-CIセットアップ用のスクリプトが動作しない不具合を修正した。[groonga-dev,01248] [ongaeshiさんが報告]</p>
|
244
|
+
</li>
|
245
|
+
<li><p class="first">メモリリークを修正した。この不具合は次の3つの条件が重なったときに発生します。参照カラムかつそのカラムがベクター型であって、キーのサイズが25バイト以上のとき。</p>
|
246
|
+
</li>
|
247
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">_score.GARBAGE</span></tt> というクエリによってクラッシュする不具合を修正した。この不具合はGARBAGEが存在しないときに影響します。</p>
|
248
|
+
</li>
|
180
249
|
</ul>
|
181
250
|
</div>
|
182
251
|
<div class="section" id="id7">
|
183
252
|
<h3>感謝<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
184
253
|
<ul class="simple">
|
185
|
-
<li>
|
254
|
+
<li><p class="first">Hendro Wibowoさん</p>
|
255
|
+
</li>
|
256
|
+
<li><p class="first">hinoさん</p>
|
257
|
+
</li>
|
258
|
+
<li><p class="first">ongaeshiさん</p>
|
259
|
+
</li>
|
186
260
|
</ul>
|
187
261
|
</div>
|
188
262
|
</div>
|
189
|
-
<div class="section" id="release-3-0-
|
190
|
-
<
|
191
|
-
<ul class="simple">
|
192
|
-
<li>バージョン3.0.0になりました!</li>
|
193
|
-
</ul>
|
263
|
+
<div class="section" id="release-3-0-1-2013-02-28">
|
264
|
+
<h2>3.0.1リリース - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
194
265
|
<div class="section" id="id8">
|
195
|
-
<h3
|
266
|
+
<h3>改良<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
196
267
|
<ul class="simple">
|
197
|
-
<li
|
198
|
-
|
199
|
-
<li
|
268
|
+
<li><p class="first">loadコマンドでデータをロードするときに参照カラムに対するBoolの設定をサポートしました。</p>
|
269
|
+
</li>
|
270
|
+
<li><p class="first">ネストしたインデックスに対してAND検索できるようになりました。この変更で、"COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3"という検索ができるようになります。ただし、"1 <= COLUMN1.COLUMN2" という表記はまだサポートしていません。これを指定すると、"COLUMN1.COLUMN2 <= 1"とみなします。</p>
|
271
|
+
</li>
|
272
|
+
<li><p class="first">インデックスの張られていない要素に対するソートをサポートしました。この変更は <tt class="docutils literal"><span class="pre">--sortby</span> <span class="pre">geo_distance(...)</span></tt> のようにインデックス化されていない要素をソートしようとしたときに結果が抜け落ちてしてしまう場合に影響します。</p>
|
273
|
+
</li>
|
274
|
+
<li><p class="first">参照カラムの範囲検索をインデックスを使って検索できるようにした。この変更でTABLE_PAT_KEYやTABLE_DAT_KEYを使ったネストしたインデックスの <tt class="docutils literal"><span class="pre">_key</span></tt> に対しても範囲検索できるようになった。</p>
|
275
|
+
</li>
|
276
|
+
<li><p class="first">[rpm][centos] MeCab 0.995をサポート。</p>
|
277
|
+
</li>
|
278
|
+
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">column_rename</span></tt> や <tt class="docutils literal"><span class="pre">truncate</span></tt> コマンドのドキュメントを追加。</p>
|
279
|
+
</li>
|
200
280
|
</ul>
|
201
281
|
</div>
|
202
282
|
<div class="section" id="id9">
|
203
|
-
<h3
|
283
|
+
<h3>修正<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
204
284
|
<ul class="simple">
|
205
|
-
<li
|
285
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> が意図せずNULLを返す不具合を修正しました。このせいで要素を削除した後に不正なインデックスを返していました。この不具合はmroongaをストレージモードで動かしたときに発生します。 [groonga-dev,01192] [b senbokuさんが報告]</p>
|
286
|
+
</li>
|
287
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance()</span></tt> をインデックスを使ってソートしようとするときに落ちる不具合を修正しました。この不具合は見付けたレコードのカウントが正しくないことで発生します。</p>
|
288
|
+
</li>
|
289
|
+
<li><p class="first">[httpd] データベースのオーナー/グループのデフォルト設定がgroongaとなっている箇所を有効にしました。</p>
|
290
|
+
</li>
|
206
291
|
</ul>
|
207
292
|
</div>
|
208
|
-
</div>
|
209
|
-
<div class="section" id="release-2-1-2-2013-01-29">
|
210
|
-
<span id="release-2-1-2"></span><h2>2.1.2リリース - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
211
293
|
<div class="section" id="id10">
|
212
|
-
<h3
|
213
|
-
<ul class="simple">
|
214
|
-
<li
|
215
|
-
|
216
|
-
<li><tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> APIを追加しました。 <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> APIは非推奨となりました。 <tt class="docutils literal"><span class="pre">grn_logger</span></tt> APIを代りに使ってください。</li>
|
217
|
-
<li><tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</li>
|
218
|
-
<li><tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</li>
|
219
|
-
<li><a class="reference internal" href="reference/normalizers.html"><em>ノーマライザー</em></a> と <a class="reference internal" href="reference/normalizers.html"><em>ノーマライザー</em></a> に関するドキュメントを追加。</li>
|
220
|
-
<li>[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をインストールするように改善した。</li>
|
221
|
-
<li>範囲検索を <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> でもサポートした。例えば、 'column1.column2...columnN <= "1988-01-04 00:00:00"' というように <tt class="docutils literal"><span class="pre">--filter</span></tt> に範囲を指定することができるようになります。</li>
|
222
|
-
<li>[rpm][fedora] Fedora 18をサポート。</li>
|
223
|
-
<li>[rpm][fedora] Fedora 17サポートを削除。</li>
|
224
|
-
<li>[doc] <a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a> のドキュメントを追加。</li>
|
225
|
-
<li>[doc] <a class="reference internal" href="reference/functions/query.html"><em>query</em></a> のドキュメントを追加。</li>
|
294
|
+
<h3>感謝<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
295
|
+
<ul class="simple">
|
296
|
+
<li><p class="first">b senbokuさん</p>
|
297
|
+
</li>
|
226
298
|
</ul>
|
227
299
|
</div>
|
300
|
+
</div>
|
301
|
+
<div class="section" id="release-3-0-0-2013-02-09">
|
302
|
+
<h2>3.0.0リリース - 2013/02/09<a class="headerlink" href="#release-3-0-0-2013-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
303
|
+
<ul class="simple">
|
304
|
+
<li><p class="first">バージョン3.0.0になりました!</p>
|
305
|
+
</li>
|
306
|
+
</ul>
|
228
307
|
<div class="section" id="id11">
|
229
308
|
<h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
230
309
|
<ul class="simple">
|
231
|
-
<li>
|
232
|
-
|
233
|
-
<li
|
310
|
+
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をEUC-JPでなくUTF-8の辞書ものを明示的にインストールするように修正した。</p>
|
311
|
+
</li>
|
312
|
+
<li><p class="first">int64の表記がuint32の値として切り捨てられてしまう不具合を修正した。int64の文字列として表記した場合には、この不具合の影響はありません。</p>
|
313
|
+
</li>
|
314
|
+
<li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">groonga-server-http</span></tt> サービスの停止に失敗する不具合を修正した。 [GitHub#53] [岩井さんがパッチ提供]</p>
|
315
|
+
</li>
|
234
316
|
</ul>
|
235
317
|
</div>
|
236
318
|
<div class="section" id="id12">
|
237
319
|
<h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
238
320
|
<ul class="simple">
|
239
|
-
<li>
|
321
|
+
<li><p class="first">岩井さん</p>
|
322
|
+
</li>
|
240
323
|
</ul>
|
241
324
|
</div>
|
242
325
|
</div>
|
243
|
-
<div class="section" id="release-2-1-
|
244
|
-
<
|
245
|
-
<p>2.1.0のバグフィックスリリースです。2.1.0を使っている人は2.1.0ではなく2.1.1を使ってください。</p>
|
326
|
+
<div class="section" id="release-2-1-2-2013-01-29">
|
327
|
+
<h2>2.1.2リリース - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
246
328
|
<div class="section" id="id13">
|
247
|
-
<h3
|
329
|
+
<h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
248
330
|
<ul class="simple">
|
249
|
-
<li>
|
331
|
+
<li><p class="first">複数の <tt class="docutils literal"><span class="pre">query()</span></tt> を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポートしました。例えば、キーワードごとに異なる重みづけを指定して検索するのに'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'などと <tt class="docutils literal"><span class="pre">--filter</span></tt> に指定することができます。</p>
|
332
|
+
</li>
|
333
|
+
<li><p class="first">実験的機能であったビューを削除しました。</p>
|
334
|
+
</li>
|
335
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> APIを追加しました。 <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> APIは非推奨となりました。 <tt class="docutils literal"><span class="pre">grn_logger</span></tt> APIを代りに使ってください。</p>
|
336
|
+
</li>
|
337
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
|
338
|
+
</li>
|
339
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
|
340
|
+
</li>
|
341
|
+
<li><p class="first"><a class="reference internal" href="reference/tables.html"><em>テーブル</em></a> と <a class="reference internal" href="reference/normalizers.html"><em>ノーマライザー</em></a> に関するドキュメントを追加。</p>
|
342
|
+
</li>
|
343
|
+
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をインストールするように改善した。</p>
|
344
|
+
</li>
|
345
|
+
<li><p class="first">範囲検索を <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> でもサポートした。例えば、 'column1.column2...columnN <= "1988-01-04 00:00:00"' というように <tt class="docutils literal"><span class="pre">--filter</span></tt> に範囲を指定することができるようになります。</p>
|
346
|
+
</li>
|
347
|
+
<li><p class="first">[rpm][fedora] Fedora 18をサポート。</p>
|
348
|
+
</li>
|
349
|
+
<li><p class="first">[rpm][fedora] Fedora 17サポートを削除。</p>
|
350
|
+
</li>
|
351
|
+
<li><p class="first">[doc] <a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a> のドキュメントを追加。</p>
|
352
|
+
</li>
|
353
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/functions/query.html"><em>query</em></a> のドキュメントを追加。</p>
|
354
|
+
</li>
|
250
355
|
</ul>
|
251
356
|
</div>
|
252
|
-
</div>
|
253
|
-
<div class="section" id="release-2-1-0-2012-12-29">
|
254
|
-
<span id="release-2-1-0"></span><h2>2.1.0リリース - 2012/12/29<a class="headerlink" href="#release-2-1-0-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
255
|
-
<div class="admonition caution">
|
256
|
-
<p class="first admonition-title">ご用心</p>
|
257
|
-
<p class="last">2.1.0ではなく2.1.1を使ってください。2.1.0は <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の深刻な問題があります。</p>
|
258
|
-
</div>
|
259
|
-
<div class="admonition caution">
|
260
|
-
<p class="first admonition-title">ご用心</p>
|
261
|
-
<p>このリリースでは <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> コマンドに関する非互換な変更があります。もしご自身で作成したプログラム等でこれらコマンドの出力結果に依存しているものがあるなら、"null"文字列ではなくnullをサポートする必要があります。</p>
|
262
|
-
<p>このリリースでは <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションをサポートしましたが、副作用があり、一度でも古いバージョンのデータベースを新しいバージョンのgroongaで開くと、古いバージョンのgroongaではデータベースを開けなくなります。</p>
|
263
|
-
<p class="last">もうひとつトークナイザプラグインAPIに関する非互換な変更があります。 <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの引数が変更されました。このAPIの変更はトークナイザプラグインの開発者に影響があります。</p>
|
264
|
-
</div>
|
265
357
|
<div class="section" id="id14">
|
266
|
-
<h3
|
358
|
+
<h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
267
359
|
<ul class="simple">
|
268
|
-
<li
|
269
|
-
|
270
|
-
<li
|
271
|
-
|
272
|
-
<li><
|
273
|
-
|
274
|
-
<li>正規化の振舞いを制御するためのフラグを <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの最後の引数として追加した。</li>
|
275
|
-
<li><a class="reference internal" href="reference/executables/groonga.html#command-list-with-continuous-line"><em>コマンド</em></a> リストに書かれた継続行のサポート。</li>
|
276
|
-
<li><a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> をキーのないテーブルだけでなく、ハッシュやパトリシア木、ダブル配列を指定したテーブルでも使えるように改善した。</li>
|
360
|
+
<li><p class="first">MeCabトークナイザーの共有オブジェクトが見つからなくてもエラーをログに記録しないようにした。 [groonga-dev,01174] [wingさんが報告]</p>
|
361
|
+
</li>
|
362
|
+
<li><p class="first">[httpd] CentOS 5.4で <tt class="docutils literal"><span class="pre">SED</span></tt> 変数を明示的に設定することで、configureスクリプト実行が失敗しないようにした。</p>
|
363
|
+
</li>
|
364
|
+
<li><p class="first">値を設定していない未初期化のベクタカラムの値を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドで参照したときにクラッシュする不具合を修正した。</p>
|
365
|
+
</li>
|
277
366
|
</ul>
|
278
367
|
</div>
|
279
368
|
<div class="section" id="id15">
|
280
|
-
<h3
|
369
|
+
<h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
281
370
|
<ul class="simple">
|
282
|
-
<li
|
283
|
-
|
284
|
-
<li><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で"*"のあとに <tt class="docutils literal"><span class="pre">_score</span></tt> を指定しても無視される不具合を修正した。</li>
|
371
|
+
<li><p class="first">wingさん</p>
|
372
|
+
</li>
|
285
373
|
</ul>
|
286
374
|
</div>
|
375
|
+
</div>
|
376
|
+
<div class="section" id="release-2-1-1-2012-12-29">
|
377
|
+
<h2>2.1.1リリース - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
378
|
+
<p>2.1.0のバグフィックスリリースです。2.1.0を使っている人は2.1.0ではなく2.1.1を使ってください。</p>
|
287
379
|
<div class="section" id="id16">
|
288
|
-
<h3
|
380
|
+
<h3>修正<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
289
381
|
<ul class="simple">
|
290
|
-
<li
|
291
|
-
|
382
|
+
<li><p class="first">groonga 2.0.8以前で作成したデータベース中の <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の情報が失われる問題を修正。</p>
|
383
|
+
</li>
|
292
384
|
</ul>
|
293
385
|
</div>
|
294
386
|
</div>
|
295
|
-
<div class="section" id="release-2-0-
|
296
|
-
<
|
387
|
+
<div class="section" id="release-2-1-0-2012-12-29">
|
388
|
+
<h2>2.1.0リリース - 2012/12/29<a class="headerlink" href="#release-2-1-0-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
389
|
+
<div class="admonition caution">
|
390
|
+
<p class="first admonition-title">ご用心</p>
|
391
|
+
<p class="last">2.1.0ではなく2.1.1を使ってください。2.1.0は <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の深刻な問題があります。</p>
|
392
|
+
</div>
|
393
|
+
<div class="admonition caution">
|
394
|
+
<p class="first admonition-title">ご用心</p>
|
395
|
+
<p>このリリースでは <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> コマンドに関する非互換な変更があります。もしご自身で作成したプログラム等でこれらコマンドの出力結果に依存しているものがあるなら、"null"文字列ではなくnullをサポートする必要があります。</p>
|
396
|
+
<p>このリリースでは <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションをサポートしましたが、副作用があり、一度でも古いバージョンのデータベースを新しいバージョンのgroongaで開くと、古いバージョンのgroongaではデータベースを開けなくなります。</p>
|
397
|
+
<p class="last">もうひとつトークナイザプラグインAPIに関する非互換な変更があります。 <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの引数が変更されました。このAPIの変更はトークナイザプラグインの開発者に影響があります。</p>
|
398
|
+
</div>
|
297
399
|
<div class="section" id="id17">
|
298
400
|
<h3>改良<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
299
401
|
<ul class="simple">
|
300
|
-
<li><
|
301
|
-
|
302
|
-
<li>
|
303
|
-
|
304
|
-
<li
|
305
|
-
|
306
|
-
<li><tt class="docutils literal"><span class="pre">
|
307
|
-
|
308
|
-
<li
|
309
|
-
|
310
|
-
<li><
|
311
|
-
|
402
|
+
<li><p class="first">[doc] <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> に関するドキュメントを追加。</p>
|
403
|
+
</li>
|
404
|
+
<li><p class="first"><a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> の引数として式を指定できるようにした。この変更で、 <tt class="docutils literal"><span class="pre">snippet_html("STRING"</span> <span class="pre">+</span> <span class="pre">"STRING")</span></tt> と書けるようになります。 "STRING"にはカラム名や文字列を指定できます。 [嶋田 大貴さんが報告]</p>
|
405
|
+
</li>
|
406
|
+
<li><p class="first">正規化を行うプラグインを作成できるようにした。</p>
|
407
|
+
</li>
|
408
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">groonga-query-log-analyzer</span></tt> を <a class="reference external" href="http://rubygems.org/gems/groonga-query-log">groonga-query-log</a> というRubyGemsにして移動しました。これによりgroongaのパッケージをインストールせずにクエリログの解析を行えるようになります。</p>
|
409
|
+
</li>
|
410
|
+
<li><p class="first"><a class="reference internal" href="reference/commands/table_create.html"><em>table_create</em></a> コマンドにて <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションの指定をサポートしました。正規化のためのプラグインを指定できるようになります。</p>
|
411
|
+
</li>
|
412
|
+
<li><p class="first">"No Object"を表現するのに"null"文字列ではなくnull値を使うように変更しました。これは非互換な変更で <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> といったコマンドの出力結果に影響します。</p>
|
413
|
+
</li>
|
414
|
+
<li><p class="first">正規化の振舞いを制御するためのフラグを <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの最後の引数として追加した。</p>
|
415
|
+
</li>
|
416
|
+
<li><p class="first"><a class="reference internal" href="reference/executables/groonga.html#command-list-with-continuous-line"><em>コマンド</em></a> リストに書かれた継続行のサポート。</p>
|
417
|
+
</li>
|
418
|
+
<li><p class="first"><a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> をキーのないテーブルだけでなく、ハッシュやパトリシア木、ダブル配列を指定したテーブルでも使えるように改善した。</p>
|
419
|
+
</li>
|
312
420
|
</ul>
|
313
421
|
</div>
|
314
422
|
<div class="section" id="id18">
|
315
423
|
<h3>修正<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
316
424
|
<ul class="simple">
|
317
|
-
<li><
|
318
|
-
|
319
|
-
<li>
|
320
|
-
|
321
|
-
<li><
|
322
|
-
|
323
|
-
<li>latin1やkoi8rの正規化で、与えた文字列データにNULL終端が途中に含まれているとすべての文字列データを正規化できない不具合を修正した。</li>
|
324
|
-
<li><tt class="docutils literal"><span class="pre">select</span></tt> コマンドでデータが保存されていないカラムを参照したときに、型にあったデフォルト値を返さない不具合を修正した。</li>
|
325
|
-
<li>Fixed to exclude the value of vector column metadata in <a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a>.
|
326
|
-
This change not to contain such a metadata as search results.</li>
|
425
|
+
<li><p class="first">[windows] <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> フラグをファイルを開くときに指定するようにした。groonga HTTPサーバが無限ループに陥っていた問題が解決します。 [GitHub#47] [Shimomura Tatsuyaさんがパッチ提供]</p>
|
426
|
+
</li>
|
427
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--default-match-escalation-threshold</span></tt> が負数を受け付けないため、 <a class="reference internal" href="spec/search.html"><em>検索</em></a> 時に行なわれる挙動の変更を無効化できない問題を修正しました。オプションの詳細は <a class="reference internal" href="reference/executables/groonga.html#cmdoption--default-match-escalation-threshold"><em class="xref std std-option">--default-match-escalation-threshold</em></a> を参照してください。</p>
|
428
|
+
</li>
|
429
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で"*"のあとに <tt class="docutils literal"><span class="pre">_score</span></tt> を指定しても無視される不具合を修正した。</p>
|
430
|
+
</li>
|
327
431
|
</ul>
|
328
432
|
</div>
|
329
433
|
<div class="section" id="id19">
|
330
434
|
<h3>感謝<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
331
435
|
<ul class="simple">
|
332
|
-
<li>嶋田 大貴さん</
|
333
|
-
|
334
|
-
<li>
|
436
|
+
<li><p class="first">嶋田 大貴さん</p>
|
437
|
+
</li>
|
438
|
+
<li><p class="first">Shimomura Tatsuyaさん</p>
|
439
|
+
</li>
|
335
440
|
</ul>
|
336
441
|
</div>
|
337
442
|
</div>
|
338
|
-
<div class="section" id="release-2-0-
|
339
|
-
<
|
443
|
+
<div class="section" id="release-2-0-9-2012-11-29">
|
444
|
+
<h2>2.0.9リリース - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
340
445
|
<div class="section" id="id20">
|
341
446
|
<h3>改良<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
342
447
|
<ul class="simple">
|
343
|
-
<li>
|
344
|
-
|
345
|
-
<li>[
|
346
|
-
|
347
|
-
<li>
|
348
|
-
|
448
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance</span></tt> 関数の近似方法として <tt class="docutils literal"><span class="pre">rectangle</span></tt> を指定したときに境界をまたいでも距離の算出できるようにした。 [#1534]</p>
|
449
|
+
</li>
|
450
|
+
<li><p class="first">[doc] <a class="reference internal" href="spec/gqtp.html"><em>GQTP</em></a> の仕様についてのドキュメントを追加した。</p>
|
451
|
+
</li>
|
452
|
+
<li><p class="first">groongaコマンドの起動時に致命的でない <tt class="docutils literal"><span class="pre">getaddrinfo()</span></tt> 関数のエラーは無視するようにした。この変更はgroongaを通常使用する場合には影響しません。その理由はデフォルトのホスト名が解決できるかチェックするのに使っていただけだからです。</p>
|
453
|
+
</li>
|
454
|
+
<li><p class="first">[実験的] キーワードとその周辺のテキストを抽出するための <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数を追加した。詳細については <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> を参照してください。</p>
|
455
|
+
</li>
|
456
|
+
<li><p class="first">テーブルのレコードを出力している際に発生したエラーを表示するようにした。</p>
|
457
|
+
</li>
|
458
|
+
<li><p class="first">複数のテーブルで関連したインデックスが設定されていれば、ネストしたインデックス (複数のカラムインデックス名を <tt class="docutils literal"><span class="pre">.</span></tt> で連結して指定)に対してキーワードで検索できるようにした。</p>
|
459
|
+
</li>
|
460
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">TokenMecab</span></tt> トークナイザを使ったときにログに"[tokenizer][mecab]"タグを出力するようにした。</p>
|
461
|
+
</li>
|
462
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">TokenKyTea</span></tt> トークナイザを使ったときにログに"[tokenizer][kytea]"タグを出力するようにした。</p>
|
463
|
+
</li>
|
464
|
+
<li><p class="first">検索結果の内容のうち、コマンドのエラー表示は別の配列として表示するようにしました。この変更は非互換な変更ですが、既存のプログラムには影響しません。</p>
|
465
|
+
</li>
|
466
|
+
<li><p class="first"><a class="reference internal" href="reference/command/output_format.html"><em>出力形式</em></a> に関するドキュメントを追加。</p>
|
467
|
+
</li>
|
468
|
+
<li><p class="first"><a class="reference internal" href="reference/command/return_code.html"><em>リターンコード</em></a> に関するドキュメントを追加。</p>
|
469
|
+
</li>
|
470
|
+
<li><p class="first">インデックスを使った指定範囲の検索をサポート。</p>
|
471
|
+
</li>
|
349
472
|
</ul>
|
350
473
|
</div>
|
351
474
|
<div class="section" id="id21">
|
352
475
|
<h3>修正<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
353
476
|
<ul class="simple">
|
354
|
-
<li
|
355
|
-
|
356
|
-
<li>
|
357
|
-
|
358
|
-
<li>[
|
477
|
+
<li><p class="first"><a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTPヘッダー</em></a> にてステータスコードにネットワークバイトオーダーを使用するように修正した。ネットワークプロトコルの慣習に合わせたものですが、これによりgroongaバージョン2.0.8以下のクライアントからgroongaバージョン2.0.9以上のサーバに接続してコマンドの実行に失敗したときにバイトオーダーが異なるため、ステータスコードを正しく表示できなくなります。</p>
|
478
|
+
</li>
|
479
|
+
<li><p class="first">UTF-8の正規化でオフセット計算の誤りを修正した。この変更は <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数の返す結果に影響し、キーワードとタグ周辺のテキストが誤った位置に挿入されないようにする。 [#1531] [嶋田大貴さんが報告]</p>
|
480
|
+
</li>
|
481
|
+
<li><p class="first">[windows] groongaコマンドの起動時にバッファの範囲外アクセスによるセグメンテーションフォルトが発生しないように修正した。 [#1532] [Akio Tajimaさんがパッチ提供]</p>
|
482
|
+
</li>
|
483
|
+
<li><p class="first">[windows] カラムに保存しているデータのサイズが128MBを超える場合に、そのデータを参照できない不具合を修正した。 [groonga-dev,01088] [ongaeshiさんが報告]</p>
|
484
|
+
</li>
|
485
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">Int*</span></tt> や <tt class="docutils literal"><span class="pre">UInt*</span></tt> ( <tt class="docutils literal"><span class="pre">Int32/Uint32</span></tt> は除く) に対してカラムインデックスによる検索結果が正しくない不具合を修正した。</p>
|
486
|
+
</li>
|
487
|
+
<li><p class="first">削除したはずのレコードが検索結果で見つかる問題を修正した。</p>
|
488
|
+
</li>
|
489
|
+
<li><p class="first">latin1やkoi8rの正規化で、与えた文字列データにNULL終端が途中に含まれているとすべての文字列データを正規化できない不具合を修正した。</p>
|
490
|
+
</li>
|
491
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドでデータが保存されていないカラムを参照したときに、型にあったデフォルト値を返さない不具合を修正した。</p>
|
492
|
+
</li>
|
493
|
+
<li>Fixed to exclude the value of vector column metadata in <a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a>.
|
494
|
+
This change not to contain such a metadata as search results.</li>
|
359
495
|
</ul>
|
360
496
|
</div>
|
361
497
|
<div class="section" id="id22">
|
362
498
|
<h3>感謝<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
363
499
|
<ul class="simple">
|
364
|
-
<li
|
365
|
-
|
366
|
-
<li>
|
500
|
+
<li><p class="first">嶋田 大貴さん</p>
|
501
|
+
</li>
|
502
|
+
<li><p class="first">Akio Tajimaさん</p>
|
503
|
+
</li>
|
504
|
+
<li><p class="first">ongaeshiさん</p>
|
505
|
+
</li>
|
367
506
|
</ul>
|
368
507
|
</div>
|
369
508
|
</div>
|
370
|
-
<div class="section" id="release-2-0-
|
371
|
-
<
|
509
|
+
<div class="section" id="release-2-0-8-2012-10-29">
|
510
|
+
<h2>2.0.8リリース - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
372
511
|
<div class="section" id="id23">
|
373
512
|
<h3>改良<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
374
513
|
<ul class="simple">
|
375
|
-
<li
|
376
|
-
|
377
|
-
<li
|
378
|
-
|
379
|
-
<li
|
380
|
-
|
381
|
-
<li
|
382
|
-
|
383
|
-
<li
|
384
|
-
|
385
|
-
<li><
|
386
|
-
|
514
|
+
<li><p class="first">[rpm] server-httpとhttpdパッケージの説明を改善した。 [Daiki Uenoさんが提案]</p>
|
515
|
+
</li>
|
516
|
+
<li><p class="first">プラグインによるクエリ展開のカスタマイズをサポート。</p>
|
517
|
+
</li>
|
518
|
+
<li><p class="first">[実験的] クエリ展開を行う <tt class="docutils literal"><span class="pre">QueryExpanderTSV</span></tt> プラグインを追加。</p>
|
519
|
+
</li>
|
520
|
+
<li><p class="first">Ubuntu 12.10 Quantal Quetzalをサポート。</p>
|
521
|
+
</li>
|
522
|
+
<li><p class="first">[実験的] クエリの <tt class="docutils literal"><span class="pre">output_columns</span></tt> で関数呼び出しをサポート。</p>
|
523
|
+
</li>
|
524
|
+
<li><p class="first">[doc][rpm] MeCab辞書のインストールについて説明を追加。 [serihiroさんが報告]</p>
|
525
|
+
</li>
|
387
526
|
</ul>
|
388
527
|
</div>
|
389
528
|
<div class="section" id="id24">
|
390
529
|
<h3>修正<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
391
530
|
<ul class="simple">
|
392
|
-
<li><
|
393
|
-
|
394
|
-
<li
|
395
|
-
|
396
|
-
<li
|
397
|
-
|
398
|
-
<li>
|
531
|
+
<li><p class="first">[rpm] 不要な"Requires"をspecファイルから削除するようにした。[Daiki Uenoさんが報告]</p>
|
532
|
+
</li>
|
533
|
+
<li><p class="first">groonga-server-gqtpパッケージのライセンス表記が不正確なのを修正した。</p>
|
534
|
+
</li>
|
535
|
+
<li><p class="first">[admin] レコードの編集ボタンで誤ったレコードが表示されるのを修正した。 [GitHub#34] [firewoodさんが報告]</p>
|
536
|
+
</li>
|
537
|
+
<li><p class="first">[deb] 不要なpcreパッケージへの依存を削除した。</p>
|
538
|
+
</li>
|
539
|
+
<li><p class="first">[deb] パッケージに入っていなかったテーブルプラグインを添付するようにした。</p>
|
540
|
+
</li>
|
399
541
|
</ul>
|
400
542
|
</div>
|
401
543
|
<div class="section" id="id25">
|
402
544
|
<h3>感謝<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
403
545
|
<ul class="simple">
|
404
|
-
<li
|
546
|
+
<li><p class="first">うえのさん</p>
|
547
|
+
</li>
|
548
|
+
<li><p class="first">firewoodさん</p>
|
549
|
+
</li>
|
550
|
+
<li><p class="first">serihiroさん</p>
|
551
|
+
</li>
|
405
552
|
</ul>
|
406
553
|
</div>
|
407
554
|
</div>
|
408
|
-
<div class="section" id="release-2-0-
|
409
|
-
<
|
555
|
+
<div class="section" id="release-2-0-7-2012-09-29">
|
556
|
+
<h2>2.0.7リリース - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
410
557
|
<div class="section" id="id26">
|
411
558
|
<h3>改良<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
412
559
|
<ul class="simple">
|
413
|
-
<li>[
|
414
|
-
|
415
|
-
<li>
|
416
|
-
|
417
|
-
<li
|
418
|
-
|
419
|
-
<li><
|
420
|
-
|
421
|
-
<li
|
422
|
-
|
423
|
-
<li><tt class="docutils literal"><span class="pre">
|
424
|
-
|
425
|
-
<li
|
426
|
-
|
427
|
-
<li
|
428
|
-
|
560
|
+
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">--query_flags</span></tt> の説明を追加。</p>
|
561
|
+
</li>
|
562
|
+
<li><p class="first">[doc][httpd] gzip圧縮についての設定サンプルを追加。</p>
|
563
|
+
</li>
|
564
|
+
<li><p class="first">[httpd][rpm][centos] groonga-httpd initスクリプトを追加。</p>
|
565
|
+
</li>
|
566
|
+
<li><p class="first">[rpm] logrotateの設定ファイルを追加。</p>
|
567
|
+
</li>
|
568
|
+
<li><p class="first">インストール中のデータベース作成をサポート。</p>
|
569
|
+
</li>
|
570
|
+
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_database_auto_create</span></tt> ディレクティブをサポート。</p>
|
571
|
+
</li>
|
572
|
+
<li><p class="first">集合演算でのスコアのマージをサポート。 [GitHub#31]</p>
|
573
|
+
</li>
|
574
|
+
<li><p class="first">[httpd] POSTによる <tt class="docutils literal"><span class="pre">load</span></tt> コマンドをサポート。</p>
|
575
|
+
</li>
|
576
|
+
<li><p class="first">一時結果テーブルを作成する際のエラーチェックを追加。 [GitHub#33]</p>
|
577
|
+
</li>
|
578
|
+
<li><p class="first">GQTP サーバーパッケージを追加。</p>
|
579
|
+
</li>
|
580
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">max()</span></tt> 関数を追加。</p>
|
581
|
+
</li>
|
582
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">min()</span></tt> 関数を追加。</p>
|
583
|
+
</li>
|
429
584
|
</ul>
|
430
585
|
</div>
|
431
586
|
<div class="section" id="id27">
|
432
587
|
<h3>修正<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
433
588
|
<ul class="simple">
|
434
|
-
<li>
|
435
|
-
|
436
|
-
<li>[
|
437
|
-
|
438
|
-
<li
|
439
|
-
|
440
|
-
<li><tt class="docutils literal"><span class="pre">
|
441
|
-
|
589
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">load</span></tt> コマンド実行時にベクタ要素へ主キー値の属する型情報を設定するように修正した。 [GitHub#30]</p>
|
590
|
+
</li>
|
591
|
+
<li><p class="first">[httpd] NULLでの初期化漏れを修正した。 [@Kiskeさんが報告]</p>
|
592
|
+
</li>
|
593
|
+
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">content_type_len</span></tt> のサイズ設定漏れを修正した。</p>
|
594
|
+
</li>
|
595
|
+
<li><p class="first">[rpm][fedora] <tt class="docutils literal"><span class="pre">groonga.service</span></tt> で <tt class="docutils literal"><span class="pre">--bind-address</span></tt> を使うように修正した。</p>
|
596
|
+
</li>
|
597
|
+
<li><p class="first">不適切なフィルタの引数によリクラッシュする問題を修正した。 [GitHub#32]</p>
|
598
|
+
</li>
|
599
|
+
<li><p class="first">Time型からTime型へのキャストで値が壊れる不具合を修正。</p>
|
600
|
+
</li>
|
601
|
+
<li><p class="first">Time型からFloat型へのキャストで値が壊れる不具合を修正。</p>
|
602
|
+
</li>
|
442
603
|
</ul>
|
443
604
|
</div>
|
444
605
|
<div class="section" id="id28">
|
445
606
|
<h3>感謝<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
446
607
|
<ul class="simple">
|
447
|
-
<li
|
448
|
-
|
608
|
+
<li><p class="first">@Kiskeさん</p>
|
609
|
+
</li>
|
449
610
|
</ul>
|
450
611
|
</div>
|
451
612
|
</div>
|
452
|
-
<div class="section" id="release-2-0-
|
453
|
-
<
|
613
|
+
<div class="section" id="release-2-0-6-2012-08-29">
|
614
|
+
<h2>2.0.6リリース - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
454
615
|
<div class="section" id="id29">
|
455
616
|
<h3>改良<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
456
617
|
<ul class="simple">
|
457
|
-
<li><
|
458
|
-
|
459
|
-
<li>
|
460
|
-
|
461
|
-
<li
|
462
|
-
|
463
|
-
<li>[doc]
|
464
|
-
|
465
|
-
<li>
|
466
|
-
|
467
|
-
<li>[
|
468
|
-
|
469
|
-
<li
|
470
|
-
|
471
|
-
<li>
|
472
|
-
|
473
|
-
<li
|
474
|
-
|
618
|
+
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> メタパッケージを追加。 [#1451]</p>
|
619
|
+
</li>
|
620
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--query_flags</span></tt> オプションを <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポート。</p>
|
621
|
+
</li>
|
622
|
+
<li><p class="first">groonga-httpdでPCREの自動検出をサポート。</p>
|
623
|
+
</li>
|
624
|
+
<li><p class="first">[doc] TwiterとFacebookの情報を追加。</p>
|
625
|
+
</li>
|
626
|
+
<li><p class="first">MeCabで <tt class="docutils literal"><span class="pre">mecab_new2()</span></tt> 関数失敗時のエラーメッセージも表示するように改善した。</p>
|
627
|
+
</li>
|
628
|
+
<li><p class="first">[doc] groonga をサーバーとして利用するときの詳細ドキュメントを追加。</p>
|
629
|
+
</li>
|
630
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> の詳細を記録するように改善した。</p>
|
631
|
+
</li>
|
632
|
+
<li><p class="first">カスタムセレクタの定義をサポート。</p>
|
633
|
+
</li>
|
634
|
+
<li><p class="first">groongaで <tt class="docutils literal"><span class="pre">--working-directory</span></tt> オプションをサポートした。</p>
|
635
|
+
</li>
|
636
|
+
<li><p class="first">groonga-httpdで <tt class="docutils literal"><span class="pre">dump</span></tt> コマンドをサポートした。</p>
|
637
|
+
</li>
|
638
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドで見つからないターゲット名を表示するように改善した。</p>
|
639
|
+
</li>
|
640
|
+
<li><p class="first">テーブルプラグインで実装されている <tt class="docutils literal"><span class="pre">get</span></tt> コマンドについてのエラーメッセージを改善した。</p>
|
641
|
+
</li>
|
642
|
+
<li><p class="first">[rpm][centos] MeCab 0.994をサポートした。 [#1455] [岩井さんが提案]</p>
|
643
|
+
</li>
|
644
|
+
<li><p class="first">ログ記録レベルの既定の最大値を <tt class="docutils literal"><span class="pre">grn_init()</span></tt> を呼ぶ前に変更可能にした。</p>
|
645
|
+
</li>
|
646
|
+
<li><p class="first">すべてのレコードIDを結果テーブルへとコピーするための関数 <tt class="docutils literal"><span class="pre">all_records()</span></tt> を追加した。</p>
|
647
|
+
</li>
|
648
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドの <tt class="docutils literal"><span class="pre">--query</span></tt> で '-WORD' 構文をサポート。</p>
|
649
|
+
</li>
|
650
|
+
</ul>
|
651
|
+
</div>
|
652
|
+
<div class="section" id="id30">
|
653
|
+
<h3>修正<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
654
|
+
<ul class="simple">
|
655
|
+
<li><p class="first">[doc] チュートリアルの実行例を修正した。 [#1428] [岩井さんが報告]</p>
|
656
|
+
</li>
|
657
|
+
<li><p class="first">groonga-httpdの初期化スクリプトでユーザ/グループとしてgroongaを強制的に指定しないように修正した。</p>
|
658
|
+
</li>
|
659
|
+
<li><p class="first">[rpm][fedora] groonga-httpdサービスでstopパラメータの指定漏れを修正した。</p>
|
660
|
+
</li>
|
661
|
+
<li>Fixed a bug that the last 1 byte for cache key is ignored by <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
662
|
+
<li><p class="first">複雑な関数呼び出しで引数の個数の検出処理を修正した。</p>
|
663
|
+
</li>
|
664
|
+
<li><p class="first">Clangによる警告を抑制するように修正した。</p>
|
665
|
+
</li>
|
666
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドを実行する際に <tt class="docutils literal"><span class="pre">add</span></tt> コマンドが存在しないことによる前方非互換なエラーを修正した。</p>
|
667
|
+
</li>
|
668
|
+
<li><p class="first">[windows] バイナリデータを含むデータベースを開く際のエラーを修正した。 [@yitoさんが報告]</p>
|
669
|
+
</li>
|
670
|
+
</ul>
|
671
|
+
</div>
|
672
|
+
<div class="section" id="id31">
|
673
|
+
<h3>感謝<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
674
|
+
<ul class="simple">
|
675
|
+
<li><p class="first">岩井さん</p>
|
676
|
+
</li>
|
677
|
+
<li><p class="first">@yitoさん</p>
|
678
|
+
</li>
|
679
|
+
</ul>
|
680
|
+
</div>
|
681
|
+
</div>
|
682
|
+
<div class="section" id="release-2-0-5-2012-07-29">
|
683
|
+
<h2>2.0.5リリース - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
684
|
+
<div class="section" id="id32">
|
685
|
+
<h3>改良<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
686
|
+
<ul class="simple">
|
687
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">"rect"</span></tt> もしくは <tt class="docutils literal"><span class="pre">"rectangle"</span></tt> 引数を指定した南半球における距離の計算をサポート。 [#1418] [#1419] [#1420] [#1421]</p>
|
688
|
+
</li>
|
689
|
+
<li><p class="first">[doc] スクリプト構文にてリテラルの説明を追加。</p>
|
690
|
+
</li>
|
691
|
+
<li><p class="first">groonga-suggestとgroonga-httpdのソース外ビルドに対応。</p>
|
692
|
+
</li>
|
693
|
+
<li><p class="first">クエリパラメータの区切り文字として ";"をサポート。 [#1406] [岩井さんが提案]</p>
|
694
|
+
</li>
|
695
|
+
<li><p class="first">[doc] スクリプト構文の説明を追加。</p>
|
696
|
+
</li>
|
697
|
+
<li><p class="first">スクリプト構文で近傍検索を行う <tt class="docutils literal"><span class="pre">'column</span> <span class="pre">*N</span> <span class="pre">"word1</span> <span class="pre">word2</span> <span class="pre">..."'</span></tt> 構文をサポート。 [#1423]</p>
|
698
|
+
</li>
|
699
|
+
<li><p class="first">[doc] 後方一致検索の制限を追記。</p>
|
700
|
+
</li>
|
701
|
+
<li><p class="first">近傍検索で <tt class="docutils literal"><span class="pre">_key</span></tt> 疑似カラムをサポート。 [GitHub#19]</p>
|
702
|
+
</li>
|
703
|
+
<li><p class="first">[doc] 基本的なECMAScript関連の構文を追加。</p>
|
704
|
+
</li>
|
705
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/functions/geo_distance.html"><em>geo_distance</em></a> の説明を更新。</p>
|
706
|
+
</li>
|
707
|
+
<li><p class="first">[rpm][fedora] Fedora 17をサポート。</p>
|
708
|
+
</li>
|
709
|
+
<li><p class="first">[rpm][fedora] Fedora 16サポートを削除。</p>
|
710
|
+
</li>
|
711
|
+
<li><p class="first">論理演算子 <tt class="docutils literal"><span class="pre">"!"</span></tt> をサポート。 [GitHub#22]</p>
|
712
|
+
</li>
|
713
|
+
<li><p class="first">[httpd] groongaデータベースごとのロケーション指定をサポート。</p>
|
714
|
+
</li>
|
715
|
+
<li><p class="first">loadコマンドを処理中にはエラーメッセージを返すように改善。</p>
|
716
|
+
</li>
|
717
|
+
<li><p class="first">継続困難なエラーが発生した場合にloadコマンドを中断するように改善。</p>
|
718
|
+
</li>
|
719
|
+
<li><p class="first">正しくない--columnsの値が渡されたときloadコマンドを中断するように改善。</p>
|
720
|
+
</li>
|
721
|
+
<li><p class="first">ロックされたデータベースのオープンをサポート。 [GitHub#21]</p>
|
722
|
+
</li>
|
475
723
|
</ul>
|
476
724
|
</div>
|
477
|
-
<div class="section" id="
|
478
|
-
<h3>修正<a class="headerlink" href="#
|
725
|
+
<div class="section" id="id33">
|
726
|
+
<h3>修正<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
479
727
|
<ul class="simple">
|
480
|
-
<li>groonga-httpdが Mac OS Xでビルドできない問題を修正。[島田 浩二さんが報告]</
|
481
|
-
|
482
|
-
<li>
|
483
|
-
|
484
|
-
<li
|
485
|
-
|
486
|
-
<li
|
487
|
-
|
488
|
-
<li
|
728
|
+
<li><p class="first">groonga-httpdが Mac OS Xでビルドできない問題を修正。[島田 浩二さんが報告]</p>
|
729
|
+
</li>
|
730
|
+
<li><p class="first">groonga-httpdがインストール済みのヘッダファイルを使用しないように修正。</p>
|
731
|
+
</li>
|
732
|
+
<li><p class="first">Mac OS X Lionでgroongaがビルドできない問題を修正。</p>
|
733
|
+
</li>
|
734
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/table_remove.html"><em>table_remove</em></a> コマンドの説明を修正。</p>
|
735
|
+
</li>
|
736
|
+
<li><p class="first">インデックスが張られていないと未対応のオぺレータで無限ループする問題を修正。 [GitHub#20]</p>
|
737
|
+
</li>
|
738
|
+
<li><p class="first">メモリリークを引き起すエラーコードの誤りを修正。</p>
|
739
|
+
</li>
|
740
|
+
<li><p class="first">カラムの値を壊すことにつながるエラーコードの誤りを修正。</p>
|
741
|
+
</li>
|
742
|
+
<li><p class="first">[admin] エラーメッセージをエスケープするように修正。</p>
|
743
|
+
</li>
|
744
|
+
<li><p class="first">データベースの非互換を引き起こす読めないオブジェクトを無視するように修正。 [#1429] [岩井さんが報告]</p>
|
745
|
+
</li>
|
489
746
|
</ul>
|
490
747
|
</div>
|
491
|
-
<div class="section" id="
|
492
|
-
<h3>感謝<a class="headerlink" href="#
|
748
|
+
<div class="section" id="id34">
|
749
|
+
<h3>感謝<a class="headerlink" href="#id34" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
493
750
|
<ul class="simple">
|
494
|
-
<li>島田 浩二さん</
|
495
|
-
|
751
|
+
<li><p class="first">島田 浩二さん</p>
|
752
|
+
</li>
|
753
|
+
<li><p class="first">岩井さん</p>
|
754
|
+
</li>
|
496
755
|
</ul>
|
497
756
|
</div>
|
498
757
|
</div>
|
499
758
|
<div class="section" id="release-2-0-4-2012-06-29">
|
500
|
-
<
|
501
|
-
<div class="section" id="
|
502
|
-
<h3>改良<a class="headerlink" href="#
|
759
|
+
<h2>2.0.4リリース - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
760
|
+
<div class="section" id="id35">
|
761
|
+
<h3>改良<a class="headerlink" href="#id35" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
503
762
|
<ul class="simple">
|
504
|
-
<li>KyTea 0.4.2のみをサポート。</
|
505
|
-
|
506
|
-
<li>
|
507
|
-
|
508
|
-
<li
|
509
|
-
|
510
|
-
<li>
|
511
|
-
|
512
|
-
<li>[doc] <a class="reference internal" href="
|
513
|
-
|
514
|
-
<li
|
515
|
-
|
516
|
-
<li>[
|
517
|
-
|
518
|
-
<li>[
|
763
|
+
<li><p class="first">KyTea 0.4.2のみをサポート。</p>
|
764
|
+
</li>
|
765
|
+
<li><p class="first">KyTea 0.4.1以前のサポートを削除。</p>
|
766
|
+
</li>
|
767
|
+
<li><p class="first">[実験的] nginxベースのHTTPインタフェースをサポート。</p>
|
768
|
+
</li>
|
769
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">"rect"</span></tt> もしくは <tt class="docutils literal"><span class="pre">"rectangle"</span></tt> 引数を指定した北半球における距離の計算をサポート。</p>
|
770
|
+
</li>
|
771
|
+
<li><p class="first">[doc] <a class="reference internal" href="development/travis-ci.html"><em>Travis CI</em></a> の統合に関するドキュメントを追加。</p>
|
772
|
+
</li>
|
773
|
+
<li><p class="first">[doc] 全文検索とフレーズ検索についての説明を追加。詳細については <a class="reference internal" href="reference/grn_expr/query_syntax.html#full-text-search-condition"><em>全文検索条件</em></a> および <a class="reference internal" href="reference/grn_expr/query_syntax.html#phrase-search-condition"><em>フレーズ検索条件</em></a> を参照してください。</p>
|
774
|
+
</li>
|
775
|
+
<li><p class="first">[doc] 比較条件についての説明を追加。詳細は <a class="reference internal" href="reference/grn_expr/query_syntax.html#conditional-expression"><em>条件式</em></a> を参照してください。</p>
|
776
|
+
</li>
|
777
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/query_syntax.html"><em>クエリー構文</em></a> のサンプルを追加。</p>
|
778
|
+
</li>
|
779
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/query_syntax.html#combined-expression"><em>結合式</em></a> の説明を追加。</p>
|
780
|
+
</li>
|
781
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/query_syntax.html#prefix-search-condition"><em>前方一致検索条件</em></a> と <a class="reference internal" href="reference/grn_expr/query_syntax.html#suffix-search-condition"><em>後方一致検索条件</em></a> の説明を追加。</p>
|
782
|
+
</li>
|
783
|
+
<li><p class="first">インデックスを使った後方一致検索をサポート。</p>
|
784
|
+
</li>
|
785
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr.html"><em>grn_expr</em></a> に関するドキュメントを追加。</p>
|
786
|
+
</li>
|
787
|
+
<li><p class="first">[munin] RubyGemsでインストールしたJSONライブラリをサポート。 [GitHub#17] [岩井さんがパッチ提供]</p>
|
788
|
+
</li>
|
789
|
+
<li><p class="first">[doc] チュートリアル記載のTime型指定値についての説明を更新。 [#1405] [岩井さんが報告]</p>
|
790
|
+
</li>
|
791
|
+
<li><p class="first">[rpm] groongaパッケージから必要のないgroonga-tokenizer-mecabパッケージへの依存関係を削除。 [GitHub#18] [岩井さんがパッチ提供]</p>
|
792
|
+
</li>
|
519
793
|
</ul>
|
520
794
|
</div>
|
521
|
-
<div class="section" id="
|
522
|
-
<h3>修正<a class="headerlink" href="#
|
795
|
+
<div class="section" id="id36">
|
796
|
+
<h3>修正<a class="headerlink" href="#id36" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
523
797
|
<ul class="simple">
|
524
|
-
<li>Mac OS Xでバッチモードを使用した際にコマンドプロンプトの表示が意図しない状態になる問題を修正。 [@soundkitchenさんが報告]</
|
525
|
-
|
526
|
-
<li><
|
798
|
+
<li><p class="first">Mac OS Xでバッチモードを使用した際にコマンドプロンプトの表示が意図しない状態になる問題を修正。 [@soundkitchenさんが報告]</p>
|
799
|
+
</li>
|
800
|
+
<li><p class="first">誤ったコマンドをクライアントモードで実行しても終了しないように修正。 [#1305]</p>
|
801
|
+
</li>
|
802
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--query</span></tt> 構文で <tt class="docutils literal"><span class="pre">'=R'</span></tt> が <tt class="docutils literal"><span class="pre">'OR'</span></tt> として扱われてしまう問題を修正。 [#1393]</p>
|
803
|
+
</li>
|
527
804
|
</ul>
|
528
805
|
</div>
|
529
|
-
<div class="section" id="
|
530
|
-
<h3>感謝<a class="headerlink" href="#
|
806
|
+
<div class="section" id="id37">
|
807
|
+
<h3>感謝<a class="headerlink" href="#id37" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
531
808
|
<ul class="simple">
|
532
|
-
<li>@soundkitchenさん</
|
533
|
-
|
809
|
+
<li><p class="first">@soundkitchenさん</p>
|
810
|
+
</li>
|
811
|
+
<li><p class="first">岩井さん</p>
|
812
|
+
</li>
|
534
813
|
</ul>
|
535
814
|
</div>
|
536
815
|
</div>
|
537
816
|
<div class="section" id="release-2-0-3-2012-05-29">
|
538
|
-
<
|
539
|
-
<div class="section" id="
|
540
|
-
<h3>改良<a class="headerlink" href="#
|
817
|
+
<h2>2.0.3リリース - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
818
|
+
<div class="section" id="id38">
|
819
|
+
<h3>改良<a class="headerlink" href="#id38" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
541
820
|
<ul class="simple">
|
542
|
-
<li>[doc] リリース手順を追加。</
|
543
|
-
|
544
|
-
<li
|
545
|
-
|
546
|
-
<li>[
|
547
|
-
|
548
|
-
<li>[doc]
|
549
|
-
|
550
|
-
<li>[doc]
|
551
|
-
|
552
|
-
<li>[
|
553
|
-
|
554
|
-
<li>[
|
821
|
+
<li><p class="first">[doc] リリース手順を追加。</p>
|
822
|
+
</li>
|
823
|
+
<li><p class="first">1プロセスで開けるファイルディスクリプターの最大数が4096という制限を削除。</p>
|
824
|
+
</li>
|
825
|
+
<li><p class="first">[実験的] tableプラグインを追加。</p>
|
826
|
+
</li>
|
827
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> コマンドの説明を追加。</p>
|
828
|
+
</li>
|
829
|
+
<li><p class="first">[doc] 実行例をコピー&ペーストしやすくした。</p>
|
830
|
+
</li>
|
831
|
+
<li><p class="first">[windows] Visual Studio 2010 ExpressとCMakeを使ったビルドをサポート。詳細は <a class="reference internal" href="install/windows.html"><em>Windows</em></a> を参照してください。</p>
|
832
|
+
</li>
|
833
|
+
<li><p class="first">[doc][solaris] Solarisでビルドするためのドキュメントを追加。詳細は <a class="reference internal" href="install/solaris.html"><em>Oracle Solaris</em></a> を参照してください。</p>
|
834
|
+
</li>
|
835
|
+
<li><p class="first">[doc][yum] epel-releaseパッケージのバージョンを更新。[岩井さんが報告]</p>
|
836
|
+
</li>
|
837
|
+
<li><p class="first">[doc][centos6] RepoforgeにあるCentOS 6用のMuninを使うという設定を削除。[岩井さんが報告]</p>
|
838
|
+
</li>
|
839
|
+
<li><p class="first">ソースをzip形式でも配布するようにした。</p>
|
840
|
+
</li>
|
841
|
+
<li><p class="first">[munin] groonga_dist Muninプラグインが複数のファイルを使っているオブジェクトをサポート。</p>
|
842
|
+
</li>
|
843
|
+
<li><p class="first">Travis CIを使うようにした。</p>
|
844
|
+
</li>
|
845
|
+
<li><p class="first">[yum] groongaのyumリポジトリを提供するRPMパッケージ名をgroonga-repositoryからgroonga-releaseへと変更。これは、centos-releaseやfedora-releaseといったRPMパッケージの命名規則とあわせるためである。</p>
|
846
|
+
</li>
|
555
847
|
</ul>
|
556
848
|
</div>
|
557
|
-
<div class="section" id="
|
558
|
-
<h3>修正<a class="headerlink" href="#
|
849
|
+
<div class="section" id="id39">
|
850
|
+
<h3>修正<a class="headerlink" href="#id39" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
559
851
|
<ul class="simple">
|
560
|
-
<li>[doc] yumリポジトリを更新するためのコマンドを修正。 [岩井さんが提案]</
|
561
|
-
|
562
|
-
<li>
|
563
|
-
|
564
|
-
<li><
|
565
|
-
|
852
|
+
<li><p class="first">[doc] yumリポジトリを更新するためのコマンドを修正。 [岩井さんが提案]</p>
|
853
|
+
</li>
|
854
|
+
<li><p class="first">[deb] logrotateでlog_reopenコマンドが誤ったプロトコルを使用する不具合を修正。</p>
|
855
|
+
</li>
|
856
|
+
<li><p class="first">XMLレスポンスのERRORタグが壊れている問題を修正。[#1363] [GitHub#13] [岩井さんがパッチ提供]</p>
|
857
|
+
</li>
|
858
|
+
<li><p class="first">grn_ctx_fin()がgrn_ctxの一部をクリアしきれていない問題を修正。</p>
|
859
|
+
</li>
|
860
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">&!</span></tt> 演算子をグループ化した式と一緒に使うと間違った結果を返す不具合を修正。[#1372]</p>
|
861
|
+
</li>
|
862
|
+
<li><p class="first">インデックスのソースに指定したカラム経由でレコードのキーを登録するとキーが正規化されない問題を修正。</p>
|
863
|
+
</li>
|
566
864
|
</ul>
|
567
865
|
</div>
|
568
|
-
<div class="section" id="
|
569
|
-
<h3>感謝<a class="headerlink" href="#
|
866
|
+
<div class="section" id="id40">
|
867
|
+
<h3>感謝<a class="headerlink" href="#id40" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
570
868
|
<ul class="simple">
|
571
|
-
<li>岩井さん</
|
869
|
+
<li><p class="first">岩井さん</p>
|
870
|
+
</li>
|
572
871
|
</ul>
|
573
872
|
</div>
|
574
873
|
</div>
|
575
874
|
<div class="section" id="release-2-0-2-2012-04-29">
|
576
|
-
<
|
875
|
+
<h2>2.0.2リリース - 2012/04/29<a class="headerlink" href="#release-2-0-2-2012-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
577
876
|
<div class="admonition caution">
|
578
877
|
<p class="first admonition-title">ご用心</p>
|
579
878
|
<p>今回のリリースよりパッケージへ署名する鍵を変更しました。groongaパッケージを更新する前にパッケージ署名用の新しい鍵をインポートして下さい。</p>
|
@@ -588,168 +887,267 @@ This change not to contain such a metadata as search results.</li>
|
|
588
887
|
</pre></div>
|
589
888
|
</div>
|
590
889
|
</div>
|
591
|
-
<div class="section" id="id38">
|
592
|
-
<h3>改良<a class="headerlink" href="#id38" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
593
|
-
<ul class="simple">
|
594
|
-
<li>[pkg-config] 必要のないMessagePackへの依存関係を削除。</li>
|
595
|
-
<li>[rpm][fedora] libeditをサポート。[#1325] [IWAI, Masaharuさんが提案]</li>
|
596
|
-
<li>[rpm] zlibおよびLZOをサポート。[#1324] [IWAI, Masaharuさんがパッチ提供]</li>
|
597
|
-
<li>[groonga] デーモン化のタイミングを改善。groongaサーバーはソケットがlisten状態になった後にデーモン化するようになった。これによりgroongaサーバーがデーモン化した時点で接続を受け付けられる状態になっている。 [#1326]</li>
|
598
|
-
<li>[admin] groongaの管理ページでサジェスト機能をサポート。</li>
|
599
|
-
<li>[dump] Mecabのトークナイザのロードエラーを無視するようにした。</li>
|
600
|
-
<li>CMakeをサポート。</li>
|
601
|
-
<li>[load] カラムの値が設定できなかった時のエラーレポートをサポート。</li>
|
602
|
-
<li>類似検索をサポート。類似検索の構文は <tt class="docutils literal"><span class="pre">select</span> <span class="pre">--filter</span> <span class="pre">"column</span> <span class="pre">*S</span> <span class="pre">'TEXT'"</span></tt> 。 [#1342]</li>
|
603
|
-
<li>[apt][yum] パッケージ署名用の鍵を変更。</li>
|
604
|
-
<li>Ubuntu Precise Pangolinをサポート。</li>
|
605
|
-
<li>[apt] groongaのパッケージ署名用の鍵を提供するgroonga-keyring debパッケージを追加。</li>
|
606
|
-
</ul>
|
607
|
-
</div>
|
608
|
-
<div class="section" id="id39">
|
609
|
-
<h3>修正<a class="headerlink" href="#id39" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
610
|
-
<ul class="simple">
|
611
|
-
<li>[deb][rpm] 非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> オプションではなく <tt class="docutils literal"><span class="pre">--bind--address</span></tt> オプションを使用するようにした。[#1320] [IWAI, Masaharuさんがパッチ提供]</li>
|
612
|
-
<li>[deb] groonga-serverパッケージの設定ファイルを <tt class="docutils literal"><span class="pre">/etc/default/groonga</span></tt> から <tt class="docutils literal"><span class="pre">/etc/default/groonga-server</span></tt> へ改名。</li>
|
613
|
-
<li>[rpm][fedora] groonga-serverの%postで更新処理を行うかどうかの条件を修正。 [GitHub#11] [Daiki Uenoさんがパッチ提供]</li>
|
614
|
-
<li>[rpm] 必要のないログを削除。 [#1328] [IWAI, Masaharuさんがパッチ提供]</li>
|
615
|
-
<li>[deb][rpm] curlへの依存関係を追加。 [GitHub#12] [IWAI, Masaharuさんがパッチ提供]</li>
|
616
|
-
<li>[rpm] groongaパッケージから必要のないrubyパッケージへの依存関係を削除。 [#1330] [IWAI, Masaharuさんが提案]</li>
|
617
|
-
<li>[deb] groonga-serverの設定ファイルに未設定だったデフォルト値を追加。</li>
|
618
|
-
<li>非常に大きな転置インデックスを更新しながら検索するとクラッシュする不具合を修正。 [#1329]</li>
|
619
|
-
<li>文字列をバイト文字列でなく文字として比較している不具合を修正。 [#1340] [Kawaji Shinyaさんが報告]</li>
|
620
|
-
</ul>
|
621
|
-
</div>
|
622
|
-
<div class="section" id="id40">
|
623
|
-
<h3>感謝<a class="headerlink" href="#id40" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
624
|
-
<ul class="simple">
|
625
|
-
<li>岩井さん</li>
|
626
|
-
<li>うえのさん</li>
|
627
|
-
<li>Shinya Kawajiさん</li>
|
628
|
-
</ul>
|
629
|
-
</div>
|
630
|
-
</div>
|
631
|
-
<div class="section" id="release-2-0-1-2012-03-29">
|
632
|
-
<span id="release-2-0-1"></span><h2>2.0.1リリース - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
633
890
|
<div class="section" id="id41">
|
634
891
|
<h3>改良<a class="headerlink" href="#id41" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
635
892
|
<ul class="simple">
|
636
|
-
<li
|
637
|
-
|
638
|
-
<li>[
|
639
|
-
|
640
|
-
<li>[
|
641
|
-
|
642
|
-
<li
|
643
|
-
|
644
|
-
<li>[
|
645
|
-
|
646
|
-
<li>
|
647
|
-
|
648
|
-
<li
|
649
|
-
|
650
|
-
<li><
|
893
|
+
<li><p class="first">[pkg-config] 必要のないMessagePackへの依存関係を削除。</p>
|
894
|
+
</li>
|
895
|
+
<li><p class="first">[rpm][fedora] libeditをサポート。[#1325] [IWAI, Masaharuさんが提案]</p>
|
896
|
+
</li>
|
897
|
+
<li><p class="first">[rpm] zlibおよびLZOをサポート。[#1324] [IWAI, Masaharuさんがパッチ提供]</p>
|
898
|
+
</li>
|
899
|
+
<li><p class="first">[groonga] デーモン化のタイミングを改善。groongaサーバーはソケットがlisten状態になった後にデーモン化するようになった。これによりgroongaサーバーがデーモン化した時点で接続を受け付けられる状態になっている。 [#1326]</p>
|
900
|
+
</li>
|
901
|
+
<li><p class="first">[admin] groongaの管理ページでサジェスト機能をサポート。</p>
|
902
|
+
</li>
|
903
|
+
<li><p class="first">[dump] Mecabのトークナイザのロードエラーを無視するようにした。</p>
|
904
|
+
</li>
|
905
|
+
<li><p class="first">CMakeをサポート。</p>
|
906
|
+
</li>
|
907
|
+
<li><p class="first">[load] カラムの値が設定できなかった時のエラーレポートをサポート。</p>
|
908
|
+
</li>
|
909
|
+
<li><p class="first">類似検索をサポート。類似検索の構文は <tt class="docutils literal"><span class="pre">select</span> <span class="pre">--filter</span> <span class="pre">"column</span> <span class="pre">*S</span> <span class="pre">'TEXT'"</span></tt> 。 [#1342]</p>
|
910
|
+
</li>
|
911
|
+
<li><p class="first">[apt][yum] パッケージ署名用の鍵を変更。</p>
|
912
|
+
</li>
|
913
|
+
<li><p class="first">Ubuntu Precise Pangolinをサポート。</p>
|
914
|
+
</li>
|
915
|
+
<li><p class="first">[apt] groongaのパッケージ署名用の鍵を提供するgroonga-keyring debパッケージを追加。</p>
|
916
|
+
</li>
|
651
917
|
</ul>
|
652
918
|
</div>
|
653
919
|
<div class="section" id="id42">
|
654
920
|
<h3>修正<a class="headerlink" href="#id42" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
655
921
|
<ul class="simple">
|
656
|
-
<li
|
657
|
-
|
658
|
-
<li
|
659
|
-
|
660
|
-
<li>
|
922
|
+
<li><p class="first">[deb][rpm] 非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> オプションではなく <tt class="docutils literal"><span class="pre">--bind--address</span></tt> オプションを使用するようにした。[#1320] [IWAI, Masaharuさんがパッチ提供]</p>
|
923
|
+
</li>
|
924
|
+
<li><p class="first">[deb] groonga-serverパッケージの設定ファイルを <tt class="docutils literal"><span class="pre">/etc/default/groonga</span></tt> から <tt class="docutils literal"><span class="pre">/etc/default/groonga-server</span></tt> へ改名。</p>
|
925
|
+
</li>
|
926
|
+
<li><p class="first">[rpm][fedora] groonga-serverの%postで更新処理を行うかどうかの条件を修正。 [GitHub#11] [Daiki Uenoさんがパッチ提供]</p>
|
927
|
+
</li>
|
928
|
+
<li><p class="first">[rpm] 必要のないログを削除。 [#1328] [IWAI, Masaharuさんがパッチ提供]</p>
|
929
|
+
</li>
|
930
|
+
<li><p class="first">[deb][rpm] curlへの依存関係を追加。 [GitHub#12] [IWAI, Masaharuさんがパッチ提供]</p>
|
931
|
+
</li>
|
932
|
+
<li><p class="first">[rpm] groongaパッケージから必要のないrubyパッケージへの依存関係を削除。 [#1330] [IWAI, Masaharuさんが提案]</p>
|
933
|
+
</li>
|
934
|
+
<li><p class="first">[deb] groonga-serverの設定ファイルに未設定だったデフォルト値を追加。</p>
|
935
|
+
</li>
|
936
|
+
<li><p class="first">非常に大きな転置インデックスを更新しながら検索するとクラッシュする不具合を修正。 [#1329]</p>
|
937
|
+
</li>
|
938
|
+
<li><p class="first">文字列をバイト文字列でなく文字として比較している不具合を修正。 [#1340] [Kawaji Shinyaさんが報告]</p>
|
939
|
+
</li>
|
661
940
|
</ul>
|
662
941
|
</div>
|
663
942
|
<div class="section" id="id43">
|
664
943
|
<h3>感謝<a class="headerlink" href="#id43" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
665
944
|
<ul class="simple">
|
666
|
-
<li
|
667
|
-
|
945
|
+
<li><p class="first">岩井さん</p>
|
946
|
+
</li>
|
947
|
+
<li><p class="first">うえのさん</p>
|
948
|
+
</li>
|
949
|
+
<li><p class="first">Shinya Kawajiさん</p>
|
950
|
+
</li>
|
668
951
|
</ul>
|
669
952
|
</div>
|
670
953
|
</div>
|
671
|
-
<div class="section" id="release-2-0-
|
672
|
-
<
|
954
|
+
<div class="section" id="release-2-0-1-2012-03-29">
|
955
|
+
<h2>2.0.1リリース - 2012/03/29<a class="headerlink" href="#release-2-0-1-2012-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
673
956
|
<div class="section" id="id44">
|
674
957
|
<h3>改良<a class="headerlink" href="#id44" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
675
958
|
<ul class="simple">
|
676
|
-
<li
|
677
|
-
|
678
|
-
<li>[
|
679
|
-
|
680
|
-
<li>[
|
681
|
-
|
682
|
-
<li>[
|
683
|
-
|
684
|
-
<li
|
685
|
-
|
686
|
-
<li>[
|
687
|
-
|
688
|
-
<li
|
689
|
-
|
690
|
-
<li><
|
691
|
-
|
692
|
-
<li>[
|
959
|
+
<li><p class="first">別ディレクトリでのビルドをサポートした。 [#1298] [かずひこさんが報告]</p>
|
960
|
+
</li>
|
961
|
+
<li><p class="first">[solaris] Solaris 11上でのビルドできるようにした。 [かずひこさんが報告]</p>
|
962
|
+
</li>
|
963
|
+
<li><p class="first">[test] 機能テストを追加した。</p>
|
964
|
+
</li>
|
965
|
+
<li><p class="first">[test] Rubyでテストを実行するためにはconfigureに <tt class="docutils literal"><span class="pre">--with-ruby19</span></tt> オプションを指定しなければいけないようにした。</p>
|
966
|
+
</li>
|
967
|
+
<li><p class="first">[dump] デフォルトトークナイザーを持っているテーブルのレコードもダンプするようにした。</p>
|
968
|
+
</li>
|
969
|
+
<li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">similar_search</span></tt> オプションを追加。</p>
|
970
|
+
</li>
|
971
|
+
<li><p class="first">[groonga] 非推奨の <tt class="docutils literal"><span class="pre">-a</span></tt> と <tt class="docutils literal"><span class="pre">--address</span></tt> と <tt class="docutils literal"><span class="pre">--admin-html-path</span></tt> オプションを削除した。</p>
|
972
|
+
</li>
|
973
|
+
<li><p class="first">戻り値チェックを追加した。 [GitHub#9] [Markus Elfringさんが報告]</p>
|
974
|
+
</li>
|
975
|
+
<li><p class="first">[dat] 単語抽出処理をサポートした。</p>
|
976
|
+
</li>
|
977
|
+
<li><p class="first"><a class="reference external" href="http://groonga.org/ja/logo/">ロゴ</a> を追加した。</p>
|
978
|
+
</li>
|
979
|
+
<li><p class="first">HTMLのデザインを更新した。</p>
|
980
|
+
</li>
|
981
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grntest</span></tt> を <tt class="docutils literal"><span class="pre">groonga-benchmark</span></tt> に改名した。</p>
|
982
|
+
</li>
|
983
|
+
<li><p class="first">CentOS 5上で <tt class="docutils literal"><span class="pre">autogen.sh</span></tt> が動くようにした。</p>
|
984
|
+
</li>
|
985
|
+
<li><p class="first">[linux] <tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> カーネルパラメーターの値をチェックするようにした。 [#1289]</p>
|
986
|
+
</li>
|
987
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_snip</span></tt> が <tt class="docutils literal"><span class="pre">grn_obj</span></tt> の仕組みを使うようにした。 [#1054]</p>
|
988
|
+
</li>
|
693
989
|
</ul>
|
694
990
|
</div>
|
695
991
|
<div class="section" id="id45">
|
696
992
|
<h3>修正<a class="headerlink" href="#id45" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
697
993
|
<ul class="simple">
|
698
|
-
<li
|
699
|
-
|
700
|
-
<li>[
|
701
|
-
|
702
|
-
<li
|
994
|
+
<li><p class="first">インストールしたRubyスクリプトをuninstallでアンインストールできない問題を修正した。 [#1299] [かずひこさんが報告]</p>
|
995
|
+
</li>
|
996
|
+
<li><p class="first">Gemfileを追加した。 [#1302] [かずひこさんが報告]</p>
|
997
|
+
</li>
|
998
|
+
<li><p class="first">インデックスに登録されているレコードが見つからないことがある問題を修正した。この機能を使っているのはmroongaだけである。 [#1303]</p>
|
999
|
+
</li>
|
1000
|
+
<li><p class="first">[groonga] <tt class="docutils literal"><span class="pre">--server-id</span></tt> オプションの名前の最後に <tt class="docutils literal"><span class="pre">-id</span></tt> がついていなかったので追加した。</p>
|
1001
|
+
</li>
|
1002
|
+
<li><p class="first">latin1を正規化するときに意図しないメモリ領域にアクセスしてしまう問題を修正した。</p>
|
1003
|
+
</li>
|
703
1004
|
</ul>
|
704
1005
|
</div>
|
705
1006
|
<div class="section" id="id46">
|
706
1007
|
<h3>感謝<a class="headerlink" href="#id46" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
707
1008
|
<ul class="simple">
|
708
|
-
<li
|
709
|
-
|
710
|
-
<li
|
711
|
-
|
712
|
-
<li>Masaharu YOSHIOKAさん</li>
|
713
|
-
<li>@wareohji</li>
|
1009
|
+
<li><p class="first">かずひこさん</p>
|
1010
|
+
</li>
|
1011
|
+
<li><p class="first">Markus Elfringさん</p>
|
1012
|
+
</li>
|
714
1013
|
</ul>
|
715
1014
|
</div>
|
716
1015
|
</div>
|
717
|
-
<div class="section" id="release-
|
718
|
-
<
|
1016
|
+
<div class="section" id="release-2-0-0-2012-02-29">
|
1017
|
+
<h2>2.0.0リリース - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
719
1018
|
<div class="section" id="id47">
|
720
1019
|
<h3>改良<a class="headerlink" href="#id47" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
721
1020
|
<ul class="simple">
|
722
|
-
<li>
|
723
|
-
|
724
|
-
<li>
|
725
|
-
|
726
|
-
<li>
|
727
|
-
|
728
|
-
<li>
|
729
|
-
|
730
|
-
<li>
|
731
|
-
|
732
|
-
<li><
|
733
|
-
|
734
|
-
<li>[rpm]
|
735
|
-
|
736
|
-
<li><tt class="docutils literal"><span class="pre"
|
737
|
-
|
738
|
-
<li
|
739
|
-
|
740
|
-
<li
|
741
|
-
|
742
|
-
<li
|
743
|
-
|
744
|
-
<li><
|
745
|
-
|
1021
|
+
<li><p class="first">[dat] 長さが0かどうかキーをチェックするようにした。</p>
|
1022
|
+
</li>
|
1023
|
+
<li><p class="first">[windows] GCC関連のDLLを同梱するようにした。 [groonga-dev,00686] [鈴木さんが報告]</p>
|
1024
|
+
</li>
|
1025
|
+
<li><p class="first">[php] PHP 5.4に対応した。 [Daiki Uenoさんがパッチ提供]</p>
|
1026
|
+
</li>
|
1027
|
+
<li><p class="first">FSFの住所を更新した。 [Daiki Uenoさんが提案]</p>
|
1028
|
+
</li>
|
1029
|
+
<li><p class="first">[fedora] systemdに対応した。 [Daiki Uenoさんがパッチ提供]</p>
|
1030
|
+
</li>
|
1031
|
+
<li><p class="first">[rpm][debian] デフォルトのプロトコルをgqtpからHTTPに変更した。</p>
|
1032
|
+
</li>
|
1033
|
+
<li><p class="first">[rpm][centos] statusコマンドに対応した。</p>
|
1034
|
+
</li>
|
1035
|
+
<li><p class="first">ログメッセージから必要のない <tt class="docutils literal"><span class="pre">:</span></tt> を削除した。</p>
|
1036
|
+
</li>
|
1037
|
+
<li><p class="first">非推奨となっていたgrn_queryを削除した。 [#1247]</p>
|
1038
|
+
</li>
|
1039
|
+
<li><p class="first">テーブル作成時にgrn_ctx_at()の呼び出し回数を減らした。</p>
|
1040
|
+
</li>
|
1041
|
+
<li><p class="first">[pat] キャッシュに対応した。</p>
|
1042
|
+
</li>
|
1043
|
+
<li><p class="first">[tokenizer] トークナイザーAPIを整理した。</p>
|
1044
|
+
</li>
|
1045
|
+
<li><p class="first">名前に <tt class="docutils literal"><span class="pre">@</span></tt> も使えるようにした。</p>
|
1046
|
+
</li>
|
1047
|
+
<li><p class="first">[tokenizer] <a class="reference external" href="http://www.phontron.com/kytea/index-ja.html">KyTea</a> を使ったトークナイザーを追加した。</p>
|
1048
|
+
</li>
|
1049
|
+
<li><p class="first"><a class="reference internal" href="reference/indexing.html"><em>静的なインデックス構築方法</em></a> をサポートした。</p>
|
1050
|
+
</li>
|
1051
|
+
<li><p class="first">[tokenizer] MeCab 0.993に対応した。 [groonga-dev,00703] [Masaharu YOSHIOKAさんが報告]</p>
|
1052
|
+
</li>
|
1053
|
+
<li><p class="first">[windows] MessagePackに対応した。</p>
|
1054
|
+
</li>
|
746
1055
|
</ul>
|
747
1056
|
</div>
|
748
1057
|
<div class="section" id="id48">
|
749
|
-
<h3
|
1058
|
+
<h3>修正<a class="headerlink" href="#id48" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1059
|
+
<ul class="simple">
|
1060
|
+
<li><p class="first">[pat] 最後のノードを見つけられない問題を修正した。 [#1258]</p>
|
1061
|
+
</li>
|
1062
|
+
<li><p class="first">[doc] 日本語ページ内のリンクを修正した。 [@naoinaさんが報告]</p>
|
1063
|
+
</li>
|
1064
|
+
<li><p class="first">[doc] 間違ったデフォルト値を修正した。 [@naoinaさんが報告]</p>
|
1065
|
+
</li>
|
1066
|
+
<li><p class="first">誤字を修正した。[かずひこさんが報告]</p>
|
1067
|
+
</li>
|
1068
|
+
<li><p class="first">[http] <tt class="docutils literal"><span class="pre">load</span></tt> コマンドのエラーがクリアされない不具合を修正した。 [@wareohjiさんが報告]</p>
|
1069
|
+
</li>
|
1070
|
+
</ul>
|
1071
|
+
</div>
|
1072
|
+
<div class="section" id="id49">
|
1073
|
+
<h3>感謝<a class="headerlink" href="#id49" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1074
|
+
<ul class="simple">
|
1075
|
+
<li><p class="first">鈴木さん</p>
|
1076
|
+
</li>
|
1077
|
+
<li><p class="first">うえのさん</p>
|
1078
|
+
</li>
|
1079
|
+
<li><p class="first">@naoinaさん</p>
|
1080
|
+
</li>
|
1081
|
+
<li><p class="first">かずひこさん</p>
|
1082
|
+
</li>
|
1083
|
+
<li><p class="first">Masaharu YOSHIOKAさん</p>
|
1084
|
+
</li>
|
1085
|
+
<li>@wareohji</li>
|
1086
|
+
</ul>
|
1087
|
+
</div>
|
1088
|
+
</div>
|
1089
|
+
<div class="section" id="release-1-3-0-2012-01-29">
|
1090
|
+
<h2>1.3.0リリース - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1091
|
+
<div class="section" id="id50">
|
1092
|
+
<h3>改良<a class="headerlink" href="#id50" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1093
|
+
<ul class="simple">
|
1094
|
+
<li><p class="first">GRN_DB_KEY=patまたはGRN_DB_KEY=dat環境変数値による動的なDBのキー管理テーブルの変更をサポート。</p>
|
1095
|
+
</li>
|
1096
|
+
<li><p class="first">デフォルトのDBのキー管理テーブルを指定する <tt class="docutils literal"><span class="pre">--with-default-db-key</span></tt> configureオプションを追加。</p>
|
1097
|
+
</li>
|
1098
|
+
<li><p class="first">geo pointデータ型の値として""をサポート。この値は"0x0"として扱う。</p>
|
1099
|
+
</li>
|
1100
|
+
<li><p class="first">キャスト時のエラーメッセージにカラム名も含めるようにした。</p>
|
1101
|
+
</li>
|
1102
|
+
<li><p class="first">loadエラー時に標準入力のファイル情報を表示しないようにした。</p>
|
1103
|
+
</li>
|
1104
|
+
<li><p class="first">write-strings関連の警告を有効にし、警告がでないようにした。 [montywiさんが提案]</p>
|
1105
|
+
</li>
|
1106
|
+
<li><p class="first">MessagePack形式の出力機能をサポート対象の機能とした。 [#1215]</p>
|
1107
|
+
</li>
|
1108
|
+
<li><p class="first"><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> を追加した。</p>
|
1109
|
+
</li>
|
1110
|
+
<li><p class="first">CとC++でコンパイル時の警告フラグを有効にした。</p>
|
1111
|
+
</li>
|
1112
|
+
<li><p class="first">値なしの <tt class="docutils literal"><span class="pre">--with-libevent</span></tt> configureオプションをサポート。</p>
|
1113
|
+
</li>
|
1114
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_table_get()</span></tt> がgrn_dbに対応した。 [#1242]</p>
|
1115
|
+
</li>
|
1116
|
+
<li><p class="first">[rpm] groonga-serverから必要のないgroogna-munin-pluginsへの依存関係を削除。 [#1251] [Masaharu IWAIさんが提案]</p>
|
1117
|
+
</li>
|
1118
|
+
<li><p class="first">[rpm] groongaから必要のないgroogna-docへの依存関係を削除。 [#1251] [Masaharu IWAIさんが提案]</p>
|
1119
|
+
</li>
|
1120
|
+
<li><p class="first">[dat] <tt class="docutils literal"><span class="pre">grn_dat_repair()</span></tt> によるデータ復旧対応。</p>
|
1121
|
+
</li>
|
1122
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_table_at()</span></tt> がgrn_dbに対応。</p>
|
1123
|
+
</li>
|
1124
|
+
<li><p class="first">[suggest] 「安定している」仕様とした。</p>
|
1125
|
+
</li>
|
1126
|
+
<li><p class="first">[suggest][complete] 前方一致検索で正規化した値を使って検索するようにした。</p>
|
1127
|
+
</li>
|
1128
|
+
<li><p class="first">実験的な機能としてオフラインインデックス作成機能を追加。いまのところデフォルトでは無効になっているが、USE_OFFLINE_INDEXER=yes環境変数を指定することで有効にできる。</p>
|
1129
|
+
</li>
|
1130
|
+
<li><p class="first">mroonga用に内部API <tt class="docutils literal"><span class="pre">grn_obj_path_by_id()</span></tt> を追加した。</p>
|
1131
|
+
</li>
|
1132
|
+
<li><p class="first">[suggest][httpd] 未知のパラメーターをgroongaに渡すようにした。</p>
|
1133
|
+
</li>
|
1134
|
+
<li><p class="first">[output][xml] 読みやすいように <tt class="docutils literal"><span class="pre"></RESULT></span></tt> の前に改行を追加。</p>
|
1135
|
+
</li>
|
1136
|
+
<li><p class="first">[doc][output] 出力形式に関するドキュメントを追加。</p>
|
1137
|
+
</li>
|
1138
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">table_rename</span></tt> コマンドを追加。 [#1234]</p>
|
1139
|
+
</li>
|
1140
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">column_rename</span></tt> コマンドを追加。 [#1234]</p>
|
1141
|
+
</li>
|
1142
|
+
</ul>
|
1143
|
+
</div>
|
1144
|
+
<div class="section" id="id51">
|
1145
|
+
<h3>感謝<a class="headerlink" href="#id51" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
750
1146
|
<ul class="simple">
|
751
|
-
<li>montywiさん</
|
752
|
-
|
1147
|
+
<li><p class="first">montywiさん</p>
|
1148
|
+
</li>
|
1149
|
+
<li><p class="first">Masaharu IWAIさん</p>
|
1150
|
+
</li>
|
753
1151
|
</ul>
|
754
1152
|
</div>
|
755
1153
|
</div>
|
@@ -867,112 +1265,118 @@ This change not to contain such a metadata as search results.</li>
|
|
867
1265
|
<h3><a href="index.html">目次</a></h3>
|
868
1266
|
<ul>
|
869
1267
|
<li><a class="reference internal" href="#">お知らせ</a><ul>
|
870
|
-
<li><a class="reference internal" href="#release-3-0-
|
1268
|
+
<li><a class="reference internal" href="#release-3-0-5-2013-06-29">3.0.5リリース - 2013/06/29</a><ul>
|
871
1269
|
<li><a class="reference internal" href="#improvements">改良</a></li>
|
872
1270
|
<li><a class="reference internal" href="#fixes">修正</a></li>
|
873
1271
|
<li><a class="reference internal" href="#thanks">感謝</a></li>
|
874
1272
|
</ul>
|
875
1273
|
</li>
|
876
|
-
<li><a class="reference internal" href="#release-3-0-
|
1274
|
+
<li><a class="reference internal" href="#release-3-0-4-2013-05-29">3.0.4リリース - 2013/05/29</a><ul>
|
877
1275
|
<li><a class="reference internal" href="#id1">改良</a></li>
|
1276
|
+
<li><a class="reference internal" href="#id2">修正</a></li>
|
1277
|
+
<li><a class="reference internal" href="#id3">感謝</a></li>
|
878
1278
|
</ul>
|
879
1279
|
</li>
|
880
|
-
<li><a class="reference internal" href="#release-3-0-
|
881
|
-
<li><a class="reference internal" href="#
|
882
|
-
<li><a class="reference internal" href="#id3">修正</a></li>
|
883
|
-
<li><a class="reference internal" href="#id4">感謝</a></li>
|
1280
|
+
<li><a class="reference internal" href="#release-3-0-3-2013-04-29">3.0.3リリース - 2013/04/29</a><ul>
|
1281
|
+
<li><a class="reference internal" href="#id4">改良</a></li>
|
884
1282
|
</ul>
|
885
1283
|
</li>
|
886
|
-
<li><a class="reference internal" href="#release-3-0-
|
1284
|
+
<li><a class="reference internal" href="#release-3-0-2-2013-03-29">3.0.2リリース - 2013/03/29</a><ul>
|
887
1285
|
<li><a class="reference internal" href="#id5">改良</a></li>
|
888
1286
|
<li><a class="reference internal" href="#id6">修正</a></li>
|
889
1287
|
<li><a class="reference internal" href="#id7">感謝</a></li>
|
890
1288
|
</ul>
|
891
1289
|
</li>
|
892
|
-
<li><a class="reference internal" href="#release-3-0-
|
893
|
-
<li><a class="reference internal" href="#id8"
|
894
|
-
<li><a class="reference internal" href="#id9"
|
1290
|
+
<li><a class="reference internal" href="#release-3-0-1-2013-02-28">3.0.1リリース - 2013/02/28</a><ul>
|
1291
|
+
<li><a class="reference internal" href="#id8">改良</a></li>
|
1292
|
+
<li><a class="reference internal" href="#id9">修正</a></li>
|
1293
|
+
<li><a class="reference internal" href="#id10">感謝</a></li>
|
895
1294
|
</ul>
|
896
1295
|
</li>
|
897
|
-
<li><a class="reference internal" href="#release-
|
898
|
-
<li><a class="reference internal" href="#id10">改良</a></li>
|
1296
|
+
<li><a class="reference internal" href="#release-3-0-0-2013-02-09">3.0.0リリース - 2013/02/09</a><ul>
|
899
1297
|
<li><a class="reference internal" href="#id11">修正</a></li>
|
900
1298
|
<li><a class="reference internal" href="#id12">感謝</a></li>
|
901
1299
|
</ul>
|
902
1300
|
</li>
|
903
|
-
<li><a class="reference internal" href="#release-2-1-
|
904
|
-
<li><a class="reference internal" href="#id13"
|
1301
|
+
<li><a class="reference internal" href="#release-2-1-2-2013-01-29">2.1.2リリース - 2013/01/29</a><ul>
|
1302
|
+
<li><a class="reference internal" href="#id13">改良</a></li>
|
1303
|
+
<li><a class="reference internal" href="#id14">修正</a></li>
|
1304
|
+
<li><a class="reference internal" href="#id15">感謝</a></li>
|
905
1305
|
</ul>
|
906
1306
|
</li>
|
907
|
-
<li><a class="reference internal" href="#release-2-1-
|
908
|
-
<li><a class="reference internal" href="#
|
909
|
-
<li><a class="reference internal" href="#id15">修正</a></li>
|
910
|
-
<li><a class="reference internal" href="#id16">感謝</a></li>
|
1307
|
+
<li><a class="reference internal" href="#release-2-1-1-2012-12-29">2.1.1リリース - 2012/12/29</a><ul>
|
1308
|
+
<li><a class="reference internal" href="#id16">修正</a></li>
|
911
1309
|
</ul>
|
912
1310
|
</li>
|
913
|
-
<li><a class="reference internal" href="#release-2-0-
|
1311
|
+
<li><a class="reference internal" href="#release-2-1-0-2012-12-29">2.1.0リリース - 2012/12/29</a><ul>
|
914
1312
|
<li><a class="reference internal" href="#id17">改良</a></li>
|
915
1313
|
<li><a class="reference internal" href="#id18">修正</a></li>
|
916
1314
|
<li><a class="reference internal" href="#id19">感謝</a></li>
|
917
1315
|
</ul>
|
918
1316
|
</li>
|
919
|
-
<li><a class="reference internal" href="#release-2-0-
|
1317
|
+
<li><a class="reference internal" href="#release-2-0-9-2012-11-29">2.0.9リリース - 2012/11/29</a><ul>
|
920
1318
|
<li><a class="reference internal" href="#id20">改良</a></li>
|
921
1319
|
<li><a class="reference internal" href="#id21">修正</a></li>
|
922
1320
|
<li><a class="reference internal" href="#id22">感謝</a></li>
|
923
1321
|
</ul>
|
924
1322
|
</li>
|
925
|
-
<li><a class="reference internal" href="#release-2-0-
|
1323
|
+
<li><a class="reference internal" href="#release-2-0-8-2012-10-29">2.0.8リリース - 2012/10/29</a><ul>
|
926
1324
|
<li><a class="reference internal" href="#id23">改良</a></li>
|
927
1325
|
<li><a class="reference internal" href="#id24">修正</a></li>
|
928
1326
|
<li><a class="reference internal" href="#id25">感謝</a></li>
|
929
1327
|
</ul>
|
930
1328
|
</li>
|
931
|
-
<li><a class="reference internal" href="#release-2-0-
|
1329
|
+
<li><a class="reference internal" href="#release-2-0-7-2012-09-29">2.0.7リリース - 2012/09/29</a><ul>
|
932
1330
|
<li><a class="reference internal" href="#id26">改良</a></li>
|
933
1331
|
<li><a class="reference internal" href="#id27">修正</a></li>
|
934
1332
|
<li><a class="reference internal" href="#id28">感謝</a></li>
|
935
1333
|
</ul>
|
936
1334
|
</li>
|
937
|
-
<li><a class="reference internal" href="#release-2-0-
|
1335
|
+
<li><a class="reference internal" href="#release-2-0-6-2012-08-29">2.0.6リリース - 2012/08/29</a><ul>
|
938
1336
|
<li><a class="reference internal" href="#id29">改良</a></li>
|
939
1337
|
<li><a class="reference internal" href="#id30">修正</a></li>
|
940
1338
|
<li><a class="reference internal" href="#id31">感謝</a></li>
|
941
1339
|
</ul>
|
942
1340
|
</li>
|
943
|
-
<li><a class="reference internal" href="#release-2-0-
|
1341
|
+
<li><a class="reference internal" href="#release-2-0-5-2012-07-29">2.0.5リリース - 2012/07/29</a><ul>
|
944
1342
|
<li><a class="reference internal" href="#id32">改良</a></li>
|
945
1343
|
<li><a class="reference internal" href="#id33">修正</a></li>
|
946
1344
|
<li><a class="reference internal" href="#id34">感謝</a></li>
|
947
1345
|
</ul>
|
948
1346
|
</li>
|
949
|
-
<li><a class="reference internal" href="#release-2-0-
|
1347
|
+
<li><a class="reference internal" href="#release-2-0-4-2012-06-29">2.0.4リリース - 2012/06/29</a><ul>
|
950
1348
|
<li><a class="reference internal" href="#id35">改良</a></li>
|
951
1349
|
<li><a class="reference internal" href="#id36">修正</a></li>
|
952
1350
|
<li><a class="reference internal" href="#id37">感謝</a></li>
|
953
1351
|
</ul>
|
954
1352
|
</li>
|
955
|
-
<li><a class="reference internal" href="#release-2-0-
|
1353
|
+
<li><a class="reference internal" href="#release-2-0-3-2012-05-29">2.0.3リリース - 2012/05/29</a><ul>
|
956
1354
|
<li><a class="reference internal" href="#id38">改良</a></li>
|
957
1355
|
<li><a class="reference internal" href="#id39">修正</a></li>
|
958
1356
|
<li><a class="reference internal" href="#id40">感謝</a></li>
|
959
1357
|
</ul>
|
960
1358
|
</li>
|
961
|
-
<li><a class="reference internal" href="#release-2-0-
|
1359
|
+
<li><a class="reference internal" href="#release-2-0-2-2012-04-29">2.0.2リリース - 2012/04/29</a><ul>
|
962
1360
|
<li><a class="reference internal" href="#id41">改良</a></li>
|
963
1361
|
<li><a class="reference internal" href="#id42">修正</a></li>
|
964
1362
|
<li><a class="reference internal" href="#id43">感謝</a></li>
|
965
1363
|
</ul>
|
966
1364
|
</li>
|
967
|
-
<li><a class="reference internal" href="#release-2-0-
|
1365
|
+
<li><a class="reference internal" href="#release-2-0-1-2012-03-29">2.0.1リリース - 2012/03/29</a><ul>
|
968
1366
|
<li><a class="reference internal" href="#id44">改良</a></li>
|
969
1367
|
<li><a class="reference internal" href="#id45">修正</a></li>
|
970
1368
|
<li><a class="reference internal" href="#id46">感謝</a></li>
|
971
1369
|
</ul>
|
972
1370
|
</li>
|
973
|
-
<li><a class="reference internal" href="#release-
|
1371
|
+
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">2.0.0リリース - 2012/02/29</a><ul>
|
974
1372
|
<li><a class="reference internal" href="#id47">改良</a></li>
|
975
|
-
<li><a class="reference internal" href="#id48"
|
1373
|
+
<li><a class="reference internal" href="#id48">修正</a></li>
|
1374
|
+
<li><a class="reference internal" href="#id49">感謝</a></li>
|
1375
|
+
</ul>
|
1376
|
+
</li>
|
1377
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">1.3.0リリース - 2012/01/29</a><ul>
|
1378
|
+
<li><a class="reference internal" href="#id50">改良</a></li>
|
1379
|
+
<li><a class="reference internal" href="#id51">感謝</a></li>
|
976
1380
|
</ul>
|
977
1381
|
</li>
|
978
1382
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a><ul>
|
@@ -1010,7 +1414,7 @@ This change not to contain such a metadata as search results.</li>
|
|
1010
1414
|
<li class="right" style="margin-right: 10px">
|
1011
1415
|
<a href="genindex.html" title="総合索引"
|
1012
1416
|
>索引</a></li>
|
1013
|
-
<li><a href="index.html">groonga v3.0.
|
1417
|
+
<li><a href="index.html">groonga v3.0.5ドキュメント</a> »</li>
|
1014
1418
|
</ul>
|
1015
1419
|
</div>
|
1016
1420
|
<div class="footer">
|