rroonga 1.3.1-x86-mingw32 → 2.0.0-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +1 -1
- data/Rakefile +2 -7
- data/ext/groonga/rb-grn-column.c +34 -37
- data/ext/groonga/rb-grn-context.c +63 -2
- data/ext/groonga/rb-grn-expression.c +21 -13
- data/ext/groonga/rb-grn-object.c +2 -0
- data/ext/groonga/rb-grn-table.c +57 -51
- data/ext/groonga/rb-grn.h +10 -4
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga/schema.rb +75 -46
- data/lib/groonga.rb +9 -6
- data/rroonga-build.rb +2 -2
- data/test/run-test.rb +1 -2
- data/test/test-table-select.rb +0 -5
- data/test/test-type.rb +2 -2
- data/test/test-version.rb +40 -10
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_sjlj-1.dll +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/libstdc++-6.dll +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/include/groonga/groonga/plugin.h +113 -0
- data/vendor/local/include/groonga/groonga/tokenizer.h +146 -0
- data/vendor/local/include/groonga/groonga.h +18 -18
- data/vendor/local/include/msgpack/object.h +98 -0
- data/vendor/local/include/msgpack/object.hpp +412 -0
- data/vendor/local/include/msgpack/pack.h +143 -0
- data/vendor/local/include/msgpack/pack.hpp +318 -0
- data/vendor/local/include/msgpack/pack_define.h +26 -0
- data/vendor/local/include/msgpack/pack_template.h +766 -0
- data/vendor/local/include/msgpack/sbuffer.h +111 -0
- data/vendor/local/include/msgpack/sbuffer.hpp +112 -0
- data/vendor/local/include/msgpack/sysdep.h +195 -0
- data/vendor/local/include/msgpack/type/bool.hpp +55 -0
- data/vendor/local/include/msgpack/type/define.hpp +3279 -0
- data/vendor/local/include/msgpack/type/deque.hpp +77 -0
- data/vendor/local/include/msgpack/type/fixint.hpp +172 -0
- data/vendor/local/include/msgpack/type/float.hpp +82 -0
- data/vendor/local/include/msgpack/type/int.hpp +211 -0
- data/vendor/local/include/msgpack/type/list.hpp +77 -0
- data/vendor/local/include/msgpack/type/map.hpp +205 -0
- data/vendor/local/include/msgpack/type/nil.hpp +65 -0
- data/vendor/local/include/msgpack/type/pair.hpp +61 -0
- data/vendor/local/include/msgpack/type/raw.hpp +94 -0
- data/vendor/local/include/msgpack/type/set.hpp +122 -0
- data/vendor/local/include/msgpack/type/string.hpp +62 -0
- data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +129 -0
- data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +122 -0
- data/vendor/local/include/msgpack/type/tuple.hpp +13691 -0
- data/vendor/local/include/msgpack/type/vector.hpp +81 -0
- data/vendor/local/include/msgpack/type.hpp +16 -0
- data/vendor/local/include/msgpack/unpack.h +260 -0
- data/vendor/local/include/msgpack/unpack.hpp +374 -0
- data/vendor/local/include/msgpack/unpack_define.h +93 -0
- data/vendor/local/include/msgpack/unpack_template.h +409 -0
- data/vendor/local/include/msgpack/version.h +40 -0
- data/vendor/local/include/msgpack/vrefbuffer.h +142 -0
- data/vendor/local/include/msgpack/vrefbuffer.hpp +97 -0
- data/vendor/local/include/msgpack/zbuffer.h +207 -0
- data/vendor/local/include/msgpack/zbuffer.hpp +100 -0
- data/vendor/local/include/msgpack/zone.h +147 -0
- data/vendor/local/include/msgpack/zone.hpp +455 -0
- data/vendor/local/include/msgpack.h +30 -0
- data/vendor/local/include/msgpack.hpp +24 -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/suggest/suggest.la +2 -2
- 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/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- 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/libmsgpack.la +41 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +41 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +4 -4
- 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/commands/suggest.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/report.txt +6 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/indexing.txt +108 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +386 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +51 -385
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/select.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/status.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/suggest.html +7 -7
- data/vendor/local/share/doc/groonga/en/html/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands/view_add.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/commands.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/community.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/test.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/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/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-http.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/executables.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/expr.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/geo_in_rectangle.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/functions/rand.html +10 -10
- data/vendor/local/share/doc/groonga/en/html/functions.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 +14 -8
- data/vendor/local/share/doc/groonga/en/html/indexing.html +237 -0
- data/vendor/local/share/doc/groonga/en/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/log.html +20 -20
- 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 +566 -0
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/news.html +65 -464
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/output.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/reference.html +14 -8
- 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/spec/search.html +9 -9
- data/vendor/local/share/doc/groonga/en/html/spec.html +9 -9
- 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/suggest.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/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +5 -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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +5 -5
- 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/en/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/en/html/type.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/commands/suggest.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/report.txt +6 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/indexing.txt +108 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +386 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +51 -385
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/command_version.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/cache_limit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/check.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/clearlock.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/column_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/column_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/column_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/define_selector.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/defrag.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/delete.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/dump.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/load.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/log_level.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/log_put.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/log_reopen.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/quit.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/select.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/shutdown.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/status.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/suggest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/table_create.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/table_list.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/table_remove.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands/view_add.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/commands.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/community.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/test.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables/grnslap.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables/grntest.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-http.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga-suggest-create-dataset.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables/groonga.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/executables.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/expr.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/edit_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_distance.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_circle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/geo_in_rectangle.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/now.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/functions/rand.html +10 -10
- data/vendor/local/share/doc/groonga/ja/html/functions.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/index.html +14 -8
- data/vendor/local/share/doc/groonga/ja/html/indexing.html +215 -0
- data/vendor/local/share/doc/groonga/ja/html/install.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/log.html +20 -20
- 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 +528 -0
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/news.html +62 -425
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/output.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/pseudo_column.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/reference.html +14 -8
- 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/spec/search.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/spec.html +9 -9
- data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/suggest.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/troubleshooting.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +5 -5
- 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 +5 -5
- 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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +5 -5
- 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/doc/groonga/ja/html/tutorial.html +5 -5
- data/vendor/local/share/doc/groonga/ja/html/type.html +5 -5
- data/vendor/local/share/doc/groonga/source/commands/suggest.txt +1 -1
- data/vendor/local/share/doc/groonga/source/contribution/report.txt +6 -7
- data/vendor/local/share/doc/groonga/source/indexing.txt +108 -0
- data/vendor/local/share/doc/groonga/source/news/1.2.x.txt +386 -0
- data/vendor/local/share/doc/groonga/source/news.txt +51 -385
- data/vendor/local/share/doc/groonga/source/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/source/spec/search.txt +4 -4
- data/vendor/local/share/license/groonga/COPYING +10 -12
- data/vendor/local/share/license/msgpack/AUTHORS +1 -0
- data/vendor/local/share/license/msgpack/COPYING +14 -0
- data/vendor/local/share/license/msgpack/LICENSE +202 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +113 -5
- data/vendor/local/share/man/man1/groonga.1 +142 -11
- metadata +66 -3
- data/vendor/local/share/doc/groonga/source/update_execution_example.py +0 -141
@@ -0,0 +1,566 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
|
4
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
5
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
6
|
+
|
7
|
+
|
8
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
9
|
+
<head>
|
10
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
|
+
|
12
|
+
<title>Release 1.2.9 - 2011/12/29 — groonga v2.0.0 documentation</title>
|
13
|
+
|
14
|
+
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
15
|
+
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
16
|
+
|
17
|
+
<script type="text/javascript">
|
18
|
+
var DOCUMENTATION_OPTIONS = {
|
19
|
+
URL_ROOT: '../',
|
20
|
+
VERSION: '2.0.0',
|
21
|
+
COLLAPSE_INDEX: false,
|
22
|
+
FILE_SUFFIX: '.html',
|
23
|
+
HAS_SOURCE: true
|
24
|
+
};
|
25
|
+
</script>
|
26
|
+
<script type="text/javascript" src="../_static/jquery.js"></script>
|
27
|
+
<script type="text/javascript" src="../_static/underscore.js"></script>
|
28
|
+
<script type="text/javascript" src="../_static/doctools.js"></script>
|
29
|
+
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
30
|
+
<link rel="top" title="groonga v2.0.0 documentation" href="../index.html" />
|
31
|
+
</head>
|
32
|
+
<body>
|
33
|
+
<div class="header">
|
34
|
+
<h1 class="title">
|
35
|
+
<a id="top-link" href="../index.html">
|
36
|
+
<span class="project">groonga</span>
|
37
|
+
<span class="separator">-</span>
|
38
|
+
<span class="description">An open-source fulltext search engine and column store.</span>
|
39
|
+
</a>
|
40
|
+
</h1>
|
41
|
+
|
42
|
+
<div class="other-language-links">
|
43
|
+
<ul>
|
44
|
+
<li><a href="../../../ja/html/news/1.2.x.html"><img src="../_static/jp.png" alt="日本語"></a></li>
|
45
|
+
</ul>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
|
49
|
+
|
50
|
+
<div class="related">
|
51
|
+
<h3>Navigation</h3>
|
52
|
+
<ul>
|
53
|
+
<li class="right" style="margin-right: 10px">
|
54
|
+
<a href="../genindex.html" title="General Index"
|
55
|
+
accesskey="I">index</a></li>
|
56
|
+
<li><a href="../index.html">groonga v2.0.0 documentation</a> »</li>
|
57
|
+
</ul>
|
58
|
+
</div>
|
59
|
+
|
60
|
+
<div class="document">
|
61
|
+
<div class="documentwrapper">
|
62
|
+
<div class="bodywrapper">
|
63
|
+
<div class="body">
|
64
|
+
|
65
|
+
<div class="section" id="release-1-2-9-2011-12-29">
|
66
|
+
<span id="release-1-2-9"></span><h1>Release 1.2.9 - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="Permalink to this headline">¶</a></h1>
|
67
|
+
<div class="section" id="improvements">
|
68
|
+
<h2>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h2>
|
69
|
+
<ul class="simple">
|
70
|
+
<li>Supported Fedora 16.</li>
|
71
|
+
<li>Dropped Fedora 15 support.</li>
|
72
|
+
<li>[groonga] Improved the default server ID address to work
|
73
|
+
on unresolved host name environment. [Reported by @uzulla]</li>
|
74
|
+
<li>Supported MAP_HUGETLB.</li>
|
75
|
+
<li>[admin] Supported throughput chart.</li>
|
76
|
+
<li>Stopped adding nul character in <tt class="docutils literal"><span class="pre">grn_itoh()</span></tt>. [#1194]
|
77
|
+
[Reported by SHIDARA Yoji]</li>
|
78
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt>.</li>
|
79
|
+
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt>.</li>
|
80
|
+
<li>Supported string vector column for query expansion. [#1216]</li>
|
81
|
+
<li>Added <tt class="docutils literal"><span class="pre">--filter</span></tt> option to <a class="reference internal" href="../commands/delete.html"><em>delete</em></a> to delete
|
82
|
+
many record at once. [#1225]</li>
|
83
|
+
<li>Supported approximate type customization for
|
84
|
+
<a class="reference internal" href="../functions/geo_in_circle.html"><em>geo_in_circle</em></a> and <a class="reference internal" href="../functions/geo_distance.html"><em>geo_distance</em></a>. [#1226]</li>
|
85
|
+
<li>Made <tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> and <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> are deprecated.</li>
|
86
|
+
<li>Changed to use <tt class="docutils literal"><span class="pre">null</span></tt> instead of <tt class="docutils literal"><span class="pre">""</span></tt> for empty geo
|
87
|
+
point value in JSON output.</li>
|
88
|
+
<li>Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]</li>
|
89
|
+
<li>Added missing newlines after drilldown result tags in XML output.</li>
|
90
|
+
<li>Supported truncate for grn_dat.</li>
|
91
|
+
<li>Supported longest common prefix search by grn_dat.</li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
<div class="section" id="fixes">
|
95
|
+
<h2>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h2>
|
96
|
+
<ul class="simple">
|
97
|
+
<li>[windows] Fixed inverted map type.</li>
|
98
|
+
<li>Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]</li>
|
99
|
+
<li>Fixed a problem that <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> reports wrongly
|
100
|
+
about MeCab. [#1209] [Patch by SHIDARA Yoji]</li>
|
101
|
+
<li>Added missing lock into <tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt>.</li>
|
102
|
+
<li>Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]</li>
|
103
|
+
<li>Fixed a problem that deleting SIS (Semi Infinite String)
|
104
|
+
may keep a garbage.</li>
|
105
|
+
</ul>
|
106
|
+
</div>
|
107
|
+
<div class="section" id="thanks">
|
108
|
+
<h2>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h2>
|
109
|
+
<ul class="simple">
|
110
|
+
<li>@uzulla</li>
|
111
|
+
<li>Arnaud Fontaine</li>
|
112
|
+
<li>SHIDARA Yoji</li>
|
113
|
+
</ul>
|
114
|
+
</div>
|
115
|
+
</div>
|
116
|
+
<div class="section" id="release-1-2-8-2011-11-29">
|
117
|
+
<span id="release-1-2-8"></span><h1>Release 1.2.8 - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="Permalink to this headline">¶</a></h1>
|
118
|
+
<p>Object, table and column renamings are supported! These
|
119
|
+
features require database re-creation. You can re-create your
|
120
|
+
database by the following command:</p>
|
121
|
+
<div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump > db.dump
|
122
|
+
% groonga -n YOUR_NEW_DB < db.dump
|
123
|
+
</pre></div>
|
124
|
+
</div>
|
125
|
+
<div class="admonition note">
|
126
|
+
<p class="first admonition-title">Note</p>
|
127
|
+
<p class="last">Groonga 1.2.8 can open databases created by groonga 1.2.7
|
128
|
+
or earlier. But groonga 1.2.7 or earlier can't open
|
129
|
+
databases created by groonga 1.2.8 or later.</p>
|
130
|
+
</div>
|
131
|
+
<div class="section" id="id1">
|
132
|
+
<h2>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
|
133
|
+
<ul class="simple">
|
134
|
+
<li>[grntest] Removed the upper limit to the number of bytes in one line.</li>
|
135
|
+
<li>[grntest] Added <tt class="docutils literal"><span class="pre">--pid-path</span></tt> option.</li>
|
136
|
+
<li>[deb] Enabled experimental zlib and lzo support.</li>
|
137
|
+
<li>[rpm] Enabled experimental zlib and lzo support.</li>
|
138
|
+
<li>Supports truncation. [#892]</li>
|
139
|
+
<li>Enabled grn_dat that is a read lock free double array implementation.</li>
|
140
|
+
<li>[pkg-config] Added groonga_version variable to groonga.pc.</li>
|
141
|
+
<li>Re-supported <tt class="docutils literal"><span class="pre">--disable-static</span></tt>. [groonga-dev,00612]
|
142
|
+
[Suggested by Kenichi Aramaki]</li>
|
143
|
+
<li>[munin] Stopped to install Munin plugins by default.</li>
|
144
|
+
<li>Stopped to install RedHat platform related files by default.</li>
|
145
|
+
<li>Supports object renaming. This requires DB re-creation. [#1167]</li>
|
146
|
+
<li>[munin] Added a Munin plugin that measures throughput. [#1171]</li>
|
147
|
+
<li>[geo] Improved geo_in_rectangle performance. The new
|
148
|
+
implementation will be 2x faster than the old
|
149
|
+
implementation in many cases. [#1173]</li>
|
150
|
+
<li>[macports] Moved groonga's MacPorts to the official
|
151
|
+
repository. [Imported by Hiroshi Umemoto]</li>
|
152
|
+
<li>[geo] Changed the geo literal degree-to-msec conversion algorithm
|
153
|
+
to round-off from truncation.</li>
|
154
|
+
<li>Supports a table defrag. It defrags variable size value columns in
|
155
|
+
the table. [#1175]</li>
|
156
|
+
<li>Removed associated path on remove. [#1180]</li>
|
157
|
+
<li>[deb] Supports i386.</li>
|
158
|
+
<li>[rpm] Supports i386.</li>
|
159
|
+
<li>[windows] Supports x86.</li>
|
160
|
+
</ul>
|
161
|
+
</div>
|
162
|
+
<div class="section" id="id2">
|
163
|
+
<h2>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h2>
|
164
|
+
<ul class="simple">
|
165
|
+
<li>Fixed a bug that groonga crashes when accessing a zlib/lzo compressed
|
166
|
+
column. Note that a compressed column access causes a memory leak. To
|
167
|
+
resolve this, we need to improve API. We will do it in the future.
|
168
|
+
[GtiHub#5][GtiHub#6] [Reported by Takayuki Yamaguchi]</li>
|
169
|
+
<li>Fixed a bug that unrelated column values are cleared in deletion.</li>
|
170
|
+
<li>Fixed a bug that a wrong index is used in sorting. [#766]
|
171
|
+
[Reported by Horikoshi Yuki]</li>
|
172
|
+
<li>[libedit] Fixed a bug that necessary initialization is
|
173
|
+
omitted. [GitHub#7] [Patch by SHIDARA Yoji]</li>
|
174
|
+
<li>[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]</li>
|
175
|
+
</ul>
|
176
|
+
</div>
|
177
|
+
<div class="section" id="id3">
|
178
|
+
<h2>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h2>
|
179
|
+
<ul class="simple">
|
180
|
+
<li>Takayuki Yamaguchi</li>
|
181
|
+
<li>SHIDARA Yoji</li>
|
182
|
+
<li>Horikoshi Yuki</li>
|
183
|
+
<li>zunda</li>
|
184
|
+
<li>Hiroshi Umemoto</li>
|
185
|
+
</ul>
|
186
|
+
</div>
|
187
|
+
</div>
|
188
|
+
<div class="section" id="release-1-2-7-2011-10-29">
|
189
|
+
<span id="release-1-2-7"></span><h1>Release 1.2.7 - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="Permalink to this headline">¶</a></h1>
|
190
|
+
<div class="section" id="id4">
|
191
|
+
<h2>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h2>
|
192
|
+
<ul class="simple">
|
193
|
+
<li>[libedit] Added error check for wide character to
|
194
|
+
multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
195
|
+
<li>Added grn_geo_estimate_in_rectangle().</li>
|
196
|
+
<li>Added cursor API to geo search in rectangle.</li>
|
197
|
+
<li>Improved geo search in rectangle speed.</li>
|
198
|
+
<li>Added packages for Ubuntu 11.10 Oneiric Ocelot</li>
|
199
|
+
<li>[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system gcc.)</li>
|
200
|
+
</ul>
|
201
|
+
</div>
|
202
|
+
<div class="section" id="id5">
|
203
|
+
<h2>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h2>
|
204
|
+
<ul class="simple">
|
205
|
+
<li>Fixed a typo in document. [Reported by @soundkitchen]</li>
|
206
|
+
</ul>
|
207
|
+
</div>
|
208
|
+
<div class="section" id="id6">
|
209
|
+
<h2>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h2>
|
210
|
+
<ul class="simple">
|
211
|
+
<li>SHIDARA Yoji</li>
|
212
|
+
<li>@soundkitchen</li>
|
213
|
+
</ul>
|
214
|
+
</div>
|
215
|
+
</div>
|
216
|
+
<div class="section" id="release-1-2-6-2011-09-29">
|
217
|
+
<span id="release-1-2-6"></span><h1>Release 1.2.6 - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="Permalink to this headline">¶</a></h1>
|
218
|
+
<div class="section" id="id7">
|
219
|
+
<h2>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h2>
|
220
|
+
<ul class="simple">
|
221
|
+
<li>Improved error message on type cast.</li>
|
222
|
+
<li>Added geo point value validation on type cast.</li>
|
223
|
+
<li>Supported <a class="reference internal" href="../tutorial/query_expansion.html"><em>クエリ拡張</em></a>.</li>
|
224
|
+
<li>Added <cite>--query_expansion</cite> option to
|
225
|
+
<a class="reference internal" href="../commands/select.html"><em>select</em></a> for query expansion.</li>
|
226
|
+
<li>Added geometry conversion macro between degree and msec.</li>
|
227
|
+
<li>Supported type cast in <a class="reference internal" href="../functions/geo_distance.html"><em>geo_distance</em></a> ().</li>
|
228
|
+
<li>Don't split tokens with full width space in command line. #986</li>
|
229
|
+
<li>Supported conversion between TokyoGeoPoint and WGS84GeoPoint.</li>
|
230
|
+
<li>Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle().</li>
|
231
|
+
<li>Supported CentOS 6.</li>
|
232
|
+
<li>Supported the current Debian GNU/Linux sid.
|
233
|
+
Patch by SATOH Fumiyasu. GitHub#3</li>
|
234
|
+
</ul>
|
235
|
+
</div>
|
236
|
+
<div class="section" id="id8">
|
237
|
+
<h2>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h2>
|
238
|
+
<ul class="simple">
|
239
|
+
<li>Fixed a bug that geo point is loaded as broken value.</li>
|
240
|
+
</ul>
|
241
|
+
</div>
|
242
|
+
<div class="section" id="id9">
|
243
|
+
<h2>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h2>
|
244
|
+
<ul class="simple">
|
245
|
+
<li>SATOH Fumiyasu</li>
|
246
|
+
</ul>
|
247
|
+
</div>
|
248
|
+
</div>
|
249
|
+
<div class="section" id="release-1-2-5-2011-08-29">
|
250
|
+
<span id="release-1-2-5"></span><h1>Release 1.2.5 - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="Permalink to this headline">¶</a></h1>
|
251
|
+
<div class="section" id="id10">
|
252
|
+
<h2>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h2>
|
253
|
+
<ul class="simple">
|
254
|
+
<li>Added experimental Windows installer support.</li>
|
255
|
+
<li>Accepted "#" and "-" as a valid name characters. #1043</li>
|
256
|
+
<li>Accepted all valid characters except "_" as the first character. #1043</li>
|
257
|
+
<li>Supported <cite>--each</cite> for <cite>[...]</cite> form <a class="reference internal" href="../commands/load.html"><em>load</em></a>. #1044</li>
|
258
|
+
<li>Added documentation for <a class="reference internal" href="../suggest.html"><em>Suggest</em></a>.</li>
|
259
|
+
<li>Supported threshold as <cite>--frequency_threshold</cite> and
|
260
|
+
<cite>--conditional_probability_threshold</cite> options in all
|
261
|
+
<a class="reference internal" href="../commands/suggest.html"><em>suggest</em></a> types. #1042</li>
|
262
|
+
<li>[groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048</li>
|
263
|
+
<li>Supported string input for reference vector column value. #1051</li>
|
264
|
+
<li>[groonga-suggest-httpd] Added <cite>--n-lines-per-log-file</cite>
|
265
|
+
option that changes log line limitation for a file.</li>
|
266
|
+
<li>[groonga-suggest-httpd] Added <cite>p</cite> parameter for
|
267
|
+
<cite>--conditional_probability_threshold</cite>.</li>
|
268
|
+
<li>Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053</li>
|
269
|
+
<li>Exported grn_ctx_close(). #1035</li>
|
270
|
+
</ul>
|
271
|
+
</div>
|
272
|
+
<div class="section" id="id11">
|
273
|
+
<h2>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h2>
|
274
|
+
<ul class="simple">
|
275
|
+
<li>Fixed a crash bug that invalid value is passed as match expression
|
276
|
+
argument in <a class="reference internal" href="../commands/select.html"><em>select</em></a>. #1047</li>
|
277
|
+
<li>Fixed a bug that hash table cursor returns garbage records.</li>
|
278
|
+
</ul>
|
279
|
+
</div>
|
280
|
+
</div>
|
281
|
+
<div class="section" id="release-1-2-4-2011-07-29">
|
282
|
+
<span id="release-1-2-4"></span><h1>Release 1.2.4 - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="Permalink to this headline">¶</a></h1>
|
283
|
+
<div class="section" id="id12">
|
284
|
+
<h2>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
|
285
|
+
<ul class="simple">
|
286
|
+
<li>Re-supported <tt class="docutils literal"><span class="pre">*BSD</span></tt>. (Reported by OBATA Akio)</li>
|
287
|
+
<li>Improved sed related portability. (Suggested by OBATA Akio)</li>
|
288
|
+
<li>Re-supported Visual C++ 2008.</li>
|
289
|
+
<li>Supported <a class="reference internal" href="../commands/check.html"><em>check</em></a> for hash table.</li>
|
290
|
+
<li>Ignored invalid _score in --sortby of <a class="reference internal" href="../commands/select.html"><em>select</em></a>
|
291
|
+
for convenience. #1030</li>
|
292
|
+
<li>Added document about <tt class="xref doc docutils literal"><span class="pre">log</span></tt>.</li>
|
293
|
+
<li>Supported ~/.editrc.</li>
|
294
|
+
<li>Supported ~/.groonga-history.</li>
|
295
|
+
</ul>
|
296
|
+
</div>
|
297
|
+
<div class="section" id="id13">
|
298
|
+
<h2>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h2>
|
299
|
+
<ul class="simple">
|
300
|
+
<li>Fixed broken libedit support. (Reported by Daiki Ueno)</li>
|
301
|
+
<li>Fixed source URL in <tt class="docutils literal"><span class="pre">*.spec</span></tt> (Reported by Daiki Ueno)</li>
|
302
|
+
<li>Fixed patricia trie cursor returns wrong records.</li>
|
303
|
+
<li>Added missing database lock clear for grn_obj_clear_lock()
|
304
|
+
for database.</li>
|
305
|
+
<li>Fixed wrong record's column values deletion possible on
|
306
|
+
record deletion.</li>
|
307
|
+
</ul>
|
308
|
+
</div>
|
309
|
+
<div class="section" id="id14">
|
310
|
+
<h2>Thanks<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h2>
|
311
|
+
<ul class="simple">
|
312
|
+
<li>OBATA Akio</li>
|
313
|
+
<li>Daiki Ueno</li>
|
314
|
+
</ul>
|
315
|
+
</div>
|
316
|
+
</div>
|
317
|
+
<div class="section" id="release-1-2-3-2011-06-29">
|
318
|
+
<span id="release-1-2-3"></span><h1>Release 1.2.3 - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="Permalink to this headline">¶</a></h1>
|
319
|
+
<div class="section" id="id15">
|
320
|
+
<h2>Improvements<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h2>
|
321
|
+
<ul class="simple">
|
322
|
+
<li>Added invalid table name check. #912</li>
|
323
|
+
<li>Added groonga-query-log-analyzer that analyze query log.</li>
|
324
|
+
<li>groonga command shows failed command on error.</li>
|
325
|
+
<li>groonga command shows file name and line no on error.</li>
|
326
|
+
<li>Improved error message of <a class="reference internal" href="../commands/column_create.html"><em>column_create</em></a>. #952</li>
|
327
|
+
<li>Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)</li>
|
328
|
+
</ul>
|
329
|
+
</div>
|
330
|
+
<div class="section" id="id16">
|
331
|
+
<h2>Fixes<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h2>
|
332
|
+
<ul class="simple">
|
333
|
+
<li>fix get command crash. (Reported by OBATA Akio)</li>
|
334
|
+
<li>fix elapsed time overflow in query log. #944</li>
|
335
|
+
</ul>
|
336
|
+
</div>
|
337
|
+
<div class="section" id="id17">
|
338
|
+
<h2>Thanks<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h2>
|
339
|
+
<ul class="simple">
|
340
|
+
<li>OBATA Akio</li>
|
341
|
+
</ul>
|
342
|
+
</div>
|
343
|
+
</div>
|
344
|
+
<div class="section" id="release-1-2-2-2011-05-29">
|
345
|
+
<span id="release-1-2-2"></span><h1>Release 1.2.2 - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="Permalink to this headline">¶</a></h1>
|
346
|
+
<div class="section" id="id18">
|
347
|
+
<h2>Improvements<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h2>
|
348
|
+
<ul class="simple">
|
349
|
+
<li>Added packages for Ubuntu 11.04 Natty Narwhal.</li>
|
350
|
+
<li>Removed packages for Ubuntu 10.10 Maverick Meerkat.</li>
|
351
|
+
<li>RPM: Split server related packages to groonga-server package.</li>
|
352
|
+
<li>suggest: Added target object name into error messages.</li>
|
353
|
+
<li>document: Started English support. (not completed yet.)</li>
|
354
|
+
<li>groonga-suggest-httpd: Added --disable-max-fd-check option.</li>
|
355
|
+
<li>groonga: Renamed <a class="reference internal" href="../executables/groonga.html#cmdoption-a"><em class="xref std std-option">--address</em></a> option to <a class="reference internal" href="../executables/groonga.html#cmdoption--bind-address"><em class="xref std std-option">--bind-address</em></a>.</li>
|
356
|
+
<li>groonga-suggest-httpd: Renamed --address option to --bind-address.</li>
|
357
|
+
<li>Changed admin HTML install directory to
|
358
|
+
$PREFIX/share/groonga/html/admin/ from
|
359
|
+
$PREFIX/share/groonga/admin_html/.</li>
|
360
|
+
<li>groonga-suggest-httpd: Used "application/json" for JSON response
|
361
|
+
instead of "text/javascript".</li>
|
362
|
+
<li>Windows: Used DLL relative path instead of executable file
|
363
|
+
relative path.</li>
|
364
|
+
<li>MeCab: Added error message from MeCab on MeCab initialize error.</li>
|
365
|
+
<li>suggest: Added prefix_search parameter to suggest
|
366
|
+
command. #909</li>
|
367
|
+
<li>plugin: Added grn_plugin_get_system_plugins_dir() and
|
368
|
+
grn_plugin_get_suffix() API.</li>
|
369
|
+
<li>Added grn_obj_is_builtin() API.</li>
|
370
|
+
<li><a class="reference internal" href="../commands/load.html"><em>load</em></a>: Added table name check. #934</li>
|
371
|
+
<li>Showed invalid name context in error message. #935</li>
|
372
|
+
</ul>
|
373
|
+
</div>
|
374
|
+
<div class="section" id="id19">
|
375
|
+
<h2>Fixes<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h2>
|
376
|
+
<ul class="simple">
|
377
|
+
<li>Fixed a data breaking bug on multi process update. #890</li>
|
378
|
+
</ul>
|
379
|
+
</div>
|
380
|
+
</div>
|
381
|
+
<div class="section" id="id20">
|
382
|
+
<h1>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h1>
|
383
|
+
<div class="section" id="id21">
|
384
|
+
<h2>改良<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h2>
|
385
|
+
<ul class="simple">
|
386
|
+
<li>suggestコマンドにthresholdパラメーターを追加。#895</li>
|
387
|
+
<li>suggestのHTTPサーバにlimitパラメーターを追加。#899</li>
|
388
|
+
<li>grntest: SIGINTでの中断に対応。</li>
|
389
|
+
</ul>
|
390
|
+
</div>
|
391
|
+
<div class="section" id="id22">
|
392
|
+
<h2>修正<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
|
393
|
+
<ul class="simple">
|
394
|
+
<li>同時に複数のデータベースを開いているとき、1つでもデータベー
|
395
|
+
スを閉じると関連するプラグインも閉じられてしまう問題を修正。 #894</li>
|
396
|
+
<li>configureの--helpで出力される--with-deafult-encodingの値が
|
397
|
+
間違っていた問題を修正。(ICHII Takashiさんが報告)</li>
|
398
|
+
<li>チュートリアル中のtypoを修正。(moozさんが修正)</li>
|
399
|
+
</ul>
|
400
|
+
</div>
|
401
|
+
<div class="section" id="id23">
|
402
|
+
<h2>感謝<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h2>
|
403
|
+
<ul class="simple">
|
404
|
+
<li>ICHII Takashiさん</li>
|
405
|
+
<li>moozさん</li>
|
406
|
+
</ul>
|
407
|
+
</div>
|
408
|
+
</div>
|
409
|
+
<div class="section" id="id24">
|
410
|
+
<h1>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h1>
|
411
|
+
<div class="section" id="id25">
|
412
|
+
<h2>改良<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h2>
|
413
|
+
<ul class="simple">
|
414
|
+
<li>MacPortsでのインストールドキュメントを追加。</li>
|
415
|
+
<li>Homebrewでのインストールドキュメントを追加。</li>
|
416
|
+
<li>WindowsではMinGWでもpthreadを使わないようにした。</li>
|
417
|
+
<li>オーバーフローチェックを強化。</li>
|
418
|
+
<li>位置情報の入力値チェックを強化。</li>
|
419
|
+
<li>インデックスを用いたジオサーチの例をチュートリアルに追加。 #438</li>
|
420
|
+
<li>Debian GNU/Linux wheezyのパッケージを追加。</li>
|
421
|
+
<li>Debian GNU/Linux lennyのパッケージを削除。</li>
|
422
|
+
<li>Debianパッケージをcdbsベースからdebhelperベースへ移行。
|
423
|
+
パッケージ名の変更あり。 #887</li>
|
424
|
+
<li>MeCabトークナイザーの読み込みエラーを無視するようにした。た
|
425
|
+
だし、ログには残る。 #893</li>
|
426
|
+
</ul>
|
427
|
+
</div>
|
428
|
+
<div class="section" id="id26">
|
429
|
+
<h2>修正<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h2>
|
430
|
+
<ul class="simple">
|
431
|
+
<li>autoconf 2.59環境において、ファイルシステムのルート直下に
|
432
|
+
groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
433
|
+
<li>JSONPが動作しなくなっていた問題を修正。</li>
|
434
|
+
<li>MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。
|
435
|
+
(@tomotaka_itoさんが報告)</li>
|
436
|
+
<li>[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。</li>
|
437
|
+
<li><a class="reference internal" href="../functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> の <tt class="docutils literal"><span class="pre">top_left</span></tt> と
|
438
|
+
<tt class="docutils literal"><span class="pre">bottom_right</span></tt> に同じ位置を指定するとクラッシュする問題を修正。</li>
|
439
|
+
<li>メモリリークを修正。</li>
|
440
|
+
<li>小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880</li>
|
441
|
+
<li><a class="reference internal" href="../commands/column_list.html"><em>column_list</em></a> のドキュメントを修正。 #758</li>
|
442
|
+
<li><a class="reference internal" href="../commands/table_list.html"><em>table_list</em></a> のドキュメントを修正。</li>
|
443
|
+
<li><a class="reference internal" href="../commands/load.html"><em>load</em></a> で_valueを指定するとメモリリークする問題を修正。 #878</li>
|
444
|
+
<li><a class="reference internal" href="../commands/load.html"><em>load</em></a> でクラッシュする問題を修正。 #661</li>
|
445
|
+
</ul>
|
446
|
+
</div>
|
447
|
+
<div class="section" id="id27">
|
448
|
+
<h2>実験的<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h2>
|
449
|
+
<ul class="simple">
|
450
|
+
<li>grn_table_truncate()を追加。(実験的。問題あり)</li>
|
451
|
+
<li>truncateコマンドを追加。(実験的。問題あり) #888</li>
|
452
|
+
</ul>
|
453
|
+
</div>
|
454
|
+
<div class="section" id="id28">
|
455
|
+
<h2>感謝<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h2>
|
456
|
+
<ul class="simple">
|
457
|
+
<li>@tomotaka_itoさん</li>
|
458
|
+
</ul>
|
459
|
+
</div>
|
460
|
+
</div>
|
461
|
+
|
462
|
+
|
463
|
+
</div>
|
464
|
+
</div>
|
465
|
+
</div>
|
466
|
+
<div class="sphinxsidebar">
|
467
|
+
<div class="sphinxsidebarwrapper">
|
468
|
+
<h3><a href="../index.html">Table Of Contents</a></h3>
|
469
|
+
<ul>
|
470
|
+
<li><a class="reference internal" href="#">Release 1.2.9 - 2011/12/29</a><ul>
|
471
|
+
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
472
|
+
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
473
|
+
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
474
|
+
</ul>
|
475
|
+
</li>
|
476
|
+
<li><a class="reference internal" href="#release-1-2-8-2011-11-29">Release 1.2.8 - 2011/11/29</a><ul>
|
477
|
+
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
478
|
+
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
479
|
+
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
480
|
+
</ul>
|
481
|
+
</li>
|
482
|
+
<li><a class="reference internal" href="#release-1-2-7-2011-10-29">Release 1.2.7 - 2011/10/29</a><ul>
|
483
|
+
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
484
|
+
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
485
|
+
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
486
|
+
</ul>
|
487
|
+
</li>
|
488
|
+
<li><a class="reference internal" href="#release-1-2-6-2011-09-29">Release 1.2.6 - 2011/09/29</a><ul>
|
489
|
+
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
490
|
+
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
491
|
+
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
492
|
+
</ul>
|
493
|
+
</li>
|
494
|
+
<li><a class="reference internal" href="#release-1-2-5-2011-08-29">Release 1.2.5 - 2011/08/29</a><ul>
|
495
|
+
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
496
|
+
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
497
|
+
</ul>
|
498
|
+
</li>
|
499
|
+
<li><a class="reference internal" href="#release-1-2-4-2011-07-29">Release 1.2.4 - 2011/07/29</a><ul>
|
500
|
+
<li><a class="reference internal" href="#id12">Improvements</a></li>
|
501
|
+
<li><a class="reference internal" href="#id13">Fixes</a></li>
|
502
|
+
<li><a class="reference internal" href="#id14">Thanks</a></li>
|
503
|
+
</ul>
|
504
|
+
</li>
|
505
|
+
<li><a class="reference internal" href="#release-1-2-3-2011-06-29">Release 1.2.3 - 2011/06/29</a><ul>
|
506
|
+
<li><a class="reference internal" href="#id15">Improvements</a></li>
|
507
|
+
<li><a class="reference internal" href="#id16">Fixes</a></li>
|
508
|
+
<li><a class="reference internal" href="#id17">Thanks</a></li>
|
509
|
+
</ul>
|
510
|
+
</li>
|
511
|
+
<li><a class="reference internal" href="#release-1-2-2-2011-05-29">Release 1.2.2 - 2011/05/29</a><ul>
|
512
|
+
<li><a class="reference internal" href="#id18">Improvements</a></li>
|
513
|
+
<li><a class="reference internal" href="#id19">Fixes</a></li>
|
514
|
+
</ul>
|
515
|
+
</li>
|
516
|
+
<li><a class="reference internal" href="#id20">1.2.1リリース - 2011/04/29</a><ul>
|
517
|
+
<li><a class="reference internal" href="#id21">改良</a></li>
|
518
|
+
<li><a class="reference internal" href="#id22">修正</a></li>
|
519
|
+
<li><a class="reference internal" href="#id23">感謝</a></li>
|
520
|
+
</ul>
|
521
|
+
</li>
|
522
|
+
<li><a class="reference internal" href="#id24">1.2.0リリース - 2011/03/29</a><ul>
|
523
|
+
<li><a class="reference internal" href="#id25">改良</a></li>
|
524
|
+
<li><a class="reference internal" href="#id26">修正</a></li>
|
525
|
+
<li><a class="reference internal" href="#id27">実験的</a></li>
|
526
|
+
<li><a class="reference internal" href="#id28">感謝</a></li>
|
527
|
+
</ul>
|
528
|
+
</li>
|
529
|
+
</ul>
|
530
|
+
|
531
|
+
<h3>This Page</h3>
|
532
|
+
<ul class="this-page-menu">
|
533
|
+
<li><a href="../_sources/news/1.2.x.txt"
|
534
|
+
rel="nofollow">Show Source</a></li>
|
535
|
+
</ul>
|
536
|
+
<div id="searchbox" style="display: none">
|
537
|
+
<h3>Quick search</h3>
|
538
|
+
<form class="search" action="../search.html" method="get">
|
539
|
+
<input type="text" name="q" />
|
540
|
+
<input type="submit" value="Go" />
|
541
|
+
<input type="hidden" name="check_keywords" value="yes" />
|
542
|
+
<input type="hidden" name="area" value="default" />
|
543
|
+
</form>
|
544
|
+
<p class="searchtip" style="font-size: 90%">
|
545
|
+
Enter search terms or a module, class or function name.
|
546
|
+
</p>
|
547
|
+
</div>
|
548
|
+
<script type="text/javascript">$('#searchbox').show(0);</script>
|
549
|
+
</div>
|
550
|
+
</div>
|
551
|
+
<div class="clearer"></div>
|
552
|
+
</div>
|
553
|
+
<div class="related">
|
554
|
+
<h3>Navigation</h3>
|
555
|
+
<ul>
|
556
|
+
<li class="right" style="margin-right: 10px">
|
557
|
+
<a href="../genindex.html" title="General Index"
|
558
|
+
>index</a></li>
|
559
|
+
<li><a href="../index.html">groonga v2.0.0 documentation</a> »</li>
|
560
|
+
</ul>
|
561
|
+
</div>
|
562
|
+
<div class="footer">
|
563
|
+
© Copyright 2009-2012, Brazil, Inc.
|
564
|
+
</div>
|
565
|
+
</body>
|
566
|
+
</html>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<head>
|
10
10
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
11
|
|
12
|
-
<title>News in Senna period — groonga
|
12
|
+
<title>News in Senna period — groonga v2.0.0 documentation</title>
|
13
13
|
|
14
14
|
<link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
|
15
15
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<script type="text/javascript">
|
18
18
|
var DOCUMENTATION_OPTIONS = {
|
19
19
|
URL_ROOT: '../',
|
20
|
-
VERSION: '
|
20
|
+
VERSION: '2.0.0',
|
21
21
|
COLLAPSE_INDEX: false,
|
22
22
|
FILE_SUFFIX: '.html',
|
23
23
|
HAS_SOURCE: true
|
@@ -27,7 +27,7 @@
|
|
27
27
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
28
28
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
29
29
|
<link rel="shortcut icon" href="../_static/favicon.ico"/>
|
30
|
-
<link rel="top" title="groonga
|
30
|
+
<link rel="top" title="groonga v2.0.0 documentation" href="../index.html" />
|
31
31
|
</head>
|
32
32
|
<body>
|
33
33
|
<div class="header">
|
@@ -53,7 +53,7 @@
|
|
53
53
|
<li class="right" style="margin-right: 10px">
|
54
54
|
<a href="../genindex.html" title="General Index"
|
55
55
|
accesskey="I">index</a></li>
|
56
|
-
<li><a href="../index.html">groonga
|
56
|
+
<li><a href="../index.html">groonga v2.0.0 documentation</a> »</li>
|
57
57
|
</ul>
|
58
58
|
</div>
|
59
59
|
|
@@ -271,7 +271,7 @@ no longer depends on mecab mte patch.</li>
|
|
271
271
|
<li class="right" style="margin-right: 10px">
|
272
272
|
<a href="../genindex.html" title="General Index"
|
273
273
|
>index</a></li>
|
274
|
-
<li><a href="../index.html">groonga
|
274
|
+
<li><a href="../index.html">groonga v2.0.0 documentation</a> »</li>
|
275
275
|
</ul>
|
276
276
|
</div>
|
277
277
|
<div class="footer">
|