rroonga 5.0.4-x86-mingw32 → 5.0.5-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
 - data/README.md +2 -2
 - data/example/measure-data-column-disk-usage.rb +124 -0
 - data/example/measure-index-column-disk-usage.rb +81 -0
 - data/example/measure-table-disk-usage.rb +100 -0
 - data/ext/groonga/rb-grn-database.c +31 -0
 - data/ext/groonga/rb-grn-double-array-trie.c +1 -8
 - data/ext/groonga/rb-grn-logger.c +45 -0
 - data/ext/groonga/rb-grn-object.c +29 -1
 - data/ext/groonga/rb-grn-patricia-trie.c +1 -8
 - data/ext/groonga/rb-grn-table-cursor.c +8 -3
 - data/ext/groonga/rb-grn-table.c +10 -5
 - data/ext/groonga/rb-grn-thread.c +160 -0
 - data/ext/groonga/rb-grn-windows-event-logger.c +79 -0
 - data/ext/groonga/rb-grn.h +3 -1
 - data/ext/groonga/rb-groonga.c +3 -1
 - data/lib/1.9/groonga.so +0 -0
 - data/lib/2.0/groonga.so +0 -0
 - data/lib/2.1/groonga.so +0 -0
 - data/lib/2.2/groonga.so +0 -0
 - data/lib/groonga/dumper.rb +6 -1
 - data/rroonga-build.rb +4 -4
 - data/test/groonga-test-utils.rb +5 -1
 - data/test/test-database.rb +11 -0
 - data/test/test-logger.rb +6 -0
 - data/test/test-operator.rb +6 -6
 - data/test/test-procedure.rb +15 -0
 - data/test/test-table-dumper.rb +170 -1
 - data/test/test-thread.rb +42 -0
 - data/test/test-windows-event-logger.rb +28 -0
 - data/vendor/local/bin/grndb.exe +0 -0
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-4.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libonig-5.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/libwinpthread-1.dll +0 -0
 - data/vendor/local/bin/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/etc/groonga/windows_event_log/provider.man +38 -0
 - data/vendor/local/include/groonga/groonga.h +2 -0
 - data/vendor/local/include/groonga/groonga/command.h +2 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +5 -0
 - data/vendor/local/include/groonga/groonga/obj.h +1 -0
 - data/vendor/local/include/groonga/groonga/portability.h +16 -0
 - data/vendor/local/include/groonga/groonga/thread.h +42 -0
 - data/vendor/local/include/groonga/groonga/windows_event_logger.h +33 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/functions/vector.la +2 -2
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/eval.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/eval.la +2 -2
 - data/vendor/local/lib/groonga/plugins/ruby/load.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/ruby/load.la +2 -2
 - data/vendor/local/lib/groonga/plugins/sharding.rb +5 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +43 -6
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +32 -25
 - data/vendor/local/lib/groonga/plugins/sharding/logical_parameters.rb +44 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +217 -49
 - data/vendor/local/lib/groonga/plugins/sharding/logical_select.rb +507 -45
 - data/vendor/local/lib/groonga/plugins/sharding/logical_shard_list.rb +28 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_table_remove.rb +11 -6
 - data/vendor/local/lib/groonga/plugins/sharding/parameters.rb +10 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/suggest/suggest.la +2 -2
 - data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/table/table.la +2 -2
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/token_filters/stop_word.la +2 -2
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/tokenizers/mecab.la +2 -2
 - data/vendor/local/lib/groonga/scripts/ruby/command.rb +31 -1
 - data/vendor/local/lib/groonga/scripts/ruby/context.rb +18 -2
 - data/vendor/local/lib/groonga/scripts/ruby/database.rb +12 -4
 - data/vendor/local/lib/groonga/scripts/ruby/expression_size_estimator.rb +31 -28
 - data/vendor/local/lib/groonga/scripts/ruby/initialize/post.rb +1 -0
 - data/vendor/local/lib/groonga/scripts/ruby/logger/level.rb +4 -2
 - data/vendor/local/lib/groonga/scripts/ruby/query_logger.rb +9 -0
 - data/vendor/local/lib/groonga/scripts/ruby/query_logger/flag.rb +39 -0
 - data/vendor/local/lib/groonga/scripts/ruby/record.rb +12 -0
 - data/vendor/local/lib/groonga/scripts/ruby/table.rb +35 -1
 - data/vendor/local/lib/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +2 -2
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +2 -2
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +2 -2
 - data/vendor/local/lib/libonig.a +0 -0
 - data/vendor/local/lib/libonig.dll.a +0 -0
 - data/vendor/local/lib/libonig.la +2 -2
 - data/vendor/local/lib/libz.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/contribution/development.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build.txt +19 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/release.txt +16 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/repository.txt +7 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/development/test.txt +4 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +3 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +319 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference.txt +1 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_ctx.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_db.txt +23 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/grn_thread.txt +122 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_copy.txt +381 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_rename.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/database_unmap.txt +85 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/io_flush.txt +218 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/lock_clear.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_count.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_parameters.txt +138 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_range_filter.txt +97 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_select.txt +745 -23
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_shard_list.txt +107 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/logical_table_remove.txt +3 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalize.txt +2 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +1 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/object_exist.txt +90 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_register.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/plugin_unregister.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/select.txt +240 -56
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_create.txt +33 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_rename.txt +90 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/thread_limit.txt +110 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/truncate.txt +1 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-httpd.txt +3 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/query.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/indexing.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/query_expanders/tsv.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/regular_expression.txt +3 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scoring_note.txt +2 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/sharding.txt +108 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tokenizers.txt +0 -21
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/tuning.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/search.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/introduction.txt +24 -18
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +19 -19
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/micro_blog.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/query_expansion.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/en/html/_static/doctools.js +27 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/jquery.js +4 -9404
 - data/vendor/local/share/doc/groonga/en/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/underscore.js +31 -1415
 - data/vendor/local/share/doc/groonga/en/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/client.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/community.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +78 -70
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +30 -27
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build.html +146 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_autotools.html +237 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/unix_cmake.html +227 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/build/windows_cmake.html +231 -0
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +80 -78
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +135 -122
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +38 -34
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +58 -54
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/development.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +48 -20
 - data/vendor/local/share/doc/groonga/en/html/index.html +123 -105
 - data/vendor/local/share/doc/groonga/en/html/install.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +32 -30
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +31 -29
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +92 -90
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +29 -28
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news.html +509 -142
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +110 -108
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +73 -71
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +111 -109
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +111 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +55 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +51 -49
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +63 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +84 -82
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +89 -87
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +88 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +83 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +44 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +93 -91
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +79 -77
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +69 -67
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_thread.html +296 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +38 -36
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +51 -49
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +60 -58
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +72 -70
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +70 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +100 -98
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +44 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_copy.html +796 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +96 -94
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +67 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/database_unmap.html +236 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +63 -61
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/io_flush.html +281 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +66 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +53 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +78 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_parameters.html +283 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +160 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_select.html +2071 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_shard_list.html +287 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_table_remove.html +71 -68
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +86 -84
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +52 -50
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/object_exist.html +227 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +57 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +53 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +75 -74
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +59 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +898 -647
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +50 -48
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +87 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +175 -152
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_rename.html +327 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +77 -75
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/thread_limit.html +241 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +108 -106
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +56 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +56 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +28 -26
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +83 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +48 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +40 -38
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +84 -82
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +47 -45
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +85 -83
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +26 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +66 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +54 -52
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +34 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +24 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +45 -43
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +33 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +29 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +244 -242
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +327 -325
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +35 -29
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +49 -47
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +36 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +62 -60
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +107 -103
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +50 -40
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +27 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +41 -31
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/reference/sharding.html +241 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +30 -28
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +56 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +41 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +341 -289
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +68 -66
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +43 -41
 - data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +37 -35
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +39 -37
 - data/vendor/local/share/doc/groonga/en/html/spec.html +23 -21
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +129 -127
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +19 -17
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +20 -18
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +29 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +35 -33
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +46 -39
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +65 -63
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +55 -53
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +22 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +25 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build.txt +19 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_autotools.txt +101 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/unix_cmake.txt +94 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/build/windows_cmake.txt +93 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +16 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/repository.txt +7 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/test.txt +4 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +3 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +319 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference.txt +1 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_ctx.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_db.txt +23 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/grn_thread.txt +122 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/cache_limit.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_copy.txt +381 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_list.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_rename.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/database_unmap.txt +85 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/io_flush.txt +218 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/lock_clear.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_count.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_parameters.txt +138 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_range_filter.txt +97 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_select.txt +745 -23
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_shard_list.txt +107 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/logical_table_remove.txt +3 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalize.txt +2 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +1 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/object_exist.txt +90 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_register.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/plugin_unregister.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_eval.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/ruby_load.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/select.txt +240 -56
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_create.txt +33 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_rename.txt +90 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/thread_limit.txt +110 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/truncate.txt +1 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-httpd.txt +3 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/query.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/query_syntax.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/grn_expr/script_syntax.txt +34 -14
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/indexing.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/query_expanders/tsv.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/regular_expression.txt +3 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scoring_note.txt +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/sharding.txt +108 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tokenizers.txt +0 -21
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/tuning.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/search.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/different_results_with_the_same_keyword.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/introduction.txt +24 -18
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +19 -19
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/micro_blog.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/query_expansion.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +68 -6
 - data/vendor/local/share/doc/groonga/ja/html/_static/doctools.js +27 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/down-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/down.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/file.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery-1.11.1.js +10308 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jquery.js +4 -9404
 - data/vendor/local/share/doc/groonga/ja/html/_static/minus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/plus.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/searchtools.js +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore-1.3.1.js +999 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/underscore.js +31 -1415
 - data/vendor/local/share/doc/groonga/ja/html/_static/up-pressed.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/up.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/websupport.js +15 -15
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/client.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/community.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +77 -69
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +30 -27
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build.html +144 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_autotools.html +226 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/unix_cmake.html +215 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/build/windows_cmake.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +53 -51
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +79 -77
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +134 -121
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +57 -53
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/development.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +48 -20
 - data/vendor/local/share/doc/groonga/ja/html/index.html +122 -104
 - data/vendor/local/share/doc/groonga/ja/html/install.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +30 -28
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +83 -81
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +30 -29
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news.html +460 -126
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +102 -100
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +66 -64
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +91 -89
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +111 -94
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +55 -52
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +51 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +58 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +85 -83
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +88 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +78 -76
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +44 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +93 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +79 -77
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +69 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_thread.html +286 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +60 -58
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +61 -59
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +70 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +49 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +99 -97
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +41 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +49 -47
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_copy.html +781 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +88 -86
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +66 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/database_unmap.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +58 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +63 -61
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/io_flush.html +266 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +53 -52
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +78 -75
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_parameters.html +276 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +158 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_select.html +2008 -80
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_shard_list.html +285 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_table_remove.html +71 -68
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +82 -79
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/object_exist.html +220 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +53 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +51 -49
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +68 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +59 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +680 -448
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +146 -126
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +55 -53
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_rename.html +322 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +73 -70
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/thread_limit.html +229 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +94 -91
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +56 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +56 -55
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +39 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +28 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +73 -72
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +29 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +40 -38
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +84 -82
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +69 -67
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +36 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +56 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +45 -43
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +48 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +24 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +35 -33
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +37 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +33 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +26 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +143 -141
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +236 -234
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +34 -28
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +43 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +39 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +32 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +42 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +91 -88
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +50 -40
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +41 -31
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/reference/sharding.html +223 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +27 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +46 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +303 -243
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +62 -60
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +42 -40
 - data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +31 -29
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +38 -36
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +23 -21
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +128 -126
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +19 -17
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +20 -18
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +29 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +34 -32
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +46 -39
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +21 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +66 -64
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +52 -50
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +22 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +25 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +35 -33
 - data/vendor/local/share/license/groonga/README.md +6 -0
 - data/vendor/local/share/license/mruby/AUTHORS +1 -0
 - data/vendor/local/share/license/mruby/MITL +1 -1
 - data/vendor/local/share/license/mruby/README.md +6 -5
 - data/vendor/local/share/license/msgpack/README +219 -0
 - data/vendor/local/share/man/ja/man1/groonga.1 +23512 -15126
 - data/vendor/local/share/man/man1/groonga.1 +26542 -17745
 - metadata +77 -3
 - data/vendor/local/share/license/msgpack/AUTHORS +0 -0
 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>9. 制限事項 — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>9. 制限事項 — Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    './',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.6-226-gd7da7e7',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,11 +26,11 @@ 
     | 
|
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <script type="text/javascript" src="_static/translations.js"></script>
         
     | 
| 
       28 
28 
     | 
    
         
             
                <link rel="shortcut icon" href="_static/favicon.ico"/>
         
     | 
| 
       29 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="index.html" />
         
     | 
| 
       30 
30 
     | 
    
         
             
                <link rel="next" title="10. トラブルシューティング" href="troubleshooting.html" />
         
     | 
| 
       31 
31 
     | 
    
         
             
                <link rel="prev" title="8.2. 検索" href="spec/search.html" /> 
         
     | 
| 
       32 
32 
     | 
    
         
             
              </head>
         
     | 
| 
       33 
     | 
    
         
            -
              <body>
         
     | 
| 
      
 33 
     | 
    
         
            +
              <body role="document">
         
     | 
| 
       34 
34 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       35 
35 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
       36 
36 
     | 
    
         
             
                <a id="top-link" href="index.html">
         
     | 
| 
         @@ -48,7 +48,7 @@ 
     | 
|
| 
       48 
48 
     | 
    
         
             
            </div>
         
     | 
| 
       49 
49 
     | 
    
         | 
| 
       50 
50 
     | 
    
         | 
| 
       51 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 51 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       52 
52 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       53 
53 
     | 
    
         
             
                  <ul>
         
     | 
| 
       54 
54 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -60,14 +60,14 @@ 
     | 
|
| 
       60 
60 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       61 
61 
     | 
    
         
             
                      <a href="spec/search.html" title="8.2. 検索"
         
     | 
| 
       62 
62 
     | 
    
         
             
                         accesskey="P">前へ</a> |</li>
         
     | 
| 
       63 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v5.0. 
     | 
| 
      
 63 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> »</li> 
         
     | 
| 
       64 
64 
     | 
    
         
             
                  </ul>
         
     | 
| 
       65 
65 
     | 
    
         
             
                </div>  
         
     | 
| 
       66 
66 
     | 
    
         | 
| 
       67 
67 
     | 
    
         
             
                <div class="document">
         
     | 
| 
       68 
68 
     | 
    
         
             
                  <div class="documentwrapper">
         
     | 
| 
       69 
69 
     | 
    
         
             
                    <div class="bodywrapper">
         
     | 
| 
       70 
     | 
    
         
            -
                      <div class="body">
         
     | 
| 
      
 70 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
       71 
71 
     | 
    
         | 
| 
       72 
72 
     | 
    
         
             
              <div class="section" id="limitations">
         
     | 
| 
       73 
73 
     | 
    
         
             
            <h1>9. 制限事項<a class="headerlink" href="#limitations" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
         @@ -110,7 +110,7 @@ 
     | 
|
| 
       110 
110 
     | 
    
         
             
                      </div>
         
     | 
| 
       111 
111 
     | 
    
         
             
                    </div>
         
     | 
| 
       112 
112 
     | 
    
         
             
                  </div>
         
     | 
| 
       113 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 113 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       114 
114 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       115 
115 
     | 
    
         
             
              <h3><a href="index.html">目次</a></h3>
         
     | 
| 
       116 
116 
     | 
    
         
             
              <ul>
         
     | 
| 
         @@ -128,12 +128,14 @@ 
     | 
|
| 
       128 
128 
     | 
    
         
             
              <h4>次のトピックへ</h4>
         
     | 
| 
       129 
129 
     | 
    
         
             
              <p class="topless"><a href="troubleshooting.html"
         
     | 
| 
       130 
130 
     | 
    
         
             
                                    title="次の章へ">10. トラブルシューティング</a></p>
         
     | 
| 
       131 
     | 
    
         
            -
              < 
     | 
| 
       132 
     | 
    
         
            -
             
     | 
| 
       133 
     | 
    
         
            -
                < 
     | 
| 
       134 
     | 
    
         
            -
             
     | 
| 
       135 
     | 
    
         
            -
             
     | 
| 
       136 
     | 
    
         
            -
             
     | 
| 
      
 131 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 132 
     | 
    
         
            +
                <h3>このページ</h3>
         
     | 
| 
      
 133 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 134 
     | 
    
         
            +
                  <li><a href="_sources/limitations.txt"
         
     | 
| 
      
 135 
     | 
    
         
            +
                        rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 136 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 137 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 138 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       137 
139 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       138 
140 
     | 
    
         
             
                <form class="search" action="search.html" method="get">
         
     | 
| 
       139 
141 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -150,7 +152,7 @@ 
     | 
|
| 
       150 
152 
     | 
    
         
             
                  </div>
         
     | 
| 
       151 
153 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       152 
154 
     | 
    
         
             
                </div>
         
     | 
| 
       153 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 155 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       154 
156 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       155 
157 
     | 
    
         
             
                  <ul>
         
     | 
| 
       156 
158 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
         @@ -162,10 +164,10 @@ 
     | 
|
| 
       162 
164 
     | 
    
         
             
                    <li class="right" >
         
     | 
| 
       163 
165 
     | 
    
         
             
                      <a href="spec/search.html" title="8.2. 検索"
         
     | 
| 
       164 
166 
     | 
    
         
             
                         >前へ</a> |</li>
         
     | 
| 
       165 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v5.0. 
     | 
| 
      
 167 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> »</li> 
         
     | 
| 
       166 
168 
     | 
    
         
             
                  </ul>
         
     | 
| 
       167 
169 
     | 
    
         
             
                </div>
         
     | 
| 
       168 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
      
 170 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
       169 
171 
     | 
    
         
             
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       170 
172 
     | 
    
         
             
                </div>
         
     | 
| 
       171 
173 
     | 
    
         
             
              </body>
         
     | 
| 
         @@ -7,7 +7,7 @@ 
     | 
|
| 
       7 
7 
     | 
    
         
             
              <head>
         
     | 
| 
       8 
8 
     | 
    
         
             
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
                <title>お知らせ — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>お知らせ — Groonga v5.0.6-226-gd7da7e7ドキュメント</title>
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
                <link rel="stylesheet" href="_static/groonga.css" type="text/css" />
         
     | 
| 
       13 
13 
     | 
    
         
             
                <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
         
     | 
| 
         @@ -15,7 +15,7 @@ 
     | 
|
| 
       15 
15 
     | 
    
         
             
                <script type="text/javascript">
         
     | 
| 
       16 
16 
     | 
    
         
             
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
       17 
17 
     | 
    
         
             
                    URL_ROOT:    './',
         
     | 
| 
       18 
     | 
    
         
            -
                    VERSION:     '5.0. 
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '5.0.6-226-gd7da7e7',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,9 +26,9 @@ 
     | 
|
| 
       26 
26 
     | 
    
         
             
                <script type="text/javascript" src="_static/doctools.js"></script>
         
     | 
| 
       27 
27 
     | 
    
         
             
                <script type="text/javascript" src="_static/translations.js"></script>
         
     | 
| 
       28 
28 
     | 
    
         
             
                <link rel="shortcut icon" href="_static/favicon.ico"/>
         
     | 
| 
       29 
     | 
    
         
            -
                <link rel="top" title="Groonga v5.0. 
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v5.0.6-226-gd7da7e7ドキュメント" href="index.html" /> 
         
     | 
| 
       30 
30 
     | 
    
         
             
              </head>
         
     | 
| 
       31 
     | 
    
         
            -
              <body>
         
     | 
| 
      
 31 
     | 
    
         
            +
              <body role="document">
         
     | 
| 
       32 
32 
     | 
    
         
             
            <div class="header">
         
     | 
| 
       33 
33 
     | 
    
         
             
              <h1 class="title">
         
     | 
| 
       34 
34 
     | 
    
         
             
                <a id="top-link" href="index.html">
         
     | 
| 
         @@ -46,28 +46,348 @@ 
     | 
|
| 
       46 
46 
     | 
    
         
             
            </div>
         
     | 
| 
       47 
47 
     | 
    
         | 
| 
       48 
48 
     | 
    
         | 
| 
       49 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 49 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       50 
50 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       51 
51 
     | 
    
         
             
                  <ul>
         
     | 
| 
       52 
52 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       53 
53 
     | 
    
         
             
                      <a href="genindex.html" title="総合索引"
         
     | 
| 
       54 
54 
     | 
    
         
             
                         accesskey="I">索引</a></li>
         
     | 
| 
       55 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v5.0. 
     | 
| 
      
 55 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
       57 
57 
     | 
    
         
             
                </div>  
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
       59 
59 
     | 
    
         
             
                <div class="document">
         
     | 
| 
       60 
60 
     | 
    
         
             
                  <div class="documentwrapper">
         
     | 
| 
       61 
61 
     | 
    
         
             
                    <div class="bodywrapper">
         
     | 
| 
       62 
     | 
    
         
            -
                      <div class="body">
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <div class="body" role="main">
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
       64 
64 
     | 
    
         
             
              <div class="section" id="news">
         
     | 
| 
       65 
65 
     | 
    
         
             
            <h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
       66 
     | 
    
         
            -
            <div class="section" id="release-5-0- 
     | 
| 
       67 
     | 
    
         
            -
            <span id="release-5-0- 
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="release-5-0-7-2015-08-31">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <span id="release-5-0-7"></span><h2>5.0.7リリース - 2015-08-31<a class="headerlink" href="#release-5-0-7-2015-08-31" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 68 
     | 
    
         
            +
            <p>このリリースは <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>静的なインデックス構築方法</span></a> のバグフィックスが含まれています。</p>
         
     | 
| 
      
 69 
     | 
    
         
            +
            <p>もし、マルチカラムインデックス( <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> フラグ付きのインデックスカラム)と <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>静的なインデックス構築方法</span></a> を使っている場合は、Groongaのアップグレードを推奨します。</p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            <p>このリリースはWindowsユーザー向けの重要な実験的な機能が含まれています。詳細は以下の改良点リストの中の「スパースファイルサポート」を参照してください。</p>
         
     | 
| 
       68 
71 
     | 
    
         
             
            <div class="section" id="improvements">
         
     | 
| 
       69 
72 
     | 
    
         
             
            <h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       70 
73 
     | 
    
         
             
            <ul>
         
     | 
| 
      
 74 
     | 
    
         
            +
            <li><p class="first">[実験的][Windows] スパースファイルをサポートしました。この機能は実験的な機能です。デフォルトでは無効です。 <code class="docutils literal"><span class="pre">GRN_IO_USE_SPARSE=yes</span></code> 環境変数を指定すると有効にできます。</p>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <p>Windows上でデータベースのファイルサイズを小さくできます。この機能を試して結果を報告してください。Groonga開発者は次の点に興味があります。</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li><p class="first">ディスク使用量</p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li><p class="first">パフォーマンス(速くなったか?遅くなったか?変化はないか?)</p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li><p class="first">メモリー使用量(特に仮想メモリー使用量)</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 83 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 84 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="reference/commands/logical_shard_list.html"><em>logical_shard_list</em></a>] 指定された論理テーブルのシャードのリストを返すコマンドを追加しました。</p>
         
     | 
| 
      
 86 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>正規表現演算子</span></a>] インデックスなしでもベクターカラムに対して正規表現を使えるようになりました。</p>
         
     | 
| 
      
 88 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 89 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <code class="docutils literal"><span class="pre">--cache</span> <span class="pre">no</span></code> オプションをサポートしました。これは、 <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> の <a class="reference internal" href="reference/commands/select.html#select-cache"><span>cache</span></a> オプションと同じ機能です。</p>
         
     | 
| 
      
 90 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] <a class="reference internal" href="reference/commands/thread_limit.html"><em>thread_limit</em></a> の最大スレッド数を返す機能に対応しました。最大スレッド数を設定することはできません。</p>
         
     | 
| 
      
 92 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a>] 開いているすべてのテーブルとカラムをアンマップするAPIを追加しました。これはスレッドセーフではない操作です。 <a class="reference internal" href="reference/api/grn_db.html#c.grn_db_unmap" title="grn_db_unmap"><code class="xref c c-func docutils literal"><span class="pre">grn_db_unmap()</span></code></a> 実行中はデータベースを触ることはできません。</p>
         
     | 
| 
      
 94 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 95 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/database_unmap.html"><em>database_unmap</em></a>] データベース内の開いているすべてのテーブルとカラムをアンマップするコマンドを追加しました。</p>
         
     | 
| 
      
 96 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/object_exist.html"><em>object_exist</em></a>] データベース内に指定された名前のオブジェクトが存在するかどうかを返すコマンドを追加しました。</p>
         
     | 
| 
      
 98 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 99 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/column_copy.html"><em>column_copy</em></a>] コピー元カラムからコピー先カラムへすべての値をコピーするコマンドを追加しました。</p>
         
     | 
| 
      
 100 
     | 
    
         
            +
            <p>このコマンドを使うと、カラムの値の型を変更したり、カラムの種類を変更したり、テーブルの種類を変更したりできます。</p>
         
     | 
| 
      
 101 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 102 
     | 
    
         
            +
            <li><p class="first">非標準の <code class="docutils literal"><span class="pre">__uint32_t</span></code> 型を使うことを止めました。 [GitHub#375][Natanael Copaさんが報告]</p>
         
     | 
| 
      
 103 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 104 
     | 
    
         
            +
            <li><p class="first">[実験的][Windows] Windowsイベントログをサポートしました。</p>
         
     | 
| 
      
 105 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 106 
     | 
    
         
            +
            <li><p class="first">[mruby] mrubyの初期化エラー処理をサポートしました。</p>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 108 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="reference/commands/thread_limit.html"><em>thread_limit</em></a>] <code class="docutils literal"><span class="pre">thread_count</span></code> からリネームしました。</p>
         
     | 
| 
      
 109 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <li><p class="first"><code class="docutils literal"><span class="pre">info</span></code> レベルと <code class="docutils literal"><span class="pre">debug</span></code> レベルで使用したインデックスをログに出力するようになりました。これはRDBMSの <code class="docutils literal"><span class="pre">EXPLAIN</span></code> のように使うことができます。スロークエリーを改良するときに便利です。</p>
         
     | 
| 
      
 111 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 112 
     | 
    
         
            +
            <li><p class="first">[ドキュメント] 非推奨の <code class="docutils literal"><span class="pre">KEY_NORMALIZE</span></code> フラグを置き換えました。 [GitHub#378][GitHub#380][GitHub#382] [佐藤さんがパッチ提供]</p>
         
     | 
| 
      
 113 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 114 
     | 
    
         
            +
            <li><p class="first">[ドキュメント] 必要のないSphinxの設定を削除しました。 [GitHub#379] [長内さんがパッチ提供]</p>
         
     | 
| 
      
 115 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 116 
     | 
    
         
            +
            <li><p class="first">[実験的][非互換][<a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>正規表現演算子</span></a>] <code class="docutils literal"><span class="pre">.</span></code> のマッチの挙動が変わりました。 <code class="docutils literal"><span class="pre">.</span></code> は改行にもマッチします。これは後方非互換な変更です。</p>
         
     | 
| 
      
 117 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 118 
     | 
    
         
            +
            <li><p class="first">[ドキュメント][<a class="reference internal" href="contribution/development/build.html"><em>リポジトリーのGroongaをビルドする方法</em></a>] Groongaの開発者としてGroongaをビルドするためのドキュメントを追加しました。 [GitHub#353] [吉岡さんが提案]</p>
         
     | 
| 
      
 119 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 121 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 122 
     | 
    
         
            +
            <div class="section" id="fixes">
         
     | 
| 
      
 123 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 124 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 125 
     | 
    
         
            +
            <li><p class="first">[mruby] 時間の値がオーバーフローするバグを修正しました。</p>
         
     | 
| 
      
 126 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 127 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] PIDファイルを作成できないときにクラッシュする問題を修正しました。 [GitHub#368] [佐藤さんが報告]</p>
         
     | 
| 
      
 128 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 129 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>静的なインデックス構築方法</span></a> が壊れたインデックスを構築する可能性がある問題を修正しました。この問題はマルチカラムインデックスのインデックスを構築するときに発生する可能性があります。言いかえると、 <code class="docutils literal"><span class="pre">WITH_SECTION</span></code> フラグ付きのインデックスカラムは壊れる可能性があるということです。</p>
         
     | 
| 
      
 130 
     | 
    
         
            +
            <p><code class="docutils literal"><span class="pre">WITH_SECTION</span></code> フラグ付きのインデックスカラムに <a class="reference internal" href="reference/indexing.html#online-index-construction"><span>動的なインデックス構築方法</span></a> を使っている場合はこのバグの影響はありません。</p>
         
     | 
| 
      
 131 
     | 
    
         
            +
            <p>このバグで壊れたインデックスは既存のマルチカラムインデックスを再作成すると復旧できます。</p>
         
     | 
| 
      
 132 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 133 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/functions/query.html"><em>query</em></a>] <a class="reference internal" href="reference/commands/select.html#select-scorer"><span>scorer</span></a> で <a class="reference internal" href="reference/functions/query.html"><em>query</em></a> を使うとクラッシュするバグを修正しました。</p>
         
     | 
| 
      
 134 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 135 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html#select-filter"><span>filter</span></a>] 符号なし整数に <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-bitwise-not"><span>ビット否定演算子</span></a> を使うと、  <code class="docutils literal"><span class="pre">-数値リテラル</span></code> との比較が正常に動かないバグを修正しました。</p>
         
     | 
| 
      
 136 
     | 
    
         
            +
            <p>たとえば、次の式は正常に動きません。:</p>
         
     | 
| 
      
 137 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>~UINT32_COLUMN == -6
         
     | 
| 
      
 138 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 139 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 140 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 141 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-regular-expression-operator"><span>正規表現演算子</span></a> がマルチスレッド環境で動かない問題を修正しました。</p>
         
     | 
| 
      
 142 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 143 
     | 
    
         
            +
            <li><p class="first">メモリーリークをいくつか修正しました。</p>
         
     | 
| 
      
 144 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 145 
     | 
    
         
            +
            <li><p class="first">ビルドエラーを修正しました。 [GitHub#381] [畑ケさんがパッチ提供]</p>
         
     | 
| 
      
 146 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 147 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 148 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 149 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 150 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 151 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 152 
     | 
    
         
            +
            <li><p class="first">佐藤さん</p>
         
     | 
| 
      
 153 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 154 
     | 
    
         
            +
            <li><p class="first">Natanael Copaさん</p>
         
     | 
| 
      
 155 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 156 
     | 
    
         
            +
            <li><p class="first">長内歩さん</p>
         
     | 
| 
      
 157 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 158 
     | 
    
         
            +
            <li><p class="first">畑ケさん</p>
         
     | 
| 
      
 159 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 160 
     | 
    
         
            +
            <li><p class="first">吉岡さん</p>
         
     | 
| 
      
 161 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 162 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 163 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 164 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 165 
     | 
    
         
            +
            <div class="section" id="release-5-0-6-2015-07-29">
         
     | 
| 
      
 166 
     | 
    
         
            +
            <span id="release-5-0-6"></span><h2>5.0.6リリース - 2015-07-29<a class="headerlink" href="#release-5-0-6-2015-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 167 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 168 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 169 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 170 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/ubuntu.html"><em>Ubuntu</em></a>] Ubuntu 14.10(Utopic Unicorn)のサポートをやめました。2015年7月23日でサポートが切れた(EOLになった)ためです。</p>
         
     | 
| 
      
 171 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 172 
     | 
    
         
            +
            <li><p class="first">参照ベクターカラムの静的なインデックス構築をサポートしました。例えば、 <code class="docutils literal"><span class="pre">column_create</span></code> でインデックスカラムを作成する前にデータを <code class="docutils literal"><span class="pre">load</span></code> する場合です:</p>
         
     | 
| 
      
 173 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>table_create Entries TABLE_NO_KEY
         
     | 
| 
      
 174 
     | 
    
         
            +
            column_create Entries numbers COLUMN_VECTOR Int32
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            load --table Entries
         
     | 
| 
      
 177 
     | 
    
         
            +
            [
         
     | 
| 
      
 178 
     | 
    
         
            +
            ["numbers"],
         
     | 
| 
      
 179 
     | 
    
         
            +
            [[18, 19, 20]],
         
     | 
| 
      
 180 
     | 
    
         
            +
            [[100, 200]]
         
     | 
| 
      
 181 
     | 
    
         
            +
            ]
         
     | 
| 
      
 182 
     | 
    
         
            +
             
     | 
| 
      
 183 
     | 
    
         
            +
            table_create Numbers TABLE_PAT_KEY Int32
         
     | 
| 
      
 184 
     | 
    
         
            +
            column_create Numbers entries_numbers COLUMN_INDEX Entries numbers
         
     | 
| 
      
 185 
     | 
    
         
            +
             
     | 
| 
      
 186 
     | 
    
         
            +
            select Numbers --output_columns _key
         
     | 
| 
      
 187 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 188 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 189 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <li><p class="first">インデックスなしの <code class="docutils literal"><span class="pre">'vector_text_column</span> <span class="pre">@</span> <span class="pre">"element"'</span></code> をサポートしました。例えば、以下のコマンド内の <code class="docutils literal"><span class="pre">select</span></code> コマンドです:</p>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>table_create Memos TABLE_NO_KEY
         
     | 
| 
      
 192 
     | 
    
         
            +
            column_create Memos tags COLUMN_VECTOR Text
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
            load --table Memos
         
     | 
| 
      
 195 
     | 
    
         
            +
            [
         
     | 
| 
      
 196 
     | 
    
         
            +
            {"tags": ["Groonga", "Rroonga", "Mroonga"]}
         
     | 
| 
      
 197 
     | 
    
         
            +
            ]
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
            select Memos --filter 'tags @ "Rroonga"'
         
     | 
| 
      
 200 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 201 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 202 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 203 
     | 
    
         
            +
            <li><p class="first">インデックスなしの <code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">n'</span></code> をサポートしました。例えば、以下のコマンド内の <code class="docutils literal"><span class="pre">select</span></code> コマンドです:</p>
         
     | 
| 
      
 204 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>table_create Memos TABLE_NO_KEY
         
     | 
| 
      
 205 
     | 
    
         
            +
            column_create Memos numbers COLUMN_VECTOR Int32
         
     | 
| 
      
 206 
     | 
    
         
            +
             
     | 
| 
      
 207 
     | 
    
         
            +
            load --table Memos
         
     | 
| 
      
 208 
     | 
    
         
            +
            [
         
     | 
| 
      
 209 
     | 
    
         
            +
            {"numbers": [1, 2, 3]}
         
     | 
| 
      
 210 
     | 
    
         
            +
            ]
         
     | 
| 
      
 211 
     | 
    
         
            +
             
     | 
| 
      
 212 
     | 
    
         
            +
            select Memos --filter 'numbers @ 2'
         
     | 
| 
      
 213 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 214 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 215 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 216 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a>][<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] 終了ステータスを表示するようにしました。[GitHub#357] [jacob16bitさんがパッチ提供]</p>
         
     | 
| 
      
 217 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 218 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] <code class="docutils literal"><span class="pre">--pid-path</span></code> をサポートしました。</p>
         
     | 
| 
      
 219 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 220 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] 他のプロセスが開いているファイルの削除を可能にしました。</p>
         
     | 
| 
      
 221 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 222 
     | 
    
         
            +
            <li><p class="first">セレクターのみで使えるprocを作れるようになりました。ただし、そのようなprocは関数として使えません(シーケンシャルサーチに使えないため)。</p>
         
     | 
| 
      
 223 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 224 
     | 
    
         
            +
            <li><p class="first">複雑な引数の関数呼び出しをサポートしました。複雑な引数とは、例えば <code class="docutils literal"><span class="pre">Table["key"].column</span></code> です。例:</p>
         
     | 
| 
      
 225 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>function(_key, Table["key"].column)
         
     | 
| 
      
 226 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 227 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 228 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 229 
     | 
    
         
            +
            <li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><em>チュートリアル</em></a>] データベース作成時に既にファイルが存在するパスを指定したときのエラーについて追記しました。 [GitHub#354] [Hirotaka Takayamaさんが提案]</p>
         
     | 
| 
      
 230 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 231 
     | 
    
         
            +
            <li><p class="first">[doc][<a class="reference internal" href="tutorial.html"><em>チュートリアル</em></a>] JSONを整形するためのツールについて追記しました。 [GitHub#355] [tiwawanさんが提案]</p>
         
     | 
| 
      
 232 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 233 
     | 
    
         
            +
            <li><p class="first">[実験的] スレッド数を取得・設定するAPIを追加しました。これは実験的なAPIです。</p>
         
     | 
| 
      
 234 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 235 
     | 
    
         
            +
            <li><p class="first">[実験的][<code class="docutils literal"><span class="pre">thread_count</span></code>] スレッド数を取得・設定するコマンドを追加しました。これは実験的なコマンドです。</p>
         
     | 
| 
      
 236 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 237 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] <code class="docutils literal"><span class="pre">thread_count</span></code> コマンドによるスレッドの最大数の変更をサポートしました。これは実験的な機能です。</p>
         
     | 
| 
      
 238 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 239 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Windowsのイベントログのサポートを追加しました。これは実験的な機能です。</p>
         
     | 
| 
      
 240 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 241 
     | 
    
         
            +
            <li><p class="first">[実験的][<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] Windowsのイベントログに関連するオプション <code class="docutils literal"><span class="pre">--use-windows-event-log</span></code> を追加しました。このオプションを指定すると、ログをWindowsのイベントとして報告します。これは実験的な機能です。</p>
         
     | 
| 
      
 242 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 243 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] ログメッセージにGroongaのデフォルトのエンコーディングを使うようにしました。</p>
         
     | 
| 
      
 244 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 245 
     | 
    
         
            +
            <li><p class="first">ログレベルが <code class="docutils literal"><span class="pre">INFO</span></code> のときに、使われているインデックスをログに出力するようになりました。ただし、デフォルトのログレベルは <code class="docutils literal"><span class="pre">NOTICE</span></code> なので、デフォルトでは出力されません。</p>
         
     | 
| 
      
 246 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 247 
     | 
    
         
            +
            <li><p class="first">[API] <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_to_string()</span></code> と <code class="xref c c-func docutils literal"><span class="pre">grn_log_level_parse()</span></code> を追加しました。</p>
         
     | 
| 
      
 248 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 249 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] <code class="docutils literal"><span class="pre">--log-level</span></code> の値にログレベルの名称( <code class="docutils literal"><span class="pre">info</span></code> や <code class="docutils literal"><span class="pre">debug</span></code> など)を指定できるようになりました。</p>
         
     | 
| 
      
 250 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 251 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/log_level.html"><em>log_level</em></a>][<a class="reference internal" href="reference/commands/log_put.html"><em>log_put</em></a>] <code class="docutils literal"><span class="pre">--level</span></code> の引数にログレベルの名称を指定できるようになりました。</p>
         
     | 
| 
      
 252 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 253 
     | 
    
         
            +
            <li><p class="first">[plugin] <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code> を追加しました。</p>
         
     | 
| 
      
 254 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 255 
     | 
    
         
            +
            <li><p class="first">shardingプラグインを更新しました。</p>
         
     | 
| 
      
 256 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 257 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] 出力フォーマットを <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> との互換フォーマットになるように修正しました。</p>
         
     | 
| 
      
 258 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 259 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] 以下のパラメーターをサポートしました。</p>
         
     | 
| 
      
 260 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 261 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--output_columns</span></code></li>
         
     | 
| 
      
 262 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--offset</span></code></li>
         
     | 
| 
      
 263 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--limit</span></code></li>
         
     | 
| 
      
 264 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--drilldown</span></code></li>
         
     | 
| 
      
 265 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--drilldown_sortby</span></code></li>
         
     | 
| 
      
 266 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--drilldown_offset</span></code></li>
         
     | 
| 
      
 267 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--drilldown_limit</span></code></li>
         
     | 
| 
      
 268 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 269 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 270 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] 出力カラム(output_columns)に <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> のデフォルト( <code class="docutils literal"><span class="pre">"_id,</span> <span class="pre">_key,</span> <span class="pre">*"</span></code> )と同じものを使うようにしました。</p>
         
     | 
| 
      
 271 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 272 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] ラベル付きドリルダウンで <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-types"><span>drilldown[${LABEL}].calc_types</span></a> と <a class="reference internal" href="reference/commands/logical_select.html#logical-select-drilldown-label-calc-target"><span>drilldown[${LABEL}].calc_target</span></a> をサポートしました。</p>
         
     | 
| 
      
 273 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 274 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] キャッシュをサポートしました。</p>
         
     | 
| 
      
 275 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 276 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] 範囲インデックス(range index)が使われたかどうかのロギングをサポートしました。</p>
         
     | 
| 
      
 277 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 278 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] 対象テーブル名をデバッグログに表示するようにしました。</p>
         
     | 
| 
      
 279 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 280 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] キャッシュをサポートしました。</p>
         
     | 
| 
      
 281 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 282 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <code class="docutils literal"><span class="pre">'fixed_size_type_vector_column</span> <span class="pre">@</span> <span class="pre">element'</span></code> をサポートしました。</p>
         
     | 
| 
      
 283 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 284 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <code class="docutils literal"><span class="pre">use_range_index</span></code> パラメーターを追加しました。これはテスト用のパラメーターなので、本番で使うべきではありません。</p>
         
     | 
| 
      
 285 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 286 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] どちらのモード(range-indexかselect mode)が使われているかログに出力するようにしました。</p>
         
     | 
| 
      
 287 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 288 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] キャッシュをサポートしました。</p>
         
     | 
| 
      
 289 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 290 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] ネストした参照ベクターカラムのアクセサーをサポートしました。</p>
         
     | 
| 
      
 291 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 292 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <a class="reference internal" href="reference/commands/logical_parameters.html"><em>logical_parameters</em></a> で設定されたrange_indexの値を使うようになりました。</p>
         
     | 
| 
      
 293 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 294 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_parameters.html"><em>logical_parameters</em></a>] 追加しました。</p>
         
     | 
| 
      
 295 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 296 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 297 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 298 
     | 
    
         
            +
            <li><p class="first">mrubyのAPIを追加しました。</p>
         
     | 
| 
      
 299 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 300 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Accessor#name</span></code> を追加。</p>
         
     | 
| 
      
 301 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 302 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Column#[]</span></code> を追加。</p>
         
     | 
| 
      
 303 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 304 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Column#scalar?</span></code> と <code class="docutils literal"><span class="pre">Column#vector?</span></code> 、 <code class="docutils literal"><span class="pre">Column#index?</span></code> を追加。</p>
         
     | 
| 
      
 305 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 306 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Context#command_version</span></code> と <code class="docutils literal"><span class="pre">Context#command_version=</span></code> (アクセサー) を追加。</p>
         
     | 
| 
      
 307 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 308 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Context#with_command_version</span></code> を追加。</p>
         
     | 
| 
      
 309 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 310 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Database#each_name</span></code> を追加。</p>
         
     | 
| 
      
 311 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 312 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Groonga::Cache.current</span></code> を追加。</p>
         
     | 
| 
      
 313 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 314 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Record</span></code> を追加。</p>
         
     | 
| 
      
 315 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 316 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">Table#each</span></code> を追加。</p>
         
     | 
| 
      
 317 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 318 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">TableCursor#key</span></code> を追加。</p>
         
     | 
| 
      
 319 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 320 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="xref c c-func docutils literal"><span class="pre">grn_command_input_get_arguments()</span></code> を <code class="docutils literal"><span class="pre">CommandInput#arguments</span></code> にバインド。</p>
         
     | 
| 
      
 321 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 322 
     | 
    
         
            +
            <li><p class="first">[mrb] <a class="reference internal" href="reference/api/grn_table.html#c.grn_table_group" title="grn_table_group"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group()</span></code></a> を <code class="docutils literal"><span class="pre">Table#group</span></code> にバインド。</p>
         
     | 
| 
      
 323 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 324 
     | 
    
         
            +
            <li><p class="first">[mrb] <a class="reference internal" href="reference/api/grn_table.html#c.grn_table_group_flags" title="grn_table_group_flags"><code class="xref c c-func docutils literal"><span class="pre">grn_table_group_flags()</span></code></a> を <code class="docutils literal"><span class="pre">TableGroupFlags</span></code> にバインド。</p>
         
     | 
| 
      
 325 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 326 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">GRN_COMMAND_VERSION_DEFAULT</span></code> をバインド。</p>
         
     | 
| 
      
 327 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 328 
     | 
    
         
            +
            <li><p class="first">[mrb] <code class="docutils literal"><span class="pre">grn_cache</span></code> をバインド。</p>
         
     | 
| 
      
 329 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 330 
     | 
    
         
            +
            <li><p class="first">[mrb][estimate_size] <code class="docutils literal"><span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span> <span class="pre">&&</span> <span class="pre">(...</span> <span class="pre">||</span> <span class="pre">...)</span></code> のようなexpressionのケースをサポート。</p>
         
     | 
| 
      
 331 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 332 
     | 
    
         
            +
            <li><p class="first">[mrb] クエリーログをサポートしました。</p>
         
     | 
| 
      
 333 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 334 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 335 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 336 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 337 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 338 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 339 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 340 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 341 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/api/grn_expr.html#c.grn_expr_exec" title="grn_expr_exec"><code class="xref c c-func docutils literal"><span class="pre">grn_expr_exec()</span></code></a> でエラーが発生したときのメモリーリークを修正しました。例えば、サポートしていないオペレーター(例: <code class="docutils literal"><span class="pre">GRN_OP_TERM_EXTRACT</span></code>)が使われた場合です( <code class="docutils literal"><span class="pre">not</span> <span class="pre">implemented</span> <span class="pre">operator</span> <span class="pre">assigned</span></code> が発生するケース)。</p>
         
     | 
| 
      
 342 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 343 
     | 
    
         
            +
            <li><p class="first">[bindings/php] メモリーアロケーションに失敗したときのチェックが抜けていたのを追加しました。[Bill Parkerさんが報告]</p>
         
     | 
| 
      
 344 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 345 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a>][ログローテート] スクリプト内のシンタックスエラーを修正しました。</p>
         
     | 
| 
      
 346 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 347 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a>][ログローテート] デーモンの起動チェックを修正しました。</p>
         
     | 
| 
      
 348 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 349 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/centos.html"><em>CentOS</em></a>][<a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a>][ログローテート] ログファイルにオーナー・グループを設定するのをやめました。理由は、一貫性がないためです。groonga-httpdはログファイルをrootオーナー・rootグループで作成しますが、ログローテート時はgroongaオーナー・groongaグループで作成されていました。 [GitHub#358] [jacob16bitさんが報告]</p>
         
     | 
| 
      
 350 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 351 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] 報告されるスレッドの最大数を修正しました。</p>
         
     | 
| 
      
 352 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 353 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] ログメッセージ内の不要なスペースを削除しました:</p>
         
     | 
| 
      
 354 
     | 
    
         
            +
            <div class="highlight-none"><div class="highlight"><pre>|n|  grn_fin (0) ->
         
     | 
| 
      
 355 
     | 
    
         
            +
            |n| grn_fin (0)
         
     | 
| 
      
 356 
     | 
    
         
            +
                ^
         
     | 
| 
      
 357 
     | 
    
         
            +
            </pre></div>
         
     | 
| 
      
 358 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 359 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 360 
     | 
    
         
            +
            <li><p class="first">正規表現クエリーでアンカー(例: <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'comment</span> <span class="pre">@~</span> <span class="pre">"\\\\Abc"'</span></code> 内の <code class="docutils literal"><span class="pre">\\\\A</span></code> )が使われたときにサイズ推定がうまく動作しない不具合を修正しました。これは <a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a> で使われている機能です。</p>
         
     | 
| 
      
 361 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 362 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/command/request_id.html"><em>リクエストID</em></a>] <code class="docutils literal"><span class="pre">request_id</span></code> のバイトサイズが24以上だった場合にメモリーリークが発生していた問題を修正しました。</p>
         
     | 
| 
      
 363 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 364 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/lock_clear.html"><em>lock_clear</em></a>] 構文セクションのコマンド名の誤字を修正しました。[GitHub#363] [Christian Kakesaさんが報告]</p>
         
     | 
| 
      
 365 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 366 
     | 
    
         
            +
            <li><p class="first">[sharding] 月の範囲に最小値が含まれているかどうかの検出方法が誤っていたのを修正しました。</p>
         
     | 
| 
      
 367 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 368 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 369 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 370 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 371 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 372 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 373 
     | 
    
         
            +
            <li><p class="first">Bill Parkerさん</p>
         
     | 
| 
      
 374 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 375 
     | 
    
         
            +
            <li><p class="first">jacob16bitさん</p>
         
     | 
| 
      
 376 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 377 
     | 
    
         
            +
            <li><p class="first">Hirotaka Takayamaさん</p>
         
     | 
| 
      
 378 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 379 
     | 
    
         
            +
            <li><p class="first">tiwawanさん</p>
         
     | 
| 
      
 380 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 381 
     | 
    
         
            +
            <li><p class="first">Christian Kakesaさん</p>
         
     | 
| 
      
 382 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 383 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 384 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 385 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 386 
     | 
    
         
            +
            <div class="section" id="release-5-0-5-2015-06-29">
         
     | 
| 
      
 387 
     | 
    
         
            +
            <span id="release-5-0-5"></span><h2>5.0.5リリース - 2015-06-29<a class="headerlink" href="#release-5-0-5-2015-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 388 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 389 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 390 
     | 
    
         
            +
            <ul>
         
     | 
| 
       71 
391 
     | 
    
         
             
            <li><p class="first">データベースを開くときにファイルが存在しなかった場合などに、正しいエラー情報を表示するようにしました。</p>
         
     | 
| 
       72 
392 
     | 
    
         
             
            </li>
         
     | 
| 
       73 
393 
     | 
    
         
             
            <li><p class="first">ライブラリーとして使うときに、デフォルトのロガーのパスを設定しないようにしました。</p>
         
     | 
| 
         @@ -80,25 +400,25 @@ 
     | 
|
| 
       80 
400 
     | 
    
         
             
            </li>
         
     | 
| 
       81 
401 
     | 
    
         
             
            </ul>
         
     | 
| 
       82 
402 
     | 
    
         
             
            </li>
         
     | 
| 
       83 
     | 
    
         
            -
            <li><p class="first">[windows] メモリ不足などで < 
     | 
| 
      
 403 
     | 
    
         
            +
            <li><p class="first">[windows] メモリ不足などで <code class="docutils literal"><span class="pre">CreateFileMapping()</span></code> が失敗した場合、エラー情報を表示するようにしました。</p>
         
     | 
| 
       84 
404 
     | 
    
         
             
            </li>
         
     | 
| 
       85 
405 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] 例に "force_prefix" を表示するようにしました。これは5.0.4で追加された値です。</p>
         
     | 
| 
       86 
406 
     | 
    
         
             
            </li>
         
     | 
| 
       87 
     | 
    
         
            -
            <li><p class="first">[windows] ディスクに問題があり(ディスクフルなど) < 
     | 
| 
      
 407 
     | 
    
         
            +
            <li><p class="first">[windows] ディスクに問題があり(ディスクフルなど) <code class="docutils literal"><span class="pre">FlushViewOfFile()</span></code> が失敗した場合、エラー情報を表示するようにしました。</p>
         
     | 
| 
       88 
408 
     | 
    
         
             
            </li>
         
     | 
| 
       89 
     | 
    
         
            -
            <li><p class="first">[API] < 
     | 
| 
      
 409 
     | 
    
         
            +
            <li><p class="first">[API] <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush()</span></code> を追加しました。</p>
         
     | 
| 
       90 
410 
     | 
    
         
             
            </li>
         
     | 
| 
       91 
     | 
    
         
            -
            <li><p class="first">[API] < 
     | 
| 
      
 411 
     | 
    
         
            +
            <li><p class="first">[API] <code class="xref c c-func docutils literal"><span class="pre">grn_obj_flush_recursive()</span></code> を追加しました。</p>
         
     | 
| 
       92 
412 
     | 
    
         
             
            </li>
         
     | 
| 
       93 
413 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/io_flush.html"><em>io_flush</em></a>] 追加しました。メモリーにマップされたデータをディスクに書き込む(フラッシュする)コマンドです。通常、フラッシュはOSが自動で行いますが、このコマンドを使えば明示的にフラッシュすることができます。</p>
         
     | 
| 
       94 
414 
     | 
    
         
             
            </li>
         
     | 
| 
       95 
     | 
    
         
            -
            <li><p class="first">[mruby] < 
     | 
| 
      
 415 
     | 
    
         
            +
            <li><p class="first">[mruby] <code class="docutils literal"><span class="pre">grn_obj_remove()</span></code> をObject#removeにバインドしました。</p>
         
     | 
| 
       96 
416 
     | 
    
         
             
            </li>
         
     | 
| 
       97 
     | 
    
         
            -
            <li><p class="first">[mruby] < 
     | 
| 
      
 417 
     | 
    
         
            +
            <li><p class="first">[mruby] <code class="docutils literal"><span class="pre">grn_table_delete()</span></code> と <code class="docutils literal"><span class="pre">grn_table_delete_by_id()</span></code> をTable#deleteにバインドしました。</p>
         
     | 
| 
       98 
418 
     | 
    
         
             
            </li>
         
     | 
| 
       99 
419 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_table_remove.html"><em>logical_table_remove</em></a>] 追加しました。</p>
         
     | 
| 
       100 
420 
     | 
    
         
             
            </li>
         
     | 
| 
       101 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] 追加しました。現在は < 
     | 
| 
      
 421 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_select.html"><em>logical_select</em></a>] 追加しました。現在は <code class="docutils literal"><span class="pre">--filter</span></code> のみサポートされています。</p>
         
     | 
| 
       102 
422 
     | 
    
         
             
            </li>
         
     | 
| 
       103 
423 
     | 
    
         
             
            <li><p class="first">[cmake] MeCabトークナイザーの組み込みをサポートしました。</p>
         
     | 
| 
       104 
424 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -111,8 +431,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       111 
431 
     | 
    
         
             
            </li>
         
     | 
| 
       112 
432 
     | 
    
         
             
            </ul>
         
     | 
| 
       113 
433 
     | 
    
         
             
            </div>
         
     | 
| 
       114 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       115 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 434 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 435 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       116 
436 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       117 
437 
     | 
    
         
             
            <li><p class="first">netinet/in.hインクルード時の不正なマクロを修正しました。 [GitHub#348] [おばたさんが報告]</p>
         
     | 
| 
       118 
438 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -120,8 +440,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       120 
440 
     | 
    
         
             
            </li>
         
     | 
| 
       121 
441 
     | 
    
         
             
            </ul>
         
     | 
| 
       122 
442 
     | 
    
         
             
            </div>
         
     | 
| 
       123 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       124 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 443 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 444 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       125 
445 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       126 
446 
     | 
    
         
             
            <li><p class="first">おばたさん</p>
         
     | 
| 
       127 
447 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -132,24 +452,24 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       132 
452 
     | 
    
         
             
            </div>
         
     | 
| 
       133 
453 
     | 
    
         
             
            <div class="section" id="release-5-0-4-2015-05-29">
         
     | 
| 
       134 
454 
     | 
    
         
             
            <span id="release-5-0-4"></span><h2>5.0.4リリース - 2015-05-29<a class="headerlink" href="#release-5-0-4-2015-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       135 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       136 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 455 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 456 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       137 
457 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       138 
     | 
    
         
            -
            <li><p class="first">[mruby] < 
     | 
| 
      
 458 
     | 
    
         
            +
            <li><p class="first">[mruby] <code class="docutils literal"><span class="pre">inspect</span></code> を意味のあるわかりやすいエラーメッセージを表示するために使うようにしました。</p>
         
     | 
| 
       139 
459 
     | 
    
         
             
            </li>
         
     | 
| 
       140 
     | 
    
         
            -
            <li><p class="first">[mruby] バルクオブジェクトを調査するための < 
     | 
| 
      
 460 
     | 
    
         
            +
            <li><p class="first">[mruby] バルクオブジェクトを調査するための <code class="docutils literal"><span class="pre">Groonga::Bulk#inspect</span></code> をサポートしました。</p>
         
     | 
| 
       141 
461 
     | 
    
         
             
            </li>
         
     | 
| 
       142 
     | 
    
         
            -
            <li><p class="first">[mruby] バルクオブジェクトからレコードの値を取得するための < 
     | 
| 
      
 462 
     | 
    
         
            +
            <li><p class="first">[mruby] バルクオブジェクトからレコードの値を取得するための <code class="docutils literal"><span class="pre">Bulk#value</span></code> をサポートしました。</p>
         
     | 
| 
       143 
463 
     | 
    
         
             
            </li>
         
     | 
| 
       144 
     | 
    
         
            -
            <li><p class="first">[mruby] <a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a> で参照型のカラムの値が特定のレコードのIDにマッチする場合 (< 
     | 
| 
      
 464 
     | 
    
         
            +
            <li><p class="first">[mruby] <a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a> で参照型のカラムの値が特定のレコードのIDにマッチする場合 (<code class="docutils literal"><span class="pre">reference_column</span> <span class="pre">==</span> <span class="pre">record_id</span></code>) を効率良く検索するために必要なマッチするレコード数を見積もれるようになりました。</p>
         
     | 
| 
       145 
465 
     | 
    
         
             
            </li>
         
     | 
| 
       146 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>] インデックスカラムを < 
     | 
| 
      
 466 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a>] インデックスカラムを <code class="docutils literal"><span class="pre">scope</span></code> 引数に指定できるようになりました。</p>
         
     | 
| 
       147 
467 
     | 
    
         
             
            </li>
         
     | 
| 
       148 
468 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>スクリプト構文</em></a>] 数値に関する記述をよりわかりやすくしました。 [GitHub groonga/groonga.org#16] [佐藤さんが提案]</p>
         
     | 
| 
       149 
469 
     | 
    
         
             
            </li>
         
     | 
| 
       150 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Select対象でない他のテーブルのレコードをフィルタに指定できるようになりました。 < 
     | 
| 
      
 470 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] Select対象でない他のテーブルのレコードをフィルタに指定できるようになりました。 <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE[KEY].COLUMN'</span></code> といったようにフィルタで指定できます。</p>
         
     | 
| 
       151 
471 
     | 
    
         
             
            </li>
         
     | 
| 
       152 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] テーブルのキーを指定するためにオペレータを使えるようになりました。たとえば、 < 
     | 
| 
      
 472 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] テーブルのキーを指定するためにオペレータを使えるようになりました。たとえば、 <code class="docutils literal"><span class="pre">--filter</span> <span class="pre">'OTHER_TABLE["SOME</span> <span class="pre">STRING"</span> <span class="pre">+</span> <span class="pre">"ANOTHER</span> <span class="pre">STRING"]</span></code> というように連結した文字列という式でキーを指定することができます。</p>
         
     | 
| 
       153 
473 
     | 
    
         
             
            </li>
         
     | 
| 
       154 
474 
     | 
    
         
             
            <li><p class="first">[example] Ruby 2.0以降のAPIを辞書の変換スクリプトで使うようにしました。</p>
         
     | 
| 
       155 
475 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -157,32 +477,32 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       157 
477 
     | 
    
         
             
            </li>
         
     | 
| 
       158 
478 
     | 
    
         
             
            <li><p class="first">[doc] メーリングリストの案内ページへのリンクをsourceforge.jpからosdn.meやosdn.jpに修正しました。</p>
         
     | 
| 
       159 
479 
     | 
    
         
             
            </li>
         
     | 
| 
       160 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] 各トークンの情報に < 
     | 
| 
      
 480 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a>] 各トークンの情報に <code class="docutils literal"><span class="pre">force_prefix</span></code> の値を追加しました。[村上さんがパッチ提供]</p>
         
     | 
| 
       161 
481 
     | 
    
         
             
            </li>
         
     | 
| 
       162 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/tokenizers.html#token-trigram">< 
     | 
| 
      
 482 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/tokenizers.html#token-trigram"><span>TokenTrigram</span></a> を使っていても、2文字以下の語句で検索できるようにしました。 [GitHub#341] [村上さんがパッチ提供]</p>
         
     | 
| 
       163 
483 
     | 
    
         
             
            </li>
         
     | 
| 
       164 
484 
     | 
    
         
             
            <li><p class="first">[deb] groonga-httpdとgroonga-server-gqtpのパッケージにSystemd用serviceファイルを追加しました。</p>
         
     | 
| 
       165 
485 
     | 
    
         
             
            </li>
         
     | 
| 
       166 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] < 
     | 
| 
      
 486 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] <code class="docutils literal"><span class="pre">--query</span></code> の値が空白文字だけなら無視するようにしました。空白文字にはいわゆる全角スペース(Unicodeでいうと <code class="docutils literal"><span class="pre">U+3000</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">SPACE</span></code> )も含みます。 [TomyGXさんが提案]</p>
         
     | 
| 
       167 
487 
     | 
    
         
             
            </li>
         
     | 
| 
       168 
488 
     | 
    
         
             
            </ul>
         
     | 
| 
       169 
489 
     | 
    
         
             
            </div>
         
     | 
| 
       170 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       171 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 490 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 491 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       172 
492 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       173 
     | 
    
         
            -
            <li><p class="first">空のキーが < 
     | 
| 
      
 493 
     | 
    
         
            +
            <li><p class="first">空のキーが <code class="docutils literal"><span class="pre">drilldown[label].keys</span></code> に指定されるとクラッシュする不具合を修正しました。</p>
         
     | 
| 
       174 
494 
     | 
    
         
             
            </li>
         
     | 
| 
       175 
     | 
    
         
            -
            <li><p class="first">< 
     | 
| 
      
 495 
     | 
    
         
            +
            <li><p class="first"><code class="docutils literal"><span class="pre">grn_parse_query_flags</span></code> の返り値を適切にチェックしていないのを修正しました。 [GitHub#336] [Hiroaki Nakamuraさんが報告]</p>
         
     | 
| 
       176 
496 
     | 
    
         
             
            </li>
         
     | 
| 
       177 
     | 
    
         
            -
            <li><p class="first">BSD系でビルドエラーになる不具合を修正しました。 < 
     | 
| 
      
 497 
     | 
    
         
            +
            <li><p class="first">BSD系でビルドエラーになる不具合を修正しました。 <code class="docutils literal"><span class="pre">sed</span></code> に <code class="docutils literal"><span class="pre">-i</span></code> オプションがないためエラーになっていました。</p>
         
     | 
| 
       178 
498 
     | 
    
         
             
            </li>
         
     | 
| 
       179 
     | 
    
         
            -
            <li><p class="first">Solarisでビルドエラーになる不具合を修正しました。< 
     | 
| 
      
 499 
     | 
    
         
            +
            <li><p class="first">Solarisでビルドエラーになる不具合を修正しました。<code class="docutils literal"><span class="pre">memset()</span></code> にて <code class="docutils literal"><span class="pre">sizeof(msghdr)</span></code> だけ初期化するようにしました。これは Solarisでは <code class="docutils literal"><span class="pre">msg_control</span></code> と <code class="docutils literal"><span class="pre">msg_controllen</span></code> と <code class="docutils literal"><span class="pre">msg_flags</span></code> が存在しないためです。</p>
         
     | 
| 
       180 
500 
     | 
    
         
             
            </li>
         
     | 
| 
       181 
501 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/tokenizers.html"><em>トークナイザー</em></a>] ドキュメントの誤字を修正しました。[GitHub#338] [佐藤さんが報告]</p>
         
     | 
| 
       182 
502 
     | 
    
         
             
            </li>
         
     | 
| 
       183 
503 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/output.html"><em>出力</em></a>] ドキュメントのマークアップを修正しました。 [GitHub groonga/groonga.org#17] [佐藤さんが報告]</p>
         
     | 
| 
       184 
504 
     | 
    
         
             
            </li>
         
     | 
| 
       185 
     | 
    
         
            -
            <li><p class="first">< 
     | 
| 
      
 505 
     | 
    
         
            +
            <li><p class="first"><code class="docutils literal"><span class="pre">grn_ii_cursor_set_min()</span></code> を呼ぶごとに getenv()しないようにしました。これによりWindows上でのパフォーマンスのリグレッションが解決します。</p>
         
     | 
| 
       186 
506 
     | 
    
         
             
            </li>
         
     | 
| 
       187 
507 
     | 
    
         
             
            <li><p class="first">OpenBSDでビルドエラーになる不具合を修正しました。 [groonga-dev,03255] [fbnteqrさんが報告]</p>
         
     | 
| 
       188 
508 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -190,14 +510,14 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       190 
510 
     | 
    
         
             
            </li>
         
     | 
| 
       191 
511 
     | 
    
         
             
            <li><p class="first">二重にメモリを開放することでクラッシュする不具合を修正しました。</p>
         
     | 
| 
       192 
512 
     | 
    
         
             
            </li>
         
     | 
| 
       193 
     | 
    
         
            -
            <li><p class="first">メモリリークを修正しました。 < 
     | 
| 
      
 513 
     | 
    
         
            +
            <li><p class="first">メモリリークを修正しました。 <code class="docutils literal"><span class="pre">--match_columns</span></code> と <code class="docutils literal"><span class="pre">--query</span></code> にインデックスを張っていないテキストカラムを指定し、そのテキストカラムの内容がバルクオブジェクトに収まりきらないと発生します。バルクオブジェクトに収まりきらないのは32byteを越える場合です。そのため、テキストがそれよりも短いものばかりならばこの不具合の影響を受けません。</p>
         
     | 
| 
       194 
514 
     | 
    
         
             
            </li>
         
     | 
| 
       195 
515 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/tokenizers.html"><em>トークナイザー</em></a>] [TokenRegexp] クエリに空白として扱われる文字が含まれている場合に正しく検索できない不具合を修正しました。典型的な例は改行 ("\n")が含まれている場合です。</p>
         
     | 
| 
       196 
516 
     | 
    
         
             
            </li>
         
     | 
| 
       197 
517 
     | 
    
         
             
            </ul>
         
     | 
| 
       198 
518 
     | 
    
         
             
            </div>
         
     | 
| 
       199 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       200 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 519 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 520 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       201 
521 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       202 
522 
     | 
    
         
             
            <li><p class="first">Hiroaki Nakamuraさん</p>
         
     | 
| 
       203 
523 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -214,8 +534,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       214 
534 
     | 
    
         
             
            </div>
         
     | 
| 
       215 
535 
     | 
    
         
             
            <div class="section" id="release-5-0-3-2015-04-29">
         
     | 
| 
       216 
536 
     | 
    
         
             
            <span id="release-5-0-3"></span><h2>5.0.3リリース - 2015-04-29<a class="headerlink" href="#release-5-0-3-2015-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       217 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       218 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 537 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 538 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       219 
539 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       220 
540 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/tokenizers.html"><em>トークナイザー</em></a>][<a class="reference internal" href="reference/regular_expression.html"><em>正規表現</em></a>] 最後の一文字のトークンをスキップするようにしました。</p>
         
     | 
| 
       221 
541 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -223,7 +543,7 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       223 
543 
     | 
    
         
             
            </li>
         
     | 
| 
       224 
544 
     | 
    
         
             
            <li><p class="first">[mruby] アクセサーのサイズ推定をサポートしました。</p>
         
     | 
| 
       225 
545 
     | 
    
         
             
            </li>
         
     | 
| 
       226 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Groonga 5.0.2で導入された < 
     | 
| 
      
 546 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] Groonga 5.0.2で導入された <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code> 環境変数を削除しました。範囲インデックス検索を無効にするには <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></code> を使ってください。</p>
         
     | 
| 
       227 
547 
     | 
    
         
             
            </li>
         
     | 
| 
       228 
548 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] 負の上限値とオフセットをサポートしました。</p>
         
     | 
| 
       229 
549 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -241,19 +561,19 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       241 
561 
     | 
    
         
             
            </li>
         
     | 
| 
       242 
562 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 以下のオプションを追加しました。</p>
         
     | 
| 
       243 
563 
     | 
    
         
             
            <ul>
         
     | 
| 
       244 
     | 
    
         
            -
            <li>< 
     | 
| 
       245 
     | 
    
         
            -
            <li>< 
     | 
| 
       246 
     | 
    
         
            -
            <li>< 
     | 
| 
       247 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 564 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></code></li>
         
     | 
| 
      
 565 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></code></li>
         
     | 
| 
      
 566 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></code></li>
         
     | 
| 
      
 567 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--dump_indexes</span> <span class="pre">[yes(default)/no]</span></code></li>
         
     | 
| 
       248 
568 
     | 
    
         
             
            </ul>
         
     | 
| 
       249 
569 
     | 
    
         
             
            </li>
         
     | 
| 
       250 
     | 
    
         
            -
            <li><p class="first">[API] < 
     | 
| 
      
 570 
     | 
    
         
            +
            <li><p class="first">[API] <code class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></code> を追加しました。</p>
         
     | 
| 
       251 
571 
     | 
    
         
             
            </li>
         
     | 
| 
       252 
572 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] インデックスカラムは参照カラムを参照するので、インデックスカラムを参照カラムの後に置くように修正しました。</p>
         
     | 
| 
       253 
573 
     | 
    
         
             
            </li>
         
     | 
| 
       254 
574 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 語彙表のレコードをダンプしないようにしました。</p>
         
     | 
| 
       255 
575 
     | 
    
         
             
            </li>
         
     | 
| 
       256 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 再度 < 
     | 
| 
      
 576 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 再度 <code class="docutils literal"><span class="pre">TABLE_NO_KEY</span></code> のときに <code class="docutils literal"><span class="pre">_id</span></code> を表示するようにしました。</p>
         
     | 
| 
       257 
577 
     | 
    
         
             
            </li>
         
     | 
| 
       258 
578 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] オフラインインデックス構築するようにしました。</p>
         
     | 
| 
       259 
579 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -277,16 +597,16 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       277 
597 
     | 
    
         
             
            </li>
         
     | 
| 
       278 
598 
     | 
    
         
             
            <li><p class="first">ログローテーションの閾値を変更するためのAPIを追加しました。</p>
         
     | 
| 
       279 
599 
     | 
    
         
             
            <ul>
         
     | 
| 
       280 
     | 
    
         
            -
            <li>< 
     | 
| 
       281 
     | 
    
         
            -
            <li>< 
     | 
| 
       282 
     | 
    
         
            -
            <li>< 
     | 
| 
       283 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 600 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_set_rotate_threshold_size()</span></code></li>
         
     | 
| 
      
 601 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_default_logger_get_rotate_threshold_size()</span></code></li>
         
     | 
| 
      
 602 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_set_rotate_threshold_size()</span></code></li>
         
     | 
| 
      
 603 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_get_rotate_threshold_size()</span></code></li>
         
     | 
| 
       284 
604 
     | 
    
         
             
            </ul>
         
     | 
| 
       285 
605 
     | 
    
         
             
            </li>
         
     | 
| 
       286 
606 
     | 
    
         
             
            <li><p class="first">[実験的] ログローテーションをサポートしました。この機能はデフォルトでは無効です。以下のオプションで有効にできます。</p>
         
     | 
| 
       287 
607 
     | 
    
         
             
            <ul>
         
     | 
| 
       288 
     | 
    
         
            -
            <li>< 
     | 
| 
       289 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 608 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--log-rotate-threshold-size</span></code></li>
         
     | 
| 
      
 609 
     | 
    
         
            +
            <li><code class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></code></li>
         
     | 
| 
       290 
610 
     | 
    
         
             
            </ul>
         
     | 
| 
       291 
611 
     | 
    
         
             
            </li>
         
     | 
| 
       292 
612 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="server/gqtp.html"><em>GQTP</em></a>] GQTPサーバーについてのドキュメントを追加しました。</p>
         
     | 
| 
         @@ -301,27 +621,27 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       301 
621 
     | 
    
         
             
            </li>
         
     | 
| 
       302 
622 
     | 
    
         
             
            </ul>
         
     | 
| 
       303 
623 
     | 
    
         
             
            </div>
         
     | 
| 
       304 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       305 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 624 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 625 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       306 
626 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       307 
     | 
    
         
            -
            <li><p class="first">[windows] Microsoft Visual C++でビルドしたGroongaで、大きいデータ(少なくとも1GB以上)のオフラインインデックス構築(<a class="reference internal" href="reference/indexing.html#offline-index-construction">< 
     | 
| 
      
 627 
     | 
    
         
            +
            <li><p class="first">[windows] Microsoft Visual C++でビルドしたGroongaで、大きいデータ(少なくとも1GB以上)のオフラインインデックス構築(<a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>静的なインデックス構築方法</span></a>) に失敗していた不具合を修正しました。 [Hideki ARAIさんが報告]</p>
         
     | 
| 
       308 
628 
     | 
    
         
             
            </li>
         
     | 
| 
       309 
     | 
    
         
            -
            <li><p class="first">[mruby] 正規表現の中の < 
     | 
| 
      
 629 
     | 
    
         
            +
            <li><p class="first">[mruby] 正規表現の中の <code class="docutils literal"><span class="pre">\\</span></code> をインデックス検索可能にしました。</p>
         
     | 
| 
       310 
630 
     | 
    
         
             
            </li>
         
     | 
| 
       311 
     | 
    
         
            -
            <li><p class="first">< 
     | 
| 
      
 631 
     | 
    
         
            +
            <li><p class="first"><code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE=yes</span></code> のときにいくつかマッチ済みのレコードを返していなかった不具合を修正しました。</p>
         
     | 
| 
       312 
632 
     | 
    
         
             
            </li>
         
     | 
| 
       313 
633 
     | 
    
         
             
            <li><p class="first">[sharding] 部分範囲がすべての範囲として扱われる不具合を修正しました。</p>
         
     | 
| 
       314 
634 
     | 
    
         
             
            </li>
         
     | 
| 
       315 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] < 
     | 
| 
      
 635 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <code class="docutils literal"><span class="pre">:order</span> <span class="pre">=></span> <span class="pre">"descending"</span></code> が動作しない不具合を修正しました。</p>
         
     | 
| 
       316 
636 
     | 
    
         
             
            </li>
         
     | 
| 
       317 
637 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] 範囲インデックスの集計を再度サポートしました。</p>
         
     | 
| 
       318 
638 
     | 
    
         
             
            </li>
         
     | 
| 
       319 
     | 
    
         
            -
            <li><p class="first">誤動作の原因となる < 
     | 
| 
      
 639 
     | 
    
         
            +
            <li><p class="first">誤動作の原因となる <code class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></code> の不具合を修正し、無効なパトリシアトライノードのテストを追加しました。 [groonga-dev,03177] [yuya sakoさんが報告]</p>
         
     | 
| 
       320 
640 
     | 
    
         
             
            </li>
         
     | 
| 
       321 
641 
     | 
    
         
             
            </ul>
         
     | 
| 
       322 
642 
     | 
    
         
             
            </div>
         
     | 
| 
       323 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       324 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 643 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 644 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       325 
645 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       326 
646 
     | 
    
         
             
            <li><p class="first">Hideki ARAIさん</p>
         
     | 
| 
       327 
647 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -337,17 +657,17 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       337 
657 
     | 
    
         
             
            <div class="section" id="release-5-0-2-2015-03-31">
         
     | 
| 
       338 
658 
     | 
    
         
             
            <span id="release-5-0-2"></span><h2>5.0.2リリース - 2015-03-31<a class="headerlink" href="#release-5-0-2-2015-03-31" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       339 
659 
     | 
    
         
             
            <p>5.0.1のバグフィックスリリースです。</p>
         
     | 
| 
       340 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       341 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 660 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 661 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       342 
662 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       343 
663 
     | 
    
         
             
            <li><p class="first">MessagePack 1.0.1をサポート。 [畑ケさんが報告]</p>
         
     | 
| 
       344 
664 
     | 
    
         
             
            </li>
         
     | 
| 
       345 
     | 
    
         
            -
            <li><p class="first">[logical_range_filter] 範囲検索をデフォルトで無効にした。 環境変数 < 
     | 
| 
      
 665 
     | 
    
         
            +
            <li><p class="first">[logical_range_filter] 範囲検索をデフォルトで無効にした。 環境変数 <code class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></code> に <code class="docutils literal"><span class="pre">yes</span></code> を設定すれば有効になる。</p>
         
     | 
| 
       346 
666 
     | 
    
         
             
            </li>
         
     | 
| 
       347 
667 
     | 
    
         
             
            </ul>
         
     | 
| 
       348 
668 
     | 
    
         
             
            </div>
         
     | 
| 
       349 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       350 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 669 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 670 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       351 
671 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       352 
672 
     | 
    
         
             
            <li><p class="first">JSONPが動作していなかった不具合を修正。これはGroonga 4.1.1で入った不具合。</p>
         
     | 
| 
       353 
673 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -357,8 +677,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       357 
677 
     | 
    
         
             
            </li>
         
     | 
| 
       358 
678 
     | 
    
         
             
            </ul>
         
     | 
| 
       359 
679 
     | 
    
         
             
            </div>
         
     | 
| 
       360 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       361 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 680 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 681 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       362 
682 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       363 
683 
     | 
    
         
             
            <li><p class="first">篠田さん</p>
         
     | 
| 
       364 
684 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -369,8 +689,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       369 
689 
     | 
    
         
             
            </div>
         
     | 
| 
       370 
690 
     | 
    
         
             
            <div class="section" id="release-5-0-1-2015-03-29">
         
     | 
| 
       371 
691 
     | 
    
         
             
            <span id="release-5-0-1"></span><h2>5.0.1リリース - 2015-03-29<a class="headerlink" href="#release-5-0-1-2015-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       372 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       373 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 692 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 693 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       374 
694 
     | 
    
         
             
            <ul>
         
     | 
| 
       375 
695 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] filterとsortをサポートしました。</p>
         
     | 
| 
       376 
696 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -378,7 +698,7 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       378 
698 
     | 
    
         
             
            </li>
         
     | 
| 
       379 
699 
     | 
    
         
             
            <li><p class="first">Groongaをライブラリとして使う人向けにAPIの <a class="reference internal" href="reference/api/overview.html"><em>概要</em></a> を追加しました。</p>
         
     | 
| 
       380 
700 
     | 
    
         
             
            </li>
         
     | 
| 
       381 
     | 
    
         
            -
            <li><p class="first">[非互換] 内部で使っている < 
     | 
| 
      
 701 
     | 
    
         
            +
            <li><p class="first">[非互換] 内部で使っている <code class="docutils literal"><span class="pre">_score</span></code> の型を 32bit整数値から浮動小数点数に変更しました。この変更はGroongaのDB APIを使っているユーザーにとって非互換な変更です。クエリAPIを使っているユーザーには影響ありません。つまり、<a class="reference internal" href="reference/commands/select.html"><em>select</em></a> を使っているだけなら影響ないということです。新旧のバージョンのGroongaで動作するようにするには次のコードを使います:</p>
         
     | 
| 
       382 
702 
     | 
    
         
             
            <div class="highlight-c"><div class="highlight"><pre><span class="n">grn_obj</span> <span class="o">*</span><span class="n">score</span><span class="p">;</span>
         
     | 
| 
       383 
703 
     | 
    
         
             
            <span class="kt">double</span> <span class="n">score_value</span><span class="p">;</span>
         
     | 
| 
       384 
704 
     | 
    
         | 
| 
         @@ -392,11 +712,11 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       392 
712 
     | 
    
         
             
            </li>
         
     | 
| 
       393 
713 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/select.html"><em>select</em></a>] ドリルダウンの引数の誤りをより厳密にチェックするようにしました。</p>
         
     | 
| 
       394 
714 
     | 
    
         
             
            </li>
         
     | 
| 
       395 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/api/grn_ctx.html#c.grn_ctx_get_all_tables" title="grn_ctx_get_all_tables">< 
     | 
| 
      
 715 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/api/grn_ctx.html#c.grn_ctx_get_all_tables" title="grn_ctx_get_all_tables"><code class="xref c c-func docutils literal"><span class="pre">grn_ctx_get_all_tables()</span></code></a> を追加しました。 [Masatoshi Teruyaさんが提案]</p>
         
     | 
| 
       396 
716 
     | 
    
         
             
            </li>
         
     | 
| 
       397 
717 
     | 
    
         
             
            <li><p class="first">スコア関数のカスタマイズをサポートしました。詳細は <a class="reference internal" href="reference/scorer.html"><em>Scorer</em></a> を参照してください。</p>
         
     | 
| 
       398 
718 
     | 
    
         
             
            </li>
         
     | 
| 
       399 
     | 
    
         
            -
            <li><p class="first">[非互換] スコア関数の導入により、DB API層でAPIとABIの互換性がなくなりました。<a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg">< 
     | 
| 
      
 719 
     | 
    
         
            +
            <li><p class="first">[非互換] スコア関数の導入により、DB API層でAPIとABIの互換性がなくなりました。<a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a> を使っていたら、次のようなコードで <a class="reference internal" href="reference/api/grn_search.html#c.grn_search_optarg" title="grn_search_optarg"><code class="xref c c-type docutils literal"><span class="pre">grn_search_optarg</span></code></a> を <code class="docutils literal"><span class="pre">0</span></code> で初期化しているかチェックしてください。:</p>
         
     | 
| 
       400 
720 
     | 
    
         
             
            <div class="highlight-c"><div class="highlight"><pre><span class="n">grn_search_optarg</span> <span class="n">options</span><span class="p">;</span>
         
     | 
| 
       401 
721 
     | 
    
         
             
            <span class="n">memset</span><span class="p">(</span><span class="o">&</span><span class="n">options</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="k">sizeof</span><span class="p">(</span><span class="n">grn_search_optarg</span><span class="p">));</span>
         
     | 
| 
       402 
722 
     | 
    
         
             
            </pre></div>
         
     | 
| 
         @@ -404,22 +724,22 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       404 
724 
     | 
    
         
             
            <p>上記のようにしていれば、あなたの書いたコードはAPIの互換性があり、ABIは互換性がない状態です。単にそのままリビルドしてください。コードの修正は不要です。</p>
         
     | 
| 
       405 
725 
     | 
    
         
             
            <p>もしあなたの書いたコードが上記のようにしていないなら、上記のコードを追加してください。</p>
         
     | 
| 
       406 
726 
     | 
    
         
             
            </li>
         
     | 
| 
       407 
     | 
    
         
            -
            <li><p class="first">DB APIに <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj">< 
     | 
| 
      
 727 
     | 
    
         
            +
            <li><p class="first">DB APIに <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><code class="xref c c-type docutils literal"><span class="pre">grn_obj</span></code></a> の型をチェックするための述語関数を追加しました。</p>
         
     | 
| 
       408 
728 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       409 
     | 
    
         
            -
            <li>< 
     | 
| 
       410 
     | 
    
         
            -
            <li>< 
     | 
| 
       411 
     | 
    
         
            -
            <li>< 
     | 
| 
       412 
     | 
    
         
            -
            <li>< 
     | 
| 
       413 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 729 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_table()</span></code></li>
         
     | 
| 
      
 730 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_proc_proc()</span></code></li>
         
     | 
| 
      
 731 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_function_proc()</span></code></li>
         
     | 
| 
      
 732 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_selector_proc()</span></code></li>
         
     | 
| 
      
 733 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_obj_is_scorer_proc()</span></code></li>
         
     | 
| 
       414 
734 
     | 
    
         
             
            </ul>
         
     | 
| 
       415 
735 
     | 
    
         
             
            </li>
         
     | 
| 
       416 
     | 
    
         
            -
            <li><p class="first">[実験的] ポスティングリストをスキップできるようにしました。頻出語とほとんど出現しない語が同時に検索されたときにスキップできます。これにより検索の速度を改善できます。この機能を有効にするには < 
     | 
| 
      
 736 
     | 
    
         
            +
            <li><p class="first">[実験的] ポスティングリストをスキップできるようにしました。頻出語とほとんど出現しない語が同時に検索されたときにスキップできます。これにより検索の速度を改善できます。この機能を有効にするには <code class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE</span></code> 環境変数を <code class="docutils literal"><span class="pre">1</span></code> にします。デフォルトでは無効です。</p>
         
     | 
| 
       417 
737 
     | 
    
         
             
            </li>
         
     | 
| 
       418 
738 
     | 
    
         
             
            <li><p class="first">[doc] <a class="reference internal" href="reference/functions/in_values.html"><em>in_values</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
       419 
739 
     | 
    
         
             
            </li>
         
     | 
| 
       420 
740 
     | 
    
         
             
            <li><p class="first"><a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
       421 
741 
     | 
    
         
             
            </li>
         
     | 
| 
       422 
     | 
    
         
            -
            <li><p class="first">[mruby] < 
     | 
| 
      
 742 
     | 
    
         
            +
            <li><p class="first">[mruby] <code class="docutils literal"><span class="pre">#inspect</span></code> メソッドを実装しました。デバッグに有用です。</p>
         
     | 
| 
       423 
743 
     | 
    
         
             
            </li>
         
     | 
| 
       424 
744 
     | 
    
         
             
            <li><p class="first">スコアラー <a class="reference internal" href="reference/scorers/scorer_tf_at_most.html"><em>scorer_tf_at_most</em></a> のドキュメントを追加しました。出現頻度が高くても、指定したスコアの閾値を越えないようにします。</p>
         
     | 
| 
       425 
745 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -427,18 +747,18 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       427 
747 
     | 
    
         
             
            </li>
         
     | 
| 
       428 
748 
     | 
    
         
             
            <li><p class="first">インデックスを使ってサイズを推定するための関数を追加しました。</p>
         
     | 
| 
       429 
749 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       430 
     | 
    
         
            -
            <li>< 
     | 
| 
       431 
     | 
    
         
            -
            <li>< 
     | 
| 
       432 
     | 
    
         
            -
            <li>< 
     | 
| 
      
 750 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_expr_estimate_size()</span></code></li>
         
     | 
| 
      
 751 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_query()</span></code></li>
         
     | 
| 
      
 752 
     | 
    
         
            +
            <li><code class="xref c c-func docutils literal"><span class="pre">grn_ii_estimate_size_for_lexicon_cursor()</span></code></li>
         
     | 
| 
       433 
753 
     | 
    
         
             
            </ul>
         
     | 
| 
       434 
754 
     | 
    
         
             
            </li>
         
     | 
| 
       435 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/normalizers.html#normalizer-auto">< 
     | 
| 
      
 755 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/normalizers.html#normalizer-auto"><span>NormalizerAuto</span></a> が利用できるかのチェックを追加しました。[GitHub#283] [末永さんが報告]</p>
         
     | 
| 
       436 
756 
     | 
    
         
             
            </li>
         
     | 
| 
       437 
757 
     | 
    
         
             
            <li><p class="first">Visual Studio 2010のサポートをやめました。</p>
         
     | 
| 
       438 
758 
     | 
    
         
             
            </li>
         
     | 
| 
       439 
     | 
    
         
            -
            <li><p class="first">[実験的][mecab] チャンクに分割してトークナイズできるようにしました。この機能は MeCabの "too long sentense" エラーの回避策です。有効にするには < 
     | 
| 
      
 759 
     | 
    
         
            +
            <li><p class="first">[実験的][mecab] チャンクに分割してトークナイズできるようにしました。この機能は MeCabの "too long sentense" エラーの回避策です。有効にするには <code class="docutils literal"><span class="pre">GRN_MECAB_CHUNKED_TOKENIZE_ENABLED</span></code> 環境変数を <code class="docutils literal"><span class="pre">yes</span></code> に設定します。この設定により、Groonga は長いテキスト (デフォルトでは 8192 バイトを越えるテキスト)を小さなチャンクと呼ばれるかたまりに分割してMeCabへと渡します。この処理により、上記のエラーが発生しないようになります。さらに、このチャンクの閾値は <code class="docutils literal"><span class="pre">GRN_MECAB_CHUNK_SIZE_THRESHOLD</span></code> 環境変数でカスタマイズできます。<code class="docutils literal"><span class="pre">,</span></code>, <code class="docutils literal"><span class="pre">.</span></code>, <code class="docutils literal"><span class="pre">!</span></code>, <code class="docutils literal"><span class="pre">?</span></code>, <code class="docutils literal"><span class="pre">U+3001</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">COMMA</span></code>, <code class="docutils literal"><span class="pre">U+3002</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">FULL</span> <span class="pre">STOP</span></code>, <code class="docutils literal"><span class="pre">U+FF01</span> <span class="pre">FULLWIDTH</span> <span class="pre">EXCLAMATION</span> <span class="pre">MARK</span></code> と <code class="docutils literal"><span class="pre">U+FF1F</span> <span class="pre">FULLWIDTH</span> <span class="pre">QUESTION</span> <span class="pre">MARK</span></code> がチャンクの区切り文字として扱われます。</p>
         
     | 
| 
       440 
760 
     | 
    
         
             
            </li>
         
     | 
| 
       441 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> のサーバーモードで < 
     | 
| 
      
 761 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> のサーバーモードで <code class="docutils literal"><span class="pre">--pid-file</span></code> をサポートしました。</p>
         
     | 
| 
       442 
762 
     | 
    
         
             
            </li>
         
     | 
| 
       443 
763 
     | 
    
         
             
            <li><p class="first">[groonga-httpd] Groongaを緩やかに停止することができるようにしました。コネクションを即座に強制終了しないようになります。</p>
         
     | 
| 
       444 
764 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -450,24 +770,24 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       450 
770 
     | 
    
         
             
            </li>
         
     | 
| 
       451 
771 
     | 
    
         
             
            <li><p class="first">[doc] <a class="reference internal" href="reference/tokenizers.html"><em>トークナイザー</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
       452 
772 
     | 
    
         
             
            </li>
         
     | 
| 
       453 
     | 
    
         
            -
            <li><p class="first">POSIX.2 との互換性を改善しました。bashの "source" コマンドのかわりに < 
     | 
| 
      
 773 
     | 
    
         
            +
            <li><p class="first">POSIX.2 との互換性を改善しました。bashの "source" コマンドのかわりに <code class="docutils literal"><span class="pre">.</span></code> を使うようにしました。[GitHub#317] [栗山さんがパッチ提供]</p>
         
     | 
| 
       454 
774 
     | 
    
         
             
            </li>
         
     | 
| 
       455 
775 
     | 
    
         
             
            <li><p class="first">[windows] デフォルトのIOバージョンを1に変更しました。これによりWindowsでディスク容量を削減できます。[groonga-dev,03118] [ongaeshiさんがテスト]</p>
         
     | 
| 
       456 
776 
     | 
    
         
             
            </li>
         
     | 
| 
       457 
777 
     | 
    
         
             
            <li><p class="first">[httpd] バンドルしているnginxのバージョンを1.7.11に更新しました。</p>
         
     | 
| 
       458 
778 
     | 
    
         
             
            </li>
         
     | 
| 
       459 
     | 
    
         
            -
            <li><p class="first">TSV出力時のMIMEタイプを < 
     | 
| 
      
 779 
     | 
    
         
            +
            <li><p class="first">TSV出力時のMIMEタイプを <code class="docutils literal"><span class="pre">text/plain</span></code> から <code class="docutils literal"><span class="pre">text/tab-separated-values</span></code> に変更しました。</p>
         
     | 
| 
       460 
780 
     | 
    
         
             
            </li>
         
     | 
| 
       461 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word">< 
     | 
| 
      
 781 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/token_filters.html#token-filter-stop-word"><span>TokenFilterStopWord</span></a>] <a class="reference internal" href="reference/indexing.html#offline-index-construction"><span>静的なインデックス構築方法</span></a> をサポートしました。[GitHub#296] [村上さんがパッチ提供]</p>
         
     | 
| 
       462 
782 
     | 
    
         
             
            </li>
         
     | 
| 
       463 
783 
     | 
    
         
             
            </ul>
         
     | 
| 
       464 
784 
     | 
    
         
             
            </div>
         
     | 
| 
       465 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       466 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 785 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 786 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       467 
787 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       468 
     | 
    
         
            -
            <li><p class="first">非推奨の < 
     | 
| 
      
 788 
     | 
    
         
            +
            <li><p class="first">非推奨の <code class="docutils literal"><span class="pre">--address</span></code> 引数をGroongaのデフォルト設定ファイル(groonga.conf)で使わないようにしました。かわりに <code class="docutils literal"><span class="pre">--bind-address</span></code> を使います。 [Groonga-talk] [Dewanggaさんが報告]</p>
         
     | 
| 
       469 
789 
     | 
    
         
             
            </li>
         
     | 
| 
       470 
     | 
    
         
            -
            <li><p class="first">[<a class="reference internal" href="reference/commands/truncate.html"><em>truncate</em></a>] キーが <a class="reference internal" href="reference/tables.html#table-no-key">< 
     | 
| 
      
 790 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/truncate.html"><em>truncate</em></a>] キーが <a class="reference internal" href="reference/tables.html#table-no-key"><span>TABLE_NO_KEY</span></a> なテーブルでtruncateができない問題を修正しました。</p>
         
     | 
| 
       471 
791 
     | 
    
         
             
            </li>
         
     | 
| 
       472 
792 
     | 
    
         
             
            <li><p class="first">[mecab] 不必要な "empty token" や "ignore empty token" といったログが出力されないようにしました。</p>
         
     | 
| 
       473 
793 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -481,16 +801,16 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       481 
801 
     | 
    
         
             
            </li>
         
     | 
| 
       482 
802 
     | 
    
         
             
            </ul>
         
     | 
| 
       483 
803 
     | 
    
         
             
            </li>
         
     | 
| 
       484 
     | 
    
         
            -
            <li><p class="first">シェルのコマンドラインからGroongaのコマンドを <a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> に渡すと常に < 
     | 
| 
      
 804 
     | 
    
         
            +
            <li><p class="first">シェルのコマンドラインからGroongaのコマンドを <a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> に渡すと常に <code class="docutils literal"><span class="pre">0</span></code> を終了コードとして返す不具合を修正しました。 例えば、 <code class="docutils literal"><span class="pre">groonga</span> <span class="pre">DB_PATH</span> <span class="pre">存在しないコマンド名</span></code> を実行しても終了コードとして <code class="docutils literal"><span class="pre">0</span></code> を常に返します。</p>
         
     | 
| 
       485 
805 
     | 
    
         
             
            </li>
         
     | 
| 
       486 
806 
     | 
    
         
             
            <li><p class="first">2つ以上のプラグインを登録しているときにプラグインのパスが壊れてしまう不具合を修正しました。 [村上さんが報告]</p>
         
     | 
| 
       487 
807 
     | 
    
         
             
            </li>
         
     | 
| 
       488 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/commands/select.html#select-match-columns">< 
     | 
| 
      
 808 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/commands/select.html#select-match-columns"><span>match_columns</span></a> に <code class="docutils literal"><span class="pre">Lexicon.index.source_column_name</span></code> を指定しても動作しない不具合を修正しました。<code class="docutils literal"><span class="pre">source_column_name</span></code> として指定されたカラムが2つ以上のインデックスをもつ場合に発生します。 [村上さんが報告]</p>
         
     | 
| 
       489 
809 
     | 
    
         
             
            </li>
         
     | 
| 
       490 
810 
     | 
    
         
             
            </ul>
         
     | 
| 
       491 
811 
     | 
    
         
             
            </div>
         
     | 
| 
       492 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       493 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 812 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 813 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       494 
814 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       495 
815 
     | 
    
         
             
            <li><p class="first">Masatoshi Teruyaさん</p>
         
     | 
| 
       496 
816 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -513,10 +833,10 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       513 
833 
     | 
    
         
             
            <li><p class="first">バージョン5.0.0になりました!</p>
         
     | 
| 
       514 
834 
     | 
    
         
             
            </li>
         
     | 
| 
       515 
835 
     | 
    
         
             
            </ul>
         
     | 
| 
       516 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       517 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 836 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 837 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       518 
838 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       519 
     | 
    
         
            -
            <li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>スクリプト構文</em></a> の <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security">< 
     | 
| 
      
 839 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/script_syntax.html"><em>スクリプト構文</em></a> の <a class="reference internal" href="reference/grn_expr/script_syntax.html#script-syntax-security"><span>セキュリティー</span></a> に関して追加しました。</p>
         
     | 
| 
       520 
840 
     | 
    
         
             
            </li>
         
     | 
| 
       521 
841 
     | 
    
         
             
            <li><p class="first">[実験的] シャーディングするためのプラグインを追加しました。有効にするには <cite>register sharding</cite> を前もって実行します。レコードをselectするには <a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a> を使います。</p>
         
     | 
| 
       522 
842 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -526,8 +846,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       526 
846 
     | 
    
         
             
            </li>
         
     | 
| 
       527 
847 
     | 
    
         
             
            </ul>
         
     | 
| 
       528 
848 
     | 
    
         
             
            </div>
         
     | 
| 
       529 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       530 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 849 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 850 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       531 
851 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       532 
852 
     | 
    
         
             
            <li><p class="first">システムに互換性のないバージョンのonigmoもしくはonigurumaのヘッダーがインストールされているとビルドに失敗する問題を修正しました。 [GitHub#276] [武者さんがパッチ提供]</p>
         
     | 
| 
       533 
853 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -535,8 +855,8 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       535 
855 
     | 
    
         
             
            </li>
         
     | 
| 
       536 
856 
     | 
    
         
             
            </ul>
         
     | 
| 
       537 
857 
     | 
    
         
             
            </div>
         
     | 
| 
       538 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       539 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 858 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 859 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       540 
860 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       541 
861 
     | 
    
         
             
            <li><p class="first">武者さん</p>
         
     | 
| 
       542 
862 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -880,58 +1200,72 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       880 
1200 
     | 
    
         
             
                      </div>
         
     | 
| 
       881 
1201 
     | 
    
         
             
                    </div>
         
     | 
| 
       882 
1202 
     | 
    
         
             
                  </div>
         
     | 
| 
       883 
     | 
    
         
            -
                  <div class="sphinxsidebar">
         
     | 
| 
      
 1203 
     | 
    
         
            +
                  <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
         
     | 
| 
       884 
1204 
     | 
    
         
             
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
       885 
1205 
     | 
    
         
             
              <h3><a href="index.html">目次</a></h3>
         
     | 
| 
       886 
1206 
     | 
    
         
             
              <ul>
         
     | 
| 
       887 
1207 
     | 
    
         
             
            <li><a class="reference internal" href="#">お知らせ</a><ul>
         
     | 
| 
       888 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1208 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-7-2015-08-31">5.0.7リリース - 2015-08-31</a><ul>
         
     | 
| 
       889 
1209 
     | 
    
         
             
            <li><a class="reference internal" href="#improvements">改良</a></li>
         
     | 
| 
       890 
1210 
     | 
    
         
             
            <li><a class="reference internal" href="#fixes">修正</a></li>
         
     | 
| 
       891 
1211 
     | 
    
         
             
            <li><a class="reference internal" href="#thanks">感謝</a></li>
         
     | 
| 
       892 
1212 
     | 
    
         
             
            </ul>
         
     | 
| 
       893 
1213 
     | 
    
         
             
            </li>
         
     | 
| 
       894 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1214 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-6-2015-07-29">5.0.6リリース - 2015-07-29</a><ul>
         
     | 
| 
       895 
1215 
     | 
    
         
             
            <li><a class="reference internal" href="#id1">改良</a></li>
         
     | 
| 
       896 
1216 
     | 
    
         
             
            <li><a class="reference internal" href="#id2">修正</a></li>
         
     | 
| 
       897 
1217 
     | 
    
         
             
            <li><a class="reference internal" href="#id3">感謝</a></li>
         
     | 
| 
       898 
1218 
     | 
    
         
             
            </ul>
         
     | 
| 
       899 
1219 
     | 
    
         
             
            </li>
         
     | 
| 
       900 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1220 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-5-2015-06-29">5.0.5リリース - 2015-06-29</a><ul>
         
     | 
| 
       901 
1221 
     | 
    
         
             
            <li><a class="reference internal" href="#id4">改良</a></li>
         
     | 
| 
       902 
1222 
     | 
    
         
             
            <li><a class="reference internal" href="#id5">修正</a></li>
         
     | 
| 
       903 
1223 
     | 
    
         
             
            <li><a class="reference internal" href="#id6">感謝</a></li>
         
     | 
| 
       904 
1224 
     | 
    
         
             
            </ul>
         
     | 
| 
       905 
1225 
     | 
    
         
             
            </li>
         
     | 
| 
       906 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1226 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-4-2015-05-29">5.0.4リリース - 2015-05-29</a><ul>
         
     | 
| 
       907 
1227 
     | 
    
         
             
            <li><a class="reference internal" href="#id7">改良</a></li>
         
     | 
| 
       908 
1228 
     | 
    
         
             
            <li><a class="reference internal" href="#id8">修正</a></li>
         
     | 
| 
       909 
1229 
     | 
    
         
             
            <li><a class="reference internal" href="#id9">感謝</a></li>
         
     | 
| 
       910 
1230 
     | 
    
         
             
            </ul>
         
     | 
| 
       911 
1231 
     | 
    
         
             
            </li>
         
     | 
| 
       912 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1232 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-3-2015-04-29">5.0.3リリース - 2015-04-29</a><ul>
         
     | 
| 
       913 
1233 
     | 
    
         
             
            <li><a class="reference internal" href="#id10">改良</a></li>
         
     | 
| 
       914 
1234 
     | 
    
         
             
            <li><a class="reference internal" href="#id11">修正</a></li>
         
     | 
| 
       915 
1235 
     | 
    
         
             
            <li><a class="reference internal" href="#id12">感謝</a></li>
         
     | 
| 
       916 
1236 
     | 
    
         
             
            </ul>
         
     | 
| 
       917 
1237 
     | 
    
         
             
            </li>
         
     | 
| 
       918 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 1238 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-2-2015-03-31">5.0.2リリース - 2015-03-31</a><ul>
         
     | 
| 
       919 
1239 
     | 
    
         
             
            <li><a class="reference internal" href="#id13">改良</a></li>
         
     | 
| 
       920 
1240 
     | 
    
         
             
            <li><a class="reference internal" href="#id14">修正</a></li>
         
     | 
| 
       921 
1241 
     | 
    
         
             
            <li><a class="reference internal" href="#id15">感謝</a></li>
         
     | 
| 
       922 
1242 
     | 
    
         
             
            </ul>
         
     | 
| 
       923 
1243 
     | 
    
         
             
            </li>
         
     | 
| 
      
 1244 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-1-2015-03-29">5.0.1リリース - 2015-03-29</a><ul>
         
     | 
| 
      
 1245 
     | 
    
         
            +
            <li><a class="reference internal" href="#id16">改良</a></li>
         
     | 
| 
      
 1246 
     | 
    
         
            +
            <li><a class="reference internal" href="#id17">修正</a></li>
         
     | 
| 
      
 1247 
     | 
    
         
            +
            <li><a class="reference internal" href="#id18">感謝</a></li>
         
     | 
| 
      
 1248 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1249 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 1250 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-0-2015-02-09">5.0.0リリース - 2015-02-09</a><ul>
         
     | 
| 
      
 1251 
     | 
    
         
            +
            <li><a class="reference internal" href="#id19">改良</a></li>
         
     | 
| 
      
 1252 
     | 
    
         
            +
            <li><a class="reference internal" href="#id20">修正</a></li>
         
     | 
| 
      
 1253 
     | 
    
         
            +
            <li><a class="reference internal" href="#id21">感謝</a></li>
         
     | 
| 
      
 1254 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 1255 
     | 
    
         
            +
            </li>
         
     | 
| 
       924 
1256 
     | 
    
         
             
            <li><a class="reference internal" href="#the-old-releases">古いリリース</a></li>
         
     | 
| 
       925 
1257 
     | 
    
         
             
            </ul>
         
     | 
| 
       926 
1258 
     | 
    
         
             
            </li>
         
     | 
| 
       927 
1259 
     | 
    
         
             
            </ul>
         
     | 
| 
       928 
1260 
     | 
    
         | 
| 
       929 
     | 
    
         
            -
              < 
     | 
| 
       930 
     | 
    
         
            -
             
     | 
| 
       931 
     | 
    
         
            -
                < 
     | 
| 
       932 
     | 
    
         
            -
             
     | 
| 
       933 
     | 
    
         
            -
             
     | 
| 
       934 
     | 
    
         
            -
             
     | 
| 
      
 1261 
     | 
    
         
            +
              <div role="note" aria-label="source link">
         
     | 
| 
      
 1262 
     | 
    
         
            +
                <h3>このページ</h3>
         
     | 
| 
      
 1263 
     | 
    
         
            +
                <ul class="this-page-menu">
         
     | 
| 
      
 1264 
     | 
    
         
            +
                  <li><a href="_sources/news.txt"
         
     | 
| 
      
 1265 
     | 
    
         
            +
                        rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 1266 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 1267 
     | 
    
         
            +
               </div>
         
     | 
| 
      
 1268 
     | 
    
         
            +
            <div id="searchbox" style="display: none" role="search">
         
     | 
| 
       935 
1269 
     | 
    
         
             
              <h3>クイック検索</h3>
         
     | 
| 
       936 
1270 
     | 
    
         
             
                <form class="search" action="search.html" method="get">
         
     | 
| 
       937 
1271 
     | 
    
         
             
                  <input type="text" name="q" />
         
     | 
| 
         @@ -948,16 +1282,16 @@ XXX_20150604 <- includes only 2015-06-04 records 
     | 
|
| 
       948 
1282 
     | 
    
         
             
                  </div>
         
     | 
| 
       949 
1283 
     | 
    
         
             
                  <div class="clearer"></div>
         
     | 
| 
       950 
1284 
     | 
    
         
             
                </div>
         
     | 
| 
       951 
     | 
    
         
            -
                <div class="related">
         
     | 
| 
      
 1285 
     | 
    
         
            +
                <div class="related" role="navigation" aria-label="related navigation">
         
     | 
| 
       952 
1286 
     | 
    
         
             
                  <h3>ナビゲーション</h3>
         
     | 
| 
       953 
1287 
     | 
    
         
             
                  <ul>
         
     | 
| 
       954 
1288 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       955 
1289 
     | 
    
         
             
                      <a href="genindex.html" title="総合索引"
         
     | 
| 
       956 
1290 
     | 
    
         
             
                         >索引</a></li>
         
     | 
| 
       957 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v5.0. 
     | 
| 
      
 1291 
     | 
    
         
            +
                    <li class="nav-item nav-item-0"><a href="index.html">Groonga v5.0.6-226-gd7da7e7ドキュメント</a> »</li> 
         
     | 
| 
       958 
1292 
     | 
    
         
             
                  </ul>
         
     | 
| 
       959 
1293 
     | 
    
         
             
                </div>
         
     | 
| 
       960 
     | 
    
         
            -
                <div class="footer">
         
     | 
| 
      
 1294 
     | 
    
         
            +
                <div class="footer" role="contentinfo">
         
     | 
| 
       961 
1295 
     | 
    
         
             
                    © Copyright 2009-2015, Brazil, Inc.
         
     | 
| 
       962 
1296 
     | 
    
         
             
                </div>
         
     | 
| 
       963 
1297 
     | 
    
         
             
              </body>
         
     |