rroonga 5.0.0-x86-mingw32 → 5.0.1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/.yardopts +1 -0
 - data/Rakefile +1 -16
 - data/example/bookmark.rb +1 -6
 - data/example/index-html.rb +0 -1
 - data/ext/groonga/extconf.rb +4 -7
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-column.c +33 -67
 - data/ext/groonga/rb-grn-context.c +5 -5
 - data/ext/groonga/rb-grn-database.c +2 -2
 - data/ext/groonga/rb-grn-double-array-trie.c +4 -2
 - data/ext/groonga/rb-grn-encoding-support.c +7 -1
 - data/ext/groonga/rb-grn-equal-operator.c +85 -0
 - data/ext/groonga/rb-grn-exception.c +17 -0
 - data/ext/groonga/rb-grn-expression.c +85 -43
 - data/ext/groonga/rb-grn-greater-equal-operator.c +88 -0
 - data/ext/groonga/rb-grn-greater-operator.c +85 -0
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +150 -11
 - data/ext/groonga/rb-grn-less-equal-operator.c +88 -0
 - data/ext/groonga/rb-grn-less-operator.c +85 -0
 - data/ext/groonga/rb-grn-logger.c +5 -5
 - data/ext/groonga/rb-grn-match-operator.c +86 -0
 - data/ext/groonga/rb-grn-normalizer.c +8 -1
 - data/ext/groonga/rb-grn-not-equal-operator.c +85 -0
 - data/ext/groonga/rb-grn-object.c +170 -36
 - data/ext/groonga/rb-grn-operator.c +395 -172
 - data/ext/groonga/rb-grn-patricia-trie.c +10 -8
 - data/ext/groonga/rb-grn-plugin.c +51 -3
 - data/ext/groonga/rb-grn-prefix-operator.c +86 -0
 - data/ext/groonga/rb-grn-procedure-type.c +4 -0
 - data/ext/groonga/rb-grn-query-logger.c +4 -4
 - data/ext/groonga/rb-grn-regexp-operator.c +85 -0
 - data/ext/groonga/rb-grn-snippet.c +1 -1
 - data/ext/groonga/rb-grn-table-key-support.c +9 -5
 - data/ext/groonga/rb-grn-table.c +52 -66
 - data/ext/groonga/rb-grn-type.c +1 -1
 - data/ext/groonga/rb-grn-utils.c +22 -3
 - data/ext/groonga/rb-grn.h +31 -4
 - data/ext/groonga/rb-groonga.c +9 -9
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/2.2/groonga.so +0 -0
 - data/lib/groonga/context.rb +31 -0
 - data/lib/groonga/expression-builder.rb +14 -1
 - data/lib/groonga/record.rb +10 -8
 - data/lib/groonga/schema.rb +3 -1
 - data/rroonga-build.rb +2 -2
 - data/rroonga.gemspec +3 -3
 - data/test/groonga-test-utils.rb +4 -0
 - data/test/test-column.rb +28 -26
 - data/test/test-exception.rb +1 -0
 - data/test/test-expression-builder.rb +83 -1
 - data/test/test-expression.rb +80 -48
 - data/test/test-index-column.rb +102 -29
 - data/test/test-normalizer.rb +35 -29
 - data/test/test-operator.rb +214 -0
 - data/test/test-plugin.rb +24 -6
 - data/test/test-procedure.rb +29 -0
 - data/test/test-schema-type.rb +14 -0
 - data/test/test-table-select-mecab.rb +1 -4
 - data/test/test-table.rb +7 -0
 - data/test/test-token-regexp.rb +30 -0
 - data/test/test-type.rb +24 -0
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.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/libonig-5.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/groonga.conf +1 -1
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga.h +1 -0
 - data/vendor/local/include/groonga/groonga/expr.h +2 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +32 -5
 - data/vendor/local/include/groonga/groonga/ii.h +7 -0
 - data/vendor/local/include/groonga/groonga/obj.h +37 -0
 - data/vendor/local/include/groonga/groonga/scorer.h +95 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +6 -3
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +6 -5
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +421 -17
 - 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/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.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/groonga/scripts/ruby/backtrace_entry.rb +12 -4
 - data/vendor/local/lib/groonga/scripts/ruby/database.rb +11 -3
 - data/vendor/local/lib/groonga/scripts/ruby/expression.rb +23 -0
 - data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +158 -0
 - data/vendor/local/lib/groonga/scripts/ruby/index_column.rb +39 -0
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +4 -0
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb +2 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger.rb +11 -7
 - data/vendor/local/lib/groonga/scripts/ruby/object.rb +11 -0
 - data/vendor/local/lib/groonga/scripts/ruby/operator.rb +22 -0
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info.rb +7 -2
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +7 -11
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +137 -34
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb +9 -0
 - 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/liblz4.a +0 -0
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.a +0 -0
 - data/vendor/local/lib/libz.dll.a +0 -0
 - data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
 - data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
 - data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
 - data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
 - data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
 - 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/sbin/groonga-httpd-restart +1 -1
 - data/vendor/local/sbin/groonga-httpd.exe +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +32 -17
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +194 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +2 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api.txt +3 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +42 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt +54 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_create.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/delete.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +173 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +112 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +7 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +64 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +63 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +11 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +17 -17
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +12 -12
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +6 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +47 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/between.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +6 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/in_values.txt +54 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/sub_filter.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +4 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/operations.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +403 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +217 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +13 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tables.txt +8 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +530 -16
 - data/vendor/local/share/doc/groonga/en/html/_sources/server.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt +15 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +66 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +0 -81
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +6 -68
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +1 -26
 - data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +9404 -4
 - data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +1415 -31
 - data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/client.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +51 -38
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +26 -14
 - data/vendor/local/share/doc/groonga/en/html/index.html +150 -130
 - data/vendor/local/share/doc/groonga/en/html/install.html +32 -34
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +28 -30
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -30
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +87 -89
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +25 -27
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +30 -32
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news.html +256 -27
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +32 -34
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +27 -29
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +98 -100
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +68 -70
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +102 -104
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +139 -118
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +51 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +49 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +60 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +80 -82
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +130 -80
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +48 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +79 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +41 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +41 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +89 -91
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +75 -77
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +64 -66
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +202 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +58 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +58 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +53 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +94 -96
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +43 -45
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +71 -73
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +35 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -45
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +24 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +26 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +314 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +252 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +87 -89
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +46 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +195 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +193 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +38 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +61 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +72 -74
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +54 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +54 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +590 -592
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +92 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +152 -154
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +49 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +68 -70
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +103 -105
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +45 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +52 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +35 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +26 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +73 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +34 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +124 -90
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +66 -68
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +113 -115
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +55 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +45 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +81 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +65 -67
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +54 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +135 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +81 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +43 -45
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +67 -69
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +66 -70
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +349 -286
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +483 -417
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +38 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +44 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +30 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +32 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +32 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +60 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +931 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +442 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +153 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +287 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +114 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +45 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +51 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +38 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +52 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +36 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +1394 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +57 -59
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -40
 - data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +23 -24
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +28 -30
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +68 -70
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +30 -32
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +29 -31
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +137 -0
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +36 -38
 - data/vendor/local/share/doc/groonga/en/html/spec.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +208 -129
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -25
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +31 -33
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +50 -52
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +27 -125
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +32 -17
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +194 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api.txt +3 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +42 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt +54 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_create.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/delete.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +173 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +112 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +7 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +64 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +63 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +11 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +17 -17
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +12 -12
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +47 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/between.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/in_values.txt +54 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/sub_filter.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +44 -18
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +41 -11
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +4 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/operations.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +403 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +217 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +22 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +110 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +13 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tables.txt +8 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +530 -16
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt +15 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +66 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +0 -81
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +6 -68
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +1 -26
 - data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +9404 -4
 - data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +1415 -31
 - data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/client.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +51 -38
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +26 -14
 - data/vendor/local/share/doc/groonga/ja/html/index.html +150 -130
 - data/vendor/local/share/doc/groonga/ja/html/install.html +32 -34
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +31 -33
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -27
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +29 -31
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +78 -80
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +26 -28
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +29 -31
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news.html +210 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +32 -34
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +27 -29
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +91 -93
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +59 -61
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +89 -91
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +139 -118
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +51 -52
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +49 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +55 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +80 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +126 -76
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +48 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +44 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +74 -76
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +44 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +41 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +41 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +89 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +44 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +75 -77
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +64 -66
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +197 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +58 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +48 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +43 -45
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +93 -95
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +35 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +43 -45
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +23 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +62 -64
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +23 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +26 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +314 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +250 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +80 -81
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +46 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +188 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +190 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +57 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +71 -73
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +53 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +53 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +394 -396
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +78 -80
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +123 -125
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +49 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +61 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +89 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +46 -48
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +51 -53
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +35 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +26 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +61 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +34 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +126 -90
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +63 -65
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +44 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +94 -96
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +55 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +45 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +66 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +55 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +53 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +135 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +70 -72
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +43 -45
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +53 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +56 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +36 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +229 -171
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +381 -322
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +28 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +32 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +28 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +878 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +442 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +154 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +287 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +115 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +45 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +48 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +1300 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +57 -59
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -40
 - data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +23 -24
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +28 -30
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +62 -64
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +30 -32
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +29 -31
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +138 -0
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -37
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +207 -128
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -25
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +30 -32
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +23 -25
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +47 -49
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +27 -125
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +31 -33
 - data/vendor/local/share/license/mruby/README.md +2 -2
 - data/vendor/local/share/man/ja/man1/groonga.1 +6205 -2251
 - data/vendor/local/share/man/man1/groonga.1 +7210 -3029
 - metadata +75 -11
 - data/doc/text/news.textile +0 -1217
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +0 -10308
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +0 -999
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +0 -10308
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +0 -999
 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: rroonga
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 5.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 5.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Kouhei Sutou
         
     | 
| 
         @@ -12,7 +12,7 @@ authors: 
     | 
|
| 
       12 
12 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       13 
13 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       14 
14 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       15 
     | 
    
         
            -
            date: 2015- 
     | 
| 
      
 15 
     | 
    
         
            +
            date: 2015-04-15 00:00:00.000000000 Z
         
     | 
| 
       16 
16 
     | 
    
         
             
            dependencies:
         
     | 
| 
       17 
17 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       18 
18 
     | 
    
         
             
              name: pkg-config
         
     | 
| 
         @@ -118,14 +118,14 @@ dependencies: 
     | 
|
| 
       118 
118 
     | 
    
         
             
                requirements:
         
     | 
| 
       119 
119 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
       120 
120 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       121 
     | 
    
         
            -
                    version:  
     | 
| 
      
 121 
     | 
    
         
            +
                    version: 0.9.5
         
     | 
| 
       122 
122 
     | 
    
         
             
              type: :development
         
     | 
| 
       123 
123 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       124 
124 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       125 
125 
     | 
    
         
             
                requirements:
         
     | 
| 
       126 
126 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
       127 
127 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       128 
     | 
    
         
            -
                    version:  
     | 
| 
      
 128 
     | 
    
         
            +
                    version: 0.9.5
         
     | 
| 
       129 
129 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       130 
130 
     | 
    
         
             
              name: bundler
         
     | 
| 
       131 
131 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
         @@ -169,7 +169,7 @@ dependencies: 
     | 
|
| 
       169 
169 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       170 
170 
     | 
    
         
             
                    version: 1.0.0
         
     | 
| 
       171 
171 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       172 
     | 
    
         
            -
              name:  
     | 
| 
      
 172 
     | 
    
         
            +
              name: kramdown
         
     | 
| 
       173 
173 
     | 
    
         
             
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
       174 
174 
     | 
    
         
             
                requirements:
         
     | 
| 
       175 
175 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -221,7 +221,6 @@ files: 
     | 
|
| 
       221 
221 
     | 
    
         
             
            - bin/groonga-index-dump
         
     | 
| 
       222 
222 
     | 
    
         
             
            - doc/images/sample-schema.png
         
     | 
| 
       223 
223 
     | 
    
         
             
            - doc/text/install.textile
         
     | 
| 
       224 
     | 
    
         
            -
            - doc/text/news.textile
         
     | 
| 
       225 
224 
     | 
    
         
             
            - doc/text/tutorial.textile
         
     | 
| 
       226 
225 
     | 
    
         
             
            - example/bookmark.rb
         
     | 
| 
       227 
226 
     | 
    
         
             
            - example/index-html.rb
         
     | 
| 
         @@ -237,27 +236,36 @@ files: 
     | 
|
| 
       237 
236 
     | 
    
         
             
            - ext/groonga/rb-grn-double-array-trie.c
         
     | 
| 
       238 
237 
     | 
    
         
             
            - ext/groonga/rb-grn-encoding-support.c
         
     | 
| 
       239 
238 
     | 
    
         
             
            - ext/groonga/rb-grn-encoding.c
         
     | 
| 
      
 239 
     | 
    
         
            +
            - ext/groonga/rb-grn-equal-operator.c
         
     | 
| 
       240 
240 
     | 
    
         
             
            - ext/groonga/rb-grn-exception.c
         
     | 
| 
       241 
241 
     | 
    
         
             
            - ext/groonga/rb-grn-expression-builder.c
         
     | 
| 
       242 
242 
     | 
    
         
             
            - ext/groonga/rb-grn-expression.c
         
     | 
| 
       243 
243 
     | 
    
         
             
            - ext/groonga/rb-grn-fix-size-column.c
         
     | 
| 
       244 
244 
     | 
    
         
             
            - ext/groonga/rb-grn-geo-point.c
         
     | 
| 
      
 245 
     | 
    
         
            +
            - ext/groonga/rb-grn-greater-equal-operator.c
         
     | 
| 
      
 246 
     | 
    
         
            +
            - ext/groonga/rb-grn-greater-operator.c
         
     | 
| 
       245 
247 
     | 
    
         
             
            - ext/groonga/rb-grn-hash-cursor.c
         
     | 
| 
       246 
248 
     | 
    
         
             
            - ext/groonga/rb-grn-hash.c
         
     | 
| 
       247 
249 
     | 
    
         
             
            - ext/groonga/rb-grn-index-column.c
         
     | 
| 
       248 
250 
     | 
    
         
             
            - ext/groonga/rb-grn-index-cursor.c
         
     | 
| 
      
 251 
     | 
    
         
            +
            - ext/groonga/rb-grn-less-equal-operator.c
         
     | 
| 
      
 252 
     | 
    
         
            +
            - ext/groonga/rb-grn-less-operator.c
         
     | 
| 
       249 
253 
     | 
    
         
             
            - ext/groonga/rb-grn-logger.c
         
     | 
| 
      
 254 
     | 
    
         
            +
            - ext/groonga/rb-grn-match-operator.c
         
     | 
| 
       250 
255 
     | 
    
         
             
            - ext/groonga/rb-grn-normalizer.c
         
     | 
| 
      
 256 
     | 
    
         
            +
            - ext/groonga/rb-grn-not-equal-operator.c
         
     | 
| 
       251 
257 
     | 
    
         
             
            - ext/groonga/rb-grn-object.c
         
     | 
| 
       252 
258 
     | 
    
         
             
            - ext/groonga/rb-grn-operator.c
         
     | 
| 
       253 
259 
     | 
    
         
             
            - ext/groonga/rb-grn-patricia-trie-cursor.c
         
     | 
| 
       254 
260 
     | 
    
         
             
            - ext/groonga/rb-grn-patricia-trie.c
         
     | 
| 
       255 
261 
     | 
    
         
             
            - ext/groonga/rb-grn-plugin.c
         
     | 
| 
       256 
262 
     | 
    
         
             
            - ext/groonga/rb-grn-posting.c
         
     | 
| 
      
 263 
     | 
    
         
            +
            - ext/groonga/rb-grn-prefix-operator.c
         
     | 
| 
       257 
264 
     | 
    
         
             
            - ext/groonga/rb-grn-procedure-type.c
         
     | 
| 
       258 
265 
     | 
    
         
             
            - ext/groonga/rb-grn-procedure.c
         
     | 
| 
       259 
266 
     | 
    
         
             
            - ext/groonga/rb-grn-query-logger.c
         
     | 
| 
       260 
267 
     | 
    
         
             
            - ext/groonga/rb-grn-record.c
         
     | 
| 
      
 268 
     | 
    
         
            +
            - ext/groonga/rb-grn-regexp-operator.c
         
     | 
| 
       261 
269 
     | 
    
         
             
            - ext/groonga/rb-grn-snippet.c
         
     | 
| 
       262 
270 
     | 
    
         
             
            - ext/groonga/rb-grn-table-cursor-key-support.c
         
     | 
| 
       263 
271 
     | 
    
         
             
            - ext/groonga/rb-grn-table-cursor.c
         
     | 
| 
         @@ -273,6 +281,7 @@ files: 
     | 
|
| 
       273 
281 
     | 
    
         
             
            - lib/1.9/groonga.so
         
     | 
| 
       274 
282 
     | 
    
         
             
            - lib/2.0/groonga.so
         
     | 
| 
       275 
283 
     | 
    
         
             
            - lib/2.1/groonga.so
         
     | 
| 
      
 284 
     | 
    
         
            +
            - lib/2.2/groonga.so
         
     | 
| 
       276 
285 
     | 
    
         
             
            - lib/groonga.rb
         
     | 
| 
       277 
286 
     | 
    
         
             
            - lib/groonga/column.rb
         
     | 
| 
       278 
287 
     | 
    
         
             
            - lib/groonga/context.rb
         
     | 
| 
         @@ -325,6 +334,7 @@ files: 
     | 
|
| 
       325 
334 
     | 
    
         
             
            - test/test-logger.rb
         
     | 
| 
       326 
335 
     | 
    
         
             
            - test/test-memory-pool.rb
         
     | 
| 
       327 
336 
     | 
    
         
             
            - test/test-normalizer.rb
         
     | 
| 
      
 337 
     | 
    
         
            +
            - test/test-operator.rb
         
     | 
| 
       328 
338 
     | 
    
         
             
            - test/test-pagination.rb
         
     | 
| 
       329 
339 
     | 
    
         
             
            - test/test-patricia-trie.rb
         
     | 
| 
       330 
340 
     | 
    
         
             
            - test/test-plugin.rb
         
     | 
| 
         @@ -348,6 +358,7 @@ files: 
     | 
|
| 
       348 
358 
     | 
    
         
             
            - test/test-table-select.rb
         
     | 
| 
       349 
359 
     | 
    
         
             
            - test/test-table-traverse.rb
         
     | 
| 
       350 
360 
     | 
    
         
             
            - test/test-table.rb
         
     | 
| 
      
 361 
     | 
    
         
            +
            - test/test-token-regexp.rb
         
     | 
| 
       351 
362 
     | 
    
         
             
            - test/test-type.rb
         
     | 
| 
       352 
363 
     | 
    
         
             
            - test/test-variable-size-column.rb
         
     | 
| 
       353 
364 
     | 
    
         
             
            - test/test-variable.rb
         
     | 
| 
         @@ -398,9 +409,11 @@ files: 
     | 
|
| 
       398 
409 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/ii.h
         
     | 
| 
       399 
410 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/nfkc.h
         
     | 
| 
       400 
411 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/normalizer.h
         
     | 
| 
      
 412 
     | 
    
         
            +
            - vendor/local/include/groonga/groonga/obj.h
         
     | 
| 
       401 
413 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/output.h
         
     | 
| 
       402 
414 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/plugin.h
         
     | 
| 
       403 
415 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/request_canceler.h
         
     | 
| 
      
 416 
     | 
    
         
            +
            - vendor/local/include/groonga/groonga/scorer.h
         
     | 
| 
       404 
417 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/token.h
         
     | 
| 
       405 
418 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/token_filter.h
         
     | 
| 
       406 
419 
     | 
    
         
             
            - vendor/local/include/groonga/groonga/tokenizer.h
         
     | 
| 
         @@ -498,17 +511,22 @@ files: 
     | 
|
| 
       498 
511 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/error.rb
         
     | 
| 
       499 
512 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/eval_context.rb
         
     | 
| 
       500 
513 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/expression.rb
         
     | 
| 
      
 514 
     | 
    
         
            +
            - vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb
         
     | 
| 
      
 515 
     | 
    
         
            +
            - vendor/local/lib/groonga/scripts/ruby/index_column.rb
         
     | 
| 
       501 
516 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/index_cursor.rb
         
     | 
| 
       502 
517 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/index_info.rb
         
     | 
| 
       503 
518 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/initialize/post.rb
         
     | 
| 
       504 
519 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/initialize/pre.rb
         
     | 
| 
       505 
520 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/logger.rb
         
     | 
| 
       506 
521 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/logger/level.rb
         
     | 
| 
      
 522 
     | 
    
         
            +
            - vendor/local/lib/groonga/scripts/ruby/object.rb
         
     | 
| 
      
 523 
     | 
    
         
            +
            - vendor/local/lib/groonga/scripts/ruby/operator.rb
         
     | 
| 
       507 
524 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/plugin_loader.rb
         
     | 
| 
       508 
525 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/require.rb
         
     | 
| 
       509 
526 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/scan_info.rb
         
     | 
| 
       510 
527 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb
         
     | 
| 
       511 
528 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb
         
     | 
| 
      
 529 
     | 
    
         
            +
            - vendor/local/lib/groonga/scripts/ruby/scan_info_search_index.rb
         
     | 
| 
       512 
530 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/table_cursor.rb
         
     | 
| 
       513 
531 
     | 
    
         
             
            - vendor/local/lib/groonga/scripts/ruby/writer.rb
         
     | 
| 
       514 
532 
     | 
    
         
             
            - vendor/local/lib/libgroonga.a
         
     | 
| 
         @@ -546,6 +564,8 @@ files: 
     | 
|
| 
       546 
564 
     | 
    
         
             
            - vendor/local/sbin/groonga-httpd.exe
         
     | 
| 
       547 
565 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/.buildinfo
         
     | 
| 
       548 
566 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_images/geo-points.png
         
     | 
| 
      
 567 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_images/used-when-indexing.png
         
     | 
| 
      
 568 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_images/used-when-searching.png
         
     | 
| 
       549 
569 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/characteristic.txt
         
     | 
| 
       550 
570 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/client.txt
         
     | 
| 
       551 
571 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/community.txt
         
     | 
| 
         @@ -609,6 +629,7 @@ files: 
     | 
|
| 
       609 
629 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_table_cursor.txt
         
     | 
| 
       610 
630 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_type.txt
         
     | 
| 
       611 
631 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_user_data.txt
         
     | 
| 
      
 632 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/overview.txt
         
     | 
| 
       612 
633 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt
         
     | 
| 
       613 
634 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/cast.txt
         
     | 
| 
       614 
635 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt
         
     | 
| 
         @@ -637,8 +658,12 @@ files: 
     | 
|
| 
       637 
658 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt
         
     | 
| 
       638 
659 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt
         
     | 
| 
       639 
660 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt
         
     | 
| 
      
 661 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt
         
     | 
| 
      
 662 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt
         
     | 
| 
       640 
663 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt
         
     | 
| 
       641 
664 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt
         
     | 
| 
      
 665 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt
         
     | 
| 
      
 666 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt
         
     | 
| 
       642 
667 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt
         
     | 
| 
       643 
668 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/range_filter.txt
         
     | 
| 
       644 
669 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt
         
     | 
| 
         @@ -692,6 +717,11 @@ files: 
     | 
|
| 
       692 
717 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/output.txt
         
     | 
| 
       693 
718 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders.txt
         
     | 
| 
       694 
719 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
      
 720 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt
         
     | 
| 
      
 721 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt
         
     | 
| 
      
 722 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt
         
     | 
| 
      
 723 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt
         
     | 
| 
      
 724 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt
         
     | 
| 
       695 
725 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/suggest.txt
         
     | 
| 
       696 
726 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt
         
     | 
| 
       697 
727 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/correction.txt
         
     | 
| 
         @@ -708,6 +738,7 @@ files: 
     | 
|
| 
       708 
738 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt
         
     | 
| 
       709 
739 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga-httpd.txt
         
     | 
| 
       710 
740 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/http/groonga.txt
         
     | 
| 
      
 741 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/_sources/server/memcached.txt
         
     | 
| 
       711 
742 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/server/package.txt
         
     | 
| 
       712 
743 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/spec.txt
         
     | 
| 
       713 
744 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt
         
     | 
| 
         @@ -740,7 +771,6 @@ files: 
     | 
|
| 
       740 
771 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/groonga.css
         
     | 
| 
       741 
772 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/header-background.png
         
     | 
| 
       742 
773 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/jp.png
         
     | 
| 
       743 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js
         
     | 
| 
       744 
774 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/jquery.js
         
     | 
| 
       745 
775 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/logo.png
         
     | 
| 
       746 
776 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/minus.png
         
     | 
| 
         @@ -748,7 +778,6 @@ files: 
     | 
|
| 
       748 
778 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/plus.png
         
     | 
| 
       749 
779 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/pygments.css
         
     | 
| 
       750 
780 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/searchtools.js
         
     | 
| 
       751 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js
         
     | 
| 
       752 
781 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/underscore.js
         
     | 
| 
       753 
782 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/up-pressed.png
         
     | 
| 
       754 
783 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/_static/up.png
         
     | 
| 
         @@ -819,6 +848,7 @@ files: 
     | 
|
| 
       819 
848 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html
         
     | 
| 
       820 
849 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html
         
     | 
| 
       821 
850 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html
         
     | 
| 
      
 851 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/api/overview.html
         
     | 
| 
       822 
852 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/api/plugin.html
         
     | 
| 
       823 
853 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/cast.html
         
     | 
| 
       824 
854 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/column.html
         
     | 
| 
         @@ -847,8 +877,12 @@ files: 
     | 
|
| 
       847 
877 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html
         
     | 
| 
       848 
878 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html
         
     | 
| 
       849 
879 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html
         
     | 
| 
      
 880 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html
         
     | 
| 
      
 881 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html
         
     | 
| 
       850 
882 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html
         
     | 
| 
       851 
883 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html
         
     | 
| 
      
 884 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html
         
     | 
| 
      
 885 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html
         
     | 
| 
       852 
886 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/quit.html
         
     | 
| 
       853 
887 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html
         
     | 
| 
       854 
888 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/commands/register.html
         
     | 
| 
         @@ -902,6 +936,11 @@ files: 
     | 
|
| 
       902 
936 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/output.html
         
     | 
| 
       903 
937 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/query_expanders.html
         
     | 
| 
       904 
938 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html
         
     | 
| 
      
 939 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/regular_expression.html
         
     | 
| 
      
 940 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/scorer.html
         
     | 
| 
      
 941 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html
         
     | 
| 
      
 942 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html
         
     | 
| 
      
 943 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/reference/scoring_note.html
         
     | 
| 
       905 
944 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/suggest.html
         
     | 
| 
       906 
945 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html
         
     | 
| 
       907 
946 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html
         
     | 
| 
         @@ -920,6 +959,7 @@ files: 
     | 
|
| 
       920 
959 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/comparison.html
         
     | 
| 
       921 
960 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html
         
     | 
| 
       922 
961 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/http/groonga.html
         
     | 
| 
      
 962 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/en/html/server/memcached.html
         
     | 
| 
       923 
963 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/server/package.html
         
     | 
| 
       924 
964 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/spec.html
         
     | 
| 
       925 
965 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/spec/gqtp.html
         
     | 
| 
         @@ -941,6 +981,8 @@ files: 
     | 
|
| 
       941 
981 
     | 
    
         
             
            - vendor/local/share/doc/groonga/en/html/tutorial/search.html
         
     | 
| 
       942 
982 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/.buildinfo
         
     | 
| 
       943 
983 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_images/geo-points.png
         
     | 
| 
      
 984 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_images/used-when-indexing.png
         
     | 
| 
      
 985 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_images/used-when-searching.png
         
     | 
| 
       944 
986 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/characteristic.txt
         
     | 
| 
       945 
987 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/client.txt
         
     | 
| 
       946 
988 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/community.txt
         
     | 
| 
         @@ -1004,6 +1046,7 @@ files: 
     | 
|
| 
       1004 
1046 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_table_cursor.txt
         
     | 
| 
       1005 
1047 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_type.txt
         
     | 
| 
       1006 
1048 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_user_data.txt
         
     | 
| 
      
 1049 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/overview.txt
         
     | 
| 
       1007 
1050 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt
         
     | 
| 
       1008 
1051 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/cast.txt
         
     | 
| 
       1009 
1052 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt
         
     | 
| 
         @@ -1032,8 +1075,12 @@ files: 
     | 
|
| 
       1032 
1075 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt
         
     | 
| 
       1033 
1076 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt
         
     | 
| 
       1034 
1077 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt
         
     | 
| 
      
 1078 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt
         
     | 
| 
      
 1079 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt
         
     | 
| 
       1035 
1080 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt
         
     | 
| 
       1036 
1081 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt
         
     | 
| 
      
 1082 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt
         
     | 
| 
      
 1083 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt
         
     | 
| 
       1037 
1084 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt
         
     | 
| 
       1038 
1085 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/range_filter.txt
         
     | 
| 
       1039 
1086 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt
         
     | 
| 
         @@ -1087,6 +1134,11 @@ files: 
     | 
|
| 
       1087 
1134 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/output.txt
         
     | 
| 
       1088 
1135 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders.txt
         
     | 
| 
       1089 
1136 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt
         
     | 
| 
      
 1137 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt
         
     | 
| 
      
 1138 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt
         
     | 
| 
      
 1139 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt
         
     | 
| 
      
 1140 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt
         
     | 
| 
      
 1141 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt
         
     | 
| 
       1090 
1142 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest.txt
         
     | 
| 
       1091 
1143 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt
         
     | 
| 
       1092 
1144 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/correction.txt
         
     | 
| 
         @@ -1103,6 +1155,7 @@ files: 
     | 
|
| 
       1103 
1155 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt
         
     | 
| 
       1104 
1156 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga-httpd.txt
         
     | 
| 
       1105 
1157 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/http/groonga.txt
         
     | 
| 
      
 1158 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/_sources/server/memcached.txt
         
     | 
| 
       1106 
1159 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/server/package.txt
         
     | 
| 
       1107 
1160 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/spec.txt
         
     | 
| 
       1108 
1161 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt
         
     | 
| 
         @@ -1135,7 +1188,6 @@ files: 
     | 
|
| 
       1135 
1188 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/groonga.css
         
     | 
| 
       1136 
1189 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/header-background.png
         
     | 
| 
       1137 
1190 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/jp.png
         
     | 
| 
       1138 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js
         
     | 
| 
       1139 
1191 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/jquery.js
         
     | 
| 
       1140 
1192 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/logo.png
         
     | 
| 
       1141 
1193 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/minus.png
         
     | 
| 
         @@ -1143,7 +1195,6 @@ files: 
     | 
|
| 
       1143 
1195 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/plus.png
         
     | 
| 
       1144 
1196 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/pygments.css
         
     | 
| 
       1145 
1197 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/searchtools.js
         
     | 
| 
       1146 
     | 
    
         
            -
            - vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js
         
     | 
| 
       1147 
1198 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/underscore.js
         
     | 
| 
       1148 
1199 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png
         
     | 
| 
       1149 
1200 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/_static/up.png
         
     | 
| 
         @@ -1214,6 +1265,7 @@ files: 
     | 
|
| 
       1214 
1265 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html
         
     | 
| 
       1215 
1266 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html
         
     | 
| 
       1216 
1267 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html
         
     | 
| 
      
 1268 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/api/overview.html
         
     | 
| 
       1217 
1269 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html
         
     | 
| 
       1218 
1270 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/cast.html
         
     | 
| 
       1219 
1271 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/column.html
         
     | 
| 
         @@ -1242,8 +1294,12 @@ files: 
     | 
|
| 
       1242 
1294 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html
         
     | 
| 
       1243 
1295 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html
         
     | 
| 
       1244 
1296 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html
         
     | 
| 
      
 1297 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html
         
     | 
| 
      
 1298 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html
         
     | 
| 
       1245 
1299 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html
         
     | 
| 
       1246 
1300 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html
         
     | 
| 
      
 1301 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html
         
     | 
| 
      
 1302 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html
         
     | 
| 
       1247 
1303 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html
         
     | 
| 
       1248 
1304 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html
         
     | 
| 
       1249 
1305 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/commands/register.html
         
     | 
| 
         @@ -1297,6 +1353,11 @@ files: 
     | 
|
| 
       1297 
1353 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/output.html
         
     | 
| 
       1298 
1354 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html
         
     | 
| 
       1299 
1355 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html
         
     | 
| 
      
 1356 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html
         
     | 
| 
      
 1357 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/scorer.html
         
     | 
| 
      
 1358 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html
         
     | 
| 
      
 1359 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html
         
     | 
| 
      
 1360 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html
         
     | 
| 
       1300 
1361 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/suggest.html
         
     | 
| 
       1301 
1362 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html
         
     | 
| 
       1302 
1363 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html
         
     | 
| 
         @@ -1315,6 +1376,7 @@ files: 
     | 
|
| 
       1315 
1376 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/comparison.html
         
     | 
| 
       1316 
1377 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html
         
     | 
| 
       1317 
1378 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/http/groonga.html
         
     | 
| 
      
 1379 
     | 
    
         
            +
            - vendor/local/share/doc/groonga/ja/html/server/memcached.html
         
     | 
| 
       1318 
1380 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/server/package.html
         
     | 
| 
       1319 
1381 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/spec.html
         
     | 
| 
       1320 
1382 
     | 
    
         
             
            - vendor/local/share/doc/groonga/ja/html/spec/gqtp.html
         
     | 
| 
         @@ -1486,7 +1548,7 @@ files: 
     | 
|
| 
       1486 
1548 
     | 
    
         
             
            - vendor/local/share/mecab/dic/naist-jdic/unk.dic
         
     | 
| 
       1487 
1549 
     | 
    
         
             
            homepage: http://ranguba.org/#about-rroonga
         
     | 
| 
       1488 
1550 
     | 
    
         
             
            licenses:
         
     | 
| 
       1489 
     | 
    
         
            -
            -  
     | 
| 
      
 1551 
     | 
    
         
            +
            - LGPL-2.1
         
     | 
| 
       1490 
1552 
     | 
    
         
             
            metadata: {}
         
     | 
| 
       1491 
1553 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       1492 
1554 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
         @@ -1526,6 +1588,7 @@ test_files: 
     | 
|
| 
       1526 
1588 
     | 
    
         
             
            - test/test-schema.rb
         
     | 
| 
       1527 
1589 
     | 
    
         
             
            - test/test-vector-column.rb
         
     | 
| 
       1528 
1590 
     | 
    
         
             
            - test/test-remote.rb
         
     | 
| 
      
 1591 
     | 
    
         
            +
            - test/test-token-regexp.rb
         
     | 
| 
       1529 
1592 
     | 
    
         
             
            - test/test-snippet.rb
         
     | 
| 
       1530 
1593 
     | 
    
         
             
            - test/test-sub-records.rb
         
     | 
| 
       1531 
1594 
     | 
    
         
             
            - test/test-patricia-trie.rb
         
     | 
| 
         @@ -1556,6 +1619,7 @@ test_files: 
     | 
|
| 
       1556 
1619 
     | 
    
         
             
            - test/run-test.rb
         
     | 
| 
       1557 
1620 
     | 
    
         
             
            - test/test-table.rb
         
     | 
| 
       1558 
1621 
     | 
    
         
             
            - test/test-table-select-normalize.rb
         
     | 
| 
      
 1622 
     | 
    
         
            +
            - test/test-operator.rb
         
     | 
| 
       1559 
1623 
     | 
    
         
             
            - test/test-type.rb
         
     | 
| 
       1560 
1624 
     | 
    
         
             
            - test/test-index-cursor.rb
         
     | 
| 
       1561 
1625 
     | 
    
         
             
            - test/test-plugin.rb
         
     | 
    
        data/doc/text/news.textile
    DELETED
    
    | 
         @@ -1,1217 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            h1. NEWS
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
            h2(#5-0-0). 5.0.0: 2014-02-16 (planned)
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
            * Supported Groonga 5.0.0. Groonga 4.1.1 or older aren't supported.
         
     | 
| 
       8 
     | 
    
         
            -
            * Added flags for {Groonga::Normalizer.normalize}.
         
     | 
| 
       9 
     | 
    
         
            -
              [GitHub#44] [Patch by Tasuku SUENAGA a.k.a. gunyarakun]
         
     | 
| 
       10 
     | 
    
         
            -
              <pre>
         
     | 
| 
       11 
     | 
    
         
            -
              Groonga::Normalizer.normalize("AbC Def gh")                         #=> "abcdefgh"
         
     | 
| 
       12 
     | 
    
         
            -
              Groonga::Normalizer.normalize("AbC Def gh", :remove_blank => true)  #=> "abcdefgh"
         
     | 
| 
       13 
     | 
    
         
            -
              Groonga::Normalizer.normalize("AbC Def gh", :remove_blank => false) #=> "abc def gh"
         
     | 
| 
       14 
     | 
    
         
            -
              </pre>
         
     | 
| 
       15 
     | 
    
         
            -
            * Supported drilldown by multiple keys in {Groonga::Table#group}.
         
     | 
| 
       16 
     | 
    
         
            -
            * Supported calculation for drilldown in {Groonga::Table#group}.
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            * Tasuku SUENAGA a.k.a. gunyarakun
         
     | 
| 
       21 
     | 
    
         
            -
             
     | 
| 
       22 
     | 
    
         
            -
            h2(#4-0-8). 4.0.8: 2014-01-08
         
     | 
| 
       23 
     | 
    
         
            -
             
     | 
| 
       24 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       25 
     | 
    
         
            -
             
     | 
| 
       26 
     | 
    
         
            -
            * Supported Groonga 4.0.9. Groonga 4.0.8 or older aren't supported.
         
     | 
| 
       27 
     | 
    
         
            -
            * Added {Groonga::Column#truncate}. [GitHub#41] [Patch by Hiroshi Hatake]
         
     | 
| 
       28 
     | 
    
         
            -
            * Added {Groonga::Database#recover}.
         
     | 
| 
       29 
     | 
    
         
            -
             
     | 
| 
       30 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       31 
     | 
    
         
            -
             
     | 
| 
       32 
     | 
    
         
            -
            * Fixed a typo in {Groonga::GeoPoint#==}.
         
     | 
| 
       33 
     | 
    
         
            -
             
     | 
| 
       34 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       35 
     | 
    
         
            -
             
     | 
| 
       36 
     | 
    
         
            -
            * Hiroshi Hatake
         
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
       38 
     | 
    
         
            -
            h2(#4-0-7). 4.0.7: 2014-12-12
         
     | 
| 
       39 
     | 
    
         
            -
             
     | 
| 
       40 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       41 
     | 
    
         
            -
             
     | 
| 
       42 
     | 
    
         
            -
            * Supported Groonga 4.0.8. Groonga 4.0.7 or older aren't supported.
         
     | 
| 
       43 
     | 
    
         
            -
            * Added @:reuse_posting_object@ option to
         
     | 
| 
       44 
     | 
    
         
            -
              {Groonga::IndexCursor#each}. The option improves performance by
         
     | 
| 
       45 
     | 
    
         
            -
              reducing memory allocation. The option is disabled by default because
         
     | 
| 
       46 
     | 
    
         
            -
              reusing the same object isn't Rubyish.
         
     | 
| 
       47 
     | 
    
         
            -
            * Added {Groonga::IndexColumn#estimate_size}. [GitHub#38]
         
     | 
| 
       48 
     | 
    
         
            -
            * Accepted string for integer, unsigned integer and float type key.
         
     | 
| 
       49 
     | 
    
         
            -
             
     | 
| 
       50 
     | 
    
         
            -
            h2(#4-0-6). 4.0.6: 2014-11-06
         
     | 
| 
       51 
     | 
    
         
            -
             
     | 
| 
       52 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
       54 
     | 
    
         
            -
            * Supported Groonga 4.0.7. [GitHub#28]
         
     | 
| 
       55 
     | 
    
         
            -
            ** Changed {Groonga::Context#support_lzo?} always returns @false@.
         
     | 
| 
       56 
     | 
    
         
            -
            ** Added {Groonga::Context#support_lz4?}.
         
     | 
| 
       57 
     | 
    
         
            -
            ** Supported @:lz4@ in {Groonga::Table#define_column} options.
         
     | 
| 
       58 
     | 
    
         
            -
            ** Supported @:lz4@ in {Groonga::VariableSizeColumn#compressed?} options.
         
     | 
| 
       59 
     | 
    
         
            -
            ** Added {Groonga::LZ4Error}.
         
     | 
| 
       60 
     | 
    
         
            -
            ** [grndump] Supported @COMPRESS_ZLIB@ and @COMPRESS_LZ4@ flags.
         
     | 
| 
       61 
     | 
    
         
            -
            ** Added {Groonga::Table::KeySupport#token_filters}.
         
     | 
| 
       62 
     | 
    
         
            -
            ** Added {Groonga::Table::KeySupport#token_filters=}.
         
     | 
| 
       63 
     | 
    
         
            -
            ** Supported @:token_filters@ in {Groonga::Hash.create} options.
         
     | 
| 
       64 
     | 
    
         
            -
            ** Supported @:token_filters@ in {Groonga::PatriciaTrie.create} options.
         
     | 
| 
       65 
     | 
    
         
            -
            ** Supported @:token_filters@ in {Groonga::DoubleArrayTrie.create} options.
         
     | 
| 
       66 
     | 
    
         
            -
            ** Supported @:token_filters@ in {Groonga::Schema.create_table} options.
         
     | 
| 
       67 
     | 
    
         
            -
            ** Added {Groonga::TokenFilterError}.
         
     | 
| 
       68 
     | 
    
         
            -
            ** [grndump] Supported token filters.
         
     | 
| 
       69 
     | 
    
         
            -
            * Added {Groonga::Expression#keywords}. [GitHub#30]
         
     | 
| 
       70 
     | 
    
         
            -
            * Stopped to require logger object as the first argument of
         
     | 
| 
       71 
     | 
    
         
            -
              {Groonga::Logger.register} when block is specified.
         
     | 
| 
       72 
     | 
    
         
            -
             
     | 
| 
       73 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       74 
     | 
    
         
            -
             
     | 
| 
       75 
     | 
    
         
            -
            * [doc] Removed deprecated example.
         
     | 
| 
       76 
     | 
    
         
            -
              [GitHub#26] [Patch by ongaeshi]
         
     | 
| 
       77 
     | 
    
         
            -
            * Fixed a bug that a column assignment raises an error when
         
     | 
| 
       78 
     | 
    
         
            -
              you assign value with type A and then assign value type B again.
         
     | 
| 
       79 
     | 
    
         
            -
              [GitHub#27] [Patch by Daisuke Goto]
         
     | 
| 
       80 
     | 
    
         
            -
            * Fixed a memory leak in {Groonga::PatriciaTrie#open_near_cursor}.
         
     | 
| 
       81 
     | 
    
         
            -
            * Fixed a bug that you can access a column renamed by
         
     | 
| 
       82 
     | 
    
         
            -
              {Groonga::Column#rename} with old name.
         
     | 
| 
       83 
     | 
    
         
            -
              [GitHub#29] [Patch by Daisuke Goto]
         
     | 
| 
       84 
     | 
    
         
            -
            * [doc] Fixed wrong option name of {Groonga::Logger.register}.
         
     | 
| 
       85 
     | 
    
         
            -
             
     | 
| 
       86 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       87 
     | 
    
         
            -
             
     | 
| 
       88 
     | 
    
         
            -
            * ongaeshi
         
     | 
| 
       89 
     | 
    
         
            -
            * Daisuke Goto
         
     | 
| 
       90 
     | 
    
         
            -
             
     | 
| 
       91 
     | 
    
         
            -
            h2(#4-0-5). 4.0.5: 2014-10-05
         
     | 
| 
       92 
     | 
    
         
            -
             
     | 
| 
       93 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       94 
     | 
    
         
            -
             
     | 
| 
       95 
     | 
    
         
            -
            * [windows] Added cross build task.
         
     | 
| 
       96 
     | 
    
         
            -
            * Added {Groonga::DoubleArrayTrie#update}.
         
     | 
| 
       97 
     | 
    
         
            -
              [GitHub#24] [Patch by Masafumi Yokoyama]
         
     | 
| 
       98 
     | 
    
         
            -
            * Added {Groonga::Record#rename}.
         
     | 
| 
       99 
     | 
    
         
            -
            * [windows] Disabled debug flags.
         
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       102 
     | 
    
         
            -
             
     | 
| 
       103 
     | 
    
         
            -
            * Added @:id => true@ option to {Groonga::Table::KeySupport#delete}.
         
     | 
| 
       104 
     | 
    
         
            -
              @Groonga::Table::KeySupport#delete@ accepts both ID and key. If passed
         
     | 
| 
       105 
     | 
    
         
            -
              value is integer, it is handled as ID. But we can use @Int32@ as key.
         
     | 
| 
       106 
     | 
    
         
            -
              In the case, we can't delete a record by key. Therefore, we added
         
     | 
| 
       107 
     | 
    
         
            -
              @Groonga::Table::KeySupport#delete(id, :id => true)@ API. It introduces
         
     | 
| 
       108 
     | 
    
         
            -
              a backward incompatibility, but it is OK because the current API is a
         
     | 
| 
       109 
     | 
    
         
            -
              bug.
         
     | 
| 
       110 
     | 
    
         
            -
             
     | 
| 
       111 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       112 
     | 
    
         
            -
             
     | 
| 
       113 
     | 
    
         
            -
            * Masafumi Yokoyama
         
     | 
| 
       114 
     | 
    
         
            -
             
     | 
| 
       115 
     | 
    
         
            -
            h2(#4-0-4). 4.0.4: 2014-08-29
         
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
            * Supported Groonga 4.0.4 or later. Groonga 4.0.3 or older are not supported.
         
     | 
| 
       120 
     | 
    
         
            -
            * Added {Groonga::ProcedureType} that has constants as GRN_PROC_XXX.
         
     | 
| 
       121 
     | 
    
         
            -
            * Added {Groonga::Procedure#type} as grn_proc_get_type().
         
     | 
| 
       122 
     | 
    
         
            -
              <pre>
         
     | 
| 
       123 
     | 
    
         
            -
              procedure = Groonga["TokenBigram"]
         
     | 
| 
       124 
     | 
    
         
            -
              p procedure.type == Groonga::ProcedureType::TOKENIZER  #=> true
         
     | 
| 
       125 
     | 
    
         
            -
              </pre>
         
     | 
| 
       126 
     | 
    
         
            -
            * Avoided a crash when {Groonga::Record#inspct} is called on exit.
         
     | 
| 
       127 
     | 
    
         
            -
              [GitHub#18] [Reported by Ippei Obayashi]
         
     | 
| 
       128 
     | 
    
         
            -
            * Updated Free Software Foundation address. [Masafumi Yokoyama]
         
     | 
| 
       129 
     | 
    
         
            -
            * Supported reference weight vector. It requires Groonga 4.0.4 or later.
         
     | 
| 
       130 
     | 
    
         
            -
            * Updated homepage in gemspec to use ranguba.org. [Masafumi Yokoyama]
         
     | 
| 
       131 
     | 
    
         
            -
            * Reduce memory usage without GC.
         
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
       133 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       134 
     | 
    
         
            -
             
     | 
| 
       135 
     | 
    
         
            -
            * Fixed a GC related crash when GC is run while {Groonga::Table#group}.
         
     | 
| 
       136 
     | 
    
         
            -
             
     | 
| 
       137 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       138 
     | 
    
         
            -
             
     | 
| 
       139 
     | 
    
         
            -
            * Ippei Obayashi
         
     | 
| 
       140 
     | 
    
         
            -
            * uu59
         
     | 
| 
       141 
     | 
    
         
            -
            * cosmo0920
         
     | 
| 
       142 
     | 
    
         
            -
             
     | 
| 
       143 
     | 
    
         
            -
            h2(#4-0-3). 4.0.3: 2014-06-04
         
     | 
| 
       144 
     | 
    
         
            -
             
     | 
| 
       145 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       146 
     | 
    
         
            -
             
     | 
| 
       147 
     | 
    
         
            -
            * [windows] Fixed a bug that Rroonga reports load error by
         
     | 
| 
       148 
     | 
    
         
            -
              bundling the fixed version Groonga package.
         
     | 
| 
       149 
     | 
    
         
            -
              [groonga-dev,02398][Reported by Masafumi Yokoyama]
         
     | 
| 
       150 
     | 
    
         
            -
             
     | 
| 
       151 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       152 
     | 
    
         
            -
             
     | 
| 
       153 
     | 
    
         
            -
            * Masafumi Yokoyama
         
     | 
| 
       154 
     | 
    
         
            -
             
     | 
| 
       155 
     | 
    
         
            -
            h2(#4-0-2). 4.0.2: 2014-05-29
         
     | 
| 
       156 
     | 
    
         
            -
             
     | 
| 
       157 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       158 
     | 
    
         
            -
             
     | 
| 
       159 
     | 
    
         
            -
            * Removed needless @--key_type@ option in dump.
         
     | 
| 
       160 
     | 
    
         
            -
              [Reported by Genki Takiuchi]
         
     | 
| 
       161 
     | 
    
         
            -
            * Added sources information to {Groonga::IndexColumn#inspect}.
         
     | 
| 
       162 
     | 
    
         
            -
            * Enabled @with_section@ flag for multiple column index by default.
         
     | 
| 
       163 
     | 
    
         
            -
              See {Groonga::Schema::TableDefinition#index}.
         
     | 
| 
       164 
     | 
    
         
            -
            * Enabled @with_position@ flag for index of a table that has a default
         
     | 
| 
       165 
     | 
    
         
            -
              tokenizer by default. You need to specify @:with_position => false@
         
     | 
| 
       166 
     | 
    
         
            -
              explicitly to disable @with_position@ flag for @TokenDelimit@.
         
     | 
| 
       167 
     | 
    
         
            -
              @TokenDelimit@ is a tokenizer that doesn't need @with_position@ flag.
         
     | 
| 
       168 
     | 
    
         
            -
              See {Groonga::Schema.create_table}.
         
     | 
| 
       169 
     | 
    
         
            -
             
     | 
| 
       170 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       171 
     | 
    
         
            -
             
     | 
| 
       172 
     | 
    
         
            -
            * [GitHub#16] Fixed a memory leak of {Groonga::Table#column}.
         
     | 
| 
       173 
     | 
    
         
            -
              [Reported by rutice]
         
     | 
| 
       174 
     | 
    
         
            -
             
     | 
| 
       175 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       176 
     | 
    
         
            -
             
     | 
| 
       177 
     | 
    
         
            -
            * rutice
         
     | 
| 
       178 
     | 
    
         
            -
            * Genki Takiuchi
         
     | 
| 
       179 
     | 
    
         
            -
             
     | 
| 
       180 
     | 
    
         
            -
            h2(#4-0-1). 4.0.1: 2014-04-04
         
     | 
| 
       181 
     | 
    
         
            -
             
     | 
| 
       182 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       183 
     | 
    
         
            -
             
     | 
| 
       184 
     | 
    
         
            -
            * Supported Groonga 4.0.1. Groonga 4.0.0 or older are not supported.
         
     | 
| 
       185 
     | 
    
         
            -
            * Supported no weight match column case.
         
     | 
| 
       186 
     | 
    
         
            -
              <pre>
         
     | 
| 
       187 
     | 
    
         
            -
              table.select do |record|
         
     | 
| 
       188 
     | 
    
         
            -
                match_target = record.match_target do |target|
         
     | 
| 
       189 
     | 
    
         
            -
                  target.column
         
     | 
| 
       190 
     | 
    
         
            -
                end
         
     | 
| 
       191 
     | 
    
         
            -
                match_target =~ keyword
         
     | 
| 
       192 
     | 
    
         
            -
              end
         
     | 
| 
       193 
     | 
    
         
            -
              </pre>
         
     | 
| 
       194 
     | 
    
         
            -
            * Supported weight vector.
         
     | 
| 
       195 
     | 
    
         
            -
            * grndump: Changed to use @--normalizer@ instead of @KEY_NORMALIZE@.
         
     | 
| 
       196 
     | 
    
         
            -
              Old Groonga can't restore dumped database.
         
     | 
| 
       197 
     | 
    
         
            -
            * {Groonga::IndexClumn#search}: Added @mode@ option.
         
     | 
| 
       198 
     | 
    
         
            -
            * {Groonga::IndexClumn#search}: Added @weight@ option.
         
     | 
| 
       199 
     | 
    
         
            -
            * Accepted String as option key.
         
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       202 
     | 
    
         
            -
             
     | 
| 
       203 
     | 
    
         
            -
            * Fixed a bug that index dump drops index options in Ruby syntax.
         
     | 
| 
       204 
     | 
    
         
            -
             
     | 
| 
       205 
     | 
    
         
            -
             
     | 
| 
       206 
     | 
    
         
            -
            h2(#4-0-0). 4.0.0: 2014-02-09
         
     | 
| 
       207 
     | 
    
         
            -
             
     | 
| 
       208 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       209 
     | 
    
         
            -
             
     | 
| 
       210 
     | 
    
         
            -
            * Supported Groonga 4.0.0. Groonga 3.1.2 or older are not supported.
         
     | 
| 
       211 
     | 
    
         
            -
            * Added install document. [Patch by ongaeshi]
         
     | 
| 
       212 
     | 
    
         
            -
             
     | 
| 
       213 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       214 
     | 
    
         
            -
             
     | 
| 
       215 
     | 
    
         
            -
            * ongaeshi
         
     | 
| 
       216 
     | 
    
         
            -
             
     | 
| 
       217 
     | 
    
         
            -
             
     | 
| 
       218 
     | 
    
         
            -
            h2(#3-1-2). 3.1.2: 2014-01-29
         
     | 
| 
       219 
     | 
    
         
            -
             
     | 
| 
       220 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       221 
     | 
    
         
            -
             
     | 
| 
       222 
     | 
    
         
            -
            * Supported Groonga 3.1.2. Groonga 3.1.1 or older are not supported.
         
     | 
| 
       223 
     | 
    
         
            -
            * Added {Groonga::Table#support_value?}.
         
     | 
| 
       224 
     | 
    
         
            -
            * Added {Groonga::Record#support_value?}.
         
     | 
| 
       225 
     | 
    
         
            -
            * Added @_value@ value to {Groonga::Record#attributes} result.
         
     | 
| 
       226 
     | 
    
         
            -
              [groonga-dev,02046] [Suggested by ongaeshi]
         
     | 
| 
       227 
     | 
    
         
            -
            * Added column values to {Groonga::Record#inspect} result.
         
     | 
| 
       228 
     | 
    
         
            -
              [groonga-dev,02048] [Suggested by ongaeshi]
         
     | 
| 
       229 
     | 
    
         
            -
            * grndump: Added @--dump-indexes@ option that controls schema for
         
     | 
| 
       230 
     | 
    
         
            -
              indexes output. It is useful to dump only schema for indexes.
         
     | 
| 
       231 
     | 
    
         
            -
            * Added {Groonga.lock_timeout}.
         
     | 
| 
       232 
     | 
    
         
            -
            * Added {Groonga.lock_timeout=}.
         
     | 
| 
       233 
     | 
    
         
            -
             
     | 
| 
       234 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       235 
     | 
    
         
            -
             
     | 
| 
       236 
     | 
    
         
            -
            * ongaeshi
         
     | 
| 
       237 
     | 
    
         
            -
             
     | 
| 
       238 
     | 
    
         
            -
            h2(#3-1-1). 3.1.1: 2013-12-29
         
     | 
| 
       239 
     | 
    
         
            -
             
     | 
| 
       240 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       241 
     | 
    
         
            -
             
     | 
| 
       242 
     | 
    
         
            -
            * Supported Groonga 3.1.1.
         
     | 
| 
       243 
     | 
    
         
            -
            * [groonga-database-inspect]: Added @--no-tables@ option for hiding
         
     | 
| 
       244 
     | 
    
         
            -
              all table information.
         
     | 
| 
       245 
     | 
    
         
            -
            * [groonga-database-inspect]: Added @--no-columns@ option for hiding
         
     | 
| 
       246 
     | 
    
         
            -
              all column information.
         
     | 
| 
       247 
     | 
    
         
            -
            * [doc] Updated English mailing list to use Groonga-talk.
         
     | 
| 
       248 
     | 
    
         
            -
              [GitHub#14] [Patch by Masafumi Yokoyama]
         
     | 
| 
       249 
     | 
    
         
            -
            * {Groonga::Expression#append_operation} supports operator name.
         
     | 
| 
       250 
     | 
    
         
            -
            * {Groonga::Expression#append_constant} supports operator name.
         
     | 
| 
       251 
     | 
    
         
            -
            * {Groonga::Expression#append_object} supports operator name.
         
     | 
| 
       252 
     | 
    
         
            -
             
     | 
| 
       253 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       254 
     | 
    
         
            -
             
     | 
| 
       255 
     | 
    
         
            -
            * Masafumi Yokoyama
         
     | 
| 
       256 
     | 
    
         
            -
             
     | 
| 
       257 
     | 
    
         
            -
            h2(#3-1-0). 3.1.0: 2013-11-29
         
     | 
| 
       258 
     | 
    
         
            -
             
     | 
| 
       259 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       260 
     | 
    
         
            -
             
     | 
| 
       261 
     | 
    
         
            -
            * Reduced build failure by automatically Groonga build.
         
     | 
| 
       262 
     | 
    
         
            -
              [Reported by SHIMADA Koji]
         
     | 
| 
       263 
     | 
    
         
            -
            * Added @groonga-database-inspect@ command that inspects passed database.
         
     | 
| 
       264 
     | 
    
         
            -
              [Suggested by Genki Takiuchi]
         
     | 
| 
       265 
     | 
    
         
            -
            * {Groonga::Database#tables} ignores missing objects rather than raising
         
     | 
| 
       266 
     | 
    
         
            -
              an exception. Because the method is interested in only existing tables.
         
     | 
| 
       267 
     | 
    
         
            -
             
     | 
| 
       268 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       269 
     | 
    
         
            -
             
     | 
| 
       270 
     | 
    
         
            -
            * Fixed a bug that {Groonga::Expression#parse} doesn't accept all
         
     | 
| 
       271 
     | 
    
         
            -
              mode and operators.
         
     | 
| 
       272 
     | 
    
         
            -
             
     | 
| 
       273 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       274 
     | 
    
         
            -
             
     | 
| 
       275 
     | 
    
         
            -
            * SHIMADA Koji
         
     | 
| 
       276 
     | 
    
         
            -
            * Genki Takiuchi
         
     | 
| 
       277 
     | 
    
         
            -
             
     | 
| 
       278 
     | 
    
         
            -
            h2(#3-0-9). 3.0.9: 2013-10-29
         
     | 
| 
       279 
     | 
    
         
            -
             
     | 
| 
       280 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       281 
     | 
    
         
            -
             
     | 
| 
       282 
     | 
    
         
            -
            * Supported Groonga 3.0.9.
         
     | 
| 
       283 
     | 
    
         
            -
            * Supported showing error message on error in {Groonga::Object#remove}.
         
     | 
| 
       284 
     | 
    
         
            -
             
     | 
| 
       285 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       286 
     | 
    
         
            -
             
     | 
| 
       287 
     | 
    
         
            -
            * Fixed a crash bug that is caused by assigning @nil@ as source of
         
     | 
| 
       288 
     | 
    
         
            -
              index column.
         
     | 
| 
       289 
     | 
    
         
            -
             
     | 
| 
       290 
     | 
    
         
            -
            h2(#3-0-8). 3.0.8: 2013-09-29
         
     | 
| 
       291 
     | 
    
         
            -
             
     | 
| 
       292 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       293 
     | 
    
         
            -
             
     | 
| 
       294 
     | 
    
         
            -
            * Supported groonga 3.0.8.
         
     | 
| 
       295 
     | 
    
         
            -
            * Supported x64-mingw32 Ruby.
         
     | 
| 
       296 
     | 
    
         
            -
            * Supported Ruby 2.1.0 preview1.
         
     | 
| 
       297 
     | 
    
         
            -
             
     | 
| 
       298 
     | 
    
         
            -
            h2(#3-0-7). 3.0.7: 2013-09-19
         
     | 
| 
       299 
     | 
    
         
            -
             
     | 
| 
       300 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       301 
     | 
    
         
            -
             
     | 
| 
       302 
     | 
    
         
            -
            * Added {Groonga::Table::KeySupport#tokenize}. It requires groonga
         
     | 
| 
       303 
     | 
    
         
            -
              3.0.8. Groonga 3.0.8 is not released yet.
         
     | 
| 
       304 
     | 
    
         
            -
            * Changed return object of {Groonga::Context#select} to groonga-client gem's
         
     | 
| 
       305 
     | 
    
         
            -
              return object. It is a backward imcompatible change. Some APIs are changed.
         
     | 
| 
       306 
     | 
    
         
            -
              For example, @drill_down@ is renamed to @drilldowns@. See
         
     | 
| 
       307 
     | 
    
         
            -
              "Groonga::Client::Response::Select":http://rubydoc.info/gems/groonga-client/Groonga/Client/Response/Select
         
     | 
| 
       308 
     | 
    
         
            -
              about rerturn object details.
         
     | 
| 
       309 
     | 
    
         
            -
            ** Added groonga-client gem, groogna-command gem, gqtp gem dependencies.
         
     | 
| 
       310 
     | 
    
         
            -
             
     | 
| 
       311 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       312 
     | 
    
         
            -
             
     | 
| 
       313 
     | 
    
         
            -
            * Fixed a bug that auto groonga installation is failed.
         
     | 
| 
       314 
     | 
    
         
            -
              [GitHub#12][Patch by Keita Haga]
         
     | 
| 
       315 
     | 
    
         
            -
             
     | 
| 
       316 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       317 
     | 
    
         
            -
             
     | 
| 
       318 
     | 
    
         
            -
            * Keita Haga
         
     | 
| 
       319 
     | 
    
         
            -
             
     | 
| 
       320 
     | 
    
         
            -
            h2(#3-0-6). 3.0.6: 2013-09-13
         
     | 
| 
       321 
     | 
    
         
            -
             
     | 
| 
       322 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       323 
     | 
    
         
            -
             
     | 
| 
       324 
     | 
    
         
            -
            * Supported accessing reference column that referes a table that uses
         
     | 
| 
       325 
     | 
    
         
            -
              Int8/UInt8/Int16/UInt16 key.
         
     | 
| 
       326 
     | 
    
         
            -
             
     | 
| 
       327 
     | 
    
         
            -
            h2(#3-0-5). 3.0.5: 2013-07-29
         
     | 
| 
       328 
     | 
    
         
            -
             
     | 
| 
       329 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       330 
     | 
    
         
            -
             
     | 
| 
       331 
     | 
    
         
            -
            * [dumper] supported dumping of DoubleArrayTrie.
         
     | 
| 
       332 
     | 
    
         
            -
            * Supported Int8/UInt8/Int16/UInt16 to Ruby conversion.
         
     | 
| 
       333 
     | 
    
         
            -
              [groonga-dev,01524][Reported by Masaharu YOSHIOKA]
         
     | 
| 
       334 
     | 
    
         
            -
            * Added memory pool mechanism to reduce GC easily.
         
     | 
| 
       335 
     | 
    
         
            -
              {Groonga::Context#push_memory_pool} and {Groonga::Context#pop_memory_pool}
         
     | 
| 
       336 
     | 
    
         
            -
              are added.
         
     | 
| 
       337 
     | 
    
         
            -
              You can close temporary table objects automatically:
         
     | 
| 
       338 
     | 
    
         
            -
              <pre>
         
     | 
| 
       339 
     | 
    
         
            -
              context.push_memory_pool do
         
     | 
| 
       340 
     | 
    
         
            -
                # create tempoeray table objects by select, group, sort and so on...
         
     | 
| 
       341 
     | 
    
         
            -
              end
         
     | 
| 
       342 
     | 
    
         
            -
              # createed tempoeray table objects are closed automatically
         
     | 
| 
       343 
     | 
    
         
            -
              </pre>
         
     | 
| 
       344 
     | 
    
         
            -
            * Supported max int32 over Fixnum
         
     | 
| 
       345 
     | 
    
         
            -
              [Reported by xtuaok]
         
     | 
| 
       346 
     | 
    
         
            -
             
     | 
| 
       347 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       348 
     | 
    
         
            -
             
     | 
| 
       349 
     | 
    
         
            -
            * [dumper] fixed a bug that no column table isn't dumped.
         
     | 
| 
       350 
     | 
    
         
            -
             
     | 
| 
       351 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       352 
     | 
    
         
            -
             
     | 
| 
       353 
     | 
    
         
            -
            * Masaharu YOSHIOKA
         
     | 
| 
       354 
     | 
    
         
            -
            * xtuaok
         
     | 
| 
       355 
     | 
    
         
            -
             
     | 
| 
       356 
     | 
    
         
            -
            h2(#3-0-4). 3.0.4: 2013-07-04
         
     | 
| 
       357 
     | 
    
         
            -
             
     | 
| 
       358 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       359 
     | 
    
         
            -
             
     | 
| 
       360 
     | 
    
         
            -
            * Fixed a rroogna 3.0.3 gem package for Windows.
         
     | 
| 
       361 
     | 
    
         
            -
             
     | 
| 
       362 
     | 
    
         
            -
            h2(#3-0-3). 3.0.3: 2013-07-04
         
     | 
| 
       363 
     | 
    
         
            -
             
     | 
| 
       364 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       365 
     | 
    
         
            -
             
     | 
| 
       366 
     | 
    
         
            -
            * Required groonga >= 3.0.5.
         
     | 
| 
       367 
     | 
    
         
            -
            * Added an error check for creating a result table of {Groonga::Table#select}.
         
     | 
| 
       368 
     | 
    
         
            -
            * Added {Groonga::Operator::AND_NOT}.
         
     | 
| 
       369 
     | 
    
         
            -
            * Deprecated {Groonga::Operator::BUT} because groonga deprecated it.
         
     | 
| 
       370 
     | 
    
         
            -
              Use {Groonga::Operator::AND_NOT} instead.
         
     | 
| 
       371 
     | 
    
         
            -
            * Added {Groonga::Array#unblock}.
         
     | 
| 
       372 
     | 
    
         
            -
            * Added @:max_n_sub_records@ option to {Groonga::Table#group}.
         
     | 
| 
       373 
     | 
    
         
            -
            * Added {Groonga::Table#each_sub_record}.
         
     | 
| 
       374 
     | 
    
         
            -
            * Supported groonga to Ruby conversion for vector value.
         
     | 
| 
       375 
     | 
    
         
            -
            * Added @:reference => true@ option to {Groonga::Expression#define_variable}
         
     | 
| 
       376 
     | 
    
         
            -
              that defines reference type variable.
         
     | 
| 
       377 
     | 
    
         
            -
            * Added {Groonga::Record#sub_records} that returns sub records for the record.
         
     | 
| 
       378 
     | 
    
         
            -
              Sub records is a {Groonga::SubRecords} instance.
         
     | 
| 
       379 
     | 
    
         
            -
             
     | 
| 
       380 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       381 
     | 
    
         
            -
             
     | 
| 
       382 
     | 
    
         
            -
            * Fixed {Groonga::Expression#[]} return type. It returns {Groonga::Variable}
         
     | 
| 
       383 
     | 
    
         
            -
              instead of value itself. CAUTION: It is a backward incompatible change.
         
     | 
| 
       384 
     | 
    
         
            -
             
     | 
| 
       385 
     | 
    
         
            -
            h2(#3-0-2). 3.0.2: 2013-05-29
         
     | 
| 
       386 
     | 
    
         
            -
             
     | 
| 
       387 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       388 
     | 
    
         
            -
             
     | 
| 
       389 
     | 
    
         
            -
            * Required groonga >= 3.0.4.
         
     | 
| 
       390 
     | 
    
         
            -
            * Supported set/get a vector of Time.
         
     | 
| 
       391 
     | 
    
         
            -
            * [grndump] Stopped to dump index only tables. They are needless.
         
     | 
| 
       392 
     | 
    
         
            -
            * Added {Groonga::Record#to_json}.
         
     | 
| 
       393 
     | 
    
         
            -
            * Added {Groonga::IndexColumn#add}.
         
     | 
| 
       394 
     | 
    
         
            -
            * Added {Groonga::IndexColumn#delete}.
         
     | 
| 
       395 
     | 
    
         
            -
            * Added {Groonga::IndexColumn#update}.
         
     | 
| 
       396 
     | 
    
         
            -
            * Deprecated {Groonga::IndexColumn#[]=}. Use {Groonga::IndexColumn#add},
         
     | 
| 
       397 
     | 
    
         
            -
              {Groonga::IndexColumn#delete} or {Groonga::IndexColumn#update} instead.
         
     | 
| 
       398 
     | 
    
         
            -
            * Added {Groonga::Table#have_n_sub_records_space?}.
         
     | 
| 
       399 
     | 
    
         
            -
            * [grndump] Don't dump "register PLUGIN" when schema dump is disabled.
         
     | 
| 
       400 
     | 
    
         
            -
             
     | 
| 
       401 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       402 
     | 
    
         
            -
             
     | 
| 
       403 
     | 
    
         
            -
            * [grndump]
         
     | 
| 
       404 
     | 
    
         
            -
              Fixed a bug that reference tables may be dumpped before referenced tables.
         
     | 
| 
       405 
     | 
    
         
            -
             
     | 
| 
       406 
     | 
    
         
            -
            h2(#3-0-1). 3.0.1: 2013-05-01
         
     | 
| 
       407 
     | 
    
         
            -
             
     | 
| 
       408 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       409 
     | 
    
         
            -
             
     | 
| 
       410 
     | 
    
         
            -
            * Required groonga >= 3.0.3.
         
     | 
| 
       411 
     | 
    
         
            -
            * Supported assigning weight to value. See {Groonga::Table#set_column_value},
         
     | 
| 
       412 
     | 
    
         
            -
              {Groonga::Record#initialize} and {Groonga::Record#[]=} for details.
         
     | 
| 
       413 
     | 
    
         
            -
            * Renamed to {Groonga::QueryLogger.path} from {Groonga::Logger.query_log_path}.
         
     | 
| 
       414 
     | 
    
         
            -
            * Renamed to {Groonga::QueryLogger.path=} from {Groonga::Logger.query_log_path=}.
         
     | 
| 
       415 
     | 
    
         
            -
            * Renamed to {Groonga::Logger.path} from {Groonga::Logger.log_path}.
         
     | 
| 
       416 
     | 
    
         
            -
            * Renamed to {Groonga::Logger.path=} from {Groonga::Logger.log_path=}.
         
     | 
| 
       417 
     | 
    
         
            -
            * Added missing "Packnga >= 0.9.7" requirement. [Reported by takkanm]
         
     | 
| 
       418 
     | 
    
         
            -
             
     | 
| 
       419 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       420 
     | 
    
         
            -
             
     | 
| 
       421 
     | 
    
         
            -
            * Fixed a memory leak on error.
         
     | 
| 
       422 
     | 
    
         
            -
             
     | 
| 
       423 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       424 
     | 
    
         
            -
             
     | 
| 
       425 
     | 
    
         
            -
            * takkanm
         
     | 
| 
       426 
     | 
    
         
            -
             
     | 
| 
       427 
     | 
    
         
            -
            h2(#3-0-0). 3.0.0: 2013-03-29
         
     | 
| 
       428 
     | 
    
         
            -
             
     | 
| 
       429 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       430 
     | 
    
         
            -
             
     | 
| 
       431 
     | 
    
         
            -
            * Required groonga >= 3.0.2.
         
     | 
| 
       432 
     | 
    
         
            -
            * Added block support to {Groonga::Context#create_database}. If a
         
     | 
| 
       433 
     | 
    
         
            -
              block is given, created database is closed on block exit.
         
     | 
| 
       434 
     | 
    
         
            -
            * [experimental] Added {Groonga::Array#push}.
         
     | 
| 
       435 
     | 
    
         
            -
            * [experimental] Added {Groonga::Array#pull}.
         
     | 
| 
       436 
     | 
    
         
            -
            * Added more closed object checks.
         
     | 
| 
       437 
     | 
    
         
            -
              [GitHub #8][Reported by KITAITI Makoto]
         
     | 
| 
       438 
     | 
    
         
            -
            * Added block support to {Groonga::Context#restore}. If a block is
         
     | 
| 
       439 
     | 
    
         
            -
              given, command and its response are yielded.
         
     | 
| 
       440 
     | 
    
         
            -
             
     | 
| 
       441 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       442 
     | 
    
         
            -
             
     | 
| 
       443 
     | 
    
         
            -
            * KITAITI Makoto
         
     | 
| 
       444 
     | 
    
         
            -
             
     | 
| 
       445 
     | 
    
         
            -
            h2(#2-1-3). 2.1.3: 2013-01-29
         
     | 
| 
       446 
     | 
    
         
            -
             
     | 
| 
       447 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       448 
     | 
    
         
            -
             
     | 
| 
       449 
     | 
    
         
            -
            * Removed Groonga::View removed in groonga 2.1.2.
         
     | 
| 
       450 
     | 
    
         
            -
            * [doc] Added tutorial in English.
         
     | 
| 
       451 
     | 
    
         
            -
            ** for English:http://ranguba.org/rroonga/en/file.tutorial.html
         
     | 
| 
       452 
     | 
    
         
            -
            ** for Japanese:http://ranguba.org/rroonga/ja/file.tutorial.html
         
     | 
| 
       453 
     | 
    
         
            -
            * [context] Added Context#restore. This method restores command dumped
         
     | 
| 
       454 
     | 
    
         
            -
              by "grndump" command. Please see example below:
         
     | 
| 
       455 
     | 
    
         
            -
            <pre>
         
     | 
| 
       456 
     | 
    
         
            -
            !!!ruby
         
     | 
| 
       457 
     | 
    
         
            -
            dumped_commands = File.read("dump.grn")
         
     | 
| 
       458 
     | 
    
         
            -
            context.restore(dumped_commands)
         
     | 
| 
       459 
     | 
    
         
            -
            </pre>
         
     | 
| 
       460 
     | 
    
         
            -
            * Supported new logger API in groonga. Old API isn't used anymore.
         
     | 
| 
       461 
     | 
    
         
            -
            * For installing groonga with this gem:
         
     | 
| 
       462 
     | 
    
         
            -
            ** Stopped to install documentation about groonga. See "Web site":http://groonga.org/docs/ instead.
         
     | 
| 
       463 
     | 
    
         
            -
            ** Stopped to build static library because it isn't used by rroonga.
         
     | 
| 
       464 
     | 
    
         
            -
             
     | 
| 
       465 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       466 
     | 
    
         
            -
             
     | 
| 
       467 
     | 
    
         
            -
            * [dumper] Reduced needless new lines in dumped commands.
         
     | 
| 
       468 
     | 
    
         
            -
             
     | 
| 
       469 
     | 
    
         
            -
            * For ranguba project:
         
     | 
| 
       470 
     | 
    
         
            -
            ** [template] Removed needless block for sponsor by rubyforge.
         
     | 
| 
       471 
     | 
    
         
            -
            ** [template] Removed needless piwik tag.
         
     | 
| 
       472 
     | 
    
         
            -
            ** [template] Fixed URLs of references in Japanese.
         
     | 
| 
       473 
     | 
    
         
            -
             
     | 
| 
       474 
     | 
    
         
            -
            h2(#2-1-2). 2.1.2: 2013-01-04
         
     | 
| 
       475 
     | 
    
         
            -
             
     | 
| 
       476 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       477 
     | 
    
         
            -
             
     | 
| 
       478 
     | 
    
         
            -
            * Fixed GC related crash. Table's domain and range are also marked.
         
     | 
| 
       479 
     | 
    
         
            -
             
     | 
| 
       480 
     | 
    
         
            -
            h2(#2-1-1). 2.1.1: 2012-12-29
         
     | 
| 
       481 
     | 
    
         
            -
             
     | 
| 
       482 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       483 
     | 
    
         
            -
             
     | 
| 
       484 
     | 
    
         
            -
            * Required groonga 2.1.1 because groonga 2.1.0 has a serious bug
         
     | 
| 
       485 
     | 
    
         
            -
              related to key normalization.
         
     | 
| 
       486 
     | 
    
         
            -
             
     | 
| 
       487 
     | 
    
         
            -
            h2(#2-1-0). 2.1.0: 2012-12-29
         
     | 
| 
       488 
     | 
    
         
            -
             
     | 
| 
       489 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       490 
     | 
    
         
            -
             
     | 
| 
       491 
     | 
    
         
            -
            * Required groonga 2.1.0.
         
     | 
| 
       492 
     | 
    
         
            -
            * Supported mass record deletion with block.
         
     | 
| 
       493 
     | 
    
         
            -
              [groonga-dev,01138][Suggested by ongaeshi]
         
     | 
| 
       494 
     | 
    
         
            -
            * Added Groonga::Normalizer.normalize (experimental). It normalize string.
         
     | 
| 
       495 
     | 
    
         
            -
              e.g.)
         
     | 
| 
       496 
     | 
    
         
            -
                Groonga::Normalizer.normalize("AbC") # => "abc"
         
     | 
| 
       497 
     | 
    
         
            -
              Now, it removes any spaces by default, but it will be customized soon.
         
     | 
| 
       498 
     | 
    
         
            -
            * Supported :normalizer option in DoubleArrayTrie, PatriciaTrie, Hash,
         
     | 
| 
       499 
     | 
    
         
            -
              Schema when creating tables.
         
     | 
| 
       500 
     | 
    
         
            -
            * [table] Added using normalizer accessor.
         
     | 
| 
       501 
     | 
    
         
            -
            * [table] Used normalizer for checking key normalization is enabled or not.
         
     | 
| 
       502 
     | 
    
         
            -
            * Added groonga-index-dump tool (experimental).
         
     | 
| 
       503 
     | 
    
         
            -
              This tool dumps infomations for each index from DB.
         
     | 
| 
       504 
     | 
    
         
            -
              Dumped informations are contained at "INDEX_NAME.dump" files in
         
     | 
| 
       505 
     | 
    
         
            -
              "TARGET_TABLE_NAME.index_INDEX_COLUMN_NAME".
         
     | 
| 
       506 
     | 
    
         
            -
              e.g.)
         
     | 
| 
       507 
     | 
    
         
            -
             
     | 
| 
       508 
     | 
    
         
            -
              <pre>
         
     | 
| 
       509 
     | 
    
         
            -
               $ cat index-dump.sdf
         
     | 
| 
       510 
     | 
    
         
            -
                 table_create --name Video --flags TABLE_HASH_KEY --key_type UInt32
         
     | 
| 
       511 
     | 
    
         
            -
                 table_create --name Tag --flags TABLE_HASH_KEY --key_type ShortText
         
     | 
| 
       512 
     | 
    
         
            -
                 column_create --table Video --name title --flags COLUMN_SCALAR --type ShortText
         
     | 
| 
       513 
     | 
    
         
            -
                 column_create --table Video --name tags --flags COLUMN_VECTOR --type Tag
         
     | 
| 
       514 
     | 
    
         
            -
                 column_create --table Tag --name index_tags --flags COLUMN_INDEX --type Video --source tags
         
     | 
| 
       515 
     | 
    
         
            -
                 load --table Video
         
     | 
| 
       516 
     | 
    
         
            -
                 [
         
     | 
| 
       517 
     | 
    
         
            -
                 {"_key":1,"title":"groonga Demo","tags":["IT","Server","groonga"]},
         
     | 
| 
       518 
     | 
    
         
            -
                 {"_key":2,"title":"Ultra Baseball","tags":["Sports","Baseball"]},
         
     | 
| 
       519 
     | 
    
         
            -
                 ]
         
     | 
| 
       520 
     | 
    
         
            -
              $ groonga --file index-dump.sdf -n index-dump.db
         
     | 
| 
       521 
     | 
    
         
            -
              $ groonga-index-dump --output-directory=path/to/index/ index-dump.db
         
     | 
| 
       522 
     | 
    
         
            -
              $ cd path/to/index/
         
     | 
| 
       523 
     | 
    
         
            -
              $ ls Tag.index_tags
         
     | 
| 
       524 
     | 
    
         
            -
                Baseball.dump  IT.dump       Server.dump  Sports.dump  groonga.dump
         
     | 
| 
       525 
     | 
    
         
            -
              $ cat path/to/index/Tag.index_tags/groonga.dump
         
     | 
| 
       526 
     | 
    
         
            -
                index: Tag.index_tags	term: <groonga>	domain: Tag	range: Video	have_section: false	have_weight: false	have_position: false
         
     | 
| 
       527 
     | 
    
         
            -
                 weight	position        term_frequency	record
         
     | 
| 
       528 
     | 
    
         
            -
                 0    2     1   Video[ 1 ].tags
         
     | 
| 
       529 
     | 
    
         
            -
              </pre>
         
     | 
| 
       530 
     | 
    
         
            -
             
     | 
| 
       531 
     | 
    
         
            -
            * Added flag options to Groonga::IndexColumn#open_cursor.
         
     | 
| 
       532 
     | 
    
         
            -
              The flag options are :with_section, :with_weight, :with_position.
         
     | 
| 
       533 
     | 
    
         
            -
              They are enabled by default if each option is specified in creating
         
     | 
| 
       534 
     | 
    
         
            -
              a index column.
         
     | 
| 
       535 
     | 
    
         
            -
            * [Snippet] Showed the error message when specified context wasn't
         
     | 
| 
       536 
     | 
    
         
            -
              associated with a database by Groonga::Database#open or #create.
         
     | 
| 
       537 
     | 
    
         
            -
            * [inspect] Supported to display index column related flags for index
         
     | 
| 
       538 
     | 
    
         
            -
              column only.
         
     | 
| 
       539 
     | 
    
         
            -
              "index column related flags" are WITH_SECTION, WITH_WEIGHT and
         
     | 
| 
       540 
     | 
    
         
            -
              WITH_POSITION.
         
     | 
| 
       541 
     | 
    
         
            -
            * [inspect] Added default tokenizer and normalizer infomation.
         
     | 
| 
       542 
     | 
    
         
            -
            * Supported Groonga::QueryLogger. This class is used to log query log.
         
     | 
| 
       543 
     | 
    
         
            -
              Please see its reference for detail.
         
     | 
| 
       544 
     | 
    
         
            -
             
     | 
| 
       545 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       546 
     | 
    
         
            -
             
     | 
| 
       547 
     | 
    
         
            -
            * Move groonga-query-log-extract to groonga-query-log.
         
     | 
| 
       548 
     | 
    
         
            -
              Please install groogna-query-log gem to use this tool.
         
     | 
| 
       549 
     | 
    
         
            -
              how to install:
         
     | 
| 
       550 
     | 
    
         
            -
                  gem install groonga-query-log
         
     | 
| 
       551 
     | 
    
         
            -
            * Returned Groonga::Array instead of Array by Table#sort.
         
     | 
| 
       552 
     | 
    
         
            -
              [GitHub: #8][Suggested by Genki Takiuchi]
         
     | 
| 
       553 
     | 
    
         
            -
              CAUTION: This is backward incompatible change. You need to use
         
     | 
| 
       554 
     | 
    
         
            -
              record.value to get the original record.
         
     | 
| 
       555 
     | 
    
         
            -
              The following code shows how to use old style:
         
     | 
| 
       556 
     | 
    
         
            -
                result_since_2_1_0 = table.sort(["sort_key"])
         
     | 
| 
       557 
     | 
    
         
            -
                result_before_2_1_0 = result_since_2_1_0.collect do |record|
         
     | 
| 
       558 
     | 
    
         
            -
                  record.value
         
     | 
| 
       559 
     | 
    
         
            -
                end
         
     | 
| 
       560 
     | 
    
         
            -
             
     | 
| 
       561 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       562 
     | 
    
         
            -
             
     | 
| 
       563 
     | 
    
         
            -
            * ongaeshi
         
     | 
| 
       564 
     | 
    
         
            -
            * Genki Takiuchi
         
     | 
| 
       565 
     | 
    
         
            -
             
     | 
| 
       566 
     | 
    
         
            -
            h2(#2-0-8). 2.0.8: 2012-12-02
         
     | 
| 
       567 
     | 
    
         
            -
             
     | 
| 
       568 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       569 
     | 
    
         
            -
             
     | 
| 
       570 
     | 
    
         
            -
            * Required groonga 2.0.9.
         
     | 
| 
       571 
     | 
    
         
            -
             
     | 
| 
       572 
     | 
    
         
            -
            h2(#2-0-7). 2.0.7: 2012-11-29
         
     | 
| 
       573 
     | 
    
         
            -
             
     | 
| 
       574 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       575 
     | 
    
         
            -
             
     | 
| 
       576 
     | 
    
         
            -
            * Added Groonga::Posting#record. This method returns the record for
         
     | 
| 
       577 
     | 
    
         
            -
              the record ID in table.
         
     | 
| 
       578 
     | 
    
         
            -
            * Added Groonga::Posting#term. This method returns the record for the
         
     | 
| 
       579 
     | 
    
         
            -
              term ID in table.
         
     | 
| 
       580 
     | 
    
         
            -
            * Supported GRN_OBJ_KEY_VAR_SIZE for Groonga::Type#inspect.
         
     | 
| 
       581 
     | 
    
         
            -
              GRN_OBJ_KEY_CAR_SIZE specifies its column is variable size.
         
     | 
| 
       582 
     | 
    
         
            -
            * [Type] Added reader methods to Groonga::Type (#size and #flags).
         
     | 
| 
       583 
     | 
    
         
            -
            * [Type] Added predicate methods to Groonga::Type.
         
     | 
| 
       584 
     | 
    
         
            -
              Added methods are #fixed_size?, #variable_size?, #unsigned_integer?,
         
     | 
| 
       585 
     | 
    
         
            -
              #integer?, #float? and #geo_point?.
         
     | 
| 
       586 
     | 
    
         
            -
             
     | 
| 
       587 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       588 
     | 
    
         
            -
             
     | 
| 
       589 
     | 
    
         
            -
            * Removed query log related codes.
         
     | 
| 
       590 
     | 
    
         
            -
              This feature moved to groonga-query-log gem and it is relased soon.
         
     | 
| 
       591 
     | 
    
         
            -
             
     | 
| 
       592 
     | 
    
         
            -
            h2(#2-0-6). 2.0.6: 2012-10-25
         
     | 
| 
       593 
     | 
    
         
            -
             
     | 
| 
       594 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       595 
     | 
    
         
            -
             
     | 
| 
       596 
     | 
    
         
            -
            * [dump] Put index columns at the bottom (after loads).
         
     | 
| 
       597 
     | 
    
         
            -
              It is for using offline index construction.
         
     | 
| 
       598 
     | 
    
         
            -
            * Added term_extract in Table#select by @table.select {|record|
         
     | 
| 
       599 
     | 
    
         
            -
              record.key.term_extract(text)}@ syntax.
         
     | 
| 
       600 
     | 
    
         
            -
            * Supported :allow_leading_not as a option of #select.
         
     | 
| 
       601 
     | 
    
         
            -
              You should use this option carefully. It takes a long time to search
         
     | 
| 
       602 
     | 
    
         
            -
              all records which doesn't include a word. In addition, when the
         
     | 
| 
       603 
     | 
    
         
            -
              number of records is large, to search them with this option is
         
     | 
| 
       604 
     | 
    
         
            -
              slowly.
         
     | 
| 
       605 
     | 
    
         
            -
             
     | 
| 
       606 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       607 
     | 
    
         
            -
             
     | 
| 
       608 
     | 
    
         
            -
            * Changed option name for debug build in extconf.rb from --with-debug
         
     | 
| 
       609 
     | 
    
         
            -
              to --enable-debug-log.
         
     | 
| 
       610 
     | 
    
         
            -
             
     | 
| 
       611 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       612 
     | 
    
         
            -
             
     | 
| 
       613 
     | 
    
         
            -
            * Fixed display collapse in the references.
         
     | 
| 
       614 
     | 
    
         
            -
             
     | 
| 
       615 
     | 
    
         
            -
            h2(#2-0-5). 2.0.5: 2012-09-28
         
     | 
| 
       616 
     | 
    
         
            -
             
     | 
| 
       617 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       618 
     | 
    
         
            -
             
     | 
| 
       619 
     | 
    
         
            -
            * Supported groonga 2.0.7.
         
     | 
| 
       620 
     | 
    
         
            -
            * Removed the workaround to install rroonga with old groonga.
         
     | 
| 
       621 
     | 
    
         
            -
            * Added more error checks.
         
     | 
| 
       622 
     | 
    
         
            -
            * Added Database#tables. [Suggested by @temitan]
         
     | 
| 
       623 
     | 
    
         
            -
            * Supported Enumerator for #each on Database, Table, TableCursor and
         
     | 
| 
       624 
     | 
    
         
            -
              IndexCursor.
         
     | 
| 
       625 
     | 
    
         
            -
            * Added WGS84GeoPoint and TokyoGeoPoint.
         
     | 
| 
       626 
     | 
    
         
            -
            * [dumper] supported dumping of WGS84GeoPoint and TokyoGeoPoint.
         
     | 
| 
       627 
     | 
    
         
            -
            * [dumper] worked on non UTF-8 extenal output encoding environment.
         
     | 
| 
       628 
     | 
    
         
            -
            * [dumper] sorted table and column names.
         
     | 
| 
       629 
     | 
    
         
            -
            * [dumper] ignored invalid byte.
         
     | 
| 
       630 
     | 
    
         
            -
            * [grndump] showed the warning for invalid character.
         
     | 
| 
       631 
     | 
    
         
            -
            * [grndump] supported database that is created by old groonga.
         
     | 
| 
       632 
     | 
    
         
            -
            * Added Groonga::Context#ruby_encoding.
         
     | 
| 
       633 
     | 
    
         
            -
            * Added many documents in codes but showed no references.
         
     | 
| 
       634 
     | 
    
         
            -
             
     | 
| 
       635 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       636 
     | 
    
         
            -
             
     | 
| 
       637 
     | 
    
         
            -
            * Added missing backslash escape for groonga command.
         
     | 
| 
       638 
     | 
    
         
            -
             
     | 
| 
       639 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       640 
     | 
    
         
            -
             
     | 
| 
       641 
     | 
    
         
            -
            * @temitan
         
     | 
| 
       642 
     | 
    
         
            -
             
     | 
| 
       643 
     | 
    
         
            -
            h2(#2-0-4). 2.0.4: 2012-05-02
         
     | 
| 
       644 
     | 
    
         
            -
             
     | 
| 
       645 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       646 
     | 
    
         
            -
             
     | 
| 
       647 
     | 
    
         
            -
            * Fixed a bug that weight of match target is ignored.
         
     | 
| 
       648 
     | 
    
         
            -
             
     | 
| 
       649 
     | 
    
         
            -
            h2(#2-0-3). 2.0.3: 2012-05-02
         
     | 
| 
       650 
     | 
    
         
            -
             
     | 
| 
       651 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       652 
     | 
    
         
            -
             
     | 
| 
       653 
     | 
    
         
            -
            * Supported groonga 2.0.2.
         
     | 
| 
       654 
     | 
    
         
            -
            * Groonga::Table#each supports options that are same as
         
     | 
| 
       655 
     | 
    
         
            -
              Groonga::Table#open_cursor's one.
         
     | 
| 
       656 
     | 
    
         
            -
            * [grndump] added @--order-by=id@ option. With this option, dumped
         
     | 
| 
       657 
     | 
    
         
            -
              records are sorted by ID instead of key. You can restore records
         
     | 
| 
       658 
     | 
    
         
            -
              without ID change if you don't delete any records. [#1341]
         
     | 
| 
       659 
     | 
    
         
            -
            * Supported building on Windows with RubyInstaller for Windows with DevKit.
         
     | 
| 
       660 
     | 
    
         
            -
              [GitHub#6] [Patch by @ongaeshi]
         
     | 
| 
       661 
     | 
    
         
            -
            * Supported similar search by @table.select {|record|
         
     | 
| 
       662 
     | 
    
         
            -
              record.column.similar_search(text)}@ syntax.
         
     | 
| 
       663 
     | 
    
         
            -
             
     | 
| 
       664 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       665 
     | 
    
         
            -
             
     | 
| 
       666 
     | 
    
         
            -
            * Fixed a GC related crach bug.
         
     | 
| 
       667 
     | 
    
         
            -
             
     | 
| 
       668 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       669 
     | 
    
         
            -
             
     | 
| 
       670 
     | 
    
         
            -
            * @ongaeshi
         
     | 
| 
       671 
     | 
    
         
            -
             
     | 
| 
       672 
     | 
    
         
            -
            h2(#2-0-2). 2.0.2: 2012-03-29
         
     | 
| 
       673 
     | 
    
         
            -
             
     | 
| 
       674 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       675 
     | 
    
         
            -
             
     | 
| 
       676 
     | 
    
         
            -
            * Supported groonga 2.0.1.
         
     | 
| 
       677 
     | 
    
         
            -
            * Added "logos":http://groonga.rubyforge.org/#logo .
         
     | 
| 
       678 
     | 
    
         
            -
             
     | 
| 
       679 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       680 
     | 
    
         
            -
             
     | 
| 
       681 
     | 
    
         
            -
            * Fixed a Groonga::Snipet related crach bug caused by GC.
         
     | 
| 
       682 
     | 
    
         
            -
             
     | 
| 
       683 
     | 
    
         
            -
            h2(#2-0-0). 2.0.0: 2012-03-22
         
     | 
| 
       684 
     | 
    
         
            -
             
     | 
| 
       685 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       686 
     | 
    
         
            -
             
     | 
| 
       687 
     | 
    
         
            -
            * Supported groonga 2.0.0.
         
     | 
| 
       688 
     | 
    
         
            -
            * [gem][windows] Removed mswin packages.
         
     | 
| 
       689 
     | 
    
         
            -
             
     | 
| 
       690 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       691 
     | 
    
         
            -
             
     | 
| 
       692 
     | 
    
         
            -
            * [test] Fixed version test failure. [GitHub#4] [Reported by @takkanm]
         
     | 
| 
       693 
     | 
    
         
            -
            * Fixed a Groonga::Expression related crach bug caused by GC.
         
     | 
| 
       694 
     | 
    
         
            -
            * [doc] Fixed broken HTML output. [groonga-dev,00699]
         
     | 
| 
       695 
     | 
    
         
            -
              [Reported by Hirano]
         
     | 
| 
       696 
     | 
    
         
            -
             
     | 
| 
       697 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       698 
     | 
    
         
            -
             
     | 
| 
       699 
     | 
    
         
            -
            * @takkanm
         
     | 
| 
       700 
     | 
    
         
            -
            * Hirano
         
     | 
| 
       701 
     | 
    
         
            -
             
     | 
| 
       702 
     | 
    
         
            -
            h2(#1-3-1). 1.3.1: 2012-01-29
         
     | 
| 
       703 
     | 
    
         
            -
             
     | 
| 
       704 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       705 
     | 
    
         
            -
             
     | 
| 
       706 
     | 
    
         
            -
            * Supported groonga 1.3.0.
         
     | 
| 
       707 
     | 
    
         
            -
            * [schema] Supported Int8, Int16, UInt8 and UInt16.
         
     | 
| 
       708 
     | 
    
         
            -
            * [schema] Supported TokyoGeoPoint and WGS84GeoPoint.
         
     | 
| 
       709 
     | 
    
         
            -
            * [schema][dumper] Supported Boolean and more built-in types.
         
     | 
| 
       710 
     | 
    
         
            -
              [Reported by @mashiro]
         
     | 
| 
       711 
     | 
    
         
            -
            * [schema] Supported type object as column type. [#1002]
         
     | 
| 
       712 
     | 
    
         
            -
            * Added Groonga::VariableSizeColumn#compressed?. [#1004]
         
     | 
| 
       713 
     | 
    
         
            -
            * Added Groonga::Record#score=.
         
     | 
| 
       714 
     | 
    
         
            -
            * Improve performance for encoded string.
         
     | 
| 
       715 
     | 
    
         
            -
            * Added Groonga::Command::Builder.escape_value.
         
     | 
| 
       716 
     | 
    
         
            -
             
     | 
| 
       717 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       718 
     | 
    
         
            -
             
     | 
| 
       719 
     | 
    
         
            -
            * @mashiro
         
     | 
| 
       720 
     | 
    
         
            -
             
     | 
| 
       721 
     | 
    
         
            -
            h2(#1-3-0). 1.3.0: 2011-11-29
         
     | 
| 
       722 
     | 
    
         
            -
             
     | 
| 
       723 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       724 
     | 
    
         
            -
             
     | 
| 
       725 
     | 
    
         
            -
            * [schema] Remove also needless db.tables/ directory if it is empty.
         
     | 
| 
       726 
     | 
    
         
            -
            * [schema] Remove also needless db.tables/table.columns/ directory if it is empty.
         
     | 
| 
       727 
     | 
    
         
            -
            * Added query log parser.
         
     | 
| 
       728 
     | 
    
         
            -
            * Added groonga-query-log-extract command.
         
     | 
| 
       729 
     | 
    
         
            -
            * Added grntest log analyzer.
         
     | 
| 
       730 
     | 
    
         
            -
            * Added JSON gem dependency.
         
     | 
| 
       731 
     | 
    
         
            -
            * Supported groonga 1.2.8.
         
     | 
| 
       732 
     | 
    
         
            -
            * Dropped groonga 1.2.7 or former support.
         
     | 
| 
       733 
     | 
    
         
            -
            * Added Groonga::Table#defrag.
         
     | 
| 
       734 
     | 
    
         
            -
            * Added Groonga::Table#rename.
         
     | 
| 
       735 
     | 
    
         
            -
            * Added Groonga::Column#rename.
         
     | 
| 
       736 
     | 
    
         
            -
            * Added Groonga::DoubleArrayTrie.
         
     | 
| 
       737 
     | 
    
         
            -
            * [schema] Supported table rename.
         
     | 
| 
       738 
     | 
    
         
            -
            * [schema] Supported column rename.
         
     | 
| 
       739 
     | 
    
         
            -
            * [schema] Supported double array trie.
         
     | 
| 
       740 
     | 
    
         
            -
             
     | 
| 
       741 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       742 
     | 
    
         
            -
             
     | 
| 
       743 
     | 
    
         
            -
            * [schema] Don't use named path by default for location aware DB.
         
     | 
| 
       744 
     | 
    
         
            -
             
     | 
| 
       745 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       746 
     | 
    
         
            -
             
     | 
| 
       747 
     | 
    
         
            -
            * Fixed a crash problem on GC.
         
     | 
| 
       748 
     | 
    
         
            -
             
     | 
| 
       749 
     | 
    
         
            -
            h2. 1.2.9: 2011-09-16
         
     | 
| 
       750 
     | 
    
         
            -
             
     | 
| 
       751 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       752 
     | 
    
         
            -
             
     | 
| 
       753 
     | 
    
         
            -
            * deleted unneed object files.
         
     | 
| 
       754 
     | 
    
         
            -
             
     | 
| 
       755 
     | 
    
         
            -
            h2. 1.2.8: 2011-09-16
         
     | 
| 
       756 
     | 
    
         
            -
             
     | 
| 
       757 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       758 
     | 
    
         
            -
             
     | 
| 
       759 
     | 
    
         
            -
            * supported "!=" expression for column in block of Groonga::Table#select.
         
     | 
| 
       760 
     | 
    
         
            -
            * accepted Hash like object as options.
         
     | 
| 
       761 
     | 
    
         
            -
            * supported vector in dump in Ruby syntax.
         
     | 
| 
       762 
     | 
    
         
            -
            * supported GRN_CTX_PER_DB environment variables.
         
     | 
| 
       763 
     | 
    
         
            -
            (NOTE: You should pay attention to use this variables.)
         
     | 
| 
       764 
     | 
    
         
            -
             
     | 
| 
       765 
     | 
    
         
            -
            h2. 1.2.7: 2011-08-29
         
     | 
| 
       766 
     | 
    
         
            -
             
     | 
| 
       767 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       768 
     | 
    
         
            -
             
     | 
| 
       769 
     | 
    
         
            -
            * Added Groonga::Snippet#close that frees resource.
         
     | 
| 
       770 
     | 
    
         
            -
             
     | 
| 
       771 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       772 
     | 
    
         
            -
             
     | 
| 
       773 
     | 
    
         
            -
            * Fixed build error on Ruby 1.8.7.
         
     | 
| 
       774 
     | 
    
         
            -
             
     | 
| 
       775 
     | 
    
         
            -
            h2. 1.2.6: 2011-08-29
         
     | 
| 
       776 
     | 
    
         
            -
             
     | 
| 
       777 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       778 
     | 
    
         
            -
             
     | 
| 
       779 
     | 
    
         
            -
            * Supported groonga 1.2.5.
         
     | 
| 
       780 
     | 
    
         
            -
            * Added Groonga::Record#added? that returns true when the record is just added.
         
     | 
| 
       781 
     | 
    
         
            -
            * Added Groonga::VariableSizeColumn#defrag? that defrags the column.
         
     | 
| 
       782 
     | 
    
         
            -
            * Added Groonga::Database#defrag that defrags the all variable size columns.
         
     | 
| 
       783 
     | 
    
         
            -
            * Supported column name specification by symbol.
         
     | 
| 
       784 
     | 
    
         
            -
             
     | 
| 
       785 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       786 
     | 
    
         
            -
             
     | 
| 
       787 
     | 
    
         
            -
            * Fixed install *.rb failure by gem install.
         
     | 
| 
       788 
     | 
    
         
            -
            * Fixed some memory leaks.
         
     | 
| 
       789 
     | 
    
         
            -
            * Fixed crash bug on exit.
         
     | 
| 
       790 
     | 
    
         
            -
             
     | 
| 
       791 
     | 
    
         
            -
            h2. 1.2.5: 2011-08-05
         
     | 
| 
       792 
     | 
    
         
            -
             
     | 
| 
       793 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       794 
     | 
    
         
            -
             
     | 
| 
       795 
     | 
    
         
            -
            * Re-supported tar.gz distribution.
         
     | 
| 
       796 
     | 
    
         
            -
            * Added Groonga::Context#close.
         
     | 
| 
       797 
     | 
    
         
            -
            * Added Groonga::Context#closed?.
         
     | 
| 
       798 
     | 
    
         
            -
            * Deprecated Groonga::ObjectClosed. Use Groonga::Closed instead.
         
     | 
| 
       799 
     | 
    
         
            -
            * grndump: Added --exclude-table option that specifies not dumped tables.
         
     | 
| 
       800 
     | 
    
         
            -
            * dump: Removed path equality check.
         
     | 
| 
       801 
     | 
    
         
            -
             
     | 
| 
       802 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       803 
     | 
    
         
            -
             
     | 
| 
       804 
     | 
    
         
            -
            * dump: Fixed wrong index table type.
         
     | 
| 
       805 
     | 
    
         
            -
            * Re-supported auto groonga install.
         
     | 
| 
       806 
     | 
    
         
            -
             
     | 
| 
       807 
     | 
    
         
            -
            h2. 1.2.4: 2011-06-29
         
     | 
| 
       808 
     | 
    
         
            -
             
     | 
| 
       809 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       810 
     | 
    
         
            -
             
     | 
| 
       811 
     | 
    
         
            -
            * Supported groonga 1.2.3.
         
     | 
| 
       812 
     | 
    
         
            -
             
     | 
| 
       813 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       814 
     | 
    
         
            -
             
     | 
| 
       815 
     | 
    
         
            -
            * Re-supported auto groonga install.
         
     | 
| 
       816 
     | 
    
         
            -
            * Added missing pkg-config gem dependency.
         
     | 
| 
       817 
     | 
    
         
            -
             
     | 
| 
       818 
     | 
    
         
            -
            h2. 1.2.3: 2011-06-27
         
     | 
| 
       819 
     | 
    
         
            -
             
     | 
| 
       820 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       821 
     | 
    
         
            -
             
     | 
| 
       822 
     | 
    
         
            -
            * remove object files in gem packages.
         
     | 
| 
       823 
     | 
    
         
            -
            * fix charactor corruption in reference.
         
     | 
| 
       824 
     | 
    
         
            -
             
     | 
| 
       825 
     | 
    
         
            -
            h2. 1.2.2: 2011-06-27
         
     | 
| 
       826 
     | 
    
         
            -
             
     | 
| 
       827 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       828 
     | 
    
         
            -
             
     | 
| 
       829 
     | 
    
         
            -
            * created "Developers" page in English.
         
     | 
| 
       830 
     | 
    
         
            -
            * added description for tasks of "html:publish" and "publish".
         
     | 
| 
       831 
     | 
    
         
            -
             
     | 
| 
       832 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       833 
     | 
    
         
            -
             
     | 
| 
       834 
     | 
    
         
            -
            * Groonga::Record#attributes return same attributes object for duplicate records.
         
     | 
| 
       835 
     | 
    
         
            -
            * added document for Groonga::Record#attributes.
         
     | 
| 
       836 
     | 
    
         
            -
            * changed tool name in document page for creating document.
         
     | 
| 
       837 
     | 
    
         
            -
            * moved NEWS*.rdoc and tutorial.texttile to doc/text/.
         
     | 
| 
       838 
     | 
    
         
            -
             
     | 
| 
       839 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       840 
     | 
    
         
            -
             
     | 
| 
       841 
     | 
    
         
            -
            * fixed the tutorial path in index page.
         
     | 
| 
       842 
     | 
    
         
            -
            * fixed the path of tutorial in index page in English.
         
     | 
| 
       843 
     | 
    
         
            -
            * follow the groonga downlowd URL change. [mallowlabs]
         
     | 
| 
       844 
     | 
    
         
            -
             
     | 
| 
       845 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       846 
     | 
    
         
            -
             
     | 
| 
       847 
     | 
    
         
            -
            * mallowlabs
         
     | 
| 
       848 
     | 
    
         
            -
             
     | 
| 
       849 
     | 
    
         
            -
            h2. 1.2.1: 2011-06-07
         
     | 
| 
       850 
     | 
    
         
            -
             
     | 
| 
       851 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       852 
     | 
    
         
            -
             
     | 
| 
       853 
     | 
    
         
            -
            * added document of Groonga::Table#pagination.
         
     | 
| 
       854 
     | 
    
         
            -
            * added grndump in package.
         
     | 
| 
       855 
     | 
    
         
            -
            * corresponded recursive reference of Records by Groonga::Record#attributes.
         
     | 
| 
       856 
     | 
    
         
            -
              (experimental) [mooz]
         
     | 
| 
       857 
     | 
    
         
            -
            * Groonga::Record#attributes supported data including _score.
         
     | 
| 
       858 
     | 
    
         
            -
            * corresponded Windows for 64-bit.
         
     | 
| 
       859 
     | 
    
         
            -
              (but there's not 64-bit ruby, so rroonga for 64-bit windows cannot run.)
         
     | 
| 
       860 
     | 
    
         
            -
            * added Groonga::Posting.
         
     | 
| 
       861 
     | 
    
         
            -
            * added :delimit, :token_delimiter for alias of TokenDelimit.
         
     | 
| 
       862 
     | 
    
         
            -
            * Groonga::DatabaseDumper#dump corresponded lexicon table.
         
     | 
| 
       863 
     | 
    
         
            -
            * Groonga::DatabaseDumper#dump corresponded data including plugin.
         
     | 
| 
       864 
     | 
    
         
            -
            * added Groonga::IndexColumn#open_cursor. [yoshihara]
         
     | 
| 
       865 
     | 
    
         
            -
            * added Groonga::IndexCursor. [yoshihara]
         
     | 
| 
       866 
     | 
    
         
            -
            * added Groonga::Object#builtin?. [yoshihara]
         
     | 
| 
       867 
     | 
    
         
            -
             
     | 
| 
       868 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       869 
     | 
    
         
            -
             
     | 
| 
       870 
     | 
    
         
            -
            * check existence of column before removing it.
         
     | 
| 
       871 
     | 
    
         
            -
            * removed grn expression document.
         
     | 
| 
       872 
     | 
    
         
            -
             
     | 
| 
       873 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       874 
     | 
    
         
            -
             
     | 
| 
       875 
     | 
    
         
            -
            * mooz
         
     | 
| 
       876 
     | 
    
         
            -
            * yoshihara
         
     | 
| 
       877 
     | 
    
         
            -
             
     | 
| 
       878 
     | 
    
         
            -
            h2. 1.2.0: 2011-04-01
         
     | 
| 
       879 
     | 
    
         
            -
             
     | 
| 
       880 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       881 
     | 
    
         
            -
             
     | 
| 
       882 
     | 
    
         
            -
            * Supported groonga 1.2.0.
         
     | 
| 
       883 
     | 
    
         
            -
            * Added Groonga::Accessor#local_name.
         
     | 
| 
       884 
     | 
    
         
            -
            * Added Groonga::IndexColumn#with_section?.
         
     | 
| 
       885 
     | 
    
         
            -
            * Added Groonga::IndexColumn#with_weight?.
         
     | 
| 
       886 
     | 
    
         
            -
            * Added Groonga::IndexColumn#with_position?.
         
     | 
| 
       887 
     | 
    
         
            -
            * Groonga::Schema.dump supported groonga command format dump.
         
     | 
| 
       888 
     | 
    
         
            -
            * Added grndump command.
         
     | 
| 
       889 
     | 
    
         
            -
            * Groonga::Database#each supports order customize.
         
     | 
| 
       890 
     | 
    
         
            -
            * Added Groonga::Context#match_escalation_threshold.
         
     | 
| 
       891 
     | 
    
         
            -
            * Added Groonga::Context#match_escalation_threshold=.
         
     | 
| 
       892 
     | 
    
         
            -
            * Improved error message.
         
     | 
| 
       893 
     | 
    
         
            -
            * Supported Rubyish name like :short_text instead of the
         
     | 
| 
       894 
     | 
    
         
            -
              official type name like "ShortText" in Groonga::Schema.
         
     | 
| 
       895 
     | 
    
         
            -
             
     | 
| 
       896 
     | 
    
         
            -
            h2. 1.1.0: 2011-02-09
         
     | 
| 
       897 
     | 
    
         
            -
             
     | 
| 
       898 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       899 
     | 
    
         
            -
             
     | 
| 
       900 
     | 
    
         
            -
            * Supported groonga 1.1.0.
         
     | 
| 
       901 
     | 
    
         
            -
            * Added Groonga::Plugin.register.
         
     | 
| 
       902 
     | 
    
         
            -
             
     | 
| 
       903 
     | 
    
         
            -
            h2. 1.0.9: 2011-01-29
         
     | 
| 
       904 
     | 
    
         
            -
             
     | 
| 
       905 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       906 
     | 
    
         
            -
             
     | 
| 
       907 
     | 
    
         
            -
            * Supported gem creation on Windows. [Patch by ongaeshi]
         
     | 
| 
       908 
     | 
    
         
            -
            * Supported generated directory that is created by Groonga::Schema removal
         
     | 
| 
       909 
     | 
    
         
            -
              when table or column is removed.
         
     | 
| 
       910 
     | 
    
         
            -
            * Added Groonga::Context#create_database.
         
     | 
| 
       911 
     | 
    
         
            -
            * Added Groonga::Context#open_database.
         
     | 
| 
       912 
     | 
    
         
            -
            * Added Groonga::Column#indexes.
         
     | 
| 
       913 
     | 
    
         
            -
            * Supported a notation for specifying index column as match target in
         
     | 
| 
       914 
     | 
    
         
            -
              Groonga::Table#select:
         
     | 
| 
       915 
     | 
    
         
            -
                table.select do |record|
         
     | 
| 
       916 
     | 
    
         
            -
                  record.match("query") do |match_record|
         
     | 
| 
       917 
     | 
    
         
            -
                    (match_record.index("Terms.title") * 1000) |
         
     | 
| 
       918 
     | 
    
         
            -
                      (match_record.index("Terms.description") * 100)
         
     | 
| 
       919 
     | 
    
         
            -
                      match_record.content
         
     | 
| 
       920 
     | 
    
         
            -
                  end
         
     | 
| 
       921 
     | 
    
         
            -
                end
         
     | 
| 
       922 
     | 
    
         
            -
            * Supported prefix search in Groonga::Table#select:
         
     | 
| 
       923 
     | 
    
         
            -
                table.select do |record|
         
     | 
| 
       924 
     | 
    
         
            -
                  record.name.prefix_search("groo")
         
     | 
| 
       925 
     | 
    
         
            -
                end
         
     | 
| 
       926 
     | 
    
         
            -
            * Supported suffix search in Groonga::Table#select:
         
     | 
| 
       927 
     | 
    
         
            -
                table.select do |record|
         
     | 
| 
       928 
     | 
    
         
            -
                  record.name.suffix_search("nga")
         
     | 
| 
       929 
     | 
    
         
            -
                end
         
     | 
| 
       930 
     | 
    
         
            -
            * Supported :default_tokenizer schema dump.
         
     | 
| 
       931 
     | 
    
         
            -
            * Supported :key_normalize schema dump.
         
     | 
| 
       932 
     | 
    
         
            -
            * Supported pseudo columns by Groonga::Table#have_column?.
         
     | 
| 
       933 
     | 
    
         
            -
            * Supported pseudo columns by Groonga::Record#have_column?.
         
     | 
| 
       934 
     | 
    
         
            -
             
     | 
| 
       935 
     | 
    
         
            -
            h3. Changes
         
     | 
| 
       936 
     | 
    
         
            -
             
     | 
| 
       937 
     | 
    
         
            -
            * Renamed Groonga::Operatoion to Groonga::Operator.
         
     | 
| 
       938 
     | 
    
         
            -
              (Groonga::Operation is deprecated but still usable.)
         
     | 
| 
       939 
     | 
    
         
            -
             
     | 
| 
       940 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       941 
     | 
    
         
            -
             
     | 
| 
       942 
     | 
    
         
            -
            * Fixed a crash bug when not default Groonga::Context is used in
         
     | 
| 
       943 
     | 
    
         
            -
              Groonga::Table#select.
         
     | 
| 
       944 
     | 
    
         
            -
            * Fixed a crash bug when an exception is occurred.
         
     | 
| 
       945 
     | 
    
         
            -
             
     | 
| 
       946 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       947 
     | 
    
         
            -
             
     | 
| 
       948 
     | 
    
         
            -
            * ongaeshi
         
     | 
| 
       949 
     | 
    
         
            -
             
     | 
| 
       950 
     | 
    
         
            -
            h2. 1.0.8: 2010-12-25
         
     | 
| 
       951 
     | 
    
         
            -
             
     | 
| 
       952 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       953 
     | 
    
         
            -
             
     | 
| 
       954 
     | 
    
         
            -
            * Improved Groonga::Schema's n-gram tokenizer detect process.
         
     | 
| 
       955 
     | 
    
         
            -
             
     | 
| 
       956 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       957 
     | 
    
         
            -
             
     | 
| 
       958 
     | 
    
         
            -
            * Fixed GC problem caused by match_target in select.
         
     | 
| 
       959 
     | 
    
         
            -
             
     | 
| 
       960 
     | 
    
         
            -
            h2. 1.0.7: 2010-12-19
         
     | 
| 
       961 
     | 
    
         
            -
             
     | 
| 
       962 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       963 
     | 
    
         
            -
             
     | 
| 
       964 
     | 
    
         
            -
            * Supported pkg-config installed by RubyGems on Ruby 1.8. [Reported by @kamipo]
         
     | 
| 
       965 
     | 
    
         
            -
            * Fixed a memory leak in Groonga::Table#columns.
         
     | 
| 
       966 
     | 
    
         
            -
             
     | 
| 
       967 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       968 
     | 
    
         
            -
             
     | 
| 
       969 
     | 
    
         
            -
            * @kamipo
         
     | 
| 
       970 
     | 
    
         
            -
             
     | 
| 
       971 
     | 
    
         
            -
            h2. 1.0.5: 2010-11-29
         
     | 
| 
       972 
     | 
    
         
            -
             
     | 
| 
       973 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       974 
     | 
    
         
            -
             
     | 
| 
       975 
     | 
    
         
            -
            * Added snail_case type name aliases for built-in groonga types
         
     | 
| 
       976 
     | 
    
         
            -
              to Groonga::Schema.
         
     | 
| 
       977 
     | 
    
         
            -
             
     | 
| 
       978 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       979 
     | 
    
         
            -
             
     | 
| 
       980 
     | 
    
         
            -
            * Fixed a crash bug on GC. [Ryo Onodera]
         
     | 
| 
       981 
     | 
    
         
            -
             
     | 
| 
       982 
     | 
    
         
            -
            h2. 1.0.4: 2010-11-29
         
     | 
| 
       983 
     | 
    
         
            -
             
     | 
| 
       984 
     | 
    
         
            -
            h3. Improvements
         
     | 
| 
       985 
     | 
    
         
            -
             
     | 
| 
       986 
     | 
    
         
            -
            * Supported groonga 1.0.4.
         
     | 
| 
       987 
     | 
    
         
            -
              * Added Groonga::UnsupportedCommandVersion.
         
     | 
| 
       988 
     | 
    
         
            -
            * Added Groonga::Record#support_sub_records?.
         
     | 
| 
       989 
     | 
    
         
            -
            * Added Groonga::Record#eql?とGroonga::Record#hash.
         
     | 
| 
       990 
     | 
    
         
            -
              (treat two the same table and the same record ID object as the same Hash key.)
         
     | 
| 
       991 
     | 
    
         
            -
            * Supported pkg-config gem.
         
     | 
| 
       992 
     | 
    
         
            -
            * Supported generic #record_id object handle for custom record object
         
     | 
| 
       993 
     | 
    
         
            -
              in Groonga::Table#select.
         
     | 
| 
       994 
     | 
    
         
            -
            * Added Groonga::Record#record_id.
         
     | 
| 
       995 
     | 
    
         
            -
            * Added Groonga::Table#support_key?.
         
     | 
| 
       996 
     | 
    
         
            -
            * Added Groonga::Record#support_key?.
         
     | 
| 
       997 
     | 
    
         
            -
            * Added Groonga::Record#support_key?.
         
     | 
| 
       998 
     | 
    
         
            -
            * Added Groonga::Column#reference_key?.
         
     | 
| 
       999 
     | 
    
         
            -
            * Added Groonga::Column#index_column?.
         
     | 
| 
       1000 
     | 
    
         
            -
            * Added Groonga::Schema#dump.
         
     | 
| 
       1001 
     | 
    
         
            -
            * Supported multi columns index creation in Groonga::Schema.
         
     | 
| 
       1002 
     | 
    
         
            -
            * Supported meaningful path in Groonga::Schema.
         
     | 
| 
       1003 
     | 
    
         
            -
            * Made reference table omissible when index column definition
         
     | 
| 
       1004 
     | 
    
         
            -
              in Groonga::Schema.
         
     | 
| 
       1005 
     | 
    
         
            -
            * Added Groonga::Schema.remove_column.
         
     | 
| 
       1006 
     | 
    
         
            -
            * Added convenience timestamps methods to define "created_at" and
         
     | 
| 
       1007 
     | 
    
         
            -
              "updated_at" columns in Groonga::Schema.
         
     | 
| 
       1008 
     | 
    
         
            -
            * Added Groonga::Context#support_zlib?.
         
     | 
| 
       1009 
     | 
    
         
            -
            * Added Groonga::Context#support_lzo?.
         
     | 
| 
       1010 
     | 
    
         
            -
            * Added Groonga::Database#touch.
         
     | 
| 
       1011 
     | 
    
         
            -
            * Added Groonga::Table#exist?.
         
     | 
| 
       1012 
     | 
    
         
            -
            * Added Groonga::Record#valid?.
         
     | 
| 
       1013 
     | 
    
         
            -
            * Added Groonga::Column#vector?.
         
     | 
| 
       1014 
     | 
    
         
            -
            * Added Groonga::Column#scalar?.
         
     | 
| 
       1015 
     | 
    
         
            -
            * Added Groonga::Record#vector_column?.
         
     | 
| 
       1016 
     | 
    
         
            -
            * Added Groonga::Record#scalar_column?.
         
     | 
| 
       1017 
     | 
    
         
            -
            * Accepted any object that has record_raw_id method for record ID required
         
     | 
| 
       1018 
     | 
    
         
            -
              location. Groonga::Record isn't required.
         
     | 
| 
       1019 
     | 
    
         
            -
            * Added Groonga::Record#record_raw_id.
         
     | 
| 
       1020 
     | 
    
         
            -
            * Accepted any object that as to_ary method for reference vector column value.
         
     | 
| 
       1021 
     | 
    
         
            -
             
     | 
| 
       1022 
     | 
    
         
            -
            h2. Changes
         
     | 
| 
       1023 
     | 
    
         
            -
             
     | 
| 
       1024 
     | 
    
         
            -
            * Used :key as the default value of :order_by of
         
     | 
| 
       1025 
     | 
    
         
            -
              Groonga::PatriciaTrie#open_cursor.
         
     | 
| 
       1026 
     | 
    
         
            -
            * Removed a deprecated Groonga::TableKeySupport#find.
         
     | 
| 
       1027 
     | 
    
         
            -
            * Used ShortText as the default key type of
         
     | 
| 
       1028 
     | 
    
         
            -
              Groonga::Hash#create and Groonga::PatriciaTrie#create.
         
     | 
| 
       1029 
     | 
    
         
            -
            * Renamed Groonga::Schema#load to Groonga::Schema#restore.
         
     | 
| 
       1030 
     | 
    
         
            -
            * Supported pkg-confg 1.0.7.
         
     | 
| 
       1031 
     | 
    
         
            -
            * Added Groonga::Column#index? and deprecated Groonga::Column#index_column?.
         
     | 
| 
       1032 
     | 
    
         
            -
            * Added Groonga::Column#reference? and deprecated
         
     | 
| 
       1033 
     | 
    
         
            -
              Groonga::Column#reference_column?.
         
     | 
| 
       1034 
     | 
    
         
            -
             
     | 
| 
       1035 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       1036 
     | 
    
         
            -
             
     | 
| 
       1037 
     | 
    
         
            -
            * Fixed index for key isn't be able to define.
         
     | 
| 
       1038 
     | 
    
         
            -
            * Fixed a crash problem on GC.
         
     | 
| 
       1039 
     | 
    
         
            -
             
     | 
| 
       1040 
     | 
    
         
            -
            h2. 1.0.1: 2010-09-12
         
     | 
| 
       1041 
     | 
    
         
            -
             
     | 
| 
       1042 
     | 
    
         
            -
            h3. Fixes
         
     | 
| 
       1043 
     | 
    
         
            -
             
     | 
| 
       1044 
     | 
    
         
            -
            * Fixed wrong flag used on creating a table. [Reported by ono matope]
         
     | 
| 
       1045 
     | 
    
         
            -
             
     | 
| 
       1046 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       1047 
     | 
    
         
            -
             
     | 
| 
       1048 
     | 
    
         
            -
            * ono matope
         
     | 
| 
       1049 
     | 
    
         
            -
             
     | 
| 
       1050 
     | 
    
         
            -
            h2. 1.0.0: 2010-08-29
         
     | 
| 
       1051 
     | 
    
         
            -
             
     | 
| 
       1052 
     | 
    
         
            -
            * Supported groonga 1.0.0.
         
     | 
| 
       1053 
     | 
    
         
            -
              * Added Groonga::CASError.
         
     | 
| 
       1054 
     | 
    
         
            -
              * Added :order_by option to Groonga::Table#open_cursor.
         
     | 
| 
       1055 
     | 
    
         
            -
              * Added Groonga::PatriciaTrie#open_prefix_cursor that creates a cursor
         
     | 
| 
       1056 
     | 
    
         
            -
                to retrieve each records by prefix search.
         
     | 
| 
       1057 
     | 
    
         
            -
              * Added Groonga::PatriciaTrie#open_rk_cursor that creats a cursor to
         
     | 
| 
       1058 
     | 
    
         
            -
                retrieve katakana keys from roman letters and/or hiragana.
         
     | 
| 
       1059 
     | 
    
         
            -
              * Added Groonga::PatriciaTrie#open_near_cursor that creates a cursor to
         
     | 
| 
       1060 
     | 
    
         
            -
                retrieve records order by distance from key.
         
     | 
| 
       1061 
     | 
    
         
            -
            * Supported _key as index source.
         
     | 
| 
       1062 
     | 
    
         
            -
             
     | 
| 
       1063 
     | 
    
         
            -
            h2. 0.9.5: 2010-07-20
         
     | 
| 
       1064 
     | 
    
         
            -
             
     | 
| 
       1065 
     | 
    
         
            -
            * Supported groonga 0.7.4.
         
     | 
| 
       1066 
     | 
    
         
            -
            * Imporoved Groonga::Table#select:
         
     | 
| 
       1067 
     | 
    
         
            -
              * Supported weight match:
         
     | 
| 
       1068 
     | 
    
         
            -
             
     | 
| 
       1069 
     | 
    
         
            -
                Here is an example to match source column or title column and
         
     | 
| 
       1070 
     | 
    
         
            -
                title column has high score:
         
     | 
| 
       1071 
     | 
    
         
            -
                  table.select do |record|
         
     | 
| 
       1072 
     | 
    
         
            -
                    (record.title * 10 | record.source) =~ "query"
         
     | 
| 
       1073 
     | 
    
         
            -
                  end
         
     | 
| 
       1074 
     | 
    
         
            -
              * Supported and representation for and conditions:
         
     | 
| 
       1075 
     | 
    
         
            -
             
     | 
| 
       1076 
     | 
    
         
            -
                Here are examples that represents the same condition:
         
     | 
| 
       1077 
     | 
    
         
            -
                  table.select do |record|
         
     | 
| 
       1078 
     | 
    
         
            -
                    conditions = []
         
     | 
| 
       1079 
     | 
    
         
            -
                    conditions << record.title =~ "query"
         
     | 
| 
       1080 
     | 
    
         
            -
                    conditions << record.updated_at > Time.parse("2010-07-29T21:14:29+09:00")
         
     | 
| 
       1081 
     | 
    
         
            -
                    conditions
         
     | 
| 
       1082 
     | 
    
         
            -
                  end
         
     | 
| 
       1083 
     | 
    
         
            -
             
     | 
| 
       1084 
     | 
    
         
            -
                  table.select do |record|
         
     | 
| 
       1085 
     | 
    
         
            -
                    (record.title =~ "query") &
         
     | 
| 
       1086 
     | 
    
         
            -
                      (record.updated_at > Time.parse("2010-07-29T21:14:29+09:00"))
         
     | 
| 
       1087 
     | 
    
         
            -
                  end
         
     | 
| 
       1088 
     | 
    
         
            -
            * Provided groonga runtime version: Groonga::VERSION
         
     | 
| 
       1089 
     | 
    
         
            -
            * Added Groonga::Table#support_sub_records?
         
     | 
| 
       1090 
     | 
    
         
            -
            * Supported pagination: Groonga::Table#paginate, Groonga::Pagination
         
     | 
| 
       1091 
     | 
    
         
            -
             
     | 
| 
       1092 
     | 
    
         
            -
            h2. 0.9.4: 2010-04-22
         
     | 
| 
       1093 
     | 
    
         
            -
             
     | 
| 
       1094 
     | 
    
         
            -
            * Fixed release miss.
         
     | 
| 
       1095 
     | 
    
         
            -
             
     | 
| 
       1096 
     | 
    
         
            -
            h2. 0.9.3: 2010-04-22
         
     | 
| 
       1097 
     | 
    
         
            -
             
     | 
| 
       1098 
     | 
    
         
            -
            * Fixed release miss.
         
     | 
| 
       1099 
     | 
    
         
            -
             
     | 
| 
       1100 
     | 
    
         
            -
            h2. 0.9.2: 2010-04-22
         
     | 
| 
       1101 
     | 
    
         
            -
             
     | 
| 
       1102 
     | 
    
         
            -
            * Supported groonga 0.1.9.
         
     | 
| 
       1103 
     | 
    
         
            -
            * Many.
         
     | 
| 
       1104 
     | 
    
         
            -
             
     | 
| 
       1105 
     | 
    
         
            -
            h2. 0.9.1: 2010-02-09
         
     | 
| 
       1106 
     | 
    
         
            -
             
     | 
| 
       1107 
     | 
    
         
            -
            * Supported groonga 0.1.6
         
     | 
| 
       1108 
     | 
    
         
            -
             
     | 
| 
       1109 
     | 
    
         
            -
            h2. 0.9.0: 2010-02-09
         
     | 
| 
       1110 
     | 
    
         
            -
             
     | 
| 
       1111 
     | 
    
         
            -
            * Supported groonga 0.1.5
         
     | 
| 
       1112 
     | 
    
         
            -
            * Added API
         
     | 
| 
       1113 
     | 
    
         
            -
              * Groonga::Object#context
         
     | 
| 
       1114 
     | 
    
         
            -
              * Groonga::Record#n_sub_records
         
     | 
| 
       1115 
     | 
    
         
            -
              * Groonga::Context#send
         
     | 
| 
       1116 
     | 
    
         
            -
              * Groonga::Context#receive
         
     | 
| 
       1117 
     | 
    
         
            -
              * Groonga::PatriciaTrie#prefix_search [Tasuku SUENAGA]
         
     | 
| 
       1118 
     | 
    
         
            -
              * Groonga::Object#path [Ryo Onodera]
         
     | 
| 
       1119 
     | 
    
         
            -
              * Groonga::Object#lock [Tasuku SUENAGA]
         
     | 
| 
       1120 
     | 
    
         
            -
              * Groonga::Object#unlock [Tasuku SUENAGA]
         
     | 
| 
       1121 
     | 
    
         
            -
              * Groonga::Object#locked? [Tasuku SUENAGA]
         
     | 
| 
       1122 
     | 
    
         
            -
              * Groonga::Object#temporary?
         
     | 
| 
       1123 
     | 
    
         
            -
              * Groonga::Object#persistent?
         
     | 
| 
       1124 
     | 
    
         
            -
              * Groonga::ObjectClosed
         
     | 
| 
       1125 
     | 
    
         
            -
              * Groonga::Context.[]
         
     | 
| 
       1126 
     | 
    
         
            -
              * Groonga::Table#column_value
         
     | 
| 
       1127 
     | 
    
         
            -
              * Groonga::Table#set_column_value
         
     | 
| 
       1128 
     | 
    
         
            -
            * Changed API
         
     | 
| 
       1129 
     | 
    
         
            -
              * Groonga::Table#select, Groonga::Column#select
         
     | 
| 
       1130 
     | 
    
         
            -
                * They also accept Groonga::Expression
         
     | 
| 
       1131 
     | 
    
         
            -
                * Added :syntax option that specifies grn expression syntax
         
     | 
| 
       1132 
     | 
    
         
            -
              * Groonga::Table#open_cursor
         
     | 
| 
       1133 
     | 
    
         
            -
                * Added :offset option that specifies offset.
         
     | 
| 
       1134 
     | 
    
         
            -
                * Added :limit option that specifies max number of records.
         
     | 
| 
       1135 
     | 
    
         
            -
              * Changed Groonga::Expression.parse options:
         
     | 
| 
       1136 
     | 
    
         
            -
                * (nil (default) -> :column) -> (nil (default) -> :query)
         
     | 
| 
       1137 
     | 
    
         
            -
                * :column -> removed
         
     | 
| 
       1138 
     | 
    
         
            -
                * :table -> :query
         
     | 
| 
       1139 
     | 
    
         
            -
                * :table_query -> :query
         
     | 
| 
       1140 
     | 
    
         
            -
                * :expression -> :script
         
     | 
| 
       1141 
     | 
    
         
            -
                * :language -> :script
         
     | 
| 
       1142 
     | 
    
         
            -
              * Groonga::Table#define_column, Groonga::Table#define_index_column
         
     | 
| 
       1143 
     | 
    
         
            -
                * Defined column becomes persistent table by default
         
     | 
| 
       1144 
     | 
    
         
            -
              * Groonga::Table#[] -> Groonga::Table#value
         
     | 
| 
       1145 
     | 
    
         
            -
              * Groonga::Table#[]= -> Groonga::Table#set_value
         
     | 
| 
       1146 
     | 
    
         
            -
              * Groonga::Table#find -> Groonga::Table#[]
         
     | 
| 
       1147 
     | 
    
         
            -
              * Groonga::Table#find -> obsolete
         
     | 
| 
       1148 
     | 
    
         
            -
              * Groonga::Table#[]= -> removed
         
     | 
| 
       1149 
     | 
    
         
            -
              * Groonga::TableKeySupport#[]= is alias of Groonga::TableKeySupport#add
         
     | 
| 
       1150 
     | 
    
         
            -
              * Changed exception class to Groonga::NoSuchColumn from
         
     | 
| 
       1151 
     | 
    
         
            -
                Groonga::InvalidArgument when Groonga::Record accesses nonexistent
         
     | 
| 
       1152 
     | 
    
         
            -
                a column.
         
     | 
| 
       1153 
     | 
    
         
            -
            * Bug fixes
         
     | 
| 
       1154 
     | 
    
         
            -
              * Fixed a bug that context isn't passed to schema [dara]
         
     | 
| 
       1155 
     | 
    
         
            -
              * Fixed a bug that Groonga::PatriciaTrie#tag_keys doesn't return
         
     | 
| 
       1156 
     | 
    
         
            -
                that last text. [Ryo Onodera]
         
     | 
| 
       1157 
     | 
    
         
            -
            * Added --with-debug option to extconf.rb for debug build.
         
     | 
| 
       1158 
     | 
    
         
            -
            * Fixed a bug that Ruby 1.9.1 may fail extconf.rb.
         
     | 
| 
       1159 
     | 
    
         
            -
             
     | 
| 
       1160 
     | 
    
         
            -
            h3. Thanks
         
     | 
| 
       1161 
     | 
    
         
            -
             
     | 
| 
       1162 
     | 
    
         
            -
            * dara
         
     | 
| 
       1163 
     | 
    
         
            -
            * Ryo Onodera
         
     | 
| 
       1164 
     | 
    
         
            -
            * Tasuku SUENAGA
         
     | 
| 
       1165 
     | 
    
         
            -
             
     | 
| 
       1166 
     | 
    
         
            -
            h2. 0.0.7: 2009-10-02
         
     | 
| 
       1167 
     | 
    
         
            -
             
     | 
| 
       1168 
     | 
    
         
            -
            * Supported groonga 0.1.4
         
     | 
| 
       1169 
     | 
    
         
            -
            * Added API
         
     | 
| 
       1170 
     | 
    
         
            -
              * Groonga::PatriciaTrie#scan
         
     | 
| 
       1171 
     | 
    
         
            -
              * Groonga::PatriciaTrie#tag_keys
         
     | 
| 
       1172 
     | 
    
         
            -
              * Groonga::Expression#snippet
         
     | 
| 
       1173 
     | 
    
         
            -
              * Groonga::Object#append
         
     | 
| 
       1174 
     | 
    
         
            -
              * Groonga::Object#prepend
         
     | 
| 
       1175 
     | 
    
         
            -
             
     | 
| 
       1176 
     | 
    
         
            -
            h2. 0.0.6: 2009-07-31
         
     | 
| 
       1177 
     | 
    
         
            -
             
     | 
| 
       1178 
     | 
    
         
            -
            * Supported groonga 0.1.1.
         
     | 
| 
       1179 
     | 
    
         
            -
            * Fixed documents [id:mat_aki]
         
     | 
| 
       1180 
     | 
    
         
            -
            * Supported groonga expression for searching.
         
     | 
| 
       1181 
     | 
    
         
            -
            * Added API
         
     | 
| 
       1182 
     | 
    
         
            -
              * Groonga::Table#union!
         
     | 
| 
       1183 
     | 
    
         
            -
              * Groonga::Table#intersect!
         
     | 
| 
       1184 
     | 
    
         
            -
              * Groonga::Table#differene!
         
     | 
| 
       1185 
     | 
    
         
            -
              * Groonga::Table#merge!
         
     | 
| 
       1186 
     | 
    
         
            -
            * Provided tar.gz [id:m_seki]
         
     | 
| 
       1187 
     | 
    
         
            -
            * Fixed memory leaks
         
     | 
| 
       1188 
     | 
    
         
            -
             
     | 
| 
       1189 
     | 
    
         
            -
            h2. 0.0.3: 2009-07-18
         
     | 
| 
       1190 
     | 
    
         
            -
             
     | 
| 
       1191 
     | 
    
         
            -
            * Added Groonga::TableKeySupport#has_key? [#26145] [Tasuku SUENAGA]
         
     | 
| 
       1192 
     | 
    
         
            -
            * Groonga::Record#[] raises an exception for nonexistent
         
     | 
| 
       1193 
     | 
    
         
            -
              column name. [#26146] [Tasuku SUENAGA]
         
     | 
| 
       1194 
     | 
    
         
            -
            * Supported 32bit environment [niku]
         
     | 
| 
       1195 
     | 
    
         
            -
            * Added a test for N-gram index search [dara]
         
     | 
| 
       1196 
     | 
    
         
            -
            * Added APIs
         
     | 
| 
       1197 
     | 
    
         
            -
              * Groonga::Record#incemrent!
         
     | 
| 
       1198 
     | 
    
         
            -
              * Groonga::Record#decemrent!
         
     | 
| 
       1199 
     | 
    
         
            -
              * Groonga::Record#lock
         
     | 
| 
       1200 
     | 
    
         
            -
              * Groonga::Table#lock
         
     | 
| 
       1201 
     | 
    
         
            -
              * Groonga::Schema: A DSL for schema definition
         
     | 
| 
       1202 
     | 
    
         
            -
              * Groonga::Expression
         
     | 
| 
       1203 
     | 
    
         
            -
             
     | 
| 
       1204 
     | 
    
         
            -
            h2. 0.0.2: 2009-06-04
         
     | 
| 
       1205 
     | 
    
         
            -
             
     | 
| 
       1206 
     | 
    
         
            -
            * Supported groonga 0.0.8 [mori]
         
     | 
| 
       1207 
     | 
    
         
            -
            * Improved preformance: cache key, value, domain and range
         
     | 
| 
       1208 
     | 
    
         
            -
            * Improved API
         
     | 
| 
       1209 
     | 
    
         
            -
            * Added documents
         
     | 
| 
       1210 
     | 
    
         
            -
            * Supported Ruby 1.9
         
     | 
| 
       1211 
     | 
    
         
            -
            * Bug fixes:
         
     | 
| 
       1212 
     | 
    
         
            -
              * Fixed install process [Tasuku SUENAGA]
         
     | 
| 
       1213 
     | 
    
         
            -
              * Fixed memory leaks
         
     | 
| 
       1214 
     | 
    
         
            -
             
     | 
| 
       1215 
     | 
    
         
            -
            h2. 0.0.1: 2009-04-30
         
     | 
| 
       1216 
     | 
    
         
            -
             
     | 
| 
       1217 
     | 
    
         
            -
            * Initial release!
         
     |