rroonga 5.0.4-x64-mingw32 → 5.0.5-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +2 -2
- data/example/measure-data-column-disk-usage.rb +124 -0
- data/example/measure-index-column-disk-usage.rb +81 -0
- data/example/measure-table-disk-usage.rb +100 -0
- data/ext/groonga/rb-grn-database.c +31 -0
- data/ext/groonga/rb-grn-double-array-trie.c +1 -8
- data/ext/groonga/rb-grn-logger.c +45 -0
- data/ext/groonga/rb-grn-object.c +29 -1
- data/ext/groonga/rb-grn-patricia-trie.c +1 -8
- data/ext/groonga/rb-grn-table-cursor.c +8 -3
- data/ext/groonga/rb-grn-table.c +10 -5
- data/ext/groonga/rb-grn-thread.c +160 -0
- data/ext/groonga/rb-grn-windows-event-logger.c +79 -0
- data/ext/groonga/rb-grn.h +3 -1
- data/ext/groonga/rb-groonga.c +3 -1
- data/lib/1.9/groonga.so +0 -0
- data/lib/2.0/groonga.so +0 -0
- data/lib/2.1/groonga.so +0 -0
- data/lib/2.2/groonga.so +0 -0
- data/lib/groonga/dumper.rb +6 -1
- data/rroonga-build.rb +4 -4
- data/test/groonga-test-utils.rb +5 -1
- data/test/test-database.rb +11 -0
- data/test/test-logger.rb +6 -0
- data/test/test-operator.rb +6 -6
- data/test/test-procedure.rb +15 -0
- data/test/test-table-dumper.rb +170 -1
- data/test/test-thread.rb +42 -0
- data/test/test-windows-event-logger.rb +28 -0
- data/vendor/local/bin/grndb.exe +0 -0
- data/vendor/local/bin/groonga-benchmark.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgcc_s_seh-1.dll +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/bin/libmecab-1.dll +0 -0
- data/vendor/local/bin/libmsgpack-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/libstdc++-6.dll +0 -0
- data/vendor/local/bin/libwinpthread-1.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/etc/groonga/windows_event_log/provider.man +38 -0
- data/vendor/local/include/groonga/groonga.h +2 -0
- data/vendor/local/include/groonga/groonga/command.h +2 -0
- data/vendor/local/include/groonga/groonga/groonga.h +5 -0
- data/vendor/local/include/groonga/groonga/obj.h +1 -0
- data/vendor/local/include/groonga/groonga/portability.h +16 -0
- data/vendor/local/include/groonga/groonga/thread.h +42 -0
- data/vendor/local/include/groonga/groonga/windows_event_logger.h +33 -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/functions/vector.la +2 -2
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
- data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
- data/vendor/local/lib/groonga/plugins/sharding.rb +5 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +43 -6
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +32 -25
- data/vendor/local/lib/groonga/plugins/sharding/logical_parameters.rb +44 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +217 -49
- data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +507 -45
- data/vendor/local/lib/groonga/plugins/sharding/logical_shard_list.rb +28 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +11 -6
- data/vendor/local/lib/groonga/plugins/sharding/parameters.rb +10 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
- data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
- data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
- data/vendor/local/lib/groonga/scripts/ruby/command.rb +31 -1
- data/vendor/local/lib/groonga/scripts/ruby/context.rb +18 -2
- data/vendor/local/lib/groonga/scripts/ruby/database.rb +12 -4
- data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +31 -28
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +1 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +4 -2
- data/vendor/local/lib/groonga/scripts/ruby/query_logger.rb +9 -0
- data/vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb +39 -0
- data/vendor/local/lib/groonga/scripts/ruby/record.rb +12 -0
- data/vendor/local/lib/groonga/scripts/ruby/table.rb +35 -1
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +2 -2
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +2 -2
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development.txt +3 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +16 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +7 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt +4 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +319 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_db.txt +23 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_thread.txt +122 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +381 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +85 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +218 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +1 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +3 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +138 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +97 -10
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +745 -23
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +107 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +3 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +1 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +90 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +240 -56
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +33 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt +90 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +110 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +1 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +3 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +0 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +0 -1
- 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 +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +3 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +2 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +108 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +0 -21
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +24 -18
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +19 -19
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +9 -9
- data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
- data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +27 -2
- data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
- data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -9404
- data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
- data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +31 -1415
- data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
- data/vendor/local/share/doc/groonga/en/html/characteristic.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/client.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/community.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/contribution.html +78 -70
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +30 -27
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +146 -0
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +237 -0
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +227 -0
- data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +231 -0
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +37 -35
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +54 -52
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +80 -78
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +135 -122
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +38 -34
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +58 -54
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/development.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/genindex.html +48 -20
- data/vendor/local/share/doc/groonga/en/html/index.html +123 -105
- data/vendor/local/share/doc/groonga/en/html/install.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +32 -30
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +31 -29
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/install/others.html +92 -90
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +29 -28
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/news.html +509 -142
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +110 -108
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +73 -71
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +111 -109
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +111 -94
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +55 -52
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +51 -49
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +63 -61
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +84 -82
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +41 -39
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +89 -87
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +88 -50
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +83 -81
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +44 -42
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +93 -91
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +79 -77
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +69 -67
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +296 -0
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +51 -49
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +60 -58
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +72 -70
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +70 -61
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +59 -57
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +100 -98
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +49 -47
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +796 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +62 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +96 -94
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +67 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +236 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +62 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +59 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +63 -61
- data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +281 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +66 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +53 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +78 -75
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +283 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +160 -85
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +2071 -83
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +287 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +71 -68
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +86 -84
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +52 -50
- data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +227 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +57 -55
- data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +53 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +56 -54
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +75 -74
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +59 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +59 -57
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +898 -647
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +50 -48
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +87 -85
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +175 -152
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +55 -53
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +327 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +77 -75
- data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +241 -0
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +108 -106
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +56 -51
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +56 -55
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +41 -39
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +83 -81
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +48 -46
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +40 -38
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +84 -82
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +47 -45
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +85 -83
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +66 -64
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +54 -52
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +35 -33
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -53
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +49 -47
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +244 -242
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +327 -325
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -29
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +49 -47
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +62 -60
- data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +107 -103
- data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +50 -40
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +41 -31
- data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +241 -0
- data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +56 -54
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +41 -39
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +341 -289
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +68 -66
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +37 -35
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/server/memcached.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/server/package.html +39 -37
- data/vendor/local/share/doc/groonga/en/html/spec.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +129 -127
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -17
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +29 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +35 -33
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +46 -39
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +65 -63
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +55 -53
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
- data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +3 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +16 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +7 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt +4 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +319 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt +23 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_thread.txt +122 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +381 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +85 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +218 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +1 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +3 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +138 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +97 -10
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +745 -23
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +107 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +3 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +1 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +90 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +240 -56
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +33 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt +90 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +110 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +1 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +3 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +0 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +0 -1
- 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 +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +3 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +2 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +108 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +0 -21
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +24 -18
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +19 -19
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +9 -9
- data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
- data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +27 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -9404
- data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +31 -1415
- data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
- data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
- data/vendor/local/share/doc/groonga/ja/html/characteristic.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/client.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/community.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +77 -69
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +30 -27
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +144 -0
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +226 -0
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +215 -0
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +229 -0
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +53 -51
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +79 -77
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +134 -121
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +57 -53
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/development.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +48 -20
- data/vendor/local/share/doc/groonga/ja/html/index.html +122 -104
- data/vendor/local/share/doc/groonga/ja/html/install.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +83 -81
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +30 -29
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/news.html +460 -126
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +102 -100
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +66 -64
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +91 -89
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +111 -94
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +55 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +51 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +58 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +84 -82
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +41 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +85 -83
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +88 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +78 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +44 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +93 -91
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +79 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +69 -67
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +286 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +60 -58
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +61 -59
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +70 -61
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +49 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +99 -97
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +41 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +49 -47
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +781 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +88 -86
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +66 -63
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +229 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +58 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +63 -61
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +266 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +59 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +53 -52
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +78 -75
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +276 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +158 -85
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +2008 -80
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +285 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +71 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +82 -79
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +220 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +53 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +51 -49
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +68 -67
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +59 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +59 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +680 -448
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +84 -82
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +146 -126
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +55 -53
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +322 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +73 -70
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +229 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +94 -91
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +56 -51
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +56 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +39 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +73 -72
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +40 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +84 -82
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +69 -67
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +56 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +48 -46
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +143 -141
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +236 -234
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +39 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +42 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +91 -88
- data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +50 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +41 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +223 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +303 -243
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +42 -40
- data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/spec.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +128 -126
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -17
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +29 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +46 -39
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +66 -64
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
- data/vendor/local/share/license/groonga/README.md +6 -0
- data/vendor/local/share/license/mruby/AUTHORS +1 -0
- data/vendor/local/share/license/mruby/MITL +1 -1
- data/vendor/local/share/license/mruby/README.md +6 -5
- data/vendor/local/share/license/msgpack/README +219 -0
- data/vendor/local/share/man/ja/man1/groonga.1 +23512 -15126
- data/vendor/local/share/man/man1/groonga.1 +26542 -17745
- metadata +77 -3
- data/vendor/local/share/license/msgpack/AUTHORS +0 -0
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>9. Limitations — Groonga v5.0.
|
10
|
+
<title>9. Limitations — Groonga v5.0.6-226-gd7da7e7 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: '5.0.
|
18
|
+
VERSION: '5.0.6-226-gd7da7e7',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,11 +25,11 @@
|
|
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 v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.6-226-gd7da7e7 documentation" href="index.html" />
|
29
29
|
<link rel="next" title="10. トラブルシューティング" href="troubleshooting.html" />
|
30
30
|
<link rel="prev" title="8.2. 検索" href="spec/search.html" />
|
31
31
|
</head>
|
32
|
-
<body>
|
32
|
+
<body role="document">
|
33
33
|
<div class="header">
|
34
34
|
<h1 class="title">
|
35
35
|
<a id="top-link" href="index.html">
|
@@ -47,7 +47,7 @@
|
|
47
47
|
</div>
|
48
48
|
|
49
49
|
|
50
|
-
<div class="related">
|
50
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
51
51
|
<h3>Navigation</h3>
|
52
52
|
<ul>
|
53
53
|
<li class="right" style="margin-right: 10px">
|
@@ -59,14 +59,14 @@
|
|
59
59
|
<li class="right" >
|
60
60
|
<a href="spec/search.html" title="8.2. 検索"
|
61
61
|
accesskey="P">previous</a> |</li>
|
62
|
-
<li><a href="index.html">Groonga v5.0.
|
62
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> »</li>
|
63
63
|
</ul>
|
64
64
|
</div>
|
65
65
|
|
66
66
|
<div class="document">
|
67
67
|
<div class="documentwrapper">
|
68
68
|
<div class="bodywrapper">
|
69
|
-
<div class="body">
|
69
|
+
<div class="body" role="main">
|
70
70
|
|
71
71
|
<div class="section" id="limitations">
|
72
72
|
<h1>9. Limitations<a class="headerlink" href="#limitations" title="Permalink to this headline">¶</a></h1>
|
@@ -103,7 +103,7 @@
|
|
103
103
|
</div>
|
104
104
|
</div>
|
105
105
|
</div>
|
106
|
-
<div class="sphinxsidebar">
|
106
|
+
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
107
107
|
<div class="sphinxsidebarwrapper">
|
108
108
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
109
109
|
<ul>
|
@@ -121,12 +121,14 @@
|
|
121
121
|
<h4>Next topic</h4>
|
122
122
|
<p class="topless"><a href="troubleshooting.html"
|
123
123
|
title="next chapter">10. トラブルシューティング</a></p>
|
124
|
-
<
|
125
|
-
|
126
|
-
<
|
127
|
-
|
128
|
-
|
129
|
-
|
124
|
+
<div role="note" aria-label="source link">
|
125
|
+
<h3>This Page</h3>
|
126
|
+
<ul class="this-page-menu">
|
127
|
+
<li><a href="_sources/limitations.txt"
|
128
|
+
rel="nofollow">Show Source</a></li>
|
129
|
+
</ul>
|
130
|
+
</div>
|
131
|
+
<div id="searchbox" style="display: none" role="search">
|
130
132
|
<h3>Quick search</h3>
|
131
133
|
<form class="search" action="search.html" method="get">
|
132
134
|
<input type="text" name="q" />
|
@@ -143,7 +145,7 @@
|
|
143
145
|
</div>
|
144
146
|
<div class="clearer"></div>
|
145
147
|
</div>
|
146
|
-
<div class="related">
|
148
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
147
149
|
<h3>Navigation</h3>
|
148
150
|
<ul>
|
149
151
|
<li class="right" style="margin-right: 10px">
|
@@ -155,10 +157,10 @@
|
|
155
157
|
<li class="right" >
|
156
158
|
<a href="spec/search.html" title="8.2. 検索"
|
157
159
|
>previous</a> |</li>
|
158
|
-
<li><a href="index.html">Groonga v5.0.
|
160
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> »</li>
|
159
161
|
</ul>
|
160
162
|
</div>
|
161
|
-
<div class="footer">
|
163
|
+
<div class="footer" role="contentinfo">
|
162
164
|
© Copyright 2009-2015, Brazil, Inc.
|
163
165
|
</div>
|
164
166
|
</body>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>News — Groonga v5.0.
|
10
|
+
<title>News — Groonga v5.0.6-226-gd7da7e7 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: '5.0.
|
18
|
+
VERSION: '5.0.6-226-gd7da7e7',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -25,9 +25,9 @@
|
|
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 v5.0.
|
28
|
+
<link rel="top" title="Groonga v5.0.6-226-gd7da7e7 documentation" href="index.html" />
|
29
29
|
</head>
|
30
|
-
<body>
|
30
|
+
<body role="document">
|
31
31
|
<div class="header">
|
32
32
|
<h1 class="title">
|
33
33
|
<a id="top-link" href="index.html">
|
@@ -45,28 +45,381 @@
|
|
45
45
|
</div>
|
46
46
|
|
47
47
|
|
48
|
-
<div class="related">
|
48
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
49
49
|
<h3>Navigation</h3>
|
50
50
|
<ul>
|
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><a href="index.html">Groonga v5.0.
|
54
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> »</li>
|
55
55
|
</ul>
|
56
56
|
</div>
|
57
57
|
|
58
58
|
<div class="document">
|
59
59
|
<div class="documentwrapper">
|
60
60
|
<div class="bodywrapper">
|
61
|
-
<div class="body">
|
61
|
+
<div class="body" role="main">
|
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-5-0-
|
66
|
-
<span id="release-5-0-
|
65
|
+
<div class="section" id="release-5-0-7-2015-08-31">
|
66
|
+
<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>
|
67
|
+
<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>
|
68
|
+
<p>If you're using any multiple column index (index column with
|
69
|
+
<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
|
70
|
+
recommend that you upgrade your Groonga.</p>
|
71
|
+
<p>This release has an important experimental feature for Windows users.
|
72
|
+
See "sparse file support" entry in the following improvement list for
|
73
|
+
details.</p>
|
67
74
|
<div class="section" id="improvements">
|
68
75
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
76
|
<ul>
|
77
|
+
<li><p class="first">[experimental][Windows] Added sparse file support. It's experimental
|
78
|
+
feature. It's disabled by default. You can enable it by specifying
|
79
|
+
<code class="docutils literal"><span class="pre">GRN_IO_USE_SPARSE=yes</span></code> environment variable.</p>
|
80
|
+
<p>It reduces database file size on Windows. Please try the feature and
|
81
|
+
report the result. Groonga developers are interested in the
|
82
|
+
followings:</p>
|
83
|
+
<ul class="simple">
|
84
|
+
<li>Disk usage</li>
|
85
|
+
<li>Performance (Improved? Degraded? No difference?)</li>
|
86
|
+
<li>Memory usage (Especially virtual memory usage)</li>
|
87
|
+
</ul>
|
88
|
+
</li>
|
89
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/logical_shard_list.html"><em>logical_shard_list</em></a>] Added
|
90
|
+
a command that returns a shard list of the specified logical table.</p>
|
91
|
+
</li>
|
92
|
+
<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>]
|
93
|
+
Supported regular expression match against vector column without
|
94
|
+
index.</p>
|
95
|
+
</li>
|
96
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported
|
97
|
+
<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
|
98
|
+
<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>.</p>
|
99
|
+
</li>
|
100
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] Supported returning
|
101
|
+
the max number of threads feature of
|
102
|
+
<a class="reference internal" href="reference/commands/thread_limit.html"><em>thread_limit</em></a>. You can't set the max
|
103
|
+
number of threads.</p>
|
104
|
+
</li>
|
105
|
+
<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
|
106
|
+
tables and columns. It's a thread unsafe operation. You can't touch
|
107
|
+
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>
|
108
|
+
</li>
|
109
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/database_unmap.html"><em>database_unmap</em></a>] Added a command that
|
110
|
+
unmaps all opened tables and columns in database.</p>
|
111
|
+
</li>
|
112
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/object_exist.html"><em>object_exist</em></a>] Added a command that
|
113
|
+
checks whether object with the specified name exists or not in
|
114
|
+
database.</p>
|
115
|
+
</li>
|
116
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/column_copy.html"><em>column_copy</em></a>] Added a command that copies
|
117
|
+
all values from source column to destination column.</p>
|
118
|
+
<p>You can use this command to change column value type, column type,
|
119
|
+
table type and so on.</p>
|
120
|
+
</li>
|
121
|
+
<li><p class="first">Stopped to use non-standard <code class="docutils literal"><span class="pre">__uint32_t</span></code>
|
122
|
+
type. [GitHub#375][Reported by Natanael Copa]</p>
|
123
|
+
</li>
|
124
|
+
<li><p class="first">[experimental][Windows] Supported Windows Event log.</p>
|
125
|
+
</li>
|
126
|
+
<li><p class="first">[mruby] Supported error handling on mruby initialization error.</p>
|
127
|
+
</li>
|
128
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/commands/thread_limit.html"><em>thread_limit</em></a>] Renamed from
|
129
|
+
<code class="docutils literal"><span class="pre">thread_count</span></code>.</p>
|
130
|
+
</li>
|
131
|
+
<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>
|
132
|
+
level. It can be used like <code class="docutils literal"><span class="pre">EXPLAIN</span></code> in RDBMS. It's useful to
|
133
|
+
improve slow query.</p>
|
134
|
+
</li>
|
135
|
+
<li><p class="first">[doc] Replaced deprecated <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> flags.
|
136
|
+
[GitHub#378][GitHub#380][GitHub#382] [Patch by Hiroyuki Sato]</p>
|
137
|
+
</li>
|
138
|
+
<li><p class="first">[doc] Removed needless Sphinx configurations.
|
139
|
+
[GitHub#379] [Patch by Ayumu Osanai]</p>
|
140
|
+
</li>
|
141
|
+
<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>]
|
142
|
+
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
|
143
|
+
incompatible change.</p>
|
144
|
+
</li>
|
145
|
+
<li><p class="first">[doc][<a class="reference internal" href="contribution/development/build.html"><em>How to build Groonga at the repository</em></a>] Added a document about
|
146
|
+
building Groonga as Groonga developer.
|
147
|
+
[GitHub#353] [Suggested by Hiro Yoshioka]</p>
|
148
|
+
</li>
|
149
|
+
</ul>
|
150
|
+
</div>
|
151
|
+
<div class="section" id="fixes">
|
152
|
+
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
153
|
+
<ul>
|
154
|
+
<li><p class="first">[mruby] Fixed a time overflow bug.</p>
|
155
|
+
</li>
|
156
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Fixed a crash bug when
|
157
|
+
PID file can't be created. [GitHub#368] [Reported by Hiroyuki Sato]</p>
|
158
|
+
</li>
|
159
|
+
<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
|
160
|
+
broken index. It may be caused for multiple column index. In other
|
161
|
+
words, index column with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag may be broken.</p>
|
162
|
+
<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
|
163
|
+
with <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> flag, this bug isn't affected.</p>
|
164
|
+
<p>You can recover this bug by recreating existing multiple column
|
165
|
+
indexes.</p>
|
166
|
+
</li>
|
167
|
+
<li><p class="first">[<a class="reference internal" href="reference/functions/query.html"><em>query</em></a>] Fixed a crash bug when
|
168
|
+
<a class="reference internal" href="reference/functions/query.html"><em>query</em></a> is used in <a class="reference internal" href="reference/commands/select.html#select-scorer"><span>scorer</span></a>.</p>
|
169
|
+
</li>
|
170
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html#select-filter"><span>filter</span></a>] Fixed a bug that
|
171
|
+
<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
|
172
|
+
work for comparing to <code class="docutils literal"><span class="pre">-NUMBER_LITERAL</span></code>.</p>
|
173
|
+
<p>For example, the following expression doesn't work:</p>
|
174
|
+
<div class="highlight-none"><div class="highlight"><pre>~UINT32_COLUMN == -6
|
175
|
+
</pre></div>
|
176
|
+
</div>
|
177
|
+
</li>
|
178
|
+
<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>
|
179
|
+
doesn't work in multithread.</p>
|
180
|
+
</li>
|
181
|
+
<li><p class="first">Fixed some memory leaks.</p>
|
182
|
+
</li>
|
183
|
+
<li><p class="first">Fixed a build error. [GitHub#381] [Patch by Hiroshi Hatake]</p>
|
184
|
+
</li>
|
185
|
+
</ul>
|
186
|
+
</div>
|
187
|
+
<div class="section" id="thanks">
|
188
|
+
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
189
|
+
<ul class="simple">
|
190
|
+
<li>Hiroyuki Sato</li>
|
191
|
+
<li>Natanael Copa</li>
|
192
|
+
<li>Ayumu Osanai</li>
|
193
|
+
<li>Hiroshi Hatake</li>
|
194
|
+
<li>Hiro Yoshioka</li>
|
195
|
+
</ul>
|
196
|
+
</div>
|
197
|
+
</div>
|
198
|
+
<div class="section" id="release-5-0-6-2015-07-29">
|
199
|
+
<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>
|
200
|
+
<div class="section" id="id1">
|
201
|
+
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
202
|
+
<ul>
|
203
|
+
<li><p class="first">[<a class="reference internal" href="install/ubuntu.html"><em>Ubuntu</em></a>] Dropped Ubuntu 14.10 (Utopic Unicorn) support. It had been
|
204
|
+
End of Life on July 23, 2015.</p>
|
205
|
+
</li>
|
206
|
+
<li><p class="first">Supported offline index construction for reference vector. For example, <code class="docutils literal"><span class="pre">load</span></code>
|
207
|
+
data before <code class="docutils literal"><span class="pre">column_create</span></code> an index:</p>
|
208
|
+
<div class="highlight-none"><div class="highlight"><pre>table_create Entries TABLE_NO_KEY
|
209
|
+
column_create Entries numbers COLUMN_VECTOR Int32
|
210
|
+
|
211
|
+
load --table Entries
|
212
|
+
[
|
213
|
+
["numbers"],
|
214
|
+
[[18, 19, 20]],
|
215
|
+
[[100, 200]]
|
216
|
+
]
|
217
|
+
|
218
|
+
table_create Numbers TABLE_PAT_KEY Int32
|
219
|
+
column_create Numbers entries_numbers COLUMN_INDEX Entries numbers
|
220
|
+
|
221
|
+
select Numbers --output_columns _key
|
222
|
+
</pre></div>
|
223
|
+
</div>
|
224
|
+
</li>
|
225
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">'vector_text_column</span> <span class="pre">@</span> <span class="pre">"element"'</span></code> without index. For example, the
|
226
|
+
<code class="docutils literal"><span class="pre">select</span></code> command in the following commands:</p>
|
227
|
+
<div class="highlight-none"><div class="highlight"><pre>table_create Memos TABLE_NO_KEY
|
228
|
+
column_create Memos tags COLUMN_VECTOR Text
|
229
|
+
|
230
|
+
load --table Memos
|
231
|
+
[
|
232
|
+
{"tags": ["Groonga", "Rroonga", "Mroonga"]}
|
233
|
+
]
|
234
|
+
|
235
|
+
select Memos --filter 'tags @ "Rroonga"'
|
236
|
+
</pre></div>
|
237
|
+
</div>
|
238
|
+
</li>
|
239
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">n'</span></code> without index. For example, the
|
240
|
+
<code class="docutils literal"><span class="pre">select</span></code> command in the following commands:</p>
|
241
|
+
<div class="highlight-none"><div class="highlight"><pre>table_create Memos TABLE_NO_KEY
|
242
|
+
column_create Memos numbers COLUMN_VECTOR Int32
|
243
|
+
|
244
|
+
load --table Memos
|
245
|
+
[
|
246
|
+
{"numbers": [1, 2, 3]}
|
247
|
+
]
|
248
|
+
|
249
|
+
select Memos --filter 'numbers @ 2'
|
250
|
+
</pre></div>
|
251
|
+
</div>
|
252
|
+
</li>
|
253
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>Server packages</em></a>][<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>]
|
254
|
+
Show exit status. [GitHub#357] [Patch by jacob16bit]</p>
|
255
|
+
</li>
|
256
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Supported <code class="docutils literal"><span class="pre">--pid-path</span></code>.</p>
|
257
|
+
</li>
|
258
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Allowed to delete file that is opened by other process.</p>
|
259
|
+
</li>
|
260
|
+
<li><p class="first">Accepted selector only proc. Note that the proc can't be used as function. It means
|
261
|
+
that the proc can't be used with sequential search.</p>
|
262
|
+
</li>
|
263
|
+
<li><p class="first">Supported function call with complex argument. An example complex argument is
|
264
|
+
<code class="docutils literal"><span class="pre">Table["key"].column</span></code>. For example:</p>
|
265
|
+
<div class="highlight-none"><div class="highlight"><pre>function(_key, Table["key"].column)
|
266
|
+
</pre></div>
|
267
|
+
</div>
|
268
|
+
</li>
|
269
|
+
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><em>Tutorial</em></a>] Added more description about database creation fails if DB_PATH
|
270
|
+
points to an existing file. [GitHub#354] [Suggested by Hirotaka Takayama]</p>
|
271
|
+
</li>
|
272
|
+
<li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><em>Tutorial</em></a>] Described JSON formatting tools.
|
273
|
+
[GitHub#355] [Suggested by tiwawan]</p>
|
274
|
+
</li>
|
275
|
+
<li><p class="first">[experimental] Added an API to get/set the number of threads. It's a experimental API.</p>
|
276
|
+
</li>
|
277
|
+
<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.
|
278
|
+
It's a experimental command.</p>
|
279
|
+
</li>
|
280
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Supported changing the number
|
281
|
+
of threads by <code class="docutils literal"><span class="pre">thread_count</span></code> command. It's a experimental feature.</p>
|
282
|
+
</li>
|
283
|
+
<li><p class="first">[experimental][<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Added Windows event log support.
|
284
|
+
It's a experimental feature.</p>
|
285
|
+
</li>
|
286
|
+
<li><p class="first">[experimental][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Added Windows event log related
|
287
|
+
option <code class="docutils literal"><span class="pre">--use-windows-event-log</span></code>. It reports logs as Windows events.
|
288
|
+
It's a experimental feature.</p>
|
289
|
+
</li>
|
290
|
+
<li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Used Groonga's default encoding for log message.</p>
|
291
|
+
</li>
|
292
|
+
<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
|
293
|
+
showed by default.</p>
|
294
|
+
</li>
|
295
|
+
<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>
|
296
|
+
</li>
|
297
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Accepted log level name (e.g. <code class="docutils literal"><span class="pre">info</span></code>,
|
298
|
+
<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>
|
299
|
+
</li>
|
300
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/log_level.html"><em>log_level</em></a>][<a class="reference internal" href="reference/commands/log_put.html"><em>log_put</em></a>]
|
301
|
+
Accepted log level name for <code class="docutils literal"><span class="pre">--level</span></code> argument.</p>
|
302
|
+
</li>
|
303
|
+
<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>
|
304
|
+
</li>
|
305
|
+
<li><p class="first">Updated sharding plugins.</p>
|
306
|
+
<ul class="simple">
|
307
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Fixed output format.
|
308
|
+
It has become <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> compatible format.</li>
|
309
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Supported the following parameters.<ul>
|
310
|
+
<li><code class="docutils literal"><span class="pre">--output_columns</span></code></li>
|
311
|
+
<li><code class="docutils literal"><span class="pre">--offset</span></code></li>
|
312
|
+
<li><code class="docutils literal"><span class="pre">--limit</span></code></li>
|
313
|
+
<li><code class="docutils literal"><span class="pre">--drilldown</span></code></li>
|
314
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_sortby</span></code></li>
|
315
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_offset</span></code></li>
|
316
|
+
<li><code class="docutils literal"><span class="pre">--drilldown_limit</span></code></li>
|
317
|
+
</ul>
|
318
|
+
</li>
|
319
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Used the same default output_columns
|
320
|
+
(<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"><em>select</em></a>.</li>
|
321
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Supported
|
322
|
+
<a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-types"><span>drilldown[${LABEL}].calc_types</span></a> and
|
323
|
+
<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>
|
324
|
+
<li>[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Supported cache.</li>
|
325
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] Supported logging whether range index is
|
326
|
+
used or not.</li>
|
327
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] Show target table name in debug log.</li>
|
328
|
+
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] Supported cache.</li>
|
329
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported
|
330
|
+
<code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">element'</span></code>.</li>
|
331
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Added <code class="docutils literal"><span class="pre">use_range_index</span></code> parameter.
|
332
|
+
It's a parameter for test. It should not be used for production.</li>
|
333
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Log which mode (range-index or
|
334
|
+
select mode) is used.</li>
|
335
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported cache.</li>
|
336
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported nested reference vector
|
337
|
+
accessor.</li>
|
338
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Used range_index value set by
|
339
|
+
<a class="reference internal" href="reference/commands/logical_parameters.html"><em>logical_parameters</em></a>.</li>
|
340
|
+
<li>[<a class="reference internal" href="reference/commands/logical_parameters.html"><em>logical_parameters</em></a>] Added.</li>
|
341
|
+
</ul>
|
342
|
+
</li>
|
343
|
+
<li><p class="first">Added mruby APIs.</p>
|
344
|
+
<ul class="simple">
|
345
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Accessor#name</span></code>.</li>
|
346
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Column#[]</span></code>.</li>
|
347
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Column#scalar?</span></code>, <code class="docutils literal"><span class="pre">Column#vector?</span></code> and <code class="docutils literal"><span class="pre">Column#index?</span></code>.</li>
|
348
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Context#command_version</span></code> and <code class="docutils literal"><span class="pre">Context#command_version=</span></code> (accessors).</li>
|
349
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Context#with_command_version</span></code>.</li>
|
350
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Database#each_name</span></code>.</li>
|
351
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Groonga::Cache.current</span></code>.</li>
|
352
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Record</span></code>.</li>
|
353
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">Table#each</span></code>.</li>
|
354
|
+
<li>[mrb] Added <code class="docutils literal"><span class="pre">TableCursor#key</span></code>.</li>
|
355
|
+
<li>[mrb] Binded <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code> to <code class="docutils literal"><span class="pre">CommandInput#arguments</span></code>.</li>
|
356
|
+
<li>[mrb] Binded <a class="reference internal" href="reference/api/grn_table.html#c.grn_table_group" title="grn_table_group"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group()</span></code></a> to <code class="docutils literal"><span class="pre">Table#group</span></code>.</li>
|
357
|
+
<li>[mrb] Binded <a class="reference internal" href="reference/api/grn_table.html#c.grn_table_group_flags" title="grn_table_group_flags"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group_flags()</span></code></a> to <code class="docutils literal"><span class="pre">TableGroupFlags</span></code>.</li>
|
358
|
+
<li>[mrb] Binded <code class="docutils literal"><span class="pre">GRN_COMMAND_VERSION_DEFAULT</span></code>.</li>
|
359
|
+
<li>[mrb] Binded <code class="docutils literal"><span class="pre">grn_cache</span></code>.</li>
|
360
|
+
<li>[mrb][estimate_size] Supported <code class="docutils literal"><span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span> <span class="pre">&&</span> <span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span></code> as expression case.</li>
|
361
|
+
<li>[mrb] Supported query log.</li>
|
362
|
+
</ul>
|
363
|
+
</li>
|
364
|
+
</ul>
|
365
|
+
</div>
|
366
|
+
<div class="section" id="id2">
|
367
|
+
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
368
|
+
<ul>
|
369
|
+
<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>.
|
370
|
+
For example, unsupported operator (e.g. <code class="docutils literal"><span class="pre">GRN_OP_TERM_EXTRACT</span></code>) is used
|
371
|
+
(<code class="docutils literal"><span class="pre">not</span> <span class="pre">implemented</span> <span class="pre">operator</span> <span class="pre">assigned</span></code> is occurred for the case).</p>
|
372
|
+
</li>
|
373
|
+
<li><p class="first">[bindings/php] Added a missing check for a memory allocation failure.
|
374
|
+
[Reported by Bill Parker]</p>
|
375
|
+
</li>
|
376
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>Server packages</em></a>][logrotate] Fixed syntax error in script.</p>
|
377
|
+
</li>
|
378
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>Server packages</em></a>][logrotate] Fixed wrong daemon running check.</p>
|
379
|
+
</li>
|
380
|
+
<li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>Server packages</em></a>][logrotate] Stop to set owner/group to log files.
|
381
|
+
Because it's not consistent. groonga-httpd creates log files with root
|
382
|
+
owner/group. But logrotated log files are created with groonga
|
383
|
+
owner/group. [GitHub#358] [Reported by jacob16bit]</p>
|
384
|
+
</li>
|
385
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Fixed reported the maximum number of threads.</p>
|
386
|
+
</li>
|
387
|
+
<li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] Remove a needless space in log message:</p>
|
388
|
+
<div class="highlight-none"><div class="highlight"><pre>|n| grn_fin (0) ->
|
389
|
+
|n| grn_fin (0)
|
390
|
+
^
|
391
|
+
</pre></div>
|
392
|
+
</div>
|
393
|
+
</li>
|
394
|
+
<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
|
395
|
+
<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
|
396
|
+
<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>.</p>
|
397
|
+
</li>
|
398
|
+
<li><p class="first">[<a class="reference internal" href="reference/command/request_id.html"><em>Request ID</em></a>] Fixed a memory leak when <code class="docutils literal"><span class="pre">request_id</span></code> byte size >= 24.</p>
|
399
|
+
</li>
|
400
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/lock_clear.html"><em>lock_clear</em></a>] Fixed a typo in command name in Syntax section.
|
401
|
+
[GitHub#363] [Reported by Christian Kakesa]</p>
|
402
|
+
</li>
|
403
|
+
<li><p class="first">[sharding] Fixed wrong min include detection for month range type.</p>
|
404
|
+
</li>
|
405
|
+
</ul>
|
406
|
+
</div>
|
407
|
+
<div class="section" id="id3">
|
408
|
+
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
409
|
+
<ul class="simple">
|
410
|
+
<li>Bill Parker</li>
|
411
|
+
<li>jacob16bit</li>
|
412
|
+
<li>Hirotaka Takayama</li>
|
413
|
+
<li>tiwawan</li>
|
414
|
+
<li>Christian Kakesa</li>
|
415
|
+
</ul>
|
416
|
+
</div>
|
417
|
+
</div>
|
418
|
+
<div class="section" id="release-5-0-5-2015-06-29">
|
419
|
+
<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>
|
420
|
+
<div class="section" id="id4">
|
421
|
+
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
422
|
+
<ul>
|
70
423
|
<li><p class="first">Show correct error information such as NoSuchFileOrDirectory when opening a database.</p>
|
71
424
|
</li>
|
72
425
|
<li><p class="first">Don't set the default logger path for library use.</p>
|
@@ -80,28 +433,28 @@ path such as /var/log/groonga/groonga.log. It's not writable for normal
|
|
80
433
|
users.</li>
|
81
434
|
</ul>
|
82
435
|
</li>
|
83
|
-
<li><p class="first">[windows] Show error information when memory isn't enough on failing <
|
436
|
+
<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>
|
84
437
|
</li>
|
85
438
|
<li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] Updated example to show new "force_prefix" value.
|
86
439
|
This value is added since 5.0.4.</p>
|
87
440
|
</li>
|
88
|
-
<li><p class="first">[windows] Show error information when disk has any problem (disk full and so on) on failing <
|
441
|
+
<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>
|
89
442
|
</li>
|
90
|
-
<li><p class="first">[API] Added <
|
443
|
+
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush()</span></code>.</p>
|
91
444
|
</li>
|
92
|
-
<li><p class="first">[API] Added <
|
445
|
+
<li><p class="first">[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush_recursive()</span></code>.</p>
|
93
446
|
</li>
|
94
447
|
<li><p class="first">[<a class="reference internal" href="reference/commands/io_flush.html"><em>io_flush</em></a>] Added. It flushes memory mapped data to disk.
|
95
448
|
Usually memory data automatically flush by an OS, but you can explicitly flush with
|
96
449
|
this command.</p>
|
97
450
|
</li>
|
98
|
-
<li><p class="first">[mruby] Binded <
|
451
|
+
<li><p class="first">[mruby] Binded <code class="docutils literal"><span class="pre">grn_obj_remove()</span></code> to Object#remove.</p>
|
99
452
|
</li>
|
100
|
-
<li><p class="first">[mruby] Binded <
|
453
|
+
<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>
|
101
454
|
</li>
|
102
455
|
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_table_remove.html"><em>logical_table_remove</em></a>] Added.</p>
|
103
456
|
</li>
|
104
|
-
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Added. <
|
457
|
+
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] Added. <code class="docutils literal"><span class="pre">--filter</span></code> is only supported for now.</p>
|
105
458
|
</li>
|
106
459
|
<li><p class="first">[cmake] Supported embedded MeCab tokenizer.</p>
|
107
460
|
</li>
|
@@ -116,8 +469,8 @@ XXX_20150604 <- includes only 2015-06-04 records
|
|
116
469
|
</li>
|
117
470
|
</ul>
|
118
471
|
</div>
|
119
|
-
<div class="section" id="
|
120
|
-
<h3>Fixes<a class="headerlink" href="#
|
472
|
+
<div class="section" id="id5">
|
473
|
+
<h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
121
474
|
<ul class="simple">
|
122
475
|
<li>Fixed wrong macro to include netinet/in.h.
|
123
476
|
[GitHub#348] [Reported by OBATA Akio]</li>
|
@@ -125,8 +478,8 @@ XXX_20150604 <- includes only 2015-06-04 records
|
|
125
478
|
[GitHub#351] [Patch by jacob16bit]</li>
|
126
479
|
</ul>
|
127
480
|
</div>
|
128
|
-
<div class="section" id="
|
129
|
-
<h3>Thanks<a class="headerlink" href="#
|
481
|
+
<div class="section" id="id6">
|
482
|
+
<h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
130
483
|
<ul class="simple">
|
131
484
|
<li>OBATA Akio</li>
|
132
485
|
<li>jacob16bit</li>
|
@@ -135,55 +488,55 @@ XXX_20150604 <- includes only 2015-06-04 records
|
|
135
488
|
</div>
|
136
489
|
<div class="section" id="release-5-0-4-2015-05-29">
|
137
490
|
<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>
|
138
|
-
<div class="section" id="
|
139
|
-
<h3>Improvements<a class="headerlink" href="#
|
491
|
+
<div class="section" id="id7">
|
492
|
+
<h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
140
493
|
<ul class="simple">
|
141
|
-
<li>[mruby] Changed to use <
|
142
|
-
<li>[mruby] Supported <
|
143
|
-
<li>[mruby] Supported <
|
144
|
-
<li>[mruby] Supported estimating size for <
|
494
|
+
<li>[mruby] Changed to use <code class="docutils literal"><span class="pre">inspect</span></code> to show meaningful error message for error value.</li>
|
495
|
+
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Groonga::Bulk#inspect</span></code> to inspect bulk content.</li>
|
496
|
+
<li>[mruby] Supported <code class="docutils literal"><span class="pre">Bulk#value</span></code> to extract the value of record from bulk content.</li>
|
497
|
+
<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
|
145
498
|
<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>. In above case, it can be searched
|
146
499
|
more effectively.</li>
|
147
|
-
<li>[<a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>] Supported index column as <
|
500
|
+
<li>[<a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>] Supported index column as <code class="docutils literal"><span class="pre">scope</span></code> parameter.</li>
|
148
501
|
<li>[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>Script syntax</em></a>] Described clearly about numerical
|
149
502
|
value. [GitHub groonga/groonga.org#16] [Suggested by Hiroyuki Sato]</li>
|
150
503
|
<li>[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Supported accessing other table's record in filter.
|
151
|
-
You can use <
|
504
|
+
You can use <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE[KEY].COLUMN'</span></code> for example.</li>
|
152
505
|
<li>[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Supported operator in table key.
|
153
|
-
You can use <
|
506
|
+
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>
|
154
507
|
<li>[example] Used Ruby 2.0 or later API in script for converting dictionary data.</li>
|
155
508
|
<li>Changed to show error message about invalid type of keys about table.</li>
|
156
509
|
<li>[doc] Fixed link from sourceforge.jp to osdn.me or osdn.jp about mailing list preference page.
|
157
510
|
SourceForge.jp is marked as obsoleted because of branding issue since May 11, 2015.</li>
|
158
|
-
<li>[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] Added <
|
159
|
-
<li>Supported to search by shorter words such as 2 or less characters for <a class="reference internal" href="reference/tokenizers.html#token-trigram"><
|
511
|
+
<li>[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] Added <code class="docutils literal"><span class="pre">force_prefix</span></code> value to each token information. [Patch by Naoya Murakami]</li>
|
512
|
+
<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>.
|
160
513
|
[Patch by Naoya Murakami]</li>
|
161
514
|
<li>[deb] Added service file for Systemd into groonga-httpd and groonga-server-gqtp packages.</li>
|
162
|
-
<li>[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Ignored <
|
515
|
+
<li>[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Ignored <code class="docutils literal"><span class="pre">--query</span></code> when its
|
163
516
|
value consists of only space characters. Space characters include
|
164
|
-
full-width space (<
|
517
|
+
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
|
165
518
|
Unicode). [Suggested by TomyGX]</li>
|
166
519
|
</ul>
|
167
520
|
</div>
|
168
|
-
<div class="section" id="
|
169
|
-
<h3>Fixes<a class="headerlink" href="#
|
521
|
+
<div class="section" id="id8">
|
522
|
+
<h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
170
523
|
<ul class="simple">
|
171
|
-
<li>Fixed a crash bug when empty key is specified for <
|
172
|
-
<li>Fixed a bug that the return value of <
|
524
|
+
<li>Fixed a crash bug when empty key is specified for <code class="docutils literal"><span class="pre">drilldown[label].keys</span></code>.</li>
|
525
|
+
<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.
|
173
526
|
[GitHub#336] [Reported by Hiroaki Nakamura]</li>
|
174
|
-
<li>Fixed a build error on some BSD systems. They doesn't have <
|
175
|
-
<li>Fixed a build error on Solaris. It is changed to initialize by <
|
176
|
-
<
|
527
|
+
<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>
|
528
|
+
<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
|
529
|
+
<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>
|
177
530
|
<li>[<a class="reference internal" href="reference/tokenizers.html"><em>Tokenizers</em></a>] Fixed a typo. [GitHub#338] [Reported by Hiroyuki Sato]</li>
|
178
531
|
<li>[<a class="reference internal" href="reference/output.html"><em>Output</em></a>] Fixed markup. [GitHub groonga/groonga.org#17]
|
179
532
|
[Reported by Hiroyuki Sato]</li>
|
180
|
-
<li>Reduced getenv() in each <
|
533
|
+
<li>Reduced getenv() in each <code class="docutils literal"><span class="pre">grn_ii_cursor_set_min()</span></code>. This fixes performance
|
181
534
|
regression on Windows.</li>
|
182
535
|
<li>Fixed a build error on OpenBSD. [groonga-dev,03255] [Reported by fbnteqr]</li>
|
183
536
|
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] Fixed a bug that same message is
|
184
537
|
logged.</li>
|
185
538
|
<li>Fixed a crash bug which is caused by double free memory.</li>
|
186
|
-
<li>Fixed a memory leak. It's occurred when <
|
539
|
+
<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
|
187
540
|
used for non indexed text field and text fields have a value that isn't bulk
|
188
541
|
embeddable. Normally, 32byte over size text isn't bulk embeddable, so this bug
|
189
542
|
doesn't affect to the case if only small text less than 32byte are stored.</li>
|
@@ -192,8 +545,8 @@ correctly when query contains characters which are treated as blank character.
|
|
192
545
|
For example, the newline - "\n" is typical one.</li>
|
193
546
|
</ul>
|
194
547
|
</div>
|
195
|
-
<div class="section" id="
|
196
|
-
<h3>Thanks<a class="headerlink" href="#
|
548
|
+
<div class="section" id="id9">
|
549
|
+
<h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
197
550
|
<ul class="simple">
|
198
551
|
<li>Hiroaki Nakamura</li>
|
199
552
|
<li>Hiroyuki Sato</li>
|
@@ -205,16 +558,16 @@ For example, the newline - "\n" is typical one.</li>
|
|
205
558
|
</div>
|
206
559
|
<div class="section" id="release-5-0-3-2015-04-29">
|
207
560
|
<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>
|
208
|
-
<div class="section" id="
|
209
|
-
<h3>Improvements<a class="headerlink" href="#
|
561
|
+
<div class="section" id="id10">
|
562
|
+
<h3>Improvements<a class="headerlink" href="#id10" title="Permalink to this headline">¶</a></h3>
|
210
563
|
<ul class="simple">
|
211
564
|
<li>[<a class="reference internal" href="reference/tokenizers.html"><em>Tokenizers</em></a>][<a class="reference internal" href="reference/regular_expression.html"><em>Regular expression</em></a>]
|
212
565
|
Skip the last one character token.</li>
|
213
566
|
<li>[mruby] Supported regexp pattern for estimating size.</li>
|
214
567
|
<li>[mruby] Supported size estimation for accessor.</li>
|
215
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Removed <
|
568
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Removed <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code>
|
216
569
|
environment variable which is introduced since Groonga 5.0.2.
|
217
|
-
Use <
|
570
|
+
Use <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></code> to disable range index search
|
218
571
|
feature.</li>
|
219
572
|
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported negative limit and offset.</li>
|
220
573
|
<li>[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Used <a class="reference external" href="https://github.com/groonga/groonga-admin">Groonga Admin</a> in package.</li>
|
@@ -225,17 +578,17 @@ feature.</li>
|
|
225
578
|
</li>
|
226
579
|
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Supported plugin.</li>
|
227
580
|
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Added the following options:<ul>
|
228
|
-
<li><
|
229
|
-
<li><
|
230
|
-
<li><
|
231
|
-
<li><
|
581
|
+
<li><code class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></code></li>
|
582
|
+
<li><code class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></code></li>
|
583
|
+
<li><code class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></code></li>
|
584
|
+
<li><code class="docutils literal"><span class="pre">--dump_indexes</span> <span class="pre">[yes(default)/no]</span></code></li>
|
232
585
|
</ul>
|
233
586
|
</li>
|
234
|
-
<li>[API] Added <
|
587
|
+
<li>[API] Added <code class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></code>.</li>
|
235
588
|
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Fixed order to put index columns after reference columns
|
236
589
|
because index column may refer reference columns.</li>
|
237
590
|
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Don't dump records of lexicon.</li>
|
238
|
-
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Show <
|
591
|
+
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></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>
|
239
592
|
<li>[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] Used offline index construnction.</li>
|
240
593
|
<li>Increased max hash key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
241
594
|
<li>Increased max cache key size from 4KiB (4096Byte) to 64KiB - 1 (65535Byte).</li>
|
@@ -249,16 +602,16 @@ because index column may refer reference columns.</li>
|
|
249
602
|
<li>Show more information such as errno for errors.</li>
|
250
603
|
<li>[windows] Used secure functions on Windows.</li>
|
251
604
|
<li>Added the following APIs to change log rotate threshold in file size.<ul>
|
252
|
-
<li><
|
253
|
-
<li><
|
254
|
-
<li><
|
255
|
-
<li><
|
605
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_set_rotate_threshold_size()</span></code></li>
|
606
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_get_rotate_threshold_size()</span></code></li>
|
607
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_set_rotate_threshold_size()</span></code></li>
|
608
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_get_rotate_threshold_size()</span></code></li>
|
256
609
|
</ul>
|
257
610
|
</li>
|
258
611
|
<li>[experimental] Supported log rotation. The feature is disabled by default.
|
259
612
|
You can enable log rotation by the following options:<ul>
|
260
|
-
<li><
|
261
|
-
<li><
|
613
|
+
<li><code class="docutils literal"><span class="pre">--log-rotate-threshold-size</span></code></li>
|
614
|
+
<li><code class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></code></li>
|
262
615
|
</ul>
|
263
616
|
</li>
|
264
617
|
<li>[<a class="reference internal" href="server/gqtp.html"><em>GQTP</em></a>] Documented about GQTP server.</li>
|
@@ -268,24 +621,24 @@ You can enable log rotation by the following options:<ul>
|
|
268
621
|
<li>[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] Updated bundled nginx version to the latest mainline (1.8.0).</li>
|
269
622
|
</ul>
|
270
623
|
</div>
|
271
|
-
<div class="section" id="
|
272
|
-
<h3>Fixes<a class="headerlink" href="#
|
624
|
+
<div class="section" id="id11">
|
625
|
+
<h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
273
626
|
<ul class="simple">
|
274
|
-
<li>[windows] Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><
|
627
|
+
<li>[windows] Fixed a bug that <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a> is
|
275
628
|
failed for large data (at least 1GB or larger) with Groonga built by
|
276
629
|
Microsoft Visual C++. [Reported by Hideki ARAI]</li>
|
277
|
-
<li>[mruby] Made <
|
278
|
-
<li>Fixed a bug that <
|
630
|
+
<li>[mruby] Made <code class="docutils literal"><span class="pre">\\</span></code> index searchable in regular expression.</li>
|
631
|
+
<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>
|
279
632
|
<li>[sharding] Fixed a bug that partial range is handled as all range.</li>
|
280
|
-
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Fixed a bug that <
|
633
|
+
<li>[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></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>
|
281
634
|
<li>[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] Re-supported counting with range index.</li>
|
282
|
-
<li>Fixed a bug causing malfunction of <
|
635
|
+
<li>Fixed a bug causing malfunction of <code class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></code>
|
283
636
|
and added a test for invalid patricia trie node add case.
|
284
637
|
[groonga-dev,03177] [Reported by yuya sako]</li>
|
285
638
|
</ul>
|
286
639
|
</div>
|
287
|
-
<div class="section" id="
|
288
|
-
<h3>Thanks<a class="headerlink" href="#
|
640
|
+
<div class="section" id="id12">
|
641
|
+
<h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
289
642
|
<ul class="simple">
|
290
643
|
<li>Hideki ARAI</li>
|
291
644
|
<li>Hiroyuki Mizuhara</li>
|
@@ -297,17 +650,17 @@ and added a test for invalid patricia trie node add case.
|
|
297
650
|
<div class="section" id="release-5-0-2-2015-03-31">
|
298
651
|
<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>
|
299
652
|
<p>It's a bug fix release of 5.0.1.</p>
|
300
|
-
<div class="section" id="
|
301
|
-
<h3>Improvements<a class="headerlink" href="#
|
653
|
+
<div class="section" id="id13">
|
654
|
+
<h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
302
655
|
<ul class="simple">
|
303
656
|
<li>Supported MessagePack 1.0.1. [Reported by Hiroshi Hatake]</li>
|
304
657
|
<li>[logical_range_filter] Disabled range index by default. It's enabled
|
305
|
-
when you set the enviromnent variable <
|
306
|
-
to <
|
658
|
+
when you set the enviromnent variable <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code>
|
659
|
+
to <code class="docutils literal"><span class="pre">yes</span></code>.</li>
|
307
660
|
</ul>
|
308
661
|
</div>
|
309
|
-
<div class="section" id="
|
310
|
-
<h3>Fixes<a class="headerlink" href="#
|
662
|
+
<div class="section" id="id14">
|
663
|
+
<h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
311
664
|
<ul class="simple">
|
312
665
|
<li>Fixed a regression bug that JSONP doesn't work. It was introduced
|
313
666
|
in Groonga 4.1.1.</li>
|
@@ -317,8 +670,8 @@ in Groonga 4.1.1.</li>
|
|
317
670
|
problem is fixed in the environment such as CentOS 7.</li>
|
318
671
|
</ul>
|
319
672
|
</div>
|
320
|
-
<div class="section" id="
|
321
|
-
<h3>Thanks<a class="headerlink" href="#
|
673
|
+
<div class="section" id="id15">
|
674
|
+
<h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
322
675
|
<ul class="simple">
|
323
676
|
<li>Atsushi Shinoda</li>
|
324
677
|
<li>Hiroshi Hatake</li>
|
@@ -327,8 +680,8 @@ problem is fixed in the environment such as CentOS 7.</li>
|
|
327
680
|
</div>
|
328
681
|
<div class="section" id="release-5-0-1-2015-03-29">
|
329
682
|
<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>
|
330
|
-
<div class="section" id="
|
331
|
-
<h3>Improvements<a class="headerlink" href="#
|
683
|
+
<div class="section" id="id16">
|
684
|
+
<h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
332
685
|
<ul>
|
333
686
|
<li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Supported filter
|
334
687
|
and sort.</p>
|
@@ -338,7 +691,7 @@ and sort.</p>
|
|
338
691
|
<li><p class="first">Added API <a class="reference internal" href="reference/api/overview.html"><em>Overview</em></a> document for users who want
|
339
692
|
to use Groonga as library.</p>
|
340
693
|
</li>
|
341
|
-
<li><p class="first">[incompatible] Changed internal type of <
|
694
|
+
<li><p class="first">[incompatible] Changed internal type of <code class="docutils literal"><span class="pre">_score</span></code> to floating point
|
342
695
|
number from 32bit integer number. This is incompatible change for DB
|
343
696
|
API users. This <em>isn't</em> incompatible change for query API users. It
|
344
697
|
means that users who just use <a class="reference internal" href="reference/commands/select.html"><em>select</em></a>
|
@@ -358,7 +711,7 @@ and newer Groonga:</p>
|
|
358
711
|
<li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Added more strict check for
|
359
712
|
invalid drilldown parameter.</p>
|
360
713
|
</li>
|
361
|
-
<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"><
|
714
|
+
<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
|
362
715
|
Teruya]</p>
|
363
716
|
</li>
|
364
717
|
<li><p class="first">Supported to customize score function. See <a class="reference internal" href="reference/scorer.html"><em>Scorer</em></a>
|
@@ -366,8 +719,8 @@ for details.</p>
|
|
366
719
|
</li>
|
367
720
|
<li><p class="first">[incompatible] Custom score function feature introduced API and ABI
|
368
721
|
incompatibilities in DB API layer. If you're using
|
369
|
-
<a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><
|
370
|
-
your <a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><
|
722
|
+
<a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a>, please check that your code initializes
|
723
|
+
your <a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a> by <code class="docutils literal"><span class="pre">0</span></code> like the following:</p>
|
371
724
|
<div class="highlight-c"><div class="highlight"><pre><span class="n">grn_search_optarg</span> <span class="n">options</span><span class="p">;</span>
|
372
725
|
<span class="n">memset</span><span class="p">(</span><span class="o">&</span><span class="n">options</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">(</span><span class="n">grn_search_optarg</span><span class="p">));</span>
|
373
726
|
</pre></div>
|
@@ -378,27 +731,27 @@ modification.</p>
|
|
378
731
|
<p>If your code doesn't the above thing, you need to added the above
|
379
732
|
thing to your code.</p>
|
380
733
|
</li>
|
381
|
-
<li><p class="first">Added the following predicates that check <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><
|
734
|
+
<li><p class="first">Added the following predicates that check <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><code class="xref c c-type docutils literal"><span class="pre">grn_obj</span></code></a> type to
|
382
735
|
DB API:</p>
|
383
736
|
<ul class="simple">
|
384
|
-
<li><
|
385
|
-
<li><
|
386
|
-
<li><
|
387
|
-
<li><
|
388
|
-
<li><
|
737
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_table()</span></code></li>
|
738
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_proc_proc()</span></code></li>
|
739
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_function_proc()</span></code></li>
|
740
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_selector_proc()</span></code></li>
|
741
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_scorer_proc()</span></code></li>
|
389
742
|
</ul>
|
390
743
|
</li>
|
391
744
|
<li><p class="first">[experimental] Supported skipping posting list when searching
|
392
745
|
popular term and rare term at the same time. It will improve
|
393
|
-
performance. Set <
|
394
|
-
variable to <
|
746
|
+
performance. Set <code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE</span></code> environment
|
747
|
+
variable to <code class="docutils literal"><span class="pre">1</span></code> to enable the feature. The feature is disabled by
|
395
748
|
default.</p>
|
396
749
|
</li>
|
397
750
|
<li><p class="first">[doc] Added <a class="reference internal" href="reference/functions/in_values.html"><em>in_values</em></a> document.</p>
|
398
751
|
</li>
|
399
752
|
<li><p class="first">[doc] Added <a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a> document.</p>
|
400
753
|
</li>
|
401
|
-
<li><p class="first">[mruby] Implemented custom <
|
754
|
+
<li><p class="first">[mruby] Implemented custom <code class="docutils literal"><span class="pre">#inspect</span></code> method. Is is useful for
|
402
755
|
debugging.</p>
|
403
756
|
</li>
|
404
757
|
<li><p class="first">Added <a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><em>scorer_tf_at_most</em></a> scorer. It
|
@@ -409,30 +762,30 @@ search or sequential search.</p>
|
|
409
762
|
</li>
|
410
763
|
<li><p class="first">Added the following functions to estimate size by index:</p>
|
411
764
|
<ul class="simple">
|
412
|
-
<li><
|
413
|
-
<li><
|
414
|
-
<li><
|
765
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_expr_estimate_size()</span></code></li>
|
766
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_query()</span></code></li>
|
767
|
+
<li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_lexicon_cursor()</span></code></li>
|
415
768
|
</ul>
|
416
769
|
</li>
|
417
|
-
<li><p class="first">Added missing <a class="reference internal" href="reference/normalizers.html#normalizer-auto"><
|
770
|
+
<li><p class="first">Added missing <a class="reference internal" href="reference/normalizers.html#normalizer-auto"><span>NormalizerAuto</span></a> availability check. [GitHub#283]
|
418
771
|
[Reported by Tasuku SUENAGA]</p>
|
419
772
|
</li>
|
420
773
|
<li><p class="first">Dropped Visual Studio 2010 support.</p>
|
421
774
|
</li>
|
422
775
|
<li><p class="first">[experimental][mecab] Supported chunked tokenization. This feature
|
423
776
|
is a workaround for MeCab's "too long sentense" error. Specify
|
424
|
-
<
|
777
|
+
<code class="docutils literal"><span class="pre">yes</span></code> to <code class="docutils literal"><span class="pre">GRN_MECAB_CHUNKED_TOKENIZE_ENABLED</span></code> environment
|
425
778
|
variable to enable it. By this configuration, Groonga splits a long
|
426
779
|
text (8192 bytes over text by default) into small chunks and passes
|
427
780
|
each chunk to MeCab. By this process, the above error isn't
|
428
781
|
occurred. Additionally, you can customize chunk threshold bytes by
|
429
|
-
<
|
430
|
-
<
|
431
|
-
<span class="pre">IDEOGRAPHIC</span> <span class="pre">FULL</span> <span class="pre">STOP</span></
|
432
|
-
<
|
782
|
+
<code class="docutils literal"><span class="pre">GRN_MECAB_CHUNK_SIZE_THRESHOLD</span></code> environment variable. Note that
|
783
|
+
<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>, <code class="docutils literal"><span class="pre">U+3001</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">COMMA</span></code>, <code class="docutils literal"><span class="pre">U+3002</span>
|
784
|
+
<span class="pre">IDEOGRAPHIC</span> <span class="pre">FULL</span> <span class="pre">STOP</span></code>, <code class="docutils literal"><span class="pre">U+FF01</span> <span class="pre">FULLWIDTH</span> <span class="pre">EXCLAMATION</span> <span class="pre">MARK</span></code> and
|
785
|
+
<code class="docutils literal"><span class="pre">U+FF1F</span> <span class="pre">FULLWIDTH</span> <span class="pre">QUESTION</span> <span class="pre">MARK</span></code> are treated as chunk delimiter
|
433
786
|
characters.</p>
|
434
787
|
</li>
|
435
|
-
<li><p class="first">Supported <
|
788
|
+
<li><p class="first">Supported <code class="docutils literal"><span class="pre">--pid-file</span></code> in server mode of
|
436
789
|
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>.</p>
|
437
790
|
</li>
|
438
791
|
<li><p class="first">[groonga-httpd] Supported graceful stop to clean Groonga. It doesn't
|
@@ -451,7 +804,7 @@ time when POST data don't include any new line.</p>
|
|
451
804
|
</li>
|
452
805
|
<li><p class="first">[doc] Added <a class="reference internal" href="reference/tokenizers.html"><em>Tokenizers</em></a> document.</p>
|
453
806
|
</li>
|
454
|
-
<li><p class="first">Improved POSIX.2 compatibility by using <
|
807
|
+
<li><p class="first">Improved POSIX.2 compatibility by using <code class="docutils literal"><span class="pre">.</span></code> as bash's "source"
|
455
808
|
command replacement. [GitHub#317] [Patch by Jun Kuriyama]</p>
|
456
809
|
</li>
|
457
810
|
<li><p class="first">[windows] Changed to the default IO version 1. It reduces disk usage
|
@@ -460,23 +813,23 @@ on Windows. [groonga-dev,03118] [Tested by ongaeshi]</p>
|
|
460
813
|
<li><p class="first">[httpd] Updated bundled nginx version to the latest mainline
|
461
814
|
(1.7.11).</p>
|
462
815
|
</li>
|
463
|
-
<li><p class="first">Changed mime-type for TSV output to <
|
464
|
-
from <
|
816
|
+
<li><p class="first">Changed mime-type for TSV output to <code class="docutils literal"><span class="pre">text/tab-separated-values</span></code>
|
817
|
+
from <code class="docutils literal"><span class="pre">text/plain</span></code>.</p>
|
465
818
|
</li>
|
466
|
-
<li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><
|
467
|
-
<a class="reference internal" href="reference/indexing.html#offline-index-construction"><
|
819
|
+
<li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span>TokenFilterStopWord</span></a>] Supported
|
820
|
+
<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>Offline index construction</span></a>. [GitHub#296] [Patch by Naoya
|
468
821
|
Murakami]</p>
|
469
822
|
</li>
|
470
823
|
</ul>
|
471
824
|
</div>
|
472
|
-
<div class="section" id="
|
473
|
-
<h3>Fixes<a class="headerlink" href="#
|
825
|
+
<div class="section" id="id17">
|
826
|
+
<h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
474
827
|
<ul class="simple">
|
475
|
-
<li>Fixed not to use obsolete <
|
476
|
-
groonga.conf. <
|
828
|
+
<li>Fixed not to use obsolete <code class="docutils literal"><span class="pre">--address</span></code> parameter in the default
|
829
|
+
groonga.conf. <code class="docutils literal"><span class="pre">--bind-address</span></code> is used instead. [Groonga-talk]
|
477
830
|
[Reported by Dewangga]</li>
|
478
831
|
<li>[<a class="reference internal" href="reference/commands/truncate.html"><em>truncate</em></a>] Fixed a bug that
|
479
|
-
<a class="reference internal" href="reference/tables.html#table-no-key"><
|
832
|
+
<a class="reference internal" href="reference/tables.html#table-no-key"><span>TABLE_NO_KEY</span></a> table can't be truncated.</li>
|
480
833
|
<li>[mecab] Reduced needless logs for "empty token" and "ignore empty
|
481
834
|
token".</li>
|
482
835
|
<li>Fixed a bug that wrong section in index is used. It means that wrong
|
@@ -491,18 +844,18 @@ multi-column indexes, source column orders are different in them.</li>
|
|
491
844
|
</li>
|
492
845
|
<li>Fixed a bug that passing Groonga command line to
|
493
846
|
<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> from shell command line style
|
494
|
-
usage always returns <
|
495
|
-
<span class="pre">DB_PATH</span> <span class="pre">nonexistent_command</span></
|
847
|
+
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>
|
848
|
+
<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>
|
496
849
|
<li>Fixed a bug that plugin path may be broken when two or more plugins
|
497
850
|
registered. [Reported by Naoya Murakami]</li>
|
498
|
-
<li>Fixed a bug that <
|
499
|
-
<a class="reference internal" href="reference/commands/select.html#select-match-columns"><
|
500
|
-
column specified by <
|
851
|
+
<li>Fixed a bug that <code class="docutils literal"><span class="pre">Lexicon.index.source_column_name</span></code> style in
|
852
|
+
<a class="reference internal" href="reference/commands/select.html#select-match-columns"><span>match_columns</span></a> doesn't work when source
|
853
|
+
column specified by <code class="docutils literal"><span class="pre">source_column_name</span></code> has two or more
|
501
854
|
indexes. [Reported by Naoya Murakami]</li>
|
502
855
|
</ul>
|
503
856
|
</div>
|
504
|
-
<div class="section" id="
|
505
|
-
<h3>Thanks<a class="headerlink" href="#
|
857
|
+
<div class="section" id="id18">
|
858
|
+
<h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
506
859
|
<ul class="simple">
|
507
860
|
<li>Masatoshi Teruya</li>
|
508
861
|
<li>Tasuku SUENAGA</li>
|
@@ -518,10 +871,10 @@ indexes. [Reported by Naoya Murakami]</li>
|
|
518
871
|
<ul class="simple">
|
519
872
|
<li>Bump version to 5.0.0!</li>
|
520
873
|
</ul>
|
521
|
-
<div class="section" id="
|
522
|
-
<h3>Improvements<a class="headerlink" href="#
|
874
|
+
<div class="section" id="id19">
|
875
|
+
<h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
523
876
|
<ul class="simple">
|
524
|
-
<li>[doc] Added <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><
|
877
|
+
<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"><em>Script syntax</em></a>.</li>
|
525
878
|
<li>[experimental] Added sharding plugin. Execute <cite>register sharding</cite> to
|
526
879
|
enable this feature in advance, then use <a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a> to select records.</li>
|
527
880
|
<li>[cmake] Supported embedded Groonga with Clang. It fixed compilation failure
|
@@ -530,16 +883,16 @@ on FreeBSD 10.1. <a class="reference external" href="https://mariadb.atlassian.n
|
|
530
883
|
<li>Supported to customize plugins directory. Set <cite>GRN_PLUGINS_DIR</cite> environment variable.</li>
|
531
884
|
</ul>
|
532
885
|
</div>
|
533
|
-
<div class="section" id="
|
534
|
-
<h3>Fixes<a class="headerlink" href="#
|
886
|
+
<div class="section" id="id20">
|
887
|
+
<h3>Fixes<a class="headerlink" href="#id20" title="Permalink to this headline">¶</a></h3>
|
535
888
|
<ul class="simple">
|
536
889
|
<li>Fixed build failure when system has an incompatible version of onigmo/oniguruma
|
537
890
|
headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
538
891
|
<li>Fixed time related build failure on MSVC [GitHub#237]</li>
|
539
892
|
</ul>
|
540
893
|
</div>
|
541
|
-
<div class="section" id="
|
542
|
-
<h3>Thanks<a class="headerlink" href="#
|
894
|
+
<div class="section" id="id21">
|
895
|
+
<h3>Thanks<a class="headerlink" href="#id21" title="Permalink to this headline">¶</a></h3>
|
543
896
|
<ul class="simple">
|
544
897
|
<li>Akinori MUSHA</li>
|
545
898
|
<li>Bernard Spil</li>
|
@@ -881,58 +1234,72 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
881
1234
|
</div>
|
882
1235
|
</div>
|
883
1236
|
</div>
|
884
|
-
<div class="sphinxsidebar">
|
1237
|
+
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
885
1238
|
<div class="sphinxsidebarwrapper">
|
886
1239
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
887
1240
|
<ul>
|
888
1241
|
<li><a class="reference internal" href="#">News</a><ul>
|
889
|
-
<li><a class="reference internal" href="#release-5-0-
|
1242
|
+
<li><a class="reference internal" href="#release-5-0-7-2015-08-31">Release 5.0.7 - 2015-08-31</a><ul>
|
890
1243
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
891
1244
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
892
1245
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
893
1246
|
</ul>
|
894
1247
|
</li>
|
895
|
-
<li><a class="reference internal" href="#release-5-0-
|
1248
|
+
<li><a class="reference internal" href="#release-5-0-6-2015-07-29">Release 5.0.6 - 2015-07-29</a><ul>
|
896
1249
|
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
897
1250
|
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
898
1251
|
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
899
1252
|
</ul>
|
900
1253
|
</li>
|
901
|
-
<li><a class="reference internal" href="#release-5-0-
|
1254
|
+
<li><a class="reference internal" href="#release-5-0-5-2015-06-29">Release 5.0.5 - 2015-06-29</a><ul>
|
902
1255
|
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
903
1256
|
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
904
1257
|
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
905
1258
|
</ul>
|
906
1259
|
</li>
|
907
|
-
<li><a class="reference internal" href="#release-5-0-
|
1260
|
+
<li><a class="reference internal" href="#release-5-0-4-2015-05-29">Release 5.0.4 - 2015-05-29</a><ul>
|
908
1261
|
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
909
1262
|
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
910
1263
|
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
911
1264
|
</ul>
|
912
1265
|
</li>
|
913
|
-
<li><a class="reference internal" href="#release-5-0-
|
1266
|
+
<li><a class="reference internal" href="#release-5-0-3-2015-04-29">Release 5.0.3 - 2015-04-29</a><ul>
|
914
1267
|
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
915
1268
|
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
916
1269
|
<li><a class="reference internal" href="#id12">Thanks</a></li>
|
917
1270
|
</ul>
|
918
1271
|
</li>
|
919
|
-
<li><a class="reference internal" href="#release-5-0-
|
1272
|
+
<li><a class="reference internal" href="#release-5-0-2-2015-03-31">Release 5.0.2 - 2015-03-31</a><ul>
|
920
1273
|
<li><a class="reference internal" href="#id13">Improvements</a></li>
|
921
1274
|
<li><a class="reference internal" href="#id14">Fixes</a></li>
|
922
1275
|
<li><a class="reference internal" href="#id15">Thanks</a></li>
|
923
1276
|
</ul>
|
924
1277
|
</li>
|
1278
|
+
<li><a class="reference internal" href="#release-5-0-1-2015-03-29">Release 5.0.1 - 2015-03-29</a><ul>
|
1279
|
+
<li><a class="reference internal" href="#id16">Improvements</a></li>
|
1280
|
+
<li><a class="reference internal" href="#id17">Fixes</a></li>
|
1281
|
+
<li><a class="reference internal" href="#id18">Thanks</a></li>
|
1282
|
+
</ul>
|
1283
|
+
</li>
|
1284
|
+
<li><a class="reference internal" href="#release-5-0-0-2015-02-09">Release 5.0.0 - 2015-02-09</a><ul>
|
1285
|
+
<li><a class="reference internal" href="#id19">Improvements</a></li>
|
1286
|
+
<li><a class="reference internal" href="#id20">Fixes</a></li>
|
1287
|
+
<li><a class="reference internal" href="#id21">Thanks</a></li>
|
1288
|
+
</ul>
|
1289
|
+
</li>
|
925
1290
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
|
926
1291
|
</ul>
|
927
1292
|
</li>
|
928
1293
|
</ul>
|
929
1294
|
|
930
|
-
<
|
931
|
-
|
932
|
-
<
|
933
|
-
|
934
|
-
|
935
|
-
|
1295
|
+
<div role="note" aria-label="source link">
|
1296
|
+
<h3>This Page</h3>
|
1297
|
+
<ul class="this-page-menu">
|
1298
|
+
<li><a href="_sources/news.txt"
|
1299
|
+
rel="nofollow">Show Source</a></li>
|
1300
|
+
</ul>
|
1301
|
+
</div>
|
1302
|
+
<div id="searchbox" style="display: none" role="search">
|
936
1303
|
<h3>Quick search</h3>
|
937
1304
|
<form class="search" action="search.html" method="get">
|
938
1305
|
<input type="text" name="q" />
|
@@ -949,16 +1316,16 @@ headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
|
949
1316
|
</div>
|
950
1317
|
<div class="clearer"></div>
|
951
1318
|
</div>
|
952
|
-
<div class="related">
|
1319
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
953
1320
|
<h3>Navigation</h3>
|
954
1321
|
<ul>
|
955
1322
|
<li class="right" style="margin-right: 10px">
|
956
1323
|
<a href="genindex.html" title="General Index"
|
957
1324
|
>index</a></li>
|
958
|
-
<li><a href="index.html">Groonga v5.0.
|
1325
|
+
<li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7 documentation</a> »</li>
|
959
1326
|
</ul>
|
960
1327
|
</div>
|
961
|
-
<div class="footer">
|
1328
|
+
<div class="footer" role="contentinfo">
|
962
1329
|
© Copyright 2009-2015, Brazil, Inc.
|
963
1330
|
</div>
|
964
1331
|
</body>
|