rroonga 6.0.0-x86-mingw32 → 6.0.2-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/doc/text/news.md +38 -1
- data/ext/groonga/extconf.rb +14 -1
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-double-array-trie.c +1 -1
- data/ext/groonga/rb-grn-exception.c +18 -1
- data/ext/groonga/rb-grn-expression.c +0 -8
- data/ext/groonga/rb-grn-hash.c +15 -3
- data/ext/groonga/rb-grn-logger.c +22 -22
- data/ext/groonga/rb-grn-object.c +28 -6
- data/ext/groonga/rb-grn-patricia-trie.c +1 -1
- data/ext/groonga/rb-grn-request-canceler.c +164 -0
- data/ext/groonga/rb-grn-request-timer-id.c +64 -0
- data/ext/groonga/rb-grn-request-timer.c +155 -0
- data/ext/groonga/rb-grn-type.c +43 -1
- data/ext/groonga/rb-grn.h +17 -5
- data/ext/groonga/rb-groonga.c +3 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/2.3/groonga.so +0 -0
- data/lib/groonga/expression-builder.rb +4 -13
- data/rroonga-build.rb +3 -3
- data/rroonga.gemspec +1 -2
- data/test/run-test.rb +2 -2
- data/test/test-expression-builder.rb +13 -1
- data/test/test-hash.rb +22 -3
- data/test/test-request-canceler.rb +46 -0
- data/test/test-request-timer.rb +40 -0
- data/test/test-table.rb +43 -7
- data/test/test-type.rb +104 -2
- 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/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-2.dll +0 -0
- data/vendor/local/bin/libmsgpack-4.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/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +8 -0
- data/vendor/local/include/groonga/groonga/dump.h +1 -1
- data/vendor/local/include/groonga/groonga/expr.h +1 -2
- data/vendor/local/include/groonga/groonga/groonga.h +18 -5
- data/vendor/local/include/groonga/groonga/obj.h +1 -0
- data/vendor/local/include/groonga/groonga/plugin.h +9 -0
- data/vendor/local/include/groonga/groonga/portability.h +8 -0
- data/vendor/local/include/groonga/groonga/request_canceler.h +1 -0
- data/vendor/local/include/groonga/groonga/request_timer.h +53 -0
- data/vendor/local/include/groonga/groonga/type.h +9 -0
- data/vendor/local/include/groonga/groonga.h +1 -0
- data/vendor/local/lib/groonga/plugins/expression_rewriters/optimizer.rb +131 -22
- data/vendor/local/lib/groonga/plugins/functions/string.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/string.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
- data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -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/ruby/eval.rb +36 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +8 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +43 -8
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/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/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/scripts/ruby/command_line/grndb.rb +14 -0
- data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +4 -0
- data/vendor/local/lib/groonga/scripts/ruby/eval_context.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression.rb +2 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +11 -25
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/binary_operation.rb +67 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/constant.rb +22 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/function_call.rb +50 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/logical_operation.rb +33 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree/variable.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree.rb +5 -0
- data/vendor/local/lib/groonga/scripts/ruby/expression_tree_builder.rb +92 -0
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +35 -6
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- 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/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/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/_sources/contribution/development/release.txt +10 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +17 -51
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +13 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +9 -7
- 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 +5 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/geo_distance.txt +2 -2
- 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/prefix_rk_search.txt +6 -6
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +40 -37
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +15 -10
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -18
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/en/html/index.html +74 -77
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +28 -72
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/en/html/install/others.html +25 -26
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/en/html/limitations.html +10 -12
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +81 -84
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/news.html +510 -303
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference/alias.html +20 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_timeout.html +208 -0
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_delete.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_get.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/config_set.html +45 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +57 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_release.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +155 -162
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +37 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +465 -67
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_inspect.html +119 -122
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_remove.html +39 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +40 -43
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/schema.html +93 -96
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +184 -187
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +114 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +46 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +101 -79
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +126 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +38 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/en/html/reference/configuration.html +16 -19
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +19 -22
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +421 -121
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +67 -39
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/prefix_rk_search.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +23 -26
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +26 -29
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/operations/prefix_rk_search.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +21 -24
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +11 -14
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +19 -26
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +15 -18
- data/vendor/local/share/doc/groonga/en/html/reference.html +68 -70
- data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +34 -37
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/en/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +10 -13
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +10 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +19 -13
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/introduction.txt +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +4 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +17 -51
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +13 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +9 -7
- 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 +5 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/limitations.txt +4 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +224 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/alias.txt +8 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/request_timeout.txt +78 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command/return_code.txt +6 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/command.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_delete.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_get.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/config_set.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +2 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +4 -8
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +1 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +383 -24
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_inspect.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_remove.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/schema.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +84 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +11 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +41 -15
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +73 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +10 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-httpd.txt +349 -91
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +49 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/geo_distance.txt +2 -2
- 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/prefix_rk_search.txt +6 -6
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/normalizers.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_at_most.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorers/scorer_tf_idf.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +0 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/types.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +9 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/client.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/community.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +31 -26
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +41 -37
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -32
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +20 -21
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/development.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +21 -9
- data/vendor/local/share/doc/groonga/ja/html/index.html +76 -79
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +14 -18
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +25 -67
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +19 -13
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/install.html +8 -12
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +25 -28
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +71 -74
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/news.html +479 -282
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/alias.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +20 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +21 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +15 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +24 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/command/pretty_print.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_timeout.html +193 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +32 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +66 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +48 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +36 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_delete.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_get.html +42 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/config_set.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +55 -58
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_acquire.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_release.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +46 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +59 -66
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +137 -144
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +36 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +419 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +43 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_inspect.html +117 -120
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_remove.html +38 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +27 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/reindex.html +30 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +39 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +31 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +32 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/schema.html +91 -94
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +172 -175
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +104 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +44 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +42 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +95 -79
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +116 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +33 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +54 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +35 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +50 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/configuration.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +397 -127
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +97 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/prefix_rk_search.html +19 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +22 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +24 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/prefix_rk_search.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +16 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +11 -14
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +16 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +26 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +14 -17
- data/vendor/local/share/doc/groonga/ja/html/reference.html +69 -71
- data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -31
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +13 -16
- data/vendor/local/share/doc/groonga/ja/html/server.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +9 -12
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +8 -11
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +18 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +29 -32
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +12 -15
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -9
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +7 -10
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +10 -13
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -9
- metadata +72 -76
- 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 +0 -41
- 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 +0 -41
- data/vendor/local/share/man/ja/man1/groonga.1 +0 -52774
- data/vendor/local/share/man/man1/groonga.1 +0 -55612
@@ -3,11 +3,11 @@
|
|
3
3
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
4
4
|
|
5
5
|
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>News — Groonga
|
10
|
+
<title>News — Groonga v6.0.2 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '
|
18
|
+
VERSION: '6.0.2',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<script type="text/javascript" src="_static/underscore.js"></script>
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
28
|
-
<link rel="top" title="Groonga
|
28
|
+
<link rel="top" title="Groonga v6.0.2 documentation" href="index.html" />
|
29
29
|
</head>
|
30
30
|
<body role="document">
|
31
31
|
<div class="header">
|
@@ -51,7 +51,7 @@
|
|
51
51
|
<li class="right" style="margin-right: 10px">
|
52
52
|
<a href="genindex.html" title="General Index"
|
53
53
|
accesskey="I">index</a></li>
|
54
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga
|
54
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v6.0.2 documentation</a> »</li>
|
55
55
|
</ul>
|
56
56
|
</div>
|
57
57
|
|
@@ -62,12 +62,210 @@
|
|
62
62
|
|
63
63
|
<div class="section" id="news">
|
64
64
|
<h1>News<a class="headerlink" href="#news" title="Permalink to this headline">¶</a></h1>
|
65
|
-
<div class="section" id="release-6-0-
|
66
|
-
<span id="release-6-0-
|
65
|
+
<div class="section" id="release-6-0-2-2016-04-29">
|
66
|
+
<span id="release-6-0-2"></span><h2>Release 6.0.2 - 2016-04-29<a class="headerlink" href="#release-6-0-2-2016-04-29" title="Permalink to this headline">¶</a></h2>
|
67
67
|
<div class="section" id="improvements">
|
68
68
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
|
+
<ul class="simple">
|
70
|
+
<li>Supported bool in comparison operators (<code class="docutils literal"><span class="pre">></span></code>, <code class="docutils literal"><span class="pre">>=</span></code>, <code class="docutils literal"><span class="pre"><</span></code>, <code class="docutils literal"><span class="pre"><=</span></code>).
|
71
|
+
TRUE is casted to 1. FALSE is casted to 0. Thus you specify function
|
72
|
+
which returns boolean value in comparison.</li>
|
73
|
+
<li>[groonga-http][<a class="reference internal" href="reference/command/request_timeout.html"><span class="doc">Request timeout</span></a>] Supported
|
74
|
+
<code class="docutils literal"><span class="pre">request_timeout</span></code> parameter. Canceled request returns
|
75
|
+
<code class="docutils literal"><span class="pre">HTTP/1.1</span> <span class="pre">408</span> <span class="pre">Request</span> <span class="pre">Timeout</span></code> status code.</li>
|
76
|
+
<li>[<a class="reference internal" href="reference/commands/table_tokenize.html"><span class="doc">table_tokenize</span></a>] Added <code class="docutils literal"><span class="pre">index_column</span></code> option.
|
77
|
+
[GitHub#534] [Patch by Naoya Murakami]</li>
|
78
|
+
<li>[<a class="reference internal" href="reference/commands/table_tokenize.html"><span class="doc">table_tokenize</span></a>] Supported to output <code class="docutils literal"><span class="pre">estimated_size</span></code>.
|
79
|
+
[GitHub#518] [Patch by Naoya Murakami]</li>
|
80
|
+
<li>[geo_in_rectangle] Supported to work without index. In this case, sequential search
|
81
|
+
is executed as a fallback.</li>
|
82
|
+
<li>Reduced needless internal loops. It improves phrase search performance.
|
83
|
+
[GitHub#519] [Patch by Naoya Murakami]</li>
|
84
|
+
<li>[<a class="reference internal" href="contribution.html"><span class="doc">How to contribute to groonga</span></a>] Updated documentation about contribution.
|
85
|
+
[GitHub#522] [Patch by Hiroshi Ohkubo]</li>
|
86
|
+
<li>[<a class="reference internal" href="reference/command/return_code.html"><span class="doc">Return code</span></a>] Updated documentation about return code list.</li>
|
87
|
+
<li>[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added <code class="docutils literal"><span class="pre">--default-request-timeout</span></code> option.</li>
|
88
|
+
<li>[windows] Supported DLL version.</li>
|
89
|
+
<li>Supported index used search even if value only term exists.
|
90
|
+
For example, <code class="docutils literal"><span class="pre">true</span> <span class="pre">||</span> <span class="pre">column</span> <span class="pre">></span> <span class="pre">0</span></code> doesn't use index even if <code class="docutils literal"><span class="pre">column</span></code> has
|
91
|
+
index. In this release, above issue is resolved.</li>
|
92
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported specifying grouped table
|
93
|
+
[GitHub#524,#526,#527,#528,#529] [Patch by Naoya Murakami]</li>
|
94
|
+
<li>Supported grouping by <code class="docutils literal"><span class="pre">Int{8,16,64}/UInt{8,16,64}</span></code> value.
|
95
|
+
In the previous versions, only 32bit fixed size value was supported.</li>
|
96
|
+
<li>Added table name to error message for invalid sort key.</li>
|
97
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><span class="doc">groonga-suggest-httpd</span></a>] Updated documentation.</li>
|
98
|
+
<li>[<a class="reference internal" href="reference/suggest/completion.html"><span class="doc">Completion</span></a>] Fixed a typo about example.
|
99
|
+
[groonga-dev,04008] [Reported by Tachikawa Hiroaki]</li>
|
100
|
+
<li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added a workaround to keep
|
101
|
+
backward compatibility. use <code class="docutils literal"><span class="pre">object_inspect</span></code> instead of <code class="docutils literal"><span class="pre">inspect</span></code>.</li>
|
102
|
+
<li>[groonga-httpd] Updated bundled nginx version to 1.9.15.</li>
|
103
|
+
<li>[centos] Supported systemd.</li>
|
104
|
+
<li>[doc] Supported only HTML output. [GitHub#532] [Patch by Hiroshi Ohkubo]</li>
|
105
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>][centos] Supported to customize
|
106
|
+
environment variables.</li>
|
107
|
+
<li>[<a class="reference internal" href="install/others.html"><span class="doc">Others</span></a>] Updated documentation about <code class="docutils literal"><span class="pre">--with-package-platorm</span></code> option.</li>
|
108
|
+
<li>[ubuntu] Supported Ubuntu 16.04 (Xenial Xerus)</li>
|
109
|
+
</ul>
|
110
|
+
</div>
|
111
|
+
<div class="section" id="fixes">
|
112
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
113
|
+
<ul>
|
114
|
+
<li><p class="first">Fixed a bug that tokenization of zero-length values are failed.
|
115
|
+
For example, if <code class="docutils literal"><span class="pre">description</span></code> column is indexed column, tokenizer reports an error.
|
116
|
+
[GitHub#508] [Reported by Naoya Murakami]:</p>
|
117
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>load --table docs
|
118
|
+
[
|
119
|
+
["_key","description"],
|
120
|
+
[2,""]
|
121
|
+
]
|
122
|
+
</pre></div>
|
123
|
+
</div>
|
124
|
+
</li>
|
125
|
+
<li><p class="first">Fixed a crash bug because of invalid critical section handling. [GitHub#507]</p>
|
126
|
+
</li>
|
127
|
+
<li><p class="first">[<a class="reference internal" href="contribution/development/release.html"><span class="doc">リリース手順</span></a>] Fixed a typo about grntest howto.
|
128
|
+
[GitHub#511] [Patch by Hiroshi Ohkubo]</p>
|
129
|
+
</li>
|
130
|
+
<li><p class="first">[doc] Removed man support.</p>
|
131
|
+
</li>
|
132
|
+
<li><p class="first">Removed invalid debug log messages which make user confused.</p>
|
133
|
+
</li>
|
134
|
+
<li><p class="first">Fixed a bug that data is not correctly flushed because internal counter is wrongly cleared.
|
135
|
+
In the previous version, when size of data exceeds specific one, it was failed to create indexes.
|
136
|
+
[GitHub#517] [Reported by Naoya Murakami]</p>
|
137
|
+
</li>
|
138
|
+
<li><p class="first">Fixed a bug that a process can't use more than one caches in parallel.
|
139
|
+
[GitHub#515]</p>
|
140
|
+
</li>
|
141
|
+
<li><p class="first">Fixed a bug that internally used <code class="docutils literal"><span class="pre">alloc_info</span></code> structure which is used to find memory leaks is
|
142
|
+
not exclusively accessed. Without this fix, it may causes a crash. [GitHub#523]</p>
|
143
|
+
</li>
|
144
|
+
<li><p class="first">[tokenizer mecab] Fixed a memory leak on dictionary encoding mismatch error.
|
145
|
+
[groonga-dev,04012] [Reported by Naoya Murakami]</p>
|
146
|
+
</li>
|
147
|
+
<li><p class="first">Fixed a bug that combination of [<a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><span class="doc">groonga-suggest-httpd</span></a>] and
|
148
|
+
[<a class="reference internal" href="reference/executables/groonga-suggest-learner.html"><span class="doc">groonga-suggest-learner</span></a>] didn't work.</p>
|
149
|
+
</li>
|
150
|
+
<li><p class="first">[doc] Removed needless uuid from *.po [GitHub#531] [Patch by Hiroshi Ohkubo]</p>
|
151
|
+
</li>
|
152
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Fixed a bug that duplicated text
|
153
|
+
is returned. This bug occurs when highlighted keyword occurred 1024 or more times.</p>
|
154
|
+
</li>
|
155
|
+
<li><p class="first">Fixed a bug that <code class="docutils literal"><span class="pre">KEY_LARGE</span></code> conflicts with existing flag.
|
156
|
+
If you use <code class="docutils literal"><span class="pre">TABLE_HASH_KEY|KEY_LARGE</span></code> in the previous version,
|
157
|
+
there is a possibility to break database. Please recreate the table.</p>
|
158
|
+
</li>
|
159
|
+
</ul>
|
160
|
+
</div>
|
161
|
+
<div class="section" id="thanks">
|
162
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
163
|
+
<ul class="simple">
|
164
|
+
<li>Naoya Murakami</li>
|
165
|
+
<li>Hiroshi Ohkubo</li>
|
166
|
+
<li>Tachikawa Hiroaki</li>
|
167
|
+
</ul>
|
168
|
+
</div>
|
169
|
+
</div>
|
170
|
+
<div class="section" id="release-6-0-1-2016-03-29">
|
171
|
+
<span id="release-6-0-1"></span><h2>Release 6.0.1 - 2016-03-29<a class="headerlink" href="#release-6-0-1-2016-03-29" title="Permalink to this headline">¶</a></h2>
|
172
|
+
<div class="section" id="id1">
|
173
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
174
|
+
<ul>
|
175
|
+
<li><p class="first">[mruby] Updated bundled mruby to fix a crash bug related to GC and
|
176
|
+
backtrace.</p>
|
177
|
+
</li>
|
178
|
+
<li><p class="first">Exported the following API</p>
|
179
|
+
<ul class="simple">
|
180
|
+
<li>grn_expr_take_obj()</li>
|
181
|
+
<li>grn_request_canceler_cancel_all()</li>
|
182
|
+
<li>grn_obj_remove_dependent()</li>
|
183
|
+
<li>grn_obj_is_text_family_type()</li>
|
184
|
+
</ul>
|
185
|
+
</li>
|
186
|
+
<li><p class="first">[hash] Supported 4GiB over total key size when <code class="docutils literal"><span class="pre">KEY_LARGE</span></code> flag is set
|
187
|
+
to a table:</p>
|
188
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>table_create Users TABLE_HASH_KEY|KEY_LARGE ShortText
|
189
|
+
</pre></div>
|
190
|
+
</div>
|
191
|
+
</li>
|
192
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported
|
193
|
+
<a class="reference internal" href="reference/command/request_id.html"><span class="doc">Request ID</span></a> when you specify input data as
|
194
|
+
raw JSON instead of parameter value:</p>
|
195
|
+
<div class="highlight-none"><div class="highlight"><pre><span></span>POST /d/load?table=XXX&request_id=x
|
196
|
+
|
197
|
+
load --table XXX --request_id x
|
198
|
+
[
|
199
|
+
...
|
200
|
+
]
|
201
|
+
</pre></div>
|
202
|
+
</div>
|
203
|
+
</li>
|
204
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/shutdown.html"><span class="doc">shutdown</span></a>] Added <code class="docutils literal"><span class="pre">mode</span></code> argument to
|
205
|
+
shutdown immediately. Use <code class="docutils literal"><span class="pre">shutdown</span> <span class="pre">--mode</span> <span class="pre">immediate</span></code> in such a purpose.</p>
|
206
|
+
</li>
|
207
|
+
<li><p class="first">[<a class="reference internal" href="install/mac_os_x.html"><span class="doc">Mac OS X</span></a>] Added a instruction to setup MeCab dictionary for Homebrew.</p>
|
208
|
+
</li>
|
209
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Supported to stop load when cancel
|
210
|
+
is requested.</p>
|
211
|
+
</li>
|
212
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Supported to remove
|
213
|
+
dependent tables. Use <code class="docutils literal"><span class="pre">--dependent</span> <span class="pre">yes</span></code> for it.</p>
|
214
|
+
</li>
|
215
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] Supported to
|
216
|
+
remove dependent tables.</p>
|
217
|
+
</li>
|
218
|
+
<li><p class="first">[Windows] Supported memory debug mode on Windows.</p>
|
219
|
+
</li>
|
220
|
+
<li><p class="first">Supported to dump allocation information by status on memory debug mode</p>
|
221
|
+
</li>
|
222
|
+
<li><p class="first">[<a class="reference internal" href="contribution/documentation/i18n.html"><span class="doc">I18N</span></a>] Added installation step for Sphinx.</p>
|
223
|
+
</li>
|
224
|
+
<li><p class="first">[experimental] Supported to split chunks in static indexing.
|
225
|
+
Use <code class="docutils literal"><span class="pre">GRN_INDEX_CHUNK_SPLIT_ENABLE=yes</span></code> to enable it. [GitHub#479]</p>
|
226
|
+
</li>
|
227
|
+
</ul>
|
228
|
+
</div>
|
229
|
+
<div class="section" id="id2">
|
230
|
+
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
231
|
+
<ul class="simple">
|
232
|
+
<li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Fixed a crash bug when
|
233
|
+
nonexistent column is specified. [GitHub#493]</li>
|
234
|
+
<li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Fixed a bug that load command does
|
235
|
+
not return error code correctly. [GitHub#495]</li>
|
236
|
+
<li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Fixed a memory leak when parsing
|
237
|
+
columns parameter in load command.</li>
|
238
|
+
<li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Fixed a bug that only the first
|
239
|
+
array in <code class="docutils literal"><span class="pre">--values</span></code> is handled as a list of column names if <code class="docutils literal"><span class="pre">--columns</span></code> is not
|
240
|
+
specified. [GitHub#497]</li>
|
241
|
+
<li>[<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Fixed to check <code class="docutils literal"><span class="pre">--columns</span></code> more precisely
|
242
|
+
[GitHub#496]</li>
|
243
|
+
<li>Fixed a insufficient critical section handling for
|
244
|
+
thread-safety.</li>
|
245
|
+
<li>[<a class="reference internal" href="reference/commands/column_create.html"><span class="doc">column_create</span></a>] Fixed a crash bug when
|
246
|
+
failed to create a column.</li>
|
247
|
+
<li>[<a class="reference internal" href="reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Fixed a crash bug to
|
248
|
+
remove nonexistent table. [GitHub#504]</li>
|
249
|
+
<li>Fixed a bug that offline index construction against <code class="docutils literal"><span class="pre">WITH_POSITION</span></code> +
|
250
|
+
non-text <code class="docutils literal"><span class="pre">VECTOR</span></code> column ignores position.</li>
|
251
|
+
<li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Fixed a bug that cycle
|
252
|
+
reference causes stack over flow.</li>
|
253
|
+
<li>[deb] Dropped support for Ubuntu 15.04 (Vivid Vervet)</li>
|
254
|
+
</ul>
|
255
|
+
</div>
|
256
|
+
<div class="section" id="id3">
|
257
|
+
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
258
|
+
<ul class="simple">
|
259
|
+
<li>YUKI Hiroshi</li>
|
260
|
+
</ul>
|
261
|
+
</div>
|
262
|
+
</div>
|
263
|
+
<div class="section" id="release-6-0-0-2016-02-29">
|
264
|
+
<span id="release-6-0-0"></span><h2>Release 6.0.0 - 2016-02-29<a class="headerlink" href="#release-6-0-0-2016-02-29" title="Permalink to this headline">¶</a></h2>
|
265
|
+
<div class="section" id="id4">
|
266
|
+
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
69
267
|
<ul>
|
70
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/grndb.html"><
|
268
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Supported check against table
|
71
269
|
specified as table domain in <code class="docutils literal"><span class="pre">--target</span></code> mode.</p>
|
72
270
|
</li>
|
73
271
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_pat_fuzzy_search()</span></code>] Added a new API that provides fuzzy
|
@@ -90,7 +288,7 @@ Murakami]</p>
|
|
90
288
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_obj_search()</span></code>] Supported <code class="docutils literal"><span class="pre">GRN_OP_FUZZY</span></code>
|
91
289
|
operator. [GitHub#463][Patch by Naoya Murakami]</p>
|
92
290
|
</li>
|
93
|
-
<li><p class="first">[<code class="docutils literal"><span class="pre">
|
291
|
+
<li><p class="first">[<code class="docutils literal"><span class="pre">GRN_TABLE_FUZZY_SEARCH_WITH_TRANSPOSITION</span></code>] Added a flag for
|
94
292
|
<code class="docutils literal"><span class="pre">grn_table_fuzzy_search()</span></code>. [GitHub#463][Patch by Naoya Murakami]</p>
|
95
293
|
</li>
|
96
294
|
<li><p class="first">[<code class="docutils literal"><span class="pre">GRN_TOKENIZE_ONLY</span></code>] Added a new tokenization mode that returns
|
@@ -100,7 +298,7 @@ lexicon. [GitHub#463][Patch by Naoya Murakami]</p>
|
|
100
298
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_obj_type_to_string()</span></code>] Add a new function that stringify
|
101
299
|
type ID such as <code class="docutils literal"><span class="pre">GRN_VOID</span></code> and <code class="docutils literal"><span class="pre">GRN_BULK</span></code>.</p>
|
102
300
|
</li>
|
103
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/object_inspect.html"><
|
301
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/object_inspect.html"><span class="doc">object_inspect</span></a>] Added a new command that
|
104
302
|
returns information of the target object.</p>
|
105
303
|
</li>
|
106
304
|
<li><p class="first">Supported compare operations against vector. If left hand side
|
@@ -115,7 +313,7 @@ vector includes any element that satisfies <code class="docutils literal"><span
|
|
115
313
|
<li><p class="first">[<code class="docutils literal"><span class="pre">fuzzy_search()</span></code>] Added a new function that provides fuzzy search
|
116
314
|
feature. [GitHub#464][Patch by Naoya Murakami]</p>
|
117
315
|
</li>
|
118
|
-
<li><p class="first">[<a class="reference internal" href="reference/functions/edit_distance.html"><
|
316
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/edit_distance.html"><span class="doc">edit_distance</span></a>] Supported transposition
|
119
317
|
flag. [GitHub#464][Patch by Naoya Murakami]</p>
|
120
318
|
</li>
|
121
319
|
<li><p class="first">Supported index search for <code class="docutils literal"><span class="pre">vector_column[2]</span> <span class="pre">==</span> <span class="pre">29</span></code>.</p>
|
@@ -135,14 +333,14 @@ provides getting 32bit integer argument value feature.</p>
|
|
135
333
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_plugin_proc_get_var_string()</span></code>] Add a new API for plugin that
|
136
334
|
provides getting string argument value feature.</p>
|
137
335
|
</li>
|
138
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/object_remove.html"><
|
336
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/object_remove.html"><span class="doc">object_remove</span></a>] Added a new command that
|
139
337
|
removes an object. <code class="docutils literal"><span class="pre">object_remove</span></code> can also remove a broken object.</p>
|
140
338
|
</li>
|
141
|
-
<li><p class="first">Supported mips/
|
339
|
+
<li><p class="first">Supported mips/mipsel. [debian-bugs:770243][Reported by Nobuhiro
|
142
340
|
Iwamatsu][Reported by Thorsten Glaser][Reported by YunQiang
|
143
341
|
Su][Reported by Dejan Latinovic][Reported by Steve Langasek]</p>
|
144
342
|
</li>
|
145
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/grndb.html"><
|
343
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>][CMake] Supported.</p>
|
146
344
|
</li>
|
147
345
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_expr_syntax_expand_query()</span></code>] Added a new API that provides
|
148
346
|
query expansion feature.</p>
|
@@ -156,41 +354,41 @@ query expansion feature.</p>
|
|
156
354
|
<li><p class="first">Added <code class="docutils literal"><span class="pre">XXX</span> <span class="pre">&&</span> <span class="pre">column</span> <span class="pre">!=</span> <span class="pre">xxx</span></code> optimization. It's converted to <code class="docutils literal"><span class="pre">XXX</span>
|
157
355
|
<span class="pre">&!</span> <span class="pre">column</span> <span class="pre">==</span> <span class="pre">xxx</span></code> internally.</p>
|
158
356
|
</li>
|
159
|
-
<li><p class="first">[<a class="reference internal" href="server/memcached.html"><
|
357
|
+
<li><p class="first">[<a class="reference internal" href="server/memcached.html"><span class="doc">Memcached binary protocol</span></a>] Added <code class="docutils literal"><span class="pre">--memcached-column</span></code>. You can
|
160
358
|
access existing column by memcached protocol.</p>
|
161
359
|
</li>
|
162
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
360
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Supported TLS.
|
163
361
|
[groonga-dev,03948][Reported by KITAITI Makoto]</p>
|
164
362
|
</li>
|
165
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
363
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx
|
166
364
|
version to 1.9.11 from 1.9.10.</p>
|
167
365
|
</li>
|
168
366
|
<li><p class="first">[Windows][CMake] Supported LZ4. LZ4 is bundled.</p>
|
169
367
|
</li>
|
170
368
|
</ul>
|
171
369
|
</div>
|
172
|
-
<div class="section" id="
|
173
|
-
<h3>Fixes<a class="headerlink" href="#
|
370
|
+
<div class="section" id="id5">
|
371
|
+
<h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
174
372
|
<ul class="simple">
|
175
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
373
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added a missing error check for
|
176
374
|
outputting column. [GitHub#332][Reported by Masafumi Yokoyama]</li>
|
177
375
|
<li>Fixed a bug that <code class="docutils literal"><span class="pre">function(column_with_index)</span> <span class="pre">==</span> <span class="pre">29</span></code> ignores
|
178
376
|
<code class="docutils literal"><span class="pre">function()</span></code>. [groonga-dev,03884][Reported by Naoya Murakami]</li>
|
179
|
-
<li>[<a class="reference internal" href="reference/commands/reindex.html"><
|
377
|
+
<li>[<a class="reference internal" href="reference/commands/reindex.html"><span class="doc">reindex</span></a>] Fixed a bug that <code class="docutils literal"><span class="pre">reindex</span></code>
|
180
378
|
doesn't clear query cache.</li>
|
181
379
|
<li>[patricia trie] Fixed a bug that sorting by integer patricia trie
|
182
380
|
key returns unsorted result. [GitHub#476][Reported by Ryunosuke SATO]</li>
|
183
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
381
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Fixed a crash bug that is
|
184
382
|
occurred when too many keywords is specified into <code class="docutils literal"><span class="pre">--query</span></code>.
|
185
383
|
[GitHub#484][Reported by Hiroyuki Sato]</li>
|
186
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
187
|
-
used when <a class="reference internal" href="reference/command/command_version.html"><
|
188
|
-
<a class="reference internal" href="reference/command/pretty_print.html"><
|
384
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Fixed a bug that wrong cache is
|
385
|
+
used when <a class="reference internal" href="reference/command/command_version.html"><span class="doc">Command version</span></a> or
|
386
|
+
<a class="reference internal" href="reference/command/pretty_print.html"><span class="doc">Pretty print</span></a> is
|
189
387
|
used. [GitHub#490][Reported by KITAITI Makoto]</li>
|
190
388
|
</ul>
|
191
389
|
</div>
|
192
|
-
<div class="section" id="
|
193
|
-
<h3>Thanks<a class="headerlink" href="#
|
390
|
+
<div class="section" id="id6">
|
391
|
+
<h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
194
392
|
<ul class="simple">
|
195
393
|
<li>Masafumi Yokoyama</li>
|
196
394
|
<li>Naoya Murakami</li>
|
@@ -207,20 +405,20 @@ used. [GitHub#490][Reported by KITAITI Makoto]</li>
|
|
207
405
|
</div>
|
208
406
|
<div class="section" id="release-5-1-2-2016-01-29">
|
209
407
|
<span id="release-5-1-2"></span><h2>Release 5.1.2 - 2016-01-29<a class="headerlink" href="#release-5-1-2-2016-01-29" title="Permalink to this headline">¶</a></h2>
|
210
|
-
<div class="section" id="
|
211
|
-
<h3>Improvements<a class="headerlink" href="#
|
408
|
+
<div class="section" id="id7">
|
409
|
+
<h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
212
410
|
<ul class="simple">
|
213
411
|
<li>Improved performance for sequential search against constant value
|
214
412
|
such as <code class="docutils literal"><span class="pre">true</span></code> and <code class="docutils literal"><span class="pre">29</span></code>.</li>
|
215
413
|
<li>Improved performance for sequential search against binary operation
|
216
414
|
with constant value such as <code class="docutils literal"><span class="pre">x</span> <span class="pre">==</span> <span class="pre">29</span></code> and <code class="docutils literal"><span class="pre">x</span> <span class="pre"><</span> <span class="pre">29</span></code>.</li>
|
217
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
218
|
-
from <code class="docutils literal"><span class="pre">Int32</span></code> when <a class="reference internal" href="reference/command/command_version.html"><
|
415
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Changed score type to <code class="docutils literal"><span class="pre">Float</span></code>
|
416
|
+
from <code class="docutils literal"><span class="pre">Int32</span></code> when <a class="reference internal" href="reference/command/command_version.html"><span class="doc">Command version</span></a> is 2.
|
219
417
|
The current default command version is 1. Command version 2 is
|
220
418
|
experimental. So this change isn't affected to normal users.
|
221
419
|
[GitHub#450][Patch by Naoya Murakami]</li>
|
222
420
|
<li>[grn_ts] Supported match operator.</li>
|
223
|
-
<li>[<a class="reference internal" href="reference/executables/grndb.html"><
|
421
|
+
<li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added <code class="docutils literal"><span class="pre">--target</span></code> option to
|
224
422
|
<code class="docutils literal"><span class="pre">check</span></code> command. It reduces check target.</li>
|
225
423
|
<li>[Windows] Updated bundled msgpack to 1.3.0 from 1.0.1.</li>
|
226
424
|
<li>[Windows] Updated bundled MeCab to 0.996 from 0.98.</li>
|
@@ -229,25 +427,25 @@ records in the hash table.</li>
|
|
229
427
|
<li>[<code class="docutils literal"><span class="pre">GRN_HASH_TINY</span></code>] Added a new flag to create tiny hash table.</li>
|
230
428
|
<li>[<code class="docutils literal"><span class="pre">grn_dump_table_create_flags()</span></code>] Added a new API that converts
|
231
429
|
<code class="docutils literal"><span class="pre">flags</span></code> value of a table to <code class="docutils literal"><span class="pre">flags</span></code> parameter format of
|
232
|
-
<a class="reference internal" href="reference/commands/table_create.html"><
|
430
|
+
<a class="reference internal" href="reference/commands/table_create.html"><span class="doc">table_create</span></a>.</li>
|
233
431
|
<li>[<code class="docutils literal"><span class="pre">grn_dump_column_create_flags()</span></code>] Added a new API that converts
|
234
432
|
<code class="docutils literal"><span class="pre">flags</span></code> value of a column to <code class="docutils literal"><span class="pre">flags</span></code> parameter format of
|
235
|
-
<a class="reference internal" href="reference/commands/column_create.html"><
|
433
|
+
<a class="reference internal" href="reference/commands/column_create.html"><span class="doc">column_create</span></a>.</li>
|
236
434
|
<li>[<code class="docutils literal"><span class="pre">grn_plugin_get_names()</span></code>] Added a new API that returns all plugin
|
237
435
|
names in a database.</li>
|
238
436
|
<li>[<code class="docutils literal"><span class="pre">grn_column_get_all_index_data()</span></code>] Added a new API that returns
|
239
437
|
all index data for a table or data column.</li>
|
240
|
-
<li>[<a class="reference internal" href="reference/commands/schema.html"><
|
438
|
+
<li>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Added indexes information to
|
241
439
|
indexed tables and data columns.</li>
|
242
440
|
<li>[<code class="docutils literal"><span class="pre">grn_config_get()</span></code>] Renamed from <code class="docutils literal"><span class="pre">grn_conf_get()</span></code>.</li>
|
243
441
|
<li>[<code class="docutils literal"><span class="pre">grn_config_set()</span></code>] Renamed from <code class="docutils literal"><span class="pre">grn_conf_set()</span></code>.</li>
|
244
442
|
<li>[<code class="docutils literal"><span class="pre">grn_config_delete()</span></code>] Added a new API that deletes a
|
245
443
|
configuration item.</li>
|
246
|
-
<li>[<a class="reference internal" href="reference/commands/config_set.html"><
|
444
|
+
<li>[<a class="reference internal" href="reference/commands/config_set.html"><span class="doc">config_set</span></a>] Added a new command that
|
247
445
|
sets a configuration item.</li>
|
248
|
-
<li>[<a class="reference internal" href="reference/commands/config_get.html"><
|
446
|
+
<li>[<a class="reference internal" href="reference/commands/config_get.html"><span class="doc">config_get</span></a>] Added a new command that
|
249
447
|
gets a configuration item value.</li>
|
250
|
-
<li>[<a class="reference internal" href="reference/commands/config_delete.html"><
|
448
|
+
<li>[<a class="reference internal" href="reference/commands/config_delete.html"><span class="doc">config_delete</span></a>] Added a new command that
|
251
449
|
deletes a configuration item.</li>
|
252
450
|
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_open()</span></code>] Added a new API that opens a new
|
253
451
|
cursor that iterates all configuration items.</li>
|
@@ -257,38 +455,38 @@ next configuration item in the cursor.</li>
|
|
257
455
|
key of the current configuration item.</li>
|
258
456
|
<li>[<code class="docutils literal"><span class="pre">grn_config_cursor_get_value()</span></code>] Added a new API that gets the
|
259
457
|
value of the current configuration item.</li>
|
260
|
-
<li>[<a class="reference internal" href="reference/alias.html"><
|
458
|
+
<li>[<a class="reference internal" href="reference/alias.html"><span class="doc">Alias</span></a>] Supported aliasing table and column names.</li>
|
261
459
|
<li>[hash table] Added total key size overflow check.</li>
|
262
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
263
|
-
set by <a class="reference internal" href="reference/commands/config_set.html"><
|
460
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported dumping configurations
|
461
|
+
set by <a class="reference internal" href="reference/commands/config_set.html"><span class="doc">config_set</span></a>.</li>
|
264
462
|
<li>[patricia trie] Improved inspection.
|
265
463
|
[GitHub#452][GitHub#457][Patch by Naoya Murakami]</li>
|
266
464
|
<li>[<code class="docutils literal"><span class="pre">grn_get_global_error_message()</span></code>] Added a new API that gets the
|
267
465
|
current error message in the process.</li>
|
268
|
-
<li>[<a class="reference internal" href="reference/commands/lock_acquire.html"><
|
466
|
+
<li>[<a class="reference internal" href="reference/commands/lock_acquire.html"><span class="doc">lock_acquire</span></a>] Added a new command that
|
269
467
|
acquires a lock of a database, table or column.</li>
|
270
|
-
<li>[<a class="reference internal" href="reference/commands/lock_release.html"><
|
468
|
+
<li>[<a class="reference internal" href="reference/commands/lock_release.html"><span class="doc">lock_release</span></a>] Added a new command that
|
271
469
|
releases a lock of a database, table or column.</li>
|
272
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
470
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx
|
273
471
|
version to 1.9.10 from 1.9.7.</li>
|
274
472
|
</ul>
|
275
473
|
</div>
|
276
|
-
<div class="section" id="
|
277
|
-
<h3>Fixes<a class="headerlink" href="#
|
474
|
+
<div class="section" id="id8">
|
475
|
+
<h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
278
476
|
<ul class="simple">
|
279
477
|
<li>Fixed mruby related crash bugs.</li>
|
280
478
|
<li>[Windows] Fixed label in installer.
|
281
479
|
[groonga-dev,03825][Reported by Atsushi Shinoda]</li>
|
282
480
|
<li>[doc] Fixed typos.
|
283
481
|
[GitHub#456][GitHub#458][Patch by tSU_RooT]</li>
|
284
|
-
<li>[<a class="reference internal" href="server/memcached.html"><
|
482
|
+
<li>[<a class="reference internal" href="server/memcached.html"><span class="doc">Memcached binary protocol</span></a>] Added more description.
|
285
483
|
[GitHub#454][Patch by Hiroyuki Sato]</li>
|
286
|
-
<li>Fixed a bug that <a class="reference internal" href="reference/command/command_version.html"><
|
484
|
+
<li>Fixed a bug that <a class="reference internal" href="reference/command/command_version.html"><span class="doc">Command version</span></a> specified
|
287
485
|
by <code class="docutils literal"><span class="pre">command_version</span></code> parameter in a request isn't reset.</li>
|
288
486
|
</ul>
|
289
487
|
</div>
|
290
|
-
<div class="section" id="
|
291
|
-
<h3>Thanks<a class="headerlink" href="#
|
488
|
+
<div class="section" id="id9">
|
489
|
+
<h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
292
490
|
<ul class="simple">
|
293
491
|
<li>Naoya Murakami</li>
|
294
492
|
<li>Atsushi Shinoda</li>
|
@@ -299,38 +497,38 @@ by <code class="docutils literal"><span class="pre">command_version</span></code
|
|
299
497
|
</div>
|
300
498
|
<div class="section" id="release-5-1-1-2015-12-29">
|
301
499
|
<span id="release-5-1-1"></span><h2>Release 5.1.1 - 2015-12-29<a class="headerlink" href="#release-5-1-1-2015-12-29" title="Permalink to this headline">¶</a></h2>
|
302
|
-
<div class="section" id="
|
303
|
-
<h3>Improvements<a class="headerlink" href="#
|
500
|
+
<div class="section" id="id10">
|
501
|
+
<h3>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
304
502
|
<ul class="simple">
|
305
|
-
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><
|
503
|
+
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Supported <code class="docutils literal"><span class="pre">INDEX_COLUMN</span>
|
306
504
|
<span class="pre">==</span> <span class="pre">VALUE</span></code> as index search with an equal supported index.</li>
|
307
505
|
<li>Reduced the continuous same messages from inverted index module.</li>
|
308
506
|
<li>Supported detecting truncated tables by another process.
|
309
507
|
[GitHub#447] [groonga-dev,03761] [Reported by Yutaro SHIMAMURA]</li>
|
310
508
|
<li>[<a class="reference internal" href="reference/api/grn_db.html#c.grn_db_recover" title="grn_db_recover"><code class="xref c c-func docutils literal"><span class="pre">grn_db_recover()</span></code></a>] Supported detecting a broken object.</li>
|
311
509
|
<li>Improved performance for sequential scan search by
|
312
|
-
<a class="reference internal" href="reference/regular_expression.html"><
|
510
|
+
<a class="reference internal" href="reference/regular_expression.html"><span class="doc">Regular expression</span></a> match with constant pattern
|
313
511
|
such as <code class="docutils literal"><span class="pre">COLUMN</span> <span class="pre">@~</span> <span class="pre">"CONSTANT_PATTERN"</span></code>.</li>
|
314
512
|
</ul>
|
315
513
|
</div>
|
316
|
-
<div class="section" id="
|
317
|
-
<h3>Fixes<a class="headerlink" href="#
|
514
|
+
<div class="section" id="id11">
|
515
|
+
<h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
318
516
|
<ul class="simple">
|
319
517
|
<li>Fixed build error on MessagePack support build.
|
320
518
|
[groonga-dev,03708] [Reported by Ryo Sugimoto]</li>
|
321
519
|
<li>[mruby] Fixed a crash bug on error.
|
322
520
|
mruby exception feature is disabled as workaround for now.</li>
|
323
|
-
<li>[<a class="reference internal" href="reference/commands/thread_limit.html"><
|
521
|
+
<li>[<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that
|
324
522
|
<code class="docutils literal"><span class="pre">thread_limit?max=1</span></code> may not reduce the number of current running
|
325
523
|
threads to <code class="docutils literal"><span class="pre">1</span></code>.</li>
|
326
|
-
<li>[<a class="reference internal" href="reference/commands/thread_limit.html"><
|
524
|
+
<li>[<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Fixed a bug that
|
327
525
|
<code class="docutils literal"><span class="pre">thread_limit?max=1</span></code> may not return.</li>
|
328
|
-
<li>[<a class="reference internal" href="reference/tuning.html"><
|
526
|
+
<li>[<a class="reference internal" href="reference/tuning.html"><span class="doc">Tuning</span></a>] Fixed wrong <code class="docutils literal"><span class="pre">sysctl</span></code> argument.
|
329
527
|
[GitHub#448] [Reported by Hiroyuki Sato]</li>
|
330
528
|
</ul>
|
331
529
|
</div>
|
332
|
-
<div class="section" id="
|
333
|
-
<h3>Thanks<a class="headerlink" href="#
|
530
|
+
<div class="section" id="id12">
|
531
|
+
<h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
334
532
|
<ul class="simple">
|
335
533
|
<li>Ryo Sugimoto</li>
|
336
534
|
<li>Yutaro SHIMAMURA</li>
|
@@ -340,45 +538,45 @@ threads to <code class="docutils literal"><span class="pre">1</span></code>.</li
|
|
340
538
|
</div>
|
341
539
|
<div class="section" id="release-5-1-0-2015-11-29">
|
342
540
|
<span id="release-5-1-0"></span><h2>Release 5.1.0 - 2015-11-29<a class="headerlink" href="#release-5-1-0-2015-11-29" title="Permalink to this headline">¶</a></h2>
|
343
|
-
<div class="section" id="
|
344
|
-
<h3>Improvements<a class="headerlink" href="#
|
541
|
+
<div class="section" id="id13">
|
542
|
+
<h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
345
543
|
<ul class="simple">
|
346
544
|
<li>[patiricia trie] Added an error check for the max total key
|
347
|
-
size. See <a class="reference internal" href="limitations.html"><
|
348
|
-
<li>[<a class="reference internal" href="reference/executables/grndb.html"><
|
545
|
+
size. See <a class="reference internal" href="limitations.html"><span class="doc">Limitations</span></a> about the max total key size.</li>
|
546
|
+
<li>[<a class="reference internal" href="reference/executables/grndb.html"><span class="doc">grndb</span></a>] Added a check for broken
|
349
547
|
object. The check can detect a case that the object can't be opened.</li>
|
350
548
|
<li>[<code class="docutils literal"><span class="pre">grn_obj_reindex()</span></code>] Added a new API that recreates existing
|
351
549
|
indexes.</li>
|
352
|
-
<li>[<a class="reference internal" href="reference/commands/reindex.html"><
|
550
|
+
<li>[<a class="reference internal" href="reference/commands/reindex.html"><span class="doc">reindex</span></a>] Added a new command that
|
353
551
|
recreates existing indexes.</li>
|
354
552
|
<li>[inverted index] Improved estimation precision for query.</li>
|
355
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
553
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added fallback
|
356
554
|
mode for sequential search. If sequential search checked many
|
357
555
|
records but didn't find required the number of records, index search
|
358
556
|
is used as fallback.</li>
|
359
557
|
<li>[<code class="docutils literal"><span class="pre">grn_get_package_label()</span></code>] Added a new API that returns package
|
360
558
|
label. It returns <code class="docutils literal"><span class="pre">Groonga</span></code>.</li>
|
361
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-server-http.html"><
|
559
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-server-http.html"><span class="doc">Groonga HTTP server</span></a>] Added <code class="docutils literal"><span class="pre">Server:</span>
|
362
560
|
<span class="pre">Groonga/VERSION</span></code> response header.</li>
|
363
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
561
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Improved performance
|
364
562
|
by reusing <code class="docutils literal"><span class="pre">grn_ctx</span></code> object.</li>
|
365
563
|
<li>[<code class="docutils literal"><span class="pre">grn_file_reader</span></code>] Added a new API that provides <code class="docutils literal"><span class="pre">fgets()</span></code>
|
366
564
|
feature. It fixes a crash bug of
|
367
|
-
<a class="reference internal" href="reference/executables/groonga.html"><
|
368
|
-
<a class="reference internal" href="reference/executables/groonga.html"><
|
565
|
+
<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>. If
|
566
|
+
<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> is built with static C runtime
|
369
567
|
by Visual Studio, the crash bug is occurred.</li>
|
370
|
-
<li>[<a class="reference internal" href="reference/functions/prefix_rk_search.html"><
|
568
|
+
<li>[<a class="reference internal" href="reference/functions/prefix_rk_search.html"><span class="doc">prefix_rk_search</span></a>] Added a new selector
|
371
569
|
that provides prefix RK search feature.</li>
|
372
570
|
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_accessor()</span></code>] Added a new predicate that checks
|
373
571
|
whether the object is an accessor.</li>
|
374
572
|
<li>[<code class="docutils literal"><span class="pre">grn_obj_is_key_accessor()</span></code>] Added a new predicate that checks
|
375
573
|
whether the object is an accessor for <code class="docutils literal"><span class="pre">_key</span></code>
|
376
|
-
<a class="reference internal" href="reference/columns/pseudo.html"><
|
377
|
-
<li>Supported <a class="reference internal" href="reference/command/pretty_print.html"><
|
574
|
+
<a class="reference internal" href="reference/columns/pseudo.html"><span class="doc">Pseudo column</span></a>.</li>
|
575
|
+
<li>Supported <a class="reference internal" href="reference/command/pretty_print.html"><span class="doc">Pretty print</span></a> for JSON output.</li>
|
378
576
|
</ul>
|
379
577
|
</div>
|
380
|
-
<div class="section" id="
|
381
|
-
<h3>Fixes<a class="headerlink" href="#
|
578
|
+
<div class="section" id="id14">
|
579
|
+
<h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
382
580
|
<ul class="simple">
|
383
581
|
<li>[inverted index] Fixed a possible infinite loop bug when log level
|
384
582
|
is <code class="docutils literal"><span class="pre">debug</span></code>.</li>
|
@@ -388,8 +586,8 @@ record that should be matched in sequential search mode.</li>
|
|
388
586
|
empty string key. [groonga-dev,03632] [Reported by Naoya Murakami]</li>
|
389
587
|
</ul>
|
390
588
|
</div>
|
391
|
-
<div class="section" id="
|
392
|
-
<h3>Thanks<a class="headerlink" href="#
|
589
|
+
<div class="section" id="id15">
|
590
|
+
<h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
393
591
|
<ul class="simple">
|
394
592
|
<li>Naoya Murakami</li>
|
395
593
|
</ul>
|
@@ -397,8 +595,8 @@ empty string key. [groonga-dev,03632] [Reported by Naoya Murakami]</li>
|
|
397
595
|
</div>
|
398
596
|
<div class="section" id="release-5-0-9-2015-10-29">
|
399
597
|
<span id="release-5-0-9"></span><h2>Release 5.0.9 - 2015-10-29<a class="headerlink" href="#release-5-0-9-2015-10-29" title="Permalink to this headline">¶</a></h2>
|
400
|
-
<div class="section" id="
|
401
|
-
<h3>Improvements<a class="headerlink" href="#
|
598
|
+
<div class="section" id="id16">
|
599
|
+
<h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
402
600
|
<ul class="simple">
|
403
601
|
<li>[inverted index] Reduced log levels of logs for developers.</li>
|
404
602
|
<li>Flushed pending changed on creating new database. It guards database
|
@@ -411,7 +609,7 @@ for optimizing an expression, changing conditions in an expression
|
|
411
609
|
and so on.</li>
|
412
610
|
<li>[experimental] Added database global configuration mechanism. You
|
413
611
|
can put configurations (key and value pairs) into database. For
|
414
|
-
example, it will be used in <a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span>TokenFilterStopWord</span></a> to custom
|
612
|
+
example, it will be used in <a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span class="std std-ref">TokenFilterStopWord</span></a> to custom
|
415
613
|
column name from <code class="docutils literal"><span class="pre">is_stop_word</span></code>.</li>
|
416
614
|
<li>[<code class="docutils literal"><span class="pre">grn_conf_set()</span></code>] Added a new API that sets a configuration.</li>
|
417
615
|
<li>[<code class="docutils literal"><span class="pre">grn_conf_get()</span></code>] Added a new API that gets a configuration.</li>
|
@@ -420,7 +618,7 @@ column name from <code class="docutils literal"><span class="pre">is_stop_word</
|
|
420
618
|
[debian-bugs:799167][Reported by Matthias Klose]</li>
|
421
619
|
<li>[Windows][CMake] Supported building bundled MeCab.
|
422
620
|
[groonga-dev,03562][Reported by Sato]</li>
|
423
|
-
<li>[<a class="reference internal" href="reference/commands/schema.html"><
|
621
|
+
<li>[<a class="reference internal" href="reference/commands/schema.html"><span class="doc">schema</span></a>] Added a new command that returns
|
424
622
|
schema. Schema is consists with loaded plugins, loaded tokenizers,
|
425
623
|
loaded normalizers, loaded token filters, defined tables and defined
|
426
624
|
columns.</li>
|
@@ -450,11 +648,11 @@ unsigned integer value.</li>
|
|
450
648
|
<li>[<code class="docutils literal"><span class="pre">GRN_OBJ_IS_TRUE()</span></code>] Add a new API that returns true when the
|
451
649
|
passed object is true value.</li>
|
452
650
|
<li>[experimental] Enabled grn_ts by default.</li>
|
453
|
-
<li>[<a class="reference internal" href="install/ubuntu.html"><
|
651
|
+
<li>[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Added Ubuntu 15.10 Wily Werewolf support.</li>
|
454
652
|
</ul>
|
455
653
|
</div>
|
456
|
-
<div class="section" id="
|
457
|
-
<h3>Fixes<a class="headerlink" href="#
|
654
|
+
<div class="section" id="id17">
|
655
|
+
<h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
458
656
|
<ul class="simple">
|
459
657
|
<li>[patricia trie] Fixed a bug that the number of records may be
|
460
658
|
counted up unexpectedly on adding a new entry. [GitHub#417]</li>
|
@@ -470,8 +668,8 @@ break patricia trie. [GitHub#420]</li>
|
|
470
668
|
<li>Fixed a bug that wrong proc type is used for token filter objects.</li>
|
471
669
|
</ul>
|
472
670
|
</div>
|
473
|
-
<div class="section" id="
|
474
|
-
<h3>Thanks<a class="headerlink" href="#
|
671
|
+
<div class="section" id="id18">
|
672
|
+
<h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
475
673
|
<ul class="simple">
|
476
674
|
<li>Matthias Klose</li>
|
477
675
|
<li>Hiroshi Kagami</li>
|
@@ -481,26 +679,26 @@ break patricia trie. [GitHub#420]</li>
|
|
481
679
|
</div>
|
482
680
|
<div class="section" id="release-5-0-8-2015-09-29">
|
483
681
|
<span id="release-5-0-8"></span><h2>Release 5.0.8 - 2015-09-29<a class="headerlink" href="#release-5-0-8-2015-09-29" title="Permalink to this headline">¶</a></h2>
|
484
|
-
<div class="section" id="
|
485
|
-
<h3>Improvements<a class="headerlink" href="#
|
682
|
+
<div class="section" id="id19">
|
683
|
+
<h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
486
684
|
<ul>
|
487
685
|
<li><p class="first">[Windows] Supported build with MySQL again.</p>
|
488
686
|
</li>
|
489
|
-
<li><p class="first">[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><
|
687
|
+
<li><p class="first">[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Changed return value type
|
490
688
|
to <code class="docutils literal"><span class="pre">Bool</span></code> from <code class="docutils literal"><span class="pre">Int32</span></code> for predicate operations such as
|
491
|
-
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span>Match operator</span></a> and
|
492
|
-
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span>Equal operator</span></a>.</p>
|
689
|
+
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span class="std std-ref">Match operator</span></a> and
|
690
|
+
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span class="std std-ref">Equal operator</span></a>.</p>
|
493
691
|
</li>
|
494
|
-
<li><p class="first">[<a class="reference internal" href="reference/api.html"><
|
692
|
+
<li><p class="first">[<a class="reference internal" href="reference/api.html"><span class="doc">API</span></a>] Supported owning other <code class="docutils literal"><span class="pre">grn_obj</span></code> by
|
495
693
|
<code class="docutils literal"><span class="pre">GRN_PTR</span></code> and <code class="docutils literal"><span class="pre">GRN_PVECTOR</span></code> bulk. If you specify <code class="docutils literal"><span class="pre">GRN_OBJ_OWN</span></code>
|
496
694
|
flag to <code class="docutils literal"><span class="pre">GRN_PTR</span></code> and <code class="docutils literal"><span class="pre">GRN_PVECTOR</span></code> bulks, they call
|
497
695
|
<a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj_close" title="grn_obj_close"><code class="xref c c-func docutils literal"><span class="pre">grn_obj_close()</span></code></a> against <code class="docutils literal"><span class="pre">grn_obj</span></code> that is held by
|
498
696
|
them when they are closed.</p>
|
499
697
|
</li>
|
500
|
-
<li><p class="first">[incompatible][<a class="reference internal" href="reference/regular_expression.html"><
|
698
|
+
<li><p class="first">[incompatible][<a class="reference internal" href="reference/regular_expression.html"><span class="doc">Regular expression</span></a>] Changed to
|
501
699
|
normalize regular expression match target text before matching. It's
|
502
700
|
for consistency and performance.</p>
|
503
|
-
<p>Other operations such as <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-prefix-search-operator"><span>Prefix search operator</span></a>
|
701
|
+
<p>Other operations such as <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-prefix-search-operator"><span class="std std-ref">Prefix search operator</span></a>
|
504
702
|
normalize target text.</p>
|
505
703
|
<p>Some simple regular expressions such as <code class="docutils literal"><span class="pre">\Ahello</span></code> can be
|
506
704
|
evaluated by index. It's fast.</p>
|
@@ -515,10 +713,10 @@ evaluated by index. It's fast.</p>
|
|
515
713
|
[GitHub#405][GitHub#409]
|
516
714
|
[Reported by Hiroyuki Sato][Patch by Hiroyuki Sato]</p>
|
517
715
|
</li>
|
518
|
-
<li><p class="first">[<a class="reference internal" href="reference/functions/highlight_html.html"><
|
716
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/highlight_html.html"><span class="doc">highlight_html</span></a>] Improved performance.
|
519
717
|
[groonga-dev,03427] [Reported by Hiroyuki Sato]</p>
|
520
718
|
</li>
|
521
|
-
<li><p class="first">[<a class="reference internal" href="reference/functions/snippet_html.html"><
|
719
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/snippet_html.html"><span class="doc">snippet_html</span></a>] Improved performance.</p>
|
522
720
|
</li>
|
523
721
|
<li><p class="first">[CMake] Stopped to run <code class="docutils literal"><span class="pre">pkg-config</span></code> twice.
|
524
722
|
[Patch by Sergei Golubchik]</p>
|
@@ -534,34 +732,34 @@ object with the ID is opened or not.</p>
|
|
534
732
|
<a class="reference internal" href="reference/api/grn_thread.html#c.grn_thread_get_limit" title="grn_thread_get_limit"><code class="xref c c-func docutils literal"><span class="pre">grn_thread_get_limit()</span></code></a> returns <code class="docutils literal"><span class="pre">1</span></code>, it closes temporary
|
535
733
|
opened objects after it finished to use them.</p>
|
536
734
|
</li>
|
537
|
-
<li><p class="first">[doc][<a class="reference internal" href="reference/commands/table_remove.html"><
|
735
|
+
<li><p class="first">[doc][<a class="reference internal" href="reference/commands/table_remove.html"><span class="doc">table_remove</span></a>] Updated with many
|
538
736
|
descriptions.</p>
|
539
737
|
</li>
|
540
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><
|
541
|
-
line to <a class="reference internal" href="reference/commands/dump.html"><
|
738
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Ensured to add the last new
|
739
|
+
line to <a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a> result on stand alone mode.</p>
|
542
740
|
</li>
|
543
|
-
<li><p class="first">[<a class="reference internal" href="reference/log.html#process-log"><span>Process log</span></a>] Added Groonga version into <code class="docutils literal"><span class="pre">grn_init</span></code> log.</p>
|
741
|
+
<li><p class="first">[<a class="reference internal" href="reference/log.html#process-log"><span class="std std-ref">Process log</span></a>] Added Groonga version into <code class="docutils literal"><span class="pre">grn_init</span></code> log.</p>
|
544
742
|
</li>
|
545
743
|
<li><p class="first">Opened <a class="reference external" href="https://gitter.im/groonga/public">chat room on Gitter</a>.</p>
|
546
744
|
</li>
|
547
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/status.html"><
|
745
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/status.html"><span class="doc">status</span></a>] Added <code class="docutils literal"><span class="pre">start_time</span></code> as alias of
|
548
746
|
<code class="docutils literal"><span class="pre">starttime</span></code> for consistency. Other keys use <code class="docutils literal"><span class="pre">snake_case</span></code> style.
|
549
747
|
<code class="docutils literal"><span class="pre">starttime</span></code> is deprecated. Use <code class="docutils literal"><span class="pre">start_time</span></code> instead.</p>
|
550
748
|
</li>
|
551
749
|
<li><p class="first">Updated bundled Onigmo.</p>
|
552
750
|
</li>
|
553
|
-
<li><p class="first">[doc][<a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><
|
751
|
+
<li><p class="first">[doc][<a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><span class="doc">scorer_tf_at_most</span></a>] Documented.</p>
|
554
752
|
</li>
|
555
753
|
<li><p class="first">Supported columns for temporary table. It's only available C API
|
556
|
-
users for now. <a class="reference internal" href="reference/commands/select.html"><
|
754
|
+
users for now. <a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a> will use this
|
557
755
|
feature in the next release.</p>
|
558
756
|
</li>
|
559
757
|
<li><p class="first">[<code class="docutils literal"><span class="pre">grn_vector_pop_element()</span></code>] Exported.</p>
|
560
758
|
</li>
|
561
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><
|
759
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added checks whether
|
562
760
|
acquiring lock is succeeded or not.</p>
|
563
761
|
</li>
|
564
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html"><
|
762
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-suggest-create-dataset.html"><span class="doc">groonga-suggest-create-dataset</span></a>]
|
565
763
|
Changed to use <code class="docutils literal"><span class="pre">--normalizer</span></code> instead of <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> because
|
566
764
|
<code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> is deprecated.</p>
|
567
765
|
</li>
|
@@ -575,27 +773,27 @@ Changed to use <code class="docutils literal"><span class="pre">--normalizer</sp
|
|
575
773
|
</li>
|
576
774
|
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">grn_ii_cursor_close()</span></code>] Exported.</p>
|
577
775
|
</li>
|
578
|
-
<li><p class="first">[<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span>Match operator</span></a>] Improved index detection.
|
776
|
+
<li><p class="first">[<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-match-operator"><span class="std std-ref">Match operator</span></a>] Improved index detection.
|
579
777
|
Index its lexicon has a tokenizer is preferred.</p>
|
580
778
|
</li>
|
581
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
779
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx
|
582
780
|
to 1.9.5 that supports HTTP/2. HTTP/2 module is enabled.</p>
|
583
781
|
</li>
|
584
782
|
</ul>
|
585
783
|
</div>
|
586
|
-
<div class="section" id="
|
587
|
-
<h3>Fixes<a class="headerlink" href="#
|
784
|
+
<div class="section" id="id20">
|
785
|
+
<h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
588
786
|
<ul class="simple">
|
589
|
-
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><
|
787
|
+
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Fixed a bug that <code class="docutils literal"><span class="pre">&!</span></code>
|
590
788
|
does nothing when right hand side is <code class="docutils literal"><span class="pre">true</span></code>.</li>
|
591
789
|
<li>Fixed performance regression with libtool 2.4.6.
|
592
790
|
[GitHub#406][GitHub#407] [Patch by Hiroyuki Sato]</li>
|
593
|
-
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span>Equal operator</span></a>] Fixed a bug that section is
|
791
|
+
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-equal-operator"><span class="std std-ref">Equal operator</span></a>] Fixed a bug that section is
|
594
792
|
ignored.</li>
|
595
793
|
</ul>
|
596
794
|
</div>
|
597
|
-
<div class="section" id="
|
598
|
-
<h3>Thanks<a class="headerlink" href="#
|
795
|
+
<div class="section" id="id21">
|
796
|
+
<h3>Thanks<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
599
797
|
<ul class="simple">
|
600
798
|
<li>Hiroyuki Sato</li>
|
601
799
|
<li>Sergei Golubchik</li>
|
@@ -604,15 +802,15 @@ ignored.</li>
|
|
604
802
|
</div>
|
605
803
|
<div class="section" id="release-5-0-7-2015-08-31">
|
606
804
|
<span id="release-5-0-7"></span><h2>Release 5.0.7 - 2015-08-31<a class="headerlink" href="#release-5-0-7-2015-08-31" title="Permalink to this headline">¶</a></h2>
|
607
|
-
<p>This release includes a bug fix of <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a>.</p>
|
805
|
+
<p>This release includes a bug fix of <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>.</p>
|
608
806
|
<p>If you're using any multiple column index (index column with
|
609
|
-
<code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag) and <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a>, we
|
807
|
+
<code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag) and <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>, we
|
610
808
|
recommend that you upgrade your Groonga.</p>
|
611
809
|
<p>This release has an important experimental feature for Windows users.
|
612
810
|
See "sparse file support" entry in the following improvement list for
|
613
811
|
details.</p>
|
614
|
-
<div class="section" id="
|
615
|
-
<h3>Improvements<a class="headerlink" href="#
|
812
|
+
<div class="section" id="id22">
|
813
|
+
<h3>Improvements<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
|
616
814
|
<ul>
|
617
815
|
<li><p class="first">[experimental][Windows] Added sparse file support. It's experimental
|
618
816
|
feature. It's disabled by default. You can enable it by specifying
|
@@ -626,34 +824,34 @@ followings:</p>
|
|
626
824
|
<li>Memory usage (Especially virtual memory usage)</li>
|
627
825
|
</ul>
|
628
826
|
</li>
|
629
|
-
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/logical_shard_list.html"><
|
827
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/logical_shard_list.html"><span class="doc">logical_shard_list</span></a>] Added
|
630
828
|
a command that returns a shard list of the specified logical table.</p>
|
631
829
|
</li>
|
632
|
-
<li><p class="first">[experimental][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>Regular expression operator</span></a>]
|
830
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>]
|
633
831
|
Supported regular expression match against vector column without
|
634
832
|
index.</p>
|
635
833
|
</li>
|
636
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
637
|
-
<code class="docutils literal"><span class="pre">--cache</span> <span class="pre">no</span></code> option. It's same as <a class="reference internal" href="reference/commands/select.html#select-cache"><span>cache</span></a> option in
|
638
|
-
<a class="reference internal" href="reference/commands/select.html"><
|
834
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported
|
835
|
+
<code class="docutils literal"><span class="pre">--cache</span> <span class="pre">no</span></code> option. It's same as <a class="reference internal" href="reference/commands/select.html#select-cache"><span class="std std-ref">cache</span></a> option in
|
836
|
+
<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>.</p>
|
639
837
|
</li>
|
640
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
838
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Supported returning
|
641
839
|
the max number of threads feature of
|
642
|
-
<a class="reference internal" href="reference/commands/thread_limit.html"><
|
840
|
+
<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>. You can't set the max
|
643
841
|
number of threads.</p>
|
644
842
|
</li>
|
645
843
|
<li><p class="first">[<a class="reference internal" href="reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a>] Added a new API that unmaps all opened
|
646
844
|
tables and columns. It's a thread unsafe operation. You can't touch
|
647
845
|
the database while <a class="reference internal" href="reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a> is running.</p>
|
648
846
|
</li>
|
649
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/database_unmap.html"><
|
847
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/database_unmap.html"><span class="doc">database_unmap</span></a>] Added a command that
|
650
848
|
unmaps all opened tables and columns in database.</p>
|
651
849
|
</li>
|
652
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/object_exist.html"><
|
850
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/object_exist.html"><span class="doc">object_exist</span></a>] Added a command that
|
653
851
|
checks whether object with the specified name exists or not in
|
654
852
|
database.</p>
|
655
853
|
</li>
|
656
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/column_copy.html"><
|
854
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/column_copy.html"><span class="doc">column_copy</span></a>] Added a command that copies
|
657
855
|
all values from source column to destination column.</p>
|
658
856
|
<p>You can use this command to change column value type, column type,
|
659
857
|
table type and so on.</p>
|
@@ -665,7 +863,7 @@ type. [GitHub#375][Reported by Natanael Copa]</p>
|
|
665
863
|
</li>
|
666
864
|
<li><p class="first">[mruby] Supported error handling on mruby initialization error.</p>
|
667
865
|
</li>
|
668
|
-
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/thread_limit.html"><
|
866
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/thread_limit.html"><span class="doc">thread_limit</span></a>] Renamed from
|
669
867
|
<code class="docutils literal"><span class="pre">thread_count</span></code>.</p>
|
670
868
|
</li>
|
671
869
|
<li><p class="first">Supported logging used indexes in <code class="docutils literal"><span class="pre">info</span></code> level and <code class="docutils literal"><span class="pre">debug</span></code>
|
@@ -678,44 +876,44 @@ improve slow query.</p>
|
|
678
876
|
<li><p class="first">[doc] Removed needless Sphinx configurations.
|
679
877
|
[GitHub#379] [Patch by Ayumu Osanai]</p>
|
680
878
|
</li>
|
681
|
-
<li><p class="first">[experimental][incompatible][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>Regular expression operator</span></a>]
|
879
|
+
<li><p class="first">[experimental][incompatible][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>]
|
682
880
|
Changed <code class="docutils literal"><span class="pre">.</span></code> match behavior. <code class="docutils literal"><span class="pre">.</span></code> matches new line. It's backward
|
683
881
|
incompatible change.</p>
|
684
882
|
</li>
|
685
|
-
<li><p class="first">[doc][<a class="reference internal" href="contribution/development/build.html"><
|
883
|
+
<li><p class="first">[doc][<a class="reference internal" href="contribution/development/build.html"><span class="doc">How to build Groonga at the repository</span></a>] Added a document about
|
686
884
|
building Groonga as Groonga developer.
|
687
885
|
[GitHub#353] [Suggested by Hiro Yoshioka]</p>
|
688
886
|
</li>
|
689
887
|
</ul>
|
690
888
|
</div>
|
691
|
-
<div class="section" id="
|
692
|
-
<h3>Fixes<a class="headerlink" href="#
|
889
|
+
<div class="section" id="id23">
|
890
|
+
<h3>Fixes<a class="headerlink" href="#id23" title="Permalink to this headline">¶</a></h3>
|
693
891
|
<ul>
|
694
892
|
<li><p class="first">[mruby] Fixed a time overflow bug.</p>
|
695
893
|
</li>
|
696
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><
|
894
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Fixed a crash bug when
|
697
895
|
PID file can't be created. [GitHub#368] [Reported by Hiroyuki Sato]</p>
|
698
896
|
</li>
|
699
|
-
<li><p class="first">Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a> may generate
|
897
|
+
<li><p class="first">Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a> may generate
|
700
898
|
broken index. It may be caused for multiple column index. In other
|
701
899
|
words, index column with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag may be broken.</p>
|
702
|
-
<p>If you're using <a class="reference internal" href="reference/indexing.html#online-index-construction"><span>Online index construction</span></a> for index columns
|
900
|
+
<p>If you're using <a class="reference internal" href="reference/indexing.html#online-index-construction"><span class="std std-ref">Online index construction</span></a> for index columns
|
703
901
|
with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag, this bug isn't affected.</p>
|
704
902
|
<p>You can recover this bug by recreating existing multiple column
|
705
903
|
indexes.</p>
|
706
904
|
</li>
|
707
|
-
<li><p class="first">[<a class="reference internal" href="reference/functions/query.html"><
|
708
|
-
<a class="reference internal" href="reference/functions/query.html"><
|
905
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a>] Fixed a crash bug when
|
906
|
+
<a class="reference internal" href="reference/functions/query.html"><span class="doc">query</span></a> is used in <a class="reference internal" href="reference/commands/select.html#select-scorer"><span class="std std-ref">scorer</span></a>.</p>
|
709
907
|
</li>
|
710
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html#select-filter"><span>filter</span></a>] Fixed a bug that
|
711
|
-
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-bitwise-not"><span>Bitwise NOT operator</span></a> against unsigned int value doesn't
|
908
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html#select-filter"><span class="std std-ref">filter</span></a>] Fixed a bug that
|
909
|
+
<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-bitwise-not"><span class="std std-ref">Bitwise NOT operator</span></a> against unsigned int value doesn't
|
712
910
|
work for comparing to <code class="docutils literal"><span class="pre">-NUMBER_LITERAL</span></code>.</p>
|
713
911
|
<p>For example, the following expression doesn't work:</p>
|
714
912
|
<div class="highlight-none"><div class="highlight"><pre><span></span>~UINT32_COLUMN == -6
|
715
913
|
</pre></div>
|
716
914
|
</div>
|
717
915
|
</li>
|
718
|
-
<li><p class="first">Fixed a bug that <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>Regular expression operator</span></a>
|
916
|
+
<li><p class="first">Fixed a bug that <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span class="std std-ref">Regular expression operator</span></a>
|
719
917
|
doesn't work in multithread.</p>
|
720
918
|
</li>
|
721
919
|
<li><p class="first">Fixed some memory leaks.</p>
|
@@ -724,8 +922,8 @@ doesn't work in multithread.</p>
|
|
724
922
|
</li>
|
725
923
|
</ul>
|
726
924
|
</div>
|
727
|
-
<div class="section" id="
|
728
|
-
<h3>Thanks<a class="headerlink" href="#
|
925
|
+
<div class="section" id="id24">
|
926
|
+
<h3>Thanks<a class="headerlink" href="#id24" title="Permalink to this headline">¶</a></h3>
|
729
927
|
<ul class="simple">
|
730
928
|
<li>Hiroyuki Sato</li>
|
731
929
|
<li>Natanael Copa</li>
|
@@ -737,10 +935,10 @@ doesn't work in multithread.</p>
|
|
737
935
|
</div>
|
738
936
|
<div class="section" id="release-5-0-6-2015-07-29">
|
739
937
|
<span id="release-5-0-6"></span><h2>Release 5.0.6 - 2015-07-29<a class="headerlink" href="#release-5-0-6-2015-07-29" title="Permalink to this headline">¶</a></h2>
|
740
|
-
<div class="section" id="
|
741
|
-
<h3>Improvements<a class="headerlink" href="#
|
938
|
+
<div class="section" id="id25">
|
939
|
+
<h3>Improvements<a class="headerlink" href="#id25" title="Permalink to this headline">¶</a></h3>
|
742
940
|
<ul>
|
743
|
-
<li><p class="first">[<a class="reference internal" href="install/ubuntu.html"><
|
941
|
+
<li><p class="first">[<a class="reference internal" href="install/ubuntu.html"><span class="doc">Ubuntu</span></a>] Dropped Ubuntu 14.10 (Utopic Unicorn) support. It had been
|
744
942
|
End of Life on July 23, 2015.</p>
|
745
943
|
</li>
|
746
944
|
<li><p class="first">Supported offline index construction for reference vector. For example, <code class="docutils literal"><span class="pre">load</span></code>
|
@@ -790,12 +988,12 @@ select Memos --filter 'numbers @ 2'
|
|
790
988
|
</pre></div>
|
791
989
|
</div>
|
792
990
|
</li>
|
793
|
-
<li><p class="first">[<a class="reference internal" href="install/centos.html"><
|
991
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="server/package.html"><span class="doc">Server packages</span></a>][<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>]
|
794
992
|
Show exit status. [GitHub#357] [Patch by jacob16bit]</p>
|
795
993
|
</li>
|
796
|
-
<li><p class="first">[<a class="reference internal" href="install/windows.html"><
|
994
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>][<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Supported <code class="docutils literal"><span class="pre">--pid-path</span></code>.</p>
|
797
995
|
</li>
|
798
|
-
<li><p class="first">[<a class="reference internal" href="install/windows.html"><
|
996
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>] Allowed to delete file that is opened by other process.</p>
|
799
997
|
</li>
|
800
998
|
<li><p class="first">Accepted selector only proc. Note that the proc can't be used as function. It means
|
801
999
|
that the proc can't be used with sequential search.</p>
|
@@ -806,10 +1004,10 @@ that the proc can't be used with sequential search.</p>
|
|
806
1004
|
</pre></div>
|
807
1005
|
</div>
|
808
1006
|
</li>
|
809
|
-
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><
|
1007
|
+
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><span class="doc">Tutorial</span></a>] Added more description about database creation fails if DB_PATH
|
810
1008
|
points to an existing file. [GitHub#354] [Suggested by Hirotaka Takayama]</p>
|
811
1009
|
</li>
|
812
|
-
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><
|
1010
|
+
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><span class="doc">Tutorial</span></a>] Described JSON formatting tools.
|
813
1011
|
[GitHub#355] [Suggested by tiwawan]</p>
|
814
1012
|
</li>
|
815
1013
|
<li><p class="first">[experimental] Added an API to get/set the number of threads. It's a experimental API.</p>
|
@@ -817,36 +1015,36 @@ points to an existing file. [GitHub#354] [Suggested by Hirotaka Takayama]</p>
|
|
817
1015
|
<li><p class="first">[experimental][<code class="docutils literal"><span class="pre">thread_count</span></code>] Added a command that get/set the number of threads.
|
818
1016
|
It's a experimental command.</p>
|
819
1017
|
</li>
|
820
|
-
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><
|
1018
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Supported changing the number
|
821
1019
|
of threads by <code class="docutils literal"><span class="pre">thread_count</span></code> command. It's a experimental feature.</p>
|
822
1020
|
</li>
|
823
|
-
<li><p class="first">[experimental][<a class="reference internal" href="install/windows.html"><
|
1021
|
+
<li><p class="first">[experimental][<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>] Added Windows event log support.
|
824
1022
|
It's a experimental feature.</p>
|
825
1023
|
</li>
|
826
|
-
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><
|
1024
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Added Windows event log related
|
827
1025
|
option <code class="docutils literal"><span class="pre">--use-windows-event-log</span></code>. It reports logs as Windows events.
|
828
1026
|
It's a experimental feature.</p>
|
829
1027
|
</li>
|
830
|
-
<li><p class="first">[<a class="reference internal" href="install/windows.html"><
|
1028
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>] Used Groonga's default encoding for log message.</p>
|
831
1029
|
</li>
|
832
1030
|
<li><p class="first">Log used indexes in <code class="docutils literal"><span class="pre">INFO</span></code> level. The default level <code class="docutils literal"><span class="pre">NOTICE</span></code>. So the logs aren't
|
833
1031
|
showed by default.</p>
|
834
1032
|
</li>
|
835
1033
|
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_to_string()</span></code> and <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_parse()</span></code>.</p>
|
836
1034
|
</li>
|
837
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><
|
1035
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Accepted log level name (e.g. <code class="docutils literal"><span class="pre">info</span></code>,
|
838
1036
|
<code class="docutils literal"><span class="pre">debug</span></code> and so on) for <code class="docutils literal"><span class="pre">--log-level</span></code> value.</p>
|
839
1037
|
</li>
|
840
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/log_level.html"><
|
1038
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/log_level.html"><span class="doc">log_level</span></a>][<a class="reference internal" href="reference/commands/log_put.html"><span class="doc">log_put</span></a>]
|
841
1039
|
Accepted log level name for <code class="docutils literal"><span class="pre">--level</span></code> argument.</p>
|
842
1040
|
</li>
|
843
1041
|
<li><p class="first">[plugin] Added <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code>.</p>
|
844
1042
|
</li>
|
845
1043
|
<li><p class="first">Updated sharding plugins.</p>
|
846
1044
|
<ul class="simple">
|
847
|
-
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><
|
848
|
-
It has become <a class="reference internal" href="reference/commands/select.html"><
|
849
|
-
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><
|
1045
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Fixed output format.
|
1046
|
+
It has become <a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a> compatible format.</li>
|
1047
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported the following parameters.<ul>
|
850
1048
|
<li><code class="docutils literal"><span class="pre">--output_columns</span></code></li>
|
851
1049
|
<li><code class="docutils literal"><span class="pre">--offset</span></code></li>
|
852
1050
|
<li><code class="docutils literal"><span class="pre">--limit</span></code></li>
|
@@ -856,28 +1054,28 @@ It has become <a class="reference internal" href="reference/commands/select.html
|
|
856
1054
|
<li><code class="docutils literal"><span class="pre">--drilldown_limit</span></code></li>
|
857
1055
|
</ul>
|
858
1056
|
</li>
|
859
|
-
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><
|
860
|
-
(<code class="docutils literal"><span class="pre">"_id,</span> <span class="pre">_key,</span> <span class="pre">*"</span></code>) as <a class="reference internal" href="reference/commands/select.html"><
|
861
|
-
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><
|
862
|
-
<a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-types"><span>drilldown[${LABEL}].calc_types</span></a> and
|
863
|
-
<a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-target"><span>drilldown[${LABEL}].calc_target</span></a> for labeled drilldown.</li>
|
864
|
-
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><
|
865
|
-
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><
|
1057
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Used the same default output_columns
|
1058
|
+
(<code class="docutils literal"><span class="pre">"_id,</span> <span class="pre">_key,</span> <span class="pre">*"</span></code>) as <a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>.</li>
|
1059
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported
|
1060
|
+
<a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-types"><span class="std std-ref">drilldown[${LABEL}].calc_types</span></a> and
|
1061
|
+
<a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-target"><span class="std std-ref">drilldown[${LABEL}].calc_target</span></a> for labeled drilldown.</li>
|
1062
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Supported cache.</li>
|
1063
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported logging whether range index is
|
866
1064
|
used or not.</li>
|
867
|
-
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><
|
868
|
-
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><
|
869
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1065
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Show target table name in debug log.</li>
|
1066
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported cache.</li>
|
1067
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported
|
870
1068
|
<code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">element'</span></code>.</li>
|
871
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1069
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Added <code class="docutils literal"><span class="pre">use_range_index</span></code> parameter.
|
872
1070
|
It's a parameter for test. It should not be used for production.</li>
|
873
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1071
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Log which mode (range-index or
|
874
1072
|
select mode) is used.</li>
|
875
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
876
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1073
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported cache.</li>
|
1074
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported nested reference vector
|
877
1075
|
accessor.</li>
|
878
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
879
|
-
<a class="reference internal" href="reference/commands/logical_parameters.html"><
|
880
|
-
<li>[<a class="reference internal" href="reference/commands/logical_parameters.html"><
|
1076
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Used range_index value set by
|
1077
|
+
<a class="reference internal" href="reference/commands/logical_parameters.html"><span class="doc">logical_parameters</span></a>.</li>
|
1078
|
+
<li>[<a class="reference internal" href="reference/commands/logical_parameters.html"><span class="doc">logical_parameters</span></a>] Added.</li>
|
881
1079
|
</ul>
|
882
1080
|
</li>
|
883
1081
|
<li><p class="first">Added mruby APIs.</p>
|
@@ -903,8 +1101,8 @@ accessor.</li>
|
|
903
1101
|
</li>
|
904
1102
|
</ul>
|
905
1103
|
</div>
|
906
|
-
<div class="section" id="
|
907
|
-
<h3>Fixes<a class="headerlink" href="#
|
1104
|
+
<div class="section" id="id26">
|
1105
|
+
<h3>Fixes<a class="headerlink" href="#id26" title="Permalink to this headline">¶</a></h3>
|
908
1106
|
<ul>
|
909
1107
|
<li><p class="first">Fixed a memory leak when an error is occurred in <a class="reference internal" href="reference/api/grn_expr.html#c.grn_expr_exec" title="grn_expr_exec"><code class="xref c c-func docutils literal"><span class="pre">grn_expr_exec()</span></code></a>.
|
910
1108
|
For example, unsupported operator (e.g. <code class="docutils literal"><span class="pre">GRN_OP_TERM_EXTRACT</span></code>) is used
|
@@ -913,18 +1111,18 @@ For example, unsupported operator (e.g. <code class="docutils literal"><span cla
|
|
913
1111
|
<li><p class="first">[bindings/php] Added a missing check for a memory allocation failure.
|
914
1112
|
[Reported by Bill Parker]</p>
|
915
1113
|
</li>
|
916
|
-
<li><p class="first">[<a class="reference internal" href="install/centos.html"><
|
1114
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="server/package.html"><span class="doc">Server packages</span></a>][logrotate] Fixed syntax error in script.</p>
|
917
1115
|
</li>
|
918
|
-
<li><p class="first">[<a class="reference internal" href="install/centos.html"><
|
1116
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="server/package.html"><span class="doc">Server packages</span></a>][logrotate] Fixed wrong daemon running check.</p>
|
919
1117
|
</li>
|
920
|
-
<li><p class="first">[<a class="reference internal" href="install/centos.html"><
|
1118
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><span class="doc">CentOS</span></a>][<a class="reference internal" href="server/package.html"><span class="doc">Server packages</span></a>][logrotate] Stop to set owner/group to log files.
|
921
1119
|
Because it's not consistent. groonga-httpd creates log files with root
|
922
1120
|
owner/group. But logrotated log files are created with groonga
|
923
1121
|
owner/group. [GitHub#358] [Reported by jacob16bit]</p>
|
924
1122
|
</li>
|
925
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><
|
1123
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Fixed reported the maximum number of threads.</p>
|
926
1124
|
</li>
|
927
|
-
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
1125
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Remove a needless space in log message:</p>
|
928
1126
|
<div class="highlight-none"><div class="highlight"><pre><span></span>|n| grn_fin (0) ->
|
929
1127
|
|n| grn_fin (0)
|
930
1128
|
^
|
@@ -933,19 +1131,19 @@ owner/group. [GitHub#358] [Reported by jacob16bit]</p>
|
|
933
1131
|
</li>
|
934
1132
|
<li><p class="first">Fixed a bug that estimating size by regexp query with anchor (e.g. <code class="docutils literal"><span class="pre">\\\\A</span></code> in
|
935
1133
|
<code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'comment</span> <span class="pre">@~</span> <span class="pre">"\\\\Abc"'</span></code>) doesn't work. The feature is used in
|
936
|
-
<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1134
|
+
<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>.</p>
|
937
1135
|
</li>
|
938
|
-
<li><p class="first">[<a class="reference internal" href="reference/command/request_id.html"><
|
1136
|
+
<li><p class="first">[<a class="reference internal" href="reference/command/request_id.html"><span class="doc">Request ID</span></a>] Fixed a memory leak when <code class="docutils literal"><span class="pre">request_id</span></code> byte size >= 24.</p>
|
939
1137
|
</li>
|
940
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/lock_clear.html"><
|
1138
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/lock_clear.html"><span class="doc">lock_clear</span></a>] Fixed a typo in command name in Syntax section.
|
941
1139
|
[GitHub#363] [Reported by Christian Kakesa]</p>
|
942
1140
|
</li>
|
943
1141
|
<li><p class="first">[sharding] Fixed wrong min include detection for month range type.</p>
|
944
1142
|
</li>
|
945
1143
|
</ul>
|
946
1144
|
</div>
|
947
|
-
<div class="section" id="
|
948
|
-
<h3>Thanks<a class="headerlink" href="#
|
1145
|
+
<div class="section" id="id27">
|
1146
|
+
<h3>Thanks<a class="headerlink" href="#id27" title="Permalink to this headline">¶</a></h3>
|
949
1147
|
<ul class="simple">
|
950
1148
|
<li>Bill Parker</li>
|
951
1149
|
<li>jacob16bit</li>
|
@@ -957,8 +1155,8 @@ owner/group. [GitHub#358] [Reported by jacob16bit]</p>
|
|
957
1155
|
</div>
|
958
1156
|
<div class="section" id="release-5-0-5-2015-06-29">
|
959
1157
|
<span id="release-5-0-5"></span><h2>Release 5.0.5 - 2015-06-29<a class="headerlink" href="#release-5-0-5-2015-06-29" title="Permalink to this headline">¶</a></h2>
|
960
|
-
<div class="section" id="
|
961
|
-
<h3>Improvements<a class="headerlink" href="#
|
1158
|
+
<div class="section" id="id28">
|
1159
|
+
<h3>Improvements<a class="headerlink" href="#id28" title="Permalink to this headline">¶</a></h3>
|
962
1160
|
<ul>
|
963
1161
|
<li><p class="first">Show correct error information such as NoSuchFileOrDirectory when opening a database.</p>
|
964
1162
|
</li>
|
@@ -975,7 +1173,7 @@ users.</li>
|
|
975
1173
|
</li>
|
976
1174
|
<li><p class="first">[windows] Show error information when memory isn't enough on failing <code class="docutils literal"><span class="pre">CreateFileMapping()</span></code>.</p>
|
977
1175
|
</li>
|
978
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><
|
1176
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><span class="doc">tokenize</span></a>] Updated example to show new "force_prefix" value.
|
979
1177
|
This value is added since 5.0.4.</p>
|
980
1178
|
</li>
|
981
1179
|
<li><p class="first">[windows] Show error information when disk has any problem (disk full and so on) on failing <code class="docutils literal"><span class="pre">FlushViewOfFile()</span></code>.</p>
|
@@ -984,7 +1182,7 @@ This value is added since 5.0.4.</p>
|
|
984
1182
|
</li>
|
985
1183
|
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush_recursive()</span></code>.</p>
|
986
1184
|
</li>
|
987
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/io_flush.html"><
|
1185
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/io_flush.html"><span class="doc">io_flush</span></a>] Added. It flushes memory mapped data to disk.
|
988
1186
|
Usually memory data automatically flush by an OS, but you can explicitly flush with
|
989
1187
|
this command.</p>
|
990
1188
|
</li>
|
@@ -992,13 +1190,13 @@ this command.</p>
|
|
992
1190
|
</li>
|
993
1191
|
<li><p class="first">[mruby] Binded <code class="docutils literal"><span class="pre">grn_table_delete()</span></code> and <code class="docutils literal"><span class="pre">grn_table_delete_by_id()</span></code> to Table#delete.</p>
|
994
1192
|
</li>
|
995
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_table_remove.html"><
|
1193
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_table_remove.html"><span class="doc">logical_table_remove</span></a>] Added.</p>
|
996
1194
|
</li>
|
997
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><
|
1195
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><span class="doc">logical_select</span></a>] Added. <code class="docutils literal"><span class="pre">--filter</span></code> is only supported for now.</p>
|
998
1196
|
</li>
|
999
1197
|
<li><p class="first">[cmake] Supported embedded MeCab tokenizer.</p>
|
1000
1198
|
</li>
|
1001
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><
|
1199
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Supported month and day mixed shards.
|
1002
1200
|
In the same month, month shard must have earlier records rather than day
|
1003
1201
|
shards in the same month. For example:</p>
|
1004
1202
|
<div class="highlight-none"><div class="highlight"><pre><span></span>XXX_201506 <- includes only 2015-06-01 and 2015-06-02 records
|
@@ -1009,17 +1207,17 @@ XXX_20150604 <- includes only 2015-06-04 records
|
|
1009
1207
|
</li>
|
1010
1208
|
</ul>
|
1011
1209
|
</div>
|
1012
|
-
<div class="section" id="
|
1013
|
-
<h3>Fixes<a class="headerlink" href="#
|
1210
|
+
<div class="section" id="id29">
|
1211
|
+
<h3>Fixes<a class="headerlink" href="#id29" title="Permalink to this headline">¶</a></h3>
|
1014
1212
|
<ul class="simple">
|
1015
1213
|
<li>Fixed wrong macro to include netinet/in.h.
|
1016
1214
|
[GitHub#348] [Reported by OBATA Akio]</li>
|
1017
|
-
<li>[rpm][<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
1215
|
+
<li>[rpm][<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed failing restart.
|
1018
1216
|
[GitHub#351] [Patch by jacob16bit]</li>
|
1019
1217
|
</ul>
|
1020
1218
|
</div>
|
1021
|
-
<div class="section" id="
|
1022
|
-
<h3>Thanks<a class="headerlink" href="#
|
1219
|
+
<div class="section" id="id30">
|
1220
|
+
<h3>Thanks<a class="headerlink" href="#id30" title="Permalink to this headline">¶</a></h3>
|
1023
1221
|
<ul class="simple">
|
1024
1222
|
<li>OBATA Akio</li>
|
1025
1223
|
<li>jacob16bit</li>
|
@@ -1028,38 +1226,38 @@ XXX_20150604 <- includes only 2015-06-04 records
|
|
1028
1226
|
</div>
|
1029
1227
|
<div class="section" id="release-5-0-4-2015-05-29">
|
1030
1228
|
<span id="release-5-0-4"></span><h2>Release 5.0.4 - 2015-05-29<a class="headerlink" href="#release-5-0-4-2015-05-29" title="Permalink to this headline">¶</a></h2>
|
1031
|
-
<div class="section" id="
|
1032
|
-
<h3>Improvements<a class="headerlink" href="#
|
1229
|
+
<div class="section" id="id31">
|
1230
|
+
<h3>Improvements<a class="headerlink" href="#id31" title="Permalink to this headline">¶</a></h3>
|
1033
1231
|
<ul class="simple">
|
1034
1232
|
<li>[mruby] Changed to use <code class="docutils literal"><span class="pre">inspect</span></code> to show meaningful error message for error value.</li>
|
1035
1233
|
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Groonga::Bulk#inspect</span></code> to inspect bulk content.</li>
|
1036
1234
|
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Bulk#value</span></code> to extract the value of record from bulk content.</li>
|
1037
1235
|
<li>[mruby] Supported estimating size for <code class="docutils literal"><span class="pre">reference_column</span> <span class="pre">==</span> <span class="pre">record_id</span></code> in
|
1038
|
-
<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1236
|
+
<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>. In above case, it can be searched
|
1039
1237
|
more effectively.</li>
|
1040
|
-
<li>[<a class="reference internal" href="reference/functions/sub_filter.html"><
|
1041
|
-
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><
|
1238
|
+
<li>[<a class="reference internal" href="reference/functions/sub_filter.html"><span class="doc">sub_filter</span></a>] Supported index column as <code class="docutils literal"><span class="pre">scope</span></code> parameter.</li>
|
1239
|
+
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>] Described clearly about numerical
|
1042
1240
|
value. [GitHub groonga/groonga.org#16] [Suggested by Hiroyuki Sato]</li>
|
1043
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
1241
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported accessing other table's record in filter.
|
1044
1242
|
You can use <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE[KEY].COLUMN'</span></code> for example.</li>
|
1045
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
1243
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Supported operator in table key.
|
1046
1244
|
You can use <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE["SOME</span> <span class="pre">STRING"</span> <span class="pre">+</span> <span class="pre">"ANOTHER</span> <span class="pre">STRING"].COLUMN'"</span></code> for example.</li>
|
1047
1245
|
<li>[example] Used Ruby 2.0 or later API in script for converting dictionary data.</li>
|
1048
1246
|
<li>Changed to show error message about invalid type of keys about table.</li>
|
1049
1247
|
<li>[doc] Fixed link from sourceforge.jp to osdn.me or osdn.jp about mailing list preference page.
|
1050
1248
|
SourceForge.jp is marked as obsoleted because of branding issue since May 11, 2015.</li>
|
1051
|
-
<li>[<a class="reference internal" href="reference/commands/tokenize.html"><
|
1052
|
-
<li>Supported to search by shorter words such as 2 or less characters for <a class="reference internal" href="reference/tokenizers.html#token-trigram"><span>TokenTrigram</span></a>.
|
1249
|
+
<li>[<a class="reference internal" href="reference/commands/tokenize.html"><span class="doc">tokenize</span></a>] Added <code class="docutils literal"><span class="pre">force_prefix</span></code> value to each token information. [Patch by Naoya Murakami]</li>
|
1250
|
+
<li>Supported to search by shorter words such as 2 or less characters for <a class="reference internal" href="reference/tokenizers.html#token-trigram"><span class="std std-ref">TokenTrigram</span></a>.
|
1053
1251
|
[Patch by Naoya Murakami]</li>
|
1054
1252
|
<li>[deb] Added service file for Systemd into groonga-httpd and groonga-server-gqtp packages.</li>
|
1055
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><
|
1253
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Ignored <code class="docutils literal"><span class="pre">--query</span></code> when its
|
1056
1254
|
value consists of only space characters. Space characters include
|
1057
1255
|
full-width space (<code class="docutils literal"><span class="pre">U+3000</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">SPACE</span></code> in
|
1058
1256
|
Unicode). [Suggested by TomyGX]</li>
|
1059
1257
|
</ul>
|
1060
1258
|
</div>
|
1061
|
-
<div class="section" id="
|
1062
|
-
<h3>Fixes<a class="headerlink" href="#
|
1259
|
+
<div class="section" id="id32">
|
1260
|
+
<h3>Fixes<a class="headerlink" href="#id32" title="Permalink to this headline">¶</a></h3>
|
1063
1261
|
<ul class="simple">
|
1064
1262
|
<li>Fixed a crash bug when empty key is specified for <code class="docutils literal"><span class="pre">drilldown[label].keys</span></code>.</li>
|
1065
1263
|
<li>Fixed a bug that the return value of <code class="docutils literal"><span class="pre">grn_parse_query_flags</span></code> is not properly checked.
|
@@ -1067,26 +1265,26 @@ Unicode). [Suggested by TomyGX]</li>
|
|
1067
1265
|
<li>Fixed a build error on some BSD systems. They doesn't have <code class="docutils literal"><span class="pre">-i</span></code> option for <code class="docutils literal"><span class="pre">sed</span></code>.</li>
|
1068
1266
|
<li>Fixed a build error on Solaris. It is changed to initialize by <code class="docutils literal"><span class="pre">sizeof(msghdr)</span></code> in <code class="docutils literal"><span class="pre">memset()</span></code> because
|
1069
1267
|
<code class="docutils literal"><span class="pre">msg_control</span></code>, <code class="docutils literal"><span class="pre">msg_controllen</span></code> and <code class="docutils literal"><span class="pre">msg_flags</span></code> doesn't exist on Solaris by default.</li>
|
1070
|
-
<li>[<a class="reference internal" href="reference/tokenizers.html"><
|
1071
|
-
<li>[<a class="reference internal" href="reference/output.html"><
|
1268
|
+
<li>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] Fixed a typo. [GitHub#338] [Reported by Hiroyuki Sato]</li>
|
1269
|
+
<li>[<a class="reference internal" href="reference/output.html"><span class="doc">Output</span></a>] Fixed markup. [GitHub groonga/groonga.org#17]
|
1072
1270
|
[Reported by Hiroyuki Sato]</li>
|
1073
1271
|
<li>Reduced getenv() in each <code class="docutils literal"><span class="pre">grn_ii_cursor_set_min()</span></code>. This fixes performance
|
1074
1272
|
regression on Windows.</li>
|
1075
1273
|
<li>Fixed a build error on OpenBSD. [groonga-dev,03255] [Reported by fbnteqr]</li>
|
1076
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
1274
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Fixed a bug that same message is
|
1077
1275
|
logged.</li>
|
1078
1276
|
<li>Fixed a crash bug which is caused by double free memory.</li>
|
1079
1277
|
<li>Fixed a memory leak. It's occurred when <code class="docutils literal"><span class="pre">--match_columns</span></code> and <code class="docutils literal"><span class="pre">--query</span></code> are
|
1080
1278
|
used for non indexed text field and text fields have a value that isn't bulk
|
1081
1279
|
embeddable. Normally, 32byte over size text isn't bulk embeddable, so this bug
|
1082
1280
|
doesn't affect to the case if only small text less than 32byte are stored.</li>
|
1083
|
-
<li>[<a class="reference internal" href="reference/tokenizers.html"><
|
1281
|
+
<li>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>] [TokenRegexp] Fixed a bug that it can't be searched
|
1084
1282
|
correctly when query contains characters which are treated as blank character.
|
1085
1283
|
For example, the newline - "\n" is typical one.</li>
|
1086
1284
|
</ul>
|
1087
1285
|
</div>
|
1088
|
-
<div class="section" id="
|
1089
|
-
<h3>Thanks<a class="headerlink" href="#
|
1286
|
+
<div class="section" id="id33">
|
1287
|
+
<h3>Thanks<a class="headerlink" href="#id33" title="Permalink to this headline">¶</a></h3>
|
1090
1288
|
<ul class="simple">
|
1091
1289
|
<li>Hiroaki Nakamura</li>
|
1092
1290
|
<li>Hiroyuki Sato</li>
|
@@ -1098,26 +1296,26 @@ For example, the newline - "\n" is typical one.</li>
|
|
1098
1296
|
</div>
|
1099
1297
|
<div class="section" id="release-5-0-3-2015-04-29">
|
1100
1298
|
<span id="release-5-0-3"></span><h2>Release 5.0.3 - 2015-04-29<a class="headerlink" href="#release-5-0-3-2015-04-29" title="Permalink to this headline">¶</a></h2>
|
1101
|
-
<div class="section" id="
|
1102
|
-
<h3>Improvements<a class="headerlink" href="#
|
1299
|
+
<div class="section" id="id34">
|
1300
|
+
<h3>Improvements<a class="headerlink" href="#id34" title="Permalink to this headline">¶</a></h3>
|
1103
1301
|
<ul class="simple">
|
1104
|
-
<li>[<a class="reference internal" href="reference/tokenizers.html"><
|
1302
|
+
<li>[<a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a>][<a class="reference internal" href="reference/regular_expression.html"><span class="doc">Regular expression</span></a>]
|
1105
1303
|
Skip the last one character token.</li>
|
1106
1304
|
<li>[mruby] Supported regexp pattern for estimating size.</li>
|
1107
1305
|
<li>[mruby] Supported size estimation for accessor.</li>
|
1108
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1306
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Removed <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code>
|
1109
1307
|
environment variable which is introduced since Groonga 5.0.2.
|
1110
1308
|
Use <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></code> to disable range index search
|
1111
1309
|
feature.</li>
|
1112
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1113
|
-
<li>[<a class="reference internal" href="install/windows.html"><
|
1114
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1310
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported negative limit and offset.</li>
|
1311
|
+
<li>[<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>] Used <a class="reference external" href="https://github.com/groonga/groonga-admin">Groonga Admin</a> in package.</li>
|
1312
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Changed threshold meaning:<ul>
|
1115
1313
|
<li>threshold <= 0.0: always use range index</li>
|
1116
1314
|
<li>threshold >= 1.0: never use range index</li>
|
1117
1315
|
</ul>
|
1118
1316
|
</li>
|
1119
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1120
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1317
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Supported plugin.</li>
|
1318
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Added the following options:<ul>
|
1121
1319
|
<li><code class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></code></li>
|
1122
1320
|
<li><code class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></code></li>
|
1123
1321
|
<li><code class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></code></li>
|
@@ -1125,19 +1323,19 @@ feature.</li>
|
|
1125
1323
|
</ul>
|
1126
1324
|
</li>
|
1127
1325
|
<li>[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></code>.</li>
|
1128
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1326
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Fixed order to put index columns after reference columns
|
1129
1327
|
because index column may refer reference columns.</li>
|
1130
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1131
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1132
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><
|
1328
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Don't dump records of lexicon.</li>
|
1329
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Show <code class="docutils literal"><span class="pre">_id</span></code> for <code class="docutils literal"><span class="pre">TABLE_NO_KEY</span></code> again.</li>
|
1330
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><span class="doc">dump</span></a>] Used offline index construnction.</li>
|
1133
1331
|
<li>Increased max hash key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
1134
1332
|
<li>Increased max cache key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
1135
1333
|
<li>Improved performance for nested index search.</li>
|
1136
1334
|
<li>Used index for nonexistent reference column value.</li>
|
1137
|
-
<li>[experimental] Added plugin functions/vector. It includes <a class="reference internal" href="reference/functions/vector_size.html"><
|
1138
|
-
<li>[<a class="reference internal" href="install/windows.html"><
|
1335
|
+
<li>[experimental] Added plugin functions/vector. It includes <a class="reference internal" href="reference/functions/vector_size.html"><span class="doc">vector_size</span></a> function.</li>
|
1336
|
+
<li>[<a class="reference internal" href="install/windows.html"><span class="doc">Windows</span></a>] Updated Visual Studio version
|
1139
1337
|
[GitHub groonga/meetup#4] [Reported by Hiroyuki Mizuhara]</li>
|
1140
|
-
<li>[<a class="reference internal" href="reference/commands/cache_limit.html"><
|
1338
|
+
<li>[<a class="reference internal" href="reference/commands/cache_limit.html"><span class="doc">cache_limit</span></a>] Expired old caches when the max N caches is decreased.
|
1141
1339
|
[Suggested by Gurunavi, Inc.]</li>
|
1142
1340
|
<li>Show more information such as errno for errors.</li>
|
1143
1341
|
<li>[windows] Used secure functions on Windows.</li>
|
@@ -1154,31 +1352,31 @@ You can enable log rotation by the following options:<ul>
|
|
1154
1352
|
<li><code class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></code></li>
|
1155
1353
|
</ul>
|
1156
1354
|
</li>
|
1157
|
-
<li>[<a class="reference internal" href="server/gqtp.html"><
|
1158
|
-
<li>[<a class="reference internal" href="reference/executables/groonga.html"><
|
1355
|
+
<li>[<a class="reference internal" href="server/gqtp.html"><span class="doc">GQTP</span></a>] Documented about GQTP server.</li>
|
1356
|
+
<li>[<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>] Documented groonga executable file partially.</li>
|
1159
1357
|
<li>Supported Ubuntu 15.04 (Vivid Vervet).</li>
|
1160
1358
|
<li>Supported Debian 8.0 (Jessie).</li>
|
1161
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><
|
1359
|
+
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><span class="doc">groonga-httpd</span></a>] Updated bundled nginx version to the latest mainline (1.8.0).</li>
|
1162
1360
|
</ul>
|
1163
1361
|
</div>
|
1164
|
-
<div class="section" id="
|
1165
|
-
<h3>Fixes<a class="headerlink" href="#
|
1362
|
+
<div class="section" id="id35">
|
1363
|
+
<h3>Fixes<a class="headerlink" href="#id35" title="Permalink to this headline">¶</a></h3>
|
1166
1364
|
<ul class="simple">
|
1167
|
-
<li>[windows] Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a> is
|
1365
|
+
<li>[windows] Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a> is
|
1168
1366
|
failed for large data (at least 1GB or larger) with Groonga built by
|
1169
1367
|
Microsoft Visual C++. [Reported by Hideki ARAI]</li>
|
1170
1368
|
<li>[mruby] Made <code class="docutils literal"><span class="pre">\\</span></code> index searchable in regular expression.</li>
|
1171
1369
|
<li>Fixed a bug that <code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE=yes</span></code> doesn't return some matched records.</li>
|
1172
1370
|
<li>[sharding] Fixed a bug that partial range is handled as all range.</li>
|
1173
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1174
|
-
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><
|
1371
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Fixed a bug that <code class="docutils literal"><span class="pre">:order</span> <span class="pre">=></span> <span class="pre">"descending"</span></code> doesn't work.</li>
|
1372
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a>] Re-supported counting with range index.</li>
|
1175
1373
|
<li>Fixed a bug causing malfunction of <code class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></code>
|
1176
1374
|
and added a test for invalid patricia trie node add case.
|
1177
1375
|
[groonga-dev,03177] [Reported by yuya sako]</li>
|
1178
1376
|
</ul>
|
1179
1377
|
</div>
|
1180
|
-
<div class="section" id="
|
1181
|
-
<h3>Thanks<a class="headerlink" href="#
|
1378
|
+
<div class="section" id="id36">
|
1379
|
+
<h3>Thanks<a class="headerlink" href="#id36" title="Permalink to this headline">¶</a></h3>
|
1182
1380
|
<ul class="simple">
|
1183
1381
|
<li>Hideki ARAI</li>
|
1184
1382
|
<li>Hiroyuki Mizuhara</li>
|
@@ -1190,8 +1388,8 @@ and added a test for invalid patricia trie node add case.
|
|
1190
1388
|
<div class="section" id="release-5-0-2-2015-03-31">
|
1191
1389
|
<span id="release-5-0-2"></span><h2>Release 5.0.2 - 2015-03-31<a class="headerlink" href="#release-5-0-2-2015-03-31" title="Permalink to this headline">¶</a></h2>
|
1192
1390
|
<p>It's a bug fix release of 5.0.1.</p>
|
1193
|
-
<div class="section" id="
|
1194
|
-
<h3>Improvements<a class="headerlink" href="#
|
1391
|
+
<div class="section" id="id37">
|
1392
|
+
<h3>Improvements<a class="headerlink" href="#id37" title="Permalink to this headline">¶</a></h3>
|
1195
1393
|
<ul class="simple">
|
1196
1394
|
<li>Supported MessagePack 1.0.1. [Reported by Hiroshi Hatake]</li>
|
1197
1395
|
<li>[logical_range_filter] Disabled range index by default. It's enabled
|
@@ -1199,8 +1397,8 @@ when you set the enviromnent variable <code class="docutils literal"><span class
|
|
1199
1397
|
to <code class="docutils literal"><span class="pre">yes</span></code>.</li>
|
1200
1398
|
</ul>
|
1201
1399
|
</div>
|
1202
|
-
<div class="section" id="
|
1203
|
-
<h3>Fixes<a class="headerlink" href="#
|
1400
|
+
<div class="section" id="id38">
|
1401
|
+
<h3>Fixes<a class="headerlink" href="#id38" title="Permalink to this headline">¶</a></h3>
|
1204
1402
|
<ul class="simple">
|
1205
1403
|
<li>Fixed a regression bug that JSONP doesn't work. It was introduced
|
1206
1404
|
in Groonga 4.1.1.</li>
|
@@ -1210,8 +1408,8 @@ in Groonga 4.1.1.</li>
|
|
1210
1408
|
problem is fixed in the environment such as CentOS 7.</li>
|
1211
1409
|
</ul>
|
1212
1410
|
</div>
|
1213
|
-
<div class="section" id="
|
1214
|
-
<h3>Thanks<a class="headerlink" href="#
|
1411
|
+
<div class="section" id="id39">
|
1412
|
+
<h3>Thanks<a class="headerlink" href="#id39" title="Permalink to this headline">¶</a></h3>
|
1215
1413
|
<ul class="simple">
|
1216
1414
|
<li>Atsushi Shinoda</li>
|
1217
1415
|
<li>Hiroshi Hatake</li>
|
@@ -1220,21 +1418,21 @@ problem is fixed in the environment such as CentOS 7.</li>
|
|
1220
1418
|
</div>
|
1221
1419
|
<div class="section" id="release-5-0-1-2015-03-29">
|
1222
1420
|
<span id="release-5-0-1"></span><h2>Release 5.0.1 - 2015-03-29<a class="headerlink" href="#release-5-0-1-2015-03-29" title="Permalink to this headline">¶</a></h2>
|
1223
|
-
<div class="section" id="
|
1224
|
-
<h3>Improvements<a class="headerlink" href="#
|
1421
|
+
<div class="section" id="id40">
|
1422
|
+
<h3>Improvements<a class="headerlink" href="#id40" title="Permalink to this headline">¶</a></h3>
|
1225
1423
|
<ul>
|
1226
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><
|
1424
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><span class="doc">logical_range_filter</span></a>] Supported filter
|
1227
1425
|
and sort.</p>
|
1228
1426
|
</li>
|
1229
1427
|
<li><p class="first">Supported range search by multiple column index.</p>
|
1230
1428
|
</li>
|
1231
|
-
<li><p class="first">Added API <a class="reference internal" href="reference/api/overview.html"><
|
1429
|
+
<li><p class="first">Added API <a class="reference internal" href="reference/api/overview.html"><span class="doc">Overview</span></a> document for users who want
|
1232
1430
|
to use Groonga as library.</p>
|
1233
1431
|
</li>
|
1234
1432
|
<li><p class="first">[incompatible] Changed internal type of <code class="docutils literal"><span class="pre">_score</span></code> to floating point
|
1235
1433
|
number from 32bit integer number. This is incompatible change for DB
|
1236
1434
|
API users. This <em>isn't</em> incompatible change for query API users. It
|
1237
|
-
means that users who just use <a class="reference internal" href="reference/commands/select.html"><
|
1435
|
+
means that users who just use <a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>
|
1238
1436
|
aren't affected. Use the following code that works with both older
|
1239
1437
|
and newer Groonga:</p>
|
1240
1438
|
<div class="highlight-c"><div class="highlight"><pre><span></span><span class="n">grn_obj</span> <span class="o">*</span><span class="n">score</span><span class="p">;</span>
|
@@ -1248,13 +1446,13 @@ and newer Groonga:</p>
|
|
1248
1446
|
</pre></div>
|
1249
1447
|
</div>
|
1250
1448
|
</li>
|
1251
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><
|
1449
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><span class="doc">select</span></a>] Added more strict check for
|
1252
1450
|
invalid drilldown parameter.</p>
|
1253
1451
|
</li>
|
1254
1452
|
<li><p class="first">Added <a class="reference internal" href="reference/api/grn_ctx.html#c.grn_ctx_get_all_tables" title="grn_ctx_get_all_tables"><code class="xref c c-func docutils literal"><span class="pre">grn_ctx_get_all_tables()</span></code></a>. [Suggested by Masatoshi
|
1255
1453
|
Teruya]</p>
|
1256
1454
|
</li>
|
1257
|
-
<li><p class="first">Supported to customize score function. See <a class="reference internal" href="reference/scorer.html"><
|
1455
|
+
<li><p class="first">Supported to customize score function. See <a class="reference internal" href="reference/scorer.html"><span class="doc">Scorer</span></a>
|
1258
1456
|
for details.</p>
|
1259
1457
|
</li>
|
1260
1458
|
<li><p class="first">[incompatible] Custom score function feature introduced API and ABI
|
@@ -1287,14 +1485,14 @@ performance. Set <code class="docutils literal"><span class="pre">GRN_II_CURSOR_
|
|
1287
1485
|
variable to <code class="docutils literal"><span class="pre">1</span></code> to enable the feature. The feature is disabled by
|
1288
1486
|
default.</p>
|
1289
1487
|
</li>
|
1290
|
-
<li><p class="first">[doc] Added <a class="reference internal" href="reference/functions/in_values.html"><
|
1488
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="reference/functions/in_values.html"><span class="doc">in_values</span></a> document.</p>
|
1291
1489
|
</li>
|
1292
|
-
<li><p class="first">[doc] Added <a class="reference internal" href="reference/commands/logical_count.html"><
|
1490
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a> document.</p>
|
1293
1491
|
</li>
|
1294
1492
|
<li><p class="first">[mruby] Implemented custom <code class="docutils literal"><span class="pre">#inspect</span></code> method. Is is useful for
|
1295
1493
|
debugging.</p>
|
1296
1494
|
</li>
|
1297
|
-
<li><p class="first">Added <a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><
|
1495
|
+
<li><p class="first">Added <a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><span class="doc">scorer_tf_at_most</span></a> scorer. It
|
1298
1496
|
limits not to exceed specified score regardless of term frequency.</p>
|
1299
1497
|
</li>
|
1300
1498
|
<li><p class="first">[mruby] Supported estimating matched records for selecting index
|
@@ -1307,7 +1505,7 @@ search or sequential search.</p>
|
|
1307
1505
|
<li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_lexicon_cursor()</span></code></li>
|
1308
1506
|
</ul>
|
1309
1507
|
</li>
|
1310
|
-
<li><p class="first">Added missing <a class="reference internal" href="reference/normalizers.html#normalizer-auto"><span>NormalizerAuto</span></a> availability check. [GitHub#283]
|
1508
|
+
<li><p class="first">Added missing <a class="reference internal" href="reference/normalizers.html#normalizer-auto"><span class="std std-ref">NormalizerAuto</span></a> availability check. [GitHub#283]
|
1311
1509
|
[Reported by Tasuku SUENAGA]</p>
|
1312
1510
|
</li>
|
1313
1511
|
<li><p class="first">Dropped Visual Studio 2010 support.</p>
|
@@ -1326,23 +1524,23 @@ occurred. Additionally, you can customize chunk threshold bytes by
|
|
1326
1524
|
characters.</p>
|
1327
1525
|
</li>
|
1328
1526
|
<li><p class="first">Supported <code class="docutils literal"><span class="pre">--pid-file</span></code> in server mode of
|
1329
|
-
<a class="reference internal" href="reference/executables/groonga.html"><
|
1527
|
+
<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a>.</p>
|
1330
1528
|
</li>
|
1331
1529
|
<li><p class="first">[groonga-httpd] Supported graceful stop to clean Groonga. It doesn't
|
1332
1530
|
terminate the open connections immediately.</p>
|
1333
1531
|
</li>
|
1334
1532
|
<li><p class="first">[experimental] Supported regular expression. See
|
1335
|
-
<a class="reference internal" href="reference/regular_expression.html"><
|
1533
|
+
<a class="reference internal" href="reference/regular_expression.html"><span class="doc">Regular expression</span></a> to know about how to use regular
|
1336
1534
|
expression.</p>
|
1337
1535
|
</li>
|
1338
|
-
<li><p class="first">[experimental] Added <a class="reference internal" href="reference/commands/plugin_unregister.html"><
|
1536
|
+
<li><p class="first">[experimental] Added <a class="reference internal" href="reference/commands/plugin_unregister.html"><span class="doc">plugin_unregister</span></a>
|
1339
1537
|
command.</p>
|
1340
1538
|
</li>
|
1341
|
-
<li><p class="first">[http][<a class="reference internal" href="reference/commands/load.html"><
|
1539
|
+
<li><p class="first">[http][<a class="reference internal" href="reference/commands/load.html"><span class="doc">load</span></a>] Added "," as chunk separator
|
1342
1540
|
in POST data. It decreases internal buffer size and improves load
|
1343
1541
|
time when POST data don't include any new line.</p>
|
1344
1542
|
</li>
|
1345
|
-
<li><p class="first">[doc] Added <a class="reference internal" href="reference/tokenizers.html"><
|
1543
|
+
<li><p class="first">[doc] Added <a class="reference internal" href="reference/tokenizers.html"><span class="doc">Tokenizers</span></a> document.</p>
|
1346
1544
|
</li>
|
1347
1545
|
<li><p class="first">Improved POSIX.2 compatibility by using <code class="docutils literal"><span class="pre">.</span></code> as bash's "source"
|
1348
1546
|
command replacement. [GitHub#317] [Patch by Jun Kuriyama]</p>
|
@@ -1356,20 +1554,20 @@ on Windows. [groonga-dev,03118] [Tested by ongaeshi]</p>
|
|
1356
1554
|
<li><p class="first">Changed mime-type for TSV output to <code class="docutils literal"><span class="pre">text/tab-separated-values</span></code>
|
1357
1555
|
from <code class="docutils literal"><span class="pre">text/plain</span></code>.</p>
|
1358
1556
|
</li>
|
1359
|
-
<li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span>TokenFilterStopWord</span></a>] Supported
|
1360
|
-
<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a>. [GitHub#296] [Patch by Naoya
|
1557
|
+
<li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span class="std std-ref">TokenFilterStopWord</span></a>] Supported
|
1558
|
+
<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span class="std std-ref">Offline index construction</span></a>. [GitHub#296] [Patch by Naoya
|
1361
1559
|
Murakami]</p>
|
1362
1560
|
</li>
|
1363
1561
|
</ul>
|
1364
1562
|
</div>
|
1365
|
-
<div class="section" id="
|
1366
|
-
<h3>Fixes<a class="headerlink" href="#
|
1563
|
+
<div class="section" id="id41">
|
1564
|
+
<h3>Fixes<a class="headerlink" href="#id41" title="Permalink to this headline">¶</a></h3>
|
1367
1565
|
<ul class="simple">
|
1368
1566
|
<li>Fixed not to use obsolete <code class="docutils literal"><span class="pre">--address</span></code> parameter in the default
|
1369
1567
|
groonga.conf. <code class="docutils literal"><span class="pre">--bind-address</span></code> is used instead. [Groonga-talk]
|
1370
1568
|
[Reported by Dewangga]</li>
|
1371
|
-
<li>[<a class="reference internal" href="reference/commands/truncate.html"><
|
1372
|
-
<a class="reference internal" href="reference/tables.html#table-no-key"><span>TABLE_NO_KEY</span></a> table can't be truncated.</li>
|
1569
|
+
<li>[<a class="reference internal" href="reference/commands/truncate.html"><span class="doc">truncate</span></a>] Fixed a bug that
|
1570
|
+
<a class="reference internal" href="reference/tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a> table can't be truncated.</li>
|
1373
1571
|
<li>[mecab] Reduced needless logs for "empty token" and "ignore empty
|
1374
1572
|
token".</li>
|
1375
1573
|
<li>Fixed a bug that wrong section in index is used. It means that wrong
|
@@ -1383,19 +1581,19 @@ multi-column indexes, source column orders are different in them.</li>
|
|
1383
1581
|
</ul>
|
1384
1582
|
</li>
|
1385
1583
|
<li>Fixed a bug that passing Groonga command line to
|
1386
|
-
<a class="reference internal" href="reference/executables/groonga.html"><
|
1584
|
+
<a class="reference internal" href="reference/executables/groonga.html"><span class="doc">groonga executable file</span></a> from shell command line style
|
1387
1585
|
usage always returns <code class="docutils literal"><span class="pre">0</span></code> as exit code. For example, <code class="docutils literal"><span class="pre">groonga</span>
|
1388
1586
|
<span class="pre">DB_PATH</span> <span class="pre">nonexistent_command</span></code> always returned <code class="docutils literal"><span class="pre">0</span></code> as exist code.</li>
|
1389
1587
|
<li>Fixed a bug that plugin path may be broken when two or more plugins
|
1390
1588
|
registered. [Reported by Naoya Murakami]</li>
|
1391
1589
|
<li>Fixed a bug that <code class="docutils literal"><span class="pre">Lexicon.index.source_column_name</span></code> style in
|
1392
|
-
<a class="reference internal" href="reference/commands/select.html#select-match-columns"><span>match_columns</span></a> doesn't work when source
|
1590
|
+
<a class="reference internal" href="reference/commands/select.html#select-match-columns"><span class="std std-ref">match_columns</span></a> doesn't work when source
|
1393
1591
|
column specified by <code class="docutils literal"><span class="pre">source_column_name</span></code> has two or more
|
1394
1592
|
indexes. [Reported by Naoya Murakami]</li>
|
1395
1593
|
</ul>
|
1396
1594
|
</div>
|
1397
|
-
<div class="section" id="
|
1398
|
-
<h3>Thanks<a class="headerlink" href="#
|
1595
|
+
<div class="section" id="id42">
|
1596
|
+
<h3>Thanks<a class="headerlink" href="#id42" title="Permalink to this headline">¶</a></h3>
|
1399
1597
|
<ul class="simple">
|
1400
1598
|
<li>Masatoshi Teruya</li>
|
1401
1599
|
<li>Tasuku SUENAGA</li>
|
@@ -1411,28 +1609,28 @@ indexes. [Reported by Naoya Murakami]</li>
|
|
1411
1609
|
<ul class="simple">
|
1412
1610
|
<li>Bump version to 5.0.0!</li>
|
1413
1611
|
</ul>
|
1414
|
-
<div class="section" id="
|
1415
|
-
<h3>Improvements<a class="headerlink" href="#
|
1612
|
+
<div class="section" id="id43">
|
1613
|
+
<h3>Improvements<a class="headerlink" href="#id43" title="Permalink to this headline">¶</a></h3>
|
1416
1614
|
<ul class="simple">
|
1417
|
-
<li>[doc] Added <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><span>Security</span></a> about <a class="reference internal" href="reference/grn_expr/script_syntax.html"><
|
1615
|
+
<li>[doc] Added <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><span class="std std-ref">Security</span></a> about <a class="reference internal" href="reference/grn_expr/script_syntax.html"><span class="doc">Script syntax</span></a>.</li>
|
1418
1616
|
<li>[experimental] Added sharding plugin. Execute <cite>register sharding</cite> to
|
1419
|
-
enable this feature in advance, then use <a class="reference internal" href="reference/commands/logical_count.html"><
|
1617
|
+
enable this feature in advance, then use <a class="reference internal" href="reference/commands/logical_count.html"><span class="doc">logical_count</span></a> to get the number of records.</li>
|
1420
1618
|
<li>[cmake] Supported embedded Groonga with Clang. It fixed compilation failure
|
1421
1619
|
on FreeBSD 10.1. <a class="reference external" href="https://mariadb.atlassian.net/browse/MDEV-7293">[MDEV-7293]</a>
|
1422
1620
|
[Reported by Bernard Spil]</li>
|
1423
1621
|
<li>Supported to customize plugins directory. Set <cite>GRN_PLUGINS_DIR</cite> environment variable.</li>
|
1424
1622
|
</ul>
|
1425
1623
|
</div>
|
1426
|
-
<div class="section" id="
|
1427
|
-
<h3>Fixes<a class="headerlink" href="#
|
1624
|
+
<div class="section" id="id44">
|
1625
|
+
<h3>Fixes<a class="headerlink" href="#id44" title="Permalink to this headline">¶</a></h3>
|
1428
1626
|
<ul class="simple">
|
1429
1627
|
<li>Fixed build failure when system has an incompatible version of onigmo/oniguruma
|
1430
1628
|
headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
1431
1629
|
<li>Fixed time related build failure on MSVC [GitHub#237]</li>
|
1432
1630
|
</ul>
|
1433
1631
|
</div>
|
1434
|
-
<div class="section" id="
|
1435
|
-
<h3>Thanks<a class="headerlink" href="#
|
1632
|
+
<div class="section" id="id45">
|
1633
|
+
<h3>Thanks<a class="headerlink" href="#id45" title="Permalink to this headline">¶</a></h3>
|
1436
1634
|
<ul class="simple">
|
1437
1635
|
<li>Akinori MUSHA</li>
|
1438
1636
|
<li>Bernard Spil</li>
|
@@ -1779,90 +1977,102 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
1779
1977
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
1780
1978
|
<ul>
|
1781
1979
|
<li><a class="reference internal" href="#">News</a><ul>
|
1782
|
-
<li><a class="reference internal" href="#release-6-0-
|
1980
|
+
<li><a class="reference internal" href="#release-6-0-2-2016-04-29">Release 6.0.2 - 2016-04-29</a><ul>
|
1783
1981
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
1784
1982
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
1785
1983
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
1786
1984
|
</ul>
|
1787
1985
|
</li>
|
1788
|
-
<li><a class="reference internal" href="#release-
|
1986
|
+
<li><a class="reference internal" href="#release-6-0-1-2016-03-29">Release 6.0.1 - 2016-03-29</a><ul>
|
1789
1987
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
1790
1988
|
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
1791
1989
|
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
1792
1990
|
</ul>
|
1793
1991
|
</li>
|
1794
|
-
<li><a class="reference internal" href="#release-
|
1992
|
+
<li><a class="reference internal" href="#release-6-0-0-2016-02-29">Release 6.0.0 - 2016-02-29</a><ul>
|
1795
1993
|
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
1796
1994
|
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
1797
1995
|
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
1798
1996
|
</ul>
|
1799
1997
|
</li>
|
1800
|
-
<li><a class="reference internal" href="#release-5-1-
|
1998
|
+
<li><a class="reference internal" href="#release-5-1-2-2016-01-29">Release 5.1.2 - 2016-01-29</a><ul>
|
1801
1999
|
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
1802
2000
|
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
1803
2001
|
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
1804
2002
|
</ul>
|
1805
2003
|
</li>
|
1806
|
-
<li><a class="reference internal" href="#release-5-
|
2004
|
+
<li><a class="reference internal" href="#release-5-1-1-2015-12-29">Release 5.1.1 - 2015-12-29</a><ul>
|
1807
2005
|
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
1808
2006
|
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
1809
2007
|
<li><a class="reference internal" href="#id12">Thanks</a></li>
|
1810
2008
|
</ul>
|
1811
2009
|
</li>
|
1812
|
-
<li><a class="reference internal" href="#release-5-0-
|
2010
|
+
<li><a class="reference internal" href="#release-5-1-0-2015-11-29">Release 5.1.0 - 2015-11-29</a><ul>
|
1813
2011
|
<li><a class="reference internal" href="#id13">Improvements</a></li>
|
1814
2012
|
<li><a class="reference internal" href="#id14">Fixes</a></li>
|
1815
2013
|
<li><a class="reference internal" href="#id15">Thanks</a></li>
|
1816
2014
|
</ul>
|
1817
2015
|
</li>
|
1818
|
-
<li><a class="reference internal" href="#release-5-0-
|
2016
|
+
<li><a class="reference internal" href="#release-5-0-9-2015-10-29">Release 5.0.9 - 2015-10-29</a><ul>
|
1819
2017
|
<li><a class="reference internal" href="#id16">Improvements</a></li>
|
1820
2018
|
<li><a class="reference internal" href="#id17">Fixes</a></li>
|
1821
2019
|
<li><a class="reference internal" href="#id18">Thanks</a></li>
|
1822
2020
|
</ul>
|
1823
2021
|
</li>
|
1824
|
-
<li><a class="reference internal" href="#release-5-0-
|
2022
|
+
<li><a class="reference internal" href="#release-5-0-8-2015-09-29">Release 5.0.8 - 2015-09-29</a><ul>
|
1825
2023
|
<li><a class="reference internal" href="#id19">Improvements</a></li>
|
1826
2024
|
<li><a class="reference internal" href="#id20">Fixes</a></li>
|
1827
2025
|
<li><a class="reference internal" href="#id21">Thanks</a></li>
|
1828
2026
|
</ul>
|
1829
2027
|
</li>
|
1830
|
-
<li><a class="reference internal" href="#release-5-0-
|
2028
|
+
<li><a class="reference internal" href="#release-5-0-7-2015-08-31">Release 5.0.7 - 2015-08-31</a><ul>
|
1831
2029
|
<li><a class="reference internal" href="#id22">Improvements</a></li>
|
1832
2030
|
<li><a class="reference internal" href="#id23">Fixes</a></li>
|
1833
2031
|
<li><a class="reference internal" href="#id24">Thanks</a></li>
|
1834
2032
|
</ul>
|
1835
2033
|
</li>
|
1836
|
-
<li><a class="reference internal" href="#release-5-0-
|
2034
|
+
<li><a class="reference internal" href="#release-5-0-6-2015-07-29">Release 5.0.6 - 2015-07-29</a><ul>
|
1837
2035
|
<li><a class="reference internal" href="#id25">Improvements</a></li>
|
1838
2036
|
<li><a class="reference internal" href="#id26">Fixes</a></li>
|
1839
2037
|
<li><a class="reference internal" href="#id27">Thanks</a></li>
|
1840
2038
|
</ul>
|
1841
2039
|
</li>
|
1842
|
-
<li><a class="reference internal" href="#release-5-0-
|
2040
|
+
<li><a class="reference internal" href="#release-5-0-5-2015-06-29">Release 5.0.5 - 2015-06-29</a><ul>
|
1843
2041
|
<li><a class="reference internal" href="#id28">Improvements</a></li>
|
1844
2042
|
<li><a class="reference internal" href="#id29">Fixes</a></li>
|
1845
2043
|
<li><a class="reference internal" href="#id30">Thanks</a></li>
|
1846
2044
|
</ul>
|
1847
2045
|
</li>
|
1848
|
-
<li><a class="reference internal" href="#release-5-0-
|
2046
|
+
<li><a class="reference internal" href="#release-5-0-4-2015-05-29">Release 5.0.4 - 2015-05-29</a><ul>
|
1849
2047
|
<li><a class="reference internal" href="#id31">Improvements</a></li>
|
1850
2048
|
<li><a class="reference internal" href="#id32">Fixes</a></li>
|
1851
2049
|
<li><a class="reference internal" href="#id33">Thanks</a></li>
|
1852
2050
|
</ul>
|
1853
2051
|
</li>
|
1854
|
-
<li><a class="reference internal" href="#release-5-0-
|
2052
|
+
<li><a class="reference internal" href="#release-5-0-3-2015-04-29">Release 5.0.3 - 2015-04-29</a><ul>
|
1855
2053
|
<li><a class="reference internal" href="#id34">Improvements</a></li>
|
1856
2054
|
<li><a class="reference internal" href="#id35">Fixes</a></li>
|
1857
2055
|
<li><a class="reference internal" href="#id36">Thanks</a></li>
|
1858
2056
|
</ul>
|
1859
2057
|
</li>
|
1860
|
-
<li><a class="reference internal" href="#release-5-0-
|
2058
|
+
<li><a class="reference internal" href="#release-5-0-2-2015-03-31">Release 5.0.2 - 2015-03-31</a><ul>
|
1861
2059
|
<li><a class="reference internal" href="#id37">Improvements</a></li>
|
1862
2060
|
<li><a class="reference internal" href="#id38">Fixes</a></li>
|
1863
2061
|
<li><a class="reference internal" href="#id39">Thanks</a></li>
|
1864
2062
|
</ul>
|
1865
2063
|
</li>
|
2064
|
+
<li><a class="reference internal" href="#release-5-0-1-2015-03-29">Release 5.0.1 - 2015-03-29</a><ul>
|
2065
|
+
<li><a class="reference internal" href="#id40">Improvements</a></li>
|
2066
|
+
<li><a class="reference internal" href="#id41">Fixes</a></li>
|
2067
|
+
<li><a class="reference internal" href="#id42">Thanks</a></li>
|
2068
|
+
</ul>
|
2069
|
+
</li>
|
2070
|
+
<li><a class="reference internal" href="#release-5-0-0-2015-02-09">Release 5.0.0 - 2015-02-09</a><ul>
|
2071
|
+
<li><a class="reference internal" href="#id43">Improvements</a></li>
|
2072
|
+
<li><a class="reference internal" href="#id44">Fixes</a></li>
|
2073
|
+
<li><a class="reference internal" href="#id45">Thanks</a></li>
|
2074
|
+
</ul>
|
2075
|
+
</li>
|
1866
2076
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
|
1867
2077
|
</ul>
|
1868
2078
|
</li>
|
@@ -1883,9 +2093,6 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
1883
2093
|
<input type="hidden" name="check_keywords" value="yes" />
|
1884
2094
|
<input type="hidden" name="area" value="default" />
|
1885
2095
|
</form>
|
1886
|
-
<p class="searchtip" style="font-size: 90%">
|
1887
|
-
Enter search terms or a module, class or function name.
|
1888
|
-
</p>
|
1889
2096
|
</div>
|
1890
2097
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
1891
2098
|
</div>
|
@@ -1898,7 +2105,7 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
1898
2105
|
<li class="right" style="margin-right: 10px">
|
1899
2106
|
<a href="genindex.html" title="General Index"
|
1900
2107
|
>index</a></li>
|
1901
|
-
<li class="nav-item nav-item-0"><a href="index.html">Groonga
|
2108
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v6.0.2 documentation</a> »</li>
|
1902
2109
|
</ul>
|
1903
2110
|
</div>
|
1904
2111
|
<div class="footer" role="contentinfo">
|