rroonga 4.0.3-x86-mingw32 → 4.0.4-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 +13 -5
 - data/Gemfile +1 -1
 - data/README.textile +1 -1
 - data/Rakefile +8 -1
 - data/bin/grndump +1 -1
 - data/bin/grntest-log-analyze +1 -1
 - data/bin/groonga-database-inspect +1 -1
 - data/bin/groonga-index-dump +1 -1
 - data/doc/text/news.textile +28 -0
 - data/ext/groonga/extconf.rb +12 -2
 - data/ext/groonga/rb-grn-accessor.c +2 -1
 - data/ext/groonga/rb-grn-array-cursor.c +1 -1
 - data/ext/groonga/rb-grn-array.c +1 -1
 - data/ext/groonga/rb-grn-column.c +1 -1
 - data/ext/groonga/rb-grn-context.c +7 -5
 - data/ext/groonga/rb-grn-database.c +1 -1
 - data/ext/groonga/rb-grn-double-array-trie-cursor.c +1 -1
 - data/ext/groonga/rb-grn-double-array-trie.c +1 -1
 - data/ext/groonga/rb-grn-encoding-support.c +1 -1
 - data/ext/groonga/rb-grn-encoding.c +1 -1
 - data/ext/groonga/rb-grn-exception.c +1 -1
 - data/ext/groonga/rb-grn-expression-builder.c +1 -1
 - data/ext/groonga/rb-grn-expression.c +1 -1
 - data/ext/groonga/rb-grn-fix-size-column.c +1 -1
 - data/ext/groonga/rb-grn-geo-point.c +1 -1
 - data/ext/groonga/rb-grn-hash-cursor.c +1 -1
 - data/ext/groonga/rb-grn-hash.c +1 -1
 - data/ext/groonga/rb-grn-index-column.c +1 -1
 - data/ext/groonga/rb-grn-index-cursor.c +1 -1
 - data/ext/groonga/rb-grn-logger.c +1 -1
 - data/ext/groonga/rb-grn-normalizer.c +1 -1
 - data/ext/groonga/rb-grn-object.c +71 -45
 - data/ext/groonga/rb-grn-operator.c +1 -1
 - data/ext/groonga/rb-grn-patricia-trie-cursor.c +1 -1
 - data/ext/groonga/rb-grn-patricia-trie.c +1 -1
 - data/ext/groonga/rb-grn-plugin.c +1 -1
 - data/ext/groonga/rb-grn-posting.c +1 -1
 - data/ext/groonga/rb-grn-procedure-type.c +40 -0
 - data/ext/groonga/rb-grn-procedure.c +17 -4
 - data/ext/groonga/rb-grn-query-logger.c +1 -1
 - data/ext/groonga/rb-grn-record.c +1 -1
 - data/ext/groonga/rb-grn-snippet.c +1 -1
 - data/ext/groonga/rb-grn-table-cursor-key-support.c +1 -1
 - data/ext/groonga/rb-grn-table-cursor.c +1 -1
 - data/ext/groonga/rb-grn-table-key-support.c +1 -1
 - data/ext/groonga/rb-grn-table.c +3 -2
 - data/ext/groonga/rb-grn-type.c +1 -1
 - data/ext/groonga/rb-grn-utils.c +1 -1
 - data/ext/groonga/rb-grn-variable-size-column.c +55 -27
 - data/ext/groonga/rb-grn-variable.c +1 -1
 - data/ext/groonga/rb-grn.h +4 -2
 - data/ext/groonga/rb-groonga.c +3 -2
 - data/extconf.rb +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/groonga.rb +1 -1
 - data/lib/groonga/column.rb +1 -1
 - data/lib/groonga/context.rb +1 -1
 - data/lib/groonga/context/command-executor.rb +1 -1
 - data/lib/groonga/database-inspector.rb +1 -1
 - data/lib/groonga/database.rb +1 -1
 - data/lib/groonga/dumper.rb +1 -1
 - data/lib/groonga/expression-builder-19.rb +1 -1
 - data/lib/groonga/expression-builder.rb +1 -1
 - data/lib/groonga/geo-point.rb +1 -1
 - data/lib/groonga/grntest-log.rb +1 -1
 - data/lib/groonga/index-column.rb +1 -1
 - data/lib/groonga/logger.rb +1 -1
 - data/lib/groonga/memory-pool.rb +1 -2
 - data/lib/groonga/pagination.rb +1 -1
 - data/lib/groonga/patricia-trie.rb +1 -1
 - data/lib/groonga/posting.rb +1 -1
 - data/lib/groonga/query-logger.rb +1 -1
 - data/lib/groonga/record.rb +6 -2
 - data/lib/groonga/schema.rb +1 -1
 - data/lib/groonga/statistic-measurer.rb +1 -1
 - data/lib/groonga/sub-records.rb +1 -1
 - data/lib/groonga/table.rb +1 -1
 - data/misc/grnop2ruby.rb +1 -1
 - data/rroonga-build.rb +4 -4
 - data/rroonga.gemspec +3 -3
 - data/test/groonga-test-utils.rb +4 -4
 - data/test/run-test.rb +1 -1
 - data/test/test-accessor.rb +1 -1
 - data/test/test-array.rb +1 -1
 - data/test/test-column.rb +1 -1
 - data/test/test-command-select.rb +1 -1
 - data/test/test-context.rb +21 -16
 - data/test/test-convert.rb +1 -1
 - data/test/test-database-dumper.rb +1 -1
 - data/test/test-database-inspector.rb +1 -1
 - data/test/test-database.rb +38 -25
 - data/test/test-double-array-trie.rb +1 -1
 - data/test/test-encoding.rb +1 -1
 - data/test/test-exception.rb +12 -7
 - data/test/test-expression-builder.rb +1 -1
 - data/test/test-expression.rb +1 -1
 - data/test/test-fix-size-column.rb +1 -1
 - data/test/test-geo-point.rb +1 -1
 - data/test/test-gqtp.rb +1 -1
 - data/test/test-hash.rb +1 -1
 - data/test/test-index-column.rb +1 -1
 - data/test/test-index-cursor.rb +1 -1
 - data/test/test-lock-timeout.rb +1 -1
 - data/test/test-logger.rb +1 -1
 - data/test/test-memory-pool.rb +1 -1
 - data/test/test-normalizer.rb +1 -1
 - data/test/test-pagination.rb +1 -1
 - data/test/test-patricia-trie.rb +1 -1
 - data/test/test-plugin.rb +1 -1
 - data/test/test-procedure.rb +9 -2
 - data/test/test-record.rb +1 -1
 - data/test/test-remote.rb +1 -1
 - data/test/test-schema-create-table.rb +1 -1
 - data/test/test-schema-dumper.rb +1 -1
 - data/test/test-schema-type.rb +1 -1
 - data/test/test-schema.rb +1 -1
 - data/test/test-snippet.rb +1 -1
 - data/test/test-statistic-measurer.rb +1 -1
 - data/test/test-sub-records.rb +1 -1
 - data/test/test-table-dumper.rb +1 -1
 - data/test/test-table-key-support.rb +1 -1
 - data/test/test-table-offset-and-limit.rb +1 -1
 - data/test/test-table-select-mecab.rb +1 -1
 - data/test/test-table-select-normalize.rb +1 -1
 - data/test/test-table-select-weight.rb +1 -1
 - data/test/test-table-select.rb +1 -1
 - data/test/test-table-traverse.rb +1 -1
 - data/test/test-table.rb +1 -1
 - data/test/test-type.rb +1 -1
 - data/test/test-variable-size-column.rb +136 -67
 - data/test/test-variable.rb +1 -1
 - data/test/test-vector-column.rb +1 -1
 - data/test/test-version.rb +1 -1
 - data/vendor/local/bin/groonga-benchmark.exe +0 -0
 - data/vendor/local/bin/groonga.exe +0 -0
 - data/vendor/local/bin/libgcc_s_sjlj-1.dll +0 -0
 - data/vendor/local/bin/libgroonga-0.dll +0 -0
 - data/vendor/local/bin/libmecab-1.dll +0 -0
 - data/vendor/local/bin/libmsgpack-3.dll +0 -0
 - data/vendor/local/bin/libmsgpackc-2.dll +0 -0
 - data/vendor/local/bin/libstdc++-6.dll +0 -0
 - data/vendor/local/bin/libwinpthread-1.dll +0 -0
 - data/vendor/local/bin/mecab-config +0 -0
 - data/vendor/local/bin/mecab.exe +0 -0
 - data/vendor/local/include/groonga/groonga.h +38 -5
 - data/vendor/local/include/groonga/groonga/plugin.h +11 -83
 - data/vendor/local/include/groonga/groonga/tokenizer.h +10 -5
 - data/vendor/local/include/msgpack.h +1 -0
 - data/vendor/local/include/msgpack/fbuffer.h +47 -0
 - data/vendor/local/include/msgpack/fbuffer.hpp +56 -0
 - data/vendor/local/include/msgpack/object.hpp +12 -3
 - data/vendor/local/include/msgpack/pack.h +7 -3
 - data/vendor/local/include/msgpack/pack.hpp +26 -7
 - data/vendor/local/include/msgpack/pack_template.h +34 -7
 - data/vendor/local/include/msgpack/sbuffer.h +3 -2
 - data/vendor/local/include/msgpack/sbuffer.hpp +1 -1
 - data/vendor/local/include/msgpack/sysdep.h +27 -14
 - data/vendor/local/include/msgpack/type.hpp +2 -1
 - data/vendor/local/include/msgpack/type/define.hpp +747 -561
 - data/vendor/local/include/msgpack/type/float.hpp +24 -4
 - data/vendor/local/include/msgpack/type/int.hpp +78 -13
 - data/vendor/local/include/msgpack/type/tr1/unordered_map.hpp +31 -10
 - data/vendor/local/include/msgpack/type/tr1/unordered_set.hpp +30 -10
 - data/vendor/local/include/msgpack/unpack.h +9 -9
 - data/vendor/local/include/msgpack/unpack_define.h +16 -14
 - data/vendor/local/include/msgpack/unpack_template.h +19 -8
 - data/vendor/local/include/msgpack/version.h +1 -1
 - data/vendor/local/include/msgpack/vrefbuffer.h +10 -9
 - data/vendor/local/include/msgpack/vrefbuffer.hpp +4 -2
 - data/vendor/local/include/msgpack/zbuffer.h +3 -2
 - data/vendor/local/include/msgpack/zbuffer.hpp +4 -2
 - data/vendor/local/include/msgpack/zone.h +5 -4
 - data/vendor/local/include/msgpack/zone.hpp +10 -1
 - 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 +1 -1
 - 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 +1 -1
 - 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 +1 -1
 - 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/libgroonga.a +0 -0
 - data/vendor/local/lib/libgroonga.dll.a +0 -0
 - data/vendor/local/lib/libgroonga.la +1 -1
 - 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 +1 -1
 - data/vendor/local/lib/libmsgpackc.a +0 -0
 - data/vendor/local/lib/libmsgpackc.dll.a +0 -0
 - data/vendor/local/lib/libmsgpackc.la +1 -1
 - data/vendor/local/lib/pkgconfig/groonga.pc +2 -2
 - data/vendor/local/lib/pkgconfig/msgpack.pc +10 -0
 - 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 +0 -0
 - data/vendor/local/share/doc/groonga/en/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/contribution/documentation/i18n.txt +2 -6
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/centos.txt +7 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/debian.txt +9 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/fedora.txt +13 -15
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/ubuntu.txt +5 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/en/html/_sources/news.txt +149 -1194
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/1.3.x.txt +49 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/2.x.txt +617 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/news/3.x.txt +536 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/api/plugin.txt +122 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/columns/vector.txt +0 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/check.txt +50 -55
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/clearlock.txt +25 -31
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/column_remove.txt +26 -29
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/define_selector.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/defrag.txt +26 -29
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/dump.txt +28 -28
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_level.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_put.txt +20 -26
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/log_reopen.txt +29 -34
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/normalizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/quit.txt +20 -20
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/register.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/shutdown.txt +19 -20
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/status.txt +19 -24
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/suggest.txt +78 -87
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_list.txt +20 -22
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/table_remove.txt +19 -24
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenize.txt +27 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/commands/tokenizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/executables/groonga.txt +2 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_full.txt +132 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/highlight_html.txt +100 -0
 - data/vendor/local/share/doc/groonga/en/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/server/http/comparison.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/data.txt +6 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/drilldown.txt +3 -2
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/index.txt +28 -25
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/match_columns.txt +26 -21
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/network.txt +3 -3
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/patricia_trie.txt +17 -12
 - data/vendor/local/share/doc/groonga/en/html/_sources/tutorial/search.txt +44 -42
 - data/vendor/local/share/doc/groonga/en/html/_static/basic.css +0 -18
 - data/vendor/local/share/doc/groonga/en/html/_static/groonga.css +2 -0
 - data/vendor/local/share/doc/groonga/en/html/characteristic.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/release.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/i18n.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/documentation/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/contribution/report.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/development/travis-ci.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/genindex.html +136 -26
 - data/vendor/local/share/doc/groonga/en/html/geolocation_search.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/index.html +56 -56
 - data/vendor/local/share/doc/groonga/en/html/install.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/install/centos.html +43 -50
 - data/vendor/local/share/doc/groonga/en/html/install/debian.html +59 -35
 - data/vendor/local/share/doc/groonga/en/html/install/fedora.html +40 -44
 - data/vendor/local/share/doc/groonga/en/html/install/mac_os_x.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/install/others.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/install/solaris.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/install/ubuntu.html +33 -35
 - data/vendor/local/share/doc/groonga/en/html/install/windows.html +26 -28
 - data/vendor/local/share/doc/groonga/en/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news.html +320 -1367
 - data/vendor/local/share/doc/groonga/en/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.2.x.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/news/1.3.x.html +160 -0
 - data/vendor/local/share/doc/groonga/en/html/news/2.x.html +804 -0
 - data/vendor/local/share/doc/groonga/en/html/news/3.x.html +727 -0
 - data/vendor/local/share/doc/groonga/en/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/en/html/reference.html +41 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/api.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/api/global_configurations.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_cache.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_column.html +23 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_command_version.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ctx.html +28 -30
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_db.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_encoding.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_expr.html +30 -32
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_geo.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_hook.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_ii.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_index_cursor.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_info.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_match_escalation.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_obj.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_proc.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_search.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table.html +35 -37
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_table_cursor.html +25 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_type.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/grn_user_data.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/api/plugin.html +226 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/pseudo.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/columns/vector.html +17 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/command.html +33 -35
 - data/vendor/local/share/doc/groonga/en/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command/output_format.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/command/return_code.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/cache_limit.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/check.html +73 -85
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/clearlock.html +50 -62
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_create.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_list.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_remove.html +53 -65
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/column_rename.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/define_selector.html +45 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/defrag.html +49 -59
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/delete.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/dump.html +47 -51
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/load.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_level.html +44 -56
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_put.html +45 -57
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/log_reopen.html +54 -63
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalize.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/normalizer_list.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/quit.html +42 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/register.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_eval.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/ruby_load.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/select.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/shutdown.html +41 -46
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/status.html +52 -64
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/suggest.html +201 -213
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_create.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_list.html +74 -81
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/table_remove.html +42 -54
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenize.html +174 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/tokenizer_list.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/reference/commands/truncate.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/grnslap.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-benchmark.html +31 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga-suggest-learner.html +38 -27
 - data/vendor/local/share/doc/groonga/en/html/reference/executables/groonga.html +19 -21
 - data/vendor/local/share/doc/groonga/en/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/between.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/edit_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_circle.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/geo_in_rectangle.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_full.html +311 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/highlight_html.html +278 -0
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/html_untag.html +42 -44
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/now.html +37 -39
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/query.html +53 -55
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/rand.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/snippet_html.html +40 -42
 - data/vendor/local/share/doc/groonga/en/html/reference/functions/sub_filter.html +39 -41
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/query_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/grn_expr/script_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/indexing.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/reference/log.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/reference/normalizers.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/output.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/query_expanders/tsv.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tables.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tokenizers.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/tuning.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/reference/types.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/en/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/en/html/server.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/comparison.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/http/groonga.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/server/package.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/completion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/correction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/suggestion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/suggest/tutorial.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/en/html/tutorial.html +32 -34
 - data/vendor/local/share/doc/groonga/en/html/tutorial/data.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/drilldown.html +28 -29
 - data/vendor/local/share/doc/groonga/en/html/tutorial/index.html +52 -52
 - data/vendor/local/share/doc/groonga/en/html/tutorial/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/lexicon.html +21 -23
 - data/vendor/local/share/doc/groonga/en/html/tutorial/match_columns.html +57 -56
 - data/vendor/local/share/doc/groonga/en/html/tutorial/micro_blog.html +22 -24
 - data/vendor/local/share/doc/groonga/en/html/tutorial/network.html +20 -22
 - data/vendor/local/share/doc/groonga/en/html/tutorial/patricia_trie.html +46 -44
 - data/vendor/local/share/doc/groonga/en/html/tutorial/query_expansion.html +17 -19
 - data/vendor/local/share/doc/groonga/en/html/tutorial/search.html +71 -69
 - data/vendor/local/share/doc/groonga/ja/html/.buildinfo +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/contribution/documentation/i18n.txt +2 -6
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/centos.txt +7 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/debian.txt +9 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/fedora.txt +13 -15
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/mac_os_x.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/others.txt +4 -4
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/solaris.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/ubuntu.txt +5 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/install/windows.txt +9 -9
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news.txt +149 -1194
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/1.3.x.txt +49 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/2.x.txt +617 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/news/3.x.txt +536 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/api/plugin.txt +122 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/columns/vector.txt +0 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/check.txt +50 -55
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/clearlock.txt +25 -31
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/column_remove.txt +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/define_selector.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/defrag.txt +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/dump.txt +28 -28
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_level.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_put.txt +20 -26
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/log_reopen.txt +29 -34
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/normalizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/quit.txt +20 -20
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/register.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/shutdown.txt +19 -20
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/status.txt +19 -24
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/suggest.txt +78 -87
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_list.txt +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/table_remove.txt +19 -24
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenize.txt +27 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/commands/tokenizer_list.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-benchmark.txt +17 -5
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga-suggest-learner.txt +17 -8
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/executables/groonga.txt +2 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_full.txt +132 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/highlight_html.txt +100 -0
 - data/vendor/local/share/doc/groonga/ja/html/_sources/reference/functions/snippet_html.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/server/http/comparison.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/troubleshooting/mmap_cannot_allocate_memory.txt +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/data.txt +6 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/drilldown.txt +3 -2
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/index.txt +28 -25
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/match_columns.txt +26 -21
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/network.txt +3 -3
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/patricia_trie.txt +17 -12
 - data/vendor/local/share/doc/groonga/ja/html/_sources/tutorial/search.txt +44 -42
 - data/vendor/local/share/doc/groonga/ja/html/_static/basic.css +0 -18
 - data/vendor/local/share/doc/groonga/ja/html/_static/groonga.css +2 -0
 - data/vendor/local/share/doc/groonga/ja/html/characteristic.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/community.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/com.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/cooperation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/query.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/release.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/repository.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/development/test.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/c-api.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/i18n.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/contribution/documentation/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/contribution/report.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/development.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/development/travis-ci.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/genindex.html +136 -26
 - data/vendor/local/share/doc/groonga/ja/html/geolocation_search.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/index.html +53 -53
 - data/vendor/local/share/doc/groonga/ja/html/install.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/install/centos.html +44 -50
 - data/vendor/local/share/doc/groonga/ja/html/install/debian.html +62 -36
 - data/vendor/local/share/doc/groonga/ja/html/install/fedora.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/install/mac_os_x.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/install/others.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/install/solaris.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/install/ubuntu.html +34 -36
 - data/vendor/local/share/doc/groonga/ja/html/install/windows.html +26 -28
 - data/vendor/local/share/doc/groonga/ja/html/limitations.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news.html +354 -1643
 - data/vendor/local/share/doc/groonga/ja/html/news/0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.0.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.1.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.2.x.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/news/1.3.x.html +180 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/2.x.html +950 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/3.x.html +831 -0
 - data/vendor/local/share/doc/groonga/ja/html/news/senna.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/objects.inv +0 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference.html +41 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/api.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/global_configurations.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_cache.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_column.html +23 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_command_version.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ctx.html +28 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_db.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_encoding.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_expr.html +30 -32
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_geo.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_hook.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_ii.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_index_cursor.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_info.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_match_escalation.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_obj.html +40 -42
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_proc.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_search.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table.html +35 -37
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_table_cursor.html +25 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_type.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/grn_user_data.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/api/plugin.html +226 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/cast.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/column.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/pseudo.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/columns/vector.html +17 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/command.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/command_version.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/output_format.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/command/return_code.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/cache_limit.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/check.html +73 -85
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/clearlock.html +50 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_create.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_list.html +42 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_remove.html +53 -65
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/column_rename.html +27 -35
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/define_selector.html +45 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/defrag.html +49 -59
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/delete.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/dump.html +47 -51
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/load.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_level.html +44 -56
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_put.html +45 -57
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/log_reopen.html +54 -63
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalize.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/normalizer_list.html +27 -30
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/quit.html +42 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/register.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_eval.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/ruby_load.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/select.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/shutdown.html +41 -46
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/status.html +52 -64
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/suggest.html +195 -207
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_create.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_list.html +74 -81
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/table_remove.html +42 -54
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenize.html +172 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/tokenizer_list.html +26 -29
 - data/vendor/local/share/doc/groonga/ja/html/reference/commands/truncate.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/grnslap.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-benchmark.html +31 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-server-http.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-create-dataset.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga-suggest-learner.html +38 -27
 - data/vendor/local/share/doc/groonga/ja/html/reference/executables/groonga.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/function.html +25 -25
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/between.html +18 -21
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/edit_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_distance.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_circle.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/geo_in_rectangle.html +22 -24
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_full.html +294 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/highlight_html.html +266 -0
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/html_untag.html +42 -44
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/now.html +37 -39
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/query.html +55 -62
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/rand.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/snippet_html.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/functions/sub_filter.html +39 -41
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/query_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/grn_expr/script_syntax.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/indexing.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/reference/log.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/reference/normalizers.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/output.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/query_expanders/tsv.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tables.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tokenizers.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/tuning.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/reference/types.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/search.html +11 -11
 - data/vendor/local/share/doc/groonga/ja/html/searchindex.js +1 -1
 - data/vendor/local/share/doc/groonga/ja/html/server.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/comparison.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga-httpd.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/http/groonga.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/server/package.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec/gqtp.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/spec/search.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/completion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/correction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/introduction.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/suggestion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/suggest/tutorial.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/different_results_with_the_same_keyword.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/troubleshooting/mmap_cannot_allocate_memory.html +18 -20
 - data/vendor/local/share/doc/groonga/ja/html/tutorial.html +29 -31
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/data.html +24 -26
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/drilldown.html +28 -31
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/index.html +33 -35
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/introduction.html +20 -22
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/lexicon.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/match_columns.html +43 -43
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/micro_blog.html +19 -21
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/network.html +21 -23
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/patricia_trie.html +39 -38
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/query_expansion.html +17 -19
 - data/vendor/local/share/doc/groonga/ja/html/tutorial/search.html +68 -64
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/edict/edict2grn.rb +2 -2
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/eijiro/eijiro2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene-import.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/gene95/gene2grn.rb +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/index.html +2 -2
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.7.2.min.js +4 -0
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.18.custom.min.js +356 -0
 - data/vendor/local/share/groonga/examples/dictionary/init-db.sh +0 -0
 - data/vendor/local/share/groonga/examples/dictionary/jmdict/jmdict.rb +0 -0
 - data/vendor/local/share/groonga/html/admin/css/groonga-admin.css +11 -0
 - data/vendor/local/share/groonga/html/admin/index.html +75 -75
 - data/vendor/local/share/groonga/html/admin/index.ja.html +301 -0
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.ja.js +1372 -0
 - data/vendor/local/share/groonga/html/admin/js/groonga-admin.js +28 -28
 - data/vendor/local/share/license/groonga/README.md +49 -0
 - data/vendor/local/share/man/ja/man1/groonga.1 +1934 -1247
 - data/vendor/local/share/man/man1/groonga.1 +2008 -1240
 - metadata +111 -83
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-1.6.0.min.js +0 -16
 - data/vendor/local/share/groonga/examples/dictionary/html/js/jquery-ui-1.8.12.min.js +0 -406
 - data/vendor/local/share/license/groonga/AUTHORS +0 -17
 
| 
         @@ -0,0 +1,831 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
             
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         
     | 
| 
      
 3 
     | 
    
         
            +
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            <html xmlns="http://www.w3.org/1999/xhtml">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 8 
     | 
    
         
            +
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
         
     | 
| 
      
 9 
     | 
    
         
            +
                
         
     | 
| 
      
 10 
     | 
    
         
            +
                <title>3.1.2リリース - 2014/01/29 — Groonga v4.0.4-214-gb1aaec1ドキュメント</title>
         
     | 
| 
      
 11 
     | 
    
         
            +
                
         
     | 
| 
      
 12 
     | 
    
         
            +
                <link rel="stylesheet" href="../_static/groonga.css" type="text/css" />
         
     | 
| 
      
 13 
     | 
    
         
            +
                <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
         
     | 
| 
      
 14 
     | 
    
         
            +
                
         
     | 
| 
      
 15 
     | 
    
         
            +
                <script type="text/javascript">
         
     | 
| 
      
 16 
     | 
    
         
            +
                  var DOCUMENTATION_OPTIONS = {
         
     | 
| 
      
 17 
     | 
    
         
            +
                    URL_ROOT:    '../',
         
     | 
| 
      
 18 
     | 
    
         
            +
                    VERSION:     '4.0.4-214-gb1aaec1',
         
     | 
| 
      
 19 
     | 
    
         
            +
                    COLLAPSE_INDEX: false,
         
     | 
| 
      
 20 
     | 
    
         
            +
                    FILE_SUFFIX: '.html',
         
     | 
| 
      
 21 
     | 
    
         
            +
                    HAS_SOURCE:  true
         
     | 
| 
      
 22 
     | 
    
         
            +
                  };
         
     | 
| 
      
 23 
     | 
    
         
            +
                </script>
         
     | 
| 
      
 24 
     | 
    
         
            +
                <script type="text/javascript" src="../_static/jquery.js"></script>
         
     | 
| 
      
 25 
     | 
    
         
            +
                <script type="text/javascript" src="../_static/underscore.js"></script>
         
     | 
| 
      
 26 
     | 
    
         
            +
                <script type="text/javascript" src="../_static/doctools.js"></script>
         
     | 
| 
      
 27 
     | 
    
         
            +
                <script type="text/javascript" src="../_static/translations.js"></script>
         
     | 
| 
      
 28 
     | 
    
         
            +
                <link rel="shortcut icon" href="../_static/favicon.ico"/>
         
     | 
| 
      
 29 
     | 
    
         
            +
                <link rel="top" title="Groonga v4.0.4-214-gb1aaec1ドキュメント" href="../index.html" /> 
         
     | 
| 
      
 30 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 31 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 32 
     | 
    
         
            +
            <div class="header">
         
     | 
| 
      
 33 
     | 
    
         
            +
              <h1 class="title">
         
     | 
| 
      
 34 
     | 
    
         
            +
                <a id="top-link" href="../index.html">
         
     | 
| 
      
 35 
     | 
    
         
            +
                  <span class="project">groonga</span>
         
     | 
| 
      
 36 
     | 
    
         
            +
                  <span class="separator">-</span>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  <span class="description">オープンソースのカラムストア機能付き全文検索エンジン</span>
         
     | 
| 
      
 38 
     | 
    
         
            +
                </a>
         
     | 
| 
      
 39 
     | 
    
         
            +
              </h1>
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
              <div class="other-language-links">
         
     | 
| 
      
 42 
     | 
    
         
            +
                <ul>
         
     | 
| 
      
 43 
     | 
    
         
            +
                  <li><a href="../../../en/html/news/3.x.html"><img src="../_static/us.png" alt="English">English page</a></li>
         
     | 
| 
      
 44 
     | 
    
         
            +
                </ul>
         
     | 
| 
      
 45 
     | 
    
         
            +
              </div>
         
     | 
| 
      
 46 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 47 
     | 
    
         
            +
              
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 50 
     | 
    
         
            +
                  <h3>ナビゲーション</h3>
         
     | 
| 
      
 51 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 52 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 53 
     | 
    
         
            +
                      <a href="../genindex.html" title="総合索引"
         
     | 
| 
      
 54 
     | 
    
         
            +
                         accesskey="I">索引</a></li>
         
     | 
| 
      
 55 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li> 
         
     | 
| 
      
 56 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 57 
     | 
    
         
            +
                </div>  
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
      
 59 
     | 
    
         
            +
                <div class="document">
         
     | 
| 
      
 60 
     | 
    
         
            +
                  <div class="documentwrapper">
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <div class="bodywrapper">
         
     | 
| 
      
 62 
     | 
    
         
            +
                      <div class="body">
         
     | 
| 
      
 63 
     | 
    
         
            +
                        
         
     | 
| 
      
 64 
     | 
    
         
            +
              <div class="section" id="release-3-1-2-2014-01-29">
         
     | 
| 
      
 65 
     | 
    
         
            +
            <span id="release-3-1-2"></span><h1>3.1.2リリース - 2014/01/29<a class="headerlink" href="#release-3-1-2-2014-01-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 66 
     | 
    
         
            +
            <div class="section" id="improvements">
         
     | 
| 
      
 67 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 68 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 69 
     | 
    
         
            +
            <li><p class="first">[doc] "Groonga" 表記に更新しました。[cosmo0920さんがパッチ提供] [GitHub#136, #137, #138, #139, #140, #141, #142, #143, #144, #145, #146, #147, #148, #149, #150, #151]</p>
         
     | 
| 
      
 70 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 71 
     | 
    
         
            +
            <li><p class="first">ロックタイムアウトの値をカスタマイズできるようにしました。 詳細は <a class="reference internal" href="../reference/api/global_configurations.html"><em>全体設定</em></a> を参照してください。 [groonga-dev,02017] [yokuさんが提案]</p>
         
     | 
| 
      
 72 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 73 
     | 
    
         
            +
            <li><p class="first">[doc] ロックタイムアウトについての説明を追加しました。</p>
         
     | 
| 
      
 74 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 75 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">GRN_JA_SKIP_SAME_VALUE_PUT</span></tt> をデフォルトで有効にしました。以前のバージョンまでは、この設定は 'no' となっていました。この変更により、Groongaのデータベースのサイズの増加を抑制できます。</p>
         
     | 
| 
      
 76 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 77 
     | 
    
         
            +
            <li><p class="first">ネストしたインデックスと複数のキーワードを含むクエリに対するインデックスを使えるようにしました。この変更で複数のキーワードで絞り込んだときに検索結果が欠落していた問題が改善します。</p>
         
     | 
| 
      
 78 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 79 
     | 
    
         
            +
            <li><p class="first">スニペット向けにノーマライザーをカスタマイズするためのAPIを追加しました。</p>
         
     | 
| 
      
 80 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 81 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 82 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 83 
     | 
    
         
            +
            <div class="section" id="fixes">
         
     | 
| 
      
 84 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 85 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 86 
     | 
    
         
            +
            <li><p class="first">空のクエリに対してインデックスを使わないようにしました。この変更で、空のクエリでも検索できるようになりました。ただし空のレコードがたくさんあるとパフォーマンスの問題があることに注意してください。 [groonga-dev,02052] [村上さんが報告]</p>
         
     | 
| 
      
 87 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 88 
     | 
    
         
            +
            <li><p class="first">"X || Y"と"X && Y"の返り値の振舞いをECMAScriptに準拠するようにしました。"X || Y"では、もしXかYが条件を満す場合にはXもしくはYそのものの値を返します。以前は1もしくは0を返していました。</p>
         
     | 
| 
      
 89 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 90 
     | 
    
         
            +
            <li><p class="first">"X && Y"では、もしXとYが条件を満す場合には、1ではなく、Xの値を返します。もしXが条件を満さない場合には、0ではなくfalseを返します。</p>
         
     | 
| 
      
 91 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 92 
     | 
    
         
            +
            <li><p class="first">スニペットが見付からない場合にはnullを返すようにしました。この変更により、 <a class="reference internal" href="../reference/functions/snippet_html.html"><em>snippet_html</em></a> のデフォルトの値を指定できるようになりました。この用途には "snippet_html(XXX) || 'デフォルトの値'"を使って下さい。</p>
         
     | 
| 
      
 93 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 94 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 95 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 96 
     | 
    
         
            +
            <div class="section" id="thanks">
         
     | 
| 
      
 97 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 98 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 99 
     | 
    
         
            +
            <li><p class="first">cosmo0920さん</p>
         
     | 
| 
      
 100 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 101 
     | 
    
         
            +
            <li><p class="first">yokuさん</p>
         
     | 
| 
      
 102 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 103 
     | 
    
         
            +
            <li><p class="first">村上さん</p>
         
     | 
| 
      
 104 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 105 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 106 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 107 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 108 
     | 
    
         
            +
            <div class="section" id="release-3-1-1-2013-12-29">
         
     | 
| 
      
 109 
     | 
    
         
            +
            <span id="release-3-1-1"></span><h1>3.1.1リリース - 2013/12/29<a class="headerlink" href="#release-3-1-1-2013-12-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 110 
     | 
    
         
            +
            <div class="section" id="id1">
         
     | 
| 
      
 111 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 112 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 113 
     | 
    
         
            +
            <li><p class="first">[deb] Debianのパッケージングポリシーに準拠するようにしました。[groonga-dev,01930] [やまねさんが提案]</p>
         
     | 
| 
      
 114 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 115 
     | 
    
         
            +
            <li><p class="first">[deb] Debian 6.0 (squeeze)のサポートをやめました。</p>
         
     | 
| 
      
 116 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 117 
     | 
    
         
            +
            <li><p class="first">[deb] Ubuntu 10.04 (Lucid)のサポートをやめました。</p>
         
     | 
| 
      
 118 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 119 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> が全世界をサポートしました。</p>
         
     | 
| 
      
 120 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 121 
     | 
    
         
            +
            <li><p class="first">GeoPoint型の値のキャストに失敗したときにエラーを報告するようになりました。</p>
         
     | 
| 
      
 122 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 123 
     | 
    
         
            +
            <li><p class="first">疑似カラム名でアクセスするためにいくつかのマクロを公開するようにしました。[groonga-dev,01999] [whombxさんが提案]</p>
         
     | 
| 
      
 124 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 125 
     | 
    
         
            +
            <li><p class="first">[doc] ドリルダウンのドキュメントを整理しました。[@Yappoさんが報告]</p>
         
     | 
| 
      
 126 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 127 
     | 
    
         
            +
            <li><p class="first">特定の範囲にあるカラムの値をフィルタリングするのに使う <a class="reference internal" href="../reference/functions/between.html"><em>between</em></a> 関数をサポートしました。</p>
         
     | 
| 
      
 128 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 129 
     | 
    
         
            +
            <li><p class="first">[doc] Travis CIの環境情報を更新しました。[cosmo0920さんがパッチ提供]</p>
         
     | 
| 
      
 130 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 131 
     | 
    
         
            +
            <li><p class="first">[rpm][fedora] Fedora 19のサポートをやめました。</p>
         
     | 
| 
      
 132 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 133 
     | 
    
         
            +
            <li><p class="first">[rpm][fedora] Fedora 20をサポートしました。</p>
         
     | 
| 
      
 134 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 135 
     | 
    
         
            +
            <li><p class="first">[doc] "Groonga" 表記に更新しました。[cosmo0920さんがパッチ提供] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]</p>
         
     | 
| 
      
 136 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 137 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 138 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 139 
     | 
    
         
            +
            <div class="section" id="id2">
         
     | 
| 
      
 140 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 141 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 142 
     | 
    
         
            +
            <li><p class="first">[munin] GQTPのポート番号の誤りを修正しました。</p>
         
     | 
| 
      
 143 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 144 
     | 
    
         
            +
            <li><p class="first">[geo_in_circle] "LONGITUDExLATITUDE" を <a class="reference internal" href="../reference/functions/geo_in_circle.html"><em>geo_in_circle</em></a> の3番目の引数に与えたときにGroongaがクラッシュする問題を修正しました。</p>
         
     | 
| 
      
 145 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 146 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 147 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 148 
     | 
    
         
            +
            <div class="section" id="id3">
         
     | 
| 
      
 149 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 150 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 151 
     | 
    
         
            +
            <li><p class="first">やまねひできさん</p>
         
     | 
| 
      
 152 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 153 
     | 
    
         
            +
            <li><p class="first">whombxさん</p>
         
     | 
| 
      
 154 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 155 
     | 
    
         
            +
            <li><p class="first">@Yappoさん</p>
         
     | 
| 
      
 156 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 157 
     | 
    
         
            +
            <li><p class="first">cosmo0920さん</p>
         
     | 
| 
      
 158 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 159 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 160 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 161 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 162 
     | 
    
         
            +
            <div class="section" id="release-3-1-0-2013-11-29">
         
     | 
| 
      
 163 
     | 
    
         
            +
            <span id="release-3-1-0"></span><h1>3.1.0リリース - 2013/11/29<a class="headerlink" href="#release-3-1-0-2013-11-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 164 
     | 
    
         
            +
            <div class="section" id="id4">
         
     | 
| 
      
 165 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 166 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 167 
     | 
    
         
            +
            <li><p class="first">[実験的] 同じ値なら更新をスキップするオプションをサポートしました。
         
     | 
| 
      
 168 
     | 
    
         
            +
            GRN_JA_SKIP_SAME_VALUE_PUT=yesを環境変数に設定すると有効になります。</p>
         
     | 
| 
      
 169 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 170 
     | 
    
         
            +
            <li><p class="first">空のトークンを警告するときにトークナイザーと元のテキストを表示するよう
         
     | 
| 
      
 171 
     | 
    
         
            +
            にしました。これにより実際のトークンが表示されるので、トークンにまつわ
         
     | 
| 
      
 172 
     | 
    
         
            +
            る問題を調べるのに役立ちます。</p>
         
     | 
| 
      
 173 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 174 
     | 
    
         
            +
            <li><p class="first">AIOサポートを打ち切りました。[#2054] [sho MINAGAWAさんが報告]</p>
         
     | 
| 
      
 175 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 176 
     | 
    
         
            +
            <li><p class="first">[windows] Visual Studio Express 2008でのビルドをサポートしました。[#1964 21番目のコメント参照] 将来的にMariaDBへのバンドルを推進することを目的としています。</p>
         
     | 
| 
      
 177 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 178 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 179 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 180 
     | 
    
         
            +
            <div class="section" id="id5">
         
     | 
| 
      
 181 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 182 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 183 
     | 
    
         
            +
            <li><p class="first">"_value"カラムの型がInt32として扱われる問題を修正しました。このバグ
         
     | 
| 
      
 184 
     | 
    
         
            +
            で"_value"カラムの値が意図せずキャストされてしまうことがありました。[瀧内さんが報告]</p>
         
     | 
| 
      
 185 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 186 
     | 
    
         
            +
            <li><p class="first">ベンチマークプログラム向けにはGLib 2.14.0以降を要求するようにしました。
         
     | 
| 
      
 187 
     | 
    
         
            +
            ベンチマークプログラムがGRegexを使うようになったためです。
         
     | 
| 
      
 188 
     | 
    
         
            +
            Groongaを'--enable-benchmark'でビルドしようとしていた場合に問題となっ
         
     | 
| 
      
 189 
     | 
    
         
            +
            ていました。[groonga-dev,01890] [WINGさんが報告]</p>
         
     | 
| 
      
 190 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 191 
     | 
    
         
            +
            <li><p class="first">空のベクターカラムを更新しようとしたときにメモリリークする問題を修正し
         
     | 
| 
      
 192 
     | 
    
         
            +
            ました。</p>
         
     | 
| 
      
 193 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 194 
     | 
    
         
            +
            <li><p class="first">ベクターカラムのインデックスを更新するときにメモリリークする問題を修正
         
     | 
| 
      
 195 
     | 
    
         
            +
            しました。UTF-8として正しくないバイトシーケンスをカラムの値として保存
         
     | 
| 
      
 196 
     | 
    
         
            +
            してある場合にこの影響を受けます。</p>
         
     | 
| 
      
 197 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 198 
     | 
    
         
            +
            <li><p class="first">[プラグイン][windows] 'lib/groonga/plugins'を指定しないとregisterコマンドが
         
     | 
| 
      
 199 
     | 
    
         
            +
            失敗する問題を修正しました。[@yitoさんが報告]</p>
         
     | 
| 
      
 200 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 201 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 202 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 203 
     | 
    
         
            +
            <div class="section" id="id6">
         
     | 
| 
      
 204 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 205 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 206 
     | 
    
         
            +
            <li><p class="first">sho MINAGAWAさん</p>
         
     | 
| 
      
 207 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 208 
     | 
    
         
            +
            <li><p class="first">瀧内元気さん</p>
         
     | 
| 
      
 209 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 210 
     | 
    
         
            +
            <li><p class="first">WINGさん</p>
         
     | 
| 
      
 211 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 212 
     | 
    
         
            +
            <li><p class="first">@yitoさん</p>
         
     | 
| 
      
 213 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 214 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 215 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 216 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 217 
     | 
    
         
            +
            <div class="section" id="release-3-0-9-2013-10-29">
         
     | 
| 
      
 218 
     | 
    
         
            +
            <span id="release-3-0-9"></span><h1>3.0.9リリース - 2013/10/29<a class="headerlink" href="#release-3-0-9-2013-10-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 219 
     | 
    
         
            +
            <div class="section" id="id7">
         
     | 
| 
      
 220 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 221 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 222 
     | 
    
         
            +
            <li><p class="first">[doc][httpd] <a class="reference internal" href="../reference/executables/groonga-httpd.html#groonga-database-auto-create"><em>groonga_database_auto_create</em></a> ディレクティブのドキュメントを追加しました。</p>
         
     | 
| 
      
 223 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 224 
     | 
    
         
            +
            <li><p class="first">[httpd] <a class="reference internal" href="../reference/executables/groonga-httpd.html#groonga-cache-limit"><em>groonga_cache_limit</em></a> ディレクティブを追加しました。</p>
         
     | 
| 
      
 225 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 226 
     | 
    
         
            +
            <li><p class="first">[doc] zlib/lzoによる圧縮がデフォルトで無効となっている理由を追加しました。 [groonga-dev,01845] [村上さんが提案]</p>
         
     | 
| 
      
 227 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 228 
     | 
    
         
            +
            <li><p class="first">HTTPサーバーのRLIMIT_NOFILEに関連した制限を削除しました。HTTPサーバープロセスが4096以上のファイルを扱えるようにしています。</p>
         
     | 
| 
      
 229 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 230 
     | 
    
         
            +
            <li><p class="first">[実験的] Groongaへmrubyを統合するためのAPIをいくつか追加しました。 [GitHub#109, #110, #111, #112, #113, #114, #115, #116, #117, #118] [wanabeさんがパッチ提供]</p>
         
     | 
| 
      
 231 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 232 
     | 
    
         
            +
            <li><p class="first">[travis] Travis-CI上でCMakeによるビルドをサポートしました。</p>
         
     | 
| 
      
 233 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 234 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="../reference/tuning.html"><em>Tuning</em></a> のドキュメントを追加しました。</p>
         
     | 
| 
      
 235 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 236 
     | 
    
         
            +
            <li><p class="first">[実験的] <a class="reference internal" href="../reference/commands/ruby_load.html"><em>ruby_load</em></a> コマンドを追加しました。</p>
         
     | 
| 
      
 237 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 238 
     | 
    
         
            +
            <li><p class="first">[httpd] メッセージボディが複数バッファリングされているPOSTリクエストをサポートしました。そのような場合にこれまではタイムアウトしていました。 [GitHub#120] [鷲田さんがパッチを提供]</p>
         
     | 
| 
      
 239 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 240 
     | 
    
         
            +
            <li><p class="first">[gqtp] エラーメッセージをサポートしました。メッセージボディとしてテキストを二重引用符で囲むことなく返します。これは非互換な変更です。</p>
         
     | 
| 
      
 241 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 242 
     | 
    
         
            +
            <li><p class="first">[http] "400 Bad request" を引数のエラーとしてサポートしました。</p>
         
     | 
| 
      
 243 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 244 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="../suggest/completion.html"><em>補完</em></a> のサンプルを追加しました。</p>
         
     | 
| 
      
 245 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 246 
     | 
    
         
            +
            <li><p class="first">Ubuntu 13.10 Saucy Salamanderをサポート。</p>
         
     | 
| 
      
 247 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 248 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 249 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 250 
     | 
    
         
            +
            <div class="section" id="id8">
         
     | 
| 
      
 251 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 252 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 253 
     | 
    
         
            +
            <li><p class="first">オーバーフローによってSEGVを引き起こす不具合を修正しました。この問題はインデックスのサイズが仮想メモリのサイズを超過したような場合に発生します。 [groonga-dev,01661] [村上さんが報告]</p>
         
     | 
| 
      
 254 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 255 
     | 
    
         
            +
            <li><p class="first">テーブルを作成するときの不要なロックをかけないようにしました。この変更はGroonga 3.0.5で入ったパフォーマンス低下を解消します。</p>
         
     | 
| 
      
 256 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 257 
     | 
    
         
            +
            <li><p class="first">データベースに参照カラムがある場合に削除できない不具合を修正しました。インデックスカラムや参照カラムを先に削除することなく、インデックステーブルやカラムを削除しようとして失敗するというものです。[Eito Katagiriが報告] [GitHub Rroonga #13]</p>
         
     | 
| 
      
 258 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 259 
     | 
    
         
            +
            <li><p class="first">DATキーを使っているデータベースの削除でごみが残ったままになる不具合を修正しました。</p>
         
     | 
| 
      
 260 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 261 
     | 
    
         
            +
            <li><p class="first">[http] 同じワーカースレッドにおいてHTTPヘッダのバッファを共有していることによりメモリリークが発生していた問題を修正しました。</p>
         
     | 
| 
      
 262 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 263 
     | 
    
         
            +
            <li><p class="first">[httpd] <a class="reference internal" href="../reference/executables/groonga-httpd.html#groonga-database-auto-create"><em>groonga_database_auto_create</em></a> パラメータが継承されない不具合を修正しました。これらのパラメータはlocationブロック以外では無視されていました。</p>
         
     | 
| 
      
 264 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 265 
     | 
    
         
            +
            <li><p class="first">statusコマンドが正しくないキャッシュヒット率を返すことがある問題を修正しました。</p>
         
     | 
| 
      
 266 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 267 
     | 
    
         
            +
            <li><p class="first">Time型にキャストするときにオーバーフローする問題を修正しました。これはTime型に32bitの範囲を超えた値を設定する場合に影響します。</p>
         
     | 
| 
      
 268 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 269 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 270 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 271 
     | 
    
         
            +
            <div class="section" id="id9">
         
     | 
| 
      
 272 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 273 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 274 
     | 
    
         
            +
            <li><p class="first">村上さん</p>
         
     | 
| 
      
 275 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 276 
     | 
    
         
            +
            <li><p class="first">wanabeさん</p>
         
     | 
| 
      
 277 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 278 
     | 
    
         
            +
            <li><p class="first">鷲田基さん</p>
         
     | 
| 
      
 279 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 280 
     | 
    
         
            +
            <li><p class="first">Eito Katagiriさん</p>
         
     | 
| 
      
 281 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 282 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 283 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 284 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 285 
     | 
    
         
            +
            <div class="section" id="release-3-0-8-2013-09-29">
         
     | 
| 
      
 286 
     | 
    
         
            +
            <span id="release-3-0-8"></span><h1>3.0.8リリース - 2013/09/29<a class="headerlink" href="#release-3-0-8-2013-09-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 287 
     | 
    
         
            +
            <div class="section" id="id10">
         
     | 
| 
      
 288 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 289 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 290 
     | 
    
         
            +
            <li><p class="first">[admin] 検索機能のエラー処理を改善しました。エラーメッセージを表示した後に、読み込み中のダイアログを消去します。 [orangainさんがパッチ提供]</p>
         
     | 
| 
      
 291 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 292 
     | 
    
         
            +
            <li><p class="first">[admin] Enterキーで検索フォームを送信するようにしました。 [orangainさんがパッチ提供]</p>
         
     | 
| 
      
 293 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 294 
     | 
    
         
            +
            <li><p class="first">[admin] 検索フォームにプレースホルダを表示するようにしました。この変更で使用例を表示するようになります。 [orangainさんがパッチ提供]</p>
         
     | 
| 
      
 295 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 296 
     | 
    
         
            +
            <li><p class="first">[httpd] <a class="reference internal" href="../reference/executables/groonga-httpd.html#groonga-query-log-path"><em>groonga_query_log_path</em></a> ディレクティブをサポートしました。</p>
         
     | 
| 
      
 297 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 298 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="../reference/commands/select.html"><em>select</em></a> コマンドのレスポンスのヒット数に関するドキュメントを更新しました。</p>
         
     | 
| 
      
 299 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 300 
     | 
    
         
            +
            <li><p class="first">連続するスペースによって作られる空のトークンをトークナイザーでは無視するようにしました。 [groonga-dev,01729] [村上さんが報告]</p>
         
     | 
| 
      
 301 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 302 
     | 
    
         
            +
            <li><p class="first">[token delimit] 連続したスペースはスペース1つとして扱うことにしました。トークナイザーは2以上のスペースを入力として受付ます。</p>
         
     | 
| 
      
 303 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 304 
     | 
    
         
            +
            <li><p class="first">[doc] 各カラムごとのインデックスとマルチカラムインデックスについての備考を追加しました。</p>
         
     | 
| 
      
 305 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 306 
     | 
    
         
            +
            <li><p class="first">[doc] ソースコードへのリンクのラベルに言語の注記を追加しました。[groonga-dev,01751] [磯部さんが提案]</p>
         
     | 
| 
      
 307 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 308 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/commands/delete.html#cascade-delete"><em>カスケード削除</em></a> を参照しているレコードに対してサポートしました。これまでは、この操作でエラーになっていました。</p>
         
     | 
| 
      
 309 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 310 
     | 
    
         
            +
            <li><p class="first">[doc] READMEのドキュメントの参照先を更新しました。[groonga-dev,01800] [磯部さんが報告]</p>
         
     | 
| 
      
 311 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 312 
     | 
    
         
            +
            <li><p class="first">[実験的] <a class="reference internal" href="../reference/commands/ruby_eval.html"><em>ruby_eval</em></a> コマンドを追加しました。</p>
         
     | 
| 
      
 313 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 314 
     | 
    
         
            +
            <li><p class="first">[doc] GQTPとHTTPのサーバー利用に関して注記を追加しました。</p>
         
     | 
| 
      
 315 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 316 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 317 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 318 
     | 
    
         
            +
            <div class="section" id="id11">
         
     | 
| 
      
 319 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 320 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 321 
     | 
    
         
            +
            <li><p class="first">[admin] COLUMN_VECTOR の値を追加するボタンが機能しない不具合を修正しました。</p>
         
     | 
| 
      
 322 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 323 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 324 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 325 
     | 
    
         
            +
            <div class="section" id="id12">
         
     | 
| 
      
 326 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 327 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 328 
     | 
    
         
            +
            <li><p class="first">@orangainさん</p>
         
     | 
| 
      
 329 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 330 
     | 
    
         
            +
            <li><p class="first">村上さん</p>
         
     | 
| 
      
 331 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 332 
     | 
    
         
            +
            <li><p class="first">磯部和広さん</p>
         
     | 
| 
      
 333 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 334 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 335 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 336 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 337 
     | 
    
         
            +
            <div class="section" id="release-3-0-7-2013-08-29">
         
     | 
| 
      
 338 
     | 
    
         
            +
            <span id="release-3-0-7"></span><h1>3.0.7リリース - 2013/08/29<a class="headerlink" href="#release-3-0-7-2013-08-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 339 
     | 
    
         
            +
            <div class="section" id="id13">
         
     | 
| 
      
 340 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 341 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 342 
     | 
    
         
            +
            <li><p class="first">APIドキュメントを追加しました。[groonga-dev,01593] [GitHub#79,#80,#81,#82,#83,#84,#85,#86,#87,#88,#89,#90,#91,#92,#93,#95,#96,#97,#98,#99,#100]  [whombxさんがパッチを提供]</p>
         
     | 
| 
      
 343 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 344 
     | 
    
         
            +
            <li><p class="first">[table_remove] 参照されているパトリシアトライもしくはハッシュテーブルが削除されないようにした。この変更は参照されているテーブルがうっかり削除されないようにします。</p>
         
     | 
| 
      
 345 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 346 
     | 
    
         
            +
            <li><p class="first">長すぎるトークン (4096バイトを超過) を単に無視するようにしました。この変更はトークンの登録時に影響します。以前は、警告ではなくエラーとして扱っていました。[groonga-dev,01571] [村上さんが提案]</p>
         
     | 
| 
      
 347 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 348 
     | 
    
         
            +
            <li><p class="first">ログメッセージで無視された実際の語句を表示するようにしました。[groonga-dev,01621] [村上さんが報告]</p>
         
     | 
| 
      
 349 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 350 
     | 
    
         
            +
            <li><p class="first">[httpd] POSTメソッドでデータをロードできるようにしました。 [GitHub#101] [鷲田さんがパッチを提供]</p>
         
     | 
| 
      
 351 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 352 
     | 
    
         
            +
            <li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_log_path</span></tt> ディレクティブをサポートしました。</p>
         
     | 
| 
      
 353 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 354 
     | 
    
         
            +
            <li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_log_level</span></tt> ディレクティブをサポートしました。</p>
         
     | 
| 
      
 355 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 356 
     | 
    
         
            +
            <li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_cache_limit</span></tt> ディレクティブをサポートしました。</p>
         
     | 
| 
      
 357 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 358 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 359 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 360 
     | 
    
         
            +
            <div class="section" id="id14">
         
     | 
| 
      
 361 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 362 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 363 
     | 
    
         
            +
            <li><p class="first">式のエラーによってスタックオーバーフローを引き起す可能性のある不具合を修正しました。この変更はエラーが積み重なって突然groongaがクラッシュするのを防ぎます。</p>
         
     | 
| 
      
 364 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 365 
     | 
    
         
            +
            <li><p class="first">参照先のないベクタカラムの静的インデックス構築によりクラッシュする不具合を修正しました。</p>
         
     | 
| 
      
 366 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 367 
     | 
    
         
            +
            <li><p class="first">デーモンモード開始時のエラーでgroongaが終了しない不具合を修正しました。例えば、この不具合は <tt class="docutils literal"><span class="pre">groonga</span> <span class="pre">-d</span> <span class="pre">/tmp/non-existence.db</span></tt> で再現します。</p>
         
     | 
| 
      
 368 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 369 
     | 
    
         
            +
            <li><p class="first">[dump] 誤ったテーブルの型がダンプされる不具合を修正しました。この不具合はテーブルの型が <tt class="docutils literal"><span class="pre">TABLE_PAT_KEY</span></tt> かつ キーが参照型のときに発生します。</p>
         
     | 
| 
      
 370 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 371 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">--cache-limit</span></tt> のデフォルト値が0になっていた不具合を修正しました。デフォルト値は100に変更されました。</p>
         
     | 
| 
      
 372 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 373 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/functions/sub_filter.html"><em>sub_filter</em></a> を使用するとメモリリークするのを修正しました。</p>
         
     | 
| 
      
 374 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 375 
     | 
    
         
            +
            <li><p class="first">[doc] defragコマンドの説明の誤りを修正しました。 [@naoinaさんが報告]</p>
         
     | 
| 
      
 376 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 377 
     | 
    
         
            +
            <li><p class="first">[doc] 貢献する方法の説明を修正しました。 [GitHub#77] [横山さんがパッチを提供]</p>
         
     | 
| 
      
 378 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 379 
     | 
    
         
            +
            <li><p class="first">[プラグイン] 複数回データベースを開いているときにクラッシュする不具合を修正しました。この不具合は複数のプラグインが使われていて、同一のデータベースが複数のプロセスによってオープンされているような場合に影響します。[groonga-dev,01596] [村上さんが報告]</p>
         
     | 
| 
      
 380 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 381 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">AND</span></tt> の後のネストしたマッチが動作しない不具合を修正しました。 <tt class="docutils literal"><span class="pre">select</span> <span class="pre">...</span> <span class="pre">--filter</span> <span class="pre">'...</span> <span class="pre">&&</span> <span class="pre">nested.column</span> <span class="pre">@</span> <span class="pre">"keyword"'</span></tt> というクエリでこの不具合が再現します。 [groonga-dev,01599] [鷲田さんが報告]</p>
         
     | 
| 
      
 382 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 383 
     | 
    
         
            +
            <li><p class="first">特殊文字のドキュメントの誤字を修正しました。 [瀧内さんが報告]</p>
         
     | 
| 
      
 384 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 385 
     | 
    
         
            +
            <li><p class="first">不正な文字が渡されたときのエラーメッセージの誤りを修正しました。[吉田光男さんが報告]</p>
         
     | 
| 
      
 386 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 387 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 388 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 389 
     | 
    
         
            +
            <div class="section" id="id15">
         
     | 
| 
      
 390 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 391 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 392 
     | 
    
         
            +
            <li><p class="first">whombxさん</p>
         
     | 
| 
      
 393 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 394 
     | 
    
         
            +
            <li><p class="first">@naoinaさん</p>
         
     | 
| 
      
 395 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 396 
     | 
    
         
            +
            <li><p class="first">横山さん</p>
         
     | 
| 
      
 397 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 398 
     | 
    
         
            +
            <li><p class="first">鷲田基さん</p>
         
     | 
| 
      
 399 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 400 
     | 
    
         
            +
            <li><p class="first">瀧内元気さん</p>
         
     | 
| 
      
 401 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 402 
     | 
    
         
            +
            <li><p class="first">吉田光男さん</p>
         
     | 
| 
      
 403 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 404 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 405 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 406 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 407 
     | 
    
         
            +
            <div class="section" id="release-3-0-6-2013-07-29">
         
     | 
| 
      
 408 
     | 
    
         
            +
            <span id="release-3-0-6"></span><h1>3.0.6リリース - 2013/07/29<a class="headerlink" href="#release-3-0-6-2013-07-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 409 
     | 
    
         
            +
            <div class="section" id="id16">
         
     | 
| 
      
 410 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 411 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 412 
     | 
    
         
            +
            <li><p class="first">[doc] <a class="reference internal" href="../reference/functions/sub_filter.html"><em>sub_filter</em></a> の引数に関するドキュメントを追加しました。</p>
         
     | 
| 
      
 413 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 414 
     | 
    
         
            +
            <li><p class="first">[suggest] 0MQ 3.xをサポートしました。[GitHub#63] [稲田さんが報告]</p>
         
     | 
| 
      
 415 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 416 
     | 
    
         
            +
            <li><p class="first">NetBSD向けに <tt class="docutils literal"><span class="pre">pthread_{mutex,cond}attr_setpshared()</span></tt> が使えるかチェックを追加しました。[おばたさんが報告]</p>
         
     | 
| 
      
 417 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 418 
     | 
    
         
            +
            <li><p class="first">クエリ構文でバックスラッシュでのエスケープをサポートしました。[groonga-dev,01520] [田辺さんが報告]</p>
         
     | 
| 
      
 419 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 420 
     | 
    
         
            +
            <li><p class="first">[rpm][fedora] Fedora 19をサポート。</p>
         
     | 
| 
      
 421 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 422 
     | 
    
         
            +
            <li><p class="first">[rpm][fedora] Fedora 18サポートを削除。</p>
         
     | 
| 
      
 423 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 424 
     | 
    
         
            +
            <li><p class="first">[httpd] バンドルしているnginxのバージョンを1.4.2に更新しました。</p>
         
     | 
| 
      
 425 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 426 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 427 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 428 
     | 
    
         
            +
            <div class="section" id="id17">
         
     | 
| 
      
 429 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 430 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 431 
     | 
    
         
            +
            <li><p class="first">特定の関数(<tt class="docutils literal"><span class="pre">grn_obj_path()</span></tt>) が <tt class="docutils literal"><span class="pre">select</span></tt> のようなビルトイン関数で呼ばれたときにクラッシュする不具合を修正しました。[瀧内さんが報告]</p>
         
     | 
| 
      
 432 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 433 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 434 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 435 
     | 
    
         
            +
            <div class="section" id="id18">
         
     | 
| 
      
 436 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 437 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 438 
     | 
    
         
            +
            <li><p class="first">稲田尚也さん</p>
         
     | 
| 
      
 439 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 440 
     | 
    
         
            +
            <li><p class="first">おばたさん</p>
         
     | 
| 
      
 441 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 442 
     | 
    
         
            +
            <li><p class="first">田辺公平さん</p>
         
     | 
| 
      
 443 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 444 
     | 
    
         
            +
            <li><p class="first">瀧内元気さん</p>
         
     | 
| 
      
 445 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 446 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 447 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 448 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 449 
     | 
    
         
            +
            <div class="section" id="release-3-0-5-2013-06-29">
         
     | 
| 
      
 450 
     | 
    
         
            +
            <span id="release-3-0-5"></span><h1>3.0.5リリース - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 451 
     | 
    
         
            +
            <div class="section" id="id19">
         
     | 
| 
      
 452 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 453 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 454 
     | 
    
         
            +
            <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">query()</span></tt> の <tt class="docutils literal"><span class="pre">match_columns</span></tt> と <tt class="docutils literal"><span class="pre">query_string</span></tt> 引数のサマリを追加しました。</p>
         
     | 
| 
      
 455 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 456 
     | 
    
         
            +
            <li><p class="first">subrecordの情報をテーブルのインスペクション時に表示するようにしました。</p>
         
     | 
| 
      
 457 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 458 
     | 
    
         
            +
            <li><p class="first">シングルクォートした文字列を <tt class="docutils literal"><span class="pre">output_columns</span></tt> でもサポートしました。これは "XXX, '...'" といった表現がサポートされたことを意味しています。</p>
         
     | 
| 
      
 459 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 460 
     | 
    
         
            +
            <li><p class="first">[doc] groongaサーバーを起動する際のroot権限と使用ポートに関する注意を追加しました。 [浅見さんが報告]</p>
         
     | 
| 
      
 461 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 462 
     | 
    
         
            +
            <li><p class="first">[実験的] <a class="reference internal" href="../reference/functions/html_untag.html"><em>html_untag</em></a> 関数を追加しました。</p>
         
     | 
| 
      
 463 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 464 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 465 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 466 
     | 
    
         
            +
            <div class="section" id="id20">
         
     | 
| 
      
 467 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 468 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 469 
     | 
    
         
            +
            <li><p class="first">テーブル作成時に必要なロックをかけていないことでmroongaがクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
         
     | 
| 
      
 470 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 471 
     | 
    
         
            +
            <li><p class="first">ClangやGCCによるコンパイル時の警告を抑制するように修正しました。</p>
         
     | 
| 
      
 472 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 473 
     | 
    
         
            +
            <li><p class="first">"XXX && sub_filter(...)" という表現をすると <tt class="docutils literal"><span class="pre">sub_filter(...)</span></tt> が無視される不具合を修正しました。</p>
         
     | 
| 
      
 474 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 475 
     | 
    
         
            +
            <li><p class="first">間違ったタグ名がXMLの出力で使われる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">output_columns</span></tt> で "REFERENCE_VECTOR_COLUMN._key" という表現をすると影響を受けます。 参照カラムがXMLの出力に含まれません。</p>
         
     | 
| 
      
 476 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 477 
     | 
    
         
            +
            <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">sub_filter()</span></tt> のドキュメントにおける引数の誤りを修正しました。</p>
         
     | 
| 
      
 478 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 479 
     | 
    
         
            +
            <li><p class="first">[deb] サービス停止中のステータスとして正しくない終了コードを返す不具合を修正しました。</p>
         
     | 
| 
      
 480 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 481 
     | 
    
         
            +
            <li><p class="first">算術演算の結果が壊れる不具合を修正しました。この不具合は例えば <tt class="docutils literal"><span class="pre">_score</span></tt> 疑似カラムへと計算結果を代入するような場合に影響します。</p>
         
     | 
| 
      
 482 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 483 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 484 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 485 
     | 
    
         
            +
            <div class="section" id="id21">
         
     | 
| 
      
 486 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 487 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 488 
     | 
    
         
            +
            <li><p class="first">Y.Kentaroさん</p>
         
     | 
| 
      
 489 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 490 
     | 
    
         
            +
            <li><p class="first">浅見公輔さん</p>
         
     | 
| 
      
 491 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 492 
     | 
    
         
            +
            <li><p class="first">@orangainさん</p>
         
     | 
| 
      
 493 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 494 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 495 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 496 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 497 
     | 
    
         
            +
            <div class="section" id="release-3-0-4-2013-05-29">
         
     | 
| 
      
 498 
     | 
    
         
            +
            <span id="release-3-0-4"></span><h1>3.0.4リリース - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 499 
     | 
    
         
            +
            <div class="section" id="id22">
         
     | 
| 
      
 500 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 501 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 502 
     | 
    
         
            +
            <li><p class="first">[tokenizer] ノーマライズした文字列が与えられないときにログメッセージを表示するようにしました。</p>
         
     | 
| 
      
 503 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 504 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">geo_in_circle</span></tt> の引数に <tt class="docutils literal"><span class="pre">_key</span></tt> が使えるようにしました。[@ceekzさんが報告]</p>
         
     | 
| 
      
 505 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 506 
     | 
    
         
            +
            <li><p class="first">groongaをライブラリとして使うときに、ベクタカラムのキャストをサポートしました。</p>
         
     | 
| 
      
 507 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 508 
     | 
    
         
            +
            <li><p class="first">Ubuntu 11.10 (Oneiric Ocelot)のサポートをやめました。</p>
         
     | 
| 
      
 509 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 510 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">match_columns</span></tt> にてマルチセクション対応のインデックス指定をサポートしました。</p>
         
     | 
| 
      
 511 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 512 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドをサポートしました。</p>
         
     | 
| 
      
 513 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 514 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">mmap()</span></tt> が失敗したときのシステムエラーメッセージの表示をサポートしました。</p>
         
     | 
| 
      
 515 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 516 
     | 
    
         
            +
            <li><p class="first">[doc][windows] ビルド手順を "cmake --build" でできるように簡略化しました。</p>
         
     | 
| 
      
 517 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 518 
     | 
    
         
            +
            <li><p class="first">サービススクリプトが応答しなくならないように最大実行時間を制限するようにしました。[GitHub#61] [firewoodさんが報告]</p>
         
     | 
| 
      
 519 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 520 
     | 
    
         
            +
            <li><p class="first">ベクタを真偽値として評価できるようにしました。この変更で空のベクタはtrueとして評価されるようになります。</p>
         
     | 
| 
      
 521 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 522 
     | 
    
         
            +
            <li><p class="first">不要なログメッセージを何度も出さないようにしました。不要なログメッセージは"(N same messages are truncated)"として省略されるようになります。</p>
         
     | 
| 
      
 523 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 524 
     | 
    
         
            +
            <li><p class="first">[munin][groonga_n_records] <tt class="docutils literal"><span class="pre">exclude_tables</span></tt> オプションを追加しました。これによりモニタリング結果から特定のテーブルを除去することができます。</p>
         
     | 
| 
      
 525 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 526 
     | 
    
         
            +
            <li><p class="first">Debian 8.0 (jessie)をサポートしました。</p>
         
     | 
| 
      
 527 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 528 
     | 
    
         
            +
            <li><p class="first">プラグインのディレクトリパスを除去することでデータベースファイルのポータビリティを改善しました。</p>
         
     | 
| 
      
 529 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 530 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 531 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 532 
     | 
    
         
            +
            <div class="section" id="id23">
         
     | 
| 
      
 533 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 534 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 535 
     | 
    
         
            +
            <li><p class="first">[tokenizer] エラー時のメモリリークを修正しました。</p>
         
     | 
| 
      
 536 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 537 
     | 
    
         
            +
            <li><p class="first">空の文字列による類似検索がSEGVを引き起す不具合を修正しました。[groonga-dev,01346] [中井さんが報告]</p>
         
     | 
| 
      
 538 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 539 
     | 
    
         
            +
            <li><p class="first">"VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx" といった式が使われたときにメモリリークする問題を修正しました。</p>
         
     | 
| 
      
 540 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 541 
     | 
    
         
            +
            <li><p class="first">SIGSTOPとSIGCONTによりgroongaサーバが停止してしまう不具合を修正しました。</p>
         
     | 
| 
      
 542 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 543 
     | 
    
         
            +
            <li><p class="first">ノーマライザーがノーマライズ済み文字列としてNULLを返したときにクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
         
     | 
| 
      
 544 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 545 
     | 
    
         
            +
            <li><p class="first">デーモン化する課程が OS Xでは動作しない不具合を修正。[groonga-dev,01440] [小西さんが報告]</p>
         
     | 
| 
      
 546 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 547 
     | 
    
         
            +
            <li><p class="first">[deb] HTTP/GQTPプロセスがroot権限で実行されてしまう不具合を修正しました。</p>
         
     | 
| 
      
 548 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 549 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 550 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 551 
     | 
    
         
            +
            <div class="section" id="id24">
         
     | 
| 
      
 552 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 553 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 554 
     | 
    
         
            +
            <li><p class="first">@ceekzさん</p>
         
     | 
| 
      
 555 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 556 
     | 
    
         
            +
            <li><p class="first">中井さん</p>
         
     | 
| 
      
 557 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 558 
     | 
    
         
            +
            <li><p class="first">firewoodさん</p>
         
     | 
| 
      
 559 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 560 
     | 
    
         
            +
            <li><p class="first">Y.Kentaroさん</p>
         
     | 
| 
      
 561 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 562 
     | 
    
         
            +
            <li><p class="first">小西さん</p>
         
     | 
| 
      
 563 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 564 
     | 
    
         
            +
            <li><p class="first">@orangainさん</p>
         
     | 
| 
      
 565 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 566 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 567 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 568 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 569 
     | 
    
         
            +
            <div class="section" id="release-3-0-3-2013-04-29">
         
     | 
| 
      
 570 
     | 
    
         
            +
            <span id="release-3-0-3"></span><h1>3.0.3リリース - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 571 
     | 
    
         
            +
            <div class="section" id="id25">
         
     | 
| 
      
 572 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 573 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 574 
     | 
    
         
            +
            <li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> を使って学習時の重みづけをカスタマイズできるようになりました。</p>
         
     | 
| 
      
 575 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 576 
     | 
    
         
            +
            <li><p class="first">位置情報検索のパフォーマンスを改善しました。例えば、 <tt class="docutils literal"><span class="pre">geo_in_rectangle</span></tt> の実行速度が10%程度以前より高速化しています。</p>
         
     | 
| 
      
 577 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 578 
     | 
    
         
            +
            <li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">additional_configure_options</span></tt> パラメータを追加しました。groongaをカスタマイズしてビルドするのにspecファイルを修正する必要はありません。</p>
         
     | 
| 
      
 579 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 580 
     | 
    
         
            +
            <li><p class="first">KyTea 0.4.5をサポート。</p>
         
     | 
| 
      
 581 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 582 
     | 
    
         
            +
            <li><p class="first">ベクターに対し "vector[N]" という構文でインデックスを指定してアクセスできるようにした。</p>
         
     | 
| 
      
 583 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 584 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/executables/groonga-suggest-create-dataset.html"><em>groonga-suggest-create-dataset</em></a> コマンドに <tt class="docutils literal"><span class="pre">--default-tokenizer</span></tt> オプションを追加した。</p>
         
     | 
| 
      
 585 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 586 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/executables/groonga-suggest-create-dataset.html"><em>groonga-suggest-create-dataset</em></a> コマンドに <tt class="docutils literal"><span class="pre">--help</span></tt> オプションを追加した。</p>
         
     | 
| 
      
 587 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 588 
     | 
    
         
            +
            <li><p class="first">Ubuntu 13.04 Raring Ringtailをサポート。</p>
         
     | 
| 
      
 589 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 590 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 591 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 592 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 593 
     | 
    
         
            +
            <div class="section" id="release-3-0-2-2013-03-29">
         
     | 
| 
      
 594 
     | 
    
         
            +
            <span id="release-3-0-2"></span><h1>3.0.2リリース - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 595 
     | 
    
         
            +
            <div class="section" id="id26">
         
     | 
| 
      
 596 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 597 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 598 
     | 
    
         
            +
            <li><p class="first">2つ以上のインデックスをテーブルのキーに対して張れるようにしました。この変更はインデックスを張ったキーへ新たなキーをロードしたときにクラッシュしないようにします。</p>
         
     | 
| 
      
 599 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 600 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">X</span> <span class="pre">+</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">-</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">*</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">/</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">%</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>></span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre"><<</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">|</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">^</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">&</span> <span class="pre">Y</span></tt> や <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>></span> <span class="pre">Y</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
         
     | 
| 
      
 601 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 602 
     | 
    
         
            +
            <li><p class="first"><a class="reference internal" href="../reference/commands/load.html"><em>load</em></a> コマンドのドキュメントを追加。</p>
         
     | 
| 
      
 603 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 604 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">X</span> <span class="pre">+=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">-=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">*=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">/=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">%=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre"><<=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">>>>=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">&=</span> <span class="pre">Y</span></tt>, <tt class="docutils literal"><span class="pre">X</span> <span class="pre">|=</span> <span class="pre">Y</span></tt> や <tt class="docutils literal"><span class="pre">X</span> <span class="pre">^=</span> <span class="pre">Y</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
         
     | 
| 
      
 605 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 606 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">-X</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
         
     | 
| 
      
 607 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 608 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で複雑な文字列の連結をサポートしました。例えば <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'"<"</span> <span class="pre">+</span> <span class="pre">title</span> <span class="pre">+</span> <span class="pre">">"'</span></tt> といったクエリを書けるようになりました。</p>
         
     | 
| 
      
 609 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 610 
     | 
    
         
            +
            <li><p class="first">開発ページにgroongaリポジトリの情報を追加しました。</p>
         
     | 
| 
      
 611 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 612 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">sub_filter()</span></tt> 関数を追加しました。</p>
         
     | 
| 
      
 613 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 614 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">query()</span></tt> 関数でクエリ展開をサポートしました。この変更で <tt class="docutils literal"><span class="pre">query("MATCH_COLUMNS",</span> <span class="pre">"QUERY","QueryExpanderTSV")</span></tt> といったクエリが書けるようになりました。</p>
         
     | 
| 
      
 615 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 616 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">--query_expansion</span></tt> を <tt class="docutils literal"><span class="pre">--query_expander</span></tt> に変更しました。 <tt class="docutils literal"><span class="pre">--query_expansion</span></tt> は引き続き使えますが、非推奨となります。</p>
         
     | 
| 
      
 617 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 618 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 619 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 620 
     | 
    
         
            +
            <div class="section" id="id27">
         
     | 
| 
      
 621 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 622 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 623 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">snippet_html(XXX),</span> <span class="pre">XXX</span></tt> を実行すると "stack error"になる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">'snippet_html(title),</span> <span class="pre">content'</span></tt> といったクエリに影響します。[Groonga-talk (no subject)] [Hendro Wibowoさんが報告]</p>
         
     | 
| 
      
 624 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 625 
     | 
    
         
            +
            <li><p class="first">インストールのドキュメントの誤字を修正。 [hinoさんが報告]</p>
         
     | 
| 
      
 626 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 627 
     | 
    
         
            +
            <li><p class="first">Travi-CIセットアップ用のスクリプトが動作しない不具合を修正した。[groonga-dev,01248] [ongaeshiさんが報告]</p>
         
     | 
| 
      
 628 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 629 
     | 
    
         
            +
            <li><p class="first">メモリリークを修正した。この不具合は次の3つの条件が重なったときに発生します。参照カラムかつそのカラムがベクター型であって、キーのサイズが25バイト以上のとき。</p>
         
     | 
| 
      
 630 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 631 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">_score.GARBAGE</span></tt> というクエリによってクラッシュする不具合を修正した。この不具合はGARBAGEが存在しないときに影響します。</p>
         
     | 
| 
      
 632 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 633 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 634 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 635 
     | 
    
         
            +
            <div class="section" id="id28">
         
     | 
| 
      
 636 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 637 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 638 
     | 
    
         
            +
            <li><p class="first">Hendro Wibowoさん</p>
         
     | 
| 
      
 639 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 640 
     | 
    
         
            +
            <li><p class="first">hinoさん</p>
         
     | 
| 
      
 641 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 642 
     | 
    
         
            +
            <li><p class="first">ongaeshiさん</p>
         
     | 
| 
      
 643 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 644 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 645 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 646 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 647 
     | 
    
         
            +
            <div class="section" id="release-3-0-1-2013-02-28">
         
     | 
| 
      
 648 
     | 
    
         
            +
            <span id="release-3-0-1"></span><h1>3.0.1リリース - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 649 
     | 
    
         
            +
            <div class="section" id="id29">
         
     | 
| 
      
 650 
     | 
    
         
            +
            <h2>改良<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 651 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 652 
     | 
    
         
            +
            <li><p class="first">loadコマンドでデータをロードするときに参照カラムに対するBoolの設定をサポートしました。</p>
         
     | 
| 
      
 653 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 654 
     | 
    
         
            +
            <li><p class="first">ネストしたインデックスに対してAND検索できるようになりました。この変更で、"COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3"という検索ができるようになります。ただし、"1 <= COLUMN1.COLUMN2" という表記はまだサポートしていません。これを指定すると、"COLUMN1.COLUMN2 <= 1"とみなします。</p>
         
     | 
| 
      
 655 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 656 
     | 
    
         
            +
            <li><p class="first">インデックスの張られていない要素に対するソートをサポートしました。この変更は <tt class="docutils literal"><span class="pre">--sortby</span> <span class="pre">geo_distance(...)</span></tt> のようにインデックス化されていない要素をソートしようとしたときに結果が抜け落ちてしてしまう場合に影響します。</p>
         
     | 
| 
      
 657 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 658 
     | 
    
         
            +
            <li><p class="first">参照カラムの範囲検索をインデックスを使って検索できるようにした。この変更でTABLE_PAT_KEYやTABLE_DAT_KEYを使ったネストしたインデックスの <tt class="docutils literal"><span class="pre">_key</span></tt> に対しても範囲検索できるようになった。</p>
         
     | 
| 
      
 659 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 660 
     | 
    
         
            +
            <li><p class="first">[rpm][centos] MeCab 0.995をサポート。</p>
         
     | 
| 
      
 661 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 662 
     | 
    
         
            +
            <li><p class="first">[doc] <tt class="docutils literal"><span class="pre">column_rename</span></tt> や <tt class="docutils literal"><span class="pre">truncate</span></tt> コマンドのドキュメントを追加。</p>
         
     | 
| 
      
 663 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 664 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 665 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 666 
     | 
    
         
            +
            <div class="section" id="id30">
         
     | 
| 
      
 667 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 668 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 669 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">grn_index_cursor_next()</span></tt> が意図せずNULLを返す不具合を修正しました。このせいで要素を削除した後に不正なインデックスを返していました。この不具合はmroongaをストレージモードで動かしたときに発生します。 [groonga-dev,01192] [b senbokuさんが報告]</p>
         
     | 
| 
      
 670 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 671 
     | 
    
         
            +
            <li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance()</span></tt> をインデックスを使ってソートしようとするときに落ちる不具合を修正しました。この不具合は見付けたレコードのカウントが正しくないことで発生します。</p>
         
     | 
| 
      
 672 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 673 
     | 
    
         
            +
            <li><p class="first">[httpd] データベースのオーナー/グループのデフォルト設定がgroongaとなっている箇所を有効にしました。</p>
         
     | 
| 
      
 674 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 675 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 676 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 677 
     | 
    
         
            +
            <div class="section" id="id31">
         
     | 
| 
      
 678 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 679 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 680 
     | 
    
         
            +
            <li><p class="first">b senbokuさん</p>
         
     | 
| 
      
 681 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 682 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 683 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 684 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 685 
     | 
    
         
            +
            <div class="section" id="release-3-0-0-2013-02-09">
         
     | 
| 
      
 686 
     | 
    
         
            +
            <span id="release-3-0-0"></span><h1>3.0.0リリース - 2013/02/09<a class="headerlink" href="#release-3-0-0-2013-02-09" title="このヘッドラインへのパーマリンク">¶</a></h1>
         
     | 
| 
      
 687 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 688 
     | 
    
         
            +
            <li><p class="first">バージョン3.0.0になりました!</p>
         
     | 
| 
      
 689 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 690 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 691 
     | 
    
         
            +
            <div class="section" id="id32">
         
     | 
| 
      
 692 
     | 
    
         
            +
            <h2>修正<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 693 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 694 
     | 
    
         
            +
            <li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をEUC-JPでなくUTF-8の辞書ものを明示的にインストールするように修正した。</p>
         
     | 
| 
      
 695 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 696 
     | 
    
         
            +
            <li><p class="first">int64の表記がuint32の値として切り捨てられてしまう不具合を修正した。int64の文字列として表記した場合には、この不具合の影響はありません。</p>
         
     | 
| 
      
 697 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 698 
     | 
    
         
            +
            <li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">groonga-server-http</span></tt> サービスの停止に失敗する不具合を修正した。 [GitHub#53] [岩井さんがパッチ提供]</p>
         
     | 
| 
      
 699 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 700 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 701 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 702 
     | 
    
         
            +
            <div class="section" id="id33">
         
     | 
| 
      
 703 
     | 
    
         
            +
            <h2>感謝<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h2>
         
     | 
| 
      
 704 
     | 
    
         
            +
            <ul class="simple">
         
     | 
| 
      
 705 
     | 
    
         
            +
            <li><p class="first">岩井さん</p>
         
     | 
| 
      
 706 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 707 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 708 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 709 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 710 
     | 
    
         
            +
             
     | 
| 
      
 711 
     | 
    
         
            +
             
     | 
| 
      
 712 
     | 
    
         
            +
                      </div>
         
     | 
| 
      
 713 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 714 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 715 
     | 
    
         
            +
                  <div class="sphinxsidebar">
         
     | 
| 
      
 716 
     | 
    
         
            +
                    <div class="sphinxsidebarwrapper">
         
     | 
| 
      
 717 
     | 
    
         
            +
              <h3><a href="../index.html">目次</a></h3>
         
     | 
| 
      
 718 
     | 
    
         
            +
              <ul>
         
     | 
| 
      
 719 
     | 
    
         
            +
            <li><a class="reference internal" href="#">3.1.2リリース - 2014/01/29</a><ul>
         
     | 
| 
      
 720 
     | 
    
         
            +
            <li><a class="reference internal" href="#improvements">改良</a></li>
         
     | 
| 
      
 721 
     | 
    
         
            +
            <li><a class="reference internal" href="#fixes">修正</a></li>
         
     | 
| 
      
 722 
     | 
    
         
            +
            <li><a class="reference internal" href="#thanks">感謝</a></li>
         
     | 
| 
      
 723 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 724 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 725 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-1-2013-12-29">3.1.1リリース - 2013/12/29</a><ul>
         
     | 
| 
      
 726 
     | 
    
         
            +
            <li><a class="reference internal" href="#id1">改良</a></li>
         
     | 
| 
      
 727 
     | 
    
         
            +
            <li><a class="reference internal" href="#id2">修正</a></li>
         
     | 
| 
      
 728 
     | 
    
         
            +
            <li><a class="reference internal" href="#id3">感謝</a></li>
         
     | 
| 
      
 729 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 730 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 731 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-1-0-2013-11-29">3.1.0リリース - 2013/11/29</a><ul>
         
     | 
| 
      
 732 
     | 
    
         
            +
            <li><a class="reference internal" href="#id4">改良</a></li>
         
     | 
| 
      
 733 
     | 
    
         
            +
            <li><a class="reference internal" href="#id5">修正</a></li>
         
     | 
| 
      
 734 
     | 
    
         
            +
            <li><a class="reference internal" href="#id6">感謝</a></li>
         
     | 
| 
      
 735 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 736 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 737 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-9-2013-10-29">3.0.9リリース - 2013/10/29</a><ul>
         
     | 
| 
      
 738 
     | 
    
         
            +
            <li><a class="reference internal" href="#id7">改良</a></li>
         
     | 
| 
      
 739 
     | 
    
         
            +
            <li><a class="reference internal" href="#id8">修正</a></li>
         
     | 
| 
      
 740 
     | 
    
         
            +
            <li><a class="reference internal" href="#id9">感謝</a></li>
         
     | 
| 
      
 741 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 742 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 743 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-8-2013-09-29">3.0.8リリース - 2013/09/29</a><ul>
         
     | 
| 
      
 744 
     | 
    
         
            +
            <li><a class="reference internal" href="#id10">改良</a></li>
         
     | 
| 
      
 745 
     | 
    
         
            +
            <li><a class="reference internal" href="#id11">修正</a></li>
         
     | 
| 
      
 746 
     | 
    
         
            +
            <li><a class="reference internal" href="#id12">感謝</a></li>
         
     | 
| 
      
 747 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 748 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 749 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-7-2013-08-29">3.0.7リリース - 2013/08/29</a><ul>
         
     | 
| 
      
 750 
     | 
    
         
            +
            <li><a class="reference internal" href="#id13">改良</a></li>
         
     | 
| 
      
 751 
     | 
    
         
            +
            <li><a class="reference internal" href="#id14">修正</a></li>
         
     | 
| 
      
 752 
     | 
    
         
            +
            <li><a class="reference internal" href="#id15">感謝</a></li>
         
     | 
| 
      
 753 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 754 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 755 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-6-2013-07-29">3.0.6リリース - 2013/07/29</a><ul>
         
     | 
| 
      
 756 
     | 
    
         
            +
            <li><a class="reference internal" href="#id16">改良</a></li>
         
     | 
| 
      
 757 
     | 
    
         
            +
            <li><a class="reference internal" href="#id17">修正</a></li>
         
     | 
| 
      
 758 
     | 
    
         
            +
            <li><a class="reference internal" href="#id18">感謝</a></li>
         
     | 
| 
      
 759 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 760 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 761 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-5-2013-06-29">3.0.5リリース - 2013/06/29</a><ul>
         
     | 
| 
      
 762 
     | 
    
         
            +
            <li><a class="reference internal" href="#id19">改良</a></li>
         
     | 
| 
      
 763 
     | 
    
         
            +
            <li><a class="reference internal" href="#id20">修正</a></li>
         
     | 
| 
      
 764 
     | 
    
         
            +
            <li><a class="reference internal" href="#id21">感謝</a></li>
         
     | 
| 
      
 765 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 766 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 767 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-4-2013-05-29">3.0.4リリース - 2013/05/29</a><ul>
         
     | 
| 
      
 768 
     | 
    
         
            +
            <li><a class="reference internal" href="#id22">改良</a></li>
         
     | 
| 
      
 769 
     | 
    
         
            +
            <li><a class="reference internal" href="#id23">修正</a></li>
         
     | 
| 
      
 770 
     | 
    
         
            +
            <li><a class="reference internal" href="#id24">感謝</a></li>
         
     | 
| 
      
 771 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 772 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 773 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-3-2013-04-29">3.0.3リリース - 2013/04/29</a><ul>
         
     | 
| 
      
 774 
     | 
    
         
            +
            <li><a class="reference internal" href="#id25">改良</a></li>
         
     | 
| 
      
 775 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 776 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 777 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-2-2013-03-29">3.0.2リリース - 2013/03/29</a><ul>
         
     | 
| 
      
 778 
     | 
    
         
            +
            <li><a class="reference internal" href="#id26">改良</a></li>
         
     | 
| 
      
 779 
     | 
    
         
            +
            <li><a class="reference internal" href="#id27">修正</a></li>
         
     | 
| 
      
 780 
     | 
    
         
            +
            <li><a class="reference internal" href="#id28">感謝</a></li>
         
     | 
| 
      
 781 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 782 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 783 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-1-2013-02-28">3.0.1リリース - 2013/02/28</a><ul>
         
     | 
| 
      
 784 
     | 
    
         
            +
            <li><a class="reference internal" href="#id29">改良</a></li>
         
     | 
| 
      
 785 
     | 
    
         
            +
            <li><a class="reference internal" href="#id30">修正</a></li>
         
     | 
| 
      
 786 
     | 
    
         
            +
            <li><a class="reference internal" href="#id31">感謝</a></li>
         
     | 
| 
      
 787 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 788 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 789 
     | 
    
         
            +
            <li><a class="reference internal" href="#release-3-0-0-2013-02-09">3.0.0リリース - 2013/02/09</a><ul>
         
     | 
| 
      
 790 
     | 
    
         
            +
            <li><a class="reference internal" href="#id32">修正</a></li>
         
     | 
| 
      
 791 
     | 
    
         
            +
            <li><a class="reference internal" href="#id33">感謝</a></li>
         
     | 
| 
      
 792 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 793 
     | 
    
         
            +
            </li>
         
     | 
| 
      
 794 
     | 
    
         
            +
            </ul>
         
     | 
| 
      
 795 
     | 
    
         
            +
             
     | 
| 
      
 796 
     | 
    
         
            +
              <h3>このページ</h3>
         
     | 
| 
      
 797 
     | 
    
         
            +
              <ul class="this-page-menu">
         
     | 
| 
      
 798 
     | 
    
         
            +
                <li><a href="../_sources/news/3.x.txt"
         
     | 
| 
      
 799 
     | 
    
         
            +
                       rel="nofollow">ソースコードを表示</a></li>
         
     | 
| 
      
 800 
     | 
    
         
            +
              </ul>
         
     | 
| 
      
 801 
     | 
    
         
            +
            <div id="searchbox" style="display: none">
         
     | 
| 
      
 802 
     | 
    
         
            +
              <h3>クイック検索</h3>
         
     | 
| 
      
 803 
     | 
    
         
            +
                <form class="search" action="../search.html" method="get">
         
     | 
| 
      
 804 
     | 
    
         
            +
                  <input type="text" name="q" />
         
     | 
| 
      
 805 
     | 
    
         
            +
                  <input type="submit" value="検索" />
         
     | 
| 
      
 806 
     | 
    
         
            +
                  <input type="hidden" name="check_keywords" value="yes" />
         
     | 
| 
      
 807 
     | 
    
         
            +
                  <input type="hidden" name="area" value="default" />
         
     | 
| 
      
 808 
     | 
    
         
            +
                </form>
         
     | 
| 
      
 809 
     | 
    
         
            +
                <p class="searchtip" style="font-size: 90%">
         
     | 
| 
      
 810 
     | 
    
         
            +
                モジュール、クラス、または関数名を入力してください
         
     | 
| 
      
 811 
     | 
    
         
            +
                </p>
         
     | 
| 
      
 812 
     | 
    
         
            +
            </div>
         
     | 
| 
      
 813 
     | 
    
         
            +
            <script type="text/javascript">$('#searchbox').show(0);</script>
         
     | 
| 
      
 814 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 815 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 816 
     | 
    
         
            +
                  <div class="clearer"></div>
         
     | 
| 
      
 817 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 818 
     | 
    
         
            +
                <div class="related">
         
     | 
| 
      
 819 
     | 
    
         
            +
                  <h3>ナビゲーション</h3>
         
     | 
| 
      
 820 
     | 
    
         
            +
                  <ul>
         
     | 
| 
      
 821 
     | 
    
         
            +
                    <li class="right" style="margin-right: 10px">
         
     | 
| 
      
 822 
     | 
    
         
            +
                      <a href="../genindex.html" title="総合索引"
         
     | 
| 
      
 823 
     | 
    
         
            +
                         >索引</a></li>
         
     | 
| 
      
 824 
     | 
    
         
            +
                    <li><a href="../index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li> 
         
     | 
| 
      
 825 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 826 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 827 
     | 
    
         
            +
                <div class="footer">
         
     | 
| 
      
 828 
     | 
    
         
            +
                    © Copyright 2009-2014, Brazil, Inc.
         
     | 
| 
      
 829 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 830 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 831 
     | 
    
         
            +
            </html>
         
     |