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
@@ -9,7 +9,7 @@
|
|
9
9
|
<head>
|
10
10
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
11
11
|
|
12
|
-
<title>News — groonga
|
12
|
+
<title>News — 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
|
|
@@ -64,11 +64,61 @@
|
|
64
64
|
|
65
65
|
<div class="section" id="news">
|
66
66
|
<h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
|
67
|
-
<div class="section" id="release-
|
68
|
-
<span id="release-
|
67
|
+
<div class="section" id="release-2-0-0-2012-02-29">
|
68
|
+
<span id="release-2-0-0"></span><h2>Release 2.0.0 - 2012/02/29<a class="headerlink" href="#release-2-0-0-2012-02-29" title="Permalink to this headline">¶</a></h2>
|
69
69
|
<div class="section" id="improvements">
|
70
70
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
71
71
|
<ul class="simple">
|
72
|
+
<li>[dat] Added 0 length key check.</li>
|
73
|
+
<li>[windows] Added missing GCC related DLLs. [groonga-dev,00686]
|
74
|
+
[Reported by Suzuki]</li>
|
75
|
+
<li>[php] Supported PHP 5.4. [Patch by Daiki Ueno]</li>
|
76
|
+
<li>Updated FSF address. [Suggested by Daiki Ueno]</li>
|
77
|
+
<li>[fedora] Supported systemd. [Patch by Daiki Ueno]</li>
|
78
|
+
<li>[rpm][debian] Changed the default protocol to HTTP from gqtp.</li>
|
79
|
+
<li>[rpm][centos] Supported status command.</li>
|
80
|
+
<li>Removed needless <tt class="docutils literal"><span class="pre">:</span></tt> from log message.</li>
|
81
|
+
<li>Removed deprecated grn_query. [#1247]</li>
|
82
|
+
<li>Reduced needless grn_ctx_at() calls on creating table.</li>
|
83
|
+
<li>[pat] Supported cache.</li>
|
84
|
+
<li>[tokenizer] Improved tokenizer API.</li>
|
85
|
+
<li>Accepted <tt class="docutils literal"><span class="pre">@</span></tt> as a valid name character.</li>
|
86
|
+
<li>[tokenizer] Added a tokenizer based on
|
87
|
+
<a class="reference external" href="http://www.phontron.com/kytea/">KyTea</a>.</li>
|
88
|
+
<li>Supported <a class="reference internal" href="indexing.html"><em>offline indexing construction</em></a>.</li>
|
89
|
+
<li>[tokenizer] Supported MeCab 0.993. [groonga-dev,00703]
|
90
|
+
[Reported by Masaharu YOSHIOKA]</li>
|
91
|
+
<li>[windows] Supported MessagePack.</li>
|
92
|
+
</ul>
|
93
|
+
</div>
|
94
|
+
<div class="section" id="fixes">
|
95
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
96
|
+
<ul class="simple">
|
97
|
+
<li>[pat] Fixed a bug that the last node can't be found. [#1258]</li>
|
98
|
+
<li>[doc] Fixed links in Japanese page. [Reported by @naoina]</li>
|
99
|
+
<li>[doc] Fixed wrong the default value. [Reported by @naoina]</li>
|
100
|
+
<li>Fixed a typo. [Reported by Kazuhiko]</li>
|
101
|
+
<li>[http] Fixed a bug that <tt class="docutils literal"><span class="pre">load</span></tt> command error isn't cleared.
|
102
|
+
[Reported by @wareohji]</li>
|
103
|
+
</ul>
|
104
|
+
</div>
|
105
|
+
<div class="section" id="thanks">
|
106
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
107
|
+
<ul class="simple">
|
108
|
+
<li>Suzuki</li>
|
109
|
+
<li>Daiki Ueno</li>
|
110
|
+
<li>@naoina</li>
|
111
|
+
<li>Kazuhiko</li>
|
112
|
+
<li>Masaharu YOSHIOKA</li>
|
113
|
+
<li>@wareohji</li>
|
114
|
+
</ul>
|
115
|
+
</div>
|
116
|
+
</div>
|
117
|
+
<div class="section" id="release-1-3-0-2012-01-29">
|
118
|
+
<span id="release-1-3-0"></span><h2>Release 1.3.0 - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="Permalink to this headline">¶</a></h2>
|
119
|
+
<div class="section" id="id1">
|
120
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
121
|
+
<ul class="simple">
|
72
122
|
<li>Supported dynamic DB key table change by
|
73
123
|
GRN_DB_KEY=pat or GRN_DB_KEY=dat environment variable value.</li>
|
74
124
|
<li>Added <tt class="docutils literal"><span class="pre">--with-default-db-key</span></tt> configure option that
|
@@ -102,412 +152,16 @@ USE_OFFLINE_INDEXER=yes environment variable.</li>
|
|
102
152
|
<li>Added <tt class="docutils literal"><span class="pre">column_rename</span></tt>. [#1234]</li>
|
103
153
|
</ul>
|
104
154
|
</div>
|
105
|
-
<div class="section" id="thanks">
|
106
|
-
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
107
|
-
<ul class="simple">
|
108
|
-
<li>montywi</li>
|
109
|
-
<li>Masaharu IWAI</li>
|
110
|
-
</ul>
|
111
|
-
</div>
|
112
|
-
</div>
|
113
|
-
<div class="section" id="release-1-2-9-2011-12-29">
|
114
|
-
<span id="release-1-2-9"></span><h2>Release 1.2.9 - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="Permalink to this headline">¶</a></h2>
|
115
|
-
<div class="section" id="id1">
|
116
|
-
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
117
|
-
<ul class="simple">
|
118
|
-
<li>Supported Fedora 16.</li>
|
119
|
-
<li>Dropped Fedora 15 support.</li>
|
120
|
-
<li>[groonga] Improved the default server ID address to work
|
121
|
-
on unresolved host name environment. [Reported by @uzulla]</li>
|
122
|
-
<li>Supported MAP_HUGETLB.</li>
|
123
|
-
<li>[admin] Supported throughput chart.</li>
|
124
|
-
<li>Stopped adding nul character in <tt class="docutils literal"><span class="pre">grn_itoh()</span></tt>. [#1194]
|
125
|
-
[Reported by SHIDARA Yoji]</li>
|
126
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_get_values()</span></tt>.</li>
|
127
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></tt>.</li>
|
128
|
-
<li>Supported string vector column for query expansion. [#1216]</li>
|
129
|
-
<li>Added <tt class="docutils literal"><span class="pre">--filter</span></tt> option to <a class="reference internal" href="commands/delete.html"><em>delete</em></a> to delete
|
130
|
-
many record at once. [#1225]</li>
|
131
|
-
<li>Supported approximate type customization for
|
132
|
-
<a class="reference internal" href="functions/geo_in_circle.html"><em>geo_in_circle</em></a> and <a class="reference internal" href="functions/geo_distance.html"><em>geo_distance</em></a>. [#1226]</li>
|
133
|
-
<li>Made <tt class="docutils literal"><span class="pre">geo_distance2()</span></tt> and <tt class="docutils literal"><span class="pre">geo_distance3()</span></tt> are deprecated.</li>
|
134
|
-
<li>Changed to use <tt class="docutils literal"><span class="pre">null</span></tt> instead of <tt class="docutils literal"><span class="pre">""</span></tt> for empty geo
|
135
|
-
point value in JSON output.</li>
|
136
|
-
<li>Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]</li>
|
137
|
-
<li>Added missing newlines after drilldown result tags in XML output.</li>
|
138
|
-
<li>Supported truncate for grn_dat.</li>
|
139
|
-
<li>Supported longest common prefix search by grn_dat.</li>
|
140
|
-
</ul>
|
141
|
-
</div>
|
142
|
-
<div class="section" id="fixes">
|
143
|
-
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
144
|
-
<ul class="simple">
|
145
|
-
<li>[windows] Fixed inverted map type.</li>
|
146
|
-
<li>Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]</li>
|
147
|
-
<li>Fixed a problem that <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></tt> reports wrongly
|
148
|
-
about MeCab. [#1209] [Patch by SHIDARA Yoji]</li>
|
149
|
-
<li>Added missing lock into <tt class="docutils literal"><span class="pre">grn_obj_remove()</span></tt>.</li>
|
150
|
-
<li>Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]</li>
|
151
|
-
<li>Fixed a problem that deleting SIS (Semi Infinite String)
|
152
|
-
may keep a garbage.</li>
|
153
|
-
</ul>
|
154
|
-
</div>
|
155
155
|
<div class="section" id="id2">
|
156
156
|
<h3>Thanks<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
157
157
|
<ul class="simple">
|
158
|
-
<li
|
159
|
-
<li>
|
160
|
-
<li>SHIDARA Yoji</li>
|
161
|
-
</ul>
|
162
|
-
</div>
|
163
|
-
</div>
|
164
|
-
<div class="section" id="release-1-2-8-2011-11-29">
|
165
|
-
<span id="release-1-2-8"></span><h2>Release 1.2.8 - 2011/11/29<a class="headerlink" href="#release-1-2-8-2011-11-29" title="Permalink to this headline">¶</a></h2>
|
166
|
-
<p>Object, table and column renamings are supported! These
|
167
|
-
features require database re-creation. You can re-create your
|
168
|
-
database by the following command:</p>
|
169
|
-
<div class="highlight-none"><div class="highlight"><pre>% groonga YOUR_DB dump > db.dump
|
170
|
-
% groonga -n YOUR_NEW_DB < db.dump
|
171
|
-
</pre></div>
|
172
|
-
</div>
|
173
|
-
<div class="admonition note">
|
174
|
-
<p class="first admonition-title">Note</p>
|
175
|
-
<p class="last">Groonga 1.2.8 can open databases created by groonga 1.2.7
|
176
|
-
or earlier. But groonga 1.2.7 or earlier can't open
|
177
|
-
databases created by groonga 1.2.8 or later.</p>
|
178
|
-
</div>
|
179
|
-
<div class="section" id="id3">
|
180
|
-
<h3>Improvements<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
181
|
-
<ul class="simple">
|
182
|
-
<li>[grntest] Removed the upper limit to the number of bytes in one line.</li>
|
183
|
-
<li>[grntest] Added <tt class="docutils literal"><span class="pre">--pid-path</span></tt> option.</li>
|
184
|
-
<li>[deb] Enabled experimental zlib and lzo support.</li>
|
185
|
-
<li>[rpm] Enabled experimental zlib and lzo support.</li>
|
186
|
-
<li>Supports truncation. [#892]</li>
|
187
|
-
<li>Enabled grn_dat that is a read lock free double array implementation.</li>
|
188
|
-
<li>[pkg-config] Added groonga_version variable to groonga.pc.</li>
|
189
|
-
<li>Re-supported <tt class="docutils literal"><span class="pre">--disable-static</span></tt>. [groonga-dev,00612]
|
190
|
-
[Suggested by Kenichi Aramaki]</li>
|
191
|
-
<li>[munin] Stopped to install Munin plugins by default.</li>
|
192
|
-
<li>Stopped to install RedHat platform related files by default.</li>
|
193
|
-
<li>Supports object renaming. This requires DB re-creation. [#1167]</li>
|
194
|
-
<li>[munin] Added a Munin plugin that measures throughput. [#1171]</li>
|
195
|
-
<li>[geo] Improved geo_in_rectangle performance. The new
|
196
|
-
implementation will be 2x faster than the old
|
197
|
-
implementation in many cases. [#1173]</li>
|
198
|
-
<li>[macports] Moved groonga's MacPorts to the official
|
199
|
-
repository. [Imported by Hiroshi Umemoto]</li>
|
200
|
-
<li>[geo] Changed the geo literal degree-to-msec conversion algorithm
|
201
|
-
to round-off from truncation.</li>
|
202
|
-
<li>Supports a table defrag. It defrags variable size value columns in
|
203
|
-
the table. [#1175]</li>
|
204
|
-
<li>Removed associated path on remove. [#1180]</li>
|
205
|
-
<li>[deb] Supports i386.</li>
|
206
|
-
<li>[rpm] Supports i386.</li>
|
207
|
-
<li>[windows] Supports x86.</li>
|
208
|
-
</ul>
|
209
|
-
</div>
|
210
|
-
<div class="section" id="id4">
|
211
|
-
<h3>Fixes<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
212
|
-
<ul class="simple">
|
213
|
-
<li>Fixed a bug that groonga crashes when accessing a zlib/lzo compressed
|
214
|
-
column. Note that a compressed column access causes a memory leak. To
|
215
|
-
resolve this, we need to improve API. We will do it in the future.
|
216
|
-
[GtiHub#5][GtiHub#6] [Reported by Takayuki Yamaguchi]</li>
|
217
|
-
<li>Fixed a bug that unrelated column values are cleared in deletion.</li>
|
218
|
-
<li>Fixed a bug that a wrong index is used in sorting. [#766]
|
219
|
-
[Reported by Horikoshi Yuki]</li>
|
220
|
-
<li>[libedit] Fixed a bug that necessary initialization is
|
221
|
-
omitted. [GitHub#7] [Patch by SHIDARA Yoji]</li>
|
222
|
-
<li>[doc] Fixed a typo in documentation. [GitHub#8] [Patch by zunda]</li>
|
223
|
-
</ul>
|
224
|
-
</div>
|
225
|
-
<div class="section" id="id5">
|
226
|
-
<h3>Thanks<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
227
|
-
<ul class="simple">
|
228
|
-
<li>Takayuki Yamaguchi</li>
|
229
|
-
<li>SHIDARA Yoji</li>
|
230
|
-
<li>Horikoshi Yuki</li>
|
231
|
-
<li>zunda</li>
|
232
|
-
<li>Hiroshi Umemoto</li>
|
233
|
-
</ul>
|
234
|
-
</div>
|
235
|
-
</div>
|
236
|
-
<div class="section" id="release-1-2-7-2011-10-29">
|
237
|
-
<span id="release-1-2-7"></span><h2>Release 1.2.7 - 2011/10/29<a class="headerlink" href="#release-1-2-7-2011-10-29" title="Permalink to this headline">¶</a></h2>
|
238
|
-
<div class="section" id="id6">
|
239
|
-
<h3>Improvements<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
240
|
-
<ul class="simple">
|
241
|
-
<li>[libedit] Added error check for wide character to
|
242
|
-
multibyte sequence conversion. [Reported by SHIDARA Yoji]</li>
|
243
|
-
<li>Added grn_geo_estimate_in_rectangle().</li>
|
244
|
-
<li>Added cursor API to geo search in rectangle.</li>
|
245
|
-
<li>Improved geo search in rectangle speed.</li>
|
246
|
-
<li>Added packages for Ubuntu 11.10 Oneiric Ocelot</li>
|
247
|
-
<li>[experimental] Supported Oracle Solaris 10 8/11. (just buildable with system gcc.)</li>
|
248
|
-
</ul>
|
249
|
-
</div>
|
250
|
-
<div class="section" id="id7">
|
251
|
-
<h3>Fixes<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
252
|
-
<ul class="simple">
|
253
|
-
<li>Fixed a typo in document. [Reported by @soundkitchen]</li>
|
254
|
-
</ul>
|
255
|
-
</div>
|
256
|
-
<div class="section" id="id8">
|
257
|
-
<h3>Thanks<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
258
|
-
<ul class="simple">
|
259
|
-
<li>SHIDARA Yoji</li>
|
260
|
-
<li>@soundkitchen</li>
|
261
|
-
</ul>
|
262
|
-
</div>
|
263
|
-
</div>
|
264
|
-
<div class="section" id="release-1-2-6-2011-09-29">
|
265
|
-
<span id="release-1-2-6"></span><h2>Release 1.2.6 - 2011/09/29<a class="headerlink" href="#release-1-2-6-2011-09-29" title="Permalink to this headline">¶</a></h2>
|
266
|
-
<div class="section" id="id9">
|
267
|
-
<h3>Improvements<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
268
|
-
<ul class="simple">
|
269
|
-
<li>Improved error message on type cast.</li>
|
270
|
-
<li>Added geo point value validation on type cast.</li>
|
271
|
-
<li>Supported <a class="reference internal" href="tutorial/query_expansion.html"><em>クエリ拡張</em></a>.</li>
|
272
|
-
<li>Added <cite>--query_expansion</cite> option to
|
273
|
-
<a class="reference internal" href="commands/select.html"><em>select</em></a> for query expansion.</li>
|
274
|
-
<li>Added geometry conversion macro between degree and msec.</li>
|
275
|
-
<li>Supported type cast in <a class="reference internal" href="functions/geo_distance.html"><em>geo_distance</em></a> ().</li>
|
276
|
-
<li>Don't split tokens with full width space in command line. #986</li>
|
277
|
-
<li>Supported conversion between TokyoGeoPoint and WGS84GeoPoint.</li>
|
278
|
-
<li>Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle().</li>
|
279
|
-
<li>Supported CentOS 6.</li>
|
280
|
-
<li>Supported the current Debian GNU/Linux sid.
|
281
|
-
Patch by SATOH Fumiyasu. GitHub#3</li>
|
282
|
-
</ul>
|
283
|
-
</div>
|
284
|
-
<div class="section" id="id10">
|
285
|
-
<h3>Fixes<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
286
|
-
<ul class="simple">
|
287
|
-
<li>Fixed a bug that geo point is loaded as broken value.</li>
|
288
|
-
</ul>
|
289
|
-
</div>
|
290
|
-
<div class="section" id="id11">
|
291
|
-
<h3>Thanks<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
292
|
-
<ul class="simple">
|
293
|
-
<li>SATOH Fumiyasu</li>
|
294
|
-
</ul>
|
295
|
-
</div>
|
296
|
-
</div>
|
297
|
-
<div class="section" id="release-1-2-5-2011-08-29">
|
298
|
-
<span id="release-1-2-5"></span><h2>Release 1.2.5 - 2011/08/29<a class="headerlink" href="#release-1-2-5-2011-08-29" title="Permalink to this headline">¶</a></h2>
|
299
|
-
<div class="section" id="id12">
|
300
|
-
<h3>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
301
|
-
<ul class="simple">
|
302
|
-
<li>Added experimental Windows installer support.</li>
|
303
|
-
<li>Accepted "#" and "-" as a valid name characters. #1043</li>
|
304
|
-
<li>Accepted all valid characters except "_" as the first character. #1043</li>
|
305
|
-
<li>Supported <cite>--each</cite> for <cite>[...]</cite> form <a class="reference internal" href="commands/load.html"><em>load</em></a>. #1044</li>
|
306
|
-
<li>Added documentation for <a class="reference internal" href="suggest.html"><em>Suggest</em></a>.</li>
|
307
|
-
<li>Supported threshold as <cite>--frequency_threshold</cite> and
|
308
|
-
<cite>--conditional_probability_threshold</cite> options in all
|
309
|
-
<a class="reference internal" href="commands/suggest.html"><em>suggest</em></a> types. #1042</li>
|
310
|
-
<li>[groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048</li>
|
311
|
-
<li>Supported string input for reference vector column value. #1051</li>
|
312
|
-
<li>[groonga-suggest-httpd] Added <cite>--n-lines-per-log-file</cite>
|
313
|
-
option that changes log line limitation for a file.</li>
|
314
|
-
<li>[groonga-suggest-httpd] Added <cite>p</cite> parameter for
|
315
|
-
<cite>--conditional_probability_threshold</cite>.</li>
|
316
|
-
<li>Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053</li>
|
317
|
-
<li>Exported grn_ctx_close(). #1035</li>
|
318
|
-
</ul>
|
319
|
-
</div>
|
320
|
-
<div class="section" id="id13">
|
321
|
-
<h3>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
322
|
-
<ul class="simple">
|
323
|
-
<li>Fixed a crash bug that invalid value is passed as match expression
|
324
|
-
argument in <a class="reference internal" href="commands/select.html"><em>select</em></a>. #1047</li>
|
325
|
-
<li>Fixed a bug that hash table cursor returns garbage records.</li>
|
326
|
-
</ul>
|
327
|
-
</div>
|
328
|
-
</div>
|
329
|
-
<div class="section" id="release-1-2-4-2011-07-29">
|
330
|
-
<span id="release-1-2-4"></span><h2>Release 1.2.4 - 2011/07/29<a class="headerlink" href="#release-1-2-4-2011-07-29" title="Permalink to this headline">¶</a></h2>
|
331
|
-
<div class="section" id="id14">
|
332
|
-
<h3>Improvements<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
333
|
-
<ul class="simple">
|
334
|
-
<li>Re-supported <tt class="docutils literal"><span class="pre">*BSD</span></tt>. (Reported by OBATA Akio)</li>
|
335
|
-
<li>Improved sed related portability. (Suggested by OBATA Akio)</li>
|
336
|
-
<li>Re-supported Visual C++ 2008.</li>
|
337
|
-
<li>Supported <a class="reference internal" href="commands/check.html"><em>check</em></a> for hash table.</li>
|
338
|
-
<li>Ignored invalid _score in --sortby of <a class="reference internal" href="commands/select.html"><em>select</em></a>
|
339
|
-
for convenience. #1030</li>
|
340
|
-
<li>Added document about <a class="reference internal" href="log.html"><em>Log</em></a>.</li>
|
341
|
-
<li>Supported ~/.editrc.</li>
|
342
|
-
<li>Supported ~/.groonga-history.</li>
|
343
|
-
</ul>
|
344
|
-
</div>
|
345
|
-
<div class="section" id="id15">
|
346
|
-
<h3>Fixes<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
347
|
-
<ul class="simple">
|
348
|
-
<li>Fixed broken libedit support. (Reported by Daiki Ueno)</li>
|
349
|
-
<li>Fixed source URL in <tt class="docutils literal"><span class="pre">*.spec</span></tt> (Reported by Daiki Ueno)</li>
|
350
|
-
<li>Fixed patricia trie cursor returns wrong records.</li>
|
351
|
-
<li>Added missing database lock clear for grn_obj_clear_lock()
|
352
|
-
for database.</li>
|
353
|
-
<li>Fixed wrong record's column values deletion possible on
|
354
|
-
record deletion.</li>
|
355
|
-
</ul>
|
356
|
-
</div>
|
357
|
-
<div class="section" id="id16">
|
358
|
-
<h3>Thanks<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
359
|
-
<ul class="simple">
|
360
|
-
<li>OBATA Akio</li>
|
361
|
-
<li>Daiki Ueno</li>
|
362
|
-
</ul>
|
363
|
-
</div>
|
364
|
-
</div>
|
365
|
-
<div class="section" id="release-1-2-3-2011-06-29">
|
366
|
-
<span id="release-1-2-3"></span><h2>Release 1.2.3 - 2011/06/29<a class="headerlink" href="#release-1-2-3-2011-06-29" title="Permalink to this headline">¶</a></h2>
|
367
|
-
<div class="section" id="id17">
|
368
|
-
<h3>Improvements<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
369
|
-
<ul class="simple">
|
370
|
-
<li>Added invalid table name check. #912</li>
|
371
|
-
<li>Added groonga-query-log-analyzer that analyze query log.</li>
|
372
|
-
<li>groonga command shows failed command on error.</li>
|
373
|
-
<li>groonga command shows file name and line no on error.</li>
|
374
|
-
<li>Improved error message of <a class="reference internal" href="commands/column_create.html"><em>column_create</em></a>. #952</li>
|
375
|
-
<li>Added GRN_OBJ_TABLE_DAT_KEY, double array trie, table. (experimental)</li>
|
376
|
-
</ul>
|
377
|
-
</div>
|
378
|
-
<div class="section" id="id18">
|
379
|
-
<h3>Fixes<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
380
|
-
<ul class="simple">
|
381
|
-
<li>fix get command crash. (Reported by OBATA Akio)</li>
|
382
|
-
<li>fix elapsed time overflow in query log. #944</li>
|
383
|
-
</ul>
|
384
|
-
</div>
|
385
|
-
<div class="section" id="id19">
|
386
|
-
<h3>Thanks<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
387
|
-
<ul class="simple">
|
388
|
-
<li>OBATA Akio</li>
|
389
|
-
</ul>
|
390
|
-
</div>
|
391
|
-
</div>
|
392
|
-
<div class="section" id="release-1-2-2-2011-05-29">
|
393
|
-
<span id="release-1-2-2"></span><h2>Release 1.2.2 - 2011/05/29<a class="headerlink" href="#release-1-2-2-2011-05-29" title="Permalink to this headline">¶</a></h2>
|
394
|
-
<div class="section" id="id20">
|
395
|
-
<h3>Improvements<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
396
|
-
<ul class="simple">
|
397
|
-
<li>Added packages for Ubuntu 11.04 Natty Narwhal.</li>
|
398
|
-
<li>Removed packages for Ubuntu 10.10 Maverick Meerkat.</li>
|
399
|
-
<li>RPM: Split server related packages to groonga-server package.</li>
|
400
|
-
<li>suggest: Added target object name into error messages.</li>
|
401
|
-
<li>document: Started English support. (not completed yet.)</li>
|
402
|
-
<li>groonga-suggest-httpd: Added --disable-max-fd-check option.</li>
|
403
|
-
<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>
|
404
|
-
<li>groonga-suggest-httpd: Renamed --address option to --bind-address.</li>
|
405
|
-
<li>Changed admin HTML install directory to
|
406
|
-
$PREFIX/share/groonga/html/admin/ from
|
407
|
-
$PREFIX/share/groonga/admin_html/.</li>
|
408
|
-
<li>groonga-suggest-httpd: Used "application/json" for JSON response
|
409
|
-
instead of "text/javascript".</li>
|
410
|
-
<li>Windows: Used DLL relative path instead of executable file
|
411
|
-
relative path.</li>
|
412
|
-
<li>MeCab: Added error message from MeCab on MeCab initialize error.</li>
|
413
|
-
<li>suggest: Added prefix_search parameter to suggest
|
414
|
-
command. #909</li>
|
415
|
-
<li>plugin: Added grn_plugin_get_system_plugins_dir() and
|
416
|
-
grn_plugin_get_suffix() API.</li>
|
417
|
-
<li>Added grn_obj_is_builtin() API.</li>
|
418
|
-
<li><a class="reference internal" href="commands/load.html"><em>load</em></a>: Added table name check. #934</li>
|
419
|
-
<li>Showed invalid name context in error message. #935</li>
|
420
|
-
</ul>
|
421
|
-
</div>
|
422
|
-
<div class="section" id="id21">
|
423
|
-
<h3>Fixes<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
424
|
-
<ul class="simple">
|
425
|
-
<li>Fixed a data breaking bug on multi process update. #890</li>
|
426
|
-
</ul>
|
427
|
-
</div>
|
428
|
-
</div>
|
429
|
-
<div class="section" id="id22">
|
430
|
-
<h2>1.2.1リリース - 2011/04/29<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h2>
|
431
|
-
<div class="section" id="id23">
|
432
|
-
<h3>改良<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
433
|
-
<ul class="simple">
|
434
|
-
<li>suggestコマンドにthresholdパラメーターを追加。#895</li>
|
435
|
-
<li>suggestのHTTPサーバにlimitパラメーターを追加。#899</li>
|
436
|
-
<li>grntest: SIGINTでの中断に対応。</li>
|
437
|
-
</ul>
|
438
|
-
</div>
|
439
|
-
<div class="section" id="id24">
|
440
|
-
<h3>修正<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
441
|
-
<ul class="simple">
|
442
|
-
<li>同時に複数のデータベースを開いているとき、1つでもデータベー
|
443
|
-
スを閉じると関連するプラグインも閉じられてしまう問題を修正。 #894</li>
|
444
|
-
<li>configureの--helpで出力される--with-deafult-encodingの値が
|
445
|
-
間違っていた問題を修正。(ICHII Takashiさんが報告)</li>
|
446
|
-
<li>チュートリアル中のtypoを修正。(moozさんが修正)</li>
|
447
|
-
</ul>
|
448
|
-
</div>
|
449
|
-
<div class="section" id="id25">
|
450
|
-
<h3>感謝<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
451
|
-
<ul class="simple">
|
452
|
-
<li>ICHII Takashiさん</li>
|
453
|
-
<li>moozさん</li>
|
454
|
-
</ul>
|
455
|
-
</div>
|
456
|
-
</div>
|
457
|
-
<div class="section" id="id26">
|
458
|
-
<h2>1.2.0リリース - 2011/03/29<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h2>
|
459
|
-
<div class="section" id="id27">
|
460
|
-
<h3>改良<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
461
|
-
<ul class="simple">
|
462
|
-
<li>MacPortsでのインストールドキュメントを追加。</li>
|
463
|
-
<li>Homebrewでのインストールドキュメントを追加。</li>
|
464
|
-
<li>WindowsではMinGWでもpthreadを使わないようにした。</li>
|
465
|
-
<li>オーバーフローチェックを強化。</li>
|
466
|
-
<li>位置情報の入力値チェックを強化。</li>
|
467
|
-
<li>インデックスを用いたジオサーチの例をチュートリアルに追加。 #438</li>
|
468
|
-
<li>Debian GNU/Linux wheezyのパッケージを追加。</li>
|
469
|
-
<li>Debian GNU/Linux lennyのパッケージを削除。</li>
|
470
|
-
<li>Debianパッケージをcdbsベースからdebhelperベースへ移行。
|
471
|
-
パッケージ名の変更あり。 #887</li>
|
472
|
-
<li>MeCabトークナイザーの読み込みエラーを無視するようにした。た
|
473
|
-
だし、ログには残る。 #893</li>
|
474
|
-
</ul>
|
475
|
-
</div>
|
476
|
-
<div class="section" id="id28">
|
477
|
-
<h3>修正<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
478
|
-
<ul class="simple">
|
479
|
-
<li>autoconf 2.59環境において、ファイルシステムのルート直下に
|
480
|
-
groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
481
|
-
<li>JSONPが動作しなくなっていた問題を修正。</li>
|
482
|
-
<li>MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。
|
483
|
-
(@tomotaka_itoさんが報告)</li>
|
484
|
-
<li>[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。</li>
|
485
|
-
<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> と
|
486
|
-
<tt class="docutils literal"><span class="pre">bottom_right</span></tt> に同じ位置を指定するとクラッシュする問題を修正。</li>
|
487
|
-
<li>メモリリークを修正。</li>
|
488
|
-
<li>小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880</li>
|
489
|
-
<li><a class="reference internal" href="commands/column_list.html"><em>column_list</em></a> のドキュメントを修正。 #758</li>
|
490
|
-
<li><a class="reference internal" href="commands/table_list.html"><em>table_list</em></a> のドキュメントを修正。</li>
|
491
|
-
<li><a class="reference internal" href="commands/load.html"><em>load</em></a> で_valueを指定するとメモリリークする問題を修正。 #878</li>
|
492
|
-
<li><a class="reference internal" href="commands/load.html"><em>load</em></a> でクラッシュする問題を修正。 #661</li>
|
493
|
-
</ul>
|
494
|
-
</div>
|
495
|
-
<div class="section" id="id29">
|
496
|
-
<h3>実験的<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
497
|
-
<ul class="simple">
|
498
|
-
<li>grn_table_truncate()を追加。(実験的。問題あり)</li>
|
499
|
-
<li>truncateコマンドを追加。(実験的。問題あり) #888</li>
|
500
|
-
</ul>
|
501
|
-
</div>
|
502
|
-
<div class="section" id="id30">
|
503
|
-
<h3>感謝<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
504
|
-
<ul class="simple">
|
505
|
-
<li>@tomotaka_itoさん</li>
|
158
|
+
<li>montywi</li>
|
159
|
+
<li>Masaharu IWAI</li>
|
506
160
|
</ul>
|
507
161
|
</div>
|
508
162
|
</div>
|
509
|
-
<div class="section" id="
|
510
|
-
<h2
|
163
|
+
<div class="section" id="the-old-releases">
|
164
|
+
<h2>The old releases<a class="headerlink" href="#the-old-releases" title="Permalink to this headline">¶</a></h2>
|
511
165
|
<div class="toctree-wrapper compound">
|
512
166
|
<ul>
|
513
167
|
<li class="toctree-l1"><a class="reference internal" href="news/1.1.x.html">バージョン1.1.xのお知らせ</a><ul>
|
@@ -561,71 +215,18 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
561
215
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
562
216
|
<ul>
|
563
217
|
<li><a class="reference internal" href="#">News</a><ul>
|
564
|
-
<li><a class="reference internal" href="#release-
|
218
|
+
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">Release 2.0.0 - 2012/02/29</a><ul>
|
565
219
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
220
|
+
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
566
221
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
567
222
|
</ul>
|
568
223
|
</li>
|
569
|
-
<li><a class="reference internal" href="#release-1-
|
224
|
+
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">Release 1.3.0 - 2012/01/29</a><ul>
|
570
225
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
571
|
-
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
572
226
|
<li><a class="reference internal" href="#id2">Thanks</a></li>
|
573
227
|
</ul>
|
574
228
|
</li>
|
575
|
-
<li><a class="reference internal" href="#
|
576
|
-
<li><a class="reference internal" href="#id3">Improvements</a></li>
|
577
|
-
<li><a class="reference internal" href="#id4">Fixes</a></li>
|
578
|
-
<li><a class="reference internal" href="#id5">Thanks</a></li>
|
579
|
-
</ul>
|
580
|
-
</li>
|
581
|
-
<li><a class="reference internal" href="#release-1-2-7-2011-10-29">Release 1.2.7 - 2011/10/29</a><ul>
|
582
|
-
<li><a class="reference internal" href="#id6">Improvements</a></li>
|
583
|
-
<li><a class="reference internal" href="#id7">Fixes</a></li>
|
584
|
-
<li><a class="reference internal" href="#id8">Thanks</a></li>
|
585
|
-
</ul>
|
586
|
-
</li>
|
587
|
-
<li><a class="reference internal" href="#release-1-2-6-2011-09-29">Release 1.2.6 - 2011/09/29</a><ul>
|
588
|
-
<li><a class="reference internal" href="#id9">Improvements</a></li>
|
589
|
-
<li><a class="reference internal" href="#id10">Fixes</a></li>
|
590
|
-
<li><a class="reference internal" href="#id11">Thanks</a></li>
|
591
|
-
</ul>
|
592
|
-
</li>
|
593
|
-
<li><a class="reference internal" href="#release-1-2-5-2011-08-29">Release 1.2.5 - 2011/08/29</a><ul>
|
594
|
-
<li><a class="reference internal" href="#id12">Improvements</a></li>
|
595
|
-
<li><a class="reference internal" href="#id13">Fixes</a></li>
|
596
|
-
</ul>
|
597
|
-
</li>
|
598
|
-
<li><a class="reference internal" href="#release-1-2-4-2011-07-29">Release 1.2.4 - 2011/07/29</a><ul>
|
599
|
-
<li><a class="reference internal" href="#id14">Improvements</a></li>
|
600
|
-
<li><a class="reference internal" href="#id15">Fixes</a></li>
|
601
|
-
<li><a class="reference internal" href="#id16">Thanks</a></li>
|
602
|
-
</ul>
|
603
|
-
</li>
|
604
|
-
<li><a class="reference internal" href="#release-1-2-3-2011-06-29">Release 1.2.3 - 2011/06/29</a><ul>
|
605
|
-
<li><a class="reference internal" href="#id17">Improvements</a></li>
|
606
|
-
<li><a class="reference internal" href="#id18">Fixes</a></li>
|
607
|
-
<li><a class="reference internal" href="#id19">Thanks</a></li>
|
608
|
-
</ul>
|
609
|
-
</li>
|
610
|
-
<li><a class="reference internal" href="#release-1-2-2-2011-05-29">Release 1.2.2 - 2011/05/29</a><ul>
|
611
|
-
<li><a class="reference internal" href="#id20">Improvements</a></li>
|
612
|
-
<li><a class="reference internal" href="#id21">Fixes</a></li>
|
613
|
-
</ul>
|
614
|
-
</li>
|
615
|
-
<li><a class="reference internal" href="#id22">1.2.1リリース - 2011/04/29</a><ul>
|
616
|
-
<li><a class="reference internal" href="#id23">改良</a></li>
|
617
|
-
<li><a class="reference internal" href="#id24">修正</a></li>
|
618
|
-
<li><a class="reference internal" href="#id25">感謝</a></li>
|
619
|
-
</ul>
|
620
|
-
</li>
|
621
|
-
<li><a class="reference internal" href="#id26">1.2.0リリース - 2011/03/29</a><ul>
|
622
|
-
<li><a class="reference internal" href="#id27">改良</a></li>
|
623
|
-
<li><a class="reference internal" href="#id28">修正</a></li>
|
624
|
-
<li><a class="reference internal" href="#id29">実験的</a></li>
|
625
|
-
<li><a class="reference internal" href="#id30">感謝</a></li>
|
626
|
-
</ul>
|
627
|
-
</li>
|
628
|
-
<li><a class="reference internal" href="#id31">過去のリリース</a><ul>
|
229
|
+
<li><a class="reference internal" href="#the-old-releases">The old releases</a><ul>
|
629
230
|
</ul>
|
630
231
|
</li>
|
631
232
|
</ul>
|
@@ -660,7 +261,7 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li>
|
|
660
261
|
<li class="right" style="margin-right: 10px">
|
661
262
|
<a href="genindex.html" title="General Index"
|
662
263
|
>index</a></li>
|
663
|
-
<li><a href="index.html">groonga
|
264
|
+
<li><a href="index.html">groonga v2.0.0 documentation</a> »</li>
|
664
265
|
</ul>
|
665
266
|
</div>
|
666
267
|
<div class="footer">
|
Binary file
|