rroonga 4.0.8-x64-mingw32 → 5.0.0-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.md +2 -2
- data/doc/text/news.textile +19 -0
- data/ext/groonga/rb-grn-exception.c +35 -1
- data/ext/groonga/rb-grn-normalizer.c +37 -7
- data/ext/groonga/rb-grn-table.c +106 -35
- data/ext/groonga/rb-grn.h +3 -2
- 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/groonga/record.rb +45 -1
- data/rroonga-build.rb +6 -5
- data/test/groonga-test-utils.rb +9 -0
- data/test/test-array.rb +11 -0
- data/test/test-exception.rb +3 -1
- data/test/test-normalizer.rb +28 -0
- data/test/test-record.rb +34 -0
- data/test/test-table-group.rb +366 -0
- data/test/test-table.rb +0 -182
- 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-3.dll +0 -0
- data/vendor/local/bin/libmsgpackc-2.dll +0 -0
- data/vendor/local/bin/libonig-5.dll +0 -0
- data/vendor/local/bin/libstdc++-6.dll +0 -0
- data/vendor/local/bin/lz4.exe +0 -0
- data/vendor/local/bin/lz4c.exe +0 -0
- data/vendor/local/bin/lz4cat +0 -0
- data/vendor/local/bin/mecab-config +2 -2
- data/vendor/local/bin/mecab.exe +0 -0
- data/vendor/local/bin/onig-config +1 -1
- data/vendor/local/bin/zlib1.dll +0 -0
- data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
- data/vendor/local/include/groonga/groonga.h +2 -1
- data/vendor/local/include/groonga/groonga/command.h +79 -0
- data/vendor/local/include/groonga/groonga/groonga.h +32 -74
- data/vendor/local/include/groonga/groonga/output.h +108 -0
- data/vendor/local/include/groonga/groonga/plugin.h +18 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- data/vendor/local/lib/groonga/plugins/sharding.rb +3 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +157 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +170 -0
- data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +50 -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 +3 -3
- 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 +3 -3
- 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 +3 -3
- 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 +3 -3
- data/vendor/local/lib/groonga/scripts/ruby/command.rb +35 -0
- data/vendor/local/lib/groonga/scripts/ruby/{command → command_line}/grndb.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/context.rb +29 -8
- data/vendor/local/lib/groonga/scripts/ruby/context/rc.rb +166 -76
- data/vendor/local/lib/groonga/scripts/ruby/database.rb +16 -4
- data/vendor/local/lib/groonga/scripts/ruby/error.rb +16 -0
- data/vendor/local/lib/groonga/scripts/ruby/index_cursor.rb +18 -0
- data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +10 -0
- data/vendor/local/lib/groonga/scripts/ruby/logger.rb +5 -1
- data/vendor/local/lib/groonga/scripts/ruby/plugin_loader.rb +14 -0
- data/vendor/local/lib/groonga/scripts/ruby/require.rb +1 -1
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_builder.rb +3 -3
- data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +4 -2
- data/vendor/local/lib/groonga/scripts/ruby/table_cursor.rb +15 -0
- data/vendor/local/lib/groonga/scripts/ruby/writer.rb +21 -0
- data/vendor/local/lib/libgroonga.a +0 -0
- data/vendor/local/lib/libgroonga.dll.a +0 -0
- data/vendor/local/lib/libgroonga.la +3 -3
- data/vendor/local/lib/liblz4.a +0 -0
- data/vendor/local/lib/liblz4.dll +0 -0
- data/vendor/local/lib/liblz4.dll.1 +0 -0
- data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
- data/vendor/local/lib/libmecab.a +0 -0
- data/vendor/local/lib/libmecab.dll.a +0 -0
- data/vendor/local/lib/libmecab.la +2 -2
- data/vendor/local/lib/libmsgpack.a +0 -0
- data/vendor/local/lib/libmsgpack.dll.a +0 -0
- data/vendor/local/lib/libmsgpack.la +2 -2
- data/vendor/local/lib/libmsgpackc.a +0 -0
- data/vendor/local/lib/libmsgpackc.dll.a +0 -0
- data/vendor/local/lib/libmsgpackc.la +2 -2
- data/vendor/local/lib/libonig.a +0 -0
- data/vendor/local/lib/libonig.dll.a +0 -0
- data/vendor/local/lib/libonig.la +2 -2
- data/vendor/local/lib/libz.a +0 -0
- data/vendor/local/lib/libz.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +3 -3
- data/vendor/local/lib/pkgconfig/liblz4.pc +5 -5
- data/vendor/local/lib/pkgconfig/msgpack.pc +1 -1
- data/vendor/local/lib/pkgconfig/oniguruma.pc +6 -6
- data/vendor/local/lib/pkgconfig/zlib.pc +3 -3
- data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
- data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
- data/vendor/local/sbin/groonga-httpd-restart +1 -1
- data/vendor/local/sbin/groonga-httpd.exe +0 -0
- data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
- data/vendor/local/share/doc/groonga/en/html/_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 +5 -5
- data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +4 -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 +16 -570
- data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +5 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +686 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +0 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +3 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/column.txt +12 -4
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/index.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/pseudo.txt +2 -2
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/scalar.txt +19 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +734 -29
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/html_untag.txt +2 -1
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
- data/vendor/local/share/doc/groonga/en/html/_sources/reference/suggest/completion.txt +25 -23
- data/vendor/local/share/doc/groonga/en/html/_sources/server/http.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 +26 -1
- 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 -2
- 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/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 +20 -18
- data/vendor/local/share/doc/groonga/en/html/client.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/community.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/contribution/development.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/contribution/report.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/development.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/genindex.html +13 -13
- data/vendor/local/share/doc/groonga/en/html/index.html +86 -78
- data/vendor/local/share/doc/groonga/en/html/install.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/install/centos.html +31 -29
- data/vendor/local/share/doc/groonga/en/html/install/debian.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/install/fedora.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +33 -30
- data/vendor/local/share/doc/groonga/en/html/install/others.html +90 -88
- data/vendor/local/share/doc/groonga/en/html/install/solaris.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/install/windows.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/limitations.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/news.html +99 -641
- data/vendor/local/share/doc/groonga/en/html/news/0.x.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +35 -33
- data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/news/2.x.html +103 -100
- data/vendor/local/share/doc/groonga/en/html/news/3.x.html +72 -70
- data/vendor/local/share/doc/groonga/en/html/news/4.x.html +873 -0
- data/vendor/local/share/doc/groonga/en/html/news/senna.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/en/html/reference.html +83 -75
- data/vendor/local/share/doc/groonga/en/html/reference/api.html +40 -38
- data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +68 -66
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +66 -62
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +31 -29
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +67 -65
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +32 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +77 -75
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +32 -30
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +63 -61
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +52 -50
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +28 -26
- data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/cast.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/column.html +35 -33
- data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +152 -0
- data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +56 -29
- data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +152 -0
- data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +121 -94
- data/vendor/local/share/doc/groonga/en/html/reference/command.html +55 -53
- data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +56 -54
- data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +97 -95
- data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +41 -39
- data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +42 -40
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +74 -72
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +44 -42
- data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +40 -38
- data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +25 -23
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +62 -60
- data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +32 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +37 -35
- data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +54 -52
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +3069 -567
- data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +66 -64
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +123 -121
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +36 -34
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +26 -24
- data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +46 -44
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +82 -80
- data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +32 -30
- data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +39 -37
- data/vendor/local/share/doc/groonga/en/html/reference/executables.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +29 -27
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +76 -74
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +37 -35
- data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +58 -56
- data/vendor/local/share/doc/groonga/en/html/reference/function.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +43 -41
- data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +82 -80
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +33 -31
- data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +54 -52
- data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +42 -40
- data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +32 -29
- data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +49 -47
- data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +45 -43
- data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +42 -40
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +27 -25
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +219 -216
- data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +430 -381
- data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +22 -20
- data/vendor/local/share/doc/groonga/en/html/reference/log.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +52 -50
- data/vendor/local/share/doc/groonga/en/html/reference/operations.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/output.html +35 -33
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +58 -56
- 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 +46 -41
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/tables.html +55 -53
- data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +39 -37
- data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +30 -28
- data/vendor/local/share/doc/groonga/en/html/reference/types.html +38 -36
- data/vendor/local/share/doc/groonga/en/html/search.html +12 -12
- data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/en/html/server.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +20 -18
- 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 +34 -32
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/server/package.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/spec.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +128 -126
- data/vendor/local/share/doc/groonga/en/html/spec/search.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +34 -32
- data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +23 -21
- data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +24 -22
- data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +53 -51
- data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -18
- data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +21 -19
- data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +23 -21
- 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/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 +5 -5
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
- data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +4 -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 +16 -570
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +5 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +1 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +686 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +0 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +3 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/column.txt +12 -4
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/index.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/pseudo.txt +2 -2
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/scalar.txt +19 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +734 -29
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/html_untag.txt +2 -1
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +8 -7
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +50 -0
- data/vendor/local/share/doc/groonga/ja/html/_sources/reference/suggest/completion.txt +25 -23
- data/vendor/local/share/doc/groonga/ja/html/_sources/server/http.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 +26 -1
- 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 -2
- 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/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 +20 -18
- data/vendor/local/share/doc/groonga/ja/html/client.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/community.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/development.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/genindex.html +17 -17
- data/vendor/local/share/doc/groonga/ja/html/index.html +88 -80
- data/vendor/local/share/doc/groonga/ja/html/install.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/install/centos.html +40 -38
- data/vendor/local/share/doc/groonga/ja/html/install/debian.html +30 -29
- data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/install/others.html +81 -79
- data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +31 -30
- data/vendor/local/share/doc/groonga/ja/html/install/windows.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/limitations.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/news.html +85 -677
- data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +94 -92
- data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +911 -0
- data/vendor/local/share/doc/groonga/ja/html/news/senna.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
- data/vendor/local/share/doc/groonga/ja/html/reference.html +85 -77
- data/vendor/local/share/doc/groonga/ja/html/reference/api.html +40 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +42 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +70 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +42 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +62 -60
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +78 -76
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +63 -61
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +52 -50
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/column.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +153 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +56 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +153 -0
- data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +111 -84
- data/vendor/local/share/doc/groonga/ja/html/reference/command.html +56 -54
- data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +50 -48
- data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +100 -98
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +42 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +66 -64
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +41 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +40 -38
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +38 -37
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +57 -55
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +59 -57
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +2832 -427
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +64 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +99 -97
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +26 -24
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +41 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +67 -65
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +32 -30
- data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +40 -39
- data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +50 -45
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +29 -27
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +64 -62
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +37 -35
- data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +58 -56
- data/vendor/local/share/doc/groonga/ja/html/reference/function.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +43 -41
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +70 -68
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +44 -42
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +42 -40
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +34 -32
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +24 -22
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +119 -117
- data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +341 -301
- data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/reference/log.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +46 -44
- data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/output.html +31 -29
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +37 -35
- 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 +35 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +45 -43
- data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +36 -34
- data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +30 -28
- data/vendor/local/share/doc/groonga/ja/html/reference/types.html +38 -36
- data/vendor/local/share/doc/groonga/ja/html/search.html +12 -12
- data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
- data/vendor/local/share/doc/groonga/ja/html/server.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/server/http.html +22 -20
- data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +28 -26
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/server/package.html +35 -33
- data/vendor/local/share/doc/groonga/ja/html/spec.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +127 -125
- data/vendor/local/share/doc/groonga/ja/html/spec/search.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +25 -23
- data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +33 -31
- data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +20 -18
- data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +27 -25
- data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +50 -48
- data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +21 -19
- data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +23 -21
- data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
- data/vendor/local/share/man/ja/man1/groonga.1 +6711 -3135
- data/vendor/local/share/man/man1/groonga.1 +7192 -3297
- metadata +33 -4
@@ -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
|
10
|
+
<title>9. Limitations — Groonga v5.0.0 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '
|
18
|
+
VERSION: '5.0.0',
|
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
|
28
|
+
<link rel="top" title="Groonga v5.0.0 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
|
62
|
+
<li><a href="index.html">Groonga v5.0.0 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,11 +157,11 @@
|
|
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
|
160
|
+
<li><a href="index.html">Groonga v5.0.0 documentation</a> »</li>
|
159
161
|
</ul>
|
160
162
|
</div>
|
161
|
-
<div class="footer">
|
162
|
-
© Copyright 2009-
|
163
|
+
<div class="footer" role="contentinfo">
|
164
|
+
© Copyright 2009-2015, Brazil, Inc.
|
163
165
|
</div>
|
164
166
|
</body>
|
165
167
|
</html>
|
@@ -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
|
10
|
+
<title>News — Groonga v5.0.0 documentation</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '
|
18
|
+
VERSION: '5.0.0',
|
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
|
28
|
+
<link rel="top" title="Groonga v5.0.0 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,620 +45,130 @@
|
|
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
|
54
|
+
<li><a href="index.html">Groonga v5.0.0 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-
|
66
|
-
<span id="release-
|
65
|
+
<div class="section" id="release-5-0-0-2015-02-09">
|
66
|
+
<span id="release-5-0-0"></span><h2>Release 5.0.0 - 2015/02/09<a class="headerlink" href="#release-5-0-0-2015-02-09" title="Permalink to this headline">¶</a></h2>
|
67
|
+
<ul class="simple">
|
68
|
+
<li>Bump version to 5.0.0!</li>
|
69
|
+
</ul>
|
67
70
|
<div class="section" id="improvements">
|
68
71
|
<h3>Improvements<a class="headerlink" href="#improvements" title="Permalink to this headline">¶</a></h3>
|
69
72
|
<ul class="simple">
|
70
|
-
<li>[<a class="reference internal" href="reference/
|
71
|
-
<li>[
|
72
|
-
|
73
|
-
<li>[
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
<li>[experimental] Added <a class="reference internal" href="reference/api/grn_db.html#c.grn_db_recover" title="grn_db_recover"><tt class="xref c c-func docutils literal"><span class="pre">grn_db_recover()</span></tt></a>.</li>
|
78
|
-
<li>Supported indexing vector of fixed size data such as vector of
|
79
|
-
<tt class="docutils literal"><span class="pre">UInt64</span></tt>.
|
80
|
-
[groonga-dev,03014] [Reported by funa 1g]</li>
|
81
|
-
<li>[experimental] Added <a class="reference internal" href="reference/executables/grndb.html"><em>grndb</em></a>.</li>
|
82
|
-
<li>[deb] Supported armhf architecture.</li>
|
83
|
-
<li>[<a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a>] Supported HEAD.</li>
|
84
|
-
<li>[doc] Updated <a class="reference internal" href="contribution/documentation/introduction.html"><em>Introduction</em></a>.
|
85
|
-
[GitHub#270] [Patch by Yuya TAMANO]</li>
|
86
|
-
<li>[doc] Updated <a class="reference internal" href="install/others.html"><em>Others</em></a>.
|
87
|
-
[GitHub#271] [Patch by Hiroshi Hatake]</li>
|
88
|
-
<li>[<a class="reference internal" href="reference/token_filters.html#token-filter-stem"><em>TokenFilterStem</em></a>] Supported token that consists with only
|
89
|
-
upper-case alphabets, digits, <tt class="docutils literal"><span class="pre">-</span></tt> and <tt class="docutils literal"><span class="pre">'</span></tt>. It means that
|
90
|
-
<a class="reference internal" href="reference/token_filters.html#token-filter-stem"><em>TokenFilterStem</em></a> can work with MySQL compatible normalizers.</li>
|
91
|
-
<li>[<a class="reference internal" href="reference/commands/truncate.html"><em>truncate</em></a>] Supported column.</li>
|
92
|
-
<li>[<a class="reference internal" href="reference/commands/truncate.html"><em>truncate</em></a>] Changed parameter name to
|
93
|
-
<tt class="docutils literal"><span class="pre">target_name</span></tt> from <tt class="docutils literal"><span class="pre">table</span></tt>. <tt class="docutils literal"><span class="pre">table</span></tt> parameter can be used for
|
94
|
-
backward compatibility but it shouldn't used for newly written code.</li>
|
95
|
-
<li>Exported <a class="reference internal" href="reference/api/grn_column.html#c.grn_column_truncate" title="grn_column_truncate"><tt class="xref c c-func docutils literal"><span class="pre">grn_column_truncate()</span></tt></a>.</li>
|
96
|
-
<li>Added <a class="reference internal" href="reference/commands/lock_clear.html"><em>lock_clear</em></a>.</li>
|
97
|
-
<li>Marked <a class="reference internal" href="reference/commands/clearlock.html"><em>clearlock</em></a> deprecated.</li>
|
98
|
-
<li>[backward incompatible] Stopped to set world writable permission for
|
99
|
-
newly created files on <tt class="docutils literal"><span class="pre">umask(0)</span></tt> environment such as daemoned
|
100
|
-
<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>. It's a backward
|
101
|
-
incompatible change but done because the previous behavior has
|
102
|
-
a security risk.</li>
|
73
|
+
<li>[doc] Added <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><em>Security</em></a> about <a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>Script syntax</em></a>.</li>
|
74
|
+
<li>[experimental] Added sharding plugin. Execute <cite>register sharding</cite> to
|
75
|
+
enable this feature in advance, then use <code class="xref doc docutils literal"><span class="pre">/reference/commands/logical_count</span></code> to select records.</li>
|
76
|
+
<li>[cmake] Supported embedded Groonga with Clang. It fixed compilation failure
|
77
|
+
on FreeBSD 10.1. <a class="reference external" href="https://mariadb.atlassian.net/browse/MDEV-7293">[MDEV-7293]</a>
|
78
|
+
[Reported by Bernard Spil]</li>
|
79
|
+
<li>Supported to customize plugins directory. Set <cite>GRN_PLUGINS_DIR</cite> environment variable.</li>
|
103
80
|
</ul>
|
104
81
|
</div>
|
105
82
|
<div class="section" id="fixes">
|
106
83
|
<h3>Fixes<a class="headerlink" href="#fixes" title="Permalink to this headline">¶</a></h3>
|
107
84
|
<ul class="simple">
|
108
|
-
<li>Fixed build
|
109
|
-
[GitHub#
|
110
|
-
<li>Fixed build
|
111
|
-
[GitHub#253] [Reported by Hiroshi Hatake]</li>
|
112
|
-
<li>Fixed a regression bug that equal operation against nonexistent
|
113
|
-
reference always matches.</li>
|
114
|
-
<li>Fixed a crash bug that may be occurred by deleting or updating many
|
115
|
-
indexed values at once.
|
116
|
-
[groonga-dev,02942] [Reported by kashihara]</li>
|
117
|
-
<li>Fixed a regression bug that static index construction doesn't work
|
118
|
-
on BSD based system. [GitHub#264] [Reported by Ayumu Osanai]</li>
|
119
|
-
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">--with-libstemmer</span></tt> configure option is ignored.</li>
|
120
|
-
<li>[deb] Fixed a bug that logrotate script has a syntax error.</li>
|
121
|
-
<li>Fixed a bug that grouped result can't be got when
|
122
|
-
<a class="reference internal" href="reference/command/command_version.html"><em>コマンドバージョン</em></a> is <tt class="docutils literal"><span class="pre">2</span></tt>.
|
123
|
-
[GitHub ranguba/rroonga#38] [Reported by YUKI "Piro" Hiroshi]</li>
|
85
|
+
<li>Fixed build failure when system has an incompatible version of onigmo/oniguruma
|
86
|
+
headers installed. [GitHub#276] [Patch by Akinori MUSHA]</li>
|
87
|
+
<li>Fixed time related build failure on MSVC [GitHub#237]</li>
|
124
88
|
</ul>
|
125
89
|
</div>
|
126
90
|
<div class="section" id="thanks">
|
127
91
|
<h3>Thanks<a class="headerlink" href="#thanks" title="Permalink to this headline">¶</a></h3>
|
128
92
|
<ul class="simple">
|
129
|
-
<li>
|
130
|
-
<li>
|
131
|
-
<li>akira yamada</li>
|
132
|
-
<li>kashihara</li>
|
133
|
-
<li>Ayumu Osanai</li>
|
134
|
-
<li>funa 1g</li>
|
135
|
-
<li>YUKI "Piro" Hiroshi</li>
|
136
|
-
<li>Yuya TAMANO</li>
|
137
|
-
</ul>
|
138
|
-
</div>
|
139
|
-
</div>
|
140
|
-
<div class="section" id="release-4-0-8-2014-11-29">
|
141
|
-
<span id="release-4-0-8"></span><h2>Release 4.0.8 - 2014/11/29<a class="headerlink" href="#release-4-0-8-2014-11-29" title="Permalink to this headline">¶</a></h2>
|
142
|
-
<div class="section" id="id1">
|
143
|
-
<h3>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
144
|
-
<ul class="simple">
|
145
|
-
<li>[deb] Supported Ubuntu 12.04 again because Travis-CI runs on it.</li>
|
146
|
-
<li>[mruby] Supported pretty print - <tt class="docutils literal"><span class="pre">"pp"</span></tt> for debugging. And supported to
|
147
|
-
show internal objects more descriptive format when inspecting it.</li>
|
148
|
-
<li>Supported full text search query without index if one column is specified
|
149
|
-
for <tt class="docutils literal"><span class="pre">--match_columns</span></tt> even though sequential search is executed
|
150
|
-
by <tt class="docutils literal"><span class="pre">--query</span></tt> and <tt class="docutils literal"><span class="pre">--match_columns</span></tt> combination.
|
151
|
-
[groonga-dev,02902] [Reported by Atsushi Shinoda]</li>
|
152
|
-
<li>[experimental] <a class="reference internal" href="reference/functions/in_values.html"><em>in_values</em></a> supports auto sequential
|
153
|
-
search mode. There is a case that sequential search is faster than index search when
|
154
|
-
the number of narrowed down records is small enough in contrast to
|
155
|
-
the number of expected records to narrow down by <tt class="docutils literal"><span class="pre">in_values</span></tt> with
|
156
|
-
<tt class="docutils literal"><span class="pre">AND</span></tt> operation which use indexes.
|
157
|
-
The value of <tt class="docutils literal"><span class="pre">GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO</span></tt> is used as
|
158
|
-
threshold whether Groonga execute sequential search or search with indexes in
|
159
|
-
such a case.</li>
|
160
|
-
<li>[mruby] Supported to load relative path of script.</li>
|
161
|
-
<li>Supported test suite to write query optimizer test more easily with
|
162
|
-
mruby enabled build.</li>
|
163
|
-
<li>Supported offline index construction for token filters.
|
164
|
-
[GitHub#239] [Patch by Naoya Murakami]</li>
|
165
|
-
<li>[experimental] <a class="reference internal" href="reference/functions/between.html"><em>between</em></a> supports auto sequential search mode.
|
166
|
-
Use the value of <tt class="docutils literal"><span class="pre">GRN_BETWEEN_TOO_MANY_INDEX_MATCH_RATIO</span></tt> as threshold.
|
167
|
-
Basic concept is similar to <tt class="docutils literal"><span class="pre">GRN_IN_VALUES_TOO_MANY_INDEX_MATCH_RATIO</span></tt>.</li>
|
168
|
-
<li>[experimental] Supported multiple drilldowns for :doc:<tt class="docutils literal"><span class="pre">/reference/command/select</span></tt>
|
169
|
-
command. The syntax is extended to support this feature. The new one is
|
170
|
-
<tt class="docutils literal"><span class="pre">--drilldown[LABEL1].keys</span> <span class="pre">COLUMN1,COLUMN2</span></tt> for keys,
|
171
|
-
<tt class="docutils literal"><span class="pre">--drilldown[LABEL1].output_columns</span> <span class="pre">_value.COLUMN1,_value.COLUMN2,_nsubrecs</span></tt> for output columns.
|
172
|
-
In the previous versions, a client application must implement by oneself for drilldown
|
173
|
-
by multiple keys. Use <tt class="docutils literal"><span class="pre">_key[N]</span></tt> for <tt class="docutils literal"><span class="pre">--drilldown[LABEL1].output_columns</span></tt> to show
|
174
|
-
original value of key in records.</li>
|
175
|
-
<li>Supported to search <tt class="docutils literal"><span class="pre">'reference_column</span> <span class="pre">@</span> <span class="pre">"query"'</span></tt> without index.</li>
|
176
|
-
<li>[experimental] Added <a class="reference internal" href="reference/commands/range_filter.html"><em>range_filter</em></a> command. It is faster than select
|
177
|
-
command to fetch specific range of records in most cases, because it doesn't returns
|
178
|
-
the number of matched records. There are limitations which doesn't support drilldown and so on.
|
179
|
-
Thus, <tt class="docutils literal"><span class="pre">range_filter</span></tt> is suitable for extracting first <tt class="docutils literal"><span class="pre">N</span></tt> records in specific range for ranking
|
180
|
-
or something else.</li>
|
181
|
-
<li>[httpd] Supported <tt class="docutils literal"><span class="pre">groonga-httpd</span></tt> on windows.</li>
|
182
|
-
<li>Supported vector column for drilldown.</li>
|
183
|
-
<li>[deb] Changed <tt class="docutils literal"><span class="pre">groonga-httpd</span></tt> as default HTTP server package.
|
184
|
-
<tt class="docutils literal"><span class="pre">groonga-server-http</span></tt> is deprecated. Note that <a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a>
|
185
|
-
functionality itself is still exists in Groonga. If you just want to use simple HTTP server
|
186
|
-
in traditional way, specify proper arguments by command line for <a class="reference internal" href="reference/executables/groonga.html"><em>groonga command</em></a>.</li>
|
187
|
-
<li>Added configuration file for Windows CI on AppVeyor.
|
188
|
-
[groonga-dev,02970,02981] [Patch by Hiroshi Hatake]</li>
|
189
|
-
</ul>
|
190
|
-
</div>
|
191
|
-
<div class="section" id="id2">
|
192
|
-
<h3>Fixes<a class="headerlink" href="#id2" title="Permalink to this headline">¶</a></h3>
|
193
|
-
<ul class="simple">
|
194
|
-
<li>[doc] Fixed duplicated execution example path about
|
195
|
-
<a class="reference internal" href="reference/commands/table_create.html"><em>table_create</em></a>.
|
196
|
-
[GitHub groonga.org#14] [Reported by Masafumi Yokoyama]</li>
|
197
|
-
<li>Fixed a bug that nested indexed full text search against <tt class="docutils literal"><span class="pre">X._key</span></tt>
|
198
|
-
returns empty results.</li>
|
199
|
-
<li>Fixed flags parameter which is strict in BSD <tt class="docutils literal"><span class="pre">mkostemp(3)</span></tt>.
|
200
|
-
[GitHub#240] [Patch by Jun Kuriyama]</li>
|
201
|
-
<li>Fixed a bug that select command reports invalid value type (table)
|
202
|
-
as index column value type. It was fixed to <tt class="docutils literal"><span class="pre">UInt32</span></tt>.
|
203
|
-
Note that it affects only the value of response header.
|
204
|
-
The search results is not changed at all.</li>
|
205
|
-
<li>Fixed a bug that compare operations such as <tt class="docutils literal"><span class="pre"><</span></tt>, <tt class="docutils literal"><span class="pre"><=</span></tt>, <tt class="docutils literal"><span class="pre">></span></tt>, <tt class="docutils literal"><span class="pre">>=</span></tt>, <tt class="docutils literal"><span class="pre">!=</span></tt> with
|
206
|
-
Time and String type returns invalid results.</li>
|
207
|
-
<li>Fixed a bug that prefix search can't be executed against single character such as
|
208
|
-
<tt class="docutils literal"><span class="pre">"x*"</span></tt>. [GitHub#242] [Patch by Naoya Murakami]</li>
|
209
|
-
<li>Fixed a memory leak on drilldown <tt class="docutils literal"><span class="pre">ShortText</span></tt> value with <tt class="docutils literal"><span class="pre">--filter</span></tt>.</li>
|
210
|
-
<li>Fixed missing <tt class="docutils literal"><span class="pre">","</span></tt> for <tt class="docutils literal"><span class="pre">"DDL:set_token_filters"</span></tt> log.
|
211
|
-
[Reported by Naoya Murakami]</li>
|
212
|
-
</ul>
|
213
|
-
</div>
|
214
|
-
<div class="section" id="id3">
|
215
|
-
<h3>Thanks<a class="headerlink" href="#id3" title="Permalink to this headline">¶</a></h3>
|
216
|
-
<ul class="simple">
|
217
|
-
<li>Atsushi Shinoda</li>
|
218
|
-
<li>Masafumi Yokoyama</li>
|
219
|
-
<li>Naoya Murakami</li>
|
220
|
-
<li>Jun Kuriyama</li>
|
221
|
-
<li>Hiroshi Hatake</li>
|
222
|
-
</ul>
|
223
|
-
</div>
|
224
|
-
</div>
|
225
|
-
<div class="section" id="release-4-0-7-2014-10-29">
|
226
|
-
<span id="release-4-0-7"></span><h2>Release 4.0.7 - 2014/10/29<a class="headerlink" href="#release-4-0-7-2014-10-29" title="Permalink to this headline">¶</a></h2>
|
227
|
-
<div class="section" id="id4">
|
228
|
-
<h3>Improvements<a class="headerlink" href="#id4" title="Permalink to this headline">¶</a></h3>
|
229
|
-
<ul class="simple">
|
230
|
-
<li>[windows] Supported Groonga with mruby on Windows.</li>
|
231
|
-
<li>Added token filter plugin API.</li>
|
232
|
-
<li>Added <a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><em>TokenFilterStopWord</em></a> token filter plugin.
|
233
|
-
It treats records of <tt class="docutils literal"><span class="pre">is_stop_word</span></tt> column as actual stop words.</li>
|
234
|
-
<li>[doc] Added <a class="reference internal" href="client.html"><em>Client</em></a> section which introduces link to client libraries.
|
235
|
-
[GitHub#210] [Patch by Naoya Murakami]</li>
|
236
|
-
<li>[doc] Reconstructed documentation. <a class="reference internal" href="reference/suggest.html"><em>Suggest</em></a> and
|
237
|
-
<a class="reference internal" href="reference/operations/geolocation_search.html"><em>Geolocation Search</em></a> are grouped under <a class="reference internal" href="reference.html"><em>Reference manual</em></a>.
|
238
|
-
[GitHub#206] [Patch by Naoya Murakami]</li>
|
239
|
-
<li>[deb] Added stop word token filter plugin.
|
240
|
-
[GitHub#216] [Patch by Hiroshi Hatake]</li>
|
241
|
-
<li>[deb] Clarified licenses about used/bundled files in debian/copyright.</li>
|
242
|
-
<li>Dropped LZO compression support.</li>
|
243
|
-
<li>Added LZ4 compression support. [GitHub#223] [Patch by Naoya Murakami]</li>
|
244
|
-
<li>Added <a class="reference internal" href="reference/functions/in_values.html"><em>in_values</em></a>. We recommends to use it
|
245
|
-
instead of <tt class="docutils literal"><span class="pre">==</span></tt> and <tt class="docutils literal"><span class="pre">OR</span></tt> combinations ( <tt class="docutils literal"><span class="pre">((COLUMN</span> <span class="pre">==</span> <span class="pre">"a")</span> <span class="pre">OR</span>
|
246
|
-
<span class="pre">(COLUMN</span> <span class="pre">==</span> <span class="pre">"b")</span> <span class="pre">OR</span> <span class="pre">(COLUMN</span> <span class="pre">==</span> <span class="pre">"c"))</span></tt> ) because of better
|
247
|
-
performance.</li>
|
248
|
-
<li>[load] Supported to update existing record in <tt class="docutils literal"><span class="pre">TABLE_NO_KEY</span></tt> by
|
249
|
-
specifying a record by <tt class="docutils literal"><span class="pre">_id</span></tt>.</li>
|
250
|
-
<li>Added <a class="reference internal" href="reference/token_filters.html#token-filter-stem"><em>TokenFilterStem</em></a> token filter plugin. It provides
|
251
|
-
stemming feature. To use this token filter, you need to install
|
252
|
-
<a class="reference external" href="http://http://snowball.tartarus.org/">libstemmer</a> library.</li>
|
253
|
-
<li>[doc] Added <a class="reference internal" href="reference/token_filters.html"><em>Token filters</em></a> documentation.
|
254
|
-
[GitHub#227] [Patch by Naoya Murakami]</li>
|
93
|
+
<li>Akinori MUSHA</li>
|
94
|
+
<li>Bernard Spil</li>
|
255
95
|
</ul>
|
256
96
|
</div>
|
257
|
-
<div class="section" id="id5">
|
258
|
-
<h3>Fixes<a class="headerlink" href="#id5" title="Permalink to this headline">¶</a></h3>
|
259
|
-
<ul class="simple">
|
260
|
-
<li>[doc] Fixed link of the Ranguba project. [GitHub#212] [Patch by Naoya Murakami]</li>
|
261
|
-
<li>[httpd] Updated bundled nginx version to 1.7.6.
|
262
|
-
[GitHub#208] [Patch by Hiroshi Hatake]</li>
|
263
|
-
<li>[power8] Fixed build failure. See
|
264
|
-
<a class="reference external" href="http://lists.askmonty.org/pipermail/commits/2014-October/006752.html">http://lists.askmonty.org/pipermail/commits/2014-October/006752.html</a>
|
265
|
-
[Patch by Sergey Vojtovich]</li>
|
266
|
-
<li>Fixed a bug that URL encoding fails if <tt class="docutils literal"><span class="pre">char</span></tt> type is build as
|
267
|
-
<tt class="docutils literal"><span class="pre">unsigned</span> <span class="pre">char</span></tt> type. [GitHub#217]</li>
|
268
|
-
<li>Fixed a bug that a <tt class="docutils literal"><span class="pre">TABLE_DAT_KEY</span></tt> table returns empty results for
|
269
|
-
<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>. [GitHub#220]</li>
|
270
|
-
<li>Fixed a memory leak about inspecting vector column. It occurs when
|
271
|
-
something error reports about vector column.</li>
|
272
|
-
<li>Fixed memory leaks in zlib/LZO compressed column [GitHub#221] [Patch
|
273
|
-
by Naoya Murakami]</li>
|
274
|
-
<li>Fixed a bug that the value of <tt class="docutils literal"><span class="pre">Int8</span></tt> column which is less than 100 may
|
275
|
-
return true in <tt class="docutils literal"><span class="pre">--filter</span></tt>. By this issue, not intended records may
|
276
|
-
be included as search results.</li>
|
277
|
-
<li>Fixed to handle binary operation for vector column as an error.</li>
|
278
|
-
<li>Fixed a bug that <tt class="docutils literal"><span class="pre">!XXX</span></tt> may return inverted result on big endian
|
279
|
-
environment.</li>
|
280
|
-
<li>Fixed a memory leak on converting weight vector to text.</li>
|
281
|
-
<li>[dump] Fixed token filters and <tt class="docutils literal"><span class="pre">TABLE_NO_KEY</span></tt> related error in
|
282
|
-
<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>. [GitHub#215] [Patch by Naoya
|
283
|
-
Murakami]</li>
|
284
|
-
</ul>
|
285
|
-
</div>
|
286
|
-
<div class="section" id="id6">
|
287
|
-
<h3>Thanks<a class="headerlink" href="#id6" title="Permalink to this headline">¶</a></h3>
|
288
|
-
<ul class="simple">
|
289
|
-
<li>Naoya Murakami</li>
|
290
|
-
<li>Hiroshi Hatake</li>
|
291
|
-
<li>Sergey Vojtovich</li>
|
292
|
-
</ul>
|
293
|
-
</div>
|
294
|
-
</div>
|
295
|
-
<div class="section" id="release-4-0-6-2014-09-29">
|
296
|
-
<span id="release-4-0-6"></span><h2>Release 4.0.6 - 2014/09/29<a class="headerlink" href="#release-4-0-6-2014-09-29" title="Permalink to this headline">¶</a></h2>
|
297
|
-
<div class="section" id="id7">
|
298
|
-
<h3>Improvements<a class="headerlink" href="#id7" title="Permalink to this headline">¶</a></h3>
|
299
|
-
<ul class="simple">
|
300
|
-
<li>[deb] Updated to follow the rule about machine-readable
|
301
|
-
debian/copyright file. [Reported by Hideki Yamane]</li>
|
302
|
-
<li>[deb][rpm] Changed to use signal instead of HTTP to control nginx.
|
303
|
-
This way meets nginx style init script.</li>
|
304
|
-
<li>[doc] Updated English documentation about [ <a class="reference internal" href="reference/executables.html"><em>Executables</em></a> ].
|
305
|
-
[GitHub#196] [Patch by Masafumi Yokoyama]</li>
|
306
|
-
<li>[OS X] Added missing sphinx error message for Homebrew users.
|
307
|
-
[GitHub#198] [Patch by cosmo0920]</li>
|
308
|
-
<li>[mruby] Query optimizer by mruby became a practical for some range select query.
|
309
|
-
For example, mruby optimizer overhead is negligible enough for query such as
|
310
|
-
"between(X, 0, 'exclude', 100, 'include')" - "X > 0 && X <= 100".</li>
|
311
|
-
<li>[doc] Changed to recommend GitHub for reporting issues.
|
312
|
-
Until now, Redmine account must be approved by administrator, so you can not
|
313
|
-
report at feel free. [GitHub#202] [Patch by cosmo0920]</li>
|
314
|
-
<li>[doc] Translated C API document. [GitHub#203] [Patch by NOKUBI Takatsugu]</li>
|
315
|
-
<li>Supported to customize similarity threshold by <tt class="docutils literal"><span class="pre">'*S10"..."'</span></tt> syntax.</li>
|
316
|
-
<li>Added source column validation to
|
317
|
-
<a class="reference internal" href="reference/commands/column_create.html"><em>column_create</em></a>. If source column doesn't
|
318
|
-
exist, <a class="reference internal" href="reference/commands/column_create.html"><em>column_create</em></a> returns <tt class="docutils literal"><span class="pre">false</span></tt> and
|
319
|
-
column isn't created.</li>
|
320
|
-
<li>[debian] Dropped Debian jessie and sid support.</li>
|
321
|
-
</ul>
|
322
|
-
</div>
|
323
|
-
<div class="section" id="id8">
|
324
|
-
<h3>Fixes<a class="headerlink" href="#id8" title="Permalink to this headline">¶</a></h3>
|
325
|
-
<ul class="simple">
|
326
|
-
<li>Fixed a bug that similar search doesn't use IDF (Inverse Document Frequency)
|
327
|
-
for choosing target tokens.
|
328
|
-
In the previous versions, it used token ID instead of IDF.
|
329
|
-
[groonga-dev,02731] [groonga-dev,02754] [Reported by Satoshi Mitani, warp kawada]</li>
|
330
|
-
<li>Fixed a crash bug when deleting a record.
|
331
|
-
If the table of the record has <tt class="docutils literal"><span class="pre">_key</span></tt> and <tt class="docutils literal"><span class="pre">_key</span></tt> is
|
332
|
-
indexed from two or more index columns, deleting causes a crash.</li>
|
333
|
-
<li>Fixed compiler warning about unused variable 'e'. [GitHub#197] [Patch by cosmo0920]</li>
|
334
|
-
<li>[fedora][httpd] Fixed service start failure without log directory.</li>
|
335
|
-
<li>[mruby] Fixed build error with <tt class="docutils literal"><span class="pre">--disable-mruby</span></tt>.
|
336
|
-
[GitHub#200] [Patch by cosmo0920]</li>
|
337
|
-
<li>Fixed build warning about CMP0014 for MariaDB bundled Mroonga package.
|
338
|
-
[GitHub#201] [Patch by cosmo0920]</li>
|
339
|
-
<li>Fixed a bug that "*" is parsed as prefix search with empty string.
|
340
|
-
[groonga-dev,02796] [Reported by Kazuhiko]</li>
|
341
|
-
<li>[httpd] Updated bundled nginx version to the latest mainline (1.7.5).
|
342
|
-
This update contains vulnerability fix (CVE-2014-3616).</li>
|
343
|
-
</ul>
|
344
|
-
</div>
|
345
|
-
<div class="section" id="id9">
|
346
|
-
<h3>Thanks<a class="headerlink" href="#id9" title="Permalink to this headline">¶</a></h3>
|
347
|
-
<ul class="simple">
|
348
|
-
<li>Hideki Yamane</li>
|
349
|
-
<li>Masafumi Yokoyama</li>
|
350
|
-
<li>cosmo0920</li>
|
351
|
-
<li>NOKUBI Takatsugu</li>
|
352
|
-
<li>Satoshi Mitani</li>
|
353
|
-
<li>warp kawada</li>
|
354
|
-
<li>Kazuhiko</li>
|
355
|
-
</ul>
|
356
97
|
</div>
|
357
|
-
|
358
|
-
<
|
359
|
-
<
|
360
|
-
<
|
361
|
-
<
|
362
|
-
<
|
363
|
-
<li
|
364
|
-
<li
|
365
|
-
<li>[ <a class="reference internal" href="reference/functions/between.html"><em>between</em></a> ] Supported outside of key range.
|
366
|
-
[GitHub#183] [Patch by Naoya Murakami]</li>
|
367
|
-
<li>[mruby] Changed to use Onigmo as regexp implementation.</li>
|
368
|
-
<li>Added <a class="reference internal" href="reference/functions/highlight_full.html"><em>highlight_full</em></a> and
|
369
|
-
<a class="reference internal" href="reference/functions/highlight_html.html"><em>highlight_html</em></a> which tags
|
370
|
-
output text. [GitHub#185] [Patch by Naoya Murakami]</li>
|
371
|
-
<li>[doc] Updated outdated functions/commands reference
|
372
|
-
[GitHub#188] [GitHub#189] [Patch by Naoya Murakami]</li>
|
373
|
-
<li>[benchmark] Added average and median in benchmark result.</li>
|
374
|
-
<li>Exported <tt class="xref c c-func docutils literal"><span class="pre">grn_selector_func()</span></tt> and <tt class="xref c c-func docutils literal"><span class="pre">grn_proc_set_selector()</span></tt>
|
375
|
-
for plugin developer. [GitHub#190] [Patch by Naoya Murakami]</li>
|
376
|
-
<li>[ <a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a> ] Added "mode" option to control behavior.
|
377
|
-
You can use <tt class="docutils literal"><span class="pre">GET</span></tt> or <tt class="docutils literal"><span class="pre">ADD</span></tt> as a mode.
|
378
|
-
[GitHub#191] [GitHub#192] [Patch by Naoya Murakami]</li>
|
379
|
-
<li>Supported near search by '*N"A Z"' syntax.</li>
|
380
|
-
<li>Supported to customize behavior of tokenizer whether it skips token or
|
381
|
-
skips token with position. This feature is useful for developing tokenizer plugin.
|
382
|
-
[GitHub#193] [Patch by Naoya Murakami]</li>
|
383
|
-
<li>[doc] Updated description that a bug report is accepted in Japanese on GitHub issue tracker.
|
384
|
-
[Reported by 6elz] [groonga-dev,02651]</li>
|
385
|
-
<li>[doc] Updated tutorial in English. [GitHub#194] [Patch by cosmo0920]</li>
|
386
|
-
</ul>
|
387
|
-
</div>
|
388
|
-
<div class="section" id="id11">
|
389
|
-
<h3>Fixes<a class="headerlink" href="#id11" title="Permalink to this headline">¶</a></h3>
|
390
|
-
<ul class="simple">
|
391
|
-
<li>[php] Fixed memory leak when <tt class="xref c c-func docutils literal"><span class="pre">grn_ctx_recv()</span></tt> is used.
|
392
|
-
[GitHub#184] [Patch by @do-aki]</li>
|
393
|
-
<li>[php] Fixed to avoid double free when <a class="reference internal" href="reference/api/grn_ctx.html#c.grn_ctx_close" title="grn_ctx_close"><tt class="xref c c-func docutils literal"><span class="pre">grn_ctx_close()</span></tt></a> is called.
|
394
|
-
[GitHub#184] [Patch by @do-aki]</li>
|
395
|
-
<li>Fixed to support out-of-tree build again.</li>
|
396
|
-
<li>[httpd] Updated bundled nginx version to the latest mainline (1.7.4). This update contains vulnerability fix.</li>
|
397
|
-
<li>Fixed a bug that infinite loop occurs sometimes when updating indexes.
|
398
|
-
[groonga-dev,02673] [Reported by MINAGAWA Sho]</li>
|
399
|
-
<li>Fixed a bug that document frequency is invalid when
|
400
|
-
<a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>Offline index construction</em></a> is used.
|
401
|
-
[groonga-dev,02691] [Reported by Naoya Murakami]</li>
|
402
|
-
</ul>
|
403
|
-
</div>
|
404
|
-
<div class="section" id="id12">
|
405
|
-
<h3>Thanks<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h3>
|
406
|
-
<ul class="simple">
|
407
|
-
<li>@do-aki</li>
|
408
|
-
<li>Naoya Murakami</li>
|
409
|
-
<li>6elz</li>
|
410
|
-
<li>MINAGAWA Sho</li>
|
411
|
-
<li>cosmo0920</li>
|
412
|
-
</ul>
|
413
|
-
</div>
|
414
|
-
</div>
|
415
|
-
<div class="section" id="release-4-0-4-2014-07-29">
|
416
|
-
<span id="release-4-0-4"></span><h2>Release 4.0.4 - 2014/07/29<a class="headerlink" href="#release-4-0-4-2014-07-29" title="Permalink to this headline">¶</a></h2>
|
417
|
-
<div class="section" id="id13">
|
418
|
-
<h3>Improvements<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h3>
|
419
|
-
<ul class="simple">
|
420
|
-
<li>[httpd] Updated bundled nginx version to the latest mainline (1.7.3).</li>
|
421
|
-
<li>Supported weight in vector column.</li>
|
422
|
-
<li>[ <a class="reference internal" href="reference/executables/groonga-benchmark.html"><em>groonga-benchmark</em></a> ] Added missing description about HTTP.</li>
|
423
|
-
<li>[ <a class="reference internal" href="tutorial.html"><em>Tutorial</em></a> ] Updated English tutorial documentation.</li>
|
424
|
-
<li>[example] Supported Ruby 1.9 or later for edict2grn.rb.</li>
|
425
|
-
<li>[http][admin] Updated to use English as default language. [GitHub#182]</li>
|
426
|
-
</ul>
|
427
|
-
</div>
|
428
|
-
<div class="section" id="id14">
|
429
|
-
<h3>Fixes<a class="headerlink" href="#id14" title="Permalink to this headline">¶</a></h3>
|
430
|
-
<ul class="simple">
|
431
|
-
<li>Fixed to show right syntax error location in response.</li>
|
432
|
-
<li>[httpd] Fixed build error on Clang. [GitHub clear-code/rurema-search#11] [Reported by niku]</li>
|
433
|
-
</ul>
|
434
|
-
</div>
|
435
|
-
<div class="section" id="id15">
|
436
|
-
<h3>Thanks<a class="headerlink" href="#id15" title="Permalink to this headline">¶</a></h3>
|
437
|
-
<ul class="simple">
|
438
|
-
<li>niku</li>
|
439
|
-
</ul>
|
440
|
-
</div>
|
441
|
-
</div>
|
442
|
-
<div class="section" id="release-4-0-3-2014-06-29">
|
443
|
-
<span id="release-4-0-3"></span><h2>Release 4.0.3 - 2014/06/29<a class="headerlink" href="#release-4-0-3-2014-06-29" title="Permalink to this headline">¶</a></h2>
|
444
|
-
<div class="section" id="id16">
|
445
|
-
<h3>Improvements<a class="headerlink" href="#id16" title="Permalink to this headline">¶</a></h3>
|
446
|
-
<ul class="simple">
|
447
|
-
<li>[experimental][ <a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a> ]
|
448
|
-
Supported POST.</li>
|
449
|
-
<li>[windows] Bundled libwinpthread-1.dll. Because newer
|
450
|
-
libgcc_s_sjlj-1.dll depends on libwinpthread-1.dll.
|
451
|
-
[groonga-dev,02398] [Reported by Masafumi Yokoyama]</li>
|
452
|
-
<li>[ <a class="reference internal" href="reference/executables/groonga.html"><em>groonga command</em></a> ] Changed the default port number of
|
453
|
-
GQTP to 10043. Because server packages use 10043 by default.
|
454
|
-
[GitHub#172] [Patch by Naoya Murakami]</li>
|
455
|
-
<li>[ <a class="reference internal" href="reference/commands/normalize.html"><em>normalize</em></a> ] Added more validations for invalid
|
456
|
-
argument.
|
457
|
-
[groonga-dev,02409][GitHub:#174]
|
458
|
-
[Reported by GMO Media, Inc.][Patch by Naoya Murakami]</li>
|
459
|
-
<li>[ <a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a> ] Added more validations for invalid
|
460
|
-
argument.</li>
|
461
|
-
<li>[ <a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a> ] Supported <tt class="docutils literal"><span class="pre">Expect:</span>
|
462
|
-
<span class="pre">100-Continue</span></tt> request.</li>
|
463
|
-
<li>Exported <tt class="docutils literal"><span class="pre">grn_proc_get_type()</span></tt>.</li>
|
464
|
-
<li>[ <a class="reference internal" href="reference/executables/groonga-suggest-learner.html"><em>groonga-suggest-learner</em></a> ]
|
465
|
-
Added <tt class="docutils literal"><span class="pre">--log-path</span></tt> and <tt class="docutils literal"><span class="pre">--log-level</span></tt> options.</li>
|
466
|
-
<li>Deprecated <tt class="docutils literal"><span class="pre">GRN_CTX_USE_QL</span></tt>.</li>
|
467
|
-
<li>Deprecated <tt class="docutils literal"><span class="pre">GRN_CTX_BATCH_MODE</span></tt>.</li>
|
468
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_text_printf()</span></tt>.</li>
|
469
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_text_vprintf()</span></tt>.</li>
|
470
|
-
<li>Removed limitation of one query log size.</li>
|
471
|
-
<li>Added <a class="reference internal" href="reference/api/plugin.html#c.grn_plugin_expr_var_init" title="grn_plugin_expr_var_init"><tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_expr_var_init()</span></tt></a>.
|
472
|
-
[GitHub#175][Patch by Naoya Murakami]</li>
|
473
|
-
<li>Added <a class="reference internal" href="reference/api/plugin.html#c.grn_plugin_command_create" title="grn_plugin_command_create"><tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_command_create()</span></tt></a>.
|
474
|
-
[GitHub#175][Patch by Naoya Murakami]</li>
|
475
|
-
<li>[GitHub#176] Supported reference vector column with weight.</li>
|
476
|
-
<li>[plugin] Used public API instead of internal API.
|
477
|
-
[GitHub#177][GitHub#178] [Patch by Naoya Murakami]</li>
|
478
|
-
<li>[doc][plugin] Added plugin APIs.
|
479
|
-
[GitHub#179] [Patch by Naoya Murakami]</li>
|
480
|
-
<li>[windows] Re-supported Visual C++ 2010.
|
481
|
-
[groonga-dev,02454] [Reported by cosmo0920].</li>
|
482
|
-
</ul>
|
483
|
-
</div>
|
484
|
-
<div class="section" id="id17">
|
485
|
-
<h3>Fixes<a class="headerlink" href="#id17" title="Permalink to this headline">¶</a></h3>
|
486
|
-
<ul class="simple">
|
487
|
-
<li>[rpm][groonga-server-gqtp] Fixed a bug that HTTP protocol is used
|
488
|
-
not GQTP.
|
489
|
-
[GitHub#173] [Patch by Naoya Murakami]</li>
|
490
|
-
<li>[ <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> ] Fixed a crash bug when
|
491
|
-
<a class="reference internal" href="reference/commands/select.html#select-adjuster"><em>adjuster</em></a> has a syntax error.</li>
|
492
|
-
</ul>
|
493
|
-
</div>
|
494
|
-
<div class="section" id="id18">
|
495
|
-
<h3>Thanks<a class="headerlink" href="#id18" title="Permalink to this headline">¶</a></h3>
|
496
|
-
<ul class="simple">
|
497
|
-
<li>Masafumi Yokoyama</li>
|
498
|
-
<li>Naoya Murakami</li>
|
499
|
-
<li>GMO Media, Inc.</li>
|
500
|
-
<li>cosmo0920</li>
|
98
|
+
<div class="section" id="the-old-releases">
|
99
|
+
<h2>The old releases<a class="headerlink" href="#the-old-releases" title="Permalink to this headline">¶</a></h2>
|
100
|
+
<div class="toctree-wrapper compound">
|
101
|
+
<ul>
|
102
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html">Release 4.1.1 - 2015-01-29</a><ul>
|
103
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#improvements">Improvements</a></li>
|
104
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#fixes">Fixes</a></li>
|
105
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#thanks">Thanks</a></li>
|
501
106
|
</ul>
|
502
|
-
</
|
503
|
-
</
|
504
|
-
<
|
505
|
-
<span id="release-4-0-2"></span><h2>Release 4.0.2 - 2014/05/29<a class="headerlink" href="#release-4-0-2-2014-05-29" title="Permalink to this headline">¶</a></h2>
|
506
|
-
<div class="section" id="id19">
|
507
|
-
<h3>Improvements<a class="headerlink" href="#id19" title="Permalink to this headline">¶</a></h3>
|
508
|
-
<ul class="simple">
|
509
|
-
<li>[doc] Updated documentation about
|
510
|
-
<tt class="xref doc docutils literal"><span class="pre">/reference/executables/groonga-suggest-leaner</span></tt>.</li>
|
511
|
-
<li>[doc] Added documentation about how to update files.
|
512
|
-
[GitHub#160] [Patch by cosmo0920]</li>
|
513
|
-
<li>[doc] Updated to caplitalized "Groonga" terms in
|
514
|
-
documentation. [GitHub#162][GitHub#163][GitHub#164]
|
515
|
-
[Patch by cosmo0920]</li>
|
516
|
-
<li>Supported Ubuntu 14.04 (Trusty Tahr).</li>
|
517
|
-
<li>Dropped Ubuntu 12.10.</li>
|
518
|
-
<li>Migrated Ubuntu package distribution site to PPA on Launchpad.
|
519
|
-
See <a class="reference internal" href="install/ubuntu.html"><em>Ubuntu</em></a> for details.</li>
|
520
|
-
<li>Handled all requests that start with <tt class="docutils literal"><span class="pre">/d/</span></tt> as API requests. You
|
521
|
-
need to put files to directories that don't start with <tt class="docutils literal"><span class="pre">/d/</span></tt> to
|
522
|
-
serve by Groonga HTTP service.</li>
|
523
|
-
<li>[munin] Supported <a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>.
|
524
|
-
[Reported by Naoya Murakami]</li>
|
525
|
-
<li>Supported daylight saving time.
|
526
|
-
[#2546]</li>
|
527
|
-
<li>[doc] Added a description about <tt class="docutils literal"><span class="pre">--with-mecab</span></tt> in
|
528
|
-
<a class="reference internal" href="install/mac_os_x.html"><em>Mac OS X</em></a>.</li>
|
529
|
-
<li>[http] Changed HTTP return code to <tt class="docutils literal"><span class="pre">400</span> <span class="pre">Bad</span> <span class="pre">Request</span></tt> from <tt class="docutils literal"><span class="pre">500</span>
|
530
|
-
<span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></tt> for syntax error case.</li>
|
531
|
-
<li>[http][admin] Removed jQuery JSON plugin.
|
532
|
-
[GitHub#168] [Patch by Tetsuharu OHZEKI]</li>
|
533
|
-
<li>[http][admin] Enabled strict mode.
|
534
|
-
[GitHub#169] [Patch by Tetsuharu OHZEKI]</li>
|
535
|
-
<li>Exported getting variable APIs to <a class="reference internal" href="reference/api/plugin.html"><em>Plugin</em></a>.
|
536
|
-
[GitHub#170] [Patch by Naoya Murakami]<ul>
|
537
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var()</span></tt>.</li>
|
538
|
-
<li>Added <tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var_by_offset()</span></tt>.</li>
|
107
|
+
</li>
|
108
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-1-0-2015-01-09">Release 4.1.0 - 2015-01-09</a><ul>
|
109
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id1">Fixes</a></li>
|
539
110
|
</ul>
|
540
111
|
</li>
|
541
|
-
<li
|
542
|
-
|
543
|
-
<li
|
544
|
-
|
112
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-9-2014-12-29">Release 4.0.9 - 2014-12-29</a><ul>
|
113
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id2">Improvements</a></li>
|
114
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id3">Fixes</a></li>
|
115
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id4">Thanks</a></li>
|
545
116
|
</ul>
|
546
|
-
</
|
547
|
-
<
|
548
|
-
<
|
549
|
-
<
|
550
|
-
<li
|
551
|
-
you use all allocated resource for an index column.
|
552
|
-
[#2438] [Reported by GMO Media, Inc.]</li>
|
553
|
-
<li>[doc] Fixed a typo in <a class="reference internal" href="install/centos.html"><em>CentOS</em></a>.
|
554
|
-
[GitHub#166] [Patch by Naoya Murakami]</li>
|
555
|
-
<li>[doc] Fixed the wrong default value of <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> in
|
556
|
-
<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>.
|
557
|
-
[GitHub#167] [Patch by Naoya Murakami]</li>
|
558
|
-
<li>[doc] Added a missing <tt class="docutils literal"><span class="pre">\</span></tt> escape exception in
|
559
|
-
<a class="reference internal" href="reference/grn_expr/query_syntax.html"><em>Query syntax</em></a>.
|
560
|
-
[Reported by @Yappo]</li>
|
117
|
+
</li>
|
118
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-8-2014-11-29">Release 4.0.8 - 2014/11/29</a><ul>
|
119
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id5">Improvements</a></li>
|
120
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id6">Fixes</a></li>
|
121
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id7">Thanks</a></li>
|
561
122
|
</ul>
|
562
|
-
</
|
563
|
-
<
|
564
|
-
<
|
565
|
-
<
|
566
|
-
<li>
|
567
|
-
<li>Naoya Murakami</li>
|
568
|
-
<li>Tetsuharu OHZEKI</li>
|
569
|
-
<li>GMO Media, Inc.</li>
|
570
|
-
<li>@Yappo</li>
|
123
|
+
</li>
|
124
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-7-2014-10-29">Release 4.0.7 - 2014/10/29</a><ul>
|
125
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id8">Improvements</a></li>
|
126
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id9">Fixes</a></li>
|
127
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id10">Thanks</a></li>
|
571
128
|
</ul>
|
572
|
-
</
|
573
|
-
</
|
574
|
-
<
|
575
|
-
<
|
576
|
-
<
|
577
|
-
<h3>Improvements<a class="headerlink" href="#id22" title="Permalink to this headline">¶</a></h3>
|
578
|
-
<ul class="simple">
|
579
|
-
<li>[doc] Added a link in return value to detailed header description (<a class="reference internal" href="reference/command/output_format.html"><em>Output format</em></a>).</li>
|
580
|
-
<li>Supported to inspect vector and object value in JSON load.
|
581
|
-
It shows more details about data which is failed to load.</li>
|
582
|
-
<li>Added <tt class="docutils literal"><span class="pre">adjuster</span></tt> option to select command.
|
583
|
-
adjuster options accepts following syntax: INDEX_COLUMN @ STRING_LITERAL (* FACTOR).</li>
|
584
|
-
<li>Supported <a class="reference internal" href="reference/columns/vector.html#weight-vector-column"><em>Weight vector column</em></a>. You need to specify 'COLUMN_VECTOR|WITH_WEIGHT' flags
|
585
|
-
to create weight vector column.</li>
|
586
|
-
<li>Added missing MIN/MAX macros on SunOS. [GitHub#154] [Patch by Sebastian Wiedenroth]</li>
|
587
|
-
<li>Improved recycling garbage data. It suppress to increse database size.</li>
|
588
|
-
<li>[doc] Added documentation about GET parameters for <a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><em>groonga-suggest-httpd</em></a>.</li>
|
589
|
-
<li>[doc] Added documentation about <a class="reference internal" href="reference/column.html"><em>Column</em></a>.</li>
|
590
|
-
<li>[doc] Added documentation about <a class="reference internal" href="reference/columns/vector.html"><em>Vector column</em></a>.</li>
|
591
|
-
<li>[column_list] Supported to show weight vector column.</li>
|
592
|
-
<li>[column_create] Added error check for creating multi column index without WITH_SECTION.</li>
|
593
|
-
<li>[httpd] Enabled stub status module (NginxHttpStubStatusModule) for groonga-httpd. [Suggested by Masahiro Nagano]</li>
|
129
|
+
</li>
|
130
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-6-2014-09-29">Release 4.0.6 - 2014/09/29</a><ul>
|
131
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id11">Improvements</a></li>
|
132
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id12">Fixes</a></li>
|
133
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id13">Thanks</a></li>
|
594
134
|
</ul>
|
595
|
-
</
|
596
|
-
<
|
597
|
-
<
|
598
|
-
<
|
599
|
-
<li
|
600
|
-
For example, it occurs when you execute 'COLUMN / -1' operation to Int32 or Int64 column. [#2307]</li>
|
601
|
-
<li>Fixed a bug that '%' operations performs '/' operations. [#2307]</li>
|
602
|
-
<li>[doc] Fixed a wrong documentation about <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a>. [Reported by nise_nabe]</li>
|
603
|
-
<li>Fixed the issue that out of bound array element access may occurs. [GitHub#158] [Reported by dcb314]</li>
|
135
|
+
</li>
|
136
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-5-2014-08-29">Release 4.0.5 - 2014/08/29</a><ul>
|
137
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id14">Improvements</a></li>
|
138
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id15">Fixes</a></li>
|
139
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id16">Thanks</a></li>
|
604
140
|
</ul>
|
605
|
-
</
|
606
|
-
<
|
607
|
-
<
|
608
|
-
<
|
609
|
-
<li>
|
610
|
-
<li>Masahiro Nagano</li>
|
611
|
-
<li>nise_nabe</li>
|
612
|
-
<li>dcb314</li>
|
141
|
+
</li>
|
142
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-4-2014-07-29">Release 4.0.4 - 2014/07/29</a><ul>
|
143
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id17">Improvements</a></li>
|
144
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id18">Fixes</a></li>
|
145
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id19">Thanks</a></li>
|
613
146
|
</ul>
|
614
|
-
</
|
615
|
-
</
|
616
|
-
<
|
617
|
-
<
|
618
|
-
<
|
619
|
-
<li>Bump version to 4.0.0!</li>
|
147
|
+
</li>
|
148
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-3-2014-06-29">Release 4.0.3 - 2014/06/29</a><ul>
|
149
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id20">Improvements</a></li>
|
150
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id21">Fixes</a></li>
|
151
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id22">Thanks</a></li>
|
620
152
|
</ul>
|
621
|
-
|
622
|
-
<
|
623
|
-
<
|
624
|
-
<li
|
625
|
-
|
626
|
-
<li>[deb] Dropped Ubuntu 13.04 support.</li>
|
153
|
+
</li>
|
154
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-2-2014-05-29">Release 4.0.2 - 2014/05/29</a><ul>
|
155
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id23">Improvements</a></li>
|
156
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id24">Fixes</a></li>
|
157
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id25">Thanks</a></li>
|
627
158
|
</ul>
|
628
|
-
</
|
629
|
-
<
|
630
|
-
<
|
631
|
-
<
|
632
|
-
<li
|
633
|
-
Normally Groonga server users aren't affected this bug. This bug mainly affects Rroonga users.
|
634
|
-
Because this bug is occured by specifying column name including pseudo column name -
|
635
|
-
such as '_key' - Rroonga users may use the usage.</li>
|
636
|
-
<li>Fixed not to execute unexpected cascade delete which is introduced Groonga 3.0.8 release.
|
637
|
-
If source's range and index's domain are different, Groonga doesn't execute cascade delete.
|
638
|
-
[groonga-dev,02073] [Reported by yoku]</li>
|
639
|
-
<li>Fixed not to publish grn_snip structure. Use grn_obj instead of grn_snip.
|
640
|
-
If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li>
|
641
|
-
<li>[snippet_html] Fixed a crash bug when --query is empty.
|
642
|
-
[groonga-dev,02097] [Reported by Naoya Murakami]</li>
|
643
|
-
<li>[snippet_html] Fixed to suppress ALERT level message when contents of column is empty text.
|
644
|
-
[groonga-dev,02097] [Reported by Naoya Murakami]</li>
|
645
|
-
<li>[groonga-httpd] Fixed a bug "off" is used as path name in groonga_query_log_path.
|
646
|
-
[groonga-dev,02113] [Reported by Ryoji Yamamoto]</li>
|
159
|
+
</li>
|
160
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-1-2014-03-29">Release 4.0.1 - 2014/03/29</a><ul>
|
161
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id26">Improvements</a></li>
|
162
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id27">Fixes</a></li>
|
163
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id28">Thanks</a></li>
|
647
164
|
</ul>
|
648
|
-
</
|
649
|
-
<
|
650
|
-
<
|
651
|
-
<
|
652
|
-
<li>
|
653
|
-
<li>Naoya Murakami</li>
|
654
|
-
<li>Ryoji Yamamoto</li>
|
165
|
+
</li>
|
166
|
+
<li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-0-2014-02-09">Release 4.0.0 - 2014/02/09</a><ul>
|
167
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id29">Improvements</a></li>
|
168
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id30">Fixes</a></li>
|
169
|
+
<li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id31">Thanks</a></li>
|
655
170
|
</ul>
|
656
|
-
</
|
657
|
-
</div>
|
658
|
-
<div class="section" id="the-old-releases">
|
659
|
-
<h2>The old releases<a class="headerlink" href="#the-old-releases" title="Permalink to this headline">¶</a></h2>
|
660
|
-
<div class="toctree-wrapper compound">
|
661
|
-
<ul>
|
171
|
+
</li>
|
662
172
|
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html">Release 3.1.2 - 2014/01/29</a><ul>
|
663
173
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#improvements">Improvements</a></li>
|
664
174
|
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#fixes">Fixes</a></li>
|
@@ -920,82 +430,30 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li>
|
|
920
430
|
</div>
|
921
431
|
</div>
|
922
432
|
</div>
|
923
|
-
<div class="sphinxsidebar">
|
433
|
+
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
|
924
434
|
<div class="sphinxsidebarwrapper">
|
925
435
|
<h3><a href="index.html">Table Of Contents</a></h3>
|
926
436
|
<ul>
|
927
437
|
<li><a class="reference internal" href="#">News</a><ul>
|
928
|
-
<li><a class="reference internal" href="#release-
|
438
|
+
<li><a class="reference internal" href="#release-5-0-0-2015-02-09">Release 5.0.0 - 2015/02/09</a><ul>
|
929
439
|
<li><a class="reference internal" href="#improvements">Improvements</a></li>
|
930
440
|
<li><a class="reference internal" href="#fixes">Fixes</a></li>
|
931
441
|
<li><a class="reference internal" href="#thanks">Thanks</a></li>
|
932
442
|
</ul>
|
933
443
|
</li>
|
934
|
-
<li><a class="reference internal" href="#release-4-0-8-2014-11-29">Release 4.0.8 - 2014/11/29</a><ul>
|
935
|
-
<li><a class="reference internal" href="#id1">Improvements</a></li>
|
936
|
-
<li><a class="reference internal" href="#id2">Fixes</a></li>
|
937
|
-
<li><a class="reference internal" href="#id3">Thanks</a></li>
|
938
|
-
</ul>
|
939
|
-
</li>
|
940
|
-
<li><a class="reference internal" href="#release-4-0-7-2014-10-29">Release 4.0.7 - 2014/10/29</a><ul>
|
941
|
-
<li><a class="reference internal" href="#id4">Improvements</a></li>
|
942
|
-
<li><a class="reference internal" href="#id5">Fixes</a></li>
|
943
|
-
<li><a class="reference internal" href="#id6">Thanks</a></li>
|
944
|
-
</ul>
|
945
|
-
</li>
|
946
|
-
<li><a class="reference internal" href="#release-4-0-6-2014-09-29">Release 4.0.6 - 2014/09/29</a><ul>
|
947
|
-
<li><a class="reference internal" href="#id7">Improvements</a></li>
|
948
|
-
<li><a class="reference internal" href="#id8">Fixes</a></li>
|
949
|
-
<li><a class="reference internal" href="#id9">Thanks</a></li>
|
950
|
-
</ul>
|
951
|
-
</li>
|
952
|
-
<li><a class="reference internal" href="#release-4-0-5-2014-08-29">Release 4.0.5 - 2014/08/29</a><ul>
|
953
|
-
<li><a class="reference internal" href="#id10">Improvements</a></li>
|
954
|
-
<li><a class="reference internal" href="#id11">Fixes</a></li>
|
955
|
-
<li><a class="reference internal" href="#id12">Thanks</a></li>
|
956
|
-
</ul>
|
957
|
-
</li>
|
958
|
-
<li><a class="reference internal" href="#release-4-0-4-2014-07-29">Release 4.0.4 - 2014/07/29</a><ul>
|
959
|
-
<li><a class="reference internal" href="#id13">Improvements</a></li>
|
960
|
-
<li><a class="reference internal" href="#id14">Fixes</a></li>
|
961
|
-
<li><a class="reference internal" href="#id15">Thanks</a></li>
|
962
|
-
</ul>
|
963
|
-
</li>
|
964
|
-
<li><a class="reference internal" href="#release-4-0-3-2014-06-29">Release 4.0.3 - 2014/06/29</a><ul>
|
965
|
-
<li><a class="reference internal" href="#id16">Improvements</a></li>
|
966
|
-
<li><a class="reference internal" href="#id17">Fixes</a></li>
|
967
|
-
<li><a class="reference internal" href="#id18">Thanks</a></li>
|
968
|
-
</ul>
|
969
|
-
</li>
|
970
|
-
<li><a class="reference internal" href="#release-4-0-2-2014-05-29">Release 4.0.2 - 2014/05/29</a><ul>
|
971
|
-
<li><a class="reference internal" href="#id19">Improvements</a></li>
|
972
|
-
<li><a class="reference internal" href="#id20">Fixes</a></li>
|
973
|
-
<li><a class="reference internal" href="#id21">Thanks</a></li>
|
974
|
-
</ul>
|
975
|
-
</li>
|
976
|
-
<li><a class="reference internal" href="#release-4-0-1-2014-03-29">Release 4.0.1 - 2014/03/29</a><ul>
|
977
|
-
<li><a class="reference internal" href="#id22">Improvements</a></li>
|
978
|
-
<li><a class="reference internal" href="#id23">Fixes</a></li>
|
979
|
-
<li><a class="reference internal" href="#id24">Thanks</a></li>
|
980
|
-
</ul>
|
981
|
-
</li>
|
982
|
-
<li><a class="reference internal" href="#release-4-0-0-2014-02-09">Release 4.0.0 - 2014/02/09</a><ul>
|
983
|
-
<li><a class="reference internal" href="#id25">Improvements</a></li>
|
984
|
-
<li><a class="reference internal" href="#id26">Fixes</a></li>
|
985
|
-
<li><a class="reference internal" href="#id27">Thanks</a></li>
|
986
|
-
</ul>
|
987
|
-
</li>
|
988
444
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
|
989
445
|
</ul>
|
990
446
|
</li>
|
991
447
|
</ul>
|
992
448
|
|
993
|
-
<
|
994
|
-
|
995
|
-
<
|
996
|
-
|
997
|
-
|
998
|
-
|
449
|
+
<div role="note" aria-label="source link">
|
450
|
+
<h3>This Page</h3>
|
451
|
+
<ul class="this-page-menu">
|
452
|
+
<li><a href="_sources/news.txt"
|
453
|
+
rel="nofollow">Show Source</a></li>
|
454
|
+
</ul>
|
455
|
+
</div>
|
456
|
+
<div id="searchbox" style="display: none" role="search">
|
999
457
|
<h3>Quick search</h3>
|
1000
458
|
<form class="search" action="search.html" method="get">
|
1001
459
|
<input type="text" name="q" />
|
@@ -1012,17 +470,17 @@ If you use grn_snip_close, please replace grn_snip_close to grn_obj_close.</li>
|
|
1012
470
|
</div>
|
1013
471
|
<div class="clearer"></div>
|
1014
472
|
</div>
|
1015
|
-
<div class="related">
|
473
|
+
<div class="related" role="navigation" aria-label="related navigation">
|
1016
474
|
<h3>Navigation</h3>
|
1017
475
|
<ul>
|
1018
476
|
<li class="right" style="margin-right: 10px">
|
1019
477
|
<a href="genindex.html" title="General Index"
|
1020
478
|
>index</a></li>
|
1021
|
-
<li><a href="index.html">Groonga
|
479
|
+
<li><a href="index.html">Groonga v5.0.0 documentation</a> »</li>
|
1022
480
|
</ul>
|
1023
481
|
</div>
|
1024
|
-
<div class="footer">
|
1025
|
-
© Copyright 2009-
|
482
|
+
<div class="footer" role="contentinfo">
|
483
|
+
© Copyright 2009-2015, Brazil, Inc.
|
1026
484
|
</div>
|
1027
485
|
</body>
|
1028
486
|
</html>
|