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>バージョン0.xのお知らせ — groonga v3.0.
|
10
|
+
<title>バージョン0.xのお知らせ — 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
|
|
@@ -223,7 +223,7 @@
|
|
223
223
|
<li class="right" style="margin-right: 10px">
|
224
224
|
<a href="../genindex.html" title="総合索引"
|
225
225
|
>索引</a></li>
|
226
|
-
<li><a href="../index.html">groonga v3.0.
|
226
|
+
<li><a href="../index.html">groonga v3.0.5ドキュメント</a> »</li>
|
227
227
|
</ul>
|
228
228
|
</div>
|
229
229
|
<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>バージョン1.0.xのお知らせ — groonga v3.0.
|
10
|
+
<title>バージョン1.0.xのお知らせ — 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
|
|
@@ -467,7 +467,7 @@ Lucid, Marverickに変更。</li>
|
|
467
467
|
<li class="right" style="margin-right: 10px">
|
468
468
|
<a href="../genindex.html" title="総合索引"
|
469
469
|
>索引</a></li>
|
470
|
-
<li><a href="../index.html">groonga v3.0.
|
470
|
+
<li><a href="../index.html">groonga v3.0.5ドキュメント</a> »</li>
|
471
471
|
</ul>
|
472
472
|
</div>
|
473
473
|
<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>バージョン1.1.xのお知らせ — groonga v3.0.
|
10
|
+
<title>バージョン1.1.xのお知らせ — 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
|
|
@@ -140,7 +140,7 @@ groonga_suggest_create_dataset変数を追加。</li>
|
|
140
140
|
<li class="right" style="margin-right: 10px">
|
141
141
|
<a href="../genindex.html" title="総合索引"
|
142
142
|
>索引</a></li>
|
143
|
-
<li><a href="../index.html">groonga v3.0.
|
143
|
+
<li><a href="../index.html">groonga v3.0.5ドキュメント</a> »</li>
|
144
144
|
</ul>
|
145
145
|
</div>
|
146
146
|
<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>1.2.9リリース - 2011/12/29 — groonga v3.0.
|
10
|
+
<title>1.2.9リリース - 2011/12/29 — 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
|
|
@@ -66,47 +66,73 @@
|
|
66
66
|
<div class="section" id="improvements">
|
67
67
|
<h2>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
68
68
|
<ul class="simple">
|
69
|
-
<li>Fedora 16をサポート。</
|
70
|
-
|
71
|
-
<li>
|
72
|
-
|
73
|
-
<li>[
|
74
|
-
|
75
|
-
<li><
|
76
|
-
|
77
|
-
<li
|
78
|
-
|
79
|
-
<li><
|
80
|
-
|
81
|
-
<li
|
82
|
-
|
83
|
-
<li>
|
84
|
-
|
85
|
-
<li
|
69
|
+
<li><p class="first">Fedora 16をサポート。</p>
|
70
|
+
</li>
|
71
|
+
<li><p class="first">Fedora 15サポートを削除。</p>
|
72
|
+
</li>
|
73
|
+
<li><p class="first">[groonga] ホスト名を解決できない環境でも動作するようにサーバーIDのアドレスをデフォルト値をlocalhostにした。 [@uzullaさんが報告]</p>
|
74
|
+
</li>
|
75
|
+
<li><p class="first">MAP_HUGETLB対応。</p>
|
76
|
+
</li>
|
77
|
+
<li><p class="first">[admin] スループットチャート対応。</p>
|
78
|
+
</li>
|
79
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_itoh()</span></tt> 内でnul文字を使いするのをやめた。 [#1194] [設樂洋爾さんが報告]</p>
|
80
|
+
</li>
|
81
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt> を追加。</p>
|
82
|
+
</li>
|
83
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt> を追加。</p>
|
84
|
+
</li>
|
85
|
+
<li><p class="first">クエリ展開で文字列のベクター型のカラムをサポート。 [#1216]</p>
|
86
|
+
</li>
|
87
|
+
<li><p class="first">一度にたくさんのレコードを削除できるように <a class="reference internal" href="../reference/commands/delete.html"><em>delete</em></a> に <tt class="docutils literal"><span class="pre">--filter</span></tt> オプションを追加。 [#1225]</p>
|
88
|
+
</li>
|
89
|
+
<li><p class="first"><a class="reference internal" href="../reference/functions/geo_in_circle.html"><em>geo_in_circle</em></a> と <a class="reference internal" href="../reference/functions/geo_distance.html"><em>geo_distance</em></a> で近似方法指定をサポート。 [#1226]</p>
|
90
|
+
</li>
|
91
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> と <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> を非推奨にした。</p>
|
92
|
+
</li>
|
93
|
+
<li><p class="first">JSON出力内で、値のない位置情報データは <tt class="docutils literal"><span class="pre">""</span></tt> ではなく <tt class="docutils literal"><span class="pre">null</span></tt> と出力するようにした。</p>
|
94
|
+
</li>
|
95
|
+
<li><p class="first">MessagePack出力をだいたいサポート。 [#1215] [設樂洋爾さんが実装]</p>
|
96
|
+
</li>
|
97
|
+
<li><p class="first">XML出力内のドリルダウン結果タグの後に改行を追加。</p>
|
98
|
+
</li>
|
99
|
+
<li><p class="first">grn_datのtruncation対応。 [#892]</p>
|
100
|
+
</li>
|
101
|
+
<li><p class="first">grn_datが最長共通接頭辞検索(longest common prefix search)をサポート。</p>
|
102
|
+
</li>
|
86
103
|
</ul>
|
87
104
|
</div>
|
88
105
|
<div class="section" id="fixes">
|
89
106
|
<h2>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
90
107
|
<ul class="simple">
|
91
|
-
<li>[windows] mapの種類を間違っていた問題を修正。</
|
92
|
-
|
93
|
-
<li><
|
94
|
-
|
95
|
-
<li
|
96
|
-
|
108
|
+
<li><p class="first">[windows] mapの種類を間違っていた問題を修正。</p>
|
109
|
+
</li>
|
110
|
+
<li><p class="first">コンパイラの-Wno-というフラグの検出に失敗していた問題を修正。 [Arnaud Fontaineさんがパッチを作成]</p>
|
111
|
+
</li>
|
112
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> がMeCabについて間違って報告していた問題を修正。 [#1209] [設樂洋爾さんがパッチ作成]</p>
|
113
|
+
</li>
|
114
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt> 内でロックが足りない問題を修正。</p>
|
115
|
+
</li>
|
116
|
+
<li><p class="first">エラー時のContent-Typeを修正。 [#1220] [設樂洋爾さんがパッチ作成]</p>
|
117
|
+
</li>
|
118
|
+
<li><p class="first">SIS(半無限文字列)削除時にゴミが残る問題を修正。</p>
|
119
|
+
</li>
|
97
120
|
</ul>
|
98
121
|
</div>
|
99
122
|
<div class="section" id="thanks">
|
100
123
|
<h2>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
101
124
|
<ul class="simple">
|
102
|
-
<li>@uzullaさん</
|
103
|
-
|
104
|
-
<li
|
125
|
+
<li><p class="first">@uzullaさん</p>
|
126
|
+
</li>
|
127
|
+
<li><p class="first">Arnaud Fontaineさん</p>
|
128
|
+
</li>
|
129
|
+
<li><p class="first">設樂洋爾さん</p>
|
130
|
+
</li>
|
105
131
|
</ul>
|
106
132
|
</div>
|
107
133
|
</div>
|
108
134
|
<div class="section" id="release-1-2-8-2011-11-29">
|
109
|
-
<
|
135
|
+
<h1>1.2.8リリース - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
110
136
|
<p>オブジェクト(テーブルまたはカラム)のリネームがサポートされました!この機能を使うためにはデータベースを再構築する必要があります。以下のコマンドでデータベースを再構築することができます。:</p>
|
111
137
|
<div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump > db.dump
|
112
138
|
% groonga -n YOUR_NEW_DB < db.dump
|
@@ -119,222 +145,330 @@
|
|
119
145
|
<div class="section" id="id1">
|
120
146
|
<h2>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
121
147
|
<ul class="simple">
|
122
|
-
<li>[grntest] 1行あたりの最大バイト数の制限を撤去。</
|
123
|
-
|
124
|
-
<li>[
|
125
|
-
|
126
|
-
<li>
|
127
|
-
|
128
|
-
<li>[
|
129
|
-
|
130
|
-
<li>[
|
131
|
-
|
132
|
-
<li
|
133
|
-
|
134
|
-
<li>[
|
135
|
-
|
136
|
-
<li>[
|
137
|
-
|
138
|
-
<li
|
139
|
-
|
140
|
-
<li
|
141
|
-
|
148
|
+
<li><p class="first">[grntest] 1行あたりの最大バイト数の制限を撤去。</p>
|
149
|
+
</li>
|
150
|
+
<li><p class="first">[grntest] <tt class="docutils literal"><span class="pre">--pid-path</span></tt> オプションを追加。</p>
|
151
|
+
</li>
|
152
|
+
<li><p class="first">[deb] 実験的にzlibとlzoを有効化。</p>
|
153
|
+
</li>
|
154
|
+
<li><p class="first">[rpm] 実験的にzlibとlzoを有効化。</p>
|
155
|
+
</li>
|
156
|
+
<li><p class="first">truncation対応。 [#892]</p>
|
157
|
+
</li>
|
158
|
+
<li><p class="first">参照ロックフリーのダブル配列実装であるgrn_datを有効化。</p>
|
159
|
+
</li>
|
160
|
+
<li><p class="first">[pkg-config] groonga.pcにgroonga_version変数を追加。</p>
|
161
|
+
</li>
|
162
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">--disable-static</span></tt> を再サポート。 [groonga-dev,00612] [Kenichi Aramakiさんが提案]</p>
|
163
|
+
</li>
|
164
|
+
<li><p class="first">[munin] デフォルトではMuninプラグインをインストールしないようにした。</p>
|
165
|
+
</li>
|
166
|
+
<li><p class="first">RedHatプラットフォーム関連のファイルはデフォルトではインストールしないようにした。</p>
|
167
|
+
</li>
|
168
|
+
<li><p class="first">オブジェクトのリネームに対応。DBの再構築が必要です。 [#1167]</p>
|
169
|
+
</li>
|
170
|
+
<li><p class="first">[munin] スループットを計測するMuninプラグインを追加。 [#1171]</p>
|
171
|
+
</li>
|
172
|
+
<li><p class="first">[geo] geo_in_rectangleの高速化。新しい実装では、多くの場合、以前の実装よりも2倍程度高速になります。 [#1173]</p>
|
173
|
+
</li>
|
174
|
+
<li><p class="first">[macports] groongaのMacPortsが公式リポジトリに移動しました。 [Hiroshi Umemotoさんが取り込み]</p>
|
175
|
+
</li>
|
176
|
+
<li><p class="first">[geo] 位置情報の値のリテラルを度数からミリ秒へ変換するときに切り捨てではなく四捨五入するようにした。</p>
|
177
|
+
</li>
|
178
|
+
<li><p class="first">デフラグ対象としてテーブルをサポート。テーブルを指定した場合はテーブルが持つカラムのうち可変長サイズ値用のカラムをデフラグ対象とする。 [#1175]</p>
|
179
|
+
</li>
|
180
|
+
<li><p class="first">削除時に関連するパスも削除するようにした。 [#1180]</p>
|
181
|
+
</li>
|
182
|
+
<li><p class="first">[deb] i386対応。</p>
|
183
|
+
</li>
|
184
|
+
<li><p class="first">[rpm] i386対応。</p>
|
185
|
+
</li>
|
186
|
+
<li><p class="first">[windows] x86対応。</p>
|
187
|
+
</li>
|
142
188
|
</ul>
|
143
189
|
</div>
|
144
190
|
<div class="section" id="id2">
|
145
191
|
<h2>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
146
192
|
<ul class="simple">
|
147
|
-
<li>zlib/lzo圧縮カラムにアクセスするとクラッシュするバグを修正。圧縮カラムにアクセスするとメモリリークするので注意。これを修正するためにはAPIを改良する必要があるため、今後修正予定。 [GtiHub#5][GtiHub#6] [Takayuki Yamaguchiさんが報告]</
|
148
|
-
|
149
|
-
<li
|
150
|
-
|
151
|
-
<li
|
193
|
+
<li><p class="first">zlib/lzo圧縮カラムにアクセスするとクラッシュするバグを修正。圧縮カラムにアクセスするとメモリリークするので注意。これを修正するためにはAPIを改良する必要があるため、今後修正予定。 [GtiHub#5][GtiHub#6] [Takayuki Yamaguchiさんが報告]</p>
|
194
|
+
</li>
|
195
|
+
<li><p class="first">レコード削除時に必要のないカラムの値もクリアしてしまうバグを修正。</p>
|
196
|
+
</li>
|
197
|
+
<li><p class="first">ソート時に間違ったインデックスを使うバグを修正。 [#766] [Horikoshi Yukiさんが報告]</p>
|
198
|
+
</li>
|
199
|
+
<li><p class="first">[libedit] 必要な初期化処理が抜けていたバグを修正。 [GitHub#7] [SHIDARA Yojiさんがパッチを提供]</p>
|
200
|
+
</li>
|
201
|
+
<li><p class="first">[doc] ドキュメントの誤字を修正。 [GitHub#8] [zundaさんがパッチを提供]</p>
|
202
|
+
</li>
|
152
203
|
</ul>
|
153
204
|
</div>
|
154
205
|
<div class="section" id="id3">
|
155
206
|
<h2>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
156
207
|
<ul class="simple">
|
157
|
-
<li>Takayuki Yamaguchiさん</
|
158
|
-
|
159
|
-
<li
|
160
|
-
|
161
|
-
<li>
|
208
|
+
<li><p class="first">Takayuki Yamaguchiさん</p>
|
209
|
+
</li>
|
210
|
+
<li><p class="first">設樂洋爾さん</p>
|
211
|
+
</li>
|
212
|
+
<li><p class="first">Horikoshi Yukiさん</p>
|
213
|
+
</li>
|
214
|
+
<li><p class="first">zundaさん</p>
|
215
|
+
</li>
|
216
|
+
<li><p class="first">Hiroshi Umemotoさん</p>
|
217
|
+
</li>
|
162
218
|
</ul>
|
163
219
|
</div>
|
164
220
|
</div>
|
165
221
|
<div class="section" id="release-1-2-7-2011-10-29">
|
166
|
-
<
|
222
|
+
<h1>1.2.7リリース - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
167
223
|
<div class="section" id="id4">
|
168
224
|
<h2>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
169
225
|
<ul class="simple">
|
170
|
-
<li>[libedit] ワイド文字からマルチバイト列への変換時のエラーチェックを追加。 [設樂洋爾さんが報告]</
|
171
|
-
|
172
|
-
<li
|
173
|
-
|
174
|
-
<li
|
175
|
-
|
226
|
+
<li><p class="first">[libedit] ワイド文字からマルチバイト列への変換時のエラーチェックを追加。 [設樂洋爾さんが報告]</p>
|
227
|
+
</li>
|
228
|
+
<li><p class="first">grn_geo_estimate_in_rectangle()を追加。</p>
|
229
|
+
</li>
|
230
|
+
<li><p class="first">長方形での位置情報検索にカーソルAPIを追加。</p>
|
231
|
+
</li>
|
232
|
+
<li><p class="first">長方形での位置情報検索速度を向上。</p>
|
233
|
+
</li>
|
234
|
+
<li><p class="first">Ubuntu 11.10 Oneiric Ocelotのパッケージを追加。</p>
|
235
|
+
</li>
|
236
|
+
<li><p class="first">[実験的] Oracle Solaris 10 8/11をサポート。(まだシステムにインストール済みのgccでビルドできるだけ。)</p>
|
237
|
+
</li>
|
176
238
|
</ul>
|
177
239
|
</div>
|
178
240
|
<div class="section" id="id5">
|
179
241
|
<h2>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
180
242
|
<ul class="simple">
|
181
|
-
<li>ドキュメントの誤字を修正。 [@soundkitchenさんが報告]</
|
243
|
+
<li><p class="first">ドキュメントの誤字を修正。 [@soundkitchenさんが報告]</p>
|
244
|
+
</li>
|
182
245
|
</ul>
|
183
246
|
</div>
|
184
247
|
<div class="section" id="id6">
|
185
248
|
<h2>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
186
249
|
<ul class="simple">
|
187
|
-
<li>設樂洋爾さん</
|
188
|
-
|
250
|
+
<li><p class="first">設樂洋爾さん</p>
|
251
|
+
</li>
|
252
|
+
<li><p class="first">@soundkitchenさん</p>
|
253
|
+
</li>
|
189
254
|
</ul>
|
190
255
|
</div>
|
191
256
|
</div>
|
192
257
|
<div class="section" id="release-1-2-6-2011-09-29">
|
193
|
-
<
|
258
|
+
<h1>1.2.6リリース - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
194
259
|
<div class="section" id="id7">
|
195
260
|
<h2>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
196
261
|
<ul class="simple">
|
197
|
-
<li>型変換時のエラーメッセージを改善。</
|
198
|
-
|
199
|
-
<li><
|
200
|
-
|
201
|
-
<li
|
202
|
-
|
203
|
-
<li
|
204
|
-
|
205
|
-
<li>
|
206
|
-
|
207
|
-
<li
|
262
|
+
<li><p class="first">型変換時のエラーメッセージを改善。</p>
|
263
|
+
</li>
|
264
|
+
<li><p class="first">型変換時の座標の値チェックを追加。</p>
|
265
|
+
</li>
|
266
|
+
<li><p class="first"><a class="reference internal" href="../tutorial/query_expansion.html"><em>クエリ拡張</em></a> をサポート。</p>
|
267
|
+
</li>
|
268
|
+
<li><p class="first">クエリ展開用に <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> に <cite>--query_expansion</cite> オプションを追加。</p>
|
269
|
+
</li>
|
270
|
+
<li><p class="first">座標の値の単位を度とミリ秒間で変換するマクロを追加。</p>
|
271
|
+
</li>
|
272
|
+
<li><p class="first"><a class="reference internal" href="../reference/functions/geo_distance.html"><em>geo_distance</em></a> ()内での型変換をサポート。</p>
|
273
|
+
</li>
|
274
|
+
<li><p class="first">コマンドラインのパース時に全角スペースでトークンを区切らないようにした。 #986</p>
|
275
|
+
</li>
|
276
|
+
<li><p class="first">TokyoGeoPointとWGS84GeoPoint間での変換をサポート。</p>
|
277
|
+
</li>
|
278
|
+
<li><p class="first">grn_geo_select_in_circle()とgrn_geo_select_in_rectangle()をAPIとして公開した。</p>
|
279
|
+
</li>
|
280
|
+
<li><p class="first">CentOS 6をサポート。</p>
|
281
|
+
</li>
|
282
|
+
<li><p class="first">最新のDebian GNU/Linux sidをサポート。SATOH Fumiyasuさんによるパッチ。 GitHub#3</p>
|
283
|
+
</li>
|
208
284
|
</ul>
|
209
285
|
</div>
|
210
286
|
<div class="section" id="id8">
|
211
287
|
<h2>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
212
288
|
<ul class="simple">
|
213
|
-
<li>座標値がロード時に壊れてしまう問題を修正。</
|
289
|
+
<li><p class="first">座標値がロード時に壊れてしまう問題を修正。</p>
|
290
|
+
</li>
|
214
291
|
</ul>
|
215
292
|
</div>
|
216
293
|
<div class="section" id="id9">
|
217
294
|
<h2>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
218
295
|
<ul class="simple">
|
219
|
-
<li>SATOH Fumiyasuさん</
|
296
|
+
<li><p class="first">SATOH Fumiyasuさん</p>
|
297
|
+
</li>
|
220
298
|
</ul>
|
221
299
|
</div>
|
222
300
|
</div>
|
223
301
|
<div class="section" id="release-1-2-5-2011-08-29">
|
224
|
-
<
|
302
|
+
<h1>1.2.5リリース - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
225
303
|
<div class="section" id="id10">
|
226
304
|
<h2>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
227
305
|
<ul class="simple">
|
228
|
-
<li>実験的にWindowsインストーラの提供を開始。</
|
229
|
-
|
230
|
-
<li
|
231
|
-
|
232
|
-
<li><
|
233
|
-
|
234
|
-
<li>[
|
235
|
-
|
236
|
-
<li
|
237
|
-
|
238
|
-
<li>
|
239
|
-
|
306
|
+
<li><p class="first">実験的にWindowsインストーラの提供を開始。</p>
|
307
|
+
</li>
|
308
|
+
<li><p class="first">名前に使える文字に"#"と"-"を追加。#1043</p>
|
309
|
+
</li>
|
310
|
+
<li><p class="first">名前に使える文字のうち、"_"以外はすべて最初の文字にも使えるようになった。 #1043</p>
|
311
|
+
</li>
|
312
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/load.html"><em>load</em></a> の <cite>--each</cite> オプションが <cite>[...]</cite> 形式のデータでも動くようになった。 #1044</p>
|
313
|
+
</li>
|
314
|
+
<li><p class="first"><a class="reference internal" href="../suggest.html"><em>サジェスト</em></a> のドキュメントを追加。</p>
|
315
|
+
</li>
|
316
|
+
<li><p class="first">すべての <a class="reference internal" href="../reference/commands/suggest.html"><em>suggest</em></a> のタイプで閾値を利用できるようした。閾値を利用する場合は <cite>--frequency_threshold</cite> と <cite>--conditional_probability_threshold</cite> オプションを使う。 #1042</p>
|
317
|
+
</li>
|
318
|
+
<li><p class="first">[groonga-suggest-httpd] SIGUSR1シグナルでのログの再オープンに対応。 #1048</p>
|
319
|
+
</li>
|
320
|
+
<li><p class="first">参照ベクタカラムの値として文字列を指定すると自動的にトークナイズして格納するようにした。 #1051</p>
|
321
|
+
</li>
|
322
|
+
<li><p class="first">[groonga-suggest-httpd] 1ファイル中の最大ログ行数を指定する <cite>--n-lines-per-log-file</cite> オプションを追加。</p>
|
323
|
+
</li>
|
324
|
+
<li><p class="first">[groonga-suggest-httpd] <cite>--conditional_probability_threshold</cite> に対応する <cite>p</cite> パラメータを追加。</p>
|
325
|
+
</li>
|
326
|
+
<li><p class="first">grn_ctx_init()とgrn_ctx_open()用にGRN_CTX_PER_DBフラグを追加。 #1053</p>
|
327
|
+
</li>
|
328
|
+
<li><p class="first">grn_ctx_close()を公開。 #1035</p>
|
329
|
+
</li>
|
240
330
|
</ul>
|
241
331
|
</div>
|
242
332
|
<div class="section" id="id11">
|
243
333
|
<h2>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
244
334
|
<ul class="simple">
|
245
|
-
<li><a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> でマッチ式の右辺に不正な値を指定するとクラッシュする問題を修正。 #1047</
|
246
|
-
|
335
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> でマッチ式の右辺に不正な値を指定するとクラッシュする問題を修正。 #1047</p>
|
336
|
+
</li>
|
337
|
+
<li><p class="first">ハッシュテーブルのカーソルが間違ったレコードを返す問題を修正。</p>
|
338
|
+
</li>
|
247
339
|
</ul>
|
248
340
|
</div>
|
249
341
|
</div>
|
250
342
|
<div class="section" id="release-1-2-4-2011-07-29">
|
251
|
-
<
|
343
|
+
<h1>1.2.4リリース - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
252
344
|
<div class="section" id="id12">
|
253
345
|
<h2>改良<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
254
346
|
<ul class="simple">
|
255
|
-
<li><tt class="docutils literal"><span class="pre">*BSD</span></tt> をサポートを再サポート。(おばたさんが報告)</
|
256
|
-
|
257
|
-
<li
|
258
|
-
|
259
|
-
<li><
|
260
|
-
|
261
|
-
<li
|
262
|
-
|
347
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">*BSD</span></tt> をサポートを再サポート。(おばたさんが報告)</p>
|
348
|
+
</li>
|
349
|
+
<li><p class="first">sed関連のポータビリティを改善。(おばたさんが提案)</p>
|
350
|
+
</li>
|
351
|
+
<li><p class="first">Visual C++ 2008を再サポート。</p>
|
352
|
+
</li>
|
353
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/check.html"><em>check</em></a> がハッシュテーブルをサポート。</p>
|
354
|
+
</li>
|
355
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> の--sortby内で_scoreを使えないときに_scoreを指定しても無視するようにした。 #1030</p>
|
356
|
+
</li>
|
357
|
+
<li><p class="first"><a class="reference internal" href="../reference/log.html"><em>Log</em></a> に関するドキュメントを追加。</p>
|
358
|
+
</li>
|
359
|
+
<li><p class="first">~/.editrcをサポート。</p>
|
360
|
+
</li>
|
361
|
+
<li><p class="first">~/.groonga-historyをサポート。</p>
|
362
|
+
</li>
|
263
363
|
</ul>
|
264
364
|
</div>
|
265
365
|
<div class="section" id="id13">
|
266
366
|
<h2>修正<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
267
367
|
<ul class="simple">
|
268
|
-
<li>libeditサポートが壊れていた問題を修正。(うえのさんが報告)</
|
269
|
-
|
270
|
-
<li
|
271
|
-
|
272
|
-
<li
|
368
|
+
<li><p class="first">libeditサポートが壊れていた問題を修正。(うえのさんが報告)</p>
|
369
|
+
</li>
|
370
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">*.spec</span></tt> のソースURLを修正。(うえのさんが報告)</p>
|
371
|
+
</li>
|
372
|
+
<li><p class="first">パトリシアトライのカーソルが間違ったレコードを返す問題を修正。</p>
|
373
|
+
</li>
|
374
|
+
<li><p class="first">データベースに対するgrn_obj_clear_lock()がデータベース自身のロックをクリアし忘れていたのでクリアするようにした。</p>
|
375
|
+
</li>
|
376
|
+
<li><p class="first">レコード削除時に他のレコードのデータを削除してしまう可能性があるという問題を修正。</p>
|
377
|
+
</li>
|
273
378
|
</ul>
|
274
379
|
</div>
|
275
380
|
<div class="section" id="id14">
|
276
381
|
<h2>感謝<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
277
382
|
<ul class="simple">
|
278
|
-
<li>おばたさん</
|
279
|
-
|
383
|
+
<li><p class="first">おばたさん</p>
|
384
|
+
</li>
|
385
|
+
<li><p class="first">うえのさん</p>
|
386
|
+
</li>
|
280
387
|
</ul>
|
281
388
|
</div>
|
282
389
|
</div>
|
283
390
|
<div class="section" id="release-1-2-3-2011-06-29">
|
284
|
-
<
|
391
|
+
<h1>1.2.3リリース - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
285
392
|
<div class="section" id="id15">
|
286
393
|
<h2>改良<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
287
394
|
<ul class="simple">
|
288
|
-
<li>不正なテーブル名チェックを追加。#912</
|
289
|
-
|
290
|
-
<li
|
291
|
-
|
292
|
-
<li><
|
293
|
-
|
395
|
+
<li><p class="first">不正なテーブル名チェックを追加。#912</p>
|
396
|
+
</li>
|
397
|
+
<li><p class="first">クエリログを解析するgroonga-query-log-analyzerを追加。</p>
|
398
|
+
</li>
|
399
|
+
<li><p class="first">groongaコマンドのエラー時に失敗したコマンドを表示するようになった。</p>
|
400
|
+
</li>
|
401
|
+
<li><p class="first">groongaコマンドのエラー時にファイル名と行番号を表示するようになった。</p>
|
402
|
+
</li>
|
403
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/column_create.html"><em>column_create</em></a> のエラーメッセージを改善。#952</p>
|
404
|
+
</li>
|
405
|
+
<li><p class="first">GRN_OBJ_TABLE_DAT_KEY(ダブル配列トライ)テーブルを追加。(実験的)</p>
|
406
|
+
</li>
|
294
407
|
</ul>
|
295
408
|
</div>
|
296
409
|
<div class="section" id="id16">
|
297
410
|
<h2>修正<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
298
411
|
<ul class="simple">
|
299
|
-
<li>getコマンドでクラッシュする問題を修正。(おばたさんが報告)</
|
300
|
-
|
412
|
+
<li><p class="first">getコマンドでクラッシュする問題を修正。(おばたさんが報告)</p>
|
413
|
+
</li>
|
414
|
+
<li><p class="first">クエリログで経過時間がオーバーフローする問題を修正。#944</p>
|
415
|
+
</li>
|
301
416
|
</ul>
|
302
417
|
</div>
|
303
418
|
<div class="section" id="id17">
|
304
419
|
<h2>感謝<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
305
420
|
<ul class="simple">
|
306
|
-
<li>おばたさん</
|
421
|
+
<li><p class="first">おばたさん</p>
|
422
|
+
</li>
|
307
423
|
</ul>
|
308
424
|
</div>
|
309
425
|
</div>
|
310
426
|
<div class="section" id="release-1-2-2-2011-05-29">
|
311
|
-
<
|
427
|
+
<h1>1.2.2リリース - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
312
428
|
<div class="section" id="id18">
|
313
429
|
<h2>改良<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
314
430
|
<ul class="simple">
|
315
|
-
<li>Ubuntu 11.04 Natty Narwhalのパッケージを追加。</
|
316
|
-
|
317
|
-
<li>
|
318
|
-
|
319
|
-
<li
|
320
|
-
|
321
|
-
<li
|
322
|
-
|
323
|
-
<li
|
324
|
-
|
325
|
-
<li>
|
326
|
-
|
327
|
-
<li>
|
328
|
-
|
329
|
-
<li>
|
330
|
-
|
331
|
-
<li
|
431
|
+
<li><p class="first">Ubuntu 11.04 Natty Narwhalのパッケージを追加。</p>
|
432
|
+
</li>
|
433
|
+
<li><p class="first">Ubuntu 10.10 Maverick Meerkatのパッケージを削除。</p>
|
434
|
+
</li>
|
435
|
+
<li><p class="first">RPM: サーバー関連のパッケージをgroonga-serverパッケージに分割。</p>
|
436
|
+
</li>
|
437
|
+
<li><p class="first">suggest: エラーメッセージに対象オブジェクト名を加えるようにした。</p>
|
438
|
+
</li>
|
439
|
+
<li><p class="first">ドキュメント: 英語のサポートを開始。(ただし、まだ不完全。)</p>
|
440
|
+
</li>
|
441
|
+
<li><p class="first">groonga-suggest-httpd: --disable-max-fd-checkオプションを追加。</p>
|
442
|
+
</li>
|
443
|
+
<li><p class="first">groonga: <a class="reference internal" href="../reference/executables/groonga.html#cmdoption-a"><em class="xref std std-option">--address</em></a> オプションを <a class="reference internal" href="../reference/executables/groonga.html#cmdoption--bind-address"><em class="xref std std-option">--bind-address</em></a> に改名。</p>
|
444
|
+
</li>
|
445
|
+
<li><p class="first">groonga-suggest-httpd: --address オプションを --bind-address に改名。</p>
|
446
|
+
</li>
|
447
|
+
<li><p class="first">管理用HTMLのインストールディレクトリを$PREFIX/share/groonga/admin_html/から$PREFIX/share/groonga/html/admin/へ変更。</p>
|
448
|
+
</li>
|
449
|
+
<li><p class="first">groonga-suggest-httpd: JSONレスポンス時には"text/javascript"ではなく"application/json"を使うようにした。</p>
|
450
|
+
</li>
|
451
|
+
<li><p class="first">Windows: 実行ファイルからの相対パスではなく、DLLからの相対パスを使うようにした。</p>
|
452
|
+
</li>
|
453
|
+
<li><p class="first">MeCab: MeCab初期化時のMeCabのエラーメッセージもgroongaのエラーメッセージに加えるようにした。</p>
|
454
|
+
</li>
|
455
|
+
<li><p class="first">suggest: suggestコマンドにprefix_searchパラメータを追加。</p>
|
456
|
+
</li>
|
457
|
+
<li><p class="first">plugin: grn_plugin_get_system_plugins_dir()とgrn_plugin_get_suffix() APIを追加。</p>
|
458
|
+
</li>
|
459
|
+
<li><p class="first">grn_obj_is_builtin() APIを追加。</p>
|
460
|
+
</li>
|
461
|
+
<li><p class="first"><a class="reference internal" href="../reference/commands/load.html"><em>load</em></a>: テーブル名をチェックするようにした。 #934</p>
|
462
|
+
</li>
|
463
|
+
<li><p class="first">不正な名前が指定された時のエラーメッセージにどこで指定されたかの情報を含めるようにした。 #935</p>
|
464
|
+
</li>
|
332
465
|
</ul>
|
333
466
|
</div>
|
334
467
|
<div class="section" id="id19">
|
335
468
|
<h2>修正<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
336
469
|
<ul class="simple">
|
337
|
-
<li>マルチプロセスでデータを更新した場合にShortText型などの可変長データが壊れる問題を修正。 #890</
|
470
|
+
<li><p class="first">マルチプロセスでデータを更新した場合にShortText型などの可変長データが壊れる問題を修正。 #890</p>
|
471
|
+
</li>
|
338
472
|
</ul>
|
339
473
|
</div>
|
340
474
|
</div>
|
@@ -516,7 +650,7 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
516
650
|
<li class="right" style="margin-right: 10px">
|
517
651
|
<a href="../genindex.html" title="総合索引"
|
518
652
|
>索引</a></li>
|
519
|
-
<li><a href="../index.html">groonga v3.0.
|
653
|
+
<li><a href="../index.html">groonga v3.0.5ドキュメント</a> »</li>
|
520
654
|
</ul>
|
521
655
|
</div>
|
522
656
|
<div class="footer">
|