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>バージョン0.xのお知らせ — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>バージョン0.xのお知らせ — 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,20 +45,20 @@ 
     | 
|
| 
       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="x">
         
     | 
| 
       64 
64 
     | 
    
         
             
            <h1>バージョン0.xのお知らせ<a class="headerlink" href="#x" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
         @@ -174,7 +174,7 @@ 
     | 
|
| 
       174 
174 
     | 
    
         
             
                      </div>
         
     | 
| 
       175 
175 
     | 
    
         
             
                    </div>
         
     | 
| 
       176 
176 
     | 
    
         
             
                  </div>
         
     | 
| 
       177 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 177 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       178 
178 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       179 
179 
     | 
    
         
             
              <h3><a href="../index.html">Table Of Contents</a></h3>
         
     | 
| 
       180 
180 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -194,12 +194,14 @@ 
     | 
|
| 
       194 
194 
     | 
    
         
             
            </li>
         
     | 
| 
       195 
195 
     | 
    
         
             
            </ul>
         
     | 
| 
       196 
196 
     | 
    
         | 
| 
       197 
     | 
    
         
            -
              < 
     | 
| 
       198 
     | 
    
         
            -
             
     | 
| 
       199 
     | 
    
         
            -
                < 
     | 
| 
       200 
     | 
    
         
            -
             
     | 
| 
       201 
     | 
    
         
            -
             
     | 
| 
       202 
     | 
    
         
            -
             
     | 
| 
      
 197 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 198 
     | 
    
         
            +
                <h3>This Page</h3>
         
     | 
| 
      
 199 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 200 
     | 
    
         
            +
                  <li><a href="../_sources/news/0.x.txt"
         
     | 
| 
      
 201 
     | 
    
         
            +
                        rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 202 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 203 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 204 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       203 
205 
     | 
    
         
             
              <h3>Quick search</h3>
         
     | 
| 
       204 
206 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       205 
207 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -216,17 +218,17 @@ 
     | 
|
| 
       216 
218 
     | 
    
         
             
                  </div>
         
     | 
| 
       217 
219 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       218 
220 
     | 
    
         
             
                </div>
         
     | 
| 
       219 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 221 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       220 
222 
     | 
    
         
             
                  <h3>Navigation</h3>
         
     | 
| 
       221 
223 
     | 
    
         
             
                  <ul>
         
     | 
| 
       222 
224 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       223 
225 
     | 
    
         
             
                      <a href="../genindex.html" title="General Index"
         
     | 
| 
       224 
226 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       225 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 227 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0 documentation</a> »</li> 
         
     | 
| 
       226 
228 
     | 
    
         
             
                  </ul>
         
     | 
| 
       227 
229 
     | 
    
         
             
                </div>
         
     | 
| 
       228 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       229 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 230 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 231 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       230 
232 
     | 
    
         
             
                </div>
         
     | 
| 
       231 
233 
     | 
    
         
             
              </body>
         
     | 
| 
       232 
234 
     | 
    
         
             
            </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>バージョン1.0.xのお知らせ — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>バージョン1.0.xのお知らせ — 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,20 +45,20 @@ 
     | 
|
| 
       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="x">
         
     | 
| 
       64 
64 
     | 
    
         
             
            <h1>バージョン1.0.xのお知らせ<a class="headerlink" href="#x" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
         @@ -184,7 +184,7 @@ groonga-check-memory-leak.rbを追加。(インストールはされない。 
     | 
|
| 
       184 
184 
     | 
    
         
             
            <li>すべてのモジュールで同じ名前の関数をエクスポートするようにした。#624</li>
         
     | 
| 
       185 
185 
     | 
    
         
             
            <li>不正な名前を指定したときに指定された名前も報告するようにした。</li>
         
     | 
| 
       186 
186 
     | 
    
         
             
            <li><a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> の--filter内での数値比較演算をサポート。 (@s3kiさんが報告)</li>
         
     | 
| 
       187 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 187 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">grntest</span></code> の一行あたりの最大バイト数の制限を撤廃。 #608, #690</li>
         
     | 
| 
       188 
188 
     | 
    
         
             
            <li>Int8/UInt8/Int16/UInt16の等値比較にC言語の比較演算子を使用。 #660</li>
         
     | 
| 
       189 
189 
     | 
    
         
             
            <li>HTTP経由で存在しないパスにアクセスした時に存在しないパスを報告するように
         
     | 
| 
       190 
190 
     | 
    
         
             
            した。</li>
         
     | 
| 
         @@ -373,7 +373,7 @@ Lucid, Marverickに変更。</li> 
     | 
|
| 
       373 
373 
     | 
    
         
             
                      </div>
         
     | 
| 
       374 
374 
     | 
    
         
             
                    </div>
         
     | 
| 
       375 
375 
     | 
    
         
             
                  </div>
         
     | 
| 
       376 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 376 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       377 
377 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       378 
378 
     | 
    
         
             
              <h3><a href="../index.html">Table Of Contents</a></h3>
         
     | 
| 
       379 
379 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -438,12 +438,14 @@ Lucid, Marverickに変更。</li> 
     | 
|
| 
       438 
438 
     | 
    
         
             
            </li>
         
     | 
| 
       439 
439 
     | 
    
         
             
            </ul>
         
     | 
| 
       440 
440 
     | 
    
         | 
| 
       441 
     | 
    
         
            -
              < 
     | 
| 
       442 
     | 
    
         
            -
             
     | 
| 
       443 
     | 
    
         
            -
                < 
     | 
| 
       444 
     | 
    
         
            -
             
     | 
| 
       445 
     | 
    
         
            -
             
     | 
| 
       446 
     | 
    
         
            -
             
     | 
| 
      
 441 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 442 
     | 
    
         
            +
                <h3>This Page</h3>
         
     | 
| 
      
 443 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 444 
     | 
    
         
            +
                  <li><a href="../_sources/news/1.0.x.txt"
         
     | 
| 
      
 445 
     | 
    
         
            +
                        rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 446 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 447 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 448 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       447 
449 
     | 
    
         
             
              <h3>Quick search</h3>
         
     | 
| 
       448 
450 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       449 
451 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -460,17 +462,17 @@ Lucid, Marverickに変更。</li> 
     | 
|
| 
       460 
462 
     | 
    
         
             
                  </div>
         
     | 
| 
       461 
463 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       462 
464 
     | 
    
         
             
                </div>
         
     | 
| 
       463 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 465 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       464 
466 
     | 
    
         
             
                  <h3>Navigation</h3>
         
     | 
| 
       465 
467 
     | 
    
         
             
                  <ul>
         
     | 
| 
       466 
468 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       467 
469 
     | 
    
         
             
                      <a href="../genindex.html" title="General Index"
         
     | 
| 
       468 
470 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       469 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 471 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0 documentation</a> »</li> 
         
     | 
| 
       470 
472 
     | 
    
         
             
                  </ul>
         
     | 
| 
       471 
473 
     | 
    
         
             
                </div>
         
     | 
| 
       472 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       473 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 474 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 475 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       474 
476 
     | 
    
         
             
                </div>
         
     | 
| 
       475 
477 
     | 
    
         
             
              </body>
         
     | 
| 
       476 
478 
     | 
    
         
             
            </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>バージョン1.1.xのお知らせ — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>バージョン1.1.xのお知らせ — 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,20 +45,20 @@ 
     | 
|
| 
       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="x">
         
     | 
| 
       64 
64 
     | 
    
         
             
            <h1>バージョン1.1.xのお知らせ<a class="headerlink" href="#x" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
         @@ -96,7 +96,7 @@ groonga_suggest_create_dataset変数を追加。</li> 
     | 
|
| 
       96 
96 
     | 
    
         
             
                      </div>
         
     | 
| 
       97 
97 
     | 
    
         
             
                    </div>
         
     | 
| 
       98 
98 
     | 
    
         
             
                  </div>
         
     | 
| 
       99 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 99 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       100 
100 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       101 
101 
     | 
    
         
             
              <h3><a href="../index.html">Table Of Contents</a></h3>
         
     | 
| 
       102 
102 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -111,12 +111,14 @@ groonga_suggest_create_dataset変数を追加。</li> 
     | 
|
| 
       111 
111 
     | 
    
         
             
            </li>
         
     | 
| 
       112 
112 
     | 
    
         
             
            </ul>
         
     | 
| 
       113 
113 
     | 
    
         | 
| 
       114 
     | 
    
         
            -
              < 
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
       116 
     | 
    
         
            -
                < 
     | 
| 
       117 
     | 
    
         
            -
             
     | 
| 
       118 
     | 
    
         
            -
             
     | 
| 
       119 
     | 
    
         
            -
             
     | 
| 
      
 114 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 115 
     | 
    
         
            +
                <h3>This Page</h3>
         
     | 
| 
      
 116 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 117 
     | 
    
         
            +
                  <li><a href="../_sources/news/1.1.x.txt"
         
     | 
| 
      
 118 
     | 
    
         
            +
                        rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 119 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 120 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 121 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       120 
122 
     | 
    
         
             
              <h3>Quick search</h3>
         
     | 
| 
       121 
123 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       122 
124 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -133,17 +135,17 @@ groonga_suggest_create_dataset変数を追加。</li> 
     | 
|
| 
       133 
135 
     | 
    
         
             
                  </div>
         
     | 
| 
       134 
136 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       135 
137 
     | 
    
         
             
                </div>
         
     | 
| 
       136 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 138 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       137 
139 
     | 
    
         
             
                  <h3>Navigation</h3>
         
     | 
| 
       138 
140 
     | 
    
         
             
                  <ul>
         
     | 
| 
       139 
141 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       140 
142 
     | 
    
         
             
                      <a href="../genindex.html" title="General Index"
         
     | 
| 
       141 
143 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       142 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 144 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0 documentation</a> »</li> 
         
     | 
| 
       143 
145 
     | 
    
         
             
                  </ul>
         
     | 
| 
       144 
146 
     | 
    
         
             
                </div>
         
     | 
| 
       145 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       146 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 147 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 148 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       147 
149 
     | 
    
         
             
                </div>
         
     | 
| 
       148 
150 
     | 
    
         
             
              </body>
         
     | 
| 
       149 
151 
     | 
    
         
             
            </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>Release 1.2.9 - 2011/12/29 — Groonga  
     | 
| 
      
 10 
     | 
    
         
            +
                <title>Release 1.2.9 - 2011/12/29 — 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,20 +45,20 @@ 
     | 
|
| 
       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="release-1-2-9-2011-12-29">
         
     | 
| 
       64 
64 
     | 
    
         
             
            <span id="release-1-2-9"></span><h1>Release 1.2.9 - 2011/12/29<a class="headerlink" href="#release-1-2-9-2011-12-29" title="Permalink to this headline">¶</a></h1>
         
     | 
| 
         @@ -71,17 +71,17 @@ 
     | 
|
| 
       71 
71 
     | 
    
         
             
            on unresolved host name environment. [Reported by @uzulla]</li>
         
     | 
| 
       72 
72 
     | 
    
         
             
            <li>Supported MAP_HUGETLB.</li>
         
     | 
| 
       73 
73 
     | 
    
         
             
            <li>[admin] Supported throughput chart.</li>
         
     | 
| 
       74 
     | 
    
         
            -
            <li>Stopped adding nul character in < 
     | 
| 
      
 74 
     | 
    
         
            +
            <li>Stopped adding nul character in <code class="docutils literal"><span class="pre">grn_itoh()</span></code>. [#1194]
         
     | 
| 
       75 
75 
     | 
    
         
             
            [Reported by SHIDARA Yoji]</li>
         
     | 
| 
       76 
     | 
    
         
            -
            <li>Added < 
     | 
| 
       77 
     | 
    
         
            -
            <li>Added < 
     | 
| 
      
 76 
     | 
    
         
            +
            <li>Added <code class="docutils literal"><span class="pre">grn_obj_get_values()</span></code>.</li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li>Added <code class="docutils literal"><span class="pre">grn_obj_delete_by_id()</span></code>.</li>
         
     | 
| 
       78 
78 
     | 
    
         
             
            <li>Supported string vector column for query expansion. [#1216]</li>
         
     | 
| 
       79 
     | 
    
         
            -
            <li>Added < 
     | 
| 
      
 79 
     | 
    
         
            +
            <li>Added <code class="docutils literal"><span class="pre">--filter</span></code> option to <a class="reference internal" href="../reference/commands/delete.html"><em>delete</em></a> to delete
         
     | 
| 
       80 
80 
     | 
    
         
             
            many record at once. [#1225]</li>
         
     | 
| 
       81 
81 
     | 
    
         
             
            <li>Supported approximate type customization for
         
     | 
| 
       82 
82 
     | 
    
         
             
            <a class="reference internal" href="../reference/functions/geo_in_circle.html"><em>geo_in_circle</em></a> and <a class="reference internal" href="../reference/functions/geo_distance.html"><em>geo_distance</em></a>. [#1226]</li>
         
     | 
| 
       83 
     | 
    
         
            -
            <li>Made < 
     | 
| 
       84 
     | 
    
         
            -
            <li>Changed to use < 
     | 
| 
      
 83 
     | 
    
         
            +
            <li>Made <code class="docutils literal"><span class="pre">geo_distance2()</span></code> and <code class="docutils literal"><span class="pre">geo_distance3()</span></code> are deprecated.</li>
         
     | 
| 
      
 84 
     | 
    
         
            +
            <li>Changed to use <code class="docutils literal"><span class="pre">null</span></code> instead of <code class="docutils literal"><span class="pre">""</span></code> for empty geo
         
     | 
| 
       85 
85 
     | 
    
         
             
            point value in JSON output.</li>
         
     | 
| 
       86 
86 
     | 
    
         
             
            <li>Almost supported MessagePack output. [#1215] [Worked by SHIDARA Yoji]</li>
         
     | 
| 
       87 
87 
     | 
    
         
             
            <li>Added missing newlines after drilldown result tags in XML output.</li>
         
     | 
| 
         @@ -94,9 +94,9 @@ point value in JSON output.</li> 
     | 
|
| 
       94 
94 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       95 
95 
     | 
    
         
             
            <li>[windows] Fixed inverted map type.</li>
         
     | 
| 
       96 
96 
     | 
    
         
             
            <li>Fixed -Wno- compiler flag detection. [Patch by Arnaud Fontaine]</li>
         
     | 
| 
       97 
     | 
    
         
            -
            <li>Fixed a problem that < 
     | 
| 
      
 97 
     | 
    
         
            +
            <li>Fixed a problem that <code class="docutils literal"><span class="pre">groonga</span> <span class="pre">--version</span></code> reports wrongly
         
     | 
| 
       98 
98 
     | 
    
         
             
            about MeCab. [#1209] [Patch by SHIDARA Yoji]</li>
         
     | 
| 
       99 
     | 
    
         
            -
            <li>Added missing lock into < 
     | 
| 
      
 99 
     | 
    
         
            +
            <li>Added missing lock into <code class="docutils literal"><span class="pre">grn_obj_remove()</span></code>.</li>
         
     | 
| 
       100 
100 
     | 
    
         
             
            <li>Fixed Content-Type on error. [#1220] [Patch by SHIDARA Yoji]</li>
         
     | 
| 
       101 
101 
     | 
    
         
             
            <li>Fixed a problem that deleting SIS (Semi Infinite String)
         
     | 
| 
       102 
102 
     | 
    
         
             
            may keep a garbage.</li>
         
     | 
| 
         @@ -130,13 +130,13 @@ databases created by groonga 1.2.8 or later.</p> 
     | 
|
| 
       130 
130 
     | 
    
         
             
            <h2>Improvements<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       131 
131 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       132 
132 
     | 
    
         
             
            <li>[grntest] Removed the upper limit to the number of bytes in one line.</li>
         
     | 
| 
       133 
     | 
    
         
            -
            <li>[grntest] Added < 
     | 
| 
      
 133 
     | 
    
         
            +
            <li>[grntest] Added <code class="docutils literal"><span class="pre">--pid-path</span></code> option.</li>
         
     | 
| 
       134 
134 
     | 
    
         
             
            <li>[deb] Enabled experimental zlib and lzo support.</li>
         
     | 
| 
       135 
135 
     | 
    
         
             
            <li>[rpm] Enabled experimental zlib and lzo support.</li>
         
     | 
| 
       136 
136 
     | 
    
         
             
            <li>Supports truncation. [#892]</li>
         
     | 
| 
       137 
137 
     | 
    
         
             
            <li>Enabled grn_dat that is a read lock free double array implementation.</li>
         
     | 
| 
       138 
138 
     | 
    
         
             
            <li>[pkg-config] Added groonga_version variable to groonga.pc.</li>
         
     | 
| 
       139 
     | 
    
         
            -
            <li>Re-supported < 
     | 
| 
      
 139 
     | 
    
         
            +
            <li>Re-supported <code class="docutils literal"><span class="pre">--disable-static</span></code>. [groonga-dev,00612]
         
     | 
| 
       140 
140 
     | 
    
         
             
            [Suggested by Kenichi Aramaki]</li>
         
     | 
| 
       141 
141 
     | 
    
         
             
            <li>[munin] Stopped to install Munin plugins by default.</li>
         
     | 
| 
       142 
142 
     | 
    
         
             
            <li>Stopped to install RedHat platform related files by default.</li>
         
     | 
| 
         @@ -281,7 +281,7 @@ argument in <a class="reference internal" href="../reference/commands/select.htm 
     | 
|
| 
       281 
281 
     | 
    
         
             
            <div class="section" id="id12">
         
     | 
| 
       282 
282 
     | 
    
         
             
            <h2>Improvements<a class="headerlink" href="#id12" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       283 
283 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       284 
     | 
    
         
            -
            <li>Re-supported < 
     | 
| 
      
 284 
     | 
    
         
            +
            <li>Re-supported <code class="docutils literal"><span class="pre">*BSD</span></code>. (Reported by OBATA Akio)</li>
         
     | 
| 
       285 
285 
     | 
    
         
             
            <li>Improved sed related portability. (Suggested by OBATA Akio)</li>
         
     | 
| 
       286 
286 
     | 
    
         
             
            <li>Re-supported Visual C++ 2008.</li>
         
     | 
| 
       287 
287 
     | 
    
         
             
            <li>Supported <a class="reference internal" href="../reference/commands/check.html"><em>check</em></a> for hash table.</li>
         
     | 
| 
         @@ -296,7 +296,7 @@ for convenience. #1030</li> 
     | 
|
| 
       296 
296 
     | 
    
         
             
            <h2>Fixes<a class="headerlink" href="#id13" title="Permalink to this headline">¶</a></h2>
         
     | 
| 
       297 
297 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       298 
298 
     | 
    
         
             
            <li>Fixed broken libedit support. (Reported by Daiki Ueno)</li>
         
     | 
| 
       299 
     | 
    
         
            -
            <li>Fixed source URL in < 
     | 
| 
      
 299 
     | 
    
         
            +
            <li>Fixed source URL in <code class="docutils literal"><span class="pre">*.spec</span></code> (Reported by Daiki Ueno)</li>
         
     | 
| 
       300 
300 
     | 
    
         
             
            <li>Fixed patricia trie cursor returns wrong records.</li>
         
     | 
| 
       301 
301 
     | 
    
         
             
            <li>Added missing database lock clear for grn_obj_clear_lock()
         
     | 
| 
       302 
302 
     | 
    
         
             
            for database.</li>
         
     | 
| 
         @@ -350,7 +350,7 @@ record deletion.</li> 
     | 
|
| 
       350 
350 
     | 
    
         
             
            <li>suggest: Added target object name into error messages.</li>
         
     | 
| 
       351 
351 
     | 
    
         
             
            <li>document: Started English support. (not completed yet.)</li>
         
     | 
| 
       352 
352 
     | 
    
         
             
            <li>groonga-suggest-httpd: Added --disable-max-fd-check option.</li>
         
     | 
| 
       353 
     | 
    
         
            -
            <li>groonga: Renamed <a class="reference internal" href="../reference/executables/groonga.html#cmdoption-a">< 
     | 
| 
      
 353 
     | 
    
         
            +
            <li>groonga: Renamed <a class="reference internal" href="../reference/executables/groonga.html#cmdoption-a"><code class="xref std std-option docutils literal"><span class="pre">--address</span></code></a> option to <a class="reference internal" href="../reference/executables/groonga.html#cmdoption--bind-address"><code class="xref std std-option docutils literal"><span class="pre">--bind-address</span></code></a>.</li>
         
     | 
| 
       354 
354 
     | 
    
         
             
            <li>groonga-suggest-httpd: Renamed --address option to --bind-address.</li>
         
     | 
| 
       355 
355 
     | 
    
         
             
            <li>Changed admin HTML install directory to
         
     | 
| 
       356 
356 
     | 
    
         
             
            $PREFIX/share/groonga/html/admin/ from
         
     | 
| 
         @@ -432,8 +432,8 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li> 
     | 
|
| 
       432 
432 
     | 
    
         
             
            <li>MeCabトークナイザーの読み込みに失敗したときにクラッシュする問題を修正。
         
     | 
| 
       433 
433 
     | 
    
         
             
            (@tomotaka_itoさんが報告)</li>
         
     | 
| 
       434 
434 
     | 
    
         
             
            <li>[非互換] 位置情報の小数表記からミリ秒への変換誤差が大きい問題を修正。</li>
         
     | 
| 
       435 
     | 
    
         
            -
            <li><a class="reference internal" href="../reference/functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> の < 
     | 
| 
       436 
     | 
    
         
            -
            < 
     | 
| 
      
 435 
     | 
    
         
            +
            <li><a class="reference internal" href="../reference/functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> の <code class="docutils literal"><span class="pre">top_left</span></code> と
         
     | 
| 
      
 436 
     | 
    
         
            +
            <code class="docutils literal"><span class="pre">bottom_right</span></code> に同じ位置を指定するとクラッシュする問題を修正。</li>
         
     | 
| 
       437 
437 
     | 
    
         
             
            <li>メモリリークを修正。</li>
         
     | 
| 
       438 
438 
     | 
    
         
             
            <li>小数形式のTimeリテラルをロードするとミリ秒情報が落ちる問題を修正。 #880</li>
         
     | 
| 
       439 
439 
     | 
    
         
             
            <li><a class="reference internal" href="../reference/commands/column_list.html"><em>column_list</em></a> のドキュメントを修正。 #758</li>
         
     | 
| 
         @@ -461,7 +461,7 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li> 
     | 
|
| 
       461 
461 
     | 
    
         
             
                      </div>
         
     | 
| 
       462 
462 
     | 
    
         
             
                    </div>
         
     | 
| 
       463 
463 
     | 
    
         
             
                  </div>
         
     | 
| 
       464 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 464 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       465 
465 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       466 
466 
     | 
    
         
             
              <h3><a href="../index.html">Table Of Contents</a></h3>
         
     | 
| 
       467 
467 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -526,12 +526,14 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li> 
     | 
|
| 
       526 
526 
     | 
    
         
             
            </li>
         
     | 
| 
       527 
527 
     | 
    
         
             
            </ul>
         
     | 
| 
       528 
528 
     | 
    
         | 
| 
       529 
     | 
    
         
            -
              < 
     | 
| 
       530 
     | 
    
         
            -
             
     | 
| 
       531 
     | 
    
         
            -
                < 
     | 
| 
       532 
     | 
    
         
            -
             
     | 
| 
       533 
     | 
    
         
            -
             
     | 
| 
       534 
     | 
    
         
            -
             
     | 
| 
      
 529 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 530 
     | 
    
         
            +
                <h3>This Page</h3>
         
     | 
| 
      
 531 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 532 
     | 
    
         
            +
                  <li><a href="../_sources/news/1.2.x.txt"
         
     | 
| 
      
 533 
     | 
    
         
            +
                        rel="nofollow">Show Source</a></li>
         
     | 
| 
      
 534 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 535 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 536 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       535 
537 
     | 
    
         
             
              <h3>Quick search</h3>
         
     | 
| 
       536 
538 
     | 
    
         
             
                <form class="search" action="../search.html" method="get">
         
     | 
| 
       537 
539 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -548,17 +550,17 @@ groongaディレクトリを作成しようとする問題を修正。 #833</li> 
     | 
|
| 
       548 
550 
     | 
    
         
             
                  </div>
         
     | 
| 
       549 
551 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       550 
552 
     | 
    
         
             
                </div>
         
     | 
| 
       551 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 553 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       552 
554 
     | 
    
         
             
                  <h3>Navigation</h3>
         
     | 
| 
       553 
555 
     | 
    
         
             
                  <ul>
         
     | 
| 
       554 
556 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       555 
557 
     | 
    
         
             
                      <a href="../genindex.html" title="General Index"
         
     | 
| 
       556 
558 
     | 
    
         
             
                         >index</a></li>
         
     | 
| 
       557 
     | 
    
         
            -
                    <li><a href="../index.html">Groonga  
     | 
| 
      
 559 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v5.0.0 documentation</a> »</li> 
         
     | 
| 
       558 
560 
     | 
    
         
             
                  </ul>
         
     | 
| 
       559 
561 
     | 
    
         
             
                </div>
         
     | 
| 
       560 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
       561 
     | 
    
         
            -
                    © Copyright 2009- 
     | 
| 
      
 562 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
      
 563 
     | 
    
         
            +
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       562 
564 
     | 
    
         
             
                </div>
         
     | 
| 
       563 
565 
     | 
    
         
             
              </body>
         
     | 
| 
       564 
566 
     | 
    
         
             
            </html>
         
     |