rroonga 5.0.1-x86-mingw32 → 5.0.2-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 +1 -1
 - data/ext/groonga/rb-grn-logger.c +159 -3
 - data/ext/groonga/rb-grn-plugin.c +17 -1
 - data/ext/groonga/rb-grn-query-logger.c +129 -3
 - data/ext/groonga/rb-grn.h +1 -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/query-logger.rb +48 -3
 - data/lib/groonga/schema.rb +16 -3
 - data/rroonga-build.rb +3 -3
 - data/test/test-logger.rb +97 -2
 - data/test/test-plugin.rb +5 -1
 - data/test/test-query-logger.rb +149 -0
 - data/test/test-schema.rb +19 -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/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/lz4.exe +0 -0
 - data/vendor/local/bin/lz4c.exe +0 -0
 - data/vendor/local/bin/lz4cat +0 -0
 - data/vendor/local/bin/mecab-config +2 -2
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/bin/onig-config +1 -1
 - data/vendor/local/bin/zlib1.dll +0 -0
 - data/vendor/local/etc/groonga/httpd/groonga-httpd.conf +2 -2
 - data/vendor/local/include/groonga/groonga.h +1 -0
 - data/vendor/local/include/groonga/groonga/groonga.h +12 -6
 - data/vendor/local/include/groonga/groonga/portability.h +158 -0
 - data/vendor/local/include/msgpack.h +1 -0
 - data/vendor/local/include/msgpack.hpp +2 -1
 - data/vendor/local/include/msgpack/adaptor/bool.hpp +58 -0
 - data/vendor/local/include/msgpack/{type/bool.hpp → adaptor/bool_fwd.hpp} +11 -27
 - data/vendor/local/include/msgpack/adaptor/char_ptr.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/char_ptr_fwd.hpp +43 -0
 - data/vendor/local/include/msgpack/adaptor/check_container_size.hpp +61 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array.hpp +76 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_char_fwd.hpp +45 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/array_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/forward_list_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple.hpp +152 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/tuple_fwd.hpp +62 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map.hpp +142 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_map_fwd.hpp +53 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/cpp11/unordered_set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/define.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/deque.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/deque_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_define.hpp +3475 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple.hpp +13918 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp03_msgpack_tuple_fwd.hpp +4341 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_define.hpp +184 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/detail/cpp11_msgpack_tuple_fwd.hpp +84 -0
 - data/vendor/local/include/msgpack/adaptor/fixint.hpp +212 -0
 - data/vendor/local/include/msgpack/adaptor/fixint_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/float.hpp +105 -0
 - data/vendor/local/include/msgpack/adaptor/float_fwd.hpp +44 -0
 - data/vendor/local/include/msgpack/adaptor/int.hpp +308 -0
 - data/vendor/local/include/msgpack/adaptor/int_fwd.hpp +100 -0
 - data/vendor/local/include/msgpack/adaptor/list.hpp +83 -0
 - data/vendor/local/include/msgpack/adaptor/list_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/map.hpp +219 -0
 - data/vendor/local/include/msgpack/adaptor/map_fwd.hpp +69 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/msgpack_tuple_fwd.hpp +29 -0
 - data/vendor/local/include/msgpack/adaptor/nil.hpp +68 -0
 - data/vendor/local/include/msgpack/adaptor/nil_fwd.hpp +51 -0
 - data/vendor/local/include/msgpack/adaptor/pair.hpp +63 -0
 - data/vendor/local/include/msgpack/{type/pair.hpp → adaptor/pair_fwd.hpp} +10 -29
 - data/vendor/local/include/msgpack/adaptor/raw.hpp +98 -0
 - data/vendor/local/include/msgpack/{type/nil.hpp → adaptor/raw_fwd.hpp} +15 -30
 - data/vendor/local/include/msgpack/adaptor/set.hpp +134 -0
 - data/vendor/local/include/msgpack/adaptor/set_fwd.hpp +52 -0
 - data/vendor/local/include/msgpack/adaptor/string.hpp +78 -0
 - data/vendor/local/include/msgpack/adaptor/string_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map.hpp +164 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_map_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set.hpp +157 -0
 - data/vendor/local/include/msgpack/adaptor/tr1/unordered_set_fwd.hpp +75 -0
 - data/vendor/local/include/msgpack/adaptor/vector.hpp +87 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool.hpp +80 -0
 - data/vendor/local/include/msgpack/adaptor/vector_bool_fwd.hpp +40 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char.hpp +81 -0
 - data/vendor/local/include/msgpack/adaptor/vector_char_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/adaptor/vector_fwd.hpp +42 -0
 - data/vendor/local/include/msgpack/cpp_config.hpp +109 -0
 - data/vendor/local/include/msgpack/detail/cpp03_zone.hpp +662 -0
 - data/vendor/local/include/msgpack/detail/cpp11_zone.hpp +368 -0
 - data/vendor/local/include/msgpack/fbuffer.h +3 -4
 - data/vendor/local/include/msgpack/fbuffer.hpp +24 -16
 - data/vendor/local/include/msgpack/gcc_atomic.h +33 -0
 - data/vendor/local/include/msgpack/iterator.hpp +42 -0
 - data/vendor/local/include/msgpack/object.h +51 -30
 - data/vendor/local/include/msgpack/object.hpp +564 -273
 - data/vendor/local/include/msgpack/object_fwd.hpp +182 -0
 - data/vendor/local/include/msgpack/pack.h +23 -17
 - data/vendor/local/include/msgpack/pack.hpp +889 -164
 - data/vendor/local/include/msgpack/pack_define.h +2 -2
 - data/vendor/local/include/msgpack/pack_template.h +452 -356
 - data/vendor/local/include/msgpack/sbuffer.h +43 -37
 - data/vendor/local/include/msgpack/sbuffer.hpp +98 -76
 - data/vendor/local/include/msgpack/sysdep.h +48 -53
 - data/vendor/local/include/msgpack/type.hpp +35 -17
 - data/vendor/local/include/msgpack/unpack.h +62 -44
 - data/vendor/local/include/msgpack/unpack.hpp +1578 -217
 - data/vendor/local/include/msgpack/unpack_define.h +49 -47
 - data/vendor/local/include/msgpack/unpack_template.h +344 -284
 - data/vendor/local/include/msgpack/util.h +23 -0
 - data/vendor/local/include/msgpack/version.h +12 -6
 - data/vendor/local/include/msgpack/version.hpp +44 -0
 - data/vendor/local/include/msgpack/version_master.h +3 -0
 - data/vendor/local/include/msgpack/versioning.hpp +77 -0
 - data/vendor/local/include/msgpack/vrefbuffer.h +40 -34
 - data/vendor/local/include/msgpack/vrefbuffer.hpp +261 -64
 - data/vendor/local/include/msgpack/zbuffer.h +79 -79
 - data/vendor/local/include/msgpack/zbuffer.hpp +136 -67
 - data/vendor/local/include/msgpack/zone.h +65 -42
 - data/vendor/local/include/msgpack/zone.hpp +10 -445
 - data/vendor/local/include/msgpack_fwd.hpp +28 -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 +41 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll +0 -0
 - data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
 - data/vendor/local/lib/groonga/plugins/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 +1 -0
 - data/vendor/local/lib/groonga/plugins/sharding/logical_count.rb +17 -45
 - data/vendor/local/lib/groonga/plugins/sharding/logical_enumerator.rb +15 -6
 - data/vendor/local/lib/groonga/plugins/sharding/logical_range_filter.rb +63 -75
 - data/vendor/local/lib/groonga/plugins/sharding/range_expression_builder.rb +65 -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/expression_size_estimator.rb +38 -41
 - data/vendor/local/lib/groonga/scripts/ruby/scan_info_data.rb +3 -0
 - 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.a +0 -0
 - data/vendor/local/lib/liblz4.dll +0 -0
 - data/vendor/local/lib/liblz4.dll.1 +0 -0
 - data/vendor/local/lib/liblz4.dll.1.5.0 +0 -0
 - data/vendor/local/lib/libmecab.a +0 -0
 - data/vendor/local/lib/libmecab.dll.a +0 -0
 - data/vendor/local/lib/libmecab.la +2 -2
 - data/vendor/local/lib/libmsgpack.a +0 -0
 - data/vendor/local/lib/libmsgpack.dll.a +0 -0
 - data/vendor/local/lib/libmsgpack.la +4 -4
 - 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 +2 -2
 - 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/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +4 -4
 - 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 +7 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/en/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +12 -12
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +70 -13
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +17 -17
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +12 -11
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +21 -21
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/news.html +200 -103
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/request_cancel.html +8 -8
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grndb.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/vector_size.html +248 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorer.html +8 -7
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/development/release.txt +69 -52
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +56 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +4 -4
 - 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 +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +6 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +14 -14
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +93 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/0.x.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.0.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.1.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.2.x.txt +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/4.x.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/senna.txt +13 -13
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +135 -27
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/request_cancel.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +148 -7
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/vector_size.txt +76 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/scorer.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/gqtp.txt +38 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/spec/gqtp.txt +2 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +6 -4
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/client.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/community.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +14 -13
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +58 -42
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/index.html +15 -9
 - data/vendor/local/share/doc/groonga/ja/html/install.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +63 -11
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -18
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +10 -9
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/news.html +234 -106
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +24 -24
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +26 -26
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +8 -8
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/news/4.x.html +27 -27
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +32 -32
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +8 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_content_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/overview.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/index.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/scalar.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/request_id.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +141 -34
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/lock_clear.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_count.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/logical_range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/plugin_unregister.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/range_filter.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/request_cancel.html +25 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grndb.html +23 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +10 -10
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +146 -14
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +7 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/in_values.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/vector_size.html +249 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/reference/operations/geolocation_search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/regular_expression.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorer.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_at_most.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scorers/scorer_tf_idf.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/scoring_note.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/completion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/correction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/introduction.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/suggest/suggestion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/token_filters.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +11 -7
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +53 -8
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/memcached.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +10 -7
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +15 -11
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +7 -7
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +6 -6
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +6 -6
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/groonga-admin.css +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_217bc0_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_469bdd_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/css/redmond/jquery-ui-1.8.18.custom.css +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.ico +0 -0
 - data/vendor/local/share/groonga/html/admin.old/favicon.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/favicon.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.png +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/groonga.svg +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/images/loading.gif +0 -0
 - data/vendor/local/share/groonga/html/admin.old/index.html +297 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/index.ja.html +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.ja.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/groonga-admin.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-1.7.2.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery-ui-1.8.18.custom.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot-0.7.js +0 -0
 - data/vendor/local/share/groonga/html/{admin → admin.old}/js/jquery.flot.license.txt +0 -0
 - data/vendor/local/share/groonga/html/admin/.htaccess +543 -0
 - data/vendor/local/share/groonga/html/admin/404.html +133 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +229 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
 - data/vendor/local/share/groonga/html/admin/bower_components/bootstrap-sass-official/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
 - data/vendor/local/share/groonga/html/admin/images/yeoman.d2754b85.png +0 -0
 - data/vendor/local/share/groonga/html/admin/index.html +9 -297
 - data/vendor/local/share/groonga/html/admin/robots.txt +3 -0
 - data/vendor/local/share/groonga/html/admin/scripts/oldieshim.a466b7b1.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/scripts.87083bfd.js +1 -0
 - data/vendor/local/share/groonga/html/admin/scripts/vendor.fa48c0ac.js +13 -0
 - data/vendor/local/share/groonga/html/admin/styles/main.0390285b.css +1 -0
 - data/vendor/local/share/groonga/html/admin/styles/vendor.f4ae649a.css +10 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/new.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/columns/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/index.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/new.html +29 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/search.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/tables/show.html +1 -0
 - data/vendor/local/share/groonga/html/admin/views/top.html +1 -0
 - data/vendor/local/share/license/groonga-admin/LICENSE +502 -0
 - data/vendor/local/share/license/groonga-admin/README.md +79 -0
 - data/vendor/local/share/license/msgpack/AUTHORS +0 -1
 - data/vendor/local/share/man/ja/man1/groonga.1 +826 -147
 - data/vendor/local/share/man/man1/groonga.1 +812 -99
 - metadata +138 -55
 - data/doc/text/install.textile +0 -145
 - data/doc/text/tutorial.textile +0 -510
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/include/msgpack/type/define.hpp +0 -3465
 - data/vendor/local/include/msgpack/type/deque.hpp +0 -77
 - data/vendor/local/include/msgpack/type/fixint.hpp +0 -172
 - data/vendor/local/include/msgpack/type/float.hpp +0 -102
 - data/vendor/local/include/msgpack/type/int.hpp +0 -276
 - data/vendor/local/include/msgpack/type/list.hpp +0 -77
 - data/vendor/local/include/msgpack/type/map.hpp +0 -205
 - data/vendor/local/include/msgpack/type/raw.hpp +0 -94
 - data/vendor/local/include/msgpack/type/set.hpp +0 -122
 - data/vendor/local/include/msgpack/type/string.hpp +0 -62
 - data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +0 -150
 - data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +0 -142
 - data/vendor/local/include/msgpack/type/tuple.hpp +0 -13691
 - data/vendor/local/include/msgpack/type/vector.hpp +0 -81
 - data/vendor/local/share/doc/groonga/en/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/en/html/_static/us.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/jp.png +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/_static/us.png +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>お知らせ — Groonga v5.0. 
     | 
| 
      
 10 
     | 
    
         
            +
                <title>お知らせ — Groonga v5.0.3ドキュメント</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.3',
         
     | 
| 
       19 
19 
     | 
    
         
             
                    COLLAPSE_INDEX: false,
         
     | 
| 
       20 
20 
     | 
    
         
             
                    FILE_SUFFIX: '.html',
         
     | 
| 
       21 
21 
     | 
    
         
             
                    HAS_SOURCE:  true
         
     | 
| 
         @@ -26,7 +26,7 @@ 
     | 
|
| 
       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.3ドキュメント" href="index.html" /> 
         
     | 
| 
       30 
30 
     | 
    
         
             
              </head>
         
     | 
| 
       31 
31 
     | 
    
         
             
              <body>
         
     | 
| 
       32 
32 
     | 
    
         
             
            <div class="header">
         
     | 
| 
         @@ -40,7 +40,7 @@ 
     | 
|
| 
       40 
40 
     | 
    
         | 
| 
       41 
41 
     | 
    
         
             
              <div class="other-language-links">
         
     | 
| 
       42 
42 
     | 
    
         
             
                <ul>
         
     | 
| 
       43 
     | 
    
         
            -
                  <li><a href="../../en/html/news.html" 
     | 
| 
      
 43 
     | 
    
         
            +
                  <li><a href="../../en/html/news.html">English</a></li>
         
     | 
| 
       44 
44 
     | 
    
         
             
                </ul>
         
     | 
| 
       45 
45 
     | 
    
         
             
              </div>
         
     | 
| 
       46 
46 
     | 
    
         
             
            </div>
         
     | 
| 
         @@ -52,7 +52,7 @@ 
     | 
|
| 
       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><a href="index.html">Groonga v5.0.3ドキュメント</a> »</li> 
         
     | 
| 
       56 
56 
     | 
    
         
             
                  </ul>
         
     | 
| 
       57 
57 
     | 
    
         
             
                </div>  
         
     | 
| 
       58 
58 
     | 
    
         | 
| 
         @@ -63,21 +63,143 @@ 
     | 
|
| 
       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- 
     | 
| 
       68 
     | 
    
         
            -
            <p>5.0.1のバグフィックスリリースです。</p>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="release-5-0-3-2015-04-29">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <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>
         
     | 
| 
       69 
68 
     | 
    
         
             
            <div class="section" id="improvements">
         
     | 
| 
       70 
69 
     | 
    
         
             
            <h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       71 
70 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       72 
     | 
    
         
            -
            <li><p class="first"> 
     | 
| 
      
 71 
     | 
    
         
            +
            <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>
         
     | 
| 
       73 
72 
     | 
    
         
             
            </li>
         
     | 
| 
       74 
     | 
    
         
            -
            <li><p class="first">[ 
     | 
| 
      
 73 
     | 
    
         
            +
            <li><p class="first">[mruby] 正規表現パターンのサイズ推定をサポートしました。</p>
         
     | 
| 
      
 74 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <li><p class="first">[mruby] アクセサーのサイズ推定をサポートしました。</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <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で導入された <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></tt> 環境変数を削除しました。範囲インデックス検索を無効にするには <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_THRESHOLD=0</span></tt> を使ってください。</p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] 負の上限値とオフセットをサポートしました。</p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] パッケージで <a class="reference external" href="https://github.com/groonga/groonga-admin">Groonga Admin</a> を使うようにしました。</p>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] 閾値の意味を変更しました。</p>
         
     | 
| 
      
 84 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <li><p class="first">threshold <= 0.0: 常に範囲インデックスを使う</p>
         
     | 
| 
      
 86 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 87 
     | 
    
         
            +
            <li><p class="first">threshold >= 1.0: 範囲インデックスを全く使わない</p>
         
     | 
| 
      
 88 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 89 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 90 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 91 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] プラグインに対応しました。</p>
         
     | 
| 
      
 92 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 93 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 以下のオプションを追加しました。</p>
         
     | 
| 
      
 94 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 95 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--dump_plugins</span> <span class="pre">[yes(default)/no]</span></tt></li>
         
     | 
| 
      
 96 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--dump_schema</span> <span class="pre">[yes(default)/no]</span></tt></li>
         
     | 
| 
      
 97 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--dump_records</span> <span class="pre">[yes(default)/no]</span></tt></li>
         
     | 
| 
      
 98 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--dump_indexes</span> <span class="pre">[yes(default)/no]</span></tt></li>
         
     | 
| 
      
 99 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 100 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <li><p class="first">[API] <tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_get_ruby_suffix()</span></tt> を追加しました。</p>
         
     | 
| 
      
 102 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 103 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] インデックスカラムは参照カラムを参照するので、インデックスカラムを参照カラムの後に置くように修正しました。</p>
         
     | 
| 
      
 104 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 105 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 語彙表のレコードをダンプしないようにしました。</p>
         
     | 
| 
      
 106 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 107 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] 再度 <tt class="docutils literal"><span class="pre">TABLE_NO_KEY</span></tt> のときに <tt class="docutils literal"><span class="pre">_id</span></tt> を表示するようにしました。</p>
         
     | 
| 
      
 108 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 109 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/dump.html"><em>dump</em></a>] オフラインインデックス構築するようにしました。</p>
         
     | 
| 
      
 110 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 111 
     | 
    
         
            +
            <li><p class="first">ハッシュのキーサイズの上限値を4KiB(4096バイト)から64KiB - 1(65535バイト)に増やしました。</p>
         
     | 
| 
      
 112 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 113 
     | 
    
         
            +
            <li><p class="first">キャッシュのキーサイズの上限値を4KiB(4096バイト)から64KiB - 1(65535バイト)に増やしました。</p>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 115 
     | 
    
         
            +
            <li><p class="first">ネストしたインデックス検索のパフォーマンスを改善しました。</p>
         
     | 
| 
      
 116 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 117 
     | 
    
         
            +
            <li><p class="first">存在しない参照カラムにインデックスを使うようにしました。</p>
         
     | 
| 
      
 118 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 119 
     | 
    
         
            +
            <li><p class="first">[実験的] <a class="reference internal" href="reference/functions/vector_size.html"><em>vector_size</em></a> 関数を含むfunctions/vectorプラグインを追加しました。</p>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 121 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="install/windows.html"><em>Windows</em></a>] Visual Studioのバージョンを更新しました。 [GitHub groonga/meetup#4] [Hiroyuki Mizuharaさんが報告]</p>
         
     | 
| 
      
 122 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 123 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/cache_limit.html"><em>cache_limit</em></a>] キャッシュの上限値が減ったときに古いキャッシュから無効にするようにしました。 [株式会社ぐるなびさんが提案]</p>
         
     | 
| 
      
 124 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 125 
     | 
    
         
            +
            <li><p class="first">エラー時にerrnoなどの情報を表示するようにしました。</p>
         
     | 
| 
      
 126 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 127 
     | 
    
         
            +
            <li><p class="first">[windows] 安全な関数を使うようにしました。</p>
         
     | 
| 
      
 128 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 129 
     | 
    
         
            +
            <li><p class="first">ログローテーションの閾値を変更するためのAPIを追加しました。</p>
         
     | 
| 
      
 130 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 131 
     | 
    
         
            +
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_logger_set_rotate_threshold_size()</span></tt></li>
         
     | 
| 
      
 132 
     | 
    
         
            +
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_logger_get_rotate_threshold_size()</span></tt></li>
         
     | 
| 
      
 133 
     | 
    
         
            +
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_set_rotate_threshold_size()</span></tt></li>
         
     | 
| 
      
 134 
     | 
    
         
            +
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_default_query_logger_get_rotate_threshold_size()</span></tt></li>
         
     | 
| 
      
 135 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 136 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 137 
     | 
    
         
            +
            <li><p class="first">[実験的] ログローテーションをサポートしました。この機能はデフォルトでは無効です。以下のオプションで有効にできます。</p>
         
     | 
| 
      
 138 
     | 
    
         
            +
            <ul>
         
     | 
| 
      
 139 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--log-rotate-threshold-size</span></tt></li>
         
     | 
| 
      
 140 
     | 
    
         
            +
            <li><tt class="docutils literal"><span class="pre">--query-log-rotate-threshold-size</span></tt></li>
         
     | 
| 
      
 141 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 142 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 143 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="server/gqtp.html"><em>GQTP</em></a>] GQTPサーバーについてのドキュメントを追加しました。</p>
         
     | 
| 
      
 144 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 145 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a>] groonga実行ファイルのドキュメントを一部追加しました。</p>
         
     | 
| 
      
 146 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 147 
     | 
    
         
            +
            <li><p class="first">Ubuntu 15.04 (Vivid Vervet)をサポートしました。</p>
         
     | 
| 
      
 148 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 149 
     | 
    
         
            +
            <li><p class="first">Debian 8.0 (Jessie)をサポートしました。</p>
         
     | 
| 
      
 150 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 151 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a>] バンドルしているnginxのバージョンを最新(1.8.0)に更新しました。</p>
         
     | 
| 
       75 
152 
     | 
    
         
             
            </li>
         
     | 
| 
       76 
153 
     | 
    
         
             
            </ul>
         
     | 
| 
       77 
154 
     | 
    
         
             
            </div>
         
     | 
| 
       78 
155 
     | 
    
         
             
            <div class="section" id="fixes">
         
     | 
| 
       79 
156 
     | 
    
         
             
            <h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       80 
157 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
      
 158 
     | 
    
         
            +
            <li><p class="first">[windows] Microsoft Visual C++でビルドしたGroongaで、大きいデータ(少なくとも1GB以上)のオフラインインデックス構築(<a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a>) に失敗していた不具合を修正しました。 [Hideki ARAIさんが報告]</p>
         
     | 
| 
      
 159 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 160 
     | 
    
         
            +
            <li><p class="first">[mruby] 正規表現の中の <tt class="docutils literal"><span class="pre">\\</span></tt> をインデックス検索可能にしました。</p>
         
     | 
| 
      
 161 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 162 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">GRN_II_CURSOR_SET_MIN_ENABLE=yes</span></tt> のときにいくつかマッチ済みのレコードを返していなかった不具合を修正しました。</p>
         
     | 
| 
      
 163 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 164 
     | 
    
         
            +
            <li><p class="first">[sharding] 部分範囲がすべての範囲として扱われる不具合を修正しました。</p>
         
     | 
| 
      
 165 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 166 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] <tt class="docutils literal"><span class="pre">:order</span> <span class="pre">=></span> <span class="pre">"descending"</span></tt> が動作しない不具合を修正しました。</p>
         
     | 
| 
      
 167 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 168 
     | 
    
         
            +
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_count.html"><em>logical_count</em></a>] 範囲インデックスの集計を再度サポートしました。</p>
         
     | 
| 
      
 169 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 170 
     | 
    
         
            +
            <li><p class="first">誤動作の原因となる <tt class="xref c c-func docutils literal"><span class="pre">grn_pat_del()</span></tt> の不具合を修正し、無効なパトリシアトライノードのテストを追加しました。 [groonga-dev,03177] [yuya sakoさんが報告]</p>
         
     | 
| 
      
 171 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 172 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 173 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 174 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 175 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 176 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 177 
     | 
    
         
            +
            <li><p class="first">Hideki ARAIさん</p>
         
     | 
| 
      
 178 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 179 
     | 
    
         
            +
            <li><p class="first">Hiroyuki Mizuharaさん</p>
         
     | 
| 
      
 180 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 181 
     | 
    
         
            +
            <li><p class="first">株式会社ぐるなびさん</p>
         
     | 
| 
      
 182 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 183 
     | 
    
         
            +
            <li><p class="first">yuya sakoさん</p>
         
     | 
| 
      
 184 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 185 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 186 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 187 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 188 
     | 
    
         
            +
            <div class="section" id="release-5-0-2-2015-03-31">
         
     | 
| 
      
 189 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 190 
     | 
    
         
            +
            <p>5.0.1のバグフィックスリリースです。</p>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 192 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 193 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 194 
     | 
    
         
            +
            <li><p class="first">MessagePack 1.0.1をサポート。 [畑ケさんが報告]</p>
         
     | 
| 
      
 195 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 196 
     | 
    
         
            +
            <li><p class="first">[logical_range_filter] 範囲検索をデフォルトで無効にした。 環境変数 <tt class="docutils literal"><span class="pre">GRN_LOGICAL_RANGE_FILTER_ENABLED</span></tt> に <tt class="docutils literal"><span class="pre">yes</span></tt> を設定すれば有効になる。</p>
         
     | 
| 
      
 197 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 198 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 199 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 200 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 201 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
      
 202 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
       81 
203 
     | 
    
         
             
            <li><p class="first">JSONPが動作していなかった不具合を修正。これはGroonga 4.1.1で入った不具合。</p>
         
     | 
| 
       82 
204 
     | 
    
         
             
            </li>
         
     | 
| 
       83 
205 
     | 
    
         
             
            <li><p class="first">Groonga 5.0.1がx86環境でクラッシュする不具合を修正。[groonga-dev,03131] [篠田さんが報告]</p>
         
     | 
| 
         @@ -86,8 +208,8 @@ 
     | 
|
| 
       86 
208 
     | 
    
         
             
            </li>
         
     | 
| 
       87 
209 
     | 
    
         
             
            </ul>
         
     | 
| 
       88 
210 
     | 
    
         
             
            </div>
         
     | 
| 
       89 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       90 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 211 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 212 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       91 
213 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       92 
214 
     | 
    
         
             
            <li><p class="first">篠田さん</p>
         
     | 
| 
       93 
215 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -97,9 +219,9 @@ 
     | 
|
| 
       97 
219 
     | 
    
         
             
            </div>
         
     | 
| 
       98 
220 
     | 
    
         
             
            </div>
         
     | 
| 
       99 
221 
     | 
    
         
             
            <div class="section" id="release-5-0-1-2015-03-29">
         
     | 
| 
       100 
     | 
    
         
            -
            <span id="release-5-0-1"></span><h2>5.0.1リリース - 2015 
     | 
| 
       101 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       102 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 222 
     | 
    
         
            +
            <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>
         
     | 
| 
      
 223 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 224 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       103 
225 
     | 
    
         
             
            <ul>
         
     | 
| 
       104 
226 
     | 
    
         
             
            <li><p class="first">[<a class="reference internal" href="reference/commands/logical_range_filter.html"><em>logical_range_filter</em></a>] filterとsortをサポートしました。</p>
         
     | 
| 
       105 
227 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -107,7 +229,7 @@ 
     | 
|
| 
       107 
229 
     | 
    
         
             
            </li>
         
     | 
| 
       108 
230 
     | 
    
         
             
            <li><p class="first">Groongaをライブラリとして使う人向けにAPIの <a class="reference internal" href="reference/api/overview.html"><em>概要</em></a> を追加しました。</p>
         
     | 
| 
       109 
231 
     | 
    
         
             
            </li>
         
     | 
| 
       110 
     | 
    
         
            -
            <li><p class="first">[非互換] 内部で使っている <tt class="docutils literal"><span class="pre">_score</span></tt> の型を 32bit 
     | 
| 
      
 232 
     | 
    
         
            +
            <li><p class="first">[非互換] 内部で使っている <tt class="docutils literal"><span class="pre">_score</span></tt> の型を 32bit整数値から浮動小数点数に変更しました。この変更はGroongaのDB APIを使っているユーザーにとって非互換な変更です。クエリAPIを使っているユーザーには影響ありません。つまり、<a class="reference internal" href="reference/commands/select.html"><em>select</em></a> を使っているだけなら影響ないということです。新旧のバージョンのGroongaで動作するようにするには次のコードを使います:</p>
         
     | 
| 
       111 
233 
     | 
    
         
             
            <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>
         
     | 
| 
       112 
234 
     | 
    
         
             
            <span class="kt">double</span> <span class="n">score_value</span><span class="p">;</span>
         
     | 
| 
       113 
235 
     | 
    
         | 
| 
         @@ -133,7 +255,7 @@ 
     | 
|
| 
       133 
255 
     | 
    
         
             
            <p>上記のようにしていれば、あなたの書いたコードはAPIの互換性があり、ABIは互換性がない状態です。単にそのままリビルドしてください。コードの修正は不要です。</p>
         
     | 
| 
       134 
256 
     | 
    
         
             
            <p>もしあなたの書いたコードが上記のようにしていないなら、上記のコードを追加してください。</p>
         
     | 
| 
       135 
257 
     | 
    
         
             
            </li>
         
     | 
| 
       136 
     | 
    
         
            -
            <li><p class="first">DB APIに <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><tt class="xref c c-type docutils literal"><span class="pre">grn_obj</span></tt></a>  
     | 
| 
      
 258 
     | 
    
         
            +
            <li><p class="first">DB APIに <a class="reference internal" href="reference/api/grn_obj.html#c.grn_obj" title="grn_obj"><tt class="xref c c-type docutils literal"><span class="pre">grn_obj</span></tt></a> の型をチェックするための述語関数を追加しました。</p>
         
     | 
| 
       137 
259 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       138 
260 
     | 
    
         
             
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_obj_is_table()</span></tt></li>
         
     | 
| 
       139 
261 
     | 
    
         
             
            <li><tt class="xref c c-func docutils literal"><span class="pre">grn_obj_is_proc_proc()</span></tt></li>
         
     | 
| 
         @@ -167,7 +289,7 @@ 
     | 
|
| 
       167 
289 
     | 
    
         
             
            </li>
         
     | 
| 
       168 
290 
     | 
    
         
             
            <li><p class="first">[実験的][mecab] チャンクに分割してトークナイズできるようにしました。この機能は MeCabの "too long sentense" エラーの回避策です。有効にするには <tt class="docutils literal"><span class="pre">GRN_MECAB_CHUNKED_TOKENIZE_ENABLED</span></tt> 環境変数を <tt class="docutils literal"><span class="pre">yes</span></tt> に設定します。この設定により、Groonga は長いテキスト (デフォルトでは 8192 バイトを越えるテキスト)を小さなチャンクと呼ばれるかたまりに分割してMeCabへと渡します。この処理により、上記のエラーが発生しないようになります。さらに、このチャンクの閾値は <tt class="docutils literal"><span class="pre">GRN_MECAB_CHUNK_SIZE_THRESHOLD</span></tt> 環境変数でカスタマイズできます。<tt class="docutils literal"><span class="pre">,</span></tt>, <tt class="docutils literal"><span class="pre">.</span></tt>, <tt class="docutils literal"><span class="pre">!</span></tt>, <tt class="docutils literal"><span class="pre">?</span></tt>, <tt class="docutils literal"><span class="pre">U+3001</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">COMMA</span></tt>, <tt class="docutils literal"><span class="pre">U+3002</span> <span class="pre">IDEOGRAPHIC</span> <span class="pre">FULL</span> <span class="pre">STOP</span></tt>, <tt class="docutils literal"><span class="pre">U+FF01</span> <span class="pre">FULLWIDTH</span> <span class="pre">EXCLAMATION</span> <span class="pre">MARK</span></tt> と <tt class="docutils literal"><span class="pre">U+FF1F</span> <span class="pre">FULLWIDTH</span> <span class="pre">QUESTION</span> <span class="pre">MARK</span></tt> がチャンクの区切り文字として扱われます。</p>
         
     | 
| 
       169 
291 
     | 
    
         
             
            </li>
         
     | 
| 
       170 
     | 
    
         
            -
            <li><p class="first"><a class="reference internal" href="reference/executables/groonga.html"><em>groonga 
     | 
| 
      
 292 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> のサーバーモードで <tt class="docutils literal"><span class="pre">--pid-file</span></tt> をサポートしました。</p>
         
     | 
| 
       171 
293 
     | 
    
         
             
            </li>
         
     | 
| 
       172 
294 
     | 
    
         
             
            <li><p class="first">[groonga-httpd] Groongaを緩やかに停止することができるようにしました。コネクションを即座に強制終了しないようになります。</p>
         
     | 
| 
       173 
295 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -179,7 +301,7 @@ 
     | 
|
| 
       179 
301 
     | 
    
         
             
            </li>
         
     | 
| 
       180 
302 
     | 
    
         
             
            <li><p class="first">[doc] <a class="reference internal" href="reference/tokenizers.html"><em>トークナイザー</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
       181 
303 
     | 
    
         
             
            </li>
         
     | 
| 
       182 
     | 
    
         
            -
            <li><p class="first">POSIX.2  
     | 
| 
      
 304 
     | 
    
         
            +
            <li><p class="first">POSIX.2 との互換性を改善しました。bashの "source" コマンドのかわりに <tt class="docutils literal"><span class="pre">.</span></tt> を使うようにしました。[GitHub#317] [栗山さんがパッチ提供]</p>
         
     | 
| 
       183 
305 
     | 
    
         
             
            </li>
         
     | 
| 
       184 
306 
     | 
    
         
             
            <li><p class="first">[windows] デフォルトのIOバージョンを1に変更しました。これによりWindowsでディスク容量を削減できます。[groonga-dev,03118] [ongaeshiさんがテスト]</p>
         
     | 
| 
       185 
307 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -191,8 +313,8 @@ 
     | 
|
| 
       191 
313 
     | 
    
         
             
            </li>
         
     | 
| 
       192 
314 
     | 
    
         
             
            </ul>
         
     | 
| 
       193 
315 
     | 
    
         
             
            </div>
         
     | 
| 
       194 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       195 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 316 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 317 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       196 
318 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       197 
319 
     | 
    
         
             
            <li><p class="first">非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> 引数をGroongaのデフォルト設定ファイル(groonga.conf)で使わないようにしました。かわりに <tt class="docutils literal"><span class="pre">--bind-address</span></tt> を使います。 [Groonga-talk] [Dewanggaさんが報告]</p>
         
     | 
| 
       198 
320 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -210,7 +332,7 @@ 
     | 
|
| 
       210 
332 
     | 
    
         
             
            </li>
         
     | 
| 
       211 
333 
     | 
    
         
             
            </ul>
         
     | 
| 
       212 
334 
     | 
    
         
             
            </li>
         
     | 
| 
       213 
     | 
    
         
            -
            <li><p class="first">シェルのコマンドラインからGroongaのコマンドを <a class="reference internal" href="reference/executables/groonga.html"><em>groonga 
     | 
| 
      
 335 
     | 
    
         
            +
            <li><p class="first">シェルのコマンドラインからGroongaのコマンドを <a class="reference internal" href="reference/executables/groonga.html"><em>groonga executable file</em></a> に渡すと常に <tt class="docutils literal"><span class="pre">0</span></tt> を終了コードとして返す不具合を修正しました。 例えば、 <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">DB_PATH</span> <span class="pre">存在しないコマンド名</span></tt> を実行しても終了コードとして <tt class="docutils literal"><span class="pre">0</span></tt> を常に返します。</p>
         
     | 
| 
       214 
336 
     | 
    
         
             
            </li>
         
     | 
| 
       215 
337 
     | 
    
         
             
            <li><p class="first">2つ以上のプラグインを登録しているときにプラグインのパスが壊れてしまう不具合を修正しました。 [村上さんが報告]</p>
         
     | 
| 
       216 
338 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -218,8 +340,8 @@ 
     | 
|
| 
       218 
340 
     | 
    
         
             
            </li>
         
     | 
| 
       219 
341 
     | 
    
         
             
            </ul>
         
     | 
| 
       220 
342 
     | 
    
         
             
            </div>
         
     | 
| 
       221 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       222 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 343 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 344 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       223 
345 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       224 
346 
     | 
    
         
             
            <li><p class="first">Masatoshi Teruyaさん</p>
         
     | 
| 
       225 
347 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -237,13 +359,13 @@ 
     | 
|
| 
       237 
359 
     | 
    
         
             
            </div>
         
     | 
| 
       238 
360 
     | 
    
         
             
            </div>
         
     | 
| 
       239 
361 
     | 
    
         
             
            <div class="section" id="release-5-0-0-2015-02-09">
         
     | 
| 
       240 
     | 
    
         
            -
            <span id="release-5-0-0"></span><h2>5.0.0リリース - 2015 
     | 
| 
      
 362 
     | 
    
         
            +
            <span id="release-5-0-0"></span><h2>5.0.0リリース - 2015-02-09<a class="headerlink" href="#release-5-0-0-2015-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
       241 
363 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       242 
364 
     | 
    
         
             
            <li><p class="first">バージョン5.0.0になりました!</p>
         
     | 
| 
       243 
365 
     | 
    
         
             
            </li>
         
     | 
| 
       244 
366 
     | 
    
         
             
            </ul>
         
     | 
| 
       245 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       246 
     | 
    
         
            -
            <h3>改良<a class="headerlink" href="# 
     | 
| 
      
 367 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 368 
     | 
    
         
            +
            <h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       247 
369 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       248 
370 
     | 
    
         
             
            <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"><em>セキュリティー</em></a> に関して追加しました。</p>
         
     | 
| 
       249 
371 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -255,8 +377,8 @@ 
     | 
|
| 
       255 
377 
     | 
    
         
             
            </li>
         
     | 
| 
       256 
378 
     | 
    
         
             
            </ul>
         
     | 
| 
       257 
379 
     | 
    
         
             
            </div>
         
     | 
| 
       258 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       259 
     | 
    
         
            -
            <h3>修正<a class="headerlink" href="# 
     | 
| 
      
 380 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 381 
     | 
    
         
            +
            <h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       260 
382 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       261 
383 
     | 
    
         
             
            <li><p class="first">システムに互換性のないバージョンのonigmoもしくはonigurumaのヘッダーがインストールされているとビルドに失敗する問題を修正しました。 [GitHub#276] [武者さんがパッチ提供]</p>
         
     | 
| 
       262 
384 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -264,8 +386,8 @@ 
     | 
|
| 
       264 
386 
     | 
    
         
             
            </li>
         
     | 
| 
       265 
387 
     | 
    
         
             
            </ul>
         
     | 
| 
       266 
388 
     | 
    
         
             
            </div>
         
     | 
| 
       267 
     | 
    
         
            -
            <div class="section" id=" 
     | 
| 
       268 
     | 
    
         
            -
            <h3>感謝<a class="headerlink" href="# 
     | 
| 
      
 389 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 390 
     | 
    
         
            +
            <h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
         
     | 
| 
       269 
391 
     | 
    
         
             
            <ul class="simple">
         
     | 
| 
       270 
392 
     | 
    
         
             
            <li><p class="first">武者さん</p>
         
     | 
| 
       271 
393 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -294,269 +416,269 @@ 
     | 
|
| 
       294 
416 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id4">感謝</a></li>
         
     | 
| 
       295 
417 
     | 
    
         
             
            </ul>
         
     | 
| 
       296 
418 
     | 
    
         
             
            </li>
         
     | 
| 
       297 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-8-2014-11-29">4.0.8リリース - 2014 
     | 
| 
      
 419 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-8-2014-11-29">4.0.8リリース - 2014-11-29</a><ul>
         
     | 
| 
       298 
420 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id5">改良</a></li>
         
     | 
| 
       299 
421 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id6">修正</a></li>
         
     | 
| 
       300 
422 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id7">感謝</a></li>
         
     | 
| 
       301 
423 
     | 
    
         
             
            </ul>
         
     | 
| 
       302 
424 
     | 
    
         
             
            </li>
         
     | 
| 
       303 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-7-2014-10-29">4.0.7リリース - 2014 
     | 
| 
      
 425 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-7-2014-10-29">4.0.7リリース - 2014-10-29</a><ul>
         
     | 
| 
       304 
426 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id8">改良</a></li>
         
     | 
| 
       305 
427 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id9">修正</a></li>
         
     | 
| 
       306 
428 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id10">感謝</a></li>
         
     | 
| 
       307 
429 
     | 
    
         
             
            </ul>
         
     | 
| 
       308 
430 
     | 
    
         
             
            </li>
         
     | 
| 
       309 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-6-2014-09-29">4.0.6リリース - 2014 
     | 
| 
      
 431 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-6-2014-09-29">4.0.6リリース - 2014-09-29</a><ul>
         
     | 
| 
       310 
432 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id11">改良</a></li>
         
     | 
| 
       311 
433 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id12">修正</a></li>
         
     | 
| 
       312 
434 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id13">感謝</a></li>
         
     | 
| 
       313 
435 
     | 
    
         
             
            </ul>
         
     | 
| 
       314 
436 
     | 
    
         
             
            </li>
         
     | 
| 
       315 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-5-2014-08-29">4.0.5リリース - 2014 
     | 
| 
      
 437 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-5-2014-08-29">4.0.5リリース - 2014-08-29</a><ul>
         
     | 
| 
       316 
438 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id14">改良</a></li>
         
     | 
| 
       317 
439 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id15">修正</a></li>
         
     | 
| 
       318 
440 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id16">感謝</a></li>
         
     | 
| 
       319 
441 
     | 
    
         
             
            </ul>
         
     | 
| 
       320 
442 
     | 
    
         
             
            </li>
         
     | 
| 
       321 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-4-2014-07-29">4.0.4リリース - 2014 
     | 
| 
      
 443 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-4-2014-07-29">4.0.4リリース - 2014-07-29</a><ul>
         
     | 
| 
       322 
444 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id17">改良</a></li>
         
     | 
| 
       323 
445 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id18">修正</a></li>
         
     | 
| 
       324 
446 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id19">感謝</a></li>
         
     | 
| 
       325 
447 
     | 
    
         
             
            </ul>
         
     | 
| 
       326 
448 
     | 
    
         
             
            </li>
         
     | 
| 
       327 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-3-2014-06-29">4.0.3リリース - 2014 
     | 
| 
      
 449 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-3-2014-06-29">4.0.3リリース - 2014-06-29</a><ul>
         
     | 
| 
       328 
450 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id20">改良</a></li>
         
     | 
| 
       329 
451 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id21">修正</a></li>
         
     | 
| 
       330 
452 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id22">感謝</a></li>
         
     | 
| 
       331 
453 
     | 
    
         
             
            </ul>
         
     | 
| 
       332 
454 
     | 
    
         
             
            </li>
         
     | 
| 
       333 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-2-2014-05-29">4.0.2リリース - 2014 
     | 
| 
      
 455 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-2-2014-05-29">4.0.2リリース - 2014-05-29</a><ul>
         
     | 
| 
       334 
456 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id23">改良</a></li>
         
     | 
| 
       335 
457 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id24">修正</a></li>
         
     | 
| 
       336 
458 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id25">感謝</a></li>
         
     | 
| 
       337 
459 
     | 
    
         
             
            </ul>
         
     | 
| 
       338 
460 
     | 
    
         
             
            </li>
         
     | 
| 
       339 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-1-2014-03-29">4.0.1リリース - 2014 
     | 
| 
      
 461 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-1-2014-03-29">4.0.1リリース - 2014-03-29</a><ul>
         
     | 
| 
       340 
462 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id26">改良</a></li>
         
     | 
| 
       341 
463 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id27">修正</a></li>
         
     | 
| 
       342 
464 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id28">感謝</a></li>
         
     | 
| 
       343 
465 
     | 
    
         
             
            </ul>
         
     | 
| 
       344 
466 
     | 
    
         
             
            </li>
         
     | 
| 
       345 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-0-2014-02-09">4.0.0リリース - 2014 
     | 
| 
      
 467 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/4.x.html#release-4-0-0-2014-02-09">4.0.0リリース - 2014-02-09</a><ul>
         
     | 
| 
       346 
468 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id29">改良</a></li>
         
     | 
| 
       347 
469 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id30">修正</a></li>
         
     | 
| 
       348 
470 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/4.x.html#id31">感謝</a></li>
         
     | 
| 
       349 
471 
     | 
    
         
             
            </ul>
         
     | 
| 
       350 
472 
     | 
    
         
             
            </li>
         
     | 
| 
       351 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html">3.1.2リリース - 2014 
     | 
| 
      
 473 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html">3.1.2リリース - 2014-01-29</a><ul>
         
     | 
| 
       352 
474 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#improvements">改良</a></li>
         
     | 
| 
       353 
475 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#fixes">修正</a></li>
         
     | 
| 
       354 
476 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#thanks">感謝</a></li>
         
     | 
| 
       355 
477 
     | 
    
         
             
            </ul>
         
     | 
| 
       356 
478 
     | 
    
         
             
            </li>
         
     | 
| 
       357 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-1-2013-12-29">3.1.1リリース - 2013 
     | 
| 
      
 479 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-1-2013-12-29">3.1.1リリース - 2013-12-29</a><ul>
         
     | 
| 
       358 
480 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id1">改良</a></li>
         
     | 
| 
       359 
481 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id2">修正</a></li>
         
     | 
| 
       360 
482 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id3">感謝</a></li>
         
     | 
| 
       361 
483 
     | 
    
         
             
            </ul>
         
     | 
| 
       362 
484 
     | 
    
         
             
            </li>
         
     | 
| 
       363 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-0-2013-11-29">3.1.0リリース - 2013 
     | 
| 
      
 485 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-0-2013-11-29">3.1.0リリース - 2013-11-29</a><ul>
         
     | 
| 
       364 
486 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id4">改良</a></li>
         
     | 
| 
       365 
487 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id5">修正</a></li>
         
     | 
| 
       366 
488 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id6">感謝</a></li>
         
     | 
| 
       367 
489 
     | 
    
         
             
            </ul>
         
     | 
| 
       368 
490 
     | 
    
         
             
            </li>
         
     | 
| 
       369 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-9-2013-10-29">3.0.9リリース - 2013 
     | 
| 
      
 491 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-9-2013-10-29">3.0.9リリース - 2013-10-29</a><ul>
         
     | 
| 
       370 
492 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id7">改良</a></li>
         
     | 
| 
       371 
493 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id8">修正</a></li>
         
     | 
| 
       372 
494 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id9">感謝</a></li>
         
     | 
| 
       373 
495 
     | 
    
         
             
            </ul>
         
     | 
| 
       374 
496 
     | 
    
         
             
            </li>
         
     | 
| 
       375 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-8-2013-09-29">3.0.8リリース - 2013 
     | 
| 
      
 497 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-8-2013-09-29">3.0.8リリース - 2013-09-29</a><ul>
         
     | 
| 
       376 
498 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id10">改良</a></li>
         
     | 
| 
       377 
499 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id11">修正</a></li>
         
     | 
| 
       378 
500 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id12">感謝</a></li>
         
     | 
| 
       379 
501 
     | 
    
         
             
            </ul>
         
     | 
| 
       380 
502 
     | 
    
         
             
            </li>
         
     | 
| 
       381 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-7-2013-08-29">3.0.7リリース - 2013 
     | 
| 
      
 503 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-7-2013-08-29">3.0.7リリース - 2013-08-29</a><ul>
         
     | 
| 
       382 
504 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id13">改良</a></li>
         
     | 
| 
       383 
505 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id14">修正</a></li>
         
     | 
| 
       384 
506 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id15">感謝</a></li>
         
     | 
| 
       385 
507 
     | 
    
         
             
            </ul>
         
     | 
| 
       386 
508 
     | 
    
         
             
            </li>
         
     | 
| 
       387 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-6-2013-07-29">3.0.6リリース - 2013 
     | 
| 
      
 509 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-6-2013-07-29">3.0.6リリース - 2013-07-29</a><ul>
         
     | 
| 
       388 
510 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id16">改良</a></li>
         
     | 
| 
       389 
511 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id17">修正</a></li>
         
     | 
| 
       390 
512 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id18">感謝</a></li>
         
     | 
| 
       391 
513 
     | 
    
         
             
            </ul>
         
     | 
| 
       392 
514 
     | 
    
         
             
            </li>
         
     | 
| 
       393 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-5-2013-06-29">3.0.5リリース - 2013 
     | 
| 
      
 515 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-5-2013-06-29">3.0.5リリース - 2013-06-29</a><ul>
         
     | 
| 
       394 
516 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id19">改良</a></li>
         
     | 
| 
       395 
517 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id20">修正</a></li>
         
     | 
| 
       396 
518 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id21">感謝</a></li>
         
     | 
| 
       397 
519 
     | 
    
         
             
            </ul>
         
     | 
| 
       398 
520 
     | 
    
         
             
            </li>
         
     | 
| 
       399 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-4-2013-05-29">3.0.4リリース - 2013 
     | 
| 
      
 521 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-4-2013-05-29">3.0.4リリース - 2013-05-29</a><ul>
         
     | 
| 
       400 
522 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id22">改良</a></li>
         
     | 
| 
       401 
523 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id23">修正</a></li>
         
     | 
| 
       402 
524 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id24">感謝</a></li>
         
     | 
| 
       403 
525 
     | 
    
         
             
            </ul>
         
     | 
| 
       404 
526 
     | 
    
         
             
            </li>
         
     | 
| 
       405 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-3-2013-04-29">3.0.3リリース - 2013 
     | 
| 
      
 527 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-3-2013-04-29">3.0.3リリース - 2013-04-29</a><ul>
         
     | 
| 
       406 
528 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id25">改良</a></li>
         
     | 
| 
       407 
529 
     | 
    
         
             
            </ul>
         
     | 
| 
       408 
530 
     | 
    
         
             
            </li>
         
     | 
| 
       409 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-2-2013-03-29">3.0.2リリース - 2013 
     | 
| 
      
 531 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-2-2013-03-29">3.0.2リリース - 2013-03-29</a><ul>
         
     | 
| 
       410 
532 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id26">改良</a></li>
         
     | 
| 
       411 
533 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id27">修正</a></li>
         
     | 
| 
       412 
534 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id28">感謝</a></li>
         
     | 
| 
       413 
535 
     | 
    
         
             
            </ul>
         
     | 
| 
       414 
536 
     | 
    
         
             
            </li>
         
     | 
| 
       415 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-1-2013-02-28">3.0.1リリース - 2013 
     | 
| 
      
 537 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-1-2013-02-28">3.0.1リリース - 2013-02-28</a><ul>
         
     | 
| 
       416 
538 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id29">改良</a></li>
         
     | 
| 
       417 
539 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id30">修正</a></li>
         
     | 
| 
       418 
540 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id31">感謝</a></li>
         
     | 
| 
       419 
541 
     | 
    
         
             
            </ul>
         
     | 
| 
       420 
542 
     | 
    
         
             
            </li>
         
     | 
| 
       421 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-0-2013-02-09">3.0.0リリース - 2013 
     | 
| 
      
 543 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-0-2013-02-09">3.0.0リリース - 2013-02-09</a><ul>
         
     | 
| 
       422 
544 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id32">修正</a></li>
         
     | 
| 
       423 
545 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id33">感謝</a></li>
         
     | 
| 
       424 
546 
     | 
    
         
             
            </ul>
         
     | 
| 
       425 
547 
     | 
    
         
             
            </li>
         
     | 
| 
       426 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html">2.1.2リリース - 2013 
     | 
| 
      
 548 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html">2.1.2リリース - 2013-01-29</a><ul>
         
     | 
| 
       427 
549 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#improvements">改良</a></li>
         
     | 
| 
       428 
550 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#fixes">修正</a></li>
         
     | 
| 
       429 
551 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#thanks">感謝</a></li>
         
     | 
| 
       430 
552 
     | 
    
         
             
            </ul>
         
     | 
| 
       431 
553 
     | 
    
         
             
            </li>
         
     | 
| 
       432 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-1-2012-12-29">2.1.1リリース - 2012 
     | 
| 
      
 554 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-1-2012-12-29">2.1.1リリース - 2012-12-29</a><ul>
         
     | 
| 
       433 
555 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id1">修正</a></li>
         
     | 
| 
       434 
556 
     | 
    
         
             
            </ul>
         
     | 
| 
       435 
557 
     | 
    
         
             
            </li>
         
     | 
| 
       436 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-0-2012-12-29">2.1.0リリース - 2012 
     | 
| 
      
 558 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-0-2012-12-29">2.1.0リリース - 2012-12-29</a><ul>
         
     | 
| 
       437 
559 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id2">改良</a></li>
         
     | 
| 
       438 
560 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id3">修正</a></li>
         
     | 
| 
       439 
561 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id4">感謝</a></li>
         
     | 
| 
       440 
562 
     | 
    
         
             
            </ul>
         
     | 
| 
       441 
563 
     | 
    
         
             
            </li>
         
     | 
| 
       442 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-9-2012-11-29">2.0.9リリース - 2012 
     | 
| 
      
 564 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-9-2012-11-29">2.0.9リリース - 2012-11-29</a><ul>
         
     | 
| 
       443 
565 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id5">改良</a></li>
         
     | 
| 
       444 
566 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id6">修正</a></li>
         
     | 
| 
       445 
567 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id7">感謝</a></li>
         
     | 
| 
       446 
568 
     | 
    
         
             
            </ul>
         
     | 
| 
       447 
569 
     | 
    
         
             
            </li>
         
     | 
| 
       448 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-8-2012-10-29">2.0.8リリース - 2012 
     | 
| 
      
 570 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-8-2012-10-29">2.0.8リリース - 2012-10-29</a><ul>
         
     | 
| 
       449 
571 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id8">改良</a></li>
         
     | 
| 
       450 
572 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id9">修正</a></li>
         
     | 
| 
       451 
573 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id10">感謝</a></li>
         
     | 
| 
       452 
574 
     | 
    
         
             
            </ul>
         
     | 
| 
       453 
575 
     | 
    
         
             
            </li>
         
     | 
| 
       454 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-7-2012-09-29">2.0.7リリース - 2012 
     | 
| 
      
 576 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-7-2012-09-29">2.0.7リリース - 2012-09-29</a><ul>
         
     | 
| 
       455 
577 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id11">改良</a></li>
         
     | 
| 
       456 
578 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id12">修正</a></li>
         
     | 
| 
       457 
579 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id13">感謝</a></li>
         
     | 
| 
       458 
580 
     | 
    
         
             
            </ul>
         
     | 
| 
       459 
581 
     | 
    
         
             
            </li>
         
     | 
| 
       460 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-6-2012-08-29">2.0.6リリース - 2012 
     | 
| 
      
 582 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-6-2012-08-29">2.0.6リリース - 2012-08-29</a><ul>
         
     | 
| 
       461 
583 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id14">改良</a></li>
         
     | 
| 
       462 
584 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id15">修正</a></li>
         
     | 
| 
       463 
585 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id16">感謝</a></li>
         
     | 
| 
       464 
586 
     | 
    
         
             
            </ul>
         
     | 
| 
       465 
587 
     | 
    
         
             
            </li>
         
     | 
| 
       466 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-5-2012-07-29">2.0.5リリース - 2012 
     | 
| 
      
 588 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-5-2012-07-29">2.0.5リリース - 2012-07-29</a><ul>
         
     | 
| 
       467 
589 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id17">改良</a></li>
         
     | 
| 
       468 
590 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id18">修正</a></li>
         
     | 
| 
       469 
591 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id19">感謝</a></li>
         
     | 
| 
       470 
592 
     | 
    
         
             
            </ul>
         
     | 
| 
       471 
593 
     | 
    
         
             
            </li>
         
     | 
| 
       472 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-4-2012-06-29">2.0.4リリース - 2012 
     | 
| 
      
 594 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-4-2012-06-29">2.0.4リリース - 2012-06-29</a><ul>
         
     | 
| 
       473 
595 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id20">改良</a></li>
         
     | 
| 
       474 
596 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id21">修正</a></li>
         
     | 
| 
       475 
597 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id22">感謝</a></li>
         
     | 
| 
       476 
598 
     | 
    
         
             
            </ul>
         
     | 
| 
       477 
599 
     | 
    
         
             
            </li>
         
     | 
| 
       478 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-3-2012-05-29">2.0.3リリース - 2012 
     | 
| 
      
 600 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-3-2012-05-29">2.0.3リリース - 2012-05-29</a><ul>
         
     | 
| 
       479 
601 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id23">改良</a></li>
         
     | 
| 
       480 
602 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id24">修正</a></li>
         
     | 
| 
       481 
603 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id25">感謝</a></li>
         
     | 
| 
       482 
604 
     | 
    
         
             
            </ul>
         
     | 
| 
       483 
605 
     | 
    
         
             
            </li>
         
     | 
| 
       484 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-2-2012-04-29">2.0.2リリース - 2012 
     | 
| 
      
 606 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-2-2012-04-29">2.0.2リリース - 2012-04-29</a><ul>
         
     | 
| 
       485 
607 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id26">改良</a></li>
         
     | 
| 
       486 
608 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id27">修正</a></li>
         
     | 
| 
       487 
609 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id28">感謝</a></li>
         
     | 
| 
       488 
610 
     | 
    
         
             
            </ul>
         
     | 
| 
       489 
611 
     | 
    
         
             
            </li>
         
     | 
| 
       490 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-1-2012-03-29">2.0.1リリース - 2012 
     | 
| 
      
 612 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-1-2012-03-29">2.0.1リリース - 2012-03-29</a><ul>
         
     | 
| 
       491 
613 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id29">改良</a></li>
         
     | 
| 
       492 
614 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id30">修正</a></li>
         
     | 
| 
       493 
615 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id31">感謝</a></li>
         
     | 
| 
       494 
616 
     | 
    
         
             
            </ul>
         
     | 
| 
       495 
617 
     | 
    
         
             
            </li>
         
     | 
| 
       496 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-0-2012-02-29">2.0.0リリース - 2012 
     | 
| 
      
 618 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-0-2012-02-29">2.0.0リリース - 2012-02-29</a><ul>
         
     | 
| 
       497 
619 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id32">改良</a></li>
         
     | 
| 
       498 
620 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id33">修正</a></li>
         
     | 
| 
       499 
621 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id34">感謝</a></li>
         
     | 
| 
       500 
622 
     | 
    
         
             
            </ul>
         
     | 
| 
       501 
623 
     | 
    
         
             
            </li>
         
     | 
| 
       502 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.3.x.html">1.3.0リリース - 2012 
     | 
| 
      
 624 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.3.x.html">1.3.0リリース - 2012-01-29</a><ul>
         
     | 
| 
       503 
625 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#improvements">改良</a></li>
         
     | 
| 
       504 
626 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#thanks">感謝</a></li>
         
     | 
| 
       505 
627 
     | 
    
         
             
            </ul>
         
     | 
| 
       506 
628 
     | 
    
         
             
            </li>
         
     | 
| 
       507 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html">1.2.9リリース - 2011 
     | 
| 
      
 629 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html">1.2.9リリース - 2011-12-29</a><ul>
         
     | 
| 
       508 
630 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#improvements">改良</a></li>
         
     | 
| 
       509 
631 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#fixes">修正</a></li>
         
     | 
| 
       510 
632 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#thanks">感謝</a></li>
         
     | 
| 
       511 
633 
     | 
    
         
             
            </ul>
         
     | 
| 
       512 
634 
     | 
    
         
             
            </li>
         
     | 
| 
       513 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-8-2011-11-29">1.2.8リリース - 2011 
     | 
| 
      
 635 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-8-2011-11-29">1.2.8リリース - 2011-11-29</a><ul>
         
     | 
| 
       514 
636 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id1">改良</a></li>
         
     | 
| 
       515 
637 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id2">修正</a></li>
         
     | 
| 
       516 
638 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id3">感謝</a></li>
         
     | 
| 
       517 
639 
     | 
    
         
             
            </ul>
         
     | 
| 
       518 
640 
     | 
    
         
             
            </li>
         
     | 
| 
       519 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-7-2011-10-29">1.2.7リリース - 2011 
     | 
| 
      
 641 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-7-2011-10-29">1.2.7リリース - 2011-10-29</a><ul>
         
     | 
| 
       520 
642 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id4">改良</a></li>
         
     | 
| 
       521 
643 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id5">修正</a></li>
         
     | 
| 
       522 
644 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id6">感謝</a></li>
         
     | 
| 
       523 
645 
     | 
    
         
             
            </ul>
         
     | 
| 
       524 
646 
     | 
    
         
             
            </li>
         
     | 
| 
       525 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-6-2011-09-29">1.2.6リリース - 2011 
     | 
| 
      
 647 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-6-2011-09-29">1.2.6リリース - 2011-09-29</a><ul>
         
     | 
| 
       526 
648 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id7">改良</a></li>
         
     | 
| 
       527 
649 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id8">修正</a></li>
         
     | 
| 
       528 
650 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id9">感謝</a></li>
         
     | 
| 
       529 
651 
     | 
    
         
             
            </ul>
         
     | 
| 
       530 
652 
     | 
    
         
             
            </li>
         
     | 
| 
       531 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-5-2011-08-29">1.2.5リリース - 2011 
     | 
| 
      
 653 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-5-2011-08-29">1.2.5リリース - 2011-08-29</a><ul>
         
     | 
| 
       532 
654 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id10">改良</a></li>
         
     | 
| 
       533 
655 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id11">修正</a></li>
         
     | 
| 
       534 
656 
     | 
    
         
             
            </ul>
         
     | 
| 
       535 
657 
     | 
    
         
             
            </li>
         
     | 
| 
       536 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-4-2011-07-29">1.2.4リリース - 2011 
     | 
| 
      
 658 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-4-2011-07-29">1.2.4リリース - 2011-07-29</a><ul>
         
     | 
| 
       537 
659 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id12">改良</a></li>
         
     | 
| 
       538 
660 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id13">修正</a></li>
         
     | 
| 
       539 
661 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id14">感謝</a></li>
         
     | 
| 
       540 
662 
     | 
    
         
             
            </ul>
         
     | 
| 
       541 
663 
     | 
    
         
             
            </li>
         
     | 
| 
       542 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-3-2011-06-29">1.2.3リリース - 2011 
     | 
| 
      
 664 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-3-2011-06-29">1.2.3リリース - 2011-06-29</a><ul>
         
     | 
| 
       543 
665 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id15">改良</a></li>
         
     | 
| 
       544 
666 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id16">修正</a></li>
         
     | 
| 
       545 
667 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id17">感謝</a></li>
         
     | 
| 
       546 
668 
     | 
    
         
             
            </ul>
         
     | 
| 
       547 
669 
     | 
    
         
             
            </li>
         
     | 
| 
       548 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-2-2011-05-29">1.2.2リリース - 2011 
     | 
| 
      
 670 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#release-1-2-2-2011-05-29">1.2.2リリース - 2011-05-29</a><ul>
         
     | 
| 
       549 
671 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id18">改良</a></li>
         
     | 
| 
       550 
672 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id19">修正</a></li>
         
     | 
| 
       551 
673 
     | 
    
         
             
            </ul>
         
     | 
| 
       552 
674 
     | 
    
         
             
            </li>
         
     | 
| 
       553 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id20">1.2.1リリース - 2011 
     | 
| 
      
 675 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id20">1.2.1リリース - 2011-04-29</a><ul>
         
     | 
| 
       554 
676 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id21">改良</a></li>
         
     | 
| 
       555 
677 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id22">修正</a></li>
         
     | 
| 
       556 
678 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id23">感謝</a></li>
         
     | 
| 
       557 
679 
     | 
    
         
             
            </ul>
         
     | 
| 
       558 
680 
     | 
    
         
             
            </li>
         
     | 
| 
       559 
     | 
    
         
            -
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id24">1.2.0リリース - 2011 
     | 
| 
      
 681 
     | 
    
         
            +
            <li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html#id24">1.2.0リリース - 2011-03-29</a><ul>
         
     | 
| 
       560 
682 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id25">改良</a></li>
         
     | 
| 
       561 
683 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id26">修正</a></li>
         
     | 
| 
       562 
684 
     | 
    
         
             
            <li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#id27">実験的</a></li>
         
     | 
| 
         @@ -564,40 +686,40 @@ 
     | 
|
| 
       564 
686 
     | 
    
         
             
            </ul>
         
     | 
| 
       565 
687 
     | 
    
         
             
            </li>
         
     | 
| 
       566 
688 
     | 
    
         
             
            <li class="toctree-l1"><a class="reference internal" href="news/1.1.x.html">バージョン1.1.xのお知らせ</a><ul>
         
     | 
| 
       567 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.1.x.html#id1">1.1.0リリース - 2011 
     | 
| 
      
 689 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.1.x.html#id1">1.1.0リリース - 2011-02-09</a></li>
         
     | 
| 
       568 
690 
     | 
    
         
             
            </ul>
         
     | 
| 
       569 
691 
     | 
    
         
             
            </li>
         
     | 
| 
       570 
692 
     | 
    
         
             
            <li class="toctree-l1"><a class="reference internal" href="news/1.0.x.html">バージョン1.0.xのお知らせ</a><ul>
         
     | 
| 
       571 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id1">1.0.8リリース - 2011 
     | 
| 
       572 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id4">1.0.7リリース - 2011 
     | 
| 
       573 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id8">1.0.6リリース - 2010 
     | 
| 
       574 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id11">1.0.5リリース - 2010 
     | 
| 
       575 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id16">1.0.4リリース - 2010 
     | 
| 
       576 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id21">1.0.3リリース - 2010 
     | 
| 
       577 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id26">1.0.2リリース - 2010 
     | 
| 
       578 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id31">1.0.1リリース - 2010 
     | 
| 
       579 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id35">1.0.0リリース - 2010 
     | 
| 
      
 693 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id1">1.0.8リリース - 2011-02-02</a></li>
         
     | 
| 
      
 694 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id4">1.0.7リリース - 2011-01-29</a></li>
         
     | 
| 
      
 695 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id8">1.0.6リリース - 2010-12-31</a></li>
         
     | 
| 
      
 696 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id11">1.0.5リリース - 2010-12-29</a></li>
         
     | 
| 
      
 697 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id16">1.0.4リリース - 2010-11-29</a></li>
         
     | 
| 
      
 698 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id21">1.0.3リリース - 2010-10-29</a></li>
         
     | 
| 
      
 699 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id26">1.0.2リリース - 2010-09-09</a></li>
         
     | 
| 
      
 700 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id31">1.0.1リリース - 2010-09-06</a></li>
         
     | 
| 
      
 701 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/1.0.x.html#id35">1.0.0リリース - 2010-08-29</a></li>
         
     | 
| 
       580 
702 
     | 
    
         
             
            </ul>
         
     | 
| 
       581 
703 
     | 
    
         
             
            </li>
         
     | 
| 
       582 
704 
     | 
    
         
             
            <li class="toctree-l1"><a class="reference internal" href="news/0.x.html">バージョン0.xのお知らせ</a><ul>
         
     | 
| 
       583 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id1">0.7.7リリース - 2010 
     | 
| 
       584 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id4">0.7.6リリース - 2010 
     | 
| 
      
 705 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id1">0.7.7リリース - 2010-08-25</a></li>
         
     | 
| 
      
 706 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/0.x.html#id4">0.7.6リリース - 2010-08-19</a></li>
         
     | 
| 
       585 
707 
     | 
    
         
             
            </ul>
         
     | 
| 
       586 
708 
     | 
    
         
             
            </li>
         
     | 
| 
       587 
709 
     | 
    
         
             
            <li class="toctree-l1"><a class="reference internal" href="news/senna.html">News in Senna period</a><ul>
         
     | 
| 
       588 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#senna-groonga-2009-01-14">Senna -> groonga - 2009 
     | 
| 
       589 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id1">2006 
     | 
| 
       590 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id2">2006 
     | 
| 
       591 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id4">2006 
     | 
| 
       592 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id5">2006 
     | 
| 
       593 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id7">2005 
     | 
| 
       594 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id9">2005 
     | 
| 
       595 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id11">2005 
     | 
| 
       596 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id13">2005 
     | 
| 
       597 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id15">2005 
     | 
| 
       598 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id17">2005 
     | 
| 
       599 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id18">2005 
     | 
| 
       600 
     | 
    
         
            -
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id20">2005 
     | 
| 
      
 710 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#senna-groonga-2009-01-14">Senna -> groonga - 2009-01-14</a></li>
         
     | 
| 
      
 711 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id1">2006-04-05</a></li>
         
     | 
| 
      
 712 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id2">2006-03-03</a></li>
         
     | 
| 
      
 713 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id4">2006-01-16</a></li>
         
     | 
| 
      
 714 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id5">2006-01-12</a></li>
         
     | 
| 
      
 715 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id7">2005-12-22</a></li>
         
     | 
| 
      
 716 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id9">2005-10-27</a></li>
         
     | 
| 
      
 717 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id11">2005-09-17</a></li>
         
     | 
| 
      
 718 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id13">2005-09-08</a></li>
         
     | 
| 
      
 719 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id15">2005-08-16</a></li>
         
     | 
| 
      
 720 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id17">2005-07-05</a></li>
         
     | 
| 
      
 721 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id18">2005-06-23</a></li>
         
     | 
| 
      
 722 
     | 
    
         
            +
            <li class="toctree-l2"><a class="reference internal" href="news/senna.html#id20">2005-04-12</a></li>
         
     | 
| 
       601 
723 
     | 
    
         
             
            </ul>
         
     | 
| 
       602 
724 
     | 
    
         
             
            </li>
         
     | 
| 
       603 
725 
     | 
    
         
             
            </ul>
         
     | 
| 
         @@ -614,24 +736,30 @@ 
     | 
|
| 
       614 
736 
     | 
    
         
             
              <h3><a href="index.html">目次</a></h3>
         
     | 
| 
       615 
737 
     | 
    
         
             
              <ul>
         
     | 
| 
       616 
738 
     | 
    
         
             
            <li><a class="reference internal" href="#">お知らせ</a><ul>
         
     | 
| 
       617 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 739 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-3-2015-04-29">5.0.3リリース - 2015-04-29</a><ul>
         
     | 
| 
       618 
740 
     | 
    
         
             
            <li><a class="reference internal" href="#improvements">改良</a></li>
         
     | 
| 
       619 
741 
     | 
    
         
             
            <li><a class="reference internal" href="#fixes">修正</a></li>
         
     | 
| 
       620 
742 
     | 
    
         
             
            <li><a class="reference internal" href="#thanks">感謝</a></li>
         
     | 
| 
       621 
743 
     | 
    
         
             
            </ul>
         
     | 
| 
       622 
744 
     | 
    
         
             
            </li>
         
     | 
| 
       623 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 745 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-2-2015-03-31">5.0.2リリース - 2015-03-31</a><ul>
         
     | 
| 
       624 
746 
     | 
    
         
             
            <li><a class="reference internal" href="#id1">改良</a></li>
         
     | 
| 
       625 
747 
     | 
    
         
             
            <li><a class="reference internal" href="#id2">修正</a></li>
         
     | 
| 
       626 
748 
     | 
    
         
             
            <li><a class="reference internal" href="#id3">感謝</a></li>
         
     | 
| 
       627 
749 
     | 
    
         
             
            </ul>
         
     | 
| 
       628 
750 
     | 
    
         
             
            </li>
         
     | 
| 
       629 
     | 
    
         
            -
            <li><a class="reference internal" href="#release-5-0- 
     | 
| 
      
 751 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-1-2015-03-29">5.0.1リリース - 2015-03-29</a><ul>
         
     | 
| 
       630 
752 
     | 
    
         
             
            <li><a class="reference internal" href="#id4">改良</a></li>
         
     | 
| 
       631 
753 
     | 
    
         
             
            <li><a class="reference internal" href="#id5">修正</a></li>
         
     | 
| 
       632 
754 
     | 
    
         
             
            <li><a class="reference internal" href="#id6">感謝</a></li>
         
     | 
| 
       633 
755 
     | 
    
         
             
            </ul>
         
     | 
| 
       634 
756 
     | 
    
         
             
            </li>
         
     | 
| 
      
 757 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-5-0-0-2015-02-09">5.0.0リリース - 2015-02-09</a><ul>
         
     | 
| 
      
 758 
     | 
    
         
            +
            <li><a class="reference internal" href="#id7">改良</a></li>
         
     | 
| 
      
 759 
     | 
    
         
            +
            <li><a class="reference internal" href="#id8">修正</a></li>
         
     | 
| 
      
 760 
     | 
    
         
            +
            <li><a class="reference internal" href="#id9">感謝</a></li>
         
     | 
| 
      
 761 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 762 
     | 
    
         
            +
            </li>
         
     | 
| 
       635 
763 
     | 
    
         
             
            <li><a class="reference internal" href="#the-old-releases">古いリリース</a></li>
         
     | 
| 
       636 
764 
     | 
    
         
             
            </ul>
         
     | 
| 
       637 
765 
     | 
    
         
             
            </li>
         
     | 
| 
         @@ -665,7 +793,7 @@ 
     | 
|
| 
       665 
793 
     | 
    
         
             
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
       666 
794 
     | 
    
         
             
                      <a href="genindex.html" title="総合索引"
         
     | 
| 
       667 
795 
     | 
    
         
             
                         >索引</a></li>
         
     | 
| 
       668 
     | 
    
         
            -
                    <li><a href="index.html">Groonga v5.0. 
     | 
| 
      
 796 
     | 
    
         
            +
                    <li><a href="index.html">Groonga v5.0.3ドキュメント</a> »</li> 
         
     | 
| 
       669 
797 
     | 
    
         
             
                  </ul>
         
     | 
| 
       670 
798 
     | 
    
         
             
                </div>
         
     | 
| 
       671 
799 
     | 
    
         
             
                <div class="footer">
         
     |