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
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>10. 制限事項 — Groonga v4.0.
|
10
|
+
<title>10. 制限事項 — Groonga v4.0.4-214-gb1aaec1ドキュメント</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '4.0.
|
18
|
+
VERSION: '4.0.4-214-gb1aaec1',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -26,11 +26,11 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v4.0.
|
29
|
+
<link rel="top" title="Groonga v4.0.4-214-gb1aaec1ドキュメント" href="index.html" />
|
30
30
|
<link rel="next" title="11. トラブルシューティング" href="troubleshooting.html" />
|
31
31
|
<link rel="prev" title="9.2. 検索" href="spec/search.html" />
|
32
32
|
</head>
|
33
|
-
<body
|
33
|
+
<body>
|
34
34
|
<div class="header">
|
35
35
|
<h1 class="title">
|
36
36
|
<a id="top-link" href="index.html">
|
@@ -48,7 +48,7 @@
|
|
48
48
|
</div>
|
49
49
|
|
50
50
|
|
51
|
-
<div class="related"
|
51
|
+
<div class="related">
|
52
52
|
<h3>ナビゲーション</h3>
|
53
53
|
<ul>
|
54
54
|
<li class="right" style="margin-right: 10px">
|
@@ -60,14 +60,14 @@
|
|
60
60
|
<li class="right" >
|
61
61
|
<a href="spec/search.html" title="9.2. 検索"
|
62
62
|
accesskey="P">前へ</a> |</li>
|
63
|
-
<li><a href="index.html">Groonga v4.0.
|
63
|
+
<li><a href="index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li>
|
64
64
|
</ul>
|
65
65
|
</div>
|
66
66
|
|
67
67
|
<div class="document">
|
68
68
|
<div class="documentwrapper">
|
69
69
|
<div class="bodywrapper">
|
70
|
-
<div class="body"
|
70
|
+
<div class="body">
|
71
71
|
|
72
72
|
<div class="section" id="limitations">
|
73
73
|
<h1>10. 制限事項<a class="headerlink" href="#limitations" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
@@ -110,7 +110,7 @@
|
|
110
110
|
</div>
|
111
111
|
</div>
|
112
112
|
</div>
|
113
|
-
<div class="sphinxsidebar"
|
113
|
+
<div class="sphinxsidebar">
|
114
114
|
<div class="sphinxsidebarwrapper">
|
115
115
|
<h3><a href="index.html">目次</a></h3>
|
116
116
|
<ul>
|
@@ -128,14 +128,12 @@
|
|
128
128
|
<h4>次のトピックへ</h4>
|
129
129
|
<p class="topless"><a href="troubleshooting.html"
|
130
130
|
title="次の章へ">11. トラブルシューティング</a></p>
|
131
|
-
<
|
132
|
-
|
133
|
-
<
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
</div>
|
138
|
-
<div id="searchbox" style="display: none" role="search">
|
131
|
+
<h3>このページ</h3>
|
132
|
+
<ul class="this-page-menu">
|
133
|
+
<li><a href="_sources/limitations.txt"
|
134
|
+
rel="nofollow">ソースコードを表示</a></li>
|
135
|
+
</ul>
|
136
|
+
<div id="searchbox" style="display: none">
|
139
137
|
<h3>クイック検索</h3>
|
140
138
|
<form class="search" action="search.html" method="get">
|
141
139
|
<input type="text" name="q" />
|
@@ -152,7 +150,7 @@
|
|
152
150
|
</div>
|
153
151
|
<div class="clearer"></div>
|
154
152
|
</div>
|
155
|
-
<div class="related"
|
153
|
+
<div class="related">
|
156
154
|
<h3>ナビゲーション</h3>
|
157
155
|
<ul>
|
158
156
|
<li class="right" style="margin-right: 10px">
|
@@ -164,10 +162,10 @@
|
|
164
162
|
<li class="right" >
|
165
163
|
<a href="spec/search.html" title="9.2. 検索"
|
166
164
|
>前へ</a> |</li>
|
167
|
-
<li><a href="index.html">Groonga v4.0.
|
165
|
+
<li><a href="index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li>
|
168
166
|
</ul>
|
169
167
|
</div>
|
170
|
-
<div class="footer"
|
168
|
+
<div class="footer">
|
171
169
|
© Copyright 2009-2014, Brazil, Inc.
|
172
170
|
</div>
|
173
171
|
</body>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
<head>
|
8
8
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
9
9
|
|
10
|
-
<title>お知らせ — Groonga v4.0.
|
10
|
+
<title>お知らせ — Groonga v4.0.4-214-gb1aaec1ドキュメント</title>
|
11
11
|
|
12
12
|
<link rel="stylesheet" href="_static/groonga.css" type="text/css" />
|
13
13
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '4.0.
|
18
|
+
VERSION: '4.0.4-214-gb1aaec1',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -26,9 +26,9 @@
|
|
26
26
|
<script type="text/javascript" src="_static/doctools.js"></script>
|
27
27
|
<script type="text/javascript" src="_static/translations.js"></script>
|
28
28
|
<link rel="shortcut icon" href="_static/favicon.ico"/>
|
29
|
-
<link rel="top" title="Groonga v4.0.
|
29
|
+
<link rel="top" title="Groonga v4.0.4-214-gb1aaec1ドキュメント" href="index.html" />
|
30
30
|
</head>
|
31
|
-
<body
|
31
|
+
<body>
|
32
32
|
<div class="header">
|
33
33
|
<h1 class="title">
|
34
34
|
<a id="top-link" href="index.html">
|
@@ -46,1678 +46,529 @@
|
|
46
46
|
</div>
|
47
47
|
|
48
48
|
|
49
|
-
<div class="related"
|
49
|
+
<div class="related">
|
50
50
|
<h3>ナビゲーション</h3>
|
51
51
|
<ul>
|
52
52
|
<li class="right" style="margin-right: 10px">
|
53
53
|
<a href="genindex.html" title="総合索引"
|
54
54
|
accesskey="I">索引</a></li>
|
55
|
-
<li><a href="index.html">Groonga v4.0.
|
55
|
+
<li><a href="index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li>
|
56
56
|
</ul>
|
57
57
|
</div>
|
58
58
|
|
59
59
|
<div class="document">
|
60
60
|
<div class="documentwrapper">
|
61
61
|
<div class="bodywrapper">
|
62
|
-
<div class="body"
|
62
|
+
<div class="body">
|
63
63
|
|
64
64
|
<div class="section" id="news">
|
65
65
|
<h1>お知らせ<a class="headerlink" href="#news" title="このヘッドラインへのパーマリンク">¶</a></h1>
|
66
|
-
<div class="section" id="release-4-0-
|
67
|
-
<span id="release-4-0-
|
68
|
-
<div class="section" id="improvements">
|
69
|
-
<h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
70
|
-
<ul class="simple">
|
71
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/executables/groonga-suggest-learner.html"><em>groonga-suggest-learner</em></a> のドキュメントを更新しました。</p>
|
72
|
-
</li>
|
73
|
-
<li><p class="first">[doc] ファイルの更新方法に関するドキュメントを更新しました。 [GitHub#160] [cosmo0920さんがパッチ提供]</p>
|
74
|
-
</li>
|
75
|
-
<li><p class="first">[doc] ドキュメント中で「Groonga」という標記を使うようにしました。 [GitHub#162][GitHub#163][GitHub#164] [cosmo0920さんがパッチ提供]</p>
|
76
|
-
</li>
|
77
|
-
<li><p class="first">Ubuntu 14.04 Trusty Tahrをサポート。</p>
|
78
|
-
</li>
|
79
|
-
<li><p class="first">Ubuntu 12.10のサポートを終了しました。</p>
|
80
|
-
</li>
|
81
|
-
<li><p class="first">Ubuntuパッケージの配布場所としてLaunchpadのPPAを使うようにしました。詳細は <tt class="xref doc docutils literal"><span class="pre">/install/Ubuntu</span></tt> を確認してください。</p>
|
82
|
-
</li>
|
83
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">/d/</span></tt> から始まるリクエストはすべてAPIリクエストとして処理するようになりました。GroongaのHTTPサービスでファイルを提供したい場合は、 <tt class="docutils literal"><span class="pre">/d/</span></tt> 以外から始まるパスにファイルを置いてください。</p>
|
84
|
-
</li>
|
85
|
-
<li><p class="first">[munin] <a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a> をサポートしました。 [村上さんが報告]</p>
|
86
|
-
</li>
|
87
|
-
<li><p class="first">夏時間をサポートしました。 [#2546]</p>
|
88
|
-
</li>
|
89
|
-
<li><p class="first">[doc] <a class="reference internal" href="install/mac_os_x.html"><em>Mac OS X</em></a> に <tt class="docutils literal"><span class="pre">--with-mecab</span></tt> の説明を追加しました。</p>
|
90
|
-
</li>
|
91
|
-
<li><p class="first">[http] シンタックスエラーが発生したときのHTTPのリターンコードを <tt class="docutils literal"><span class="pre">500</span> <span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></tt> から <tt class="docutils literal"><span class="pre">400</span> <span class="pre">Bad</span> <span class="pre">Request</span></tt> に変更しました。</p>
|
92
|
-
</li>
|
93
|
-
<li><p class="first">[http][admin] jQueryのJSONプラグインを削除しました。 [GitHub#168] [大関さんがパッチ提供]</p>
|
94
|
-
</li>
|
95
|
-
<li><p class="first">[http][admin] strictモードを有効にしました。 [GitHub#169] [大関さんがパッチ提供]</p>
|
96
|
-
</li>
|
97
|
-
<li><p class="first">変数の値を取得するAPIを <a class="reference internal" href="reference/api/plugin.html"><em>Plugin</em></a> のAPIとして使えるようにしました。 [GitHub#170] [村上さんがパッチを提供]</p>
|
98
|
-
<ul>
|
99
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var()</span></tt> を追加。</p>
|
100
|
-
</li>
|
101
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var_by_offset()</span></tt> を追加。</p>
|
102
|
-
</li>
|
103
|
-
</ul>
|
104
|
-
</li>
|
105
|
-
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/tokenizer_list.html"><em>tokenizer_list</em></a> を追加しました。 [GitHub#171] [村上さんがパッチ提供]</p>
|
106
|
-
</li>
|
107
|
-
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/normalizer_list.html"><em>normalizer_list</em></a> を追加しました。 [GitHub#171] [村上さんがパッチ提供]</p>
|
108
|
-
</li>
|
109
|
-
</ul>
|
110
|
-
</div>
|
111
|
-
<div class="section" id="fixes">
|
112
|
-
<h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
113
|
-
<ul class="simple">
|
114
|
-
<li><p class="first">[index] 最大セグメント数が間違っていた問題を修正しました。この問題によりインデックスカラム用のすべてのリソースを使い切るとクラッシュしていました。 [#2438] [GMOメディア株式会社さんが報告]</p>
|
115
|
-
</li>
|
116
|
-
<li><p class="first">[doc] <a class="reference internal" href="install/centos.html"><em>CentOS</em></a> の中のtypoを修正しました。 [GitHub#166] [村上さんがパッチ提供]</p>
|
117
|
-
</li>
|
118
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> で <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> のデフォルト値が間違っていた問題を修正しました。 [GitHub#167] [村上さんがパッチ提供]</p>
|
119
|
-
</li>
|
120
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/query_syntax.html"><em>クエリー構文</em></a> で不足していた <tt class="docutils literal"><span class="pre">\</span></tt> エスケープの例外ケースを追加しました。 [@Yappoさんが報告]</p>
|
121
|
-
</li>
|
122
|
-
</ul>
|
123
|
-
</div>
|
124
|
-
<div class="section" id="thanks">
|
125
|
-
<h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
126
|
-
<ul class="simple">
|
127
|
-
<li><p class="first">cosmo0920さん</p>
|
128
|
-
</li>
|
129
|
-
<li><p class="first">村上さん</p>
|
130
|
-
</li>
|
131
|
-
<li><p class="first">大関さん</p>
|
132
|
-
</li>
|
133
|
-
<li><p class="first">GMOメディア株式会社さん</p>
|
134
|
-
</li>
|
135
|
-
<li><p class="first">@Yappoさん</p>
|
136
|
-
</li>
|
137
|
-
</ul>
|
138
|
-
</div>
|
139
|
-
</div>
|
140
|
-
<div class="section" id="release-4-0-1-2014-03-29">
|
141
|
-
<span id="release-4-0-1"></span><h2>4.0.1リリース - 2014/03/29<a class="headerlink" href="#release-4-0-1-2014-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
142
|
-
<div class="section" id="id1">
|
143
|
-
<h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
144
|
-
<ul class="simple">
|
145
|
-
<li><p class="first">[doc] 返り値のヘッダ詳細 (<a class="reference internal" href="reference/command/output_format.html"><em>出力形式</em></a>) についてのリンクを追加しました。</p>
|
146
|
-
</li>
|
147
|
-
<li><p class="first">JSONロード時のベクターの値とオブジェクトの値を表示できるようにしました。ロードに失敗したときのデータの詳細がわかるようになりました。</p>
|
148
|
-
</li>
|
149
|
-
<li><p class="first">selectコマンドに <tt class="docutils literal"><span class="pre">adjuster</span></tt> オプションを追加しました。adjusterオプションのシンタックスは INDEX_COLUMN @ STRING_LITERAL (* FACTOR) です。</p>
|
150
|
-
</li>
|
151
|
-
<li><p class="first"><a class="reference internal" href="reference/columns/vector.html#weight-vector-column"><em>重み付きベクターカラム</em></a> をサポートしました。重みつきベクターを使うにはカラム作成時に 'COLUMN_VECTOR|WITH_WEIGHT' を指定する必要があります。</p>
|
152
|
-
</li>
|
153
|
-
<li><p class="first">SunOSでビルドに必要なMIN/MAXの定義がなかったので追加しました。[GitHub#154] [Sebastian Wiedenrothさんがパッチ提供]</p>
|
154
|
-
</li>
|
155
|
-
<li><p class="first">使われなくなった領域を再利用するように改善しました。これによりデータべースの肥大化を抑制します。</p>
|
156
|
-
</li>
|
157
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><em>groonga-suggest-httpd</em></a> のGETパラメータに関するドキュメントを追加しました。</p>
|
158
|
-
</li>
|
159
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/column.html"><em>カラム</em></a> のドキュメントを追加しました。</p>
|
160
|
-
</li>
|
161
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/columns/vector.html"><em>ベクターカラム</em></a> のドキュメントを追加しました。</p>
|
162
|
-
</li>
|
163
|
-
<li><p class="first">[column_list] 重みつきベクターカラムを表示できるようにしました。</p>
|
164
|
-
</li>
|
165
|
-
<li><p class="first">[column_create] マルチカラムインデックスを作成するときに、WITH_SECTIONフラグが指定されていない場合のエラーチェックを追加しました。</p>
|
166
|
-
</li>
|
167
|
-
<li><p class="first">[httpd] NginxHttpStubStatusModuleをgroonga-httpdで有効にしました。[長野雅広さんが提案]</p>
|
168
|
-
</li>
|
169
|
-
</ul>
|
170
|
-
</div>
|
171
|
-
<div class="section" id="id2">
|
172
|
-
<h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
173
|
-
<ul class="simple">
|
174
|
-
<li><p class="first">除算によるオーバーフローが発生する不具合を修正しました。例えば、'COLUMN(最小値) / -1' をInt32やInt64で定義したカラムに適用すると発生します。[#2307]</p>
|
175
|
-
</li>
|
176
|
-
<li><p class="first">剰余演算 '%' ではなく、除算 '/' を行ってしまう不具合を修正しました。[#2307]</p>
|
177
|
-
</li>
|
178
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a> のドキュメントの説明の誤りを修正しました。 [nise_nabeさんが報告]</p>
|
179
|
-
</li>
|
180
|
-
<li><p class="first">配列の領域外アクセスが発生しうる問題を修正しました。[GitHub#158] [dcb314さんが報告]</p>
|
181
|
-
</li>
|
182
|
-
</ul>
|
183
|
-
</div>
|
184
|
-
<div class="section" id="id3">
|
185
|
-
<h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
186
|
-
<ul class="simple">
|
187
|
-
<li><p class="first">Sebastian Wiedenrothさん</p>
|
188
|
-
</li>
|
189
|
-
<li><p class="first">長野雅広さん</p>
|
190
|
-
</li>
|
191
|
-
<li><p class="first">nise_nabeさん</p>
|
192
|
-
</li>
|
193
|
-
<li><p class="first">dcb314さん</p>
|
194
|
-
</li>
|
195
|
-
</ul>
|
196
|
-
</div>
|
197
|
-
</div>
|
198
|
-
<div class="section" id="release-4-0-0-2014-02-09">
|
199
|
-
<span id="release-4-0-0"></span><h2>4.0.0リリース - 2014/02/09<a class="headerlink" href="#release-4-0-0-2014-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
200
|
-
<ul class="simple">
|
201
|
-
<li><p class="first">バージョン4.0.0になりました!</p>
|
202
|
-
</li>
|
203
|
-
</ul>
|
204
|
-
<div class="section" id="id4">
|
205
|
-
<h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
206
|
-
<ul class="simple">
|
207
|
-
<li><p class="first">[normalizer] "checks" というノーマライズ前の文字列だと次の文字の位置がどこか計算するのに使う値を表示できるようにしました。この機能を有効にするには <cite>WITH_CHECK</cite> フラグを使用します。</p>
|
208
|
-
</li>
|
209
|
-
<li><p class="first">[deb] Ubuntu 13.04 (Raring Ringtail)のサポートをやめました。</p>
|
210
|
-
</li>
|
211
|
-
</ul>
|
212
|
-
</div>
|
213
|
-
<div class="section" id="id5">
|
214
|
-
<h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
215
|
-
<ul class="simple">
|
216
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_expr</span></tt> のオブジェクトが解放後にアクセスされクラッシュしてしまう不具合を修正しました。Groongaサーバーを利用している場合にはこの不具合に該当しません。主にこの不具合の影響を受けるのはRroongaユーザーです。この不具合はRroongaのAPIに <tt class="docutils literal"><span class="pre">_key</span></tt> のような疑似カラム名を含んだ指定をすることで発生します。</p>
|
217
|
-
</li>
|
218
|
-
<li><p class="first">Groonga 3.0.8で導入されたカスケード削除を意図せず実行しないようにしました。参照元とインデックスのドメインが異なる場合にはカスケード削除を実行しないようにしました。 [groonga-dev,02073] [yokuさんが報告]</p>
|
219
|
-
</li>
|
220
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_snip</span></tt> 構造体を公開しないようにしました。 <tt class="docutils literal"><span class="pre">grn_snip</span></tt> のかわりに <tt class="docutils literal"><span class="pre">grn_obj</span></tt> を使うようにしてください。もし <tt class="docutils literal"><span class="pre">grn_snip_close</span></tt> を使っていたら、 <tt class="docutils literal"><span class="pre">grn_obj_close</span></tt> に置き換えてください。</p>
|
221
|
-
</li>
|
222
|
-
<li><p class="first">[snippet_html] --queryが空のときにクラッシュする不具合を修正しました。 [groonga-dev,02097] [村上さんが報告]</p>
|
223
|
-
</li>
|
224
|
-
<li><p class="first">[snippet_html] カラムの中身が空のときのALERTレベルのメッセージを抑制するようにしました。 [groonga-dev,02097] [村上さんが報告]</p>
|
225
|
-
</li>
|
226
|
-
<li><p class="first">[groonga-httpd] "off" が通常のパス名として <tt class="docutils literal"><span class="pre">groonga_query_log_path</span></tt> で使われてしまう不具合を修正しました。 [groonga-dev,02113] [山本良二さんが報告]</p>
|
227
|
-
</li>
|
228
|
-
</ul>
|
229
|
-
</div>
|
230
|
-
<div class="section" id="id6">
|
231
|
-
<h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
232
|
-
<ul class="simple">
|
233
|
-
<li><p class="first">yokuさん</p>
|
234
|
-
</li>
|
235
|
-
<li><p class="first">村上さん</p>
|
236
|
-
</li>
|
237
|
-
<li><p class="first">山本良二さん</p>
|
238
|
-
</li>
|
239
|
-
</ul>
|
240
|
-
</div>
|
241
|
-
</div>
|
242
|
-
<div class="section" id="release-3-1-2-2014-01-29">
|
243
|
-
<span id="release-3-1-2"></span><h2>3.1.2リリース - 2014/01/29<a class="headerlink" href="#release-3-1-2-2014-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
244
|
-
<div class="section" id="id7">
|
245
|
-
<h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
246
|
-
<ul class="simple">
|
247
|
-
<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>
|
248
|
-
</li>
|
249
|
-
<li><p class="first">ロックタイムアウトの値をカスタマイズできるようにしました。 詳細は <a class="reference internal" href="reference/api/global_configurations.html"><em>全体設定</em></a> を参照してください。 [groonga-dev,02017] [yokuさんが提案]</p>
|
250
|
-
</li>
|
251
|
-
<li><p class="first">[doc] ロックタイムアウトについての説明を追加しました。</p>
|
252
|
-
</li>
|
253
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">GRN_JA_SKIP_SAME_VALUE_PUT</span></tt> をデフォルトで有効にしました。以前のバージョンまでは、この設定は 'no' となっていました。この変更により、Groongaのデータベースのサイズの増加を抑制できます。</p>
|
254
|
-
</li>
|
255
|
-
<li><p class="first">ネストしたインデックスと複数のキーワードを含むクエリに対するインデックスを使えるようにしました。この変更で複数のキーワードで絞り込んだときに検索結果が欠落していた問題が改善します。</p>
|
256
|
-
</li>
|
257
|
-
<li><p class="first">スニペット向けにノーマライザーをカスタマイズするためのAPIを追加しました。</p>
|
258
|
-
</li>
|
259
|
-
</ul>
|
260
|
-
</div>
|
261
|
-
<div class="section" id="id8">
|
262
|
-
<h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
263
|
-
<ul class="simple">
|
264
|
-
<li><p class="first">空のクエリに対してインデックスを使わないようにしました。この変更で、空のクエリでも検索できるようになりました。ただし空のレコードがたくさんあるとパフォーマンスの問題があることに注意してください。 [groonga-dev,02052] [村上さんが報告]</p>
|
265
|
-
</li>
|
266
|
-
<li><p class="first">"X || Y"と"X && Y"の返り値の振舞いをECMAScriptに準拠するようにしました。"X || Y"では、もしXかYが条件を満す場合にはXもしくはYそのものの値を返します。以前は1もしくは0を返していました。</p>
|
267
|
-
</li>
|
268
|
-
<li><p class="first">"X && Y"では、もしXとYが条件を満す場合には、1ではなく、Xの値を返します。もしXが条件を満さない場合には、0ではなくfalseを返します。</p>
|
269
|
-
</li>
|
270
|
-
<li><p class="first">スニペットが見付からない場合にはnullを返すようにしました。この変更により、 <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> のデフォルトの値を指定できるようになりました。この用途には "snippet_html(XXX) || 'デフォルトの値'"を使って下さい。</p>
|
271
|
-
</li>
|
272
|
-
</ul>
|
273
|
-
</div>
|
274
|
-
<div class="section" id="id9">
|
275
|
-
<h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
276
|
-
<ul class="simple">
|
277
|
-
<li><p class="first">cosmo0920さん</p>
|
278
|
-
</li>
|
279
|
-
<li><p class="first">yokuさん</p>
|
280
|
-
</li>
|
281
|
-
<li><p class="first">村上さん</p>
|
282
|
-
</li>
|
283
|
-
</ul>
|
284
|
-
</div>
|
285
|
-
</div>
|
286
|
-
<div class="section" id="release-3-1-1-2013-12-29">
|
287
|
-
<span id="release-3-1-1"></span><h2>3.1.1リリース - 2013/12/29<a class="headerlink" href="#release-3-1-1-2013-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
288
|
-
<div class="section" id="id10">
|
289
|
-
<h3>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
290
|
-
<ul class="simple">
|
291
|
-
<li><p class="first">[deb] Debianのパッケージングポリシーに準拠するようにしました。[groonga-dev,01930] [やまねさんが提案]</p>
|
292
|
-
</li>
|
293
|
-
<li><p class="first">[deb] Debian 6.0 (squeeze)のサポートをやめました。</p>
|
294
|
-
</li>
|
295
|
-
<li><p class="first">[deb] Ubuntu 10.04 (Lucid)のサポートをやめました。</p>
|
296
|
-
</li>
|
297
|
-
<li><p class="first"><a class="reference internal" href="reference/functions/geo_in_rectangle.html"><em>geo_in_rectangle</em></a> が全世界をサポートしました。</p>
|
298
|
-
</li>
|
299
|
-
<li><p class="first">GeoPoint型の値のキャストに失敗したときにエラーを報告するようになりました。</p>
|
300
|
-
</li>
|
301
|
-
<li><p class="first">疑似カラム名でアクセスするためにいくつかのマクロを公開するようにしました。[groonga-dev,01999] [whombxさんが提案]</p>
|
302
|
-
</li>
|
303
|
-
<li><p class="first">[doc] ドリルダウンのドキュメントを整理しました。[@Yappoさんが報告]</p>
|
304
|
-
</li>
|
305
|
-
<li><p class="first">特定の範囲にあるカラムの値をフィルタリングするのに使う <a class="reference internal" href="reference/functions/between.html"><em>between</em></a> 関数をサポートしました。</p>
|
306
|
-
</li>
|
307
|
-
<li><p class="first">[doc] Travis CIの環境情報を更新しました。[cosmo0920さんがパッチ提供]</p>
|
308
|
-
</li>
|
309
|
-
<li><p class="first">[rpm][fedora] Fedora 19のサポートをやめました。</p>
|
310
|
-
</li>
|
311
|
-
<li><p class="first">[rpm][fedora] Fedora 20をサポートしました。</p>
|
312
|
-
</li>
|
313
|
-
<li><p class="first">[doc] "Groonga" 表記に更新しました。[cosmo0920さんがパッチ提供] [GitHub#122, #123, #124, #125, #125, #126, #127, #128, #129, #130, #131, #131, #132, #133, #134]</p>
|
314
|
-
</li>
|
315
|
-
</ul>
|
316
|
-
</div>
|
317
|
-
<div class="section" id="id11">
|
318
|
-
<h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
319
|
-
<ul class="simple">
|
320
|
-
<li><p class="first">[munin] GQTPのポート番号の誤りを修正しました。</p>
|
321
|
-
</li>
|
322
|
-
<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>
|
323
|
-
</li>
|
324
|
-
</ul>
|
325
|
-
</div>
|
326
|
-
<div class="section" id="id12">
|
327
|
-
<h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
328
|
-
<ul class="simple">
|
329
|
-
<li><p class="first">やまねひできさん</p>
|
330
|
-
</li>
|
331
|
-
<li><p class="first">whombxさん</p>
|
332
|
-
</li>
|
333
|
-
<li><p class="first">@Yappoさん</p>
|
334
|
-
</li>
|
335
|
-
<li><p class="first">cosmo0920さん</p>
|
336
|
-
</li>
|
337
|
-
</ul>
|
338
|
-
</div>
|
339
|
-
</div>
|
340
|
-
<div class="section" id="release-3-1-0-2013-11-29">
|
341
|
-
<span id="release-3-1-0"></span><h2>3.1.0リリース - 2013/11/29<a class="headerlink" href="#release-3-1-0-2013-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
342
|
-
<div class="section" id="id13">
|
343
|
-
<h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
344
|
-
<ul class="simple">
|
345
|
-
<li><p class="first">[実験的] 同じ値なら更新をスキップするオプションをサポートしました。
|
346
|
-
GRN_JA_SKIP_SAME_VALUE_PUT=yesを環境変数に設定すると有効になります。</p>
|
347
|
-
</li>
|
348
|
-
<li><p class="first">空のトークンを警告するときにトークナイザーと元のテキストを表示するよう
|
349
|
-
にしました。これにより実際のトークンが表示されるので、トークンにまつわ
|
350
|
-
る問題を調べるのに役立ちます。</p>
|
351
|
-
</li>
|
352
|
-
<li><p class="first">AIOサポートを打ち切りました。[#2054] [sho MINAGAWAさんが報告]</p>
|
353
|
-
</li>
|
354
|
-
<li><p class="first">[windows] Visual Studio Express 2008でのビルドをサポートしました。[#1964 21番目のコメント参照] 将来的にMariaDBへのバンドルを推進することを目的としています。</p>
|
355
|
-
</li>
|
356
|
-
</ul>
|
357
|
-
</div>
|
358
|
-
<div class="section" id="id14">
|
359
|
-
<h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
360
|
-
<ul class="simple">
|
361
|
-
<li><p class="first">"_value"カラムの型がInt32として扱われる問題を修正しました。このバグ
|
362
|
-
で"_value"カラムの値が意図せずキャストされてしまうことがありました。[瀧内さんが報告]</p>
|
363
|
-
</li>
|
364
|
-
<li><p class="first">ベンチマークプログラム向けにはGLib 2.14.0以降を要求するようにしました。
|
365
|
-
ベンチマークプログラムがGRegexを使うようになったためです。
|
366
|
-
Groongaを'--enable-benchmark'でビルドしようとしていた場合に問題となっ
|
367
|
-
ていました。[groonga-dev,01890] [WINGさんが報告]</p>
|
368
|
-
</li>
|
369
|
-
<li><p class="first">空のベクターカラムを更新しようとしたときにメモリリークする問題を修正し
|
370
|
-
ました。</p>
|
371
|
-
</li>
|
372
|
-
<li><p class="first">ベクターカラムのインデックスを更新するときにメモリリークする問題を修正
|
373
|
-
しました。UTF-8として正しくないバイトシーケンスをカラムの値として保存
|
374
|
-
してある場合にこの影響を受けます。</p>
|
375
|
-
</li>
|
376
|
-
<li><p class="first">[プラグイン][windows] 'lib/groonga/plugins'を指定しないとregisterコマンドが
|
377
|
-
失敗する問題を修正しました。[@yitoさんが報告]</p>
|
378
|
-
</li>
|
379
|
-
</ul>
|
380
|
-
</div>
|
381
|
-
<div class="section" id="id15">
|
382
|
-
<h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
383
|
-
<ul class="simple">
|
384
|
-
<li><p class="first">sho MINAGAWAさん</p>
|
385
|
-
</li>
|
386
|
-
<li><p class="first">瀧内元気さん</p>
|
387
|
-
</li>
|
388
|
-
<li><p class="first">WINGさん</p>
|
389
|
-
</li>
|
390
|
-
<li><p class="first">@yitoさん</p>
|
391
|
-
</li>
|
392
|
-
</ul>
|
393
|
-
</div>
|
394
|
-
</div>
|
395
|
-
<div class="section" id="release-3-0-9-2013-10-29">
|
396
|
-
<span id="release-3-0-9"></span><h2>3.0.9リリース - 2013/10/29<a class="headerlink" href="#release-3-0-9-2013-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
397
|
-
<div class="section" id="id16">
|
398
|
-
<h3>改良<a class="headerlink" href="#id16" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
399
|
-
<ul class="simple">
|
400
|
-
<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>
|
401
|
-
</li>
|
402
|
-
<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>
|
403
|
-
</li>
|
404
|
-
<li><p class="first">[doc] zlib/lzoによる圧縮がデフォルトで無効となっている理由を追加しました。 [groonga-dev,01845] [村上さんが提案]</p>
|
405
|
-
</li>
|
406
|
-
<li><p class="first">HTTPサーバーのRLIMIT_NOFILEに関連した制限を削除しました。HTTPサーバープロセスが4096以上のファイルを扱えるようにしています。</p>
|
407
|
-
</li>
|
408
|
-
<li><p class="first">[実験的] Groongaへmrubyを統合するためのAPIをいくつか追加しました。 [GitHub#109, #110, #111, #112, #113, #114, #115, #116, #117, #118] [wanabeさんがパッチ提供]</p>
|
409
|
-
</li>
|
410
|
-
<li><p class="first">[travis] Travis-CI上でCMakeによるビルドをサポートしました。</p>
|
411
|
-
</li>
|
412
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/tuning.html"><em>Tuning</em></a> のドキュメントを追加しました。</p>
|
413
|
-
</li>
|
414
|
-
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/ruby_load.html"><em>ruby_load</em></a> コマンドを追加しました。</p>
|
415
|
-
</li>
|
416
|
-
<li><p class="first">[httpd] メッセージボディが複数バッファリングされているPOSTリクエストをサポートしました。そのような場合にこれまではタイムアウトしていました。 [GitHub#120] [鷲田さんがパッチを提供]</p>
|
417
|
-
</li>
|
418
|
-
<li><p class="first">[gqtp] エラーメッセージをサポートしました。メッセージボディとしてテキストを二重引用符で囲むことなく返します。これは非互換な変更です。</p>
|
419
|
-
</li>
|
420
|
-
<li><p class="first">[http] "400 Bad request" を引数のエラーとしてサポートしました。</p>
|
421
|
-
</li>
|
422
|
-
<li><p class="first">[doc] <a class="reference internal" href="suggest/completion.html"><em>補完</em></a> のサンプルを追加しました。</p>
|
423
|
-
</li>
|
424
|
-
<li><p class="first">Ubuntu 13.10 Saucy Salamanderをサポート。</p>
|
425
|
-
</li>
|
426
|
-
</ul>
|
427
|
-
</div>
|
428
|
-
<div class="section" id="id17">
|
429
|
-
<h3>修正<a class="headerlink" href="#id17" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
430
|
-
<ul class="simple">
|
431
|
-
<li><p class="first">オーバーフローによってSEGVを引き起こす不具合を修正しました。この問題はインデックスのサイズが仮想メモリのサイズを超過したような場合に発生します。 [groonga-dev,01661] [村上さんが報告]</p>
|
432
|
-
</li>
|
433
|
-
<li><p class="first">テーブルを作成するときの不要なロックをかけないようにしました。この変更はGroonga 3.0.5で入ったパフォーマンス低下を解消します。</p>
|
434
|
-
</li>
|
435
|
-
<li><p class="first">データベースに参照カラムがある場合に削除できない不具合を修正しました。インデックスカラムや参照カラムを先に削除することなく、インデックステーブルやカラムを削除しようとして失敗するというものです。[Eito Katagiriが報告] [GitHub Rroonga #13]</p>
|
436
|
-
</li>
|
437
|
-
<li><p class="first">DATキーを使っているデータベースの削除でごみが残ったままになる不具合を修正しました。</p>
|
438
|
-
</li>
|
439
|
-
<li><p class="first">[http] 同じワーカースレッドにおいてHTTPヘッダのバッファを共有していることによりメモリリークが発生していた問題を修正しました。</p>
|
440
|
-
</li>
|
441
|
-
<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>
|
442
|
-
</li>
|
443
|
-
<li><p class="first">statusコマンドが正しくないキャッシュヒット率を返すことがある問題を修正しました。</p>
|
444
|
-
</li>
|
445
|
-
<li><p class="first">Time型にキャストするときにオーバーフローする問題を修正しました。これはTime型に32bitの範囲を超えた値を設定する場合に影響します。</p>
|
446
|
-
</li>
|
447
|
-
</ul>
|
448
|
-
</div>
|
449
|
-
<div class="section" id="id18">
|
450
|
-
<h3>感謝<a class="headerlink" href="#id18" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
451
|
-
<ul class="simple">
|
452
|
-
<li><p class="first">村上さん</p>
|
453
|
-
</li>
|
454
|
-
<li><p class="first">wanabeさん</p>
|
455
|
-
</li>
|
456
|
-
<li><p class="first">鷲田基さん</p>
|
457
|
-
</li>
|
458
|
-
<li><p class="first">Eito Katagiriさん</p>
|
459
|
-
</li>
|
460
|
-
</ul>
|
461
|
-
</div>
|
462
|
-
</div>
|
463
|
-
<div class="section" id="release-3-0-8-2013-09-29">
|
464
|
-
<span id="release-3-0-8"></span><h2>3.0.8リリース - 2013/09/29<a class="headerlink" href="#release-3-0-8-2013-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
465
|
-
<div class="section" id="id19">
|
466
|
-
<h3>改良<a class="headerlink" href="#id19" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
467
|
-
<ul class="simple">
|
468
|
-
<li><p class="first">[admin] 検索機能のエラー処理を改善しました。エラーメッセージを表示した後に、読み込み中のダイアログを消去します。 [orangainさんがパッチ提供]</p>
|
469
|
-
</li>
|
470
|
-
<li><p class="first">[admin] Enterキーで検索フォームを送信するようにしました。 [orangainさんがパッチ提供]</p>
|
471
|
-
</li>
|
472
|
-
<li><p class="first">[admin] 検索フォームにプレースホルダを表示するようにしました。この変更で使用例を表示するようになります。 [orangainさんがパッチ提供]</p>
|
473
|
-
</li>
|
474
|
-
<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>
|
475
|
-
</li>
|
476
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> コマンドのレスポンスのヒット数に関するドキュメントを更新しました。</p>
|
477
|
-
</li>
|
478
|
-
<li><p class="first">連続するスペースによって作られる空のトークンをトークナイザーでは無視するようにしました。 [groonga-dev,01729] [村上さんが報告]</p>
|
479
|
-
</li>
|
480
|
-
<li><p class="first">[token delimit] 連続したスペースはスペース1つとして扱うことにしました。トークナイザーは2以上のスペースを入力として受付ます。</p>
|
481
|
-
</li>
|
482
|
-
<li><p class="first">[doc] 各カラムごとのインデックスとマルチカラムインデックスについての備考を追加しました。</p>
|
483
|
-
</li>
|
484
|
-
<li><p class="first">[doc] ソースコードへのリンクのラベルに言語の注記を追加しました。[groonga-dev,01751] [磯部さんが提案]</p>
|
485
|
-
</li>
|
486
|
-
<li><p class="first"><a class="reference internal" href="reference/commands/delete.html#cascade-delete"><em>カスケード削除</em></a> を参照しているレコードに対してサポートしました。これまでは、この操作でエラーになっていました。</p>
|
487
|
-
</li>
|
488
|
-
<li><p class="first">[doc] READMEのドキュメントの参照先を更新しました。[groonga-dev,01800] [磯部さんが報告]</p>
|
489
|
-
</li>
|
490
|
-
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/ruby_eval.html"><em>ruby_eval</em></a> コマンドを追加しました。</p>
|
491
|
-
</li>
|
492
|
-
<li><p class="first">[doc] GQTPとHTTPのサーバー利用に関して注記を追加しました。</p>
|
493
|
-
</li>
|
494
|
-
</ul>
|
495
|
-
</div>
|
496
|
-
<div class="section" id="id20">
|
497
|
-
<h3>修正<a class="headerlink" href="#id20" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
498
|
-
<ul class="simple">
|
499
|
-
<li><p class="first">[admin] COLUMN_VECTOR の値を追加するボタンが機能しない不具合を修正しました。</p>
|
500
|
-
</li>
|
501
|
-
</ul>
|
502
|
-
</div>
|
503
|
-
<div class="section" id="id21">
|
504
|
-
<h3>感謝<a class="headerlink" href="#id21" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
505
|
-
<ul class="simple">
|
506
|
-
<li><p class="first">@orangainさん</p>
|
507
|
-
</li>
|
508
|
-
<li><p class="first">村上さん</p>
|
509
|
-
</li>
|
510
|
-
<li><p class="first">磯部和広さん</p>
|
511
|
-
</li>
|
512
|
-
</ul>
|
513
|
-
</div>
|
514
|
-
</div>
|
515
|
-
<div class="section" id="release-3-0-7-2013-08-29">
|
516
|
-
<span id="release-3-0-7"></span><h2>3.0.7リリース - 2013/08/29<a class="headerlink" href="#release-3-0-7-2013-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
517
|
-
<div class="section" id="id22">
|
518
|
-
<h3>改良<a class="headerlink" href="#id22" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
519
|
-
<ul class="simple">
|
520
|
-
<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>
|
521
|
-
</li>
|
522
|
-
<li><p class="first">[table_remove] 参照されているパトリシアトライもしくはハッシュテーブルが削除されないようにした。この変更は参照されているテーブルがうっかり削除されないようにします。</p>
|
523
|
-
</li>
|
524
|
-
<li><p class="first">長すぎるトークン (4096バイトを超過) を単に無視するようにしました。この変更はトークンの登録時に影響します。以前は、警告ではなくエラーとして扱っていました。[groonga-dev,01571] [村上さんが提案]</p>
|
525
|
-
</li>
|
526
|
-
<li><p class="first">ログメッセージで無視された実際の語句を表示するようにしました。[groonga-dev,01621] [村上さんが報告]</p>
|
527
|
-
</li>
|
528
|
-
<li><p class="first">[httpd] POSTメソッドでデータをロードできるようにしました。 [GitHub#101] [鷲田さんがパッチを提供]</p>
|
529
|
-
</li>
|
530
|
-
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_log_path</span></tt> ディレクティブをサポートしました。</p>
|
531
|
-
</li>
|
532
|
-
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_log_level</span></tt> ディレクティブをサポートしました。</p>
|
533
|
-
</li>
|
534
|
-
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_cache_limit</span></tt> ディレクティブをサポートしました。</p>
|
535
|
-
</li>
|
536
|
-
</ul>
|
537
|
-
</div>
|
538
|
-
<div class="section" id="id23">
|
539
|
-
<h3>修正<a class="headerlink" href="#id23" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
540
|
-
<ul class="simple">
|
541
|
-
<li><p class="first">式のエラーによってスタックオーバーフローを引き起す可能性のある不具合を修正しました。この変更はエラーが積み重なって突然groongaがクラッシュするのを防ぎます。</p>
|
542
|
-
</li>
|
543
|
-
<li><p class="first">参照先のないベクタカラムの静的インデックス構築によりクラッシュする不具合を修正しました。</p>
|
544
|
-
</li>
|
545
|
-
<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>
|
546
|
-
</li>
|
547
|
-
<li><p class="first">[dump] 誤ったテーブルの型がダンプされる不具合を修正しました。この不具合はテーブルの型が <tt class="docutils literal"><span class="pre">TABLE_PAT_KEY</span></tt> かつ キーが参照型のときに発生します。</p>
|
548
|
-
</li>
|
549
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">--cache-limit</span></tt> のデフォルト値が0になっていた不具合を修正しました。デフォルト値は100に変更されました。</p>
|
550
|
-
</li>
|
551
|
-
<li><p class="first"><a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a> を使用するとメモリリークするのを修正しました。</p>
|
552
|
-
</li>
|
553
|
-
<li><p class="first">[doc] defragコマンドの説明の誤りを修正しました。 [@naoinaさんが報告]</p>
|
554
|
-
</li>
|
555
|
-
<li><p class="first">[doc] 貢献する方法の説明を修正しました。 [GitHub#77] [横山さんがパッチを提供]</p>
|
556
|
-
</li>
|
557
|
-
<li><p class="first">[プラグイン] 複数回データベースを開いているときにクラッシュする不具合を修正しました。この不具合は複数のプラグインが使われていて、同一のデータベースが複数のプロセスによってオープンされているような場合に影響します。[groonga-dev,01596] [村上さんが報告]</p>
|
558
|
-
</li>
|
559
|
-
<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>
|
560
|
-
</li>
|
561
|
-
<li><p class="first">特殊文字のドキュメントの誤字を修正しました。 [瀧内さんが報告]</p>
|
562
|
-
</li>
|
563
|
-
<li><p class="first">不正な文字が渡されたときのエラーメッセージの誤りを修正しました。[吉田光男さんが報告]</p>
|
564
|
-
</li>
|
565
|
-
</ul>
|
566
|
-
</div>
|
567
|
-
<div class="section" id="id24">
|
568
|
-
<h3>感謝<a class="headerlink" href="#id24" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
569
|
-
<ul class="simple">
|
570
|
-
<li><p class="first">whombxさん</p>
|
571
|
-
</li>
|
572
|
-
<li><p class="first">@naoinaさん</p>
|
573
|
-
</li>
|
574
|
-
<li><p class="first">横山さん</p>
|
575
|
-
</li>
|
576
|
-
<li><p class="first">鷲田基さん</p>
|
577
|
-
</li>
|
578
|
-
<li><p class="first">瀧内元気さん</p>
|
579
|
-
</li>
|
580
|
-
<li><p class="first">吉田光男さん</p>
|
581
|
-
</li>
|
582
|
-
</ul>
|
583
|
-
</div>
|
584
|
-
</div>
|
585
|
-
<div class="section" id="release-3-0-6-2013-07-29">
|
586
|
-
<span id="release-3-0-6"></span><h2>3.0.6リリース - 2013/07/29<a class="headerlink" href="#release-3-0-6-2013-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
587
|
-
<div class="section" id="id25">
|
588
|
-
<h3>改良<a class="headerlink" href="#id25" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
589
|
-
<ul class="simple">
|
590
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/functions/sub_filter.html"><em>sub_filter</em></a> の引数に関するドキュメントを追加しました。</p>
|
591
|
-
</li>
|
592
|
-
<li><p class="first">[suggest] 0MQ 3.xをサポートしました。[GitHub#63] [稲田さんが報告]</p>
|
593
|
-
</li>
|
594
|
-
<li><p class="first">NetBSD向けに <tt class="docutils literal"><span class="pre">pthread_{mutex,cond}attr_setpshared()</span></tt> が使えるかチェックを追加しました。[おばたさんが報告]</p>
|
595
|
-
</li>
|
596
|
-
<li><p class="first">クエリ構文でバックスラッシュでのエスケープをサポートしました。[groonga-dev,01520] [田辺さんが報告]</p>
|
597
|
-
</li>
|
598
|
-
<li><p class="first">[rpm][fedora] Fedora 19をサポート。</p>
|
599
|
-
</li>
|
600
|
-
<li><p class="first">[rpm][fedora] Fedora 18サポートを削除。</p>
|
601
|
-
</li>
|
602
|
-
<li><p class="first">[httpd] バンドルしているnginxのバージョンを1.4.2に更新しました。</p>
|
603
|
-
</li>
|
604
|
-
</ul>
|
605
|
-
</div>
|
606
|
-
<div class="section" id="id26">
|
607
|
-
<h3>修正<a class="headerlink" href="#id26" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
608
|
-
<ul class="simple">
|
609
|
-
<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>
|
610
|
-
</li>
|
611
|
-
</ul>
|
612
|
-
</div>
|
613
|
-
<div class="section" id="id27">
|
614
|
-
<h3>感謝<a class="headerlink" href="#id27" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
615
|
-
<ul class="simple">
|
616
|
-
<li><p class="first">稲田尚也さん</p>
|
617
|
-
</li>
|
618
|
-
<li><p class="first">おばたさん</p>
|
619
|
-
</li>
|
620
|
-
<li><p class="first">田辺公平さん</p>
|
621
|
-
</li>
|
622
|
-
<li><p class="first">瀧内元気さん</p>
|
623
|
-
</li>
|
624
|
-
</ul>
|
625
|
-
</div>
|
626
|
-
</div>
|
627
|
-
<div class="section" id="release-3-0-5-2013-06-29">
|
628
|
-
<span id="release-3-0-5"></span><h2>3.0.5リリース - 2013/06/29<a class="headerlink" href="#release-3-0-5-2013-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
629
|
-
<div class="section" id="id28">
|
630
|
-
<h3>改良<a class="headerlink" href="#id28" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
631
|
-
<ul class="simple">
|
632
|
-
<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>
|
633
|
-
</li>
|
634
|
-
<li><p class="first">subrecordの情報をテーブルのインスペクション時に表示するようにしました。</p>
|
635
|
-
</li>
|
636
|
-
<li><p class="first">シングルクォートした文字列を <tt class="docutils literal"><span class="pre">output_columns</span></tt> でもサポートしました。これは "XXX, '...'" といった表現がサポートされたことを意味しています。</p>
|
637
|
-
</li>
|
638
|
-
<li><p class="first">[doc] groongaサーバーを起動する際のroot権限と使用ポートに関する注意を追加しました。 [浅見さんが報告]</p>
|
639
|
-
</li>
|
640
|
-
<li><p class="first">[実験的] <a class="reference internal" href="reference/functions/html_untag.html"><em>html_untag</em></a> 関数を追加しました。</p>
|
641
|
-
</li>
|
642
|
-
</ul>
|
643
|
-
</div>
|
644
|
-
<div class="section" id="id29">
|
645
|
-
<h3>修正<a class="headerlink" href="#id29" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
646
|
-
<ul class="simple">
|
647
|
-
<li><p class="first">テーブル作成時に必要なロックをかけていないことでmroongaがクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
|
648
|
-
</li>
|
649
|
-
<li><p class="first">ClangやGCCによるコンパイル時の警告を抑制するように修正しました。</p>
|
650
|
-
</li>
|
651
|
-
<li><p class="first">"XXX && sub_filter(...)" という表現をすると <tt class="docutils literal"><span class="pre">sub_filter(...)</span></tt> が無視される不具合を修正しました。</p>
|
652
|
-
</li>
|
653
|
-
<li><p class="first">間違ったタグ名がXMLの出力で使われる不具合を修正しました。この不具合は <tt class="docutils literal"><span class="pre">output_columns</span></tt> で "REFERENCE_VECTOR_COLUMN._key" という表現をすると影響を受けます。 参照カラムがXMLの出力に含まれません。</p>
|
654
|
-
</li>
|
655
|
-
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">sub_filter()</span></tt> のドキュメントにおける引数の誤りを修正しました。</p>
|
656
|
-
</li>
|
657
|
-
<li><p class="first">[deb] サービス停止中のステータスとして正しくない終了コードを返す不具合を修正しました。</p>
|
658
|
-
</li>
|
659
|
-
<li><p class="first">算術演算の結果が壊れる不具合を修正しました。この不具合は例えば <tt class="docutils literal"><span class="pre">_score</span></tt> 疑似カラムへと計算結果を代入するような場合に影響します。</p>
|
660
|
-
</li>
|
661
|
-
</ul>
|
662
|
-
</div>
|
663
|
-
<div class="section" id="id30">
|
664
|
-
<h3>感謝<a class="headerlink" href="#id30" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
665
|
-
<ul class="simple">
|
666
|
-
<li><p class="first">Y.Kentaroさん</p>
|
667
|
-
</li>
|
668
|
-
<li><p class="first">浅見公輔さん</p>
|
669
|
-
</li>
|
670
|
-
<li><p class="first">@orangainさん</p>
|
671
|
-
</li>
|
672
|
-
</ul>
|
673
|
-
</div>
|
674
|
-
</div>
|
675
|
-
<div class="section" id="release-3-0-4-2013-05-29">
|
676
|
-
<span id="release-3-0-4"></span><h2>3.0.4リリース - 2013/05/29<a class="headerlink" href="#release-3-0-4-2013-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
677
|
-
<div class="section" id="id31">
|
678
|
-
<h3>改良<a class="headerlink" href="#id31" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
679
|
-
<ul class="simple">
|
680
|
-
<li><p class="first">[tokenizer] ノーマライズした文字列が与えられないときにログメッセージを表示するようにしました。</p>
|
681
|
-
</li>
|
682
|
-
<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>
|
683
|
-
</li>
|
684
|
-
<li><p class="first">groongaをライブラリとして使うときに、ベクタカラムのキャストをサポートしました。</p>
|
685
|
-
</li>
|
686
|
-
<li><p class="first">Ubuntu 11.10 (Oneiric Ocelot)のサポートをやめました。</p>
|
687
|
-
</li>
|
688
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">match_columns</span></tt> にてマルチセクション対応のインデックス指定をサポートしました。</p>
|
689
|
-
</li>
|
690
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">tokenize</span></tt> コマンドをサポートしました。</p>
|
691
|
-
</li>
|
692
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">mmap()</span></tt> が失敗したときのシステムエラーメッセージの表示をサポートしました。</p>
|
693
|
-
</li>
|
694
|
-
<li><p class="first">[doc][windows] ビルド手順を "cmake --build" でできるように簡略化しました。</p>
|
695
|
-
</li>
|
696
|
-
<li><p class="first">サービススクリプトが応答しなくならないように最大実行時間を制限するようにしました。[GitHub#61] [firewoodさんが報告]</p>
|
697
|
-
</li>
|
698
|
-
<li><p class="first">ベクタを真偽値として評価できるようにしました。この変更で空のベクタはtrueとして評価されるようになります。</p>
|
699
|
-
</li>
|
700
|
-
<li><p class="first">不要なログメッセージを何度も出さないようにしました。不要なログメッセージは"(N same messages are truncated)"として省略されるようになります。</p>
|
701
|
-
</li>
|
702
|
-
<li><p class="first">[munin][groonga_n_records] <tt class="docutils literal"><span class="pre">exclude_tables</span></tt> オプションを追加しました。これによりモニタリング結果から特定のテーブルを除去することができます。</p>
|
703
|
-
</li>
|
704
|
-
<li><p class="first">Debian 8.0 (jessie)をサポートしました。</p>
|
705
|
-
</li>
|
706
|
-
<li><p class="first">プラグインのディレクトリパスを除去することでデータベースファイルのポータビリティを改善しました。</p>
|
707
|
-
</li>
|
708
|
-
</ul>
|
709
|
-
</div>
|
710
|
-
<div class="section" id="id32">
|
711
|
-
<h3>修正<a class="headerlink" href="#id32" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
712
|
-
<ul class="simple">
|
713
|
-
<li><p class="first">[tokenizer] エラー時のメモリリークを修正しました。</p>
|
714
|
-
</li>
|
715
|
-
<li><p class="first">空の文字列による類似検索がSEGVを引き起す不具合を修正しました。[groonga-dev,01346] [中井さんが報告]</p>
|
716
|
-
</li>
|
717
|
-
<li><p class="first">"VECTOR_COLUMN != xxx", "VECTOR_COLUMN && xxx" といった式が使われたときにメモリリークする問題を修正しました。</p>
|
718
|
-
</li>
|
719
|
-
<li><p class="first">SIGSTOPとSIGCONTによりgroongaサーバが停止してしまう不具合を修正しました。</p>
|
720
|
-
</li>
|
721
|
-
<li><p class="first">ノーマライザーがノーマライズ済み文字列としてNULLを返したときにクラッシュする不具合を修正しました。 [Y.Kentaroさんが報告]</p>
|
722
|
-
</li>
|
723
|
-
<li><p class="first">デーモン化する課程が OS Xでは動作しない不具合を修正。[groonga-dev,01440] [小西さんが報告]</p>
|
724
|
-
</li>
|
725
|
-
<li><p class="first">[deb] HTTP/GQTPプロセスがroot権限で実行されてしまう不具合を修正しました。</p>
|
726
|
-
</li>
|
727
|
-
</ul>
|
728
|
-
</div>
|
729
|
-
<div class="section" id="id33">
|
730
|
-
<h3>感謝<a class="headerlink" href="#id33" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
731
|
-
<ul class="simple">
|
732
|
-
<li><p class="first">@ceekzさん</p>
|
733
|
-
</li>
|
734
|
-
<li><p class="first">中井さん</p>
|
735
|
-
</li>
|
736
|
-
<li><p class="first">firewoodさん</p>
|
737
|
-
</li>
|
738
|
-
<li><p class="first">Y.Kentaroさん</p>
|
739
|
-
</li>
|
740
|
-
<li><p class="first">小西さん</p>
|
741
|
-
</li>
|
742
|
-
<li><p class="first">@orangainさん</p>
|
743
|
-
</li>
|
744
|
-
</ul>
|
745
|
-
</div>
|
746
|
-
</div>
|
747
|
-
<div class="section" id="release-3-0-3-2013-04-29">
|
748
|
-
<span id="release-3-0-3"></span><h2>3.0.3リリース - 2013/04/29<a class="headerlink" href="#release-3-0-3-2013-04-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
749
|
-
<div class="section" id="id34">
|
750
|
-
<h3>改良<a class="headerlink" href="#id34" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
751
|
-
<ul class="simple">
|
752
|
-
<li><p class="first">[suggest] <tt class="docutils literal"><span class="pre">configuration.weight</span></tt> を使って学習時の重みづけをカスタマイズできるようになりました。</p>
|
753
|
-
</li>
|
754
|
-
<li><p class="first">位置情報検索のパフォーマンスを改善しました。例えば、 <tt class="docutils literal"><span class="pre">geo_in_rectangle</span></tt> の実行速度が10%程度以前より高速化しています。</p>
|
755
|
-
</li>
|
756
|
-
<li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">additional_configure_options</span></tt> パラメータを追加しました。groongaをカスタマイズしてビルドするのにspecファイルを修正する必要はありません。</p>
|
757
|
-
</li>
|
758
|
-
<li><p class="first">KyTea 0.4.5をサポート。</p>
|
759
|
-
</li>
|
760
|
-
<li><p class="first">ベクターに対し "vector[N]" という構文でインデックスを指定してアクセスできるようにした。</p>
|
761
|
-
</li>
|
762
|
-
<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>
|
763
|
-
</li>
|
764
|
-
<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>
|
765
|
-
</li>
|
766
|
-
<li><p class="first">Ubuntu 13.04 Raring Ringtailをサポート。</p>
|
767
|
-
</li>
|
768
|
-
</ul>
|
769
|
-
</div>
|
770
|
-
</div>
|
771
|
-
<div class="section" id="release-3-0-2-2013-03-29">
|
772
|
-
<span id="release-3-0-2"></span><h2>3.0.2リリース - 2013/03/29<a class="headerlink" href="#release-3-0-2-2013-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
773
|
-
<div class="section" id="id35">
|
774
|
-
<h3>改良<a class="headerlink" href="#id35" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
775
|
-
<ul class="simple">
|
776
|
-
<li><p class="first">2つ以上のインデックスをテーブルのキーに対して張れるようにしました。この変更はインデックスを張ったキーへ新たなキーをロードしたときにクラッシュしないようにします。</p>
|
777
|
-
</li>
|
778
|
-
<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>
|
779
|
-
</li>
|
780
|
-
<li><p class="first"><a class="reference internal" href="reference/commands/load.html"><em>load</em></a> コマンドのドキュメントを追加。</p>
|
781
|
-
</li>
|
782
|
-
<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>
|
783
|
-
</li>
|
784
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">-X</span></tt> といった演算子をInt8, UInt8, Int16, UInt16 や UInt64に対してもサポートしました。</p>
|
785
|
-
</li>
|
786
|
-
<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>
|
787
|
-
</li>
|
788
|
-
<li><p class="first">開発ページにgroongaリポジトリの情報を追加しました。</p>
|
789
|
-
</li>
|
790
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">sub_filter()</span></tt> 関数を追加しました。</p>
|
791
|
-
</li>
|
792
|
-
<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>
|
793
|
-
</li>
|
794
|
-
<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>
|
795
|
-
</li>
|
796
|
-
</ul>
|
797
|
-
</div>
|
798
|
-
<div class="section" id="id36">
|
799
|
-
<h3>修正<a class="headerlink" href="#id36" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
800
|
-
<ul class="simple">
|
801
|
-
<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>
|
802
|
-
</li>
|
803
|
-
<li><p class="first">インストールのドキュメントの誤字を修正。 [hinoさんが報告]</p>
|
804
|
-
</li>
|
805
|
-
<li><p class="first">Travi-CIセットアップ用のスクリプトが動作しない不具合を修正した。[groonga-dev,01248] [ongaeshiさんが報告]</p>
|
806
|
-
</li>
|
807
|
-
<li><p class="first">メモリリークを修正した。この不具合は次の3つの条件が重なったときに発生します。参照カラムかつそのカラムがベクター型であって、キーのサイズが25バイト以上のとき。</p>
|
808
|
-
</li>
|
809
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span> <span class="pre">_score.GARBAGE</span></tt> というクエリによってクラッシュする不具合を修正した。この不具合はGARBAGEが存在しないときに影響します。</p>
|
810
|
-
</li>
|
811
|
-
</ul>
|
812
|
-
</div>
|
813
|
-
<div class="section" id="id37">
|
814
|
-
<h3>感謝<a class="headerlink" href="#id37" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
815
|
-
<ul class="simple">
|
816
|
-
<li><p class="first">Hendro Wibowoさん</p>
|
817
|
-
</li>
|
818
|
-
<li><p class="first">hinoさん</p>
|
819
|
-
</li>
|
820
|
-
<li><p class="first">ongaeshiさん</p>
|
821
|
-
</li>
|
822
|
-
</ul>
|
823
|
-
</div>
|
824
|
-
</div>
|
825
|
-
<div class="section" id="release-3-0-1-2013-02-28">
|
826
|
-
<span id="release-3-0-1"></span><h2>3.0.1リリース - 2013/02/28<a class="headerlink" href="#release-3-0-1-2013-02-28" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
827
|
-
<div class="section" id="id38">
|
828
|
-
<h3>改良<a class="headerlink" href="#id38" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
829
|
-
<ul class="simple">
|
830
|
-
<li><p class="first">loadコマンドでデータをロードするときに参照カラムに対するBoolの設定をサポートしました。</p>
|
831
|
-
</li>
|
832
|
-
<li><p class="first">ネストしたインデックスに対してAND検索できるようになりました。この変更で、"COLUMN1.COLUMN2 >= 1 && COLUMN1.COLUMN2 <=3"という検索ができるようになります。ただし、"1 <= COLUMN1.COLUMN2" という表記はまだサポートしていません。これを指定すると、"COLUMN1.COLUMN2 <= 1"とみなします。</p>
|
833
|
-
</li>
|
834
|
-
<li><p class="first">インデックスの張られていない要素に対するソートをサポートしました。この変更は <tt class="docutils literal"><span class="pre">--sortby</span> <span class="pre">geo_distance(...)</span></tt> のようにインデックス化されていない要素をソートしようとしたときに結果が抜け落ちてしてしまう場合に影響します。</p>
|
835
|
-
</li>
|
836
|
-
<li><p class="first">参照カラムの範囲検索をインデックスを使って検索できるようにした。この変更でTABLE_PAT_KEYやTABLE_DAT_KEYを使ったネストしたインデックスの <tt class="docutils literal"><span class="pre">_key</span></tt> に対しても範囲検索できるようになった。</p>
|
837
|
-
</li>
|
838
|
-
<li><p class="first">[rpm][centos] MeCab 0.995をサポート。</p>
|
839
|
-
</li>
|
840
|
-
<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>
|
841
|
-
</li>
|
842
|
-
</ul>
|
843
|
-
</div>
|
844
|
-
<div class="section" id="id39">
|
845
|
-
<h3>修正<a class="headerlink" href="#id39" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
846
|
-
<ul class="simple">
|
847
|
-
<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>
|
848
|
-
</li>
|
849
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance()</span></tt> をインデックスを使ってソートしようとするときに落ちる不具合を修正しました。この不具合は見付けたレコードのカウントが正しくないことで発生します。</p>
|
850
|
-
</li>
|
851
|
-
<li><p class="first">[httpd] データベースのオーナー/グループのデフォルト設定がgroongaとなっている箇所を有効にしました。</p>
|
852
|
-
</li>
|
853
|
-
</ul>
|
854
|
-
</div>
|
855
|
-
<div class="section" id="id40">
|
856
|
-
<h3>感謝<a class="headerlink" href="#id40" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
857
|
-
<ul class="simple">
|
858
|
-
<li><p class="first">b senbokuさん</p>
|
859
|
-
</li>
|
860
|
-
</ul>
|
861
|
-
</div>
|
862
|
-
</div>
|
863
|
-
<div class="section" id="release-3-0-0-2013-02-09">
|
864
|
-
<span id="release-3-0-0"></span><h2>3.0.0リリース - 2013/02/09<a class="headerlink" href="#release-3-0-0-2013-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
865
|
-
<ul class="simple">
|
866
|
-
<li><p class="first">バージョン3.0.0になりました!</p>
|
867
|
-
</li>
|
868
|
-
</ul>
|
869
|
-
<div class="section" id="id41">
|
870
|
-
<h3>修正<a class="headerlink" href="#id41" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
871
|
-
<ul class="simple">
|
872
|
-
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をEUC-JPでなくUTF-8の辞書ものを明示的にインストールするように修正した。</p>
|
873
|
-
</li>
|
874
|
-
<li><p class="first">int64の表記がuint32の値として切り捨てられてしまう不具合を修正した。int64の文字列として表記した場合には、この不具合の影響はありません。</p>
|
875
|
-
</li>
|
876
|
-
<li><p class="first">[rpm][centos] <tt class="docutils literal"><span class="pre">groonga-server-http</span></tt> サービスの停止に失敗する不具合を修正した。 [GitHub#53] [岩井さんがパッチ提供]</p>
|
877
|
-
</li>
|
878
|
-
</ul>
|
879
|
-
</div>
|
880
|
-
<div class="section" id="id42">
|
881
|
-
<h3>感謝<a class="headerlink" href="#id42" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
882
|
-
<ul class="simple">
|
883
|
-
<li><p class="first">岩井さん</p>
|
884
|
-
</li>
|
885
|
-
</ul>
|
886
|
-
</div>
|
887
|
-
</div>
|
888
|
-
<div class="section" id="release-2-1-2-2013-01-29">
|
889
|
-
<span id="release-2-1-2"></span><h2>2.1.2リリース - 2013/01/29<a class="headerlink" href="#release-2-1-2-2013-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
890
|
-
<div class="section" id="id43">
|
891
|
-
<h3>改良<a class="headerlink" href="#id43" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
892
|
-
<ul class="simple">
|
893
|
-
<li><p class="first">複数の <tt class="docutils literal"><span class="pre">query()</span></tt> を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポートしました。例えば、キーワードごとに異なる重みづけを指定して検索するのに'query("column * weight1", keyword1) || query("column * weight2", keyword2) || ...'などと <tt class="docutils literal"><span class="pre">--filter</span></tt> に指定することができます。</p>
|
894
|
-
</li>
|
895
|
-
<li><p class="first">実験的機能であったビューを削除しました。</p>
|
896
|
-
</li>
|
897
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_logger_reopen</span></tt> APIを追加しました。 <tt class="docutils literal"><span class="pre">grn_logger_info</span></tt> APIは非推奨となりました。 <tt class="docutils literal"><span class="pre">grn_logger</span></tt> APIを代りに使ってください。</p>
|
898
|
-
</li>
|
899
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_log_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
|
900
|
-
</li>
|
901
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_default_query_logger_set_path()</span></tt> と <tt class="docutils literal"><span class="pre">grn_default_query_logger_get_path()</span></tt> APIを追加しました。グローバル変数としての <tt class="docutils literal"><span class="pre">grn_qlog_path</span></tt> は削除しました。上記変数を使うにはAPIを使用してください。</p>
|
902
|
-
</li>
|
903
|
-
<li><p class="first"><a class="reference internal" href="reference/tables.html"><em>テーブル</em></a> と <a class="reference internal" href="reference/normalizers.html"><em>ノーマライザー</em></a> に関するドキュメントを追加。</p>
|
904
|
-
</li>
|
905
|
-
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-tokenizer-mecab</span></tt> パッケージのインストール時に必要な辞書をインストールするように改善した。</p>
|
906
|
-
</li>
|
907
|
-
<li><p class="first">範囲検索を <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> でもサポートした。例えば、 'column1.column2...columnN <= "1988-01-04 00:00:00"' というように <tt class="docutils literal"><span class="pre">--filter</span></tt> に範囲を指定することができるようになります。</p>
|
908
|
-
</li>
|
909
|
-
<li><p class="first">[rpm][fedora] Fedora 18をサポート。</p>
|
910
|
-
</li>
|
911
|
-
<li><p class="first">[rpm][fedora] Fedora 17サポートを削除。</p>
|
912
|
-
</li>
|
913
|
-
<li><p class="first">[doc] <a class="reference internal" href="server/package.html"><em>サーバーパッケージ</em></a> のドキュメントを追加。</p>
|
914
|
-
</li>
|
915
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/functions/query.html"><em>query</em></a> のドキュメントを追加。</p>
|
916
|
-
</li>
|
917
|
-
</ul>
|
918
|
-
</div>
|
919
|
-
<div class="section" id="id44">
|
920
|
-
<h3>修正<a class="headerlink" href="#id44" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
921
|
-
<ul class="simple">
|
922
|
-
<li><p class="first">MeCabトークナイザーの共有オブジェクトが見つからなくてもエラーをログに記録しないようにした。 [groonga-dev,01174] [wingさんが報告]</p>
|
923
|
-
</li>
|
924
|
-
<li><p class="first">[httpd] CentOS 5.4で <tt class="docutils literal"><span class="pre">SED</span></tt> 変数を明示的に設定することで、configureスクリプト実行が失敗しないようにした。</p>
|
925
|
-
</li>
|
926
|
-
<li><p class="first">値を設定していない未初期化のベクタカラムの値を <tt class="docutils literal"><span class="pre">select</span></tt> コマンドで参照したときにクラッシュする不具合を修正した。</p>
|
927
|
-
</li>
|
928
|
-
</ul>
|
929
|
-
</div>
|
930
|
-
<div class="section" id="id45">
|
931
|
-
<h3>感謝<a class="headerlink" href="#id45" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
932
|
-
<ul class="simple">
|
933
|
-
<li><p class="first">wingさん</p>
|
934
|
-
</li>
|
935
|
-
</ul>
|
936
|
-
</div>
|
937
|
-
</div>
|
938
|
-
<div class="section" id="release-2-1-1-2012-12-29">
|
939
|
-
<span id="release-2-1-1"></span><h2>2.1.1リリース - 2012/12/29<a class="headerlink" href="#release-2-1-1-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
940
|
-
<p>2.1.0のバグフィックスリリースです。2.1.0を使っている人は2.1.0ではなく2.1.1を使ってください。</p>
|
941
|
-
<div class="section" id="id46">
|
942
|
-
<h3>修正<a class="headerlink" href="#id46" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
943
|
-
<ul class="simple">
|
944
|
-
<li><p class="first">groonga 2.0.8以前で作成したデータベース中の <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の情報が失われる問題を修正。</p>
|
945
|
-
</li>
|
946
|
-
</ul>
|
947
|
-
</div>
|
948
|
-
</div>
|
949
|
-
<div class="section" id="release-2-1-0-2012-12-29">
|
950
|
-
<span id="release-2-1-0"></span><h2>2.1.0リリース - 2012/12/29<a class="headerlink" href="#release-2-1-0-2012-12-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
951
|
-
<div class="admonition caution">
|
952
|
-
<p class="first admonition-title">ご用心</p>
|
953
|
-
<p class="last">2.1.0ではなく2.1.1を使ってください。2.1.0は <tt class="docutils literal"><span class="pre">KEY_NORMALIZE</span></tt> 関連の深刻な問題があります。</p>
|
954
|
-
</div>
|
955
|
-
<div class="admonition caution">
|
956
|
-
<p class="first admonition-title">ご用心</p>
|
957
|
-
<p>このリリースでは <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> コマンドに関する非互換な変更があります。もしご自身で作成したプログラム等でこれらコマンドの出力結果に依存しているものがあるなら、"null"文字列ではなくnullをサポートする必要があります。</p>
|
958
|
-
<p>このリリースでは <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションをサポートしましたが、副作用があり、一度でも古いバージョンのデータベースを新しいバージョンのgroongaで開くと、古いバージョンのgroongaではデータベースを開けなくなります。</p>
|
959
|
-
<p class="last">もうひとつトークナイザプラグインAPIに関する非互換な変更があります。 <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの引数が変更されました。このAPIの変更はトークナイザプラグインの開発者に影響があります。</p>
|
960
|
-
</div>
|
961
|
-
<div class="section" id="id47">
|
962
|
-
<h3>改良<a class="headerlink" href="#id47" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
963
|
-
<ul class="simple">
|
964
|
-
<li><p class="first">[doc] <a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> に関するドキュメントを追加。</p>
|
965
|
-
</li>
|
966
|
-
<li><p class="first"><a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> の引数として式を指定できるようにした。この変更で、 <tt class="docutils literal"><span class="pre">snippet_html("STRING"</span> <span class="pre">+</span> <span class="pre">"STRING")</span></tt> と書けるようになります。 "STRING"にはカラム名や文字列を指定できます。 [嶋田 大貴さんが報告]</p>
|
967
|
-
</li>
|
968
|
-
<li><p class="first">正規化を行うプラグインを作成できるようにした。</p>
|
969
|
-
</li>
|
970
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">groonga-query-log-analyzer</span></tt> を <a class="reference external" href="http://rubygems.org/gems/groonga-query-log">groonga-query-log</a> というRubyGemsにして移動しました。これによりgroongaのパッケージをインストールせずにクエリログの解析を行えるようになります。</p>
|
971
|
-
</li>
|
972
|
-
<li><p class="first"><a class="reference internal" href="reference/commands/table_create.html"><em>table_create</em></a> コマンドにて <tt class="docutils literal"><span class="pre">--normalizer</span></tt> オプションの指定をサポートしました。正規化のためのプラグインを指定できるようになります。</p>
|
973
|
-
</li>
|
974
|
-
<li><p class="first">"No Object"を表現するのに"null"文字列ではなくnull値を使うように変更しました。これは非互換な変更で <tt class="docutils literal"><span class="pre">table_list</span></tt> や <tt class="docutils literal"><span class="pre">column_list</span></tt> といったコマンドの出力結果に影響します。</p>
|
975
|
-
</li>
|
976
|
-
<li><p class="first">正規化の振舞いを制御するためのフラグを <tt class="docutils literal"><span class="pre">grn_tokenizer_query_open</span></tt> APIの最後の引数として追加した。</p>
|
977
|
-
</li>
|
978
|
-
<li><p class="first"><a class="reference internal" href="reference/executables/groonga.html#command-list-with-continuous-line"><em>コマンド</em></a> リストに書かれた継続行のサポート。</p>
|
979
|
-
</li>
|
980
|
-
<li><p class="first"><a class="reference internal" href="tutorial/match_columns.html#nested-index-search"><em>カラムインデックスによる関連テーブルをまたぐ検索</em></a> をキーのないテーブルだけでなく、ハッシュやパトリシア木、ダブル配列を指定したテーブルでも使えるように改善した。</p>
|
981
|
-
</li>
|
982
|
-
</ul>
|
983
|
-
</div>
|
984
|
-
<div class="section" id="id48">
|
985
|
-
<h3>修正<a class="headerlink" href="#id48" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
986
|
-
<ul class="simple">
|
987
|
-
<li><p class="first">[windows] <tt class="docutils literal"><span class="pre">O_BINARY</span></tt> フラグをファイルを開くときに指定するようにした。groonga HTTPサーバが無限ループに陥っていた問題が解決します。 [GitHub#47] [Shimomura Tatsuyaさんがパッチ提供]</p>
|
988
|
-
</li>
|
989
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">--default-match-escalation-threshold</span></tt> が負数を受け付けないため、 <a class="reference internal" href="spec/search.html"><em>検索</em></a> 時に行なわれる挙動の変更を無効化できない問題を修正しました。オプションの詳細は <a class="reference internal" href="reference/executables/groonga.html#cmdoption--default-match-escalation-threshold"><em class="xref std std-option">--default-match-escalation-threshold</em></a> を参照してください。</p>
|
990
|
-
</li>
|
991
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">--output_columns</span></tt> で"*"のあとに <tt class="docutils literal"><span class="pre">_score</span></tt> を指定しても無視される不具合を修正した。</p>
|
992
|
-
</li>
|
993
|
-
</ul>
|
994
|
-
</div>
|
995
|
-
<div class="section" id="id49">
|
996
|
-
<h3>感謝<a class="headerlink" href="#id49" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
997
|
-
<ul class="simple">
|
998
|
-
<li><p class="first">嶋田 大貴さん</p>
|
999
|
-
</li>
|
1000
|
-
<li><p class="first">Shimomura Tatsuyaさん</p>
|
1001
|
-
</li>
|
1002
|
-
</ul>
|
1003
|
-
</div>
|
1004
|
-
</div>
|
1005
|
-
<div class="section" id="release-2-0-9-2012-11-29">
|
1006
|
-
<span id="release-2-0-9"></span><h2>2.0.9リリース - 2012/11/29<a class="headerlink" href="#release-2-0-9-2012-11-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1007
|
-
<div class="section" id="id50">
|
1008
|
-
<h3>改良<a class="headerlink" href="#id50" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1009
|
-
<ul class="simple">
|
1010
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">geo_distance</span></tt> 関数の近似方法として <tt class="docutils literal"><span class="pre">rectangle</span></tt> を指定したときに境界をまたいでも距離の算出できるようにした。 [#1534]</p>
|
1011
|
-
</li>
|
1012
|
-
<li><p class="first">[doc] <a class="reference internal" href="spec/gqtp.html"><em>GQTP</em></a> の仕様についてのドキュメントを追加した。</p>
|
1013
|
-
</li>
|
1014
|
-
<li><p class="first">groongaコマンドの起動時に致命的でない <tt class="docutils literal"><span class="pre">getaddrinfo()</span></tt> 関数のエラーは無視するようにした。この変更はgroongaを通常使用する場合には影響しません。その理由はデフォルトのホスト名が解決できるかチェックするのに使っていただけだからです。</p>
|
1015
|
-
</li>
|
1016
|
-
<li><p class="first">[実験的] キーワードとその周辺のテキストを抽出するための <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数を追加した。詳細については <a class="reference internal" href="reference/functions/snippet_html.html"><em>snippet_html</em></a> を参照してください。</p>
|
1017
|
-
</li>
|
1018
|
-
<li><p class="first">テーブルのレコードを出力している際に発生したエラーを表示するようにした。</p>
|
1019
|
-
</li>
|
1020
|
-
<li><p class="first">複数のテーブルで関連したインデックスが設定されていれば、ネストしたインデックス (複数のカラムインデックス名を <tt class="docutils literal"><span class="pre">.</span></tt> で連結して指定)に対してキーワードで検索できるようにした。</p>
|
1021
|
-
</li>
|
1022
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">TokenMecab</span></tt> トークナイザを使ったときにログに"[tokenizer][mecab]"タグを出力するようにした。</p>
|
1023
|
-
</li>
|
1024
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">TokenKyTea</span></tt> トークナイザを使ったときにログに"[tokenizer][kytea]"タグを出力するようにした。</p>
|
1025
|
-
</li>
|
1026
|
-
<li><p class="first">検索結果の内容のうち、コマンドのエラー表示は別の配列として表示するようにしました。この変更は非互換な変更ですが、既存のプログラムには影響しません。</p>
|
1027
|
-
</li>
|
1028
|
-
<li><p class="first"><a class="reference internal" href="reference/command/output_format.html"><em>出力形式</em></a> に関するドキュメントを追加。</p>
|
1029
|
-
</li>
|
1030
|
-
<li><p class="first"><a class="reference internal" href="reference/command/return_code.html"><em>リターンコード</em></a> に関するドキュメントを追加。</p>
|
1031
|
-
</li>
|
1032
|
-
<li><p class="first">インデックスを使った指定範囲の検索をサポート。</p>
|
1033
|
-
</li>
|
1034
|
-
</ul>
|
1035
|
-
</div>
|
1036
|
-
<div class="section" id="id51">
|
1037
|
-
<h3>修正<a class="headerlink" href="#id51" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1038
|
-
<ul class="simple">
|
1039
|
-
<li><p class="first"><a class="reference internal" href="spec/gqtp.html#gqtp-header-spec"><em>GQTPヘッダー</em></a> にてステータスコードにネットワークバイトオーダーを使用するように修正した。ネットワークプロトコルの慣習に合わせたものですが、これによりgroongaバージョン2.0.8以下のクライアントからgroongaバージョン2.0.9以上のサーバに接続してコマンドの実行に失敗したときにバイトオーダーが異なるため、ステータスコードを正しく表示できなくなります。</p>
|
1040
|
-
</li>
|
1041
|
-
<li><p class="first">UTF-8の正規化でオフセット計算の誤りを修正した。この変更は <tt class="docutils literal"><span class="pre">snippet_html()</span></tt> 関数の返す結果に影響し、キーワードとタグ周辺のテキストが誤った位置に挿入されないようにする。 [#1531] [嶋田大貴さんが報告]</p>
|
1042
|
-
</li>
|
1043
|
-
<li><p class="first">[windows] groongaコマンドの起動時にバッファの範囲外アクセスによるセグメンテーションフォルトが発生しないように修正した。 [#1532] [Akio Tajimaさんがパッチ提供]</p>
|
1044
|
-
</li>
|
1045
|
-
<li><p class="first">[windows] カラムに保存しているデータのサイズが128MBを超える場合に、そのデータを参照できない不具合を修正した。 [groonga-dev,01088] [ongaeshiさんが報告]</p>
|
1046
|
-
</li>
|
1047
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">Int*</span></tt> や <tt class="docutils literal"><span class="pre">UInt*</span></tt> ( <tt class="docutils literal"><span class="pre">Int32/Uint32</span></tt> は除く) に対してカラムインデックスによる検索結果が正しくない不具合を修正した。</p>
|
1048
|
-
</li>
|
1049
|
-
<li><p class="first">削除したはずのレコードが検索結果で見つかる問題を修正した。</p>
|
1050
|
-
</li>
|
1051
|
-
<li><p class="first">latin1やkoi8rの正規化で、与えた文字列データにNULL終端が途中に含まれているとすべての文字列データを正規化できない不具合を修正した。</p>
|
1052
|
-
</li>
|
1053
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドでデータが保存されていないカラムを参照したときに、型にあったデフォルト値を返さない不具合を修正した。</p>
|
1054
|
-
</li>
|
1055
|
-
<li>Fixed to exclude the value of vector column metadata in <a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a>.
|
1056
|
-
This change not to contain such a metadata as search results.</li>
|
1057
|
-
</ul>
|
1058
|
-
</div>
|
1059
|
-
<div class="section" id="id52">
|
1060
|
-
<h3>感謝<a class="headerlink" href="#id52" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1061
|
-
<ul class="simple">
|
1062
|
-
<li><p class="first">嶋田 大貴さん</p>
|
1063
|
-
</li>
|
1064
|
-
<li><p class="first">Akio Tajimaさん</p>
|
1065
|
-
</li>
|
1066
|
-
<li><p class="first">ongaeshiさん</p>
|
1067
|
-
</li>
|
1068
|
-
</ul>
|
1069
|
-
</div>
|
1070
|
-
</div>
|
1071
|
-
<div class="section" id="release-2-0-8-2012-10-29">
|
1072
|
-
<span id="release-2-0-8"></span><h2>2.0.8リリース - 2012/10/29<a class="headerlink" href="#release-2-0-8-2012-10-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1073
|
-
<div class="section" id="id53">
|
1074
|
-
<h3>改良<a class="headerlink" href="#id53" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1075
|
-
<ul class="simple">
|
1076
|
-
<li><p class="first">[rpm] server-httpとhttpdパッケージの説明を改善した。 [Daiki Uenoさんが提案]</p>
|
1077
|
-
</li>
|
1078
|
-
<li><p class="first">プラグインによるクエリ展開のカスタマイズをサポート。</p>
|
1079
|
-
</li>
|
1080
|
-
<li><p class="first">[実験的] クエリ展開を行う <tt class="docutils literal"><span class="pre">QueryExpanderTSV</span></tt> プラグインを追加。</p>
|
1081
|
-
</li>
|
1082
|
-
<li><p class="first">Ubuntu 12.10 Quantal Quetzalをサポート。</p>
|
1083
|
-
</li>
|
1084
|
-
<li><p class="first">[実験的] クエリの <tt class="docutils literal"><span class="pre">output_columns</span></tt> で関数呼び出しをサポート。</p>
|
1085
|
-
</li>
|
1086
|
-
<li><p class="first">[doc][rpm] MeCab辞書のインストールについて説明を追加。 [serihiroさんが報告]</p>
|
1087
|
-
</li>
|
1088
|
-
</ul>
|
1089
|
-
</div>
|
1090
|
-
<div class="section" id="id54">
|
1091
|
-
<h3>修正<a class="headerlink" href="#id54" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1092
|
-
<ul class="simple">
|
1093
|
-
<li><p class="first">[rpm] 不要な"Requires"をspecファイルから削除するようにした。[Daiki Uenoさんが報告]</p>
|
1094
|
-
</li>
|
1095
|
-
<li><p class="first">groonga-server-gqtpパッケージのライセンス表記が不正確なのを修正した。</p>
|
1096
|
-
</li>
|
1097
|
-
<li><p class="first">[admin] レコードの編集ボタンで誤ったレコードが表示されるのを修正した。 [GitHub#34] [firewoodさんが報告]</p>
|
1098
|
-
</li>
|
1099
|
-
<li><p class="first">[deb] 不要なpcreパッケージへの依存を削除した。</p>
|
1100
|
-
</li>
|
1101
|
-
<li><p class="first">[deb] パッケージに入っていなかったテーブルプラグインを添付するようにした。</p>
|
1102
|
-
</li>
|
1103
|
-
</ul>
|
1104
|
-
</div>
|
1105
|
-
<div class="section" id="id55">
|
1106
|
-
<h3>感謝<a class="headerlink" href="#id55" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1107
|
-
<ul class="simple">
|
1108
|
-
<li><p class="first">うえのさん</p>
|
1109
|
-
</li>
|
1110
|
-
<li><p class="first">firewoodさん</p>
|
1111
|
-
</li>
|
1112
|
-
<li><p class="first">serihiroさん</p>
|
1113
|
-
</li>
|
1114
|
-
</ul>
|
1115
|
-
</div>
|
1116
|
-
</div>
|
1117
|
-
<div class="section" id="release-2-0-7-2012-09-29">
|
1118
|
-
<span id="release-2-0-7"></span><h2>2.0.7リリース - 2012/09/29<a class="headerlink" href="#release-2-0-7-2012-09-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1119
|
-
<div class="section" id="id56">
|
1120
|
-
<h3>改良<a class="headerlink" href="#id56" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1121
|
-
<ul class="simple">
|
1122
|
-
<li><p class="first">[doc] <tt class="docutils literal"><span class="pre">--query_flags</span></tt> の説明を追加。</p>
|
1123
|
-
</li>
|
1124
|
-
<li><p class="first">[doc][httpd] gzip圧縮についての設定サンプルを追加。</p>
|
1125
|
-
</li>
|
1126
|
-
<li><p class="first">[httpd][rpm][centos] groonga-httpd initスクリプトを追加。</p>
|
1127
|
-
</li>
|
1128
|
-
<li><p class="first">[rpm] logrotateの設定ファイルを追加。</p>
|
1129
|
-
</li>
|
1130
|
-
<li><p class="first">インストール中のデータベース作成をサポート。</p>
|
1131
|
-
</li>
|
1132
|
-
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">groonga_database_auto_create</span></tt> ディレクティブをサポート。</p>
|
1133
|
-
</li>
|
1134
|
-
<li><p class="first">集合演算でのスコアのマージをサポート。 [GitHub#31]</p>
|
1135
|
-
</li>
|
1136
|
-
<li><p class="first">[httpd] POSTによる <tt class="docutils literal"><span class="pre">load</span></tt> コマンドをサポート。</p>
|
1137
|
-
</li>
|
1138
|
-
<li><p class="first">一時結果テーブルを作成する際のエラーチェックを追加。 [GitHub#33]</p>
|
1139
|
-
</li>
|
1140
|
-
<li><p class="first">GQTP サーバーパッケージを追加。</p>
|
1141
|
-
</li>
|
1142
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">max()</span></tt> 関数を追加。</p>
|
1143
|
-
</li>
|
1144
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">min()</span></tt> 関数を追加。</p>
|
1145
|
-
</li>
|
1146
|
-
</ul>
|
1147
|
-
</div>
|
1148
|
-
<div class="section" id="id57">
|
1149
|
-
<h3>修正<a class="headerlink" href="#id57" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1150
|
-
<ul class="simple">
|
1151
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">load</span></tt> コマンド実行時にベクタ要素へ主キー値の属する型情報を設定するように修正した。 [GitHub#30]</p>
|
1152
|
-
</li>
|
1153
|
-
<li><p class="first">[httpd] NULLでの初期化漏れを修正した。 [@Kiskeさんが報告]</p>
|
1154
|
-
</li>
|
1155
|
-
<li><p class="first">[httpd] <tt class="docutils literal"><span class="pre">content_type_len</span></tt> のサイズ設定漏れを修正した。</p>
|
1156
|
-
</li>
|
1157
|
-
<li><p class="first">[rpm][fedora] <tt class="docutils literal"><span class="pre">groonga.service</span></tt> で <tt class="docutils literal"><span class="pre">--bind-address</span></tt> を使うように修正した。</p>
|
1158
|
-
</li>
|
1159
|
-
<li><p class="first">不適切なフィルタの引数によリクラッシュする問題を修正した。 [GitHub#32]</p>
|
1160
|
-
</li>
|
1161
|
-
<li><p class="first">Time型からTime型へのキャストで値が壊れる不具合を修正。</p>
|
1162
|
-
</li>
|
1163
|
-
<li><p class="first">Time型からFloat型へのキャストで値が壊れる不具合を修正。</p>
|
1164
|
-
</li>
|
1165
|
-
</ul>
|
1166
|
-
</div>
|
1167
|
-
<div class="section" id="id58">
|
1168
|
-
<h3>感謝<a class="headerlink" href="#id58" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1169
|
-
<ul class="simple">
|
1170
|
-
<li><p class="first">@Kiskeさん</p>
|
1171
|
-
</li>
|
1172
|
-
</ul>
|
1173
|
-
</div>
|
1174
|
-
</div>
|
1175
|
-
<div class="section" id="release-2-0-6-2012-08-29">
|
1176
|
-
<span id="release-2-0-6"></span><h2>2.0.6リリース - 2012/08/29<a class="headerlink" href="#release-2-0-6-2012-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1177
|
-
<div class="section" id="id59">
|
1178
|
-
<h3>改良<a class="headerlink" href="#id59" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1179
|
-
<ul class="simple">
|
1180
|
-
<li><p class="first">[deb][rpm] <tt class="docutils literal"><span class="pre">groonga-server-common</span></tt> メタパッケージを追加。 [#1451]</p>
|
1181
|
-
</li>
|
1182
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">--query_flags</span></tt> オプションを <tt class="docutils literal"><span class="pre">select</span></tt> コマンドでサポート。</p>
|
1183
|
-
</li>
|
1184
|
-
<li><p class="first">groonga-httpdでPCREの自動検出をサポート。</p>
|
1185
|
-
</li>
|
1186
|
-
<li><p class="first">[doc] TwiterとFacebookの情報を追加。</p>
|
1187
|
-
</li>
|
1188
|
-
<li><p class="first">MeCabで <tt class="docutils literal"><span class="pre">mecab_new2()</span></tt> 関数失敗時のエラーメッセージも表示するように改善した。</p>
|
1189
|
-
</li>
|
1190
|
-
<li><p class="first">[doc] groonga をサーバーとして利用するときの詳細ドキュメントを追加。</p>
|
1191
|
-
</li>
|
1192
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">vm.overcommit_memory</span></tt> の詳細を記録するように改善した。</p>
|
1193
|
-
</li>
|
1194
|
-
<li><p class="first">カスタムセレクタの定義をサポート。</p>
|
1195
|
-
</li>
|
1196
|
-
<li><p class="first">groongaで <tt class="docutils literal"><span class="pre">--working-directory</span></tt> オプションをサポートした。</p>
|
1197
|
-
</li>
|
1198
|
-
<li><p class="first">groonga-httpdで <tt class="docutils literal"><span class="pre">dump</span></tt> コマンドをサポートした。</p>
|
1199
|
-
</li>
|
1200
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドで見つからないターゲット名を表示するように改善した。</p>
|
1201
|
-
</li>
|
1202
|
-
<li><p class="first">テーブルプラグインで実装されている <tt class="docutils literal"><span class="pre">get</span></tt> コマンドについてのエラーメッセージを改善した。</p>
|
1203
|
-
</li>
|
1204
|
-
<li><p class="first">[rpm][centos] MeCab 0.994をサポートした。 [#1455] [岩井さんが提案]</p>
|
1205
|
-
</li>
|
1206
|
-
<li><p class="first">ログ記録レベルの既定の最大値を <tt class="docutils literal"><span class="pre">grn_init()</span></tt> を呼ぶ前に変更可能にした。</p>
|
1207
|
-
</li>
|
1208
|
-
<li><p class="first">すべてのレコードIDを結果テーブルへとコピーするための関数 <tt class="docutils literal"><span class="pre">all_records()</span></tt> を追加した。</p>
|
1209
|
-
</li>
|
1210
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">select</span></tt> コマンドの <tt class="docutils literal"><span class="pre">--query</span></tt> で '-WORD' 構文をサポート。</p>
|
1211
|
-
</li>
|
1212
|
-
</ul>
|
1213
|
-
</div>
|
1214
|
-
<div class="section" id="id60">
|
1215
|
-
<h3>修正<a class="headerlink" href="#id60" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1216
|
-
<ul class="simple">
|
1217
|
-
<li><p class="first">[doc] チュートリアルの実行例を修正した。 [#1428] [岩井さんが報告]</p>
|
1218
|
-
</li>
|
1219
|
-
<li><p class="first">groonga-httpdの初期化スクリプトでユーザ/グループとしてgroongaを強制的に指定しないように修正した。</p>
|
1220
|
-
</li>
|
1221
|
-
<li><p class="first">[rpm][fedora] groonga-httpdサービスでstopパラメータの指定漏れを修正した。</p>
|
1222
|
-
</li>
|
1223
|
-
<li>Fixed a bug that the last 1 byte for cache key is ignored by <tt class="docutils literal"><span class="pre">select</span></tt> command.</li>
|
1224
|
-
<li><p class="first">複雑な関数呼び出しで引数の個数の検出処理を修正した。</p>
|
1225
|
-
</li>
|
1226
|
-
<li><p class="first">Clangによる警告を抑制するように修正した。</p>
|
1227
|
-
</li>
|
1228
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">clearlock</span></tt> コマンドを実行する際に <tt class="docutils literal"><span class="pre">add</span></tt> コマンドが存在しないことによる前方非互換なエラーを修正した。</p>
|
1229
|
-
</li>
|
1230
|
-
<li><p class="first">[windows] バイナリデータを含むデータベースを開く際のエラーを修正した。 [@yitoさんが報告]</p>
|
1231
|
-
</li>
|
1232
|
-
</ul>
|
1233
|
-
</div>
|
1234
|
-
<div class="section" id="id61">
|
1235
|
-
<h3>感謝<a class="headerlink" href="#id61" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1236
|
-
<ul class="simple">
|
1237
|
-
<li><p class="first">岩井さん</p>
|
1238
|
-
</li>
|
1239
|
-
<li><p class="first">@yitoさん</p>
|
1240
|
-
</li>
|
1241
|
-
</ul>
|
1242
|
-
</div>
|
1243
|
-
</div>
|
1244
|
-
<div class="section" id="release-2-0-5-2012-07-29">
|
1245
|
-
<span id="release-2-0-5"></span><h2>2.0.5リリース - 2012/07/29<a class="headerlink" href="#release-2-0-5-2012-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1246
|
-
<div class="section" id="id62">
|
1247
|
-
<h3>改良<a class="headerlink" href="#id62" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1248
|
-
<ul class="simple">
|
1249
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">"rect"</span></tt> もしくは <tt class="docutils literal"><span class="pre">"rectangle"</span></tt> 引数を指定した南半球における距離の計算をサポート。 [#1418] [#1419] [#1420] [#1421]</p>
|
1250
|
-
</li>
|
1251
|
-
<li><p class="first">[doc] スクリプト構文にてリテラルの説明を追加。</p>
|
1252
|
-
</li>
|
1253
|
-
<li><p class="first">groonga-suggestとgroonga-httpdのソース外ビルドに対応。</p>
|
1254
|
-
</li>
|
1255
|
-
<li><p class="first">クエリパラメータの区切り文字として ";"をサポート。 [#1406] [岩井さんが提案]</p>
|
1256
|
-
</li>
|
1257
|
-
<li><p class="first">[doc] スクリプト構文の説明を追加。</p>
|
1258
|
-
</li>
|
1259
|
-
<li><p class="first">スクリプト構文で近傍検索を行う <tt class="docutils literal"><span class="pre">'column</span> <span class="pre">*N</span> <span class="pre">"word1</span> <span class="pre">word2</span> <span class="pre">..."'</span></tt> 構文をサポート。 [#1423]</p>
|
1260
|
-
</li>
|
1261
|
-
<li><p class="first">[doc] 後方一致検索の制限を追記。</p>
|
1262
|
-
</li>
|
1263
|
-
<li><p class="first">近傍検索で <tt class="docutils literal"><span class="pre">_key</span></tt> 疑似カラムをサポート。 [GitHub#19]</p>
|
1264
|
-
</li>
|
1265
|
-
<li><p class="first">[doc] 基本的なECMAScript関連の構文を追加。</p>
|
1266
|
-
</li>
|
1267
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/functions/geo_distance.html"><em>geo_distance</em></a> の説明を更新。</p>
|
1268
|
-
</li>
|
1269
|
-
<li><p class="first">[rpm][fedora] Fedora 17をサポート。</p>
|
1270
|
-
</li>
|
1271
|
-
<li><p class="first">[rpm][fedora] Fedora 16サポートを削除。</p>
|
1272
|
-
</li>
|
1273
|
-
<li><p class="first">論理演算子 <tt class="docutils literal"><span class="pre">"!"</span></tt> をサポート。 [GitHub#22]</p>
|
1274
|
-
</li>
|
1275
|
-
<li><p class="first">[httpd] groongaデータベースごとのロケーション指定をサポート。</p>
|
1276
|
-
</li>
|
1277
|
-
<li><p class="first">loadコマンドを処理中にはエラーメッセージを返すように改善。</p>
|
1278
|
-
</li>
|
1279
|
-
<li><p class="first">継続困難なエラーが発生した場合にloadコマンドを中断するように改善。</p>
|
1280
|
-
</li>
|
1281
|
-
<li><p class="first">正しくない--columnsの値が渡されたときloadコマンドを中断するように改善。</p>
|
1282
|
-
</li>
|
1283
|
-
<li><p class="first">ロックされたデータベースのオープンをサポート。 [GitHub#21]</p>
|
1284
|
-
</li>
|
1285
|
-
</ul>
|
1286
|
-
</div>
|
1287
|
-
<div class="section" id="id63">
|
1288
|
-
<h3>修正<a class="headerlink" href="#id63" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1289
|
-
<ul class="simple">
|
1290
|
-
<li><p class="first">groonga-httpdが Mac OS Xでビルドできない問題を修正。[島田 浩二さんが報告]</p>
|
1291
|
-
</li>
|
1292
|
-
<li><p class="first">groonga-httpdがインストール済みのヘッダファイルを使用しないように修正。</p>
|
1293
|
-
</li>
|
1294
|
-
<li><p class="first">Mac OS X Lionでgroongaがビルドできない問題を修正。</p>
|
1295
|
-
</li>
|
1296
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/table_remove.html"><em>table_remove</em></a> コマンドの説明を修正。</p>
|
1297
|
-
</li>
|
1298
|
-
<li><p class="first">インデックスが張られていないと未対応のオぺレータで無限ループする問題を修正。 [GitHub#20]</p>
|
1299
|
-
</li>
|
1300
|
-
<li><p class="first">メモリリークを引き起すエラーコードの誤りを修正。</p>
|
1301
|
-
</li>
|
1302
|
-
<li><p class="first">カラムの値を壊すことにつながるエラーコードの誤りを修正。</p>
|
1303
|
-
</li>
|
1304
|
-
<li><p class="first">[admin] エラーメッセージをエスケープするように修正。</p>
|
1305
|
-
</li>
|
1306
|
-
<li><p class="first">データベースの非互換を引き起こす読めないオブジェクトを無視するように修正。 [#1429] [岩井さんが報告]</p>
|
1307
|
-
</li>
|
1308
|
-
</ul>
|
1309
|
-
</div>
|
1310
|
-
<div class="section" id="id64">
|
1311
|
-
<h3>感謝<a class="headerlink" href="#id64" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1312
|
-
<ul class="simple">
|
1313
|
-
<li><p class="first">島田 浩二さん</p>
|
1314
|
-
</li>
|
1315
|
-
<li><p class="first">岩井さん</p>
|
1316
|
-
</li>
|
1317
|
-
</ul>
|
1318
|
-
</div>
|
1319
|
-
</div>
|
1320
|
-
<div class="section" id="release-2-0-4-2012-06-29">
|
1321
|
-
<span id="release-2-0-4"></span><h2>2.0.4リリース - 2012/06/29<a class="headerlink" href="#release-2-0-4-2012-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1322
|
-
<div class="section" id="id65">
|
1323
|
-
<h3>改良<a class="headerlink" href="#id65" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
66
|
+
<div class="section" id="release-4-0-5-2014-08-29">
|
67
|
+
<span id="release-4-0-5"></span><h2>4.0.5リリース - 2014/08/29<a class="headerlink" href="#release-4-0-5-2014-08-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
68
|
+
<div class="section" id="improvements">
|
69
|
+
<h3>改良<a class="headerlink" href="#improvements" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1324
70
|
<ul class="simple">
|
1325
|
-
<li><p class="first">
|
71
|
+
<li><p class="first">Ubuntu 13.10 (Saucy Salamander)のサポートをやめました。</p>
|
1326
72
|
</li>
|
1327
|
-
<li><p class="first"
|
73
|
+
<li><p class="first">重みつきベクターカラムの表示をXML出力のときにもサポートしました。</p>
|
1328
74
|
</li>
|
1329
|
-
<li><p class="first">[
|
75
|
+
<li><p class="first">[ <a class="reference internal" href="reference/functions/between.html"><em>between</em></a> ] 範囲外のキーも指定できるようにしました。</p>
|
1330
76
|
</li>
|
1331
|
-
<li><p class="first"
|
77
|
+
<li><p class="first">[mruby] バンドルしている正規表現の実装をOnigmoに変更しました。</p>
|
1332
78
|
</li>
|
1333
|
-
<li><p class="first">
|
79
|
+
<li><p class="first">タグ出力のために <a class="reference internal" href="reference/functions/highlight_full.html"><em>highlight_full</em></a> と <a class="reference internal" href="reference/functions/highlight_html.html"><em>highlight_html</em></a> を追加しました。 [GitHub#185] [村上さんがパッチ提供]</p>
|
1334
80
|
</li>
|
1335
|
-
<li><p class="first">[doc]
|
81
|
+
<li><p class="first">[doc] 古くなっていた functions/commands リファレンスを更新しました。 [GitHub#188] [GitHub#189] [村上さんがパッチ提供]</p>
|
1336
82
|
</li>
|
1337
|
-
<li><p class="first">[
|
83
|
+
<li><p class="first">[benchmark] 平均と中央値をベンチマーク結果に含めるようにしました。</p>
|
1338
84
|
</li>
|
1339
|
-
<li><p class="first">
|
85
|
+
<li><p class="first">プラグイン開発者向けに <tt class="xref c c-func docutils literal"><span class="pre">grn_selector_func()</span></tt> と <tt class="xref c c-func docutils literal"><span class="pre">grn_proc_set_selector()</span></tt> を公開しました。 [GitHub#190] [村上さんがパッチ提供]</p>
|
1340
86
|
</li>
|
1341
|
-
<li><p class="first">[
|
87
|
+
<li><p class="first">[ <a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a> ] "mode" オプションを追加して、振舞いを変更できるようにしました。<tt class="docutils literal"><span class="pre">GET</span></tt> あるいは <tt class="docutils literal"><span class="pre">ADD</span></tt> を指定できます。 [GitHub#191] [GitHub#192] [村上さんがパッチ提供]</p>
|
1342
88
|
</li>
|
1343
|
-
<li><p class="first"
|
89
|
+
<li><p class="first">近傍検索で、'*N"A Z"' という構文をサポートしました。</p>
|
1344
90
|
</li>
|
1345
|
-
<li><p class="first"
|
91
|
+
<li><p class="first">トークンをスキップしたり、トークンだけでなくその位置もスキップするかどうかをカスタマイズできるようにしました。この機能はトークナイザープラグインを開発するときに有用です。 [GitHub#193] [村上さんがパッチ提供]</p>
|
1346
92
|
</li>
|
1347
|
-
<li><p class="first">[doc]
|
93
|
+
<li><p class="first">[doc] GitHubのIssuesによるバグレポートで日本語も受けつけるようにしました。 [6elzさんが報告] [groonga-dev,02651]</p>
|
1348
94
|
</li>
|
1349
|
-
<li><p class="first">[
|
1350
|
-
</li>
|
1351
|
-
<li><p class="first">[doc] チュートリアル記載のTime型指定値についての説明を更新。 [#1405] [岩井さんが報告]</p>
|
1352
|
-
</li>
|
1353
|
-
<li><p class="first">[rpm] groongaパッケージから必要のないgroonga-tokenizer-mecabパッケージへの依存関係を削除。 [GitHub#18] [岩井さんがパッチ提供]</p>
|
95
|
+
<li><p class="first">[doc] チュートリアルの英語版を更新しました。[GitHub#194] [cosmo0920さんがパッチ提供]</p>
|
1354
96
|
</li>
|
1355
97
|
</ul>
|
1356
98
|
</div>
|
1357
|
-
<div class="section" id="
|
1358
|
-
<h3>修正<a class="headerlink" href="#
|
99
|
+
<div class="section" id="fixes">
|
100
|
+
<h3>修正<a class="headerlink" href="#fixes" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1359
101
|
<ul class="simple">
|
1360
|
-
<li><p class="first">
|
102
|
+
<li><p class="first">[php] <tt class="xref c c-func docutils literal"><span class="pre">grn_ctx_recv()</span></tt> を呼び出したときのメモリリークを修正しました。[GitHub#184] [@do-akiさんがパッチ提供]</p>
|
1361
103
|
</li>
|
1362
|
-
<li><p class="first"
|
104
|
+
<li><p class="first">[php] <a class="reference internal" href="reference/api/grn_ctx.html#c.grn_ctx_close" title="grn_ctx_close"><tt class="xref c c-func docutils literal"><span class="pre">grn_ctx_close()</span></tt></a> を呼んだときにメモリを二重に解放しないようにしました。[GitHub#184] [@do-akiさんがパッチ提供]</p>
|
1363
105
|
</li>
|
1364
|
-
<li><p class="first"
|
106
|
+
<li><p class="first">ツリー外でのビルドを再度サポートしました。</p>
|
1365
107
|
</li>
|
1366
|
-
|
1367
|
-
</
|
1368
|
-
<
|
1369
|
-
<h3>感謝<a class="headerlink" href="#id67" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1370
|
-
<ul class="simple">
|
1371
|
-
<li><p class="first">@soundkitchenさん</p>
|
108
|
+
<li><p class="first">[httpd] バンドルしているnginxのバージョンを1.7.4に更新しました。セキュリティーに関する修正を含んでいます。</p>
|
109
|
+
</li>
|
110
|
+
<li><p class="first">インデックス更新の際に無限ループが発生することがある問題を修正しました。[groonga-dev,02673] [皆川さんが報告]</p>
|
1372
111
|
</li>
|
1373
|
-
<li><p class="first"
|
112
|
+
<li><p class="first"><a class="reference internal" href="reference/indexing.html#offline-index-construction"><em>静的なインデックス構築方法</em></a> を使ったときに、トークンを含むドキュメント数(document frequency)の値が不正な値になっている問題を修正しました。 [groonga-dev,02691] [村上さんが報告]</p>
|
1374
113
|
</li>
|
1375
114
|
</ul>
|
1376
115
|
</div>
|
1377
|
-
|
1378
|
-
<
|
1379
|
-
<span id="release-2-0-3"></span><h2>2.0.3リリース - 2012/05/29<a class="headerlink" href="#release-2-0-3-2012-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1380
|
-
<div class="section" id="id68">
|
1381
|
-
<h3>改良<a class="headerlink" href="#id68" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
116
|
+
<div class="section" id="thanks">
|
117
|
+
<h3>感謝<a class="headerlink" href="#thanks" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1382
118
|
<ul class="simple">
|
1383
|
-
<li><p class="first"
|
1384
|
-
</li>
|
1385
|
-
<li><p class="first">1プロセスで開けるファイルディスクリプターの最大数が4096という制限を削除。</p>
|
119
|
+
<li><p class="first">@do-akiさん</p>
|
1386
120
|
</li>
|
1387
|
-
<li><p class="first"
|
1388
|
-
</li>
|
1389
|
-
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> コマンドの説明を追加。</p>
|
121
|
+
<li><p class="first">村上さん</p>
|
1390
122
|
</li>
|
1391
|
-
<li><p class="first">
|
123
|
+
<li><p class="first">6elzさん</p>
|
1392
124
|
</li>
|
1393
|
-
<li><p class="first"
|
125
|
+
<li><p class="first">皆川さん</p>
|
1394
126
|
</li>
|
1395
|
-
<li><p class="first">
|
127
|
+
<li><p class="first">cosmo0920さん</p>
|
1396
128
|
</li>
|
1397
|
-
|
129
|
+
</ul>
|
130
|
+
</div>
|
131
|
+
</div>
|
132
|
+
<div class="section" id="release-4-0-4-2014-07-29">
|
133
|
+
<span id="release-4-0-4"></span><h2>4.0.4リリース - 2014/07/29<a class="headerlink" href="#release-4-0-4-2014-07-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
134
|
+
<div class="section" id="id1">
|
135
|
+
<h3>改良<a class="headerlink" href="#id1" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
136
|
+
<ul class="simple">
|
137
|
+
<li><p class="first">[httpd] バンドルしているnginxのバージョンを1.7.3に更新しました。</p>
|
1398
138
|
</li>
|
1399
|
-
<li><p class="first"
|
139
|
+
<li><p class="first">重みつきベクターカラムを正しく扱えるようにしました。</p>
|
1400
140
|
</li>
|
1401
|
-
<li><p class="first"
|
141
|
+
<li><p class="first">[ <a class="reference internal" href="reference/executables/groonga-benchmark.html"><em>groonga-benchmark</em></a> ] HTTPに関する説明を追加しました。</p>
|
1402
142
|
</li>
|
1403
|
-
<li><p class="first">[
|
143
|
+
<li><p class="first">[ <a class="reference internal" href="tutorial.html"><em>チュートリアル</em></a> ] 英語のドキュメントを更新しました。</p>
|
1404
144
|
</li>
|
1405
|
-
<li><p class="first">
|
145
|
+
<li><p class="first">[example] Ruby 1.9以降でedict2grn.rbが動作するようにしました。</p>
|
1406
146
|
</li>
|
1407
|
-
<li><p class="first">[
|
147
|
+
<li><p class="first">[http][admin] 管理画面で英語を標準にしました。</p>
|
1408
148
|
</li>
|
1409
149
|
</ul>
|
1410
150
|
</div>
|
1411
|
-
<div class="section" id="
|
1412
|
-
<h3>修正<a class="headerlink" href="#
|
151
|
+
<div class="section" id="id2">
|
152
|
+
<h3>修正<a class="headerlink" href="#id2" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1413
153
|
<ul class="simple">
|
1414
|
-
<li><p class="first"
|
1415
|
-
</li>
|
1416
|
-
<li><p class="first">[deb] logrotateでlog_reopenコマンドが誤ったプロトコルを使用する不具合を修正。</p>
|
154
|
+
<li><p class="first">レスポンスでシンタックスエラーの発生個所を正しく表示できるようにしました。</p>
|
1417
155
|
</li>
|
1418
|
-
<li><p class="first">
|
1419
|
-
</li>
|
1420
|
-
<li><p class="first">grn_ctx_fin()がgrn_ctxの一部をクリアしきれていない問題を修正。</p>
|
1421
|
-
</li>
|
1422
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">&!</span></tt> 演算子をグループ化した式と一緒に使うと間違った結果を返す不具合を修正。[#1372]</p>
|
1423
|
-
</li>
|
1424
|
-
<li><p class="first">インデックスのソースに指定したカラム経由でレコードのキーを登録するとキーが正規化されない問題を修正。</p>
|
156
|
+
<li><p class="first">[httpd] Clangでビルドエラーとなる問題を修正しました。 [GitHub clear-code/rurema-search#11] [nikuさんが報告]</p>
|
1425
157
|
</li>
|
1426
158
|
</ul>
|
1427
159
|
</div>
|
1428
|
-
<div class="section" id="
|
1429
|
-
<h3>感謝<a class="headerlink" href="#
|
160
|
+
<div class="section" id="id3">
|
161
|
+
<h3>感謝<a class="headerlink" href="#id3" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1430
162
|
<ul class="simple">
|
1431
|
-
<li><p class="first"
|
163
|
+
<li><p class="first">nikuさん</p>
|
1432
164
|
</li>
|
1433
165
|
</ul>
|
1434
166
|
</div>
|
1435
167
|
</div>
|
1436
|
-
<div class="section" id="release-
|
1437
|
-
<span id="release-
|
1438
|
-
<div class="
|
1439
|
-
<
|
1440
|
-
<p>今回のリリースよりパッケージへ署名する鍵を変更しました。groongaパッケージを更新する前にパッケージ署名用の新しい鍵をインポートして下さい。</p>
|
1441
|
-
<p>Debian/Ubuntu:</p>
|
1442
|
-
<div class="highlight-none"><div class="highlight"><pre>% sudo apt-get update
|
1443
|
-
% sudo apt-get -y --allow-unauthenticated install groonga-keyring
|
1444
|
-
</pre></div>
|
1445
|
-
</div>
|
1446
|
-
<p>CentOS/Fedora:</p>
|
1447
|
-
<div class="last highlight-none"><div class="highlight"><pre>% sudo yum makecache
|
1448
|
-
% sudo yum install --nogpgcheck -y groonga-repository
|
1449
|
-
</pre></div>
|
1450
|
-
</div>
|
1451
|
-
</div>
|
1452
|
-
<div class="section" id="id71">
|
1453
|
-
<h3>改良<a class="headerlink" href="#id71" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
168
|
+
<div class="section" id="release-4-0-3-2014-06-29">
|
169
|
+
<span id="release-4-0-3"></span><h2>4.0.3リリース - 2014/06/29<a class="headerlink" href="#release-4-0-3-2014-06-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
170
|
+
<div class="section" id="id4">
|
171
|
+
<h3>改良<a class="headerlink" href="#id4" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1454
172
|
<ul class="simple">
|
1455
|
-
<li><p class="first">[
|
173
|
+
<li><p class="first">[実験的][ <a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a> ] POSTをサポート。</p>
|
1456
174
|
</li>
|
1457
|
-
<li><p class="first">[
|
175
|
+
<li><p class="first">[windows] libwinpthread-1.dllをバンドル。新しいlibgcc_s_sjlj-1.dllがlibwinpthread-1.dllに依存しているため。 [groonga-dev,02398] [横山さんが報告]</p>
|
1458
176
|
</li>
|
1459
|
-
<li><p class="first">[
|
177
|
+
<li><p class="first">[ <a class="reference internal" href="reference/executables/groonga.html"><em>groongaコマンド</em></a> ] GQTPのデフォルトポート番号を10043に変更。サーバーパッケージではデフォルトで10043を使っているため。 [GitHub#172] [村上さんがパッチ提供]</p>
|
1460
178
|
</li>
|
1461
|
-
<li><p class="first">[
|
179
|
+
<li><p class="first">[ <a class="reference internal" href="reference/commands/normalize.html"><em>normalize</em></a> ] 引数チェックを強化。 [groonga-dev,02409][GitHub:#174] [GMOメディア株式会社さんが報告][村上さんがパッチ提供]</p>
|
1462
180
|
</li>
|
1463
|
-
<li><p class="first">[
|
181
|
+
<li><p class="first">[ <a class="reference internal" href="reference/commands/tokenize.html"><em>tokenize</em></a> ] 引数チェックを強化。</p>
|
1464
182
|
</li>
|
1465
|
-
<li><p class="first">[
|
183
|
+
<li><p class="first">[ <a class="reference internal" href="reference/executables/groonga-server-http.html"><em>groonga HTTPサーバー</em></a> ] <tt class="docutils literal"><span class="pre">Expect:</span> <span class="pre">100-Continue</span></tt> を使うリクエストをサポート。</p>
|
1466
184
|
</li>
|
1467
|
-
<li><p class="first">
|
185
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_proc_get_type()</span></tt> を公開。</p>
|
1468
186
|
</li>
|
1469
|
-
<li><p class="first">[
|
187
|
+
<li><p class="first">[ <a class="reference internal" href="reference/executables/groonga-suggest-learner.html"><em>groonga-suggest-learner</em></a> ] <tt class="docutils literal"><span class="pre">--log-path</span></tt> オプションと <tt class="docutils literal"><span class="pre">--log-level</span></tt> オプションを追加。</p>
|
1470
188
|
</li>
|
1471
|
-
<li><p class="first"
|
189
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">GRN_CTX_USE_QL</span></tt> を非推奨にした。</p>
|
1472
190
|
</li>
|
1473
|
-
<li><p class="first">
|
191
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">GRN_CTX_BATCH_MODE</span></tt> を非推奨にした。</p>
|
1474
192
|
</li>
|
1475
|
-
<li><p class="first">
|
193
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_text_printf()</span></tt> を追加。</p>
|
1476
194
|
</li>
|
1477
|
-
<li><p class="first">
|
195
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_text_vprintf()</span></tt> を追加。</p>
|
1478
196
|
</li>
|
1479
|
-
|
1480
|
-
</div>
|
1481
|
-
<div class="section" id="id72">
|
1482
|
-
<h3>修正<a class="headerlink" href="#id72" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1483
|
-
<ul class="simple">
|
1484
|
-
<li><p class="first">[deb][rpm] 非推奨の <tt class="docutils literal"><span class="pre">--address</span></tt> オプションではなく <tt class="docutils literal"><span class="pre">--bind--address</span></tt> オプションを使用するようにした。[#1320] [IWAI, Masaharuさんがパッチ提供]</p>
|
197
|
+
<li><p class="first">それぞれのクエリーログのサイズ制限を撤廃。</p>
|
1485
198
|
</li>
|
1486
|
-
<li><p class="first"
|
199
|
+
<li><p class="first"><a class="reference internal" href="reference/api/plugin.html#c.grn_plugin_expr_var_init" title="grn_plugin_expr_var_init"><tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_expr_var_init()</span></tt></a> を追加。 [GitHub#175][村上さんがパッチ提供]</p>
|
1487
200
|
</li>
|
1488
|
-
<li><p class="first"
|
201
|
+
<li><p class="first"><a class="reference internal" href="reference/api/plugin.html#c.grn_plugin_command_create" title="grn_plugin_command_create"><tt class="xref c c-func docutils literal"><span class="pre">grn_plugin_command_create()</span></tt></a> を追加。 [GitHub#175][村上さんがパッチ提供]</p>
|
1489
202
|
</li>
|
1490
|
-
<li><p class="first">[
|
203
|
+
<li><p class="first">[GitHub#176] 重み付きの参照ベクターカラムをサポート。</p>
|
1491
204
|
</li>
|
1492
|
-
<li><p class="first">[
|
205
|
+
<li><p class="first">[plugin] 内部APIではなく公開APIを使うように変更。 [GitHub#177][GitHub#178] [村上さんがパッチ提供]</p>
|
1493
206
|
</li>
|
1494
|
-
<li><p class="first">[
|
207
|
+
<li><p class="first">[doc][plugin] プラグイン用のAPIを追加。 [GitHub#179] [村上さんがパッチ提供]</p>
|
1495
208
|
</li>
|
1496
|
-
<li><p class="first">[
|
209
|
+
<li><p class="first">[windows] Visual C++ 2010を再サポート。 [groonga-dev,02454] [cosmo0920さんが報告]。</p>
|
1497
210
|
</li>
|
1498
|
-
|
211
|
+
</ul>
|
212
|
+
</div>
|
213
|
+
<div class="section" id="id5">
|
214
|
+
<h3>修正<a class="headerlink" href="#id5" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
215
|
+
<ul class="simple">
|
216
|
+
<li><p class="first">[rpm][groonga-server-gqtp] GQTPではなくHTTPが使われる問題を修正。 [GitHub#173] [村上さんがパッチ提供]</p>
|
1499
217
|
</li>
|
1500
|
-
<li><p class="first"
|
218
|
+
<li><p class="first">[ <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> ] <a class="reference internal" href="reference/commands/select.html#select-adjuster"><em>adjuster</em></a> に指定した値がシンタックスエラーだとクラッシュする問題を修正。</p>
|
1501
219
|
</li>
|
1502
220
|
</ul>
|
1503
221
|
</div>
|
1504
|
-
<div class="section" id="
|
1505
|
-
<h3>感謝<a class="headerlink" href="#
|
222
|
+
<div class="section" id="id6">
|
223
|
+
<h3>感謝<a class="headerlink" href="#id6" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1506
224
|
<ul class="simple">
|
1507
|
-
<li><p class="first"
|
225
|
+
<li><p class="first">横山さん</p>
|
226
|
+
</li>
|
227
|
+
<li><p class="first">村上さん</p>
|
1508
228
|
</li>
|
1509
|
-
<li><p class="first"
|
229
|
+
<li><p class="first">GMOメディア株式会社さん</p>
|
1510
230
|
</li>
|
1511
|
-
<li><p class="first">
|
231
|
+
<li><p class="first">cosmo0920さん</p>
|
1512
232
|
</li>
|
1513
233
|
</ul>
|
1514
234
|
</div>
|
1515
235
|
</div>
|
1516
|
-
<div class="section" id="release-
|
1517
|
-
<span id="release-
|
1518
|
-
<div class="section" id="
|
1519
|
-
<h3>改良<a class="headerlink" href="#
|
236
|
+
<div class="section" id="release-4-0-2-2014-05-29">
|
237
|
+
<span id="release-4-0-2"></span><h2>4.0.2リリース - 2014/05/29<a class="headerlink" href="#release-4-0-2-2014-05-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
238
|
+
<div class="section" id="id7">
|
239
|
+
<h3>改良<a class="headerlink" href="#id7" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1520
240
|
<ul class="simple">
|
1521
|
-
<li><p class="first"
|
241
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/executables/groonga-suggest-learner.html"><em>groonga-suggest-learner</em></a> のドキュメントを更新しました。</p>
|
242
|
+
</li>
|
243
|
+
<li><p class="first">[doc] ファイルの更新方法に関するドキュメントを更新しました。 [GitHub#160] [cosmo0920さんがパッチ提供]</p>
|
244
|
+
</li>
|
245
|
+
<li><p class="first">[doc] ドキュメント中で「Groonga」という標記を使うようにしました。 [GitHub#162][GitHub#163][GitHub#164] [cosmo0920さんがパッチ提供]</p>
|
246
|
+
</li>
|
247
|
+
<li><p class="first">Ubuntu 14.04 Trusty Tahrをサポート。</p>
|
1522
248
|
</li>
|
1523
|
-
<li><p class="first">
|
249
|
+
<li><p class="first">Ubuntu 12.10のサポートを終了しました。</p>
|
1524
250
|
</li>
|
1525
|
-
<li><p class="first">
|
251
|
+
<li><p class="first">Ubuntuパッケージの配布場所としてLaunchpadのPPAを使うようにしました。詳細は <a class="reference internal" href="install/ubuntu.html"><em>Ubuntu</em></a> を確認してください。</p>
|
1526
252
|
</li>
|
1527
|
-
<li><p class="first">
|
253
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">/d/</span></tt> から始まるリクエストはすべてAPIリクエストとして処理するようになりました。GroongaのHTTPサービスでファイルを提供したい場合は、 <tt class="docutils literal"><span class="pre">/d/</span></tt> 以外から始まるパスにファイルを置いてください。</p>
|
1528
254
|
</li>
|
1529
|
-
<li><p class="first">[
|
255
|
+
<li><p class="first">[munin] <a class="reference internal" href="reference/executables/groonga-httpd.html"><em>groonga-httpd</em></a> をサポートしました。 [村上さんが報告]</p>
|
1530
256
|
</li>
|
1531
|
-
<li><p class="first"
|
257
|
+
<li><p class="first">夏時間をサポートしました。 [#2546]</p>
|
1532
258
|
</li>
|
1533
|
-
<li><p class="first">[
|
259
|
+
<li><p class="first">[doc] <a class="reference internal" href="install/mac_os_x.html"><em>Mac OS X</em></a> に <tt class="docutils literal"><span class="pre">--with-mecab</span></tt> の説明を追加しました。</p>
|
1534
260
|
</li>
|
1535
|
-
<li><p class="first"
|
261
|
+
<li><p class="first">[http] シンタックスエラーが発生したときのHTTPのリターンコードを <tt class="docutils literal"><span class="pre">500</span> <span class="pre">Internal</span> <span class="pre">Server</span> <span class="pre">Error</span></tt> から <tt class="docutils literal"><span class="pre">400</span> <span class="pre">Bad</span> <span class="pre">Request</span></tt> に変更しました。</p>
|
1536
262
|
</li>
|
1537
|
-
<li><p class="first">[
|
263
|
+
<li><p class="first">[http][admin] jQueryのJSONプラグインを削除しました。 [GitHub#168] [大関さんがパッチ提供]</p>
|
1538
264
|
</li>
|
1539
|
-
<li><p class="first"
|
265
|
+
<li><p class="first">[http][admin] strictモードを有効にしました。 [GitHub#169] [大関さんがパッチ提供]</p>
|
1540
266
|
</li>
|
1541
|
-
<li><p class="first">
|
267
|
+
<li><p class="first">変数の値を取得するAPIを <a class="reference internal" href="reference/api/plugin.html"><em>Plugin</em></a> のAPIとして使えるようにしました。 [GitHub#170] [村上さんがパッチを提供]</p>
|
268
|
+
<ul>
|
269
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var()</span></tt> を追加。</p>
|
1542
270
|
</li>
|
1543
|
-
<li><p class="first"><tt class="docutils literal"><span class="pre">
|
271
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_plugin_proc_get_var_by_offset()</span></tt> を追加。</p>
|
1544
272
|
</li>
|
1545
|
-
|
273
|
+
</ul>
|
1546
274
|
</li>
|
1547
|
-
<li><p class="first">[
|
275
|
+
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/tokenizer_list.html"><em>tokenizer_list</em></a> を追加しました。 [GitHub#171] [村上さんがパッチ提供]</p>
|
1548
276
|
</li>
|
1549
|
-
<li><p class="first"
|
277
|
+
<li><p class="first">[実験的] <a class="reference internal" href="reference/commands/normalizer_list.html"><em>normalizer_list</em></a> を追加しました。 [GitHub#171] [村上さんがパッチ提供]</p>
|
1550
278
|
</li>
|
1551
279
|
</ul>
|
1552
280
|
</div>
|
1553
|
-
<div class="section" id="
|
1554
|
-
<h3>修正<a class="headerlink" href="#
|
281
|
+
<div class="section" id="id8">
|
282
|
+
<h3>修正<a class="headerlink" href="#id8" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1555
283
|
<ul class="simple">
|
1556
|
-
<li><p class="first"
|
1557
|
-
</li>
|
1558
|
-
<li><p class="first">Gemfileを追加した。 [#1302] [かずひこさんが報告]</p>
|
284
|
+
<li><p class="first">[index] 最大セグメント数が間違っていた問題を修正しました。この問題によりインデックスカラム用のすべてのリソースを使い切るとクラッシュしていました。 [#2438] [GMOメディア株式会社さんが報告]</p>
|
1559
285
|
</li>
|
1560
|
-
<li><p class="first"
|
286
|
+
<li><p class="first">[doc] <a class="reference internal" href="install/centos.html"><em>CentOS</em></a> の中のtypoを修正しました。 [GitHub#166] [村上さんがパッチ提供]</p>
|
1561
287
|
</li>
|
1562
|
-
<li><p class="first">[
|
288
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/select.html"><em>select</em></a> で <tt class="docutils literal"><span class="pre">drilldown_output_columns</span></tt> のデフォルト値が間違っていた問題を修正しました。 [GitHub#167] [村上さんがパッチ提供]</p>
|
1563
289
|
</li>
|
1564
|
-
<li><p class="first">
|
290
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/grn_expr/query_syntax.html"><em>クエリー構文</em></a> で不足していた <tt class="docutils literal"><span class="pre">\</span></tt> エスケープの例外ケースを追加しました。 [@Yappoさんが報告]</p>
|
1565
291
|
</li>
|
1566
292
|
</ul>
|
1567
293
|
</div>
|
1568
|
-
<div class="section" id="
|
1569
|
-
<h3>感謝<a class="headerlink" href="#
|
294
|
+
<div class="section" id="id9">
|
295
|
+
<h3>感謝<a class="headerlink" href="#id9" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1570
296
|
<ul class="simple">
|
1571
|
-
<li><p class="first"
|
297
|
+
<li><p class="first">cosmo0920さん</p>
|
298
|
+
</li>
|
299
|
+
<li><p class="first">村上さん</p>
|
300
|
+
</li>
|
301
|
+
<li><p class="first">大関さん</p>
|
302
|
+
</li>
|
303
|
+
<li><p class="first">GMOメディア株式会社さん</p>
|
1572
304
|
</li>
|
1573
|
-
<li><p class="first"
|
305
|
+
<li><p class="first">@Yappoさん</p>
|
1574
306
|
</li>
|
1575
307
|
</ul>
|
1576
308
|
</div>
|
1577
309
|
</div>
|
1578
|
-
<div class="section" id="release-
|
1579
|
-
<span id="release-
|
1580
|
-
<div class="section" id="
|
1581
|
-
<h3>改良<a class="headerlink" href="#
|
310
|
+
<div class="section" id="release-4-0-1-2014-03-29">
|
311
|
+
<span id="release-4-0-1"></span><h2>4.0.1リリース - 2014/03/29<a class="headerlink" href="#release-4-0-1-2014-03-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
312
|
+
<div class="section" id="id10">
|
313
|
+
<h3>改良<a class="headerlink" href="#id10" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1582
314
|
<ul class="simple">
|
1583
|
-
<li><p class="first">[
|
1584
|
-
</li>
|
1585
|
-
<li><p class="first">[windows] GCC関連のDLLを同梱するようにした。 [groonga-dev,00686] [鈴木さんが報告]</p>
|
315
|
+
<li><p class="first">[doc] 返り値のヘッダ詳細 (<a class="reference internal" href="reference/command/output_format.html"><em>出力形式</em></a>) についてのリンクを追加しました。</p>
|
1586
316
|
</li>
|
1587
|
-
<li><p class="first">
|
317
|
+
<li><p class="first">JSONロード時のベクターの値とオブジェクトの値を表示できるようにしました。ロードに失敗したときのデータの詳細がわかるようになりました。</p>
|
1588
318
|
</li>
|
1589
|
-
<li><p class="first">
|
319
|
+
<li><p class="first">selectコマンドに <tt class="docutils literal"><span class="pre">adjuster</span></tt> オプションを追加しました。adjusterオプションのシンタックスは INDEX_COLUMN @ STRING_LITERAL (* FACTOR) です。</p>
|
1590
320
|
</li>
|
1591
|
-
<li><p class="first">
|
321
|
+
<li><p class="first"><a class="reference internal" href="reference/columns/vector.html#weight-vector-column"><em>重み付きベクターカラム</em></a> をサポートしました。重みつきベクターを使うにはカラム作成時に 'COLUMN_VECTOR|WITH_WEIGHT' を指定する必要があります。</p>
|
1592
322
|
</li>
|
1593
|
-
<li><p class="first">[
|
323
|
+
<li><p class="first">SunOSでビルドに必要なMIN/MAXの定義がなかったので追加しました。[GitHub#154] [Sebastian Wiedenrothさんがパッチ提供]</p>
|
1594
324
|
</li>
|
1595
|
-
<li><p class="first"
|
325
|
+
<li><p class="first">使われなくなった領域を再利用するように改善しました。これによりデータべースの肥大化を抑制します。</p>
|
1596
326
|
</li>
|
1597
|
-
<li><p class="first"
|
327
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/executables/groonga-suggest-httpd.html"><em>groonga-suggest-httpd</em></a> のGETパラメータに関するドキュメントを追加しました。</p>
|
1598
328
|
</li>
|
1599
|
-
<li><p class="first"
|
329
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/column.html"><em>カラム</em></a> のドキュメントを追加しました。</p>
|
1600
330
|
</li>
|
1601
|
-
<li><p class="first"
|
331
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/columns/vector.html"><em>ベクターカラム</em></a> のドキュメントを追加しました。</p>
|
1602
332
|
</li>
|
1603
|
-
<li><p class="first">[
|
333
|
+
<li><p class="first">[column_list] 重みつきベクターカラムを表示できるようにしました。</p>
|
1604
334
|
</li>
|
1605
|
-
<li><p class="first">[
|
335
|
+
<li><p class="first">[column_create] マルチカラムインデックスを作成するときに、WITH_SECTIONフラグが指定されていない場合のエラーチェックを追加しました。</p>
|
1606
336
|
</li>
|
1607
|
-
<li><p class="first"
|
337
|
+
<li><p class="first">[httpd] NginxHttpStubStatusModuleをgroonga-httpdで有効にしました。[長野雅広さんが提案]</p>
|
1608
338
|
</li>
|
1609
|
-
|
339
|
+
</ul>
|
340
|
+
</div>
|
341
|
+
<div class="section" id="id11">
|
342
|
+
<h3>修正<a class="headerlink" href="#id11" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
343
|
+
<ul class="simple">
|
344
|
+
<li><p class="first">除算によるオーバーフローが発生する不具合を修正しました。例えば、'COLUMN(最小値) / -1' をInt32やInt64で定義したカラムに適用すると発生します。[#2307]</p>
|
1610
345
|
</li>
|
1611
|
-
<li><p class="first"
|
346
|
+
<li><p class="first">剰余演算 '%' ではなく、除算 '/' を行ってしまう不具合を修正しました。[#2307]</p>
|
1612
347
|
</li>
|
1613
|
-
<li><p class="first">[
|
348
|
+
<li><p class="first">[doc] <a class="reference internal" href="reference/commands/column_rename.html"><em>column_rename</em></a> のドキュメントの説明の誤りを修正しました。 [nise_nabeさんが報告]</p>
|
1614
349
|
</li>
|
1615
|
-
<li><p class="first"
|
350
|
+
<li><p class="first">配列の領域外アクセスが発生しうる問題を修正しました。[GitHub#158] [dcb314さんが報告]</p>
|
1616
351
|
</li>
|
1617
352
|
</ul>
|
1618
353
|
</div>
|
1619
|
-
<div class="section" id="
|
1620
|
-
<h3
|
354
|
+
<div class="section" id="id12">
|
355
|
+
<h3>感謝<a class="headerlink" href="#id12" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1621
356
|
<ul class="simple">
|
1622
|
-
<li><p class="first">
|
357
|
+
<li><p class="first">Sebastian Wiedenrothさん</p>
|
358
|
+
</li>
|
359
|
+
<li><p class="first">長野雅広さん</p>
|
360
|
+
</li>
|
361
|
+
<li><p class="first">nise_nabeさん</p>
|
1623
362
|
</li>
|
1624
|
-
<li><p class="first">
|
363
|
+
<li><p class="first">dcb314さん</p>
|
1625
364
|
</li>
|
1626
|
-
|
365
|
+
</ul>
|
366
|
+
</div>
|
367
|
+
</div>
|
368
|
+
<div class="section" id="release-4-0-0-2014-02-09">
|
369
|
+
<span id="release-4-0-0"></span><h2>4.0.0リリース - 2014/02/09<a class="headerlink" href="#release-4-0-0-2014-02-09" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
370
|
+
<ul class="simple">
|
371
|
+
<li><p class="first">バージョン4.0.0になりました!</p>
|
1627
372
|
</li>
|
1628
|
-
|
373
|
+
</ul>
|
374
|
+
<div class="section" id="id13">
|
375
|
+
<h3>改良<a class="headerlink" href="#id13" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
376
|
+
<ul class="simple">
|
377
|
+
<li><p class="first">[normalizer] "checks" というノーマライズ前の文字列だと次の文字の位置がどこか計算するのに使う値を表示できるようにしました。この機能を有効にするには <cite>WITH_CHECK</cite> フラグを使用します。</p>
|
1629
378
|
</li>
|
1630
|
-
<li><p class="first">[
|
379
|
+
<li><p class="first">[deb] Ubuntu 13.04 (Raring Ringtail)のサポートをやめました。</p>
|
1631
380
|
</li>
|
1632
381
|
</ul>
|
1633
382
|
</div>
|
1634
|
-
<div class="section" id="
|
1635
|
-
<h3
|
383
|
+
<div class="section" id="id14">
|
384
|
+
<h3>修正<a class="headerlink" href="#id14" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1636
385
|
<ul class="simple">
|
1637
|
-
<li><p class="first"
|
386
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_expr</span></tt> のオブジェクトが解放後にアクセスされクラッシュしてしまう不具合を修正しました。Groongaサーバーを利用している場合にはこの不具合に該当しません。主にこの不具合の影響を受けるのはRroongaユーザーです。この不具合はRroongaのAPIに <tt class="docutils literal"><span class="pre">_key</span></tt> のような疑似カラム名を含んだ指定をすることで発生します。</p>
|
1638
387
|
</li>
|
1639
|
-
<li><p class="first"
|
388
|
+
<li><p class="first">Groonga 3.0.8で導入されたカスケード削除を意図せず実行しないようにしました。参照元とインデックスのドメインが異なる場合にはカスケード削除を実行しないようにしました。 [groonga-dev,02073] [yokuさんが報告]</p>
|
1640
389
|
</li>
|
1641
|
-
<li><p class="first"
|
390
|
+
<li><p class="first"><tt class="docutils literal"><span class="pre">grn_snip</span></tt> 構造体を公開しないようにしました。 <tt class="docutils literal"><span class="pre">grn_snip</span></tt> のかわりに <tt class="docutils literal"><span class="pre">grn_obj</span></tt> を使うようにしてください。もし <tt class="docutils literal"><span class="pre">grn_snip_close</span></tt> を使っていたら、 <tt class="docutils literal"><span class="pre">grn_obj_close</span></tt> に置き換えてください。</p>
|
1642
391
|
</li>
|
1643
|
-
<li><p class="first"
|
392
|
+
<li><p class="first">[snippet_html] --queryが空のときにクラッシュする不具合を修正しました。 [groonga-dev,02097] [村上さんが報告]</p>
|
1644
393
|
</li>
|
1645
|
-
<li><p class="first">
|
394
|
+
<li><p class="first">[snippet_html] カラムの中身が空のときのALERTレベルのメッセージを抑制するようにしました。 [groonga-dev,02097] [村上さんが報告]</p>
|
1646
395
|
</li>
|
1647
|
-
<li><p class="first"
|
396
|
+
<li><p class="first">[groonga-httpd] "off" が通常のパス名として <tt class="docutils literal"><span class="pre">groonga_query_log_path</span></tt> で使われてしまう不具合を修正しました。 [groonga-dev,02113] [山本良二さんが報告]</p>
|
1648
397
|
</li>
|
1649
398
|
</ul>
|
1650
399
|
</div>
|
1651
|
-
|
1652
|
-
<
|
1653
|
-
<span id="release-1-3-0"></span><h2>1.3.0リリース - 2012/01/29<a class="headerlink" href="#release-1-3-0-2012-01-29" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
1654
|
-
<div class="section" id="id80">
|
1655
|
-
<h3>改良<a class="headerlink" href="#id80" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
400
|
+
<div class="section" id="id15">
|
401
|
+
<h3>感謝<a class="headerlink" href="#id15" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1656
402
|
<ul class="simple">
|
1657
|
-
<li><p class="first">
|
403
|
+
<li><p class="first">yokuさん</p>
|
1658
404
|
</li>
|
1659
|
-
<li><p class="first"
|
405
|
+
<li><p class="first">村上さん</p>
|
1660
406
|
</li>
|
1661
|
-
<li><p class="first"
|
407
|
+
<li><p class="first">山本良二さん</p>
|
1662
408
|
</li>
|
1663
|
-
|
409
|
+
</ul>
|
410
|
+
</div>
|
411
|
+
</div>
|
412
|
+
<div class="section" id="the-old-releases">
|
413
|
+
<h2>The old releases<a class="headerlink" href="#the-old-releases" title="このヘッドラインへのパーマリンク">¶</a></h2>
|
414
|
+
<div class="toctree-wrapper compound">
|
415
|
+
<ul>
|
416
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html">3.1.2リリース - 2014/01/29</a><ul>
|
417
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#improvements">改良</a></li>
|
418
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#fixes">修正</a></li>
|
419
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#thanks">感謝</a></li>
|
420
|
+
</ul>
|
1664
421
|
</li>
|
1665
|
-
<li><
|
422
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-1-2013-12-29">3.1.1リリース - 2013/12/29</a><ul>
|
423
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id1">改良</a></li>
|
424
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id2">修正</a></li>
|
425
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id3">感謝</a></li>
|
426
|
+
</ul>
|
1666
427
|
</li>
|
1667
|
-
<li><
|
428
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-1-0-2013-11-29">3.1.0リリース - 2013/11/29</a><ul>
|
429
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id4">改良</a></li>
|
430
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id5">修正</a></li>
|
431
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id6">感謝</a></li>
|
432
|
+
</ul>
|
1668
433
|
</li>
|
1669
|
-
<li><
|
434
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-9-2013-10-29">3.0.9リリース - 2013/10/29</a><ul>
|
435
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id7">改良</a></li>
|
436
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id8">修正</a></li>
|
437
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id9">感謝</a></li>
|
438
|
+
</ul>
|
1670
439
|
</li>
|
1671
|
-
<li
|
440
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-8-2013-09-29">3.0.8リリース - 2013/09/29</a><ul>
|
441
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id10">改良</a></li>
|
442
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id11">修正</a></li>
|
443
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id12">感謝</a></li>
|
444
|
+
</ul>
|
1672
445
|
</li>
|
1673
|
-
<li><
|
446
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-7-2013-08-29">3.0.7リリース - 2013/08/29</a><ul>
|
447
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id13">改良</a></li>
|
448
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id14">修正</a></li>
|
449
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id15">感謝</a></li>
|
450
|
+
</ul>
|
1674
451
|
</li>
|
1675
|
-
<li
|
452
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-6-2013-07-29">3.0.6リリース - 2013/07/29</a><ul>
|
453
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id16">改良</a></li>
|
454
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id17">修正</a></li>
|
455
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id18">感謝</a></li>
|
456
|
+
</ul>
|
1676
457
|
</li>
|
1677
|
-
<li
|
458
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-5-2013-06-29">3.0.5リリース - 2013/06/29</a><ul>
|
459
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id19">改良</a></li>
|
460
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id20">修正</a></li>
|
461
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id21">感謝</a></li>
|
462
|
+
</ul>
|
1678
463
|
</li>
|
1679
|
-
<li><
|
464
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-4-2013-05-29">3.0.4リリース - 2013/05/29</a><ul>
|
465
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id22">改良</a></li>
|
466
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id23">修正</a></li>
|
467
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id24">感謝</a></li>
|
468
|
+
</ul>
|
1680
469
|
</li>
|
1681
|
-
<li><
|
470
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-3-2013-04-29">3.0.3リリース - 2013/04/29</a><ul>
|
471
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id25">改良</a></li>
|
472
|
+
</ul>
|
1682
473
|
</li>
|
1683
|
-
<li
|
474
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-2-2013-03-29">3.0.2リリース - 2013/03/29</a><ul>
|
475
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id26">改良</a></li>
|
476
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id27">修正</a></li>
|
477
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id28">感謝</a></li>
|
478
|
+
</ul>
|
1684
479
|
</li>
|
1685
|
-
<li
|
480
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-1-2013-02-28">3.0.1リリース - 2013/02/28</a><ul>
|
481
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id29">改良</a></li>
|
482
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id30">修正</a></li>
|
483
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id31">感謝</a></li>
|
484
|
+
</ul>
|
1686
485
|
</li>
|
1687
|
-
<li><
|
486
|
+
<li class="toctree-l1"><a class="reference internal" href="news/3.x.html#release-3-0-0-2013-02-09">3.0.0リリース - 2013/02/09</a><ul>
|
487
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id32">修正</a></li>
|
488
|
+
<li class="toctree-l2"><a class="reference internal" href="news/3.x.html#id33">感謝</a></li>
|
489
|
+
</ul>
|
1688
490
|
</li>
|
1689
|
-
<li><
|
491
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html">2.1.2リリース - 2013/01/29</a><ul>
|
492
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#improvements">改良</a></li>
|
493
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#fixes">修正</a></li>
|
494
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#thanks">感謝</a></li>
|
495
|
+
</ul>
|
1690
496
|
</li>
|
1691
|
-
<li><
|
497
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-1-2012-12-29">2.1.1リリース - 2012/12/29</a><ul>
|
498
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id1">修正</a></li>
|
499
|
+
</ul>
|
1692
500
|
</li>
|
1693
|
-
<li
|
501
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-1-0-2012-12-29">2.1.0リリース - 2012/12/29</a><ul>
|
502
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id2">改良</a></li>
|
503
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id3">修正</a></li>
|
504
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id4">感謝</a></li>
|
505
|
+
</ul>
|
1694
506
|
</li>
|
1695
|
-
<li><
|
507
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-9-2012-11-29">2.0.9リリース - 2012/11/29</a><ul>
|
508
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id5">改良</a></li>
|
509
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id6">修正</a></li>
|
510
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id7">感謝</a></li>
|
511
|
+
</ul>
|
1696
512
|
</li>
|
1697
|
-
<li
|
513
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-8-2012-10-29">2.0.8リリース - 2012/10/29</a><ul>
|
514
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id8">改良</a></li>
|
515
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id9">修正</a></li>
|
516
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id10">感謝</a></li>
|
517
|
+
</ul>
|
1698
518
|
</li>
|
1699
|
-
<li><
|
519
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-7-2012-09-29">2.0.7リリース - 2012/09/29</a><ul>
|
520
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id11">改良</a></li>
|
521
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id12">修正</a></li>
|
522
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id13">感謝</a></li>
|
523
|
+
</ul>
|
1700
524
|
</li>
|
1701
|
-
<li
|
525
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-6-2012-08-29">2.0.6リリース - 2012/08/29</a><ul>
|
526
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id14">改良</a></li>
|
527
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id15">修正</a></li>
|
528
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id16">感謝</a></li>
|
529
|
+
</ul>
|
1702
530
|
</li>
|
1703
|
-
<li
|
531
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-5-2012-07-29">2.0.5リリース - 2012/07/29</a><ul>
|
532
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id17">改良</a></li>
|
533
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id18">修正</a></li>
|
534
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id19">感謝</a></li>
|
535
|
+
</ul>
|
1704
536
|
</li>
|
537
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-4-2012-06-29">2.0.4リリース - 2012/06/29</a><ul>
|
538
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id20">改良</a></li>
|
539
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id21">修正</a></li>
|
540
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id22">感謝</a></li>
|
1705
541
|
</ul>
|
1706
|
-
</div>
|
1707
|
-
<div class="section" id="id81">
|
1708
|
-
<h3>感謝<a class="headerlink" href="#id81" title="このヘッドラインへのパーマリンク">¶</a></h3>
|
1709
|
-
<ul class="simple">
|
1710
|
-
<li><p class="first">montywiさん</p>
|
1711
542
|
</li>
|
1712
|
-
<li><
|
543
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-3-2012-05-29">2.0.3リリース - 2012/05/29</a><ul>
|
544
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id23">改良</a></li>
|
545
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id24">修正</a></li>
|
546
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id25">感謝</a></li>
|
547
|
+
</ul>
|
1713
548
|
</li>
|
549
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-2-2012-04-29">2.0.2リリース - 2012/04/29</a><ul>
|
550
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id26">改良</a></li>
|
551
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id27">修正</a></li>
|
552
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id28">感謝</a></li>
|
1714
553
|
</ul>
|
1715
|
-
</
|
1716
|
-
</
|
1717
|
-
<
|
1718
|
-
<
|
1719
|
-
<
|
1720
|
-
|
554
|
+
</li>
|
555
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-1-2012-03-29">2.0.1リリース - 2012/03/29</a><ul>
|
556
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id29">改良</a></li>
|
557
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id30">修正</a></li>
|
558
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id31">感謝</a></li>
|
559
|
+
</ul>
|
560
|
+
</li>
|
561
|
+
<li class="toctree-l1"><a class="reference internal" href="news/2.x.html#release-2-0-0-2012-02-29">2.0.0リリース - 2012/02/29</a><ul>
|
562
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id32">改良</a></li>
|
563
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id33">修正</a></li>
|
564
|
+
<li class="toctree-l2"><a class="reference internal" href="news/2.x.html#id34">感謝</a></li>
|
565
|
+
</ul>
|
566
|
+
</li>
|
567
|
+
<li class="toctree-l1"><a class="reference internal" href="news/1.3.x.html">1.3.0リリース - 2012/01/29</a><ul>
|
568
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#improvements">改良</a></li>
|
569
|
+
<li class="toctree-l2"><a class="reference internal" href="news/1.3.x.html#thanks">感謝</a></li>
|
570
|
+
</ul>
|
571
|
+
</li>
|
1721
572
|
<li class="toctree-l1"><a class="reference internal" href="news/1.2.x.html">1.2.9リリース - 2011/12/29</a><ul>
|
1722
573
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#improvements">改良</a></li>
|
1723
574
|
<li class="toctree-l2"><a class="reference internal" href="news/1.2.x.html#fixes">修正</a></li>
|
@@ -1823,198 +674,58 @@ This change not to contain such a metadata as search results.</li>
|
|
1823
674
|
</div>
|
1824
675
|
</div>
|
1825
676
|
</div>
|
1826
|
-
<div class="sphinxsidebar"
|
677
|
+
<div class="sphinxsidebar">
|
1827
678
|
<div class="sphinxsidebarwrapper">
|
1828
679
|
<h3><a href="index.html">目次</a></h3>
|
1829
680
|
<ul>
|
1830
681
|
<li><a class="reference internal" href="#">お知らせ</a><ul>
|
1831
|
-
<li><a class="reference internal" href="#release-4-0-
|
682
|
+
<li><a class="reference internal" href="#release-4-0-5-2014-08-29">4.0.5リリース - 2014/08/29</a><ul>
|
1832
683
|
<li><a class="reference internal" href="#improvements">改良</a></li>
|
1833
684
|
<li><a class="reference internal" href="#fixes">修正</a></li>
|
1834
685
|
<li><a class="reference internal" href="#thanks">感謝</a></li>
|
1835
686
|
</ul>
|
1836
687
|
</li>
|
1837
|
-
<li><a class="reference internal" href="#release-4-0-
|
688
|
+
<li><a class="reference internal" href="#release-4-0-4-2014-07-29">4.0.4リリース - 2014/07/29</a><ul>
|
1838
689
|
<li><a class="reference internal" href="#id1">改良</a></li>
|
1839
690
|
<li><a class="reference internal" href="#id2">修正</a></li>
|
1840
691
|
<li><a class="reference internal" href="#id3">感謝</a></li>
|
1841
692
|
</ul>
|
1842
693
|
</li>
|
1843
|
-
<li><a class="reference internal" href="#release-4-0-
|
694
|
+
<li><a class="reference internal" href="#release-4-0-3-2014-06-29">4.0.3リリース - 2014/06/29</a><ul>
|
1844
695
|
<li><a class="reference internal" href="#id4">改良</a></li>
|
1845
696
|
<li><a class="reference internal" href="#id5">修正</a></li>
|
1846
697
|
<li><a class="reference internal" href="#id6">感謝</a></li>
|
1847
698
|
</ul>
|
1848
699
|
</li>
|
1849
|
-
<li><a class="reference internal" href="#release-
|
700
|
+
<li><a class="reference internal" href="#release-4-0-2-2014-05-29">4.0.2リリース - 2014/05/29</a><ul>
|
1850
701
|
<li><a class="reference internal" href="#id7">改良</a></li>
|
1851
702
|
<li><a class="reference internal" href="#id8">修正</a></li>
|
1852
703
|
<li><a class="reference internal" href="#id9">感謝</a></li>
|
1853
704
|
</ul>
|
1854
705
|
</li>
|
1855
|
-
<li><a class="reference internal" href="#release-
|
706
|
+
<li><a class="reference internal" href="#release-4-0-1-2014-03-29">4.0.1リリース - 2014/03/29</a><ul>
|
1856
707
|
<li><a class="reference internal" href="#id10">改良</a></li>
|
1857
708
|
<li><a class="reference internal" href="#id11">修正</a></li>
|
1858
709
|
<li><a class="reference internal" href="#id12">感謝</a></li>
|
1859
710
|
</ul>
|
1860
711
|
</li>
|
1861
|
-
<li><a class="reference internal" href="#release-
|
712
|
+
<li><a class="reference internal" href="#release-4-0-0-2014-02-09">4.0.0リリース - 2014/02/09</a><ul>
|
1862
713
|
<li><a class="reference internal" href="#id13">改良</a></li>
|
1863
714
|
<li><a class="reference internal" href="#id14">修正</a></li>
|
1864
715
|
<li><a class="reference internal" href="#id15">感謝</a></li>
|
1865
716
|
</ul>
|
1866
717
|
</li>
|
1867
|
-
<li><a class="reference internal" href="#release-3-0-9-2013-10-29">3.0.9リリース - 2013/10/29</a><ul>
|
1868
|
-
<li><a class="reference internal" href="#id16">改良</a></li>
|
1869
|
-
<li><a class="reference internal" href="#id17">修正</a></li>
|
1870
|
-
<li><a class="reference internal" href="#id18">感謝</a></li>
|
1871
|
-
</ul>
|
1872
|
-
</li>
|
1873
|
-
<li><a class="reference internal" href="#release-3-0-8-2013-09-29">3.0.8リリース - 2013/09/29</a><ul>
|
1874
|
-
<li><a class="reference internal" href="#id19">改良</a></li>
|
1875
|
-
<li><a class="reference internal" href="#id20">修正</a></li>
|
1876
|
-
<li><a class="reference internal" href="#id21">感謝</a></li>
|
1877
|
-
</ul>
|
1878
|
-
</li>
|
1879
|
-
<li><a class="reference internal" href="#release-3-0-7-2013-08-29">3.0.7リリース - 2013/08/29</a><ul>
|
1880
|
-
<li><a class="reference internal" href="#id22">改良</a></li>
|
1881
|
-
<li><a class="reference internal" href="#id23">修正</a></li>
|
1882
|
-
<li><a class="reference internal" href="#id24">感謝</a></li>
|
1883
|
-
</ul>
|
1884
|
-
</li>
|
1885
|
-
<li><a class="reference internal" href="#release-3-0-6-2013-07-29">3.0.6リリース - 2013/07/29</a><ul>
|
1886
|
-
<li><a class="reference internal" href="#id25">改良</a></li>
|
1887
|
-
<li><a class="reference internal" href="#id26">修正</a></li>
|
1888
|
-
<li><a class="reference internal" href="#id27">感謝</a></li>
|
1889
|
-
</ul>
|
1890
|
-
</li>
|
1891
|
-
<li><a class="reference internal" href="#release-3-0-5-2013-06-29">3.0.5リリース - 2013/06/29</a><ul>
|
1892
|
-
<li><a class="reference internal" href="#id28">改良</a></li>
|
1893
|
-
<li><a class="reference internal" href="#id29">修正</a></li>
|
1894
|
-
<li><a class="reference internal" href="#id30">感謝</a></li>
|
1895
|
-
</ul>
|
1896
|
-
</li>
|
1897
|
-
<li><a class="reference internal" href="#release-3-0-4-2013-05-29">3.0.4リリース - 2013/05/29</a><ul>
|
1898
|
-
<li><a class="reference internal" href="#id31">改良</a></li>
|
1899
|
-
<li><a class="reference internal" href="#id32">修正</a></li>
|
1900
|
-
<li><a class="reference internal" href="#id33">感謝</a></li>
|
1901
|
-
</ul>
|
1902
|
-
</li>
|
1903
|
-
<li><a class="reference internal" href="#release-3-0-3-2013-04-29">3.0.3リリース - 2013/04/29</a><ul>
|
1904
|
-
<li><a class="reference internal" href="#id34">改良</a></li>
|
1905
|
-
</ul>
|
1906
|
-
</li>
|
1907
|
-
<li><a class="reference internal" href="#release-3-0-2-2013-03-29">3.0.2リリース - 2013/03/29</a><ul>
|
1908
|
-
<li><a class="reference internal" href="#id35">改良</a></li>
|
1909
|
-
<li><a class="reference internal" href="#id36">修正</a></li>
|
1910
|
-
<li><a class="reference internal" href="#id37">感謝</a></li>
|
1911
|
-
</ul>
|
1912
|
-
</li>
|
1913
|
-
<li><a class="reference internal" href="#release-3-0-1-2013-02-28">3.0.1リリース - 2013/02/28</a><ul>
|
1914
|
-
<li><a class="reference internal" href="#id38">改良</a></li>
|
1915
|
-
<li><a class="reference internal" href="#id39">修正</a></li>
|
1916
|
-
<li><a class="reference internal" href="#id40">感謝</a></li>
|
1917
|
-
</ul>
|
1918
|
-
</li>
|
1919
|
-
<li><a class="reference internal" href="#release-3-0-0-2013-02-09">3.0.0リリース - 2013/02/09</a><ul>
|
1920
|
-
<li><a class="reference internal" href="#id41">修正</a></li>
|
1921
|
-
<li><a class="reference internal" href="#id42">感謝</a></li>
|
1922
|
-
</ul>
|
1923
|
-
</li>
|
1924
|
-
<li><a class="reference internal" href="#release-2-1-2-2013-01-29">2.1.2リリース - 2013/01/29</a><ul>
|
1925
|
-
<li><a class="reference internal" href="#id43">改良</a></li>
|
1926
|
-
<li><a class="reference internal" href="#id44">修正</a></li>
|
1927
|
-
<li><a class="reference internal" href="#id45">感謝</a></li>
|
1928
|
-
</ul>
|
1929
|
-
</li>
|
1930
|
-
<li><a class="reference internal" href="#release-2-1-1-2012-12-29">2.1.1リリース - 2012/12/29</a><ul>
|
1931
|
-
<li><a class="reference internal" href="#id46">修正</a></li>
|
1932
|
-
</ul>
|
1933
|
-
</li>
|
1934
|
-
<li><a class="reference internal" href="#release-2-1-0-2012-12-29">2.1.0リリース - 2012/12/29</a><ul>
|
1935
|
-
<li><a class="reference internal" href="#id47">改良</a></li>
|
1936
|
-
<li><a class="reference internal" href="#id48">修正</a></li>
|
1937
|
-
<li><a class="reference internal" href="#id49">感謝</a></li>
|
1938
|
-
</ul>
|
1939
|
-
</li>
|
1940
|
-
<li><a class="reference internal" href="#release-2-0-9-2012-11-29">2.0.9リリース - 2012/11/29</a><ul>
|
1941
|
-
<li><a class="reference internal" href="#id50">改良</a></li>
|
1942
|
-
<li><a class="reference internal" href="#id51">修正</a></li>
|
1943
|
-
<li><a class="reference internal" href="#id52">感謝</a></li>
|
1944
|
-
</ul>
|
1945
|
-
</li>
|
1946
|
-
<li><a class="reference internal" href="#release-2-0-8-2012-10-29">2.0.8リリース - 2012/10/29</a><ul>
|
1947
|
-
<li><a class="reference internal" href="#id53">改良</a></li>
|
1948
|
-
<li><a class="reference internal" href="#id54">修正</a></li>
|
1949
|
-
<li><a class="reference internal" href="#id55">感謝</a></li>
|
1950
|
-
</ul>
|
1951
|
-
</li>
|
1952
|
-
<li><a class="reference internal" href="#release-2-0-7-2012-09-29">2.0.7リリース - 2012/09/29</a><ul>
|
1953
|
-
<li><a class="reference internal" href="#id56">改良</a></li>
|
1954
|
-
<li><a class="reference internal" href="#id57">修正</a></li>
|
1955
|
-
<li><a class="reference internal" href="#id58">感謝</a></li>
|
1956
|
-
</ul>
|
1957
|
-
</li>
|
1958
|
-
<li><a class="reference internal" href="#release-2-0-6-2012-08-29">2.0.6リリース - 2012/08/29</a><ul>
|
1959
|
-
<li><a class="reference internal" href="#id59">改良</a></li>
|
1960
|
-
<li><a class="reference internal" href="#id60">修正</a></li>
|
1961
|
-
<li><a class="reference internal" href="#id61">感謝</a></li>
|
1962
|
-
</ul>
|
1963
|
-
</li>
|
1964
|
-
<li><a class="reference internal" href="#release-2-0-5-2012-07-29">2.0.5リリース - 2012/07/29</a><ul>
|
1965
|
-
<li><a class="reference internal" href="#id62">改良</a></li>
|
1966
|
-
<li><a class="reference internal" href="#id63">修正</a></li>
|
1967
|
-
<li><a class="reference internal" href="#id64">感謝</a></li>
|
1968
|
-
</ul>
|
1969
|
-
</li>
|
1970
|
-
<li><a class="reference internal" href="#release-2-0-4-2012-06-29">2.0.4リリース - 2012/06/29</a><ul>
|
1971
|
-
<li><a class="reference internal" href="#id65">改良</a></li>
|
1972
|
-
<li><a class="reference internal" href="#id66">修正</a></li>
|
1973
|
-
<li><a class="reference internal" href="#id67">感謝</a></li>
|
1974
|
-
</ul>
|
1975
|
-
</li>
|
1976
|
-
<li><a class="reference internal" href="#release-2-0-3-2012-05-29">2.0.3リリース - 2012/05/29</a><ul>
|
1977
|
-
<li><a class="reference internal" href="#id68">改良</a></li>
|
1978
|
-
<li><a class="reference internal" href="#id69">修正</a></li>
|
1979
|
-
<li><a class="reference internal" href="#id70">感謝</a></li>
|
1980
|
-
</ul>
|
1981
|
-
</li>
|
1982
|
-
<li><a class="reference internal" href="#release-2-0-2-2012-04-29">2.0.2リリース - 2012/04/29</a><ul>
|
1983
|
-
<li><a class="reference internal" href="#id71">改良</a></li>
|
1984
|
-
<li><a class="reference internal" href="#id72">修正</a></li>
|
1985
|
-
<li><a class="reference internal" href="#id73">感謝</a></li>
|
1986
|
-
</ul>
|
1987
|
-
</li>
|
1988
|
-
<li><a class="reference internal" href="#release-2-0-1-2012-03-29">2.0.1リリース - 2012/03/29</a><ul>
|
1989
|
-
<li><a class="reference internal" href="#id74">改良</a></li>
|
1990
|
-
<li><a class="reference internal" href="#id75">修正</a></li>
|
1991
|
-
<li><a class="reference internal" href="#id76">感謝</a></li>
|
1992
|
-
</ul>
|
1993
|
-
</li>
|
1994
|
-
<li><a class="reference internal" href="#release-2-0-0-2012-02-29">2.0.0リリース - 2012/02/29</a><ul>
|
1995
|
-
<li><a class="reference internal" href="#id77">改良</a></li>
|
1996
|
-
<li><a class="reference internal" href="#id78">修正</a></li>
|
1997
|
-
<li><a class="reference internal" href="#id79">感謝</a></li>
|
1998
|
-
</ul>
|
1999
|
-
</li>
|
2000
|
-
<li><a class="reference internal" href="#release-1-3-0-2012-01-29">1.3.0リリース - 2012/01/29</a><ul>
|
2001
|
-
<li><a class="reference internal" href="#id80">改良</a></li>
|
2002
|
-
<li><a class="reference internal" href="#id81">感謝</a></li>
|
2003
|
-
</ul>
|
2004
|
-
</li>
|
2005
718
|
<li><a class="reference internal" href="#the-old-releases">The old releases</a></li>
|
2006
719
|
</ul>
|
2007
720
|
</li>
|
2008
721
|
</ul>
|
2009
722
|
|
2010
|
-
<
|
2011
|
-
|
2012
|
-
<
|
2013
|
-
|
2014
|
-
|
2015
|
-
|
2016
|
-
</div>
|
2017
|
-
<div id="searchbox" style="display: none" role="search">
|
723
|
+
<h3>このページ</h3>
|
724
|
+
<ul class="this-page-menu">
|
725
|
+
<li><a href="_sources/news.txt"
|
726
|
+
rel="nofollow">ソースコードを表示</a></li>
|
727
|
+
</ul>
|
728
|
+
<div id="searchbox" style="display: none">
|
2018
729
|
<h3>クイック検索</h3>
|
2019
730
|
<form class="search" action="search.html" method="get">
|
2020
731
|
<input type="text" name="q" />
|
@@ -2031,16 +742,16 @@ This change not to contain such a metadata as search results.</li>
|
|
2031
742
|
</div>
|
2032
743
|
<div class="clearer"></div>
|
2033
744
|
</div>
|
2034
|
-
<div class="related"
|
745
|
+
<div class="related">
|
2035
746
|
<h3>ナビゲーション</h3>
|
2036
747
|
<ul>
|
2037
748
|
<li class="right" style="margin-right: 10px">
|
2038
749
|
<a href="genindex.html" title="総合索引"
|
2039
750
|
>索引</a></li>
|
2040
|
-
<li><a href="index.html">Groonga v4.0.
|
751
|
+
<li><a href="index.html">Groonga v4.0.4-214-gb1aaec1ドキュメント</a> »</li>
|
2041
752
|
</ul>
|
2042
753
|
</div>
|
2043
|
-
<div class="footer"
|
754
|
+
<div class="footer">
|
2044
755
|
© Copyright 2009-2014, Brazil, Inc.
|
2045
756
|
</div>
|
2046
757
|
</body>
|